ETH Price: $3,444.72 (-0.04%)
Gas: 2 Gwei

Token

Brian (BRIAN)
 

Overview

Max Total Supply

100,000,000,000 BRIAN

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000121715934844 BRIAN

Value
$0.00
0xaf8d5409a0fb7bd353f75354d025eceac930024f
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:
BrianToken

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-21
*/

/* Socials
Website: <https://briandog.com>
Telegram: <https://t.me/brianoneth>
Twitter: <https://x.com/brianoneth>
*/




// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

// lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

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

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

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

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

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

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

// lib/openzeppelin-contracts/contracts/utils/Context.sol

// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// src/interface/IUniswapV2.sol

interface IUniswapRouter01 {
    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 IUniswapRouter02 is IUniswapRouter01 {
    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;
}

interface IUniswapPair {
    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 IUniswapFactory {
    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;
}

// lib/openzeppelin-contracts/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

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

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

// src/DocaToken.sol

contract BrianToken is ERC20, Ownable {
    //---------------------------------------------------------------
    //  Errors
    //---------------------------------------------------------------
    error SBT__LP_ALREADY_INITIALIZED();
    error SBT__LP_INVALID_PARAMS();
    error SBT__INVALID_THRESHOLD();
    error SBT__INVALID_ADDRESS();
    error SBT__SWAP_ALREADY_IN_PROGRESS();
    //---------------------------------------------------------------
    //  State Variables
    //---------------------------------------------------------------
    mapping(address => bool) public taxExempt;
    uint256 public lpInitTime; // The time when the LP is created, marks the time to start counting the antibot tax
    IUniswapRouter02 public router;
    address public mainPair; // The address of the LP pair UniswapV2
    address public feeReceiver;
    address private WETH;
    uint256 public swapThreshold;
    uint8 private swapping = 1;
    //---------------------------------------------------------------
    //  Constants
    //---------------------------------------------------------------
    uint256 public constant ANTI_BOT_TAX_DURATION = 7 minutes; // 7 * 60;
    uint256 public constant ANTI_BOT_TAX_BUY = 36;
    uint256 public constant ANTI_BOT_TAX_SELL = 44;
    uint256 constant PERCENT = 100;

    //---------------------------------------------------------------
    //  EVENTS
    //---------------------------------------------------------------
    event SwapThresholdChanged(uint newThreshold);
    event FeeReceiverChanged(address newFeeReceiver);
    event FeesSent(address receiver, uint tokenAmount);

    //---------------------------------------------------------------
    //  Constructor
    //---------------------------------------------------------------
    /**
     * @notice Constructor
     * @param _owner The owner of the contract
     * @param _name The name of the token
     * @param _symbol The symbol of the token
     * @param _mintSupply The supply of the token to mint on deployment
     */
    constructor(
        address _owner,
        address _feeReceiver,
        string memory _name,
        string memory _symbol,
        uint _mintSupply
    ) ERC20(_name, _symbol) Ownable(_owner) {
        router = IUniswapRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        IUniswapFactory factory = IUniswapFactory(router.factory());
        WETH = router.WETH();
        mainPair = factory.createPair(address(this), WETH);

        feeReceiver = _feeReceiver;
        taxExempt[address(this)] = true;
        taxExempt[owner()] = true;
        taxExempt[address(router)] = true;
        taxExempt[address(0)] = true;
        swapThreshold = _mintSupply / 100_00; // 0.01% of the supply
        _mint(msg.sender, _mintSupply);
        // approve router for MAX amount
        _approve(address(this), address(router), type(uint).max);
    }

    receive() external payable {}

    //---------------------------------------------------------------
    //  External Function
    //---------------------------------------------------------------
    /**
     * @notice Creates LP tokens and buys for the array of users
     * @param users The list of users to buy tokens for
     * @param amountsToBuy The list of tokens to buy for each user
     * @param tokensForLiquidity The tokens to use to create liquidity
     * @param ethForLiquidity The ETH to use to create Liquidity
     * @dev ethForLiquidity needs to be < msg.value && tokensForLiquidity need to be transferred to the contract before adding liquidity or the transaction will revert
     */
    function createLPandBuyTokens(
        address[] calldata users,
        uint[] calldata amountsToBuy,
        uint tokensForLiquidity,
        uint ethForLiquidity
    ) external payable onlyOwner {
        // CHECKS
        if (lpInitTime > 0) revert SBT__LP_ALREADY_INITIALIZED();
        if (ethForLiquidity >= msg.value || users.length != amountsToBuy.length)
            revert SBT__LP_INVALID_PARAMS();

        // EFFECTS
        lpInitTime = block.timestamp;

        // INTERACTIONS
        // Add Liquidity
        // 1. Get the Tokens to this contract
        transfer(address(this), tokensForLiquidity);

        // 2. Create the LP
        // Approve tokens to be used by the router
        _approve(address(this), address(router), tokensForLiquidity);

        router.addLiquidityETH{value: ethForLiquidity}(
            address(this),
            tokensForLiquidity,
            tokensForLiquidity,
            ethForLiquidity,
            owner(),
            block.timestamp
        );
        // Setup Swap Path
        address[] memory path = new address[](2);
        path[0] = router.WETH();
        path[1] = address(this);

        // Create Buys
        for (uint i = 0; i < users.length; i++) {
            // add receiver to tax exempt
            taxExempt[users[i]] = true;
            uint[] memory ethSwapValue = router.getAmountsIn(
                amountsToBuy[i],
                path
            );
            // execute swap to BUY tokens
            router.swapETHForExactTokens{value: ethSwapValue[0]}(
                amountsToBuy[i],
                path,
                users[i],
                block.timestamp
            );
            // remove receiver from tax exempt
            taxExempt[users[i]] = false;
        }
        // Transfer leftover ETH back to sender
        uint currentETHBalance = address(this).balance;
        if (currentETHBalance > 0) {
            (bool success, ) = payable(msg.sender).call{
                value: currentETHBalance
            }("");
            require(success, "Failed to transfer leftover ETH to sender");
        }
    }

    /**
     * @notice Changes the swap threshold
     * @param _newThreshold The new threshold
     * @dev The new threshold is the minimum amount of tokens to hold before a swap is executed internally
     */
    function changeSwapThreshold(uint _newThreshold) external onlyOwner {
        if (_newThreshold > totalSupply() / 100)
            revert SBT__INVALID_THRESHOLD();
        swapThreshold = _newThreshold;
        emit SwapThresholdChanged(_newThreshold);
    }

    /**
     * @notice Gets the ETH stuck in the contract
     * @dev The ETH is transferred to the owner
     */
    function getStuckETH() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /**
     * @notice Gets the tokens stuck in the contract
     * @param _token The token to get
     * @dev The tokens are transferred to the owner
     */
    function getStuckTokens(address _token) external onlyOwner {
        uint currentBalance = ERC20(_token).balanceOf(address(this));
        (bool success, bytes memory data) = _token.call(
            abi.encodeWithSelector(0xa9059cbb, msg.sender, currentBalance)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "TransferHelper: TRANSFER_FAILED"
        );
    }

    /**
     * @notice Changes the fee receiver address
     * @param _newFeeReceiver The new fee receiver address
     * @dev make sure the _newFeeReceiver can accept ETH
     */
    function changeFeeReceiver(address _newFeeReceiver) external onlyOwner {
        if (_newFeeReceiver == address(0)) revert SBT__INVALID_ADDRESS();
        feeReceiver = _newFeeReceiver;
        emit FeeReceiverChanged(_newFeeReceiver);
    }

    function manualSwapAndTransfer() external {
        if (swapping != 1) revert SBT__SWAP_ALREADY_IN_PROGRESS();
        _swapAndTransfer();
    }

    //---------------------------------------------------------------
    //  Internal Function
    //---------------------------------------------------------------
    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        // check if lp start time is set and is still valid
        if (
            lpInitTime > 0 &&
            block.timestamp < lpInitTime + ANTI_BOT_TAX_DURATION
        ) {
            // check for tax exemption
            if (!(taxExempt[from] || taxExempt[to])) {
                // if set, check if buy or sell
                uint fee = 0;
                bool isBuy = from == mainPair;
                if (isBuy) {
                    fee = (value * ANTI_BOT_TAX_BUY) / PERCENT;
                } else if (to == mainPair) {
                    fee = (value * ANTI_BOT_TAX_SELL) / PERCENT;
                }
                if (swapping == 1 && !isBuy) {
                    _swapAndTransfer();
                }
                value -= fee;
                if (fee > 0) {
                    super._update(from, address(this), fee);
                }
            }
        }

        super._update(from, to, value);
    }

