ETH Price: $3,516.27 (+2.78%)
Gas: 5 Gwei

Token

Apu Wif Hat (APUWIF)
 

Overview

Max Total Supply

1,000,000,000 APUWIF

Holders

99

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,588,411.755161822422885118 APUWIF

Value
$0.00
0x6984bfaa4f7088048ae216bd9203f7da3e1198ed
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:
ApuWifHat

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 1 : ApuWifHat.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

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

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @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.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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

// lib/v2-core/contracts/interfaces/IUniswapV2Factory.sol

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

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

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

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

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

// lib/v2-core/contracts/interfaces/IUniswapV2Pair.sol

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// lib/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

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

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

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

// 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/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

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

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

// 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) internal _balances;

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

    uint256 internal _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/ApuWifHat.sol

/* Apu Wif Hat is an ERC20 token. Upon creation, 1,000,000,000 APUWIF is minted to this contract.
 * No more APUWIF can be minted or burned, ever. The contract Owner deploys all of the APUWIF into
 * liquidity on Uniswap against ETH sent to that function call.
 */
contract ApuWifHat is ERC20, Ownable {

    error LiquidityAlreadyDeployed();
    error LiquidityDeploymentFailed();
    error CannotHaveOverMaxAllowedAfterBuy();
    error OnlyWhitelistedCanBuy();

    address public apuWifHatLpAddress;
    bool public onlyWhitelistedBuys;
    mapping(address => bool) public whitelistedBuyers;
    uint256 public buyTax = 2500; // 25% tax on buys, by default
    uint256 public maxAllowed = 10000000 * 10**18; // 1% of total supply

    IUniswapV2Router02 public uniswapRouter = 
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    constructor()
        ERC20(string("Apu Wif Hat"), string("APUWIF"))
        Ownable(0xc4973FeaE9C66e048847eA0ecDA02095E9d15523)
    {
        _mint(address(this), 1000000000 * 10**18);
    }

    /* External function to deploy liquidity on Uniswap against all of the APUWIF in this contract.
     * The caller must send ETH to this function all of which will be used to pair with APUWIF.
     */
    function deployLiquidity()
        external
        payable
        onlyOwner
    {
        if (apuWifHatLpAddress != address(0)) {
            revert LiquidityAlreadyDeployed();
        }

        onlyWhitelistedBuys = true;

        IERC20 apuWifHat = IERC20(address(this));
        apuWifHat.approve(address(uniswapRouter), apuWifHat.balanceOf(address(this)));

        uniswapRouter.addLiquidityETH{value: msg.value}(
            address(apuWifHat),
            apuWifHat.balanceOf(address(this)),
            0,
            0,
            address(this),
            block.timestamp
        );
        apuWifHatLpAddress = IUniswapV2Factory(uniswapRouter.factory()).getPair(
            address(apuWifHat), uniswapRouter.WETH());

        uint256 lpBalance = IERC20(apuWifHatLpAddress).balanceOf(address(this));

        if (
            apuWifHatLpAddress == address(0) ||
            apuWifHat.balanceOf(address(this)) != 0 ||
            lpBalance == 0    
        ) {
            revert LiquidityDeploymentFailed();
        }

        IERC20(apuWifHatLpAddress).transfer(owner(), lpBalance);
    }

    /* Overridden _update function, to add tax to Uniswap buy orders, and to prevent buys where the
     * buyer will have over 1% of the total supply of APUWIF after the buy order goes through.
     */
    function _update(address from, address to, uint256 value) internal override {
        if (
            apuWifHatLpAddress != address(0) &&
            from == apuWifHatLpAddress &&
            to != address(0) &&
            to != address(uniswapRouter) &&
            buyTax > 0
        ) {
            // This is a buy transaction on Uniswap that has buy restrictions
            if (onlyWhitelistedBuys && !whitelistedBuyers[to]) {
                revert OnlyWhitelistedCanBuy();
            }

            uint256 tax = value * buyTax / 10000;
            uint256 toValue = value - tax;
            uint256 fromBalance = _balances[from];

            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }

            // Check if 'to' will have more than max allowed after this transfer
            if (_balances[to] + toValue > maxAllowed) {
                revert CannotHaveOverMaxAllowedAfterBuy();
            }

            unchecked {
                _balances[from] = fromBalance - value;
                _balances[owner()] += tax;
                _balances[to] += toValue;
            }

            emit Transfer(from, owner(), tax);
            emit Transfer(from, to, toValue);

        } else {

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

    /* External function called by Owner to set the buy tax on Uniswap buy orders. The tax is a
     * percentage taken from the amount of APUWIF bought, sent to the contract Owner.
     */
    function setBuyTax(uint256 tax)
        external
        onlyOwner
    {
        require(tax <= 2500, "Tax cannot be over 25%");
        buyTax = tax;
    }

    /* External function called by Owner to set the maxAllowed (after buy) variable.
     */
    function setMaxAllowed(uint256 _max)
        external
        onlyOwner
    {
        maxAllowed = _max;
    }

    /* External function called by Owner to whitelist buyers. Only whitelisted addresses can
     * buy APUWIF from Uniswap, while the onlyWhitelistedBuys flag is set to true.
     */
    function whitelistBuyers(address[] calldata buyers)
        external
        onlyOwner
    {
        uint256 i;
        for (i = 0; i < buyers.length;) {
            whitelistedBuyers[buyers[i]] = true;
            unchecked {
                ++i;
            }
        }
    }

    /* External function called by Owner to set the onlyWhitelistedBuys flag to false. This allows
     * anyone to buy APUWIF from Uniswap.
     */
    function allowAllBuys()
        external
        onlyOwner
    {
        onlyWhitelistedBuys = false;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CannotHaveOverMaxAllowedAfterBuy","type":"error"},{"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":[],"name":"LiquidityAlreadyDeployed","type":"error"},{"inputs":[],"name":"LiquidityDeploymentFailed","type":"error"},{"inputs":[],"name":"OnlyWhitelistedCanBuy","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowAllBuys","outputs":[],"stateMutability":"nonpayable","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":[],"name":"apuWifHatLpAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelistedBuys","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"buyers","type":"address[]"}],"name":"whitelistBuyers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedBuyers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526109c46008556a084595161401484a000000600955600a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17905534801561004a575f80fd5b5073c4973feae9c66e048847ea0ecda02095e9d155236040518060400160405280600b81526020016a105c1d4815da598812185d60aa1b8152506040518060400160405280600681526020016520a82aaba4a360d11b81525081600390816100b291906105b7565b5060046100bf82826105b7565b5050506001600160a01b0381166100f057604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100f981610115565b50610110306b033b2e3c9fd0803ce8000000610166565b6106ec565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661018f5760405163ec442f0560e01b81525f60048201526024016100e7565b61019a5f838361019e565b5050565b6006546001600160a01b0316158015906101c557506006546001600160a01b038481169116145b80156101d957506001600160a01b03821615155b80156101f35750600a546001600160a01b03838116911614155b801561020057505f600854115b1561040c57600654600160a01b900460ff16801561023657506001600160a01b0382165f9081526007602052604090205460ff16155b1561025457604051631c5b379d60e31b815260040160405180910390fd5b5f61271060085483610266919061068a565b61027091906106a7565b90505f61027d82846106c6565b6001600160a01b0386165f90815260208190526040902054909150838110156102d25760405163391434e360e21b81526001600160a01b038716600482015260248101829052604481018590526064016100e7565b6009546001600160a01b0386165f908152602081905260409020546102f89084906106d9565b111561031757604051632702d41360e11b815260040160405180910390fd5b6001600160a01b0386165f90815260208190526040812085830390558390806103486005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f9081208054909501909455881683529082905290208054830190556103916005546001600160a01b031690565b6001600160a01b0316866001600160a01b03165f8051602061225c833981519152856040516103c291815260200190565b60405180910390a3846001600160a01b0316866001600160a01b03165f8051602061225c833981519152846040516103fc91815260200190565b60405180910390a3505050505050565b6001600160a01b038316610436578060025f82825461042b91906106d9565b909155506104a69050565b6001600160a01b0383165f90815260208190526040902054818110156104885760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100e7565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166104c2576002805482900390556104e0565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03165f8051602061225c8339815191528360405161051291815260200190565b60405180910390a35b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061054857607f821691505b60208210810361056657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561051b57805f5260205f20601f840160051c810160208510156105915750805b601f840160051c820191505b818110156105b0575f815560010161059d565b5050505050565b81516001600160401b038111156105d0576105d0610520565b6105e4816105de8454610534565b8461056c565b602080601f831160018114610617575f84156106005750858301515b5f19600386901b1c1916600185901b17855561066e565b5f85815260208120601f198616915b8281101561064557888601518255948401946001909101908401610626565b508582101561066257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176106a1576106a1610676565b92915050565b5f826106c157634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106a1576106a1610676565b808201808211156106a1576106a1610676565b611b63806106f95f395ff3fe608060405260043610610178575f3560e01c806370a08231116100d1578063ca3996711161007c578063e989e56711610057578063e989e5671461045d578063f2fde38b1461048e578063f46015ed146104ad575f80fd5b8063ca399671146103d8578063dc1052e2146103ed578063dd62ed3e1461040c575f80fd5b80638da5cb5b116100ac5780638da5cb5b1461037b57806395d89b41146103a5578063a9059cbb146103b9575f80fd5b806370a08231146102fa578063715018a61461033b578063735de9f71461034f575f80fd5b806318160ddd116101315780634086bf891161010c5780634086bf89146102af57806347f667aa146102b75780634f7041a5146102e5575f80fd5b806318160ddd1461025757806323b872dd14610275578063313ce56714610294575f80fd5b806308dfefea1161016157806308dfefea146101f3578063095ea7b3146102145780631318d0fd14610243575f80fd5b8063019af1001461017c57806306fdde03146101d2575b5f80fd5b348015610187575f80fd5b506006546101a89073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b3480156101dd575f80fd5b506101e66104cc565b6040516101c991906117d6565b3480156101fe575f80fd5b5061021261020d366004611829565b61055c565b005b34801561021f575f80fd5b5061023361022e3660046118b9565b6105f9565b60405190151581526020016101c9565b34801561024e575f80fd5b50610212610612565b348015610262575f80fd5b506002545b6040519081526020016101c9565b348015610280575f80fd5b5061023361028f3660046118e3565b610644565b34801561029f575f80fd5b50604051601281526020016101c9565b610212610667565b3480156102c2575f80fd5b506102336102d1366004611921565b60076020525f908152604090205460ff1681565b3480156102f0575f80fd5b5061026760085481565b348015610305575f80fd5b50610267610314366004611921565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b348015610346575f80fd5b50610212610dc1565b34801561035a575f80fd5b50600a546101a89073ffffffffffffffffffffffffffffffffffffffff1681565b348015610386575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166101a8565b3480156103b0575f80fd5b506101e6610dd4565b3480156103c4575f80fd5b506102336103d33660046118b9565b610de3565b3480156103e3575f80fd5b5061026760095481565b3480156103f8575f80fd5b50610212610407366004611943565b610df0565b348015610417575f80fd5b5061026761042636600461195a565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b348015610468575f80fd5b506006546102339074010000000000000000000000000000000000000000900460ff1681565b348015610499575f80fd5b506102126104a8366004611921565b610e6e565b3480156104b8575f80fd5b506102126104c7366004611943565b610ed1565b6060600380546104db90611991565b80601f016020809104026020016040519081016040528092919081815260200182805461050790611991565b80156105525780601f1061052957610100808354040283529160200191610552565b820191905f5260205f20905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b610564610ede565b5f5b818110156105f457600160075f858585818110610585576105856119e2565b905060200201602081019061059a9190611921565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101610566565b505050565b5f33610606818585610f31565b60019150505b92915050565b61061a610ede565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b5f33610651858285610f3e565b61065c85858561100b565b506001949350505050565b61066f610ede565b60065473ffffffffffffffffffffffffffffffffffffffff16156106bf576040517f049f8aca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055600a546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820181905291829163095ea7b39173ffffffffffffffffffffffffffffffffffffffff169083906370a0823190602401602060405180830381865afa158015610775573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107999190611a0f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af1158015610806573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082a9190611a26565b50600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9182169163f305d7199134918591908216906370a0823190602401602060405180830381865afa1580156108a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c99190611a0f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201525f6044820181905260648201523060848201524260a482015260c40160606040518083038185885af115801561094f573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906109749190611a45565b5050600a54604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff909216925063c45a01559160048083019260209291908290030181865afa1580156109e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a089190611a70565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390582600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab29190611a70565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa158015610b20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b449190611a70565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691821790556040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f91906370a0823190602401602060405180830381865afa158015610bdb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bff9190611a0f565b60065490915073ffffffffffffffffffffffffffffffffffffffff161580610cb157506040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610c8a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cae9190611a0f565b15155b80610cba575080155b15610cf1576040517fa9b844eb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610d2e60055473ffffffffffffffffffffffffffffffffffffffff1690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602481018490526044016020604051808303815f875af1158015610d9d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105f49190611a26565b610dc9610ede565b610dd25f6110b4565b565b6060600480546104db90611991565b5f3361060681858561100b565b610df8610ede565b6109c4811115610e69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f5461782063616e6e6f74206265206f766572203235250000000000000000000060448201526064015b60405180910390fd5b600855565b610e76610ede565b73ffffffffffffffffffffffffffffffffffffffff8116610ec5576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b610ece816110b4565b50565b610ed9610ede565b600955565b60055473ffffffffffffffffffffffffffffffffffffffff163314610dd2576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610e60565b6105f4838383600161112a565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110055781811015610ff7576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401610e60565b61100584848484035f61112a565b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661105a576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b73ffffffffffffffffffffffffffffffffffffffff82166110a9576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b6105f483838361126f565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b73ffffffffffffffffffffffffffffffffffffffff8416611179576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b73ffffffffffffffffffffffffffffffffffffffff83166111c8576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526001602090815260408083209387168352929052208290558015611005578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161126191815260200190565b60405180910390a350505050565b60065473ffffffffffffffffffffffffffffffffffffffff16158015906112b0575060065473ffffffffffffffffffffffffffffffffffffffff8481169116145b80156112d1575073ffffffffffffffffffffffffffffffffffffffff821615155b80156112f85750600a5473ffffffffffffffffffffffffffffffffffffffff838116911614155b801561130557505f600854115b1561162f5760065474010000000000000000000000000000000000000000900460ff168015611359575073ffffffffffffffffffffffffffffffffffffffff82165f9081526007602052604090205460ff16155b15611390576040517fe2d9bce800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f612710600854836113a29190611ab8565b6113ac9190611acf565b90505f6113b98284611b07565b73ffffffffffffffffffffffffffffffffffffffff86165f9081526020819052604090205490915083811015611441576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201526024810182905260448101859052606401610e60565b60095473ffffffffffffffffffffffffffffffffffffffff86165f90815260208190526040902054611474908490611b1a565b11156114ac576040517f4e05a82600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff86165f90815260208190526040812085830390558390806114f760055473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182015f90812080549095019094558816835290829052902080548301905561155a60055473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516115b891815260200190565b60405180910390a38473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161161f91815260200190565b60405180910390a3505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611666578060025f82825461165b9190611b1a565b909155506117169050565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054818110156116eb576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401610e60565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff821661173f5760028054829003905561176a565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117c991815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b5f806020838503121561183a575f80fd5b823567ffffffffffffffff80821115611851575f80fd5b818501915085601f830112611864575f80fd5b813581811115611872575f80fd5b8660208260051b8501011115611886575f80fd5b60209290920196919550909350505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610ece575f80fd5b5f80604083850312156118ca575f80fd5b82356118d581611898565b946020939093013593505050565b5f805f606084860312156118f5575f80fd5b833561190081611898565b9250602084013561191081611898565b929592945050506040919091013590565b5f60208284031215611931575f80fd5b813561193c81611898565b9392505050565b5f60208284031215611953575f80fd5b5035919050565b5f806040838503121561196b575f80fd5b823561197681611898565b9150602083013561198681611898565b809150509250929050565b600181811c908216806119a557607f821691505b6020821081036119dc577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215611a1f575f80fd5b5051919050565b5f60208284031215611a36575f80fd5b8151801515811461193c575f80fd5b5f805f60608486031215611a57575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611a80575f80fd5b815161193c81611898565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b808202811582820484141761060c5761060c611a8b565b5f82611b02577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b8181038181111561060c5761060c611a8b565b8082018082111561060c5761060c611a8b56fea2646970667358221220862845dfd9c8a4731f9aa1d24487aaa076cdf3c892c7b708a869531db76acd7864736f6c63430008190033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x608060405260043610610178575f3560e01c806370a08231116100d1578063ca3996711161007c578063e989e56711610057578063e989e5671461045d578063f2fde38b1461048e578063f46015ed146104ad575f80fd5b8063ca399671146103d8578063dc1052e2146103ed578063dd62ed3e1461040c575f80fd5b80638da5cb5b116100ac5780638da5cb5b1461037b57806395d89b41146103a5578063a9059cbb146103b9575f80fd5b806370a08231146102fa578063715018a61461033b578063735de9f71461034f575f80fd5b806318160ddd116101315780634086bf891161010c5780634086bf89146102af57806347f667aa146102b75780634f7041a5146102e5575f80fd5b806318160ddd1461025757806323b872dd14610275578063313ce56714610294575f80fd5b806308dfefea1161016157806308dfefea146101f3578063095ea7b3146102145780631318d0fd14610243575f80fd5b8063019af1001461017c57806306fdde03146101d2575b5f80fd5b348015610187575f80fd5b506006546101a89073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b3480156101dd575f80fd5b506101e66104cc565b6040516101c991906117d6565b3480156101fe575f80fd5b5061021261020d366004611829565b61055c565b005b34801561021f575f80fd5b5061023361022e3660046118b9565b6105f9565b60405190151581526020016101c9565b34801561024e575f80fd5b50610212610612565b348015610262575f80fd5b506002545b6040519081526020016101c9565b348015610280575f80fd5b5061023361028f3660046118e3565b610644565b34801561029f575f80fd5b50604051601281526020016101c9565b610212610667565b3480156102c2575f80fd5b506102336102d1366004611921565b60076020525f908152604090205460ff1681565b3480156102f0575f80fd5b5061026760085481565b348015610305575f80fd5b50610267610314366004611921565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b348015610346575f80fd5b50610212610dc1565b34801561035a575f80fd5b50600a546101a89073ffffffffffffffffffffffffffffffffffffffff1681565b348015610386575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166101a8565b3480156103b0575f80fd5b506101e6610dd4565b3480156103c4575f80fd5b506102336103d33660046118b9565b610de3565b3480156103e3575f80fd5b5061026760095481565b3480156103f8575f80fd5b50610212610407366004611943565b610df0565b348015610417575f80fd5b5061026761042636600461195a565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b348015610468575f80fd5b506006546102339074010000000000000000000000000000000000000000900460ff1681565b348015610499575f80fd5b506102126104a8366004611921565b610e6e565b3480156104b8575f80fd5b506102126104c7366004611943565b610ed1565b6060600380546104db90611991565b80601f016020809104026020016040519081016040528092919081815260200182805461050790611991565b80156105525780601f1061052957610100808354040283529160200191610552565b820191905f5260205f20905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b610564610ede565b5f5b818110156105f457600160075f858585818110610585576105856119e2565b905060200201602081019061059a9190611921565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101610566565b505050565b5f33610606818585610f31565b60019150505b92915050565b61061a610ede565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b5f33610651858285610f3e565b61065c85858561100b565b506001949350505050565b61066f610ede565b60065473ffffffffffffffffffffffffffffffffffffffff16156106bf576040517f049f8aca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055600a546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820181905291829163095ea7b39173ffffffffffffffffffffffffffffffffffffffff169083906370a0823190602401602060405180830381865afa158015610775573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107999190611a0f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af1158015610806573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082a9190611a26565b50600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9182169163f305d7199134918591908216906370a0823190602401602060405180830381865afa1580156108a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c99190611a0f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201525f6044820181905260648201523060848201524260a482015260c40160606040518083038185885af115801561094f573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906109749190611a45565b5050600a54604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff909216925063c45a01559160048083019260209291908290030181865afa1580156109e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a089190611a70565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390582600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab29190611a70565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa158015610b20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b449190611a70565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691821790556040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f91906370a0823190602401602060405180830381865afa158015610bdb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bff9190611a0f565b60065490915073ffffffffffffffffffffffffffffffffffffffff161580610cb157506040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610c8a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cae9190611a0f565b15155b80610cba575080155b15610cf1576040517fa9b844eb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610d2e60055473ffffffffffffffffffffffffffffffffffffffff1690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602481018490526044016020604051808303815f875af1158015610d9d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105f49190611a26565b610dc9610ede565b610dd25f6110b4565b565b6060600480546104db90611991565b5f3361060681858561100b565b610df8610ede565b6109c4811115610e69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f5461782063616e6e6f74206265206f766572203235250000000000000000000060448201526064015b60405180910390fd5b600855565b610e76610ede565b73ffffffffffffffffffffffffffffffffffffffff8116610ec5576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b610ece816110b4565b50565b610ed9610ede565b600955565b60055473ffffffffffffffffffffffffffffffffffffffff163314610dd2576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610e60565b6105f4838383600161112a565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110055781811015610ff7576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401610e60565b61100584848484035f61112a565b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661105a576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b73ffffffffffffffffffffffffffffffffffffffff82166110a9576040517fec442f050000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b6105f483838361126f565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b73ffffffffffffffffffffffffffffffffffffffff8416611179576040517fe602df050000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b73ffffffffffffffffffffffffffffffffffffffff83166111c8576040517f94280d620000000000000000000000000000000000000000000000000000000081525f6004820152602401610e60565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526001602090815260408083209387168352929052208290558015611005578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161126191815260200190565b60405180910390a350505050565b60065473ffffffffffffffffffffffffffffffffffffffff16158015906112b0575060065473ffffffffffffffffffffffffffffffffffffffff8481169116145b80156112d1575073ffffffffffffffffffffffffffffffffffffffff821615155b80156112f85750600a5473ffffffffffffffffffffffffffffffffffffffff838116911614155b801561130557505f600854115b1561162f5760065474010000000000000000000000000000000000000000900460ff168015611359575073ffffffffffffffffffffffffffffffffffffffff82165f9081526007602052604090205460ff16155b15611390576040517fe2d9bce800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f612710600854836113a29190611ab8565b6113ac9190611acf565b90505f6113b98284611b07565b73ffffffffffffffffffffffffffffffffffffffff86165f9081526020819052604090205490915083811015611441576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201526024810182905260448101859052606401610e60565b60095473ffffffffffffffffffffffffffffffffffffffff86165f90815260208190526040902054611474908490611b1a565b11156114ac576040517f4e05a82600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff86165f90815260208190526040812085830390558390806114f760055473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182015f90812080549095019094558816835290829052902080548301905561155a60055473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516115b891815260200190565b60405180910390a38473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161161f91815260200190565b60405180910390a3505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611666578060025f82825461165b9190611b1a565b909155506117169050565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054818110156116eb576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401610e60565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff821661173f5760028054829003905561176a565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117c991815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b5f806020838503121561183a575f80fd5b823567ffffffffffffffff80821115611851575f80fd5b818501915085601f830112611864575f80fd5b813581811115611872575f80fd5b8660208260051b8501011115611886575f80fd5b60209290920196919550909350505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610ece575f80fd5b5f80604083850312156118ca575f80fd5b82356118d581611898565b946020939093013593505050565b5f805f606084860312156118f5575f80fd5b833561190081611898565b9250602084013561191081611898565b929592945050506040919091013590565b5f60208284031215611931575f80fd5b813561193c81611898565b9392505050565b5f60208284031215611953575f80fd5b5035919050565b5f806040838503121561196b575f80fd5b823561197681611898565b9150602083013561198681611898565b809150509250929050565b600181811c908216806119a557607f821691505b6020821081036119dc577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215611a1f575f80fd5b5051919050565b5f60208284031215611a36575f80fd5b8151801515811461193c575f80fd5b5f805f60608486031215611a57575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611a80575f80fd5b815161193c81611898565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b808202811582820484141761060c5761060c611a8b565b5f82611b02577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b8181038181111561060c5761060c611a8b565b8082018082111561060c5761060c611a8b56fea2646970667358221220862845dfd9c8a4731f9aa1d24487aaa076cdf3c892c7b708a869531db76acd7864736f6c63430008190033

Deployed Bytecode Sourcemap

33311:6014:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33514:33;;;;;;;;;;-1:-1:-1;33514:33:0;;;;;;;;;;;190:42:1;178:55;;;160:74;;148:2;133:18;33514:33:0;;;;;;;;23954:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38784:277::-;;;;;;;;;;-1:-1:-1;38784:277:0;;;;;:::i;:::-;;:::i;:::-;;26173:186;;;;;;;;;;-1:-1:-1;26173:186:0;;;;;:::i;:::-;;:::i;:::-;;;1991:14:1;;1984:22;1966:41;;1954:2;1939:18;26173:186:0;1826:187:1;39216:107:0;;;;;;;;;;;;;:::i;25024:97::-;;;;;;;;;;-1:-1:-1;25102:12:0;;25024:97;;;2164:25:1;;;2152:2;2137:18;25024:97:0;2018:177:1;26919:244:0;;;;;;;;;;-1:-1:-1;26919:244:0;;;;;:::i;:::-;;:::i;24882:82::-;;;;;;;;;;-1:-1:-1;24882:82:0;;24955:2;2803:36:1;;2791:2;2776:18;24882:82:0;2661:184:1;34305:1105:0;;;:::i;33590:49::-;;;;;;;;;;-1:-1:-1;33590:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33645:28;;;;;;;;;;;;;;;;25179:116;;;;;;;;;;-1:-1:-1;25179:116:0;;;;;:::i;:::-;25270:18;;25244:7;25270:18;;;;;;;;;;;;25179:116;19320:101;;;;;;;;;;;;;:::i;33784:113::-;;;;;;;;;;-1:-1:-1;33784:113:0;;;;;;;;18665:85;;;;;;;;;;-1:-1:-1;18737:6:0;;;;18665:85;;24156:93;;;;;;;;;;;;;:::i;25490:178::-;;;;;;;;;;-1:-1:-1;25490:178:0;;;;;:::i;:::-;;:::i;33710:45::-;;;;;;;;;;;;;;;;38229:156;;;;;;;;;;-1:-1:-1;38229:156:0;;;;;:::i;:::-;;:::i;25726:140::-;;;;;;;;;;-1:-1:-1;25726:140:0;;;;;:::i;:::-;25832:18;;;;25806:7;25832:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25726:140;33553:31;;;;;;;;;;-1:-1:-1;33553:31:0;;;;;;;;;;;19570:215;;;;;;;;;;-1:-1:-1;19570:215:0;;;;;:::i;:::-;;:::i;38484:110::-;;;;;;;;;;-1:-1:-1;38484:110:0;;;;;:::i;:::-;;:::i;23954:89::-;23999:13;24031:5;24024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23954:89;:::o;38784:277::-;18558:13;:11;:13::i;:::-;38885:9:::1;38904:151;38916:17:::0;;::::1;38904:151;;;38981:4;38950:17;:28;38968:6;;38975:1;38968:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;38950:28;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;38950:28:0;:35;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;39027:3:0::1;38904:151;;;38875:186;38784:277:::0;;:::o;26173:186::-;26246:4;10127:10;26300:31;10127:10;26316:7;26325:5;26300:8;:31::i;:::-;26348:4;26341:11;;;26173:186;;;;;:::o;39216:107::-;18558:13;:11;:13::i;:::-;39289:19:::1;:27:::0;;;::::1;::::0;;39216:107::o;26919:244::-;27006:4;10127:10;27062:37;27078:4;10127:10;27093:5;27062:15;:37::i;:::-;27109:26;27119:4;27125:2;27129:5;27109:9;:26::i;:::-;-1:-1:-1;27152:4:0;;26919:244;-1:-1:-1;;;;26919:244:0:o;34305:1105::-;18558:13;:11;:13::i;:::-;34401:18:::1;::::0;:32:::1;:18;:32:::0;34397:96:::1;;34456:26;;;;;;;;;;;;;;34397:96;34503:19;:26:::0;;;::::1;::::0;::::1;::::0;;34616:13:::1;::::0;34632:34:::1;::::0;;;;34574:4:::1;34632:34;::::0;::::1;160:74:1::0;;;34574:4:0;;;34590:17:::1;::::0;::::1;34616:13;::::0;34574:4;;34632:19:::1;::::0;133:18:1;;34632:34:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34590:77;::::0;;::::1;::::0;;;;;;4962:42:1;4950:55;;;34590:77:0::1;::::0;::::1;4932:74:1::0;5022:18;;;5015:34;4905:18;;34590:77:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;34678:13:0::1;::::0;34771:34:::1;::::0;;;;34799:4:::1;34771:34;::::0;::::1;160:74:1::0;34678:13:0::1;::::0;;::::1;::::0;:29:::1;::::0;34715:9:::1;::::0;34747;;34771:19;;::::1;::::0;::::1;::::0;133:18:1;;34771:34:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34678:223;::::0;;::::1;::::0;;;;;;5655:42:1;5724:15;;;34678:223:0::1;::::0;::::1;5706:34:1::0;5756:18;;;5749:34;34819:1:0::1;5799:18:1::0;;;5792:34;;;5842:18;;;5835:34;34857:4:0::1;5885:19:1::0;;;5878:44;34876:15:0::1;5938:19:1::0;;;5931:35;5617:19;;34678:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;34950:13:0::1;::::0;:23:::1;::::0;;;;;;;:13:::1;::::0;;::::1;::::0;-1:-1:-1;34950:21:0::1;::::0;:23:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:13;:23:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34932:50;;;35004:9;35016:13;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34932:105;::::0;;::::1;::::0;;;;;;6728:42:1;6797:15;;;34932:105:0::1;::::0;::::1;6779:34:1::0;6849:15;;6829:18;;;6822:43;6691:18;;34932:105:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34911:18;:126:::0;;;::::1;;::::0;;;::::1;::::0;;::::1;::::0;;35068:51:::1;::::0;;;;35113:4:::1;35068:51;::::0;::::1;160:74:1::0;-1:-1:-1;;34911:126:0;35068:36:::1;::::0;133:18:1;;35068:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35147:18;::::0;35048:71;;-1:-1:-1;35147:32:0::1;:18;:32:::0;;:87:::1;;-1:-1:-1::0;35195:34:0::1;::::0;;;;35223:4:::1;35195:34;::::0;::::1;160:74:1::0;35195:19:0::1;::::0;::::1;::::0;::::1;::::0;133:18:1;;35195:34:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39:::0;::::1;35147:87;:117;;;-1:-1:-1::0;35250:14:0;;35147:117:::1;35130:208;;;35300:27;;;;;;;;;;;;;;35130:208;35355:18;::::0;::::1;;35348:35;35384:7;18737:6:::0;;;;;18665:85;35384:7:::1;35348:55;::::0;;::::1;::::0;;;;;;4962:42:1;4950:55;;;35348::0::1;::::0;::::1;4932:74:1::0;5022:18;;;5015:34;;;4905:18;;35348:55:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19320:101::-:0;18558:13;:11;:13::i;:::-;19384:30:::1;19411:1;19384:18;:30::i;:::-;19320:101::o:0;24156:93::-;24203:13;24235:7;24228:14;;;;;:::i;25490:178::-;25559:4;10127:10;25613:27;10127:10;25630:2;25634:5;25613:9;:27::i;38229:156::-;18558:13;:11;:13::i;:::-;38325:4:::1;38318:3;:11;;38310:46;;;::::0;::::1;::::0;;7078:2:1;38310:46:0::1;::::0;::::1;7060:21:1::0;7117:2;7097:18;;;7090:30;7156:24;7136:18;;;7129:52;7198:18;;38310:46:0::1;;;;;;;;;38366:6;:12:::0;38229:156::o;19570:215::-;18558:13;:11;:13::i;:::-;19654:22:::1;::::0;::::1;19650:91;;19699:31;::::0;::::1;::::0;;19727:1:::1;19699:31;::::0;::::1;160:74:1::0;133:18;;19699:31:0::1;14:226:1::0;19650:91:0::1;19750:28;19769:8;19750:18;:28::i;:::-;19570:215:::0;:::o;38484:110::-;18558:13;:11;:13::i;:::-;38570:10:::1;:17:::0;38484:110::o;18823:162::-;18737:6;;18882:23;18737:6;10127:10;18882:23;18878:101;;18928:40;;;;;10127:10;18928:40;;;160:74:1;133:18;;18928:40:0;14:226:1;30869:128:0;30953:37;30962:5;30969:7;30978:5;30985:4;30953:8;:37::i;32543:477::-;25832:18;;;;32642:24;25832:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;32728:17;32708:37;;32704:310;;32784:5;32765:16;:24;32761:130;;;32816:60;;;;;7459:42:1;7447:55;;32816:60:0;;;7429:74:1;7519:18;;;7512:34;;;7562:18;;;7555:34;;;7402:18;;32816:60:0;7227:368:1;32761:130:0;32932:57;32941:5;32948:7;32976:5;32957:16;:24;32983:5;32932:8;:57::i;:::-;32632:388;32543:477;;;:::o;27536:300::-;27619:18;;;27615:86;;27660:30;;;;;27687:1;27660:30;;;160:74:1;133:18;;27660:30:0;14:226:1;27615:86:0;27714:16;;;27710:86;;27753:32;;;;;27782:1;27753:32;;;160:74:1;133:18;;27753:32:0;14:226:1;27710:86:0;27805:24;27813:4;27819:2;27823:5;27805:7;:24::i;19939:187::-;20031:6;;;;20047:17;;;;;;;;;;;20079:40;;20031:6;;;20047:17;20031:6;;20079:40;;20012:16;;20079:40;20002:124;19939:187;:::o;31829:432::-;31941:19;;;31937:89;;31983:32;;;;;32012:1;31983:32;;;160:74:1;133:18;;31983:32:0;14:226:1;31937:89:0;32039:21;;;32035:90;;32083:31;;;;;32111:1;32083:31;;;160:74:1;133:18;;32083:31:0;14:226:1;32035:90:0;32134:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;32179:76;;;;32229:7;32213:31;;32222:5;32213:31;;;32238:5;32213:31;;;;2164:25:1;;2152:2;2137:18;;2018:177;32213:31:0;;;;;;;;31829:432;;;;:::o;35619:2414::-;35722:18;;:32;:18;:32;;;;:74;;-1:-1:-1;35778:18:0;;;35770:26;;;35778:18;;35770:26;35722:74;:106;;;;-1:-1:-1;35812:16:0;;;;;35722:106;:150;;;;-1:-1:-1;35858:13:0;;;35844:28;;;35858:13;;35844:28;;35722:150;:176;;;;;35897:1;35888:6;;:10;35722:176;35705:2322;;;36005:19;;;;;;;:45;;;;-1:-1:-1;36029:21:0;;;;;;;:17;:21;;;;;;;;36028:22;36005:45;36001:114;;;36077:23;;;;;;;;;;;;;;36001:114;36129:11;36160:5;36151:6;;36143:5;:14;;;;:::i;:::-;:22;;;;:::i;:::-;36129:36;-1:-1:-1;36179:15:0;36197:11;36129:36;36197:5;:11;:::i;:::-;36244:15;;;36222:19;36244:15;;;;;;;;;;;36179:29;;-1:-1:-1;36278:19:0;;;36274:115;;;36324:50;;;;;7459:42:1;7447:55;;36324:50:0;;;7429:74:1;7519:18;;;7512:34;;;7562:18;;;7555:34;;;7402:18;;36324:50:0;7227:368:1;36274:115:0;36514:10;;36488:13;;;:9;:13;;;;;;;;;;;:23;;36504:7;;36488:23;:::i;:::-;:36;36484:116;;;36551:34;;;;;;;;;;;;;;36484:116;36642:15;;;:9;:15;;;;;;;;;;36660:19;;;36642:37;;36719:3;;36642:9;36707:7;18737:6;;;;;18665:85;36707:7;36697:18;;;;;;;;;;;;;;;;;;-1:-1:-1;36697:18:0;;;:25;;;;;;;;36740:13;;;;;;;;;;:24;;;;;;36813:7;18737:6;;;;;18665:85;36813:7;36798:28;;36807:4;36798:28;;;36822:3;36798:28;;;;2164:25:1;;2152:2;2137:18;;2018:177;36798:28:0;;;;;;;;36860:2;36845:27;;36854:4;36845:27;;;36864:7;36845:27;;;;2164:25:1;;2152:2;2137:18;;2018:177;36845:27:0;;;;;;;;35909:975;;;38875:186:::1;38784:277:::0;;:::o;35705:2322::-;36909:18;;;36905:588;;37069:5;37053:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;36905:588:0;;-1:-1:-1;36905:588:0;;37135:15;;;37113:19;37135:15;;;;;;;;;;;37172:19;;;37168:123;;;37222:50;;;;;7459:42:1;7447:55;;37222:50:0;;;7429:74:1;7519:18;;;7512:34;;;7562:18;;;7555:34;;;7402:18;;37222:50:0;7227:368:1;37168:123:0;37423:15;;;:9;:15;;;;;;;;;;37441:19;;;;37423:37;;36905:588;37511:16;;;37507:465;;37686:12;:21;;;;;;;37507:465;;;37917:13;;;:9;:13;;;;;;;;;;:22;;;;;;37507:465;38006:2;37991:25;;38000:4;37991:25;;;38010:5;37991:25;;;;2164::1;;2152:2;2137:18;;2018:177;37991:25:0;;;;;;;;35619:2414;;;:::o;245:477:1:-;394:2;383:9;376:21;357:4;426:6;420:13;469:6;464:2;453:9;449:18;442:34;528:6;523:2;515:6;511:15;506:2;495:9;491:18;485:50;584:1;579:2;570:6;559:9;555:22;551:31;544:42;713:2;643:66;638:2;630:6;626:15;622:88;611:9;607:104;603:113;595:121;;;245:477;;;;:::o;727:615::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;930:9;917:23;959:18;1000:2;992:6;989:14;986:34;;;1016:1;1013;1006:12;986:34;1054:6;1043:9;1039:22;1029:32;;1099:7;1092:4;1088:2;1084:13;1080:27;1070:55;;1121:1;1118;1111:12;1070:55;1161:2;1148:16;1187:2;1179:6;1176:14;1173:34;;;1203:1;1200;1193:12;1173:34;1256:7;1251:2;1241:6;1238:1;1234:14;1230:2;1226:23;1222:32;1219:45;1216:65;;;1277:1;1274;1267:12;1216:65;1308:2;1300:11;;;;;1330:6;;-1:-1:-1;727:615:1;;-1:-1:-1;;;;727:615:1:o;1347:154::-;1433:42;1426:5;1422:54;1415:5;1412:65;1402:93;;1491:1;1488;1481:12;1506:315;1574:6;1582;1635:2;1623:9;1614:7;1610:23;1606:32;1603:52;;;1651:1;1648;1641:12;1603:52;1690:9;1677:23;1709:31;1734:5;1709:31;:::i;:::-;1759:5;1811:2;1796:18;;;;1783:32;;-1:-1:-1;;;1506:315:1:o;2200:456::-;2277:6;2285;2293;2346:2;2334:9;2325:7;2321:23;2317:32;2314:52;;;2362:1;2359;2352:12;2314:52;2401:9;2388:23;2420:31;2445:5;2420:31;:::i;:::-;2470:5;-1:-1:-1;2527:2:1;2512:18;;2499:32;2540:33;2499:32;2540:33;:::i;:::-;2200:456;;2592:7;;-1:-1:-1;;;2646:2:1;2631:18;;;;2618:32;;2200:456::o;2850:247::-;2909:6;2962:2;2950:9;2941:7;2937:23;2933:32;2930:52;;;2978:1;2975;2968:12;2930:52;3017:9;3004:23;3036:31;3061:5;3036:31;:::i;:::-;3086:5;2850:247;-1:-1:-1;;;2850:247:1:o;3360:180::-;3419:6;3472:2;3460:9;3451:7;3447:23;3443:32;3440:52;;;3488:1;3485;3478:12;3440:52;-1:-1:-1;3511:23:1;;3360:180;-1:-1:-1;3360:180:1:o;3545:388::-;3613:6;3621;3674:2;3662:9;3653:7;3649:23;3645:32;3642:52;;;3690:1;3687;3680:12;3642:52;3729:9;3716:23;3748:31;3773:5;3748:31;:::i;:::-;3798:5;-1:-1:-1;3855:2:1;3840:18;;3827:32;3868:33;3827:32;3868:33;:::i;:::-;3920:7;3910:17;;;3545:388;;;;;:::o;3938:437::-;4017:1;4013:12;;;;4060;;;4081:61;;4135:4;4127:6;4123:17;4113:27;;4081:61;4188:2;4180:6;4177:14;4157:18;4154:38;4151:218;;4225:77;4222:1;4215:88;4326:4;4323:1;4316:15;4354:4;4351:1;4344:15;4151:218;;3938:437;;;:::o;4380:184::-;4432:77;4429:1;4422:88;4529:4;4526:1;4519:15;4553:4;4550:1;4543:15;4569:184;4639:6;4692:2;4680:9;4671:7;4667:23;4663:32;4660:52;;;4708:1;4705;4698:12;4660:52;-1:-1:-1;4731:16:1;;4569:184;-1:-1:-1;4569:184:1:o;5060:277::-;5127:6;5180:2;5168:9;5159:7;5155:23;5151:32;5148:52;;;5196:1;5193;5186:12;5148:52;5228:9;5222:16;5281:5;5274:13;5267:21;5260:5;5257:32;5247:60;;5303:1;5300;5293:12;5977:306;6065:6;6073;6081;6134:2;6122:9;6113:7;6109:23;6105:32;6102:52;;;6150:1;6147;6140:12;6102:52;6179:9;6173:16;6163:26;;6229:2;6218:9;6214:18;6208:25;6198:35;;6273:2;6262:9;6258:18;6252:25;6242:35;;5977:306;;;;;:::o;6288:251::-;6358:6;6411:2;6399:9;6390:7;6386:23;6382:32;6379:52;;;6427:1;6424;6417:12;6379:52;6459:9;6453:16;6478:31;6503:5;6478:31;:::i;7600:184::-;7652:77;7649:1;7642:88;7749:4;7746:1;7739:15;7773:4;7770:1;7763:15;7789:168;7862:9;;;7893;;7910:15;;;7904:22;;7890:37;7880:71;;7931:18;;:::i;7962:274::-;8002:1;8028;8018:189;;8063:77;8060:1;8053:88;8164:4;8161:1;8154:15;8192:4;8189:1;8182:15;8018:189;-1:-1:-1;8221:9:1;;7962:274::o;8241:128::-;8308:9;;;8329:11;;;8326:37;;;8343:18;;:::i;8374:125::-;8439:9;;;8460:10;;;8457:36;;;8473:18;;:::i

Swarm Source

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