ETH Price: $2,514.98 (+2.48%)

Token

Byron Donalds (VP)
 

Overview

Max Total Supply

1,000,000 VP

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
iliketoverpayforerc20tokens.eth
Balance
4,500 VP

Value
$0.00
0x6552d32C1a0563d6bD434C761771341058862f78
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:
VP

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-25
*/

// SPDX-License-Identifier: UNLICENSED


/* 

Florida Representative Byron Donalds, a staunch supporter of Donald Trump and one of his most trusted advocates, chose to endorse Trump over Florida Governor Ron DeSantis in the Republican presidential primary last year. Trump has frequently praised and publicly backed Donalds, highlighting their strong relationship.

Donalds has expressed confidence in his capabilities, suggesting that if elected vice president, he believes he could effectively assume the role of commander in chief if required.

https://t.me/byrondonalds_vp


*/ 

pragma solidity 0.8.20;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

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

pragma solidity >=0.6.2;

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

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

pragma solidity ^0.8.20;

/**
 * @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 virtual {
        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);
            }
        }
    }
}

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

pragma solidity >=0.5.0;

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

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

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

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

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

pragma solidity >=0.6.2;

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

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

contract VP is ERC20 ("Byron Donalds", "VP"), Ownable {

    // Uniswap variables
    IUniswapV2Factory public constant UNISWAP_FACTORY =
    IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    IUniswapV2Router02 public constant UNISWAP_ROUTER = 
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address public immutable UNISWAP_V2_PAIR;

    uint256 constant TOTAL_SUPPLY = 1_000_000 ether;
    uint256 public tradingOpenedOnBlock;

    bool private swapping;

    address public vpWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public fetchFees = true;

    uint256 public maxBuy;
    uint256 public maxSell;
    uint256 public maxWallet;
    uint256 public tokenSwapThreshold;

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

    uint256 public taxedTokens;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public whitelisted;

    event EnabledTrading(bool tradingActive);
    event RemovedLimits();
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event UpdatedMaxBuy(uint256 newAmount);
    event UpdatedMaxSell(uint256 newAmount);
    event UpdatedMaxWallet(uint256 newAmount);
    event UpdatedvpWallet(address indexed newWallet);
    event MaxTransactionExclusion(address _address, bool excluded);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(){

        _mint(msg.sender, TOTAL_SUPPLY);

        _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0));

        _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true);

    
        UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair(
            address(this),
            UNISWAP_ROUTER.WETH()
        );

        maxBuy = (totalSupply() * 10) / 1_000; 
        maxSell = (totalSupply() * 5) / 1_000; 
        maxWallet = (totalSupply() * 20) / 1_000; 
        tokenSwapThreshold = (totalSupply() * 50) / 10_000;

        vpWallet = msg.sender;

        _excludeFromMaxTransaction(msg.sender, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
    }

    receive() external payable {}


    function updateMaxBuy(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max buy amount lower than 0.1%"
        );
        maxBuy = newNum;
        emit UpdatedMaxBuy(maxBuy);
    }

    function updateMaxSell(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max sell amount lower than 0.1%"
        );
        maxSell = newNum;
        emit UpdatedMaxSell(maxSell);
    }

    function updateMaxWallet(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 3) / 1_000),
            "ERROR: cant set max wallet amount lower than 0.3%"
        );
        maxWallet = newNum;
        emit UpdatedMaxWallet(maxWallet);
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "ERROR: Swap amount cant be lower than 0.001% total supply."
        );
    
        tokenSwapThreshold = newAmount;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit RemovedLimits();
    }

    function _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

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

    function setNewFees(uint256 newBuyFees, uint256 newSellFees) external onlyOwner {
    buyTotalFees = newBuyFees;
    sellTotalFees = newSellFees;
    }

    function openTrading() public onlyOwner {
        require(tradingOpenedOnBlock == 0, "ERROR: Token is already live !");
        tradingOpenedOnBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
        emit EnabledTrading(tradingActive);
    }

    function setvpWallet(address _vpWallet) external onlyOwner {
        require(_vpWallet != address(0), "ERROR: _vpWallet address cannot be 0");
        vpWallet = payable(_vpWallet);
        emit UpdatedvpWallet(_vpWallet);
    }

    function getFees() internal {
        require(
            tradingOpenedOnBlock > 0, "Trading not live"
        );
        uint256 currentBlock = block.number;
        uint256 lastTierOneBlock = tradingOpenedOnBlock + 7;
        if(currentBlock <= lastTierOneBlock) {
            buyTotalFees = 5;
            sellTotalFees = 5;
        } else {
            buyTotalFees = 4;
            sellTotalFees = 4;
            fetchFees = false;
        } 
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from 0");
        require(to != address(0), "ERC20: transfer to 0");
        require(amount > 0, "amt must be over than 0");

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedMaxTransactionAmount[from] ||
                            _isExcludedMaxTransactionAmount[to],
                        "ERROR: Trading is not active."
                    );
                    require(from == owner(), "ERROR: Trading enabled");
                }

                //when buy
                if (
                    from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxBuy,
                        "ERROR: Buy transfer amount goes past max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "ERROR: Cannot pass max wallet"
                    );
                }
                //when sell
                else if (
                    to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxSell,
                        "ERROR: Sell amt goes past max sell."
                    );
                } else if (
                    !_isExcludedMaxTransactionAmount[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "ERROR: Cannot go above max wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= tokenSwapThreshold;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !(from == UNISWAP_V2_PAIR) &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = true;
    
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
    

        if (takeFee) {

            if(fetchFees){
               getFees(); 
            }

            // Sell
            if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                taxedTokens += fees;
            }
            // Buy
            else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                taxedTokens += fees;
            }

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

            amount -= fees;
        }

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


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

        UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {

      
        uint256 contractBalance = balanceOf(address(this));

        uint256 totalTokensToSwap =  taxedTokens;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > tokenSwapThreshold) {
            contractBalance = tokenSwapThreshold;
        }

        bool success;
    
        swapTokensForEth(contractBalance);

        (success, ) = address(vpWallet).call{value: address(this).balance}("");
    }

    function rescueETH(uint256 weiAmount) external onlyOwner {
    require(weiAmount > 0, "Amount must b over 0");
    payable(owner()).transfer(weiAmount);
}

function rescueERC20(address tokenAdd, uint256 amount) external onlyOwner {
    require(tokenAdd != address(0), "wrong token address");
    require(amount > 0, "Amount must be > 0");

    IERC20(tokenAdd).transfer(owner(), amount);
}
    


}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"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":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedvpWallet","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fetchFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAdd","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFees","type":"uint256"},{"internalType":"uint256","name":"newSellFees","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vpWallet","type":"address"}],"name":"setvpWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpenedOnBlock","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":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526007805463ffffffff60a81b1916630100000160a81b17905534801562000029575f80fd5b506040518060400160405280600d81526020016c4279726f6e20446f6e616c647360981b81525060405180604001604052806002815260200161056560f41b81525081600390816200007c9190620007a9565b5060046200008b8282620007a9565b505050620000a8620000a26200033160201b60201c565b62000335565b620000be3369d3c21bcecceda100000062000386565b620000e030737a250d5630b4cf539739df2c5dacb4c659f2488d5f19620003c6565b62000101737a250d5630b4cf539739df2c5dacb4c659f2488d6001620003da565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000176573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019c919062000871565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020d919062000871565b6001600160a01b03166080526103e86200022660025490565b6200023390600a620008b4565b6200023f9190620008d4565b6008556103e86200024f60025490565b6200025c906005620008b4565b620002689190620008d4565b6009556103e86200027860025490565b62000285906014620008b4565b620002919190620008d4565b600a55612710620002a160025490565b620002ae906032620008b4565b620002ba9190620008d4565b600b5560078054610100600160a81b03191633610100810291909117909155620002e6906001620003da565b620002f3306001620003da565b6200030261dead6001620003da565b6200030f3360016200043c565b6200031c3060016200043c565b6200032b61dead60016200043c565b6200090a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620003b55760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b620003c25f8383620004a4565b5050565b620003d58383836001620005d3565b505050565b6001600160a01b0382165f81815260106020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b62000446620006ac565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038316620004d2578060025f828254620004c69190620008f4565b90915550620005449050565b6001600160a01b0383165f9081526020819052604090205481811015620005265760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620003ac565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620005625760028054829003905562000580565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005c691815260200190565b60405180910390a3505050565b6001600160a01b038416620005fe5760405163e602df0560e01b81525f6004820152602401620003ac565b6001600160a01b0383166200062957604051634a1406b160e11b81525f6004820152602401620003ac565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015620006a657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200069d91815260200190565b60405180910390a35b50505050565b6005546001600160a01b03163314620007085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003ac565b565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200073357607f821691505b6020821081036200075257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003d5575f81815260208120601f850160051c81016020861015620007805750805b601f850160051c820191505b81811015620007a1578281556001016200078c565b505050505050565b81516001600160401b03811115620007c557620007c56200070a565b620007dd81620007d684546200071e565b8462000758565b602080601f83116001811462000813575f8415620007fb5750858301515b5f19600386901b1c1916600185901b178555620007a1565b5f85815260208120601f198616915b82811015620008435788860151825594840194600190910190840162000822565b50858210156200086157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000882575f80fd5b81516001600160a01b038116811462000899575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008ce57620008ce620008a0565b92915050565b5f82620008ef57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008ce57620008ce620008a0565b60805161207e620009465f395f8181610747015281816113000152818161143e015281816115fe0152818161170b015261178a015261207e5ff3fe608060405260043610610241575f3560e01c80638cd4426d11610134578063c74c0fac116100b3578063d85ba06311610078578063d85ba06314610690578063d936547e146106a5578063dd62ed3e146106d3578063f2fde38b14610717578063f40acc3d14610736578063f8b45b0514610769575f80fd5b8063c74c0fac146105f0578063c9567bf914610617578063d257b34f1461062b578063d55f70901461064a578063d826492014610669575f80fd5b8063a9059cbb116100f9578063a9059cbb1461055e578063b8eb35461461057d578063baccf5cf14610592578063bbc0c742146105b1578063c0246668146105d1575f80fd5b80638cd4426d146104d05780638da5cb5b146104ef5780639164f9db1461050c57806395d89b411461052b5780639e252f001461053f575f80fd5b806358881304116101c057806370a082311161018557806370a082311461044a57806370db69d61461047e578063715018a614610493578063751039fc146104a757806376d628b7146104bb575f80fd5b8063588813041461039a5780636057b3eb146103b95780636a486a8e146103d95780636ddd1713146103ee5780636dfcc8dd1461040e575f80fd5b806318160ddd1161020657806318160ddd1461030b5780631c499ab01461031f57806323b872dd14610340578063313ce5671461035f5780634a62bb651461037a575f80fd5b806306fdde031461024c578063095ea7b3146102765780630a3b39a3146102a55780630e300099146102c857806310d5de53146102dd575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b5061026061077e565b60405161026d9190611d57565b60405180910390f35b348015610281575f80fd5b50610295610290366004611db6565b61080e565b604051901515815260200161026d565b3480156102b0575f80fd5b506102ba60065481565b60405190815260200161026d565b3480156102d3575f80fd5b506102ba600b5481565b3480156102e8575f80fd5b506102956102f7366004611de0565b60106020525f908152604090205460ff1681565b348015610316575f80fd5b506002546102ba565b34801561032a575f80fd5b5061033e610339366004611e02565b610827565b005b34801561034b575f80fd5b5061029561035a366004611e19565b6108fa565b34801561036a575f80fd5b506040516012815260200161026d565b348015610385575f80fd5b5060075461029590600160a81b900460ff1681565b3480156103a5575f80fd5b5061033e6103b4366004611e02565b61091d565b3480156103c4575f80fd5b5060075461029590600160c01b900460ff1681565b3480156103e4575f80fd5b506102ba600d5481565b3480156103f9575f80fd5b5060075461029590600160b81b900460ff1681565b348015610419575f80fd5b506007546104329061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b348015610455575f80fd5b506102ba610464366004611de0565b6001600160a01b03165f9081526020819052604090205490565b348015610489575f80fd5b506102ba60085481565b34801561049e575f80fd5b5061033e6109e3565b3480156104b2575f80fd5b5061033e6109f6565b3480156104c6575f80fd5b506102ba600e5481565b3480156104db575f80fd5b5061033e6104ea366004611db6565b610a35565b3480156104fa575f80fd5b506005546001600160a01b0316610432565b348015610517575f80fd5b5061033e610526366004611e02565b610b61565b348015610536575f80fd5b50610260610c28565b34801561054a575f80fd5b5061033e610559366004611e02565b610c37565b348015610569575f80fd5b50610295610578366004611db6565b610cc0565b348015610588575f80fd5b506102ba60095481565b34801561059d575f80fd5b5061033e6105ac366004611e57565b610ccd565b3480156105bc575f80fd5b5060075461029590600160b01b900460ff1681565b3480156105dc575f80fd5b5061033e6105eb366004611e84565b610ce0565b3480156105fb575f80fd5b50610432735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b348015610622575f80fd5b5061033e610d46565b348015610636575f80fd5b5061033e610645366004611e02565b610dfc565b348015610655575f80fd5b5061033e610664366004611de0565b610ea0565b348015610674575f80fd5b50610432737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561069b575f80fd5b506102ba600c5481565b3480156106b0575f80fd5b506102956106bf366004611de0565b60116020525f908152604090205460ff1681565b3480156106de575f80fd5b506102ba6106ed366004611ebb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610722575f80fd5b5061033e610731366004611de0565b610f5a565b348015610741575f80fd5b506104327f000000000000000000000000000000000000000000000000000000000000000081565b348015610774575f80fd5b506102ba600a5481565b60606003805461078d90611ee7565b80601f01602080910402602001604051908101604052809291908181526020018280546107b990611ee7565b80156108045780601f106107db57610100808354040283529160200191610804565b820191905f5260205f20905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b5f3361081b818585610fd3565b60019150505b92915050565b61082f610fe0565b6103e861083b60025490565b610846906003611f33565b6108509190611f4a565b8110156108be5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2063616e7420736574206d61782077616c6c657420616d6f756e60448201527074206c6f776572207468616e20302e332560781b60648201526084015b60405180910390fd5b600a8190556040518181527f3046ad62de8b70d396246aaed19ff2559ff20df8706520cbde58320766c42762906020015b60405180910390a150565b5f3361090785828561103a565b6109128585856110b5565b506001949350505050565b610925610fe0565b6103e861093160025490565b61093c906001611f33565b6109469190611f4a565b8110156109ae5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084016108b5565b60088190556040518181527fc33b8db52e9d66d369a22d8f3a3add75239d75a591361da3ee15972003b2e438906020016108ef565b6109eb610fe0565b6109f45f611834565b565b6109fe610fe0565b6007805460ff60a81b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b610a3d610fe0565b6001600160a01b038216610a895760405162461bcd60e51b815260206004820152601360248201527277726f6e6720746f6b656e206164647265737360681b60448201526064016108b5565b5f8111610acd5760405162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b60448201526064016108b5565b816001600160a01b031663a9059cbb610aee6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303815f875af1158015610b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5c9190611f69565b505050565b610b69610fe0565b6103e8610b7560025490565b610b80906001611f33565b610b8a9190611f4a565b811015610bf35760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b60648201526084016108b5565b60098190556040518181527fb9e766275e735601d70cbcec66214efa3a1fc0ae7db7746c15bce599c16b82f8906020016108ef565b60606004805461078d90611ee7565b610c3f610fe0565b5f8111610c855760405162461bcd60e51b81526020600482015260146024820152730416d6f756e74206d7573742062206f76657220360641b60448201526064016108b5565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610cbc573d5f803e3d5ffd5b5050565b5f3361081b8185856110b5565b610cd5610fe0565b600c91909155600d55565b610ce8610fe0565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d4e610fe0565b60065415610d9e5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a20546f6b656e20697320616c7265616479206c6976652021000060448201526064016108b5565b436006556007805461010160b01b61ffff60b01b199091161790819055604051600160b01b90910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610e04610fe0565b620186a0610e1160025490565b610e1c906001611f33565b610e269190611f4a565b811015610e9b5760405162461bcd60e51b815260206004820152603a60248201527f4552524f523a205377617020616d6f756e742063616e74206265206c6f77657260448201527f207468616e20302e3030312520746f74616c20737570706c792e00000000000060648201526084016108b5565b600b55565b610ea8610fe0565b6001600160a01b038116610f0a5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a205f767057616c6c657420616464726573732063616e6e6f74206044820152630626520360e41b60648201526084016108b5565b60078054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517e05326a82b4b8b6bd860b46601d40f1c340d8b0b6a5b049134d3582236bff2b905f90a250565b610f62610fe0565b6001600160a01b038116610fc75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b5565b610fd081611834565b50565b610b5c8383836001611885565b6005546001600160a01b031633146109f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b5565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146110af57818110156110a157604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016108b5565b6110af84848484035f611885565b50505050565b6001600160a01b0383166111045760405162461bcd60e51b8152602060048201526016602482015275045524332303a207472616e736665722066726f6d20360541b60448201526064016108b5565b6001600160a01b0382166111515760405162461bcd60e51b8152602060048201526014602482015273045524332303a207472616e7366657220746f20360641b60448201526064016108b5565b5f81116111a05760405162461bcd60e51b815260206004820152601760248201527f616d74206d757374206265206f766572207468616e203000000000000000000060448201526064016108b5565b600754600160a81b900460ff16156115ba576005546001600160a01b038481169116148015906111de57506005546001600160a01b03838116911614155b80156111f257506001600160a01b03821615155b801561120957506001600160a01b03821661dead14155b156115ba57600754600160b01b900460ff166112fe576001600160a01b0383165f9081526010602052604090205460ff168061125c57506001600160a01b0382165f9081526010602052604090205460ff165b6112a85760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e00000060448201526064016108b5565b6005546001600160a01b038481169116146112fe5760405162461bcd60e51b815260206004820152601660248201527511549493d48e88151c98591a5b99c8195b98589b195960521b60448201526064016108b5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561135757506001600160a01b0382165f9081526010602052604090205460ff16155b1561143c576008548111156113c45760405162461bcd60e51b815260206004820152602d60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420676f65732060448201526c3830b9ba1036b0bc10313abc9760991b60648201526084016108b5565b600a546001600160a01b0383165f908152602081905260409020546113e99083611f84565b11156114375760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2043616e6e6f742070617373206d61782077616c6c657400000060448201526064016108b5565b6115ba565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614801561149557506001600160a01b0383165f9081526010602052604090205460ff16155b156114f8576009548111156114375760405162461bcd60e51b815260206004820152602360248201527f4552524f523a2053656c6c20616d7420676f65732070617374206d617820736560448201526236361760e91b60648201526084016108b5565b6001600160a01b0382165f9081526010602052604090205460ff1615801561153857506001600160a01b0383165f9081526010602052604090205460ff16155b156115ba57600a546001600160a01b0383165f908152602081905260409020546115629083611f84565b11156115ba5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a2043616e6e6f7420676f2061626f7665206d61782077616c6c656044820152601d60fa1b60648201526084016108b5565b305f90815260208190526040902054600b54811080159081906115e65750600754600160b81b900460ff165b80156115f5575060075460ff16155b801561163357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561165757506001600160a01b0385165f908152600f602052604090205460ff16155b801561167b57506001600160a01b0384165f908152600f602052604090205460ff16155b156116a0576007805460ff19166001179055611695611957565b6007805460ff191690555b6001600160a01b0385165f908152600f602052604090205460019060ff16806116e057506001600160a01b0385165f908152600f602052604090205460ff165b156116e857505f5b5f811561182057600754600160c01b900460ff1615611709576117096119f2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561174b57505f600d54115b15611788576064600d54866117609190611f33565b61176a9190611f4a565b905080600e5f82825461177d9190611f84565b909155506118029050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156117ca57505f600c54115b15611802576064600c54866117df9190611f33565b6117e99190611f4a565b905080600e5f8282546117fc9190611f84565b90915550505b801561181357611813873083611a7a565b61181d8186611f97565b94505b61182b878787611a7a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166118ae5760405163e602df0560e01b81525f60048201526024016108b5565b6001600160a01b0383166118d757604051634a1406b160e11b81525f60048201526024016108b5565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156110af57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161194991815260200190565b60405180910390a350505050565b305f90815260208190526040902054600e54811580611974575080155b1561197d575050565b600b5482111561198d57600b5491505b5f61199783611ad7565b6007546040516101009091046001600160a01b03169047905f81818185875af1925050503d805f81146119e5576040519150601f19603f3d011682016040523d82523d5f602084013e6119ea565b606091505b505050505050565b5f60065411611a365760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b60448201526064016108b5565b60065443905f90611a48906007611f84565b9050808211611a5f576005600c819055600d555050565b6004600c819055600d556007805460ff60c01b191690555050565b6001600160a01b038316611aa357604051634b637e8f60e11b81525f60048201526024016108b5565b6001600160a01b038216611acc5760405163ec442f0560e01b81525f60048201526024016108b5565b610b5c838383611c31565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b0a57611b0a611faa565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b9e9190611fbe565b81600181518110611bb157611bb1611faa565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611c089085905f90869030904290600401611fd9565b5f604051808303815f87803b158015611c1f575f80fd5b505af11580156119ea573d5f803e3d5ffd5b6001600160a01b038316611c5b578060025f828254611c509190611f84565b90915550611ccb9050565b6001600160a01b0383165f9081526020819052604090205481811015611cad5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016108b5565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611ce757600280548290039055611d05565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d4a91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015611d8257858101830151858201604001528201611d66565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610fd0575f80fd5b5f8060408385031215611dc7575f80fd5b8235611dd281611da2565b946020939093013593505050565b5f60208284031215611df0575f80fd5b8135611dfb81611da2565b9392505050565b5f60208284031215611e12575f80fd5b5035919050565b5f805f60608486031215611e2b575f80fd5b8335611e3681611da2565b92506020840135611e4681611da2565b929592945050506040919091013590565b5f8060408385031215611e68575f80fd5b50508035926020909101359150565b8015158114610fd0575f80fd5b5f8060408385031215611e95575f80fd5b8235611ea081611da2565b91506020830135611eb081611e77565b809150509250929050565b5f8060408385031215611ecc575f80fd5b8235611ed781611da2565b91506020830135611eb081611da2565b600181811c90821680611efb57607f821691505b602082108103611f1957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761082157610821611f1f565b5f82611f6457634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611f79575f80fd5b8151611dfb81611e77565b8082018082111561082157610821611f1f565b8181038181111561082157610821611f1f565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fce575f80fd5b8151611dfb81611da2565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156120275784516001600160a01b031683529383019391830191600101612002565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b04e11f645897d7e6f20a63097b9cf194017a4f060d00e587f8c59a4b300eebe64736f6c63430008140033

Deployed Bytecode

0x608060405260043610610241575f3560e01c80638cd4426d11610134578063c74c0fac116100b3578063d85ba06311610078578063d85ba06314610690578063d936547e146106a5578063dd62ed3e146106d3578063f2fde38b14610717578063f40acc3d14610736578063f8b45b0514610769575f80fd5b8063c74c0fac146105f0578063c9567bf914610617578063d257b34f1461062b578063d55f70901461064a578063d826492014610669575f80fd5b8063a9059cbb116100f9578063a9059cbb1461055e578063b8eb35461461057d578063baccf5cf14610592578063bbc0c742146105b1578063c0246668146105d1575f80fd5b80638cd4426d146104d05780638da5cb5b146104ef5780639164f9db1461050c57806395d89b411461052b5780639e252f001461053f575f80fd5b806358881304116101c057806370a082311161018557806370a082311461044a57806370db69d61461047e578063715018a614610493578063751039fc146104a757806376d628b7146104bb575f80fd5b8063588813041461039a5780636057b3eb146103b95780636a486a8e146103d95780636ddd1713146103ee5780636dfcc8dd1461040e575f80fd5b806318160ddd1161020657806318160ddd1461030b5780631c499ab01461031f57806323b872dd14610340578063313ce5671461035f5780634a62bb651461037a575f80fd5b806306fdde031461024c578063095ea7b3146102765780630a3b39a3146102a55780630e300099146102c857806310d5de53146102dd575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b5061026061077e565b60405161026d9190611d57565b60405180910390f35b348015610281575f80fd5b50610295610290366004611db6565b61080e565b604051901515815260200161026d565b3480156102b0575f80fd5b506102ba60065481565b60405190815260200161026d565b3480156102d3575f80fd5b506102ba600b5481565b3480156102e8575f80fd5b506102956102f7366004611de0565b60106020525f908152604090205460ff1681565b348015610316575f80fd5b506002546102ba565b34801561032a575f80fd5b5061033e610339366004611e02565b610827565b005b34801561034b575f80fd5b5061029561035a366004611e19565b6108fa565b34801561036a575f80fd5b506040516012815260200161026d565b348015610385575f80fd5b5060075461029590600160a81b900460ff1681565b3480156103a5575f80fd5b5061033e6103b4366004611e02565b61091d565b3480156103c4575f80fd5b5060075461029590600160c01b900460ff1681565b3480156103e4575f80fd5b506102ba600d5481565b3480156103f9575f80fd5b5060075461029590600160b81b900460ff1681565b348015610419575f80fd5b506007546104329061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b348015610455575f80fd5b506102ba610464366004611de0565b6001600160a01b03165f9081526020819052604090205490565b348015610489575f80fd5b506102ba60085481565b34801561049e575f80fd5b5061033e6109e3565b3480156104b2575f80fd5b5061033e6109f6565b3480156104c6575f80fd5b506102ba600e5481565b3480156104db575f80fd5b5061033e6104ea366004611db6565b610a35565b3480156104fa575f80fd5b506005546001600160a01b0316610432565b348015610517575f80fd5b5061033e610526366004611e02565b610b61565b348015610536575f80fd5b50610260610c28565b34801561054a575f80fd5b5061033e610559366004611e02565b610c37565b348015610569575f80fd5b50610295610578366004611db6565b610cc0565b348015610588575f80fd5b506102ba60095481565b34801561059d575f80fd5b5061033e6105ac366004611e57565b610ccd565b3480156105bc575f80fd5b5060075461029590600160b01b900460ff1681565b3480156105dc575f80fd5b5061033e6105eb366004611e84565b610ce0565b3480156105fb575f80fd5b50610432735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b348015610622575f80fd5b5061033e610d46565b348015610636575f80fd5b5061033e610645366004611e02565b610dfc565b348015610655575f80fd5b5061033e610664366004611de0565b610ea0565b348015610674575f80fd5b50610432737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561069b575f80fd5b506102ba600c5481565b3480156106b0575f80fd5b506102956106bf366004611de0565b60116020525f908152604090205460ff1681565b3480156106de575f80fd5b506102ba6106ed366004611ebb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610722575f80fd5b5061033e610731366004611de0565b610f5a565b348015610741575f80fd5b506104327f000000000000000000000000db7fd80e102731ec288436450a11d18ab4e81a4f81565b348015610774575f80fd5b506102ba600a5481565b60606003805461078d90611ee7565b80601f01602080910402602001604051908101604052809291908181526020018280546107b990611ee7565b80156108045780601f106107db57610100808354040283529160200191610804565b820191905f5260205f20905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b5f3361081b818585610fd3565b60019150505b92915050565b61082f610fe0565b6103e861083b60025490565b610846906003611f33565b6108509190611f4a565b8110156108be5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2063616e7420736574206d61782077616c6c657420616d6f756e60448201527074206c6f776572207468616e20302e332560781b60648201526084015b60405180910390fd5b600a8190556040518181527f3046ad62de8b70d396246aaed19ff2559ff20df8706520cbde58320766c42762906020015b60405180910390a150565b5f3361090785828561103a565b6109128585856110b5565b506001949350505050565b610925610fe0565b6103e861093160025490565b61093c906001611f33565b6109469190611f4a565b8110156109ae5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084016108b5565b60088190556040518181527fc33b8db52e9d66d369a22d8f3a3add75239d75a591361da3ee15972003b2e438906020016108ef565b6109eb610fe0565b6109f45f611834565b565b6109fe610fe0565b6007805460ff60a81b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b610a3d610fe0565b6001600160a01b038216610a895760405162461bcd60e51b815260206004820152601360248201527277726f6e6720746f6b656e206164647265737360681b60448201526064016108b5565b5f8111610acd5760405162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b60448201526064016108b5565b816001600160a01b031663a9059cbb610aee6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303815f875af1158015610b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5c9190611f69565b505050565b610b69610fe0565b6103e8610b7560025490565b610b80906001611f33565b610b8a9190611f4a565b811015610bf35760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b60648201526084016108b5565b60098190556040518181527fb9e766275e735601d70cbcec66214efa3a1fc0ae7db7746c15bce599c16b82f8906020016108ef565b60606004805461078d90611ee7565b610c3f610fe0565b5f8111610c855760405162461bcd60e51b81526020600482015260146024820152730416d6f756e74206d7573742062206f76657220360641b60448201526064016108b5565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610cbc573d5f803e3d5ffd5b5050565b5f3361081b8185856110b5565b610cd5610fe0565b600c91909155600d55565b610ce8610fe0565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d4e610fe0565b60065415610d9e5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a20546f6b656e20697320616c7265616479206c6976652021000060448201526064016108b5565b436006556007805461010160b01b61ffff60b01b199091161790819055604051600160b01b90910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610e04610fe0565b620186a0610e1160025490565b610e1c906001611f33565b610e269190611f4a565b811015610e9b5760405162461bcd60e51b815260206004820152603a60248201527f4552524f523a205377617020616d6f756e742063616e74206265206c6f77657260448201527f207468616e20302e3030312520746f74616c20737570706c792e00000000000060648201526084016108b5565b600b55565b610ea8610fe0565b6001600160a01b038116610f0a5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a205f767057616c6c657420616464726573732063616e6e6f74206044820152630626520360e41b60648201526084016108b5565b60078054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517e05326a82b4b8b6bd860b46601d40f1c340d8b0b6a5b049134d3582236bff2b905f90a250565b610f62610fe0565b6001600160a01b038116610fc75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b5565b610fd081611834565b50565b610b5c8383836001611885565b6005546001600160a01b031633146109f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b5565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146110af57818110156110a157604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016108b5565b6110af84848484035f611885565b50505050565b6001600160a01b0383166111045760405162461bcd60e51b8152602060048201526016602482015275045524332303a207472616e736665722066726f6d20360541b60448201526064016108b5565b6001600160a01b0382166111515760405162461bcd60e51b8152602060048201526014602482015273045524332303a207472616e7366657220746f20360641b60448201526064016108b5565b5f81116111a05760405162461bcd60e51b815260206004820152601760248201527f616d74206d757374206265206f766572207468616e203000000000000000000060448201526064016108b5565b600754600160a81b900460ff16156115ba576005546001600160a01b038481169116148015906111de57506005546001600160a01b03838116911614155b80156111f257506001600160a01b03821615155b801561120957506001600160a01b03821661dead14155b156115ba57600754600160b01b900460ff166112fe576001600160a01b0383165f9081526010602052604090205460ff168061125c57506001600160a01b0382165f9081526010602052604090205460ff165b6112a85760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e00000060448201526064016108b5565b6005546001600160a01b038481169116146112fe5760405162461bcd60e51b815260206004820152601660248201527511549493d48e88151c98591a5b99c8195b98589b195960521b60448201526064016108b5565b7f000000000000000000000000db7fd80e102731ec288436450a11d18ab4e81a4f6001600160a01b0316836001600160a01b031614801561135757506001600160a01b0382165f9081526010602052604090205460ff16155b1561143c576008548111156113c45760405162461bcd60e51b815260206004820152602d60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420676f65732060448201526c3830b9ba1036b0bc10313abc9760991b60648201526084016108b5565b600a546001600160a01b0383165f908152602081905260409020546113e99083611f84565b11156114375760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2043616e6e6f742070617373206d61782077616c6c657400000060448201526064016108b5565b6115ba565b7f000000000000000000000000db7fd80e102731ec288436450a11d18ab4e81a4f6001600160a01b0316826001600160a01b031614801561149557506001600160a01b0383165f9081526010602052604090205460ff16155b156114f8576009548111156114375760405162461bcd60e51b815260206004820152602360248201527f4552524f523a2053656c6c20616d7420676f65732070617374206d617820736560448201526236361760e91b60648201526084016108b5565b6001600160a01b0382165f9081526010602052604090205460ff1615801561153857506001600160a01b0383165f9081526010602052604090205460ff16155b156115ba57600a546001600160a01b0383165f908152602081905260409020546115629083611f84565b11156115ba5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a2043616e6e6f7420676f2061626f7665206d61782077616c6c656044820152601d60fa1b60648201526084016108b5565b305f90815260208190526040902054600b54811080159081906115e65750600754600160b81b900460ff165b80156115f5575060075460ff16155b801561163357507f000000000000000000000000db7fd80e102731ec288436450a11d18ab4e81a4f6001600160a01b0316856001600160a01b031614155b801561165757506001600160a01b0385165f908152600f602052604090205460ff16155b801561167b57506001600160a01b0384165f908152600f602052604090205460ff16155b156116a0576007805460ff19166001179055611695611957565b6007805460ff191690555b6001600160a01b0385165f908152600f602052604090205460019060ff16806116e057506001600160a01b0385165f908152600f602052604090205460ff165b156116e857505f5b5f811561182057600754600160c01b900460ff1615611709576117096119f2565b7f000000000000000000000000db7fd80e102731ec288436450a11d18ab4e81a4f6001600160a01b0316866001600160a01b031614801561174b57505f600d54115b15611788576064600d54866117609190611f33565b61176a9190611f4a565b905080600e5f82825461177d9190611f84565b909155506118029050565b7f000000000000000000000000db7fd80e102731ec288436450a11d18ab4e81a4f6001600160a01b0316876001600160a01b03161480156117ca57505f600c54115b15611802576064600c54866117df9190611f33565b6117e99190611f4a565b905080600e5f8282546117fc9190611f84565b90915550505b801561181357611813873083611a7a565b61181d8186611f97565b94505b61182b878787611a7a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166118ae5760405163e602df0560e01b81525f60048201526024016108b5565b6001600160a01b0383166118d757604051634a1406b160e11b81525f60048201526024016108b5565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156110af57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161194991815260200190565b60405180910390a350505050565b305f90815260208190526040902054600e54811580611974575080155b1561197d575050565b600b5482111561198d57600b5491505b5f61199783611ad7565b6007546040516101009091046001600160a01b03169047905f81818185875af1925050503d805f81146119e5576040519150601f19603f3d011682016040523d82523d5f602084013e6119ea565b606091505b505050505050565b5f60065411611a365760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b60448201526064016108b5565b60065443905f90611a48906007611f84565b9050808211611a5f576005600c819055600d555050565b6004600c819055600d556007805460ff60c01b191690555050565b6001600160a01b038316611aa357604051634b637e8f60e11b81525f60048201526024016108b5565b6001600160a01b038216611acc5760405163ec442f0560e01b81525f60048201526024016108b5565b610b5c838383611c31565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b0a57611b0a611faa565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b9e9190611fbe565b81600181518110611bb157611bb1611faa565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611c089085905f90869030904290600401611fd9565b5f604051808303815f87803b158015611c1f575f80fd5b505af11580156119ea573d5f803e3d5ffd5b6001600160a01b038316611c5b578060025f828254611c509190611f84565b90915550611ccb9050565b6001600160a01b0383165f9081526020819052604090205481811015611cad5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016108b5565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611ce757600280548290039055611d05565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d4a91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015611d8257858101830151858201604001528201611d66565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610fd0575f80fd5b5f8060408385031215611dc7575f80fd5b8235611dd281611da2565b946020939093013593505050565b5f60208284031215611df0575f80fd5b8135611dfb81611da2565b9392505050565b5f60208284031215611e12575f80fd5b5035919050565b5f805f60608486031215611e2b575f80fd5b8335611e3681611da2565b92506020840135611e4681611da2565b929592945050506040919091013590565b5f8060408385031215611e68575f80fd5b50508035926020909101359150565b8015158114610fd0575f80fd5b5f8060408385031215611e95575f80fd5b8235611ea081611da2565b91506020830135611eb081611e77565b809150509250929050565b5f8060408385031215611ecc575f80fd5b8235611ed781611da2565b91506020830135611eb081611da2565b600181811c90821680611efb57607f821691505b602082108103611f1957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761082157610821611f1f565b5f82611f6457634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611f79575f80fd5b8151611dfb81611e77565b8082018082111561082157610821611f1f565b8181038181111561082157610821611f1f565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fce575f80fd5b8151611dfb81611da2565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156120275784516001600160a01b031683529383019391830191600101612002565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b04e11f645897d7e6f20a63097b9cf194017a4f060d00e587f8c59a4b300eebe64736f6c63430008140033

Deployed Bytecode Sourcemap

30815:10351:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16941:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19234:190;;;;;;;;;;-1:-1:-1;19234:190:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;19234:190:0;1023:187:1;31263:35:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;31263:35:0;1215:177:1;31612:33:0;;;;;;;;;;;;;;;;31819:63;;;;;;;;;;-1:-1:-1;31819:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18043:99;;;;;;;;;;-1:-1:-1;18122:12:0;;18043:99;;34016:289;;;;;;;;;;-1:-1:-1;34016:289:0;;;;;:::i;:::-;;:::i;:::-;;20002:249;;;;;;;;;;-1:-1:-1;20002:249:0;;;;;:::i;:::-;;:::i;17894:84::-;;;;;;;;;;-1:-1:-1;17894:84:0;;17968:2;2437:36:1;;2425:2;2410:18;17894:84:0;2295:184:1;31369:33:0;;;;;;;;;;-1:-1:-1;31369:33:0;;;;-1:-1:-1;;;31369:33:0;;;;;;33443:276;;;;;;;;;;-1:-1:-1;33443:276:0;;;;;:::i;:::-;;:::i;31487:28::-;;;;;;;;;;-1:-1:-1;31487:28:0;;;;-1:-1:-1;;;31487:28:0;;;;;;31688;;;;;;;;;;;;;;;;31449:31;;;;;;;;;;-1:-1:-1;31449:31:0;;;;-1:-1:-1;;;31449:31:0;;;;;;31337:23;;;;;;;;;;-1:-1:-1;31337:23:0;;;;;;;-1:-1:-1;;;;;31337:23:0;;;;;;-1:-1:-1;;;;;2648:32:1;;;2630:51;;2618:2;2603:18;31337:23:0;2484:203:1;18205:118:0;;;;;;;;;;-1:-1:-1;18205:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;18297:18:0;18270:7;18297:18;;;;;;;;;;;;18205:118;31524:21;;;;;;;;;;;;;;;;28024:103;;;;;;;;;;;;;:::i;34609:115::-;;;;;;;;;;;;;:::i;31725:26::-;;;;;;;;;;;;;;;;40915:238;;;;;;;;;;-1:-1:-1;40915:238:0;;;;;:::i;:::-;;:::i;27383:87::-;;;;;;;;;;-1:-1:-1;27456:6:0;;-1:-1:-1;;;;;27456:6:0;27383:87;;33727:281;;;;;;;;;;-1:-1:-1;33727:281:0;;;;;:::i;:::-;;:::i;17151:95::-;;;;;;;;;;;;;:::i;40754:157::-;;;;;;;;;;-1:-1:-1;40754:157:0;;;;;:::i;:::-;;:::i;18528:182::-;;;;;;;;;;-1:-1:-1;18528:182:0;;;;;:::i;:::-;;:::i;31552:22::-;;;;;;;;;;;;;;;;35162:154;;;;;;;;;;-1:-1:-1;35162:154:0;;;;;:::i;:::-;;:::i;31409:33::-;;;;;;;;;;-1:-1:-1;31409:33:0;;;;-1:-1:-1;;;31409:33:0;;;;;;34972:182;;;;;;;;;;-1:-1:-1;34972:182:0;;;;;:::i;:::-;;:::i;30904:118::-;;;;;;;;;;;;30979:42;30904:118;;35324:278;;;;;;;;;;;;;:::i;34313:288::-;;;;;;;;;;-1:-1:-1;34313:288:0;;;;;:::i;:::-;;:::i;35610:232::-;;;;;;;;;;-1:-1:-1;35610:232:0;;;;;:::i;:::-;;:::i;31031:120::-;;;;;;;;;;;;31108:42;31031:120;;31654:27;;;;;;;;;;;;;;;;31889:43;;;;;;;;;;-1:-1:-1;31889:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18773:142;;;;;;;;;;-1:-1:-1;18773:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;18880:18:0;;;18853:7;18880:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18773:142;28282:201;;;;;;;;;;-1:-1:-1;28282:201:0;;;;;:::i;:::-;;:::i;31160:40::-;;;;;;;;;;;;;;;31581:24;;;;;;;;;;;;;;;;16941:91;16986:13;17019:5;17012:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16941:91;:::o;19234:190::-;19307:4;4646:10;19363:31;4646:10;19379:7;19388:5;19363:8;:31::i;:::-;19412:4;19405:11;;;19234:190;;;;;:::o;34016:289::-;27269:13;:11;:13::i;:::-;34142:5:::1;34121:13;18122:12:::0;;;18043:99;34121:13:::1;:17;::::0;34137:1:::1;34121:17;:::i;:::-;34120:27;;;;:::i;:::-;34109:6;:39;;34087:138;;;::::0;-1:-1:-1;;;34087:138:0;;5431:2:1;34087:138:0::1;::::0;::::1;5413:21:1::0;5470:2;5450:18;;;5443:30;5509:34;5489:18;;;5482:62;-1:-1:-1;;;5560:18:1;;;5553:47;5617:19;;34087:138:0::1;;;;;;;;;34236:9;:18:::0;;;34270:27:::1;::::0;1361:25:1;;;34270:27:0::1;::::0;1349:2:1;1334:18;34270:27:0::1;;;;;;;;34016:289:::0;:::o;20002:249::-;20089:4;4646:10;20147:37;20163:4;4646:10;20178:5;20147:15;:37::i;:::-;20195:26;20205:4;20211:2;20215:5;20195:9;:26::i;:::-;-1:-1:-1;20239:4:0;;20002:249;-1:-1:-1;;;;20002:249:0:o;33443:276::-;27269:13;:11;:13::i;:::-;33566:5:::1;33545:13;18122:12:::0;;;18043:99;33545:13:::1;:17;::::0;33561:1:::1;33545:17;:::i;:::-;33544:27;;;;:::i;:::-;33533:6;:39;;33511:137;;;::::0;-1:-1:-1;;;33511:137:0;;5849:2:1;33511:137:0::1;::::0;::::1;5831:21:1::0;5888:2;5868:18;;;5861:30;5927:34;5907:18;;;5900:62;-1:-1:-1;;;5978:18:1;;;5971:46;6034:19;;33511:137:0::1;5647:412:1::0;33511:137:0::1;33659:6;:15:::0;;;33690:21:::1;::::0;1361:25:1;;;33690:21:0::1;::::0;1349:2:1;1334:18;33690:21:0::1;1215:177:1::0;28024:103:0;27269:13;:11;:13::i;:::-;28089:30:::1;28116:1;28089:18;:30::i;:::-;28024:103::o:0;34609:115::-;27269:13;:11;:13::i;:::-;34663:14:::1;:22:::0;;-1:-1:-1;;;;34663:22:0::1;::::0;;34701:15:::1;::::0;::::1;::::0;34680:5:::1;::::0;34701:15:::1;34609:115::o:0;40915:238::-;27269:13;:11;:13::i;:::-;-1:-1:-1;;;;;41004:22:0;::::1;40996:54;;;::::0;-1:-1:-1;;;40996:54:0;;6266:2:1;40996:54:0::1;::::0;::::1;6248:21:1::0;6305:2;6285:18;;;6278:30;-1:-1:-1;;;6324:18:1;;;6317:49;6383:18;;40996:54:0::1;6064:343:1::0;40996:54:0::1;41074:1;41065:6;:10;41057:41;;;::::0;-1:-1:-1;;;41057:41:0;;6614:2:1;41057:41:0::1;::::0;::::1;6596:21:1::0;6653:2;6633:18;;;6626:30;-1:-1:-1;;;6672:18:1;;;6665:48;6730:18;;41057:41:0::1;6412:342:1::0;41057:41:0::1;41114:8;-1:-1:-1::0;;;;;41107:25:0::1;;41133:7;27456:6:::0;;-1:-1:-1;;;;;27456:6:0;;27383:87;41133:7:::1;41107:42;::::0;-1:-1:-1;;;;;;41107:42:0::1;::::0;;;;;;-1:-1:-1;;;;;6951:32:1;;;41107:42:0::1;::::0;::::1;6933:51:1::0;7000:18;;;6993:34;;;6906:18;;41107:42:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40915:238:::0;;:::o;33727:281::-;27269:13;:11;:13::i;:::-;33851:5:::1;33830:13;18122:12:::0;;;18043:99;33830:13:::1;:17;::::0;33846:1:::1;33830:17;:::i;:::-;33829:27;;;;:::i;:::-;33818:6;:39;;33796:138;;;::::0;-1:-1:-1;;;33796:138:0;;7490:2:1;33796:138:0::1;::::0;::::1;7472:21:1::0;7529:2;7509:18;;;7502:30;7568:34;7548:18;;;7541:62;-1:-1:-1;;;7619:18:1;;;7612:47;7676:19;;33796:138:0::1;7288:413:1::0;33796:138:0::1;33945:7;:16:::0;;;33977:23:::1;::::0;1361:25:1;;;33977:23:0::1;::::0;1349:2:1;1334:18;33977:23:0::1;1215:177:1::0;17151:95:0;17198:13;17231:7;17224:14;;;;;:::i;40754:157::-;27269:13;:11;:13::i;:::-;40838:1:::1;40826:9;:13;40818:46;;;::::0;-1:-1:-1;;;40818:46:0;;7908:2:1;40818:46:0::1;::::0;::::1;7890:21:1::0;7947:2;7927:18;;;7920:30;-1:-1:-1;;;7966:18:1;;;7959:50;8026:18;;40818:46:0::1;7706:344:1::0;40818:46:0::1;27456:6:::0;;40871:36:::1;::::0;-1:-1:-1;;;;;27456:6:0;;;;40871:36;::::1;;;::::0;40897:9;;40871:36:::1;::::0;;;40897:9;27456:6;40871:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40754:157:::0;:::o;18528:182::-;18597:4;4646:10;18653:27;4646:10;18670:2;18674:5;18653:9;:27::i;35162:154::-;27269:13;:11;:13::i;:::-;35249:12:::1;:25:::0;;;;35281:13:::1;:27:::0;35162:154::o;34972:182::-;27269:13;:11;:13::i;:::-;-1:-1:-1;;;;;35057:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;35057:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35112:34;;1163:41:1;;;35112:34:0::1;::::0;1136:18:1;35112:34:0::1;;;;;;;34972:182:::0;;:::o;35324:278::-;27269:13;:11;:13::i;:::-;35383:20:::1;::::0;:25;35375:68:::1;;;::::0;-1:-1:-1;;;35375:68:0;;8257:2:1;35375:68:0::1;::::0;::::1;8239:21:1::0;8296:2;8276:18;;;8269:30;8335:32;8315:18;;;8308:60;8385:18;;35375:68:0::1;8055:354:1::0;35375:68:0::1;35477:12;35454:20;:35:::0;35500:13:::1;:20:::0;;-1:-1:-1;;;;;;;35531:18:0;;;;;;;;35565:29:::1;::::0;-1:-1:-1;;;35580:13:0;;::::1;35500:20;35580:13;1188:14:1::0;1181:22;1163:41;;35565:29:0::1;::::0;1151:2:1;1136:18;35565:29:0::1;;;;;;;35324:278::o:0;34313:288::-;27269:13;:11;:13::i;:::-;34453:7:::1;34432:13;18122:12:::0;;;18043:99;34432:13:::1;:17;::::0;34448:1:::1;34432:17;:::i;:::-;34431:29;;;;:::i;:::-;34418:9;:42;;34396:150;;;::::0;-1:-1:-1;;;34396:150:0;;8616:2:1;34396:150:0::1;::::0;::::1;8598:21:1::0;8655:2;8635:18;;;8628:30;8694:34;8674:18;;;8667:62;8765:28;8745:18;;;8738:56;8811:19;;34396:150:0::1;8414:422:1::0;34396:150:0::1;34563:18;:30:::0;34313:288::o;35610:232::-;27269:13;:11;:13::i;:::-;-1:-1:-1;;;;;35688:23:0;::::1;35680:72;;;::::0;-1:-1:-1;;;35680:72:0;;9043:2:1;35680:72:0::1;::::0;::::1;9025:21:1::0;9082:2;9062:18;;;9055:30;9121:34;9101:18;;;9094:62;-1:-1:-1;;;9172:18:1;;;9165:34;9216:19;;35680:72:0::1;8841:400:1::0;35680:72:0::1;35763:8;:29:::0;;-1:-1:-1;;;;;;35763:29:0::1;;-1:-1:-1::0;;;;;35763:29:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;35808:26:::1;::::0;::::1;::::0;-1:-1:-1;;35808:26:0::1;35610:232:::0;:::o;28282:201::-;27269:13;:11;:13::i;:::-;-1:-1:-1;;;;;28371:22:0;::::1;28363:73;;;::::0;-1:-1:-1;;;28363:73:0;;9448:2:1;28363:73:0::1;::::0;::::1;9430:21:1::0;9487:2;9467:18;;;9460:30;9526:34;9506:18;;;9499:62;-1:-1:-1;;;9577:18:1;;;9570:36;9623:19;;28363:73:0::1;9246:402:1::0;28363:73:0::1;28447:28;28466:8;28447:18;:28::i;:::-;28282:201:::0;:::o;24069:130::-;24154:37;24163:5;24170:7;24179:5;24186:4;24154:8;:37::i;27548:132::-;27456:6;;-1:-1:-1;;;;;27456:6:0;4646:10;27612:23;27604:68;;;;-1:-1:-1;;;27604:68:0;;9855:2:1;27604:68:0;;;9837:21:1;;;9874:18;;;9867:30;9933:34;9913:18;;;9906:62;9985:18;;27604:68:0;9653:356:1;25785:487:0;-1:-1:-1;;;;;18880:18:0;;;25885:24;18880:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;25952:37:0;;25948:317;;26029:5;26010:16;:24;26006:132;;;26062:60;;-1:-1:-1;;;26062:60:0;;-1:-1:-1;;;;;10234:32:1;;26062:60:0;;;10216:51:1;10283:18;;;10276:34;;;10326:18;;;10319:34;;;10189:18;;26062:60:0;10014:345:1;26006:132:0;26181:57;26190:5;26197:7;26225:5;26206:16;:24;26232:5;26181:8;:57::i;:::-;25874:398;25785:487;;;:::o;36326:3461::-;-1:-1:-1;;;;;36458:18:0;;36450:53;;;;-1:-1:-1;;;36450:53:0;;10566:2:1;36450:53:0;;;10548:21:1;10605:2;10585:18;;;10578:30;-1:-1:-1;;;10624:18:1;;;10617:52;10686:18;;36450:53:0;10364:346:1;36450:53:0;-1:-1:-1;;;;;36522:16:0;;36514:49;;;;-1:-1:-1;;;36514:49:0;;10917:2:1;36514:49:0;;;10899:21:1;10956:2;10936:18;;;10929:30;-1:-1:-1;;;10975:18:1;;;10968:50;11035:18;;36514:49:0;10715:344:1;36514:49:0;36591:1;36582:6;:10;36574:46;;;;-1:-1:-1;;;36574:46:0;;11266:2:1;36574:46:0;;;11248:21:1;11305:2;11285:18;;;11278:30;11344:25;11324:18;;;11317:53;11387:18;;36574:46:0;11064:347:1;36574:46:0;36637:14;;-1:-1:-1;;;36637:14:0;;;;36633:1812;;;27456:6;;-1:-1:-1;;;;;36690:15:0;;;27456:6;;36690:15;;;;:49;;-1:-1:-1;27456:6:0;;-1:-1:-1;;;;;36726:13:0;;;27456:6;;36726:13;;36690:49;:86;;;;-1:-1:-1;;;;;;36760:16:0;;;;36690:86;:128;;;;-1:-1:-1;;;;;;36797:21:0;;36811:6;36797:21;;36690:128;36668:1766;;;36858:13;;-1:-1:-1;;;36858:13:0;;;;36853:356;;-1:-1:-1;;;;;36930:37:0;;;;;;:31;:37;;;;;;;;;:105;;-1:-1:-1;;;;;;37000:35:0;;;;;;:31;:35;;;;;;;;36930:105;36896:220;;;;-1:-1:-1;;;36896:220:0;;11618:2:1;36896:220:0;;;11600:21:1;11657:2;11637:18;;;11630:30;11696:31;11676:18;;;11669:59;11745:18;;36896:220:0;11416:353:1;36896:220:0;27456:6;;-1:-1:-1;;;;;37147:15:0;;;27456:6;;37147:15;37139:50;;;;-1:-1:-1;;;37139:50:0;;11976:2:1;37139:50:0;;;11958:21:1;12015:2;11995:18;;;11988:30;-1:-1:-1;;;12034:18:1;;;12027:52;12096:18;;37139:50:0;11774:346:1;37139:50:0;37291:15;-1:-1:-1;;;;;37283:23:0;:4;-1:-1:-1;;;;;37283:23:0;;:63;;;;-1:-1:-1;;;;;;37311:35:0;;;;;;:31;:35;;;;;;;;37310:36;37283:63;37257:1162;;;37433:6;;37423;:16;;37389:147;;;;-1:-1:-1;;;37389:147:0;;12327:2:1;37389:147:0;;;12309:21:1;12366:2;12346:18;;;12339:30;12405:34;12385:18;;;12378:62;-1:-1:-1;;;12456:18:1;;;12449:43;12509:19;;37389:147:0;12125:409:1;37389:147:0;37619:9;;-1:-1:-1;;;;;18297:18:0;;18270:7;18297:18;;;;;;;;;;;37593:22;;:6;:22;:::i;:::-;:35;;37559:150;;;;-1:-1:-1;;;37559:150:0;;12871:2:1;37559:150:0;;;12853:21:1;12910:2;12890:18;;;12883:30;12949:31;12929:18;;;12922:59;12998:18;;37559:150:0;12669:353:1;37559:150:0;37257:1162;;;37813:15;-1:-1:-1;;;;;37807:21:0;:2;-1:-1:-1;;;;;37807:21:0;;:63;;;;-1:-1:-1;;;;;;37833:37:0;;;;;;:31;:37;;;;;;;;37832:38;37807:63;37781:638;;;37957:7;;37947:6;:17;;37913:138;;;;-1:-1:-1;;;37913:138:0;;13229:2:1;37913:138:0;;;13211:21:1;13268:2;13248:18;;;13241:30;13307:34;13287:18;;;13280:62;-1:-1:-1;;;13358:18:1;;;13351:33;13401:19;;37913:138:0;13027:399:1;37781:638:0;-1:-1:-1;;;;;38104:35:0;;;;;;:31;:35;;;;;;;;38103:36;:99;;;;-1:-1:-1;;;;;;38165:37:0;;;;;;:31;:37;;;;;;;;38164:38;38103:99;38077:342;;;38305:9;;-1:-1:-1;;;;;18297:18:0;;18270:7;18297:18;;;;;;;;;;;38279:22;;:6;:22;:::i;:::-;:35;;38245:154;;;;-1:-1:-1;;;38245:154:0;;13633:2:1;38245:154:0;;;13615:21:1;13672:2;13652:18;;;13645:30;13711:34;13691:18;;;13684:62;-1:-1:-1;;;13762:18:1;;;13755:31;13803:19;;38245:154:0;13431:397:1;38245:154:0;38506:4;38457:28;18297:18;;;;;;;;;;;38564;;38540:42;;;;;;;38613:35;;-1:-1:-1;38637:11:0;;-1:-1:-1;;;38637:11:0;;;;38613:35;:61;;;;-1:-1:-1;38666:8:0;;;;38665:9;38613:61;:104;;;;;38701:15;-1:-1:-1;;;;;38693:23:0;:4;-1:-1:-1;;;;;38693:23:0;;38691:26;38613:104;:147;;;;-1:-1:-1;;;;;;38735:25:0;;;;;;:19;:25;;;;;;;;38734:26;38613:147;:188;;;;-1:-1:-1;;;;;;38778:23:0;;;;;;:19;:23;;;;;;;;38777:24;38613:188;38595:316;;;38828:8;:15;;-1:-1:-1;;38828:15:0;38839:4;38828:15;;;38858:10;:8;:10::i;:::-;38883:8;:16;;-1:-1:-1;;38883:16:0;;;38595:316;-1:-1:-1;;;;;38963:25:0;;38923:12;38963:25;;;:19;:25;;;;;;38938:4;;38963:25;;;:52;;-1:-1:-1;;;;;;38992:23:0;;;;;;:19;:23;;;;;;;;38963:52;38959:100;;;-1:-1:-1;39042:5:0;38959:100;39071:12;39110:7;39106:628;;;39139:9;;-1:-1:-1;;;39139:9:0;;;;39136:57;;;39167:9;:7;:9::i;:::-;39240:15;-1:-1:-1;;;;;39234:21:0;:2;-1:-1:-1;;;;;39234:21:0;;:42;;;;;39275:1;39259:13;;:17;39234:42;39230:355;;;39331:3;39314:13;;39305:6;:22;;;;:::i;:::-;39304:30;;;;:::i;:::-;39297:37;;39368:4;39353:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;39230:355:0;;-1:-1:-1;39230:355:0;;39439:15;-1:-1:-1;;;;;39431:23:0;:4;-1:-1:-1;;;;;39431:23:0;;:43;;;;;39473:1;39458:12;;:16;39431:43;39427:158;;;39528:3;39512:12;;39503:6;:21;;;;:::i;:::-;39502:29;;;;:::i;:::-;39495:36;;39565:4;39550:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;39427:158:0;39605:8;;39601:91;;39634:42;39650:4;39664;39671;39634:15;:42::i;:::-;39708:14;39718:4;39708:14;;:::i;:::-;;;39106:628;39746:33;39762:4;39768:2;39772:6;39746:15;:33::i;:::-;36439:3348;;;;36326:3461;;;:::o;28643:191::-;28736:6;;;-1:-1:-1;;;;;28753:17:0;;;-1:-1:-1;;;;;;28753:17:0;;;;;;;28786:40;;28736:6;;;28753:17;28736:6;;28786:40;;28717:16;;28786:40;28706:128;28643:191;:::o;25050:443::-;-1:-1:-1;;;;;25163:19:0;;25159:91;;25206:32;;-1:-1:-1;;;25206:32:0;;25235:1;25206:32;;;2630:51:1;2603:18;;25206:32:0;2484:203:1;25159:91:0;-1:-1:-1;;;;;25264:21:0;;25260:92;;25309:31;;-1:-1:-1;;;25309:31:0;;25337:1;25309:31;;;2630:51:1;2603:18;;25309:31:0;2484:203:1;25260:92:0;-1:-1:-1;;;;;25362:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25408:78;;;;25459:7;-1:-1:-1;;;;;25443:31:0;25452:5;-1:-1:-1;;;;;25443:31:0;;25468:5;25443:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;25443:31:0;;;;;;;;25050:443;;;;:::o;40214:532::-;40307:4;40263:23;18297:18;;;;;;;;;;;40355:11;;40383:20;;;:46;;-1:-1:-1;40407:22:0;;40383:46;40379:85;;;40446:7;;40214:532::o;40379:85::-;40498:18;;40480:15;:36;40476:105;;;40551:18;;40533:36;;40476:105;40593:12;40622:33;40639:15;40622:16;:33::i;:::-;40690:8;;40682:56;;40690:8;;;;-1:-1:-1;;;;;40690:8:0;;40712:21;;40682:56;;;;40712:21;40690:8;40682:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40214:532:0:o;35850:468::-;35934:1;35911:20;;:24;35889:77;;;;-1:-1:-1;;;35889:77:0;;14378:2:1;35889:77:0;;;14360:21:1;14417:2;14397:18;;;14390:30;-1:-1:-1;;;14436:18:1;;;14429:46;14492:18;;35889:77:0;14176:340:1;35889:77:0;36050:20;;36000:12;;35977:20;;36050:24;;36073:1;36050:24;:::i;:::-;36023:51;;36104:16;36088:12;:32;36085:225;;36152:1;36137:12;:16;;;36168:13;:17;40871:36:::1;40754:157:::0;:::o;36085:225::-;36233:1;36218:12;:16;;;36249:13;:17;36281:9;:17;;-1:-1:-1;;;;36281:17:0;;;35878:440;;35850:468::o;20636:316::-;-1:-1:-1;;;;;20728:18:0;;20724:88;;20770:30;;-1:-1:-1;;;20770:30:0;;20797:1;20770:30;;;2630:51:1;2603:18;;20770:30:0;2484:203:1;20724:88:0;-1:-1:-1;;;;;20826:16:0;;20822:88;;20866:32;;-1:-1:-1;;;20866:32:0;;20895:1;20866:32;;;2630:51:1;2603:18;;20866:32:0;2484:203:1;20822:88:0;20920:24;20928:4;20934:2;20938:5;20920:7;:24::i;39797:409::-;39897:16;;;39911:1;39897:16;;;;;;;;39873:21;;39897:16;;;;;;;;;;-1:-1:-1;39897:16:0;39873:40;;39942:4;39924;39929:1;39924:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39924:23:0;;;-1:-1:-1;;;;;39924:23:0;;;;;31108:42;-1:-1:-1;;;;;39968:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39958:4;39963:1;39958:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39958:31:0;;;:7;;;;;;;;;;;:31;40002:196;;-1:-1:-1;;;40002:196:0;;31108:42;;40002:65;;:196;;40082:11;;40108:1;;40125:4;;40152;;40172:15;;40002:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21276:1135;-1:-1:-1;;;;;21366:18:0;;21362:552;;21520:5;21504:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;21362:552:0;;-1:-1:-1;21362:552:0;;-1:-1:-1;;;;;21580:15:0;;21558:19;21580:15;;;;;;;;;;;21614:19;;;21610:117;;;21661:50;;-1:-1:-1;;;21661:50:0;;-1:-1:-1;;;;;10234:32:1;;21661:50:0;;;10216:51:1;10283:18;;;10276:34;;;10326:18;;;10319:34;;;10189:18;;21661:50:0;10014:345:1;21610:117:0;-1:-1:-1;;;;;21850:15:0;;:9;:15;;;;;;;;;;21868:19;;;;21850:37;;21362:552;-1:-1:-1;;;;;21930:16:0;;21926:435;;22096:12;:21;;;;;;;21926:435;;;-1:-1:-1;;;;;22312:13:0;;:9;:13;;;;;;;;;;:22;;;;;;21926:435;22393:2;-1:-1:-1;;;;;22378:25:0;22387:4;-1:-1:-1;;;;;22378:25:0;;22397:5;22378:25;;;;1361::1;;1349:2;1334:18;;1215:177;22378:25:0;;;;;;;;21276:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;:::-;1633:5;1397:247;-1:-1:-1;;;1397:247:1:o;1649:180::-;1708:6;1761:2;1749:9;1740:7;1736:23;1732:32;1729:52;;;1777:1;1774;1767:12;1729:52;-1:-1:-1;1800:23:1;;1649:180;-1:-1:-1;1649:180:1:o;1834:456::-;1911:6;1919;1927;1980:2;1968:9;1959:7;1955:23;1951:32;1948:52;;;1996:1;1993;1986:12;1948:52;2035:9;2022:23;2054:31;2079:5;2054:31;:::i;:::-;2104:5;-1:-1:-1;2161:2:1;2146:18;;2133:32;2174:33;2133:32;2174:33;:::i;:::-;1834:456;;2226:7;;-1:-1:-1;;;2280:2:1;2265:18;;;;2252:32;;1834:456::o;2692:248::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;-1:-1:-1;;2860:23:1;;;2930:2;2915:18;;;2902:32;;-1:-1:-1;2692:248:1:o;2945:118::-;3031:5;3024:13;3017:21;3010:5;3007:32;2997:60;;3053:1;3050;3043:12;3068:382;3133:6;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:30;3347:32;3388:30;:::i;:::-;3437:7;3427:17;;;3068:382;;;;;:::o;3924:388::-;3992:6;4000;4053:2;4041:9;4032:7;4028:23;4024:32;4021:52;;;4069:1;4066;4059:12;4021:52;4108:9;4095:23;4127:31;4152:5;4127:31;:::i;:::-;4177:5;-1:-1:-1;4234:2:1;4219:18;;4206:32;4247:33;4206:32;4247:33;:::i;4317:380::-;4396:1;4392:12;;;;4439;;;4460:61;;4514:4;4506:6;4502:17;4492:27;;4460:61;4567:2;4559:6;4556:14;4536:18;4533:38;4530:161;;4613:10;4608:3;4604:20;4601:1;4594:31;4648:4;4645:1;4638:15;4676:4;4673:1;4666:15;4530:161;;4317:380;;;:::o;4702:127::-;4763:10;4758:3;4754:20;4751:1;4744:31;4794:4;4791:1;4784:15;4818:4;4815:1;4808:15;4834:168;4907:9;;;4938;;4955:15;;;4949:22;;4935:37;4925:71;;4976:18;;:::i;5007:217::-;5047:1;5073;5063:132;;5117:10;5112:3;5108:20;5105:1;5098:31;5152:4;5149:1;5142:15;5180:4;5177:1;5170:15;5063:132;-1:-1:-1;5209:9:1;;5007:217::o;7038:245::-;7105:6;7158:2;7146:9;7137:7;7133:23;7129:32;7126:52;;;7174:1;7171;7164:12;7126:52;7206:9;7200:16;7225:28;7247:5;7225:28;:::i;12539:125::-;12604:9;;;12625:10;;;12622:36;;;12638:18;;:::i;13833:128::-;13900:9;;;13921:11;;;13918:37;;;13935:18;;:::i;14653:127::-;14714:10;14709:3;14705:20;14702:1;14695:31;14745:4;14742:1;14735:15;14769:4;14766:1;14759:15;14785:251;14855:6;14908:2;14896:9;14887:7;14883:23;14879:32;14876:52;;;14924:1;14921;14914:12;14876:52;14956:9;14950:16;14975:31;15000:5;14975:31;:::i;15041:980::-;15303:4;15351:3;15340:9;15336:19;15382:6;15371:9;15364:25;15408:2;15446:6;15441:2;15430:9;15426:18;15419:34;15489:3;15484:2;15473:9;15469:18;15462:31;15513:6;15548;15542:13;15579:6;15571;15564:22;15617:3;15606:9;15602:19;15595:26;;15656:2;15648:6;15644:15;15630:29;;15677:1;15687:195;15701:6;15698:1;15695:13;15687:195;;;15766:13;;-1:-1:-1;;;;;15762:39:1;15750:52;;15857:15;;;;15822:12;;;;15798:1;15716:9;15687:195;;;-1:-1:-1;;;;;;;15938:32:1;;;;15933:2;15918:18;;15911:60;-1:-1:-1;;;16002:3:1;15987:19;15980:35;15899:3;15041:980;-1:-1:-1;;;15041:980:1:o

Swarm Source

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