    function _swapAndTransfer() private {
        swapping = swapping << 1; // shift left to swapping = 2
        // get current contract balance
        uint currentBalance = ERC20(address(this)).balanceOf(address(this));
        // check if the balance is greater than the swap threshold
        if (currentBalance > swapThreshold) {
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = WETH;
            _approve(address(this), address(router), currentBalance);
            router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                currentBalance,
                0,
                path,
                feeReceiver,
                block.timestamp
            );
            emit FeesSent(feeReceiver, currentBalance);
        }
        swapping = swapping >> 1; // shift right to swapping = 1
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_feeReceiver","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_mintSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"SBT__INVALID_ADDRESS","type":"error"},{"inputs":[],"name":"SBT__INVALID_THRESHOLD","type":"error"},{"inputs":[],"name":"SBT__LP_ALREADY_INITIALIZED","type":"error"},{"inputs":[],"name":"SBT__LP_INVALID_PARAMS","type":"error"},{"inputs":[],"name":"SBT__SWAP_ALREADY_IN_PROGRESS","type":"error"},{"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":false,"internalType":"address","name":"newFeeReceiver","type":"address"}],"name":"FeeReceiverChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"FeesSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"SwapThresholdChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ANTI_BOT_TAX_BUY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ANTI_BOT_TAX_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ANTI_BOT_TAX_SELL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"_newFeeReceiver","type":"address"}],"name":"changeFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"changeSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amountsToBuy","type":"uint256[]"},{"internalType":"uint256","name":"tokensForLiquidity","type":"uint256"},{"internalType":"uint256","name":"ethForLiquidity","type":"uint256"}],"name":"createLPandBuyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"getStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpInitTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwapAndTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"},{"stateMutability":"payable","type":"receive"}]

6080604052600d805460ff191660011790553480156200001d575f80fd5b5060405162002681380380620026818339810160408190526200004091620009e2565b848383600362000051838262000aff565b50600462000060828262000aff565b5050506001600160a01b0381166200009257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6200009d8162000345565b50600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b815290515f929163c45a01559160048083019260209291908290030181865afa15801562000103573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000129919062000bcb565b905060085f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a2919062000bcb565b600b80546001600160a01b0319166001600160a01b039283169081179091556040516364e329cb60e11b815230600482015260248101919091529082169063c9c65396906044016020604051808303815f875af115801562000206573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022c919062000bcb565b600980546001600160a01b03199081166001600160a01b0393841617909155600a8054909116918716919091179055305f9081526006602081905260408220805460ff19166001908117909155916200028d6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790556008549091168152600690925281208054831660019081179091559080527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f880549092161790556200030f6127108362000c02565b600c556200031e338362000396565b600854620003399030906001600160a01b03165f19620003d2565b50505050505062000d0d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620003c15760405163ec442f0560e01b81525f600482015260240162000089565b620003ce5f8383620003e6565b5050565b620003e1838383600162000519565b505050565b5f6007541180156200040857506101a460075462000405919062000c22565b42105b156200050c576001600160a01b0383165f9081526006602052604090205460ff16806200044c57506001600160a01b0382165f9081526006602052604090205460ff165b6200050c576009545f906001600160a01b0385811691161480156200048e5760646200047a60248562000c3e565b62000486919062000c02565b9150620004c3565b6009546001600160a01b0390811690851603620004c3576064620004b4602c8562000c3e565b620004c0919062000c02565b91505b600d5460ff166001148015620004d7575080155b15620004e757620004e7620005f2565b620004f3828462000c58565b92508115620005095762000509853084620007d6565b50505b620003e1838383620007d6565b6001600160a01b038416620005445760405163e602df0560e01b81525f600482015260240162000089565b6001600160a01b0383166200056f57604051634a1406b160e11b81525f600482015260240162000089565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015620005ec57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620005e391815260200190565b60405180910390a35b50505050565b600d805460ff19811660019190911b60fe161790556040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa15801562000643573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000669919062000c6e565b9050600c54811115620007be576040805160028082526060820183525f9260208301908036833701905050905030815f81518110620006ac57620006ac62000c86565b6001600160a01b039283166020918202929092010152600b54825191169082906001908110620006e057620006e062000c86565b6001600160a01b039283166020918202929092010152600854620007089130911684620003d2565b600854600a5460405163791ac94760e01b81526001600160a01b039283169263791ac94792620007469287925f928892911690429060040162000c9a565b5f604051808303815f87803b1580156200075e575f80fd5b505af115801562000771573d5f803e3d5ffd5b5050600a54604080516001600160a01b039092168252602082018690527f69dca982af1e2fdad60835ba7ecc977cdfcad58f64db7da3fba33a535a8ce444935001905060405180910390a1505b50600d8054600181901c607f1660ff19909116179055565b6001600160a01b03831662000804578060025f828254620007f8919062000c22565b90915550620008769050565b6001600160a01b0383165f9081526020819052604090205481811015620008585760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000089565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166200089457600280548290039055620008b2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008f891815260200190565b60405180910390a3505050565b80516001600160a01b03811681146200091c575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011262000945575f80fd5b81516001600160401b038082111562000962576200096262000921565b604051601f8301601f19908116603f011681019082821181831017156200098d576200098d62000921565b8160405283815260209250866020858801011115620009aa575f80fd5b5f91505b83821015620009cd5785820183015181830184015290820190620009ae565b5f602085830101528094505050505092915050565b5f805f805f60a08688031215620009f7575f80fd5b62000a028662000905565b945062000a126020870162000905565b60408701519094506001600160401b038082111562000a2f575f80fd5b62000a3d89838a0162000935565b9450606088015191508082111562000a53575f80fd5b5062000a628882890162000935565b925050608086015190509295509295909350565b600181811c9082168062000a8b57607f821691505b60208210810362000aaa57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003e157805f5260205f20601f840160051c8101602085101562000ad75750805b601f840160051c820191505b8181101562000af8575f815560010162000ae3565b5050505050565b81516001600160401b0381111562000b1b5762000b1b62000921565b62000b338162000b2c845462000a76565b8462000ab0565b602080601f83116001811462000b69575f841562000b515750858301515b5f19600386901b1c1916600185901b17855562000bc3565b5f85815260208120601f198616915b8281101562000b995788860151825594840194600190910190840162000b78565b508582101562000bb757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000bdc575f80fd5b62000be78262000905565b9392505050565b634e487b7160e01b5f52601160045260245ffd5b5f8262000c1d57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000c385762000c3862000bee565b92915050565b808202811582820484141762000c385762000c3862000bee565b8181038181111562000c385762000c3862000bee565b5f6020828403121562000c7f575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101562000cec5784516001600160a01b03168352938301939183019160010162000cc5565b50506001600160a01b03969096166060850152505050608001529392505050565b6119668062000d1b5f395ff3fe608060405260043610610198575f3560e01c806385af30c5116100e7578063d1ecfc6811610087578063e67789bc11610062578063e67789bc1461048d578063f2fde38b146104a0578063f710944a146104bf578063f887ea40146104d4575f80fd5b8063d1ecfc6814610406578063db7614c414610434578063dd62ed3e14610449575f80fd5b806395d89b41116100c257806395d89b41146103a0578063a9059cbb146103b4578063b3f00674146103d3578063ceb1d1f8146103f2575f80fd5b806385af30c51461032d57806389f425e7146103645780638da5cb5b14610383575f80fd5b806323b872dd116101525780636b9961501161012d5780636b996150146102b257806370a08231146102c6578063715018a6146102fa5780637c08b9641461030e575f80fd5b806323b872dd14610264578063313ce567146102835780634178a92e1461029e575f80fd5b80630445b667146101a357806306fdde03146101cb578063095ea7b3146101ec5780630dfb77301461021b57806318160ddd146102315780631dd60b1814610245575f80fd5b3661019f57005b5f80fd5b3480156101ae575f80fd5b506101b8600c5481565b6040519081526020015b60405180910390f35b3480156101d6575f80fd5b506101df6104f3565b6040516101c29190611460565b3480156101f7575f80fd5b5061020b6102063660046114a6565b610583565b60405190151581526020016101c2565b348015610226575f80fd5b5061022f61059c565b005b34801561023c575f80fd5b506002546101b8565b348015610250575f80fd5b5061022f61025f3660046114d0565b6105cc565b34801561026f575f80fd5b5061020b61027e3660046114f2565b610756565b34801561028e575f80fd5b50604051601281526020016101c2565b3480156102a9575f80fd5b506101b8602c81565b3480156102bd575f80fd5b5061022f610779565b3480156102d1575f80fd5b506101b86102e03660046114d0565b6001600160a01b03165f9081526020819052604090205490565b348015610305575f80fd5b5061022f6107ad565b348015610319575f80fd5b5061022f6103283660046114d0565b6107be565b348015610338575f80fd5b5060095461034c906001600160a01b031681565b6040516001600160a01b0390911681526020016101c2565b34801561036f575f80fd5b5061022f61037e366004611530565b610842565b34801561038e575f80fd5b506005546001600160a01b031661034c565b3480156103ab575f80fd5b506101df6108b4565b3480156103bf575f80fd5b5061020b6103ce3660046114a6565b6108c3565b3480156103de575f80fd5b50600a5461034c906001600160a01b031681565b3480156103fd575f80fd5b506101b8602481565b348015610411575f80fd5b5061020b6104203660046114d0565b60066020525f908152604090205460ff1681565b34801561043f575f80fd5b506101b86101a481565b348015610454575f80fd5b506101b8610463366004611547565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61022f61049b3660046115c6565b6108d0565b3480156104ab575f80fd5b5061022f6104ba3660046114d0565b610dc3565b3480156104ca575f80fd5b506101b860075481565b3480156104df575f80fd5b5060085461034c906001600160a01b031681565b6060600380546105029061163e565b80601f016020809104026020016040519081016040528092919081815260200182805461052e9061163e565b80156105795780601f1061055057610100808354040283529160200191610579565b820191905f5260205f20905b81548152906001019060200180831161055c57829003601f168201915b5050505050905090565b5f33610590818585610dfd565b60019150505b92915050565b600d5460ff166001146105c257604051633618d40560e21b815260040160405180910390fd5b6105ca610e0f565b565b6105d4610fe3565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610618573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061063c9190611676565b60408051336024820152604480820184905282518083039091018152606490910182526020810180516001600160e01b031663a9059cbb60e01b17905290519192505f9182916001600160a01b03861691610697919061168d565b5f604051808303815f865af19150503d805f81146106d0576040519150601f19603f3d011682016040523d82523d5f602084013e6106d5565b606091505b50915091508180156106ff5750805115806106ff5750808060200190518101906106ff91906116a8565b6107505760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c45440060448201526064015b60405180910390fd5b50505050565b5f33610763858285611010565b61076e858585611085565b506001949350505050565b610781610fe3565b60405133904780156108fc02915f818181858888f193505050501580156107aa573d5f803e3d5ffd5b50565b6107b5610fe3565b6105ca5f6110e2565b6107c6610fe3565b6001600160a01b0381166107ed5760405163d36c496f60e01b815260040160405180910390fd5b600a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f647672599d3468abcfa241a13c9e3d34383caadb5cc80fb67c3cdfcd5f786059906020015b60405180910390a150565b61084a610fe3565b606461085560025490565b61085f91906116db565b81111561087f5760405163e25b27b760e01b815260040160405180910390fd5b600c8190556040518181527f9ff241d1f1e0c30788ac08c45391c423cc5ef3e67f66a46b95a9a8f394759f3690602001610837565b6060600480546105029061163e565b5f33610590818585611085565b6108d8610fe3565b600754156108f957604051631c68275f60e21b815260040160405180910390fd5b34811015806109085750848314155b156109255760405162cb561b60e21b815260040160405180910390fd5b4260075561093330836108c3565b5060085461094c9030906001600160a01b031684610dfd565b6008546001600160a01b031663f305d71982308580836109746005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109da573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906109ff91906116fa565b50506040805160028082526060820183525f935090916020830190803683375050600854604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015610a6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8f9190611739565b815f81518110610aa157610aa1611754565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110610ad557610ad5611754565b60200260200101906001600160a01b031690816001600160a01b0316815250505f5b86811015610d0857600160065f8a8a85818110610b1657610b16611754565b9050602002016020810190610b2b91906114d0565b6001600160a01b03908116825260208201929092526040015f908120805460ff19169315159390931790925560085416631f00ca74888885818110610b7257610b72611754565b90506020020135856040518363ffffffff1660e01b8152600401610b979291906117ab565b5f60405180830381865afa158015610bb1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610bd891908101906117cb565b60085481519192506001600160a01b03169063fb3bdb419083905f90610c0057610c00611754565b6020026020010151898986818110610c1a57610c1a611754565b90506020020135868d8d88818110610c3457610c34611754565b9050602002016020810190610c4991906114d0565b426040518663ffffffff1660e01b8152600401610c699493929190611884565b5f6040518083038185885af1158015610c84573d5f803e3d5ffd5b50505050506040513d5f823e601f3d908101601f19168201604052610cac91908101906117cb565b505f60065f8b8b86818110610cc357610cc3611754565b9050602002016020810190610cd891906114d0565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905550600101610af7565b50478015610db9576040515f90339083908381818185875af1925050503d805f8114610d4f576040519150601f19603f3d011682016040523d82523d5f602084013e610d54565b606091505b5050905080610db75760405162461bcd60e51b815260206004820152602960248201527f4661696c656420746f207472616e73666572206c6566746f76657220455448206044820152683a379039b2b73232b960b91b6064820152608401610747565b505b5050505050505050565b610dcb610fe3565b6001600160a01b038116610df457604051631e4fbdf760e01b81525f6004820152602401610747565b6107aa816110e2565b610e0a8383836001611133565b505050565b600d805460ff19811660019190911b60fe161790556040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610e5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e839190611676565b9050600c54811115610fcb576040805160028082526060820183525f9260208301908036833701905050905030815f81518110610ec257610ec2611754565b6001600160a01b039283166020918202929092010152600b54825191169082906001908110610ef357610ef3611754565b6001600160a01b039283166020918202929092010152600854610f199130911684610dfd565b600854600a5460405163791ac94760e01b81526001600160a01b039283169263791ac94792610f559287925f92889291169042906004016118b8565b5f604051808303815f87803b158015610f6c575f80fd5b505af1158015610f7e573d5f803e3d5ffd5b5050600a54604080516001600160a01b039092168252602082018690527f69dca982af1e2fdad60835ba7ecc977cdfcad58f64db7da3fba33a535a8ce444935001905060405180910390a1505b50600d8054600181901c607f1660ff19909116179055565b6005546001600160a01b031633146105ca5760405163118cdaa760e01b8152336004820152602401610747565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610750578181101561107757604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610747565b61075084848484035f611133565b6001600160a01b0383166110ae57604051634b637e8f60e11b81525f6004820152602401610747565b6001600160a01b0382166110d75760405163ec442f0560e01b81525f6004820152602401610747565b610e0a838383611205565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03841661115c5760405163e602df0560e01b81525f6004820152602401610747565b6001600160a01b03831661118557604051634a1406b160e11b81525f6004820152602401610747565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561075057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111f791815260200190565b60405180910390a350505050565b5f60075411801561122457506101a460075461122191906118f3565b42105b15611311576001600160a01b0383165f9081526006602052604090205460ff168061126657506001600160a01b0382165f9081526006602052604090205460ff165b611311576009545f906001600160a01b0385811691161480156112a1576064611290602485611906565b61129a91906116db565b91506112d1565b6009546001600160a01b03908116908516036112d15760646112c4602c85611906565b6112ce91906116db565b91505b600d5460ff1660011480156112e4575080155b156112f1576112f1610e0f565b6112fb828461191d565b9250811561130e5761130e853084611318565b50505b610e0a8383835b6001600160a01b038316611342578060025f82825461133791906118f3565b909155506113b29050565b6001600160a01b0383165f90815260208190526040902054818110156113945760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610747565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166113ce576002805482900390556113ec565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161143191815260200190565b60405180910390a3505050565b5f5b83811015611458578181015183820152602001611440565b50505f910152565b602081525f825180602084015261147e81604085016020870161143e565b601f01601f19169190910160400192915050565b6001600160a01b03811681146107aa575f80fd5b5f80604083850312156114b7575f80fd5b82356114c281611492565b946020939093013593505050565b5f602082840312156114e0575f80fd5b81356114eb81611492565b9392505050565b5f805f60608486031215611504575f80fd5b833561150f81611492565b9250602084013561151f81611492565b929592945050506040919091013590565b5f60208284031215611540575f80fd5b5035919050565b5f8060408385031215611558575f80fd5b823561156381611492565b9150602083013561157381611492565b809150509250929050565b5f8083601f84011261158e575f80fd5b50813567ffffffffffffffff8111156115a5575f80fd5b6020830191508360208260051b85010111156115bf575f80fd5b9250929050565b5f805f805f80608087890312156115db575f80fd5b863567ffffffffffffffff808211156115f2575f80fd5b6115fe8a838b0161157e565b90985096506020890135915080821115611616575f80fd5b5061162389828a0161157e565b979a9699509760408101359660609091013595509350505050565b600181811c9082168061165257607f821691505b60208210810361167057634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611686575f80fd5b5051919050565b5f825161169e81846020870161143e565b9190910192915050565b5f602082840312156116b8575f80fd5b815180151581146114eb575f80fd5b634e487b7160e01b5f52601160045260245ffd5b5f826116f557634e487b7160e01b5f52601260045260245ffd5b500490565b5f805f6060848603121561170c575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215611749575f80fd5b81516114eb81611492565b634e487b7160e01b5f52603260045260245ffd5b5f815180845260208085019450602084015f5b838110156117a05781516001600160a01b03168752958201959082019060010161177b565b509495945050505050565b828152604060208201525f6117c36040830184611768565b949350505050565b5f60208083850312156117dc575f80fd5b825167ffffffffffffffff808211156117f3575f80fd5b818501915085601f830112611806575f80fd5b81518181111561181857611818611725565b8060051b604051601f19603f8301168101818110858211171561183d5761183d611725565b60405291825284820192508381018501918883111561185a575f80fd5b938501935b828510156118785784518452938501939285019261185f565b98975050505050505050565b848152608060208201525f61189c6080830186611768565b6001600160a01b03949094166040830152506060015292915050565b85815284602082015260a060408201525f6118d660a0830186611768565b6001600160a01b0394909416606083015250608001529392505050565b80820180821115610596576105966116c7565b8082028115828204841417610596576105966116c7565b81810381811115610596576105966116c756fea2646970667358221220f0194c4ea8d5fc76cf58dd692e97c71d8c19913dbb99db3c385010de8e8d73c164736f6c6343000818003300000000000000000000000070b7b470b0c2fd89a84646b909f9c0c43070945a0000000000000000000000009310a3b342d5dedfe1e8819771b2ac3d6b526c0400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000001431e0fae6d7217caa00000000000000000000000000000000000000000000000000000000000000000000005427269616e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005425249414e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610198575f3560e01c806385af30c5116100e7578063d1ecfc6811610087578063e67789bc11610062578063e67789bc1461048d578063f2fde38b146104a0578063f710944a146104bf578063f887ea40146104d4575f80fd5b8063d1ecfc6814610406578063db7614c414610434578063dd62ed3e14610449575f80fd5b806395d89b41116100c257806395d89b41146103a0578063a9059cbb146103b4578063b3f00674146103d3578063ceb1d1f8146103f2575f80fd5b806385af30c51461032d57806389f425e7146103645780638da5cb5b14610383575f80fd5b806323b872dd116101525780636b9961501161012d5780636b996150146102b257806370a08231146102c6578063715018a6146102fa5780637c08b9641461030e575f80fd5b806323b872dd14610264578063313ce567146102835780634178a92e1461029e575f80fd5b80630445b667146101a357806306fdde03146101cb578063095ea7b3146101ec5780630dfb77301461021b57806318160ddd146102315780631dd60b1814610245575f80fd5b3661019f57005b5f80fd5b3480156101ae575f80fd5b506101b8600c5481565b6040519081526020015b60405180910390f35b3480156101d6575f80fd5b506101df6104f3565b6040516101c29190611460565b3480156101f7575f80fd5b5061020b6102063660046114a6565b610583565b60405190151581526020016101c2565b348015610226575f80fd5b5061022f61059c565b005b34801561023c575f80fd5b506002546101b8565b348015610250575f80fd5b5061022f61025f3660046114d0565b6105cc565b34801561026f575f80fd5b5061020b61027e3660046114f2565b610756565b34801561028e575f80fd5b50604051601281526020016101c2565b3480156102a9575f80fd5b506101b8602c81565b3480156102bd575f80fd5b5061022f610779565b3480156102d1575f80fd5b506101b86102e03660046114d0565b6001600160a01b03165f9081526020819052604090205490565b348015610305575f80fd5b5061022f6107ad565b348015610319575f80fd5b5061022f6103283660046114d0565b6107be565b348015610338575f80fd5b5060095461034c906001600160a01b031681565b6040516001600160a01b0390911681526020016101c2565b34801561036f575f80fd5b5061022f61037e366004611530565b610842565b34801561038e575f80fd5b506005546001600160a01b031661034c565b3480156103ab575f80fd5b506101df6108b4565b3480156103bf575f80fd5b5061020b6103ce3660046114a6565b6108c3565b3480156103de575f80fd5b50600a5461034c906001600160a01b031681565b3480156103fd575f80fd5b506101b8602481565b348015610411575f80fd5b5061020b6104203660046114d0565b60066020525f908152604090205460ff1681565b34801561043f575f80fd5b506101b86101a481565b348015610454575f80fd5b506101b8610463366004611547565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61022f61049b3660046115c6565b6108d0565b3480156104ab575f80fd5b5061022f6104ba3660046114d0565b610dc3565b3480156104ca575f80fd5b506101b860075481565b3480156104df575f80fd5b5060085461034c906001600160a01b031681565b6060600380546105029061163e565b80601f016020809104026020016040519081016040528092919081815260200182805461052e9061163e565b80156105795780601f1061055057610100808354040283529160200191610579565b820191905f5260205f20905b81548152906001019060200180831161055c57829003601f168201915b5050505050905090565b5f33610590818585610dfd565b60019150505b92915050565b600d5460ff166001146105c257604051633618d40560e21b815260040160405180910390fd5b6105ca610e0f565b565b6105d4610fe3565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610618573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061063c9190611676565b60408051336024820152604480820184905282518083039091018152606490910182526020810180516001600160e01b031663a9059cbb60e01b17905290519192505f9182916001600160a01b03861691610697919061168d565b5f604051808303815f865af19150503d805f81146106d0576040519150601f19603f3d011682016040523d82523d5f602084013e6106d5565b606091505b50915091508180156106ff5750805115806106ff5750808060200190518101906106ff91906116a8565b6107505760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c45440060448201526064015b60405180910390fd5b50505050565b5f33610763858285611010565b61076e858585611085565b506001949350505050565b610781610fe3565b60405133904780156108fc02915f818181858888f193505050501580156107aa573d5f803e3d5ffd5b50565b6107b5610fe3565b6105ca5f6110e2565b6107c6610fe3565b6001600160a01b0381166107ed5760405163d36c496f60e01b815260040160405180910390fd5b600a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f647672599d3468abcfa241a13c9e3d34383caadb5cc80fb67c3cdfcd5f786059906020015b60405180910390a150565b61084a610fe3565b606461085560025490565b61085f91906116db565b81111561087f5760405163e25b27b760e01b815260040160405180910390fd5b600c8190556040518181527f9ff241d1f1e0c30788ac08c45391c423cc5ef3e67f66a46b95a9a8f394759f3690602001610837565b6060600480546105029061163e565b5f33610590818585611085565b6108d8610fe3565b600754156108f957604051631c68275f60e21b815260040160405180910390fd5b34811015806109085750848314155b156109255760405162cb561b60e21b815260040160405180910390fd5b4260075561093330836108c3565b5060085461094c9030906001600160a01b031684610dfd565b6008546001600160a01b031663f305d71982308580836109746005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109da573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906109ff91906116fa565b50506040805160028082526060820183525f935090916020830190803683375050600854604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015610a6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8f9190611739565b815f81518110610aa157610aa1611754565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110610ad557610ad5611754565b60200260200101906001600160a01b031690816001600160a01b0316815250505f5b86811015610d0857600160065f8a8a85818110610b1657610b16611754565b9050602002016020810190610b2b91906114d0565b6001600160a01b03908116825260208201929092526040015f908120805460ff19169315159390931790925560085416631f00ca74888885818110610b7257610b72611754565b90506020020135856040518363ffffffff1660e01b8152600401610b979291906117ab565b5f60405180830381865afa158015610bb1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610bd891908101906117cb565b60085481519192506001600160a01b03169063fb3bdb419083905f90610c0057610c00611754565b6020026020010151898986818110610c1a57610c1a611754565b90506020020135868d8d88818110610c3457610c34611754565b9050602002016020810190610c4991906114d0565b426040518663ffffffff1660e01b8152600401610c699493929190611884565b5f6040518083038185885af1158015610c84573d5f803e3d5ffd5b50505050506040513d5f823e601f3d908101601f19168201604052610cac91908101906117cb565b505f60065f8b8b86818110610cc357610cc3611754565b9050602002016020810190610cd891906114d0565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905550600101610af7565b50478015610db9576040515f90339083908381818185875af1925050503d805f8114610d4f576040519150601f19603f3d011682016040523d82523d5f602084013e610d54565b606091505b5050905080610db75760405162461bcd60e51b815260206004820152602960248201527f4661696c656420746f207472616e73666572206c6566746f76657220455448206044820152683a379039b2b73232b960b91b6064820152608401610747565b505b5050505050505050565b610dcb610fe3565b6001600160a01b038116610df457604051631e4fbdf760e01b81525f6004820152602401610747565b6107aa816110e2565b610e0a8383836001611133565b505050565b600d805460ff19811660019190911b60fe161790556040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610e5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e839190611676565b9050600c54811115610fcb576040805160028082526060820183525f9260208301908036833701905050905030815f81518110610ec257610ec2611754565b6001600160a01b039283166020918202929092010152600b54825191169082906001908110610ef357610ef3611754565b6001600160a01b039283166020918202929092010152600854610f199130911684610dfd565b600854600a5460405163791ac94760e01b81526001600160a01b039283169263791ac94792610f559287925f92889291169042906004016118b8565b5f604051808303815f87803b158015610f6c575f80fd5b505af1158015610f7e573d5f803e3d5ffd5b5050600a54604080516001600160a01b039092168252602082018690527f69dca982af1e2fdad60835ba7ecc977cdfcad58f64db7da3fba33a535a8ce444935001905060405180910390a1505b50600d8054600181901c607f1660ff19909116179055565b6005546001600160a01b031633146105ca5760405163118cdaa760e01b8152336004820152602401610747565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610750578181101561107757604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610747565b61075084848484035f611133565b6001600160a01b0383166110ae57604051634b637e8f60e11b81525f6004820152602401610747565b6001600160a01b0382166110d75760405163ec442f0560e01b81525f6004820152602401610747565b610e0a838383611205565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03841661115c5760405163e602df0560e01b81525f6004820152602401610747565b6001600160a01b03831661118557604051634a1406b160e11b81525f6004820152602401610747565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561075057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111f791815260200190565b60405180910390a350505050565b5f60075411801561122457506101a460075461122191906118f3565b42105b15611311576001600160a01b0383165f9081526006602052604090205460ff168061126657506001600160a01b0382165f9081526006602052604090205460ff165b611311576009545f906001600160a01b0385811691161480156112a1576064611290602485611906565b61129a91906116db565b91506112d1565b6009546001600160a01b03908116908516036112d15760646112c4602c85611906565b6112ce91906116db565b91505b600d5460ff1660011480156112e4575080155b156112f1576112f1610e0f565b6112fb828461191d565b9250811561130e5761130e853084611318565b50505b610e0a8383835b6001600160a01b038316611342578060025f82825461133791906118f3565b909155506113b29050565b6001600160a01b0383165f90815260208190526040902054818110156113945760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610747565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166113ce576002805482900390556113ec565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161143191815260200190565b60405180910390a3505050565b5f5b83811015611458578181015183820152602001611440565b50505f910152565b602081525f825180602084015261147e81604085016020870161143e565b601f01601f19169190910160400192915050565b6001600160a01b03811681146107aa575f80fd5b5f80604083850312156114b7575f80fd5b82356114c281611492565b946020939093013593505050565b5f602082840312156114e0575f80fd5b81356114eb81611492565b9392505050565b5f805f60608486031215611504575f80fd5b833561150f81611492565b9250602084013561151f81611492565b929592945050506040919091013590565b5f60208284031215611540575f80fd5b5035919050565b5f8060408385031215611558575f80fd5b823561156381611492565b9150602083013561157381611492565b809150509250929050565b5f8083601f84011261158e575f80fd5b50813567ffffffffffffffff8111156115a5575f80fd5b6020830191508360208260051b85010111156115bf575f80fd5b9250929050565b5f805f805f80608087890312156115db575f80fd5b863567ffffffffffffffff808211156115f2575f80fd5b6115fe8a838b0161157e565b90985096506020890135915080821115611616575f80fd5b5061162389828a0161157e565b979a9699509760408101359660609091013595509350505050565b600181811c9082168061165257607f821691505b60208210810361167057634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611686575f80fd5b5051919050565b5f825161169e81846020870161143e565b9190910192915050565b5f602082840312156116b8575f80fd5b815180151581146114eb575f80fd5b634e487b7160e01b5f52601160045260245ffd5b5f826116f557634e487b7160e01b5f52601260045260245ffd5b500490565b5f805f6060848603121561170c575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215611749575f80fd5b81516114eb81611492565b634e487b7160e01b5f52603260045260245ffd5b5f815180845260208085019450602084015f5b838110156117a05781516001600160a01b03168752958201959082019060010161177b565b509495945050505050565b828152604060208201525f6117c36040830184611768565b949350505050565b5f60208083850312156117dc575f80fd5b825167ffffffffffffffff808211156117f3575f80fd5b818501915085601f830112611806575f80fd5b81518181111561181857611818611725565b8060051b604051601f19603f8301168101818110858211171561183d5761183d611725565b60405291825284820192508381018501918883111561185a575f80fd5b938501935b828510156118785784518452938501939285019261185f565b98975050505050505050565b848152608060208201525f61189c6080830186611768565b6001600160a01b03949094166040830152506060015292915050565b85815284602082015260a060408201525f6118d660a0830186611768565b6001600160a01b0394909416606083015250608001529392505050565b80820180821115610596576105966116c7565b8082028115828204841417610596576105966116c7565b81810381811115610596576105966116c756fea2646970667358221220f0194c4ea8d5fc76cf58dd692e97c71d8c19913dbb99db3c385010de8e8d73c164736f6c63430008180033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000070b7b470b0c2fd89a84646b909f9c0c43070945a0000000000000000000000009310a3b342d5dedfe1e8819771b2ac3d6b526c0400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000001431e0fae6d7217caa00000000000000000000000000000000000000000000000000000000000000000000005427269616e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005425249414e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _owner (address): 0x70B7B470b0c2fD89a84646B909F9C0C43070945a
Arg [1] : _feeReceiver (address): 0x9310a3b342D5DEDFe1e8819771B2ac3D6b526c04
Arg [2] : _name (string): Brian
Arg [3] : _symbol (string): BRIAN
Arg [4] : _mintSupply (uint256): 100000000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000070b7b470b0c2fd89a84646b909f9c0c43070945a
Arg [1] : 0000000000000000000000009310a3b342d5dedfe1e8819771b2ac3d6b526c04
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000001431e0fae6d7217caa0000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 427269616e000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 425249414e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

30481:9951:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31378:28;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;31378:28:0;;;;;;;;20884:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23202:215::-;;;;;;;;;;-1:-1:-1;23202:215:0;;;;;:::i;:::-;;:::i;:::-;;;1473:14:1;;1466:22;1448:41;;1436:2;1421:18;23202:215:0;1308:187:1;38126:147:0;;;;;;;;;;;;;:::i;:::-;;21986:99;;;;;;;;;;-1:-1:-1;22065:12:0;;21986:99;;37247:433;;;;;;;;;;-1:-1:-1;37247:433:0;;;;;:::i;:::-;;:::i;23995:283::-;;;;;;;;;;-1:-1:-1;23995:283:0;;;;;:::i;:::-;;:::i;21837:84::-;;;;;;;;;;-1:-1:-1;21837:84:0;;21911:2;2355:36:1;;2343:2;2328:18;21837:84:0;2213:184:1;31734:46:0;;;;;;;;;;;;31778:2;31734:46;;36963:112;;;;;;;;;;;;;:::i;22148:118::-;;;;;;;;;;-1:-1:-1;22148:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;22240:18:0;22213:7;22240:18;;;;;;;;;;;;22148:118;17432:103;;;;;;;;;;;;;:::i;37873:245::-;;;;;;;;;;-1:-1:-1;37873:245:0;;;;;:::i;:::-;;:::i;31248:23::-;;;;;;;;;;-1:-1:-1;31248:23:0;;;;-1:-1:-1;;;;;31248:23:0;;;;;;-1:-1:-1;;;;;2566:32:1;;;2548:51;;2536:2;2521:18;31248:23:0;2402:203:1;36574:263:0;;;;;;;;;;-1:-1:-1;36574:263:0;;;;;:::i;:::-;;:::i;16757:87::-;;;;;;;;;;-1:-1:-1;16830:6:0;;-1:-1:-1;;;;;16830:6:0;16757:87;;21094:95;;;;;;;;;;;;;:::i;22471:182::-;;;;;;;;;;-1:-1:-1;22471:182:0;;;;;:::i;:::-;;:::i;31318:26::-;;;;;;;;;;-1:-1:-1;31318:26:0;;;;-1:-1:-1;;;;;31318:26:0;;;31682:45;;;;;;;;;;;;31725:2;31682:45;;31046:41;;;;;;;;;;-1:-1:-1;31046:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31607:57;;;;;;;;;;;;31655:9;31607:57;;22716:167;;;;;;;;;;-1:-1:-1;22716:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;22848:18:0;;;22821:7;22848:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22716:167;34172:2178;;;;;;:::i;:::-;;:::i;17690:220::-;;;;;;;;;;-1:-1:-1;17690:220:0;;;;;:::i;:::-;;:::i;31094:25::-;;;;;;;;;;;;;;;;31211:30;;;;;;;;;;-1:-1:-1;31211:30:0;;;;-1:-1:-1;;;;;31211:30:0;;;20884:91;20929:13;20962:5;20955:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20884:91;:::o;23202:215::-;23300:4;6077:10;23356:31;6077:10;23372:7;23381:5;23356:8;:31::i;:::-;23405:4;23398:11;;;23202:215;;;;;:::o;38126:147::-;38183:8;;;;;:13;38179:57;;38205:31;;-1:-1:-1;;;38205:31:0;;;;;;;;;;;38179:57;38247:18;:16;:18::i;:::-;38126:147::o;37247:433::-;16643:13;:11;:13::i;:::-;37339:38:::1;::::0;-1:-1:-1;;;37339:38:0;;37371:4:::1;37339:38;::::0;::::1;2548:51:1::0;37317:19:0::1;::::0;-1:-1:-1;;;;;37339:23:0;::::1;::::0;::::1;::::0;2521:18:1;;37339:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37450:62;::::0;;37485:10:::1;37450:62;::::0;::::1;5455:51:1::0;5522:18;;;;5515:34;;;37450:62:0;;;;;;;;;;5428:18:1;;;;37450:62:0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;37450:62:0::1;-1:-1:-1::0;;;37450:62:0::1;::::0;;37424:99;;5515:34:1;;-1:-1:-1;;;;;;;;;;37424:11:0;::::1;::::0;:99:::1;::::0;37450:62;37424:99:::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37388:135;;;;37556:7;:57;;;;-1:-1:-1::0;37568:11:0;;:16;;:44:::1;;;37599:4;37588:24;;;;;;;;;;;;:::i;:::-;37534:138;;;::::0;-1:-1:-1;;;37534:138:0;;6336:2:1;37534:138:0::1;::::0;::::1;6318:21:1::0;6375:2;6355:18;;;6348:30;6414:33;6394:18;;;6387:61;6465:18;;37534:138:0::1;;;;;;;;;37306:374;;;37247:433:::0;:::o;23995:283::-;24116:4;6077:10;24174:37;24190:4;6077:10;24205:5;24174:15;:37::i;:::-;24222:26;24232:4;24238:2;24242:5;24222:9;:26::i;:::-;-1:-1:-1;24266:4:0;;23995:283;-1:-1:-1;;;;23995:283:0:o;36963:112::-;16643:13;:11;:13::i;:::-;37016:51:::1;::::0;37024:10:::1;::::0;37045:21:::1;37016:51:::0;::::1;;;::::0;::::1;::::0;;;37045:21;37024:10;37016:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36963:112::o:0;17432:103::-;16643:13;:11;:13::i;:::-;17497:30:::1;17524:1;17497:18;:30::i;37873:245::-:0;16643:13;:11;:13::i;:::-;-1:-1:-1;;;;;37959:29:0;::::1;37955:64;;37997:22;;-1:-1:-1::0;;;37997:22:0::1;;;;;;;;;;;37955:64;38030:11;:29:::0;;-1:-1:-1;;;;;;38030:29:0::1;-1:-1:-1::0;;;;;38030:29:0;::::1;::::0;;::::1;::::0;;;38075:35:::1;::::0;2548:51:1;;;38075:35:0::1;::::0;2536:2:1;2521:18;38075:35:0::1;;;;;;;;37873:245:::0;:::o;36574:263::-;16643:13;:11;:13::i;:::-;36689:3:::1;36673:13;22065:12:::0;;;21986:99;36673:13:::1;:19;;;;:::i;:::-;36657:13;:35;36653:85;;;36714:24;;-1:-1:-1::0;;;36714:24:0::1;;;;;;;;;;;36653:85;36749:13;:29:::0;;;36794:35:::1;::::0;160:25:1;;;36794:35:0::1;::::0;148:2:1;133:18;36794:35:0::1;14:177:1::0;21094:95:0;21141:13;21174:7;21167:14;;;;;:::i;22471:182::-;22540:4;6077:10;22596:27;6077:10;22613:2;22617:5;22596:9;:27::i;34172:2178::-;16643:13;:11;:13::i;:::-;34409:10:::1;::::0;:14;34405:56:::1;;34432:29;;-1:-1:-1::0;;;34432:29:0::1;;;;;;;;;;;34405:56;34495:9;34476:15;:28;;:67;;;-1:-1:-1::0;34508:35:0;;::::1;;34476:67;34472:117;;;34565:24;;-1:-1:-1::0;;;34565:24:0::1;;;;;;;;;;;34472:117;34635:15;34622:10;:28:::0;34761:43:::1;34778:4;34785:18:::0;34761:8:::1;:43::i;:::-;-1:-1:-1::0;34930:6:0::1;::::0;34898:60:::1;::::0;34915:4:::1;::::0;-1:-1:-1;;;;;34930:6:0::1;34939:18:::0;34898:8:::1;:60::i;:::-;34971:6;::::0;-1:-1:-1;;;;;34971:6:0::1;:22;35001:15:::0;35040:4:::1;35060:18:::0;;35001:15;35156:7:::1;16830:6:::0;;-1:-1:-1;;;;;16830:6:0;;16757:87;35156:7:::1;34971:233;::::0;::::1;::::0;;;-1:-1:-1;;;;;;34971:233:0;;;-1:-1:-1;;;;;7191:15:1;;;34971:233:0::1;::::0;::::1;7173:34:1::0;7223:18;;;7216:34;;;;7266:18;;;7259:34;;;;7309:18;;;7302:34;7373:15;;;7352:19;;;7345:44;35178:15:0::1;7405:19:1::0;;;7398:35;7107:19;;34971:233:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;35267:16:0::1;::::0;;35281:1:::1;35267:16:::0;;;;;::::1;::::0;;35243:21:::1;::::0;-1:-1:-1;35267:16:0;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;35304:6:0::1;::::0;:13:::1;::::0;;-1:-1:-1;;;35304:13:0;;;;35243:40;;-1:-1:-1;;;;;;35304:6:0;;::::1;::::0;:11:::1;::::0;-1:-1:-1;35304:13:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:6;:13:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35294:4;35299:1;35294:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;35294:23:0::1;;;-1:-1:-1::0;;;;;35294:23:0::1;;;::::0;::::1;35346:4;35328;35333:1;35328:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;35328:23:0::1;;;-1:-1:-1::0;;;;;35328:23:0::1;;;::::0;::::1;35393:6;35388:604;35405:16:::0;;::::1;35388:604;;;35508:4;35486:9;:19;35496:5;;35502:1;35496:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35486:19:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35486:19:0;;;:26;;-1:-1:-1;;35486:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;35556:6:::1;::::0;::::1;:19;35594:12:::0;;35607:1;35594:15;;::::1;;;;;:::i;:::-;;;;;;;35628:4;35556:91;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;35556:91:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;35705:6;::::0;35741:15;;35527:120;;-1:-1:-1;;;;;;35705:6:0::1;::::0;:28:::1;::::0;35527:120;;35705:6:::1;::::0;35741:15:::1;;;;:::i;:::-;;;;;;;35776:12;;35789:1;35776:15;;;;;;;:::i;:::-;;;;;;;35810:4;35833:5;;35839:1;35833:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;35860:15;35705:185;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;35705:185:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;;35975:5;35953:9;:19;35963:5;;35969:1;35963:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35953:19:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35953:19:0;:27;;-1:-1:-1;;35953:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;;35423:3:0::1;35388:604;;;-1:-1:-1::0;36076:21:0::1;36112::::0;;36108:235:::1;;36169:86;::::0;36151:12:::1;::::0;36177:10:::1;::::0;36219:17;;36151:12;36169:86;36151:12;36169:86;36219:17;36177:10;36169:86:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36150:105;;;36278:7;36270:61;;;::::0;-1:-1:-1;;;36270:61:0;;11111:2:1;36270:61:0::1;::::0;::::1;11093:21:1::0;11150:2;11130:18;;;11123:30;11189:34;11169:18;;;11162:62;-1:-1:-1;;;11240:18:1;;;11233:39;11289:19;;36270:61:0::1;10909:405:1::0;36270:61:0::1;36135:208;36108:235;34375:1975;;34172:2178:::0;;;;;;:::o;17690:220::-;16643:13;:11;:13::i;:::-;-1:-1:-1;;;;;17775:22:0;::::1;17771:93;;17821:31;::::0;-1:-1:-1;;;17821:31:0;;17849:1:::1;17821:31;::::0;::::1;2548:51:1::0;2521:18;;17821:31:0::1;2402:203:1::0;17771:93:0::1;17874:28;17893:8;17874:18;:28::i;28088:130::-:0;28173:37;28182:5;28189:7;28198:5;28205:4;28173:8;:37::i;:::-;28088:130;;;:::o;39532:897::-;39590:8;;;-1:-1:-1;;39579:24:0;;39602:1;39590:13;;;;39579:24;;;;;39707:45;;-1:-1:-1;;;39707:45:0;;39721:4;39707:45;;;2548:51:1;;;-1:-1:-1;;39707:30:0;;2521:18:1;;39707:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39685:67;;39852:13;;39835:14;:30;39831:525;;;39906:16;;;39920:1;39906:16;;;;;;;;39882:21;;39906:16;;;;;;;;;;-1:-1:-1;39906:16:0;39882:40;;39955:4;39937;39942:1;39937:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39937:23:0;;;:7;;;;;;;;;:23;39985:4;;39975:7;;39985:4;;;39975;;39985;;39975:7;;;;;;:::i;:::-;-1:-1:-1;;;;;39975:14:0;;;:7;;;;;;;;;:14;40036:6;;40004:56;;40021:4;;40036:6;40045:14;40004:8;:56::i;:::-;40075:6;;40227:11;;40075:212;;-1:-1:-1;;;40075:212:0;;-1:-1:-1;;;;;40075:6:0;;;;:57;;:212;;40151:14;;40075:6;;40204:4;;40227:11;;;40257:15;;40075:212;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40316:11:0;;40307:37;;;-1:-1:-1;;;;;40316:11:0;;;5455:51:1;;5537:2;5522:18;;5515:34;;;40307:37:0;;-1:-1:-1;5428:18:1;;-1:-1:-1;40307:37:0;;;;;;;39867:489;39831:525;-1:-1:-1;40377:8:0;;;40389:1;40377:13;;;;;-1:-1:-1;;40366:24:0;;;;;;39532:897::o;16922:166::-;16830:6;;-1:-1:-1;;;;;16830:6:0;6077:10;16982:23;16978:103;;17029:40;;-1:-1:-1;;;17029:40:0;;6077:10;17029:40;;;2548:51:1;2521:18;;17029:40:0;2402:203:1;29847:603:0;-1:-1:-1;;;;;22848:18:0;;;29981:24;22848:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;30048:37:0;;30044:399;;30125:5;30106:16;:24;30102:214;;;30158:142;;-1:-1:-1;;;30158:142:0;;-1:-1:-1;;;;;12126:32:1;;30158:142:0;;;12108:51:1;12175:18;;;12168:34;;;12218:18;;;12211:34;;;12081:18;;30158:142:0;11906:345:1;30102:214:0;30359:57;30368:5;30375:7;30403:5;30384:16;:24;30410:5;30359:8;:57::i;24663:308::-;-1:-1:-1;;;;;24747:18:0;;24743:88;;24789:30;;-1:-1:-1;;;24789:30:0;;24816:1;24789:30;;;2548:51:1;2521:18;;24789:30:0;2402:203:1;24743:88:0;-1:-1:-1;;;;;24845:16:0;;24841:88;;24885:32;;-1:-1:-1;;;24885:32:0;;24914:1;24885:32;;;2548:51:1;2521:18;;24885:32:0;2402:203:1;24841:88:0;24939:24;24947:4;24953:2;24957:5;24939:7;:24::i;18070:191::-;18163:6;;;-1:-1:-1;;;;;18180:17:0;;;-1:-1:-1;;;;;;18180:17:0;;;;;;;18213:40;;18163:6;;;18180:17;18163:6;;18213:40;;18144:16;;18213:40;18133:128;18070:191;:::o;29069:486::-;-1:-1:-1;;;;;29225:19:0;;29221:91;;29268:32;;-1:-1:-1;;;29268:32:0;;29297:1;29268:32;;;2548:51:1;2521:18;;29268:32:0;2402:203:1;29221:91:0;-1:-1:-1;;;;;29326:21:0;;29322:92;;29371:31;;-1:-1:-1;;;29371:31:0;;29399:1;29371:31;;;2548:51:1;2521:18;;29371:31:0;2402:203:1;29322:92:0;-1:-1:-1;;;;;29424:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;29470:78;;;;29521:7;-1:-1:-1;;;;;29505:31:0;29514:5;-1:-1:-1;;;;;29505:31:0;;29530:5;29505:31;;;;160:25:1;;148:2;133:18;;14:177;29505:31:0;;;;;;;;29069:486;;;;:::o;38450:1074::-;38663:1;38650:10;;:14;:83;;;;;31655:9;38699:10;;:34;;;;:::i;:::-;38681:15;:52;38650:83;38632:842;;;-1:-1:-1;;;;;38806:15:0;;;;;;:9;:15;;;;;;;;;:32;;-1:-1:-1;;;;;;38825:13:0;;;;;;:9;:13;;;;;;;;38806:32;38800:663;;38961:8;;38909;;-1:-1:-1;;;;;38953:16:0;;;38961:8;;38953:16;38988:208;;;;31814:3;39029:24;31725:2;39029:5;:24;:::i;:::-;39028:36;;;;:::i;:::-;39022:42;;38988:208;;;39100:8;;-1:-1:-1;;;;;39100:8:0;;;39094:14;;;;39090:106;;31814:3;39140:25;31778:2;39140:5;:25;:::i;:::-;39139:37;;;;:::i;:::-;39133:43;;39090:106;39218:8;;;;;:13;:23;;;;;39236:5;39235:6;39218:23;39214:90;;;39266:18;:16;:18::i;:::-;39322:12;39331:3;39322:12;;:::i;:::-;;-1:-1:-1;39357:7:0;;39353:95;;39389:39;39403:4;39417;39424:3;39389:13;:39::i;:::-;38841:622;;38800:663;39486:30;39500:4;39506:2;39510:5;25295:1135;-1:-1:-1;;;;;25385:18:0;;25381:552;;25539:5;25523:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;25381:552:0;;-1:-1:-1;25381:552:0;;-1:-1:-1;;;;;25599:15:0;;25577:19;25599:15;;;;;;;;;;;25633:19;;;25629:117;;;25680:50;;-1:-1:-1;;;25680:50:0;;-1:-1:-1;;;;;12126:32:1;;25680:50:0;;;12108:51:1;12175:18;;;12168:34;;;12218:18;;;12211:34;;;12081:18;;25680:50:0;11906:345:1;25629:117:0;-1:-1:-1;;;;;25869:15:0;;:9;:15;;;;;;;;;;25887:19;;;;25869:37;;25381:552;-1:-1:-1;;;;;25949:16:0;;25945:435;;26115:12;:21;;;;;;;25945:435;;;-1:-1:-1;;;;;26331:13:0;;:9;:13;;;;;;;;;;:22;;;;;;25945:435;26412:2;-1:-1:-1;;;;;26397:25:0;26406:4;-1:-1:-1;;;;;26397:25:0;;26416:5;26397:25;;;;160::1;;148:2;133:18;;14:177;26397:25:0;;;;;;;;25295:1135;;;:::o;196:250:1:-;281:1;291:113;305:6;302:1;299:13;291:113;;;381:11;;;375:18;362:11;;;355:39;327:2;320:10;291:113;;;-1:-1:-1;;438:1:1;420:16;;413:27;196:250::o;451:396::-;600:2;589:9;582:21;563:4;632:6;626:13;675:6;670:2;659:9;655:18;648:34;691:79;763:6;758:2;747:9;743:18;738:2;730:6;726:15;691:79;:::i;:::-;831:2;810:15;-1:-1:-1;;806:29:1;791:45;;;;838:2;787:54;;451:396;-1:-1:-1;;451:396:1:o;852:131::-;-1:-1:-1;;;;;927:31:1;;917:42;;907:70;;973:1;970;963:12;988:315;1056:6;1064;1117:2;1105:9;1096:7;1092:23;1088:32;1085:52;;;1133:1;1130;1123:12;1085:52;1172:9;1159:23;1191:31;1216:5;1191:31;:::i;:::-;1241:5;1293:2;1278:18;;;;1265:32;;-1:-1:-1;;;988:315:1:o;1500:247::-;1559:6;1612:2;1600:9;1591:7;1587:23;1583:32;1580:52;;;1628:1;1625;1618:12;1580:52;1667:9;1654:23;1686:31;1711:5;1686:31;:::i;:::-;1736:5;1500:247;-1:-1:-1;;;1500:247:1:o;1752:456::-;1829:6;1837;1845;1898:2;1886:9;1877:7;1873:23;1869:32;1866:52;;;1914:1;1911;1904:12;1866:52;1953:9;1940:23;1972:31;1997:5;1972:31;:::i;:::-;2022:5;-1:-1:-1;2079:2:1;2064:18;;2051:32;2092:33;2051:32;2092:33;:::i;:::-;1752:456;;2144:7;;-1:-1:-1;;;2198:2:1;2183:18;;;;2170:32;;1752:456::o;2610:180::-;2669:6;2722:2;2710:9;2701:7;2697:23;2693:32;2690:52;;;2738:1;2735;2728:12;2690:52;-1:-1:-1;2761:23:1;;2610:180;-1:-1:-1;2610:180:1:o;2795:388::-;2863:6;2871;2924:2;2912:9;2903:7;2899:23;2895:32;2892:52;;;2940:1;2937;2930:12;2892:52;2979:9;2966:23;2998:31;3023:5;2998:31;:::i;:::-;3048:5;-1:-1:-1;3105:2:1;3090:18;;3077:32;3118:33;3077:32;3118:33;:::i;:::-;3170:7;3160:17;;;2795:388;;;;;:::o;3188:367::-;3251:8;3261:6;3315:3;3308:4;3300:6;3296:17;3292:27;3282:55;;3333:1;3330;3323:12;3282:55;-1:-1:-1;3356:20:1;;3399:18;3388:30;;3385:50;;;3431:1;3428;3421:12;3385:50;3468:4;3460:6;3456:17;3444:29;;3528:3;3521:4;3511:6;3508:1;3504:14;3496:6;3492:27;3488:38;3485:47;3482:67;;;3545:1;3542;3535:12;3482:67;3188:367;;;;;:::o;3560:910::-;3700:6;3708;3716;3724;3732;3740;3793:3;3781:9;3772:7;3768:23;3764:33;3761:53;;;3810:1;3807;3800:12;3761:53;3850:9;3837:23;3879:18;3920:2;3912:6;3909:14;3906:34;;;3936:1;3933;3926:12;3906:34;3975:70;4037:7;4028:6;4017:9;4013:22;3975:70;:::i;:::-;4064:8;;-1:-1:-1;3949:96:1;-1:-1:-1;4152:2:1;4137:18;;4124:32;;-1:-1:-1;4168:16:1;;;4165:36;;;4197:1;4194;4187:12;4165:36;;4236:72;4300:7;4289:8;4278:9;4274:24;4236:72;:::i;:::-;3560:910;;;;-1:-1:-1;4327:8:1;4409:2;4394:18;;4381:32;;4460:2;4445:18;;;4432:32;;-1:-1:-1;3560:910:1;-1:-1:-1;;;;3560:910:1:o;4707:380::-;4786:1;4782:12;;;;4829;;;4850:61;;4904:4;4896:6;4892:17;4882:27;;4850:61;4957:2;4949:6;4946:14;4926:18;4923:38;4920:161;;5003:10;4998:3;4994:20;4991:1;4984:31;5038:4;5035:1;5028:15;5066:4;5063:1;5056:15;4920:161;;4707:380;;;:::o;5092:184::-;5162:6;5215:2;5203:9;5194:7;5190:23;5186:32;5183:52;;;5231:1;5228;5221:12;5183:52;-1:-1:-1;5254:16:1;;5092:184;-1:-1:-1;5092:184:1:o;5560:287::-;5689:3;5727:6;5721:13;5743:66;5802:6;5797:3;5790:4;5782:6;5778:17;5743:66;:::i;:::-;5825:16;;;;;5560:287;-1:-1:-1;;5560:287:1:o;5852:277::-;5919:6;5972:2;5960:9;5951:7;5947:23;5943:32;5940:52;;;5988:1;5985;5978:12;5940:52;6020:9;6014:16;6073:5;6066:13;6059:21;6052:5;6049:32;6039:60;;6095:1;6092;6085:12;6494:127;6555:10;6550:3;6546:20;6543:1;6536:31;6586:4;6583:1;6576:15;6610:4;6607:1;6600:15;6626:217;6666:1;6692;6682:132;;6736:10;6731:3;6727:20;6724:1;6717:31;6771:4;6768:1;6761:15;6799:4;6796:1;6789:15;6682:132;-1:-1:-1;6828:9:1;;6626:217::o;7444:306::-;7532:6;7540;7548;7601:2;7589:9;7580:7;7576:23;7572:32;7569:52;;;7617:1;7614;7607:12;7569:52;7646:9;7640:16;7630:26;;7696:2;7685:9;7681:18;7675:25;7665:35;;7740:2;7729:9;7725:18;7719:25;7709:35;;7444:306;;;;;:::o;7755:127::-;7816:10;7811:3;7807:20;7804:1;7797:31;7847:4;7844:1;7837:15;7871:4;7868:1;7861:15;7887:251;7957:6;8010:2;7998:9;7989:7;7985:23;7981:32;7978:52;;;8026:1;8023;8016:12;7978:52;8058:9;8052:16;8077:31;8102:5;8077:31;:::i;8143:127::-;8204:10;8199:3;8195:20;8192:1;8185:31;8235:4;8232:1;8225:15;8259:4;8256:1;8249:15;8275:465;8328:3;8366:5;8360:12;8393:6;8388:3;8381:19;8419:4;8448;8443:3;8439:14;8432:21;;8487:4;8480:5;8476:16;8510:1;8520:195;8534:6;8531:1;8528:13;8520:195;;;8599:13;;-1:-1:-1;;;;;8595:39:1;8583:52;;8655:12;;;;8690:15;;;;8631:1;8549:9;8520:195;;;-1:-1:-1;8731:3:1;;8275:465;-1:-1:-1;;;;;8275:465:1:o;8745:332::-;8952:6;8941:9;8934:25;8995:2;8990;8979:9;8975:18;8968:30;8915:4;9015:56;9067:2;9056:9;9052:18;9044:6;9015:56;:::i;:::-;9007:64;8745:332;-1:-1:-1;;;;8745:332:1:o;9082:1105::-;9177:6;9208:2;9251;9239:9;9230:7;9226:23;9222:32;9219:52;;;9267:1;9264;9257:12;9219:52;9300:9;9294:16;9329:18;9370:2;9362:6;9359:14;9356:34;;;9386:1;9383;9376:12;9356:34;9424:6;9413:9;9409:22;9399:32;;9469:7;9462:4;9458:2;9454:13;9450:27;9440:55;;9491:1;9488;9481:12;9440:55;9520:2;9514:9;9542:2;9538;9535:10;9532:36;;;9548:18;;:::i;:::-;9594:2;9591:1;9587:10;9626:2;9620:9;9689:2;9685:7;9680:2;9676;9672:11;9668:25;9660:6;9656:38;9744:6;9732:10;9729:22;9724:2;9712:10;9709:18;9706:46;9703:72;;;9755:18;;:::i;:::-;9791:2;9784:22;9841:18;;;9875:15;;;;-1:-1:-1;9917:11:1;;;9913:20;;;9945:19;;;9942:39;;;9977:1;9974;9967:12;9942:39;10001:11;;;;10021:135;10037:6;10032:3;10029:15;10021:135;;;10103:10;;10091:23;;10054:12;;;;10134;;;;10021:135;;;10175:6;9082:1105;-1:-1:-1;;;;;;;;9082:1105:1:o;10192:502::-;10455:6;10444:9;10437:25;10498:3;10493:2;10482:9;10478:18;10471:31;10418:4;10519:57;10571:3;10560:9;10556:19;10548:6;10519:57;:::i;:::-;-1:-1:-1;;;;;10612:32:1;;;;10607:2;10592:18;;10585:60;-1:-1:-1;10676:2:1;10661:18;10654:34;10511:65;10192:502;-1:-1:-1;;10192:502:1:o;11319:582::-;11618:6;11607:9;11600:25;11661:6;11656:2;11645:9;11641:18;11634:34;11704:3;11699:2;11688:9;11684:18;11677:31;11581:4;11725:57;11777:3;11766:9;11762:19;11754:6;11725:57;:::i;:::-;-1:-1:-1;;;;;11818:32:1;;;;11813:2;11798:18;;11791:60;-1:-1:-1;11882:3:1;11867:19;11860:35;11717:65;11319:582;-1:-1:-1;;;11319:582:1:o;12256:125::-;12321:9;;;12342:10;;;12339:36;;;12355:18;;:::i;12386:168::-;12459:9;;;12490;;12507:15;;;12501:22;;12487:37;12477:71;;12528:18;;:::i;12559:128::-;12626:9;;;12647:11;;;12644:37;;;12661:18;;:::i

Swarm Source

ipfs://f0194c4ea8d5fc76cf58dd692e97c71d8c19913dbb99db3c385010de8e8d73c1
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.