ETH Price: $2,881.10 (-10.58%)
Gas: 18 Gwei

Token

The Roman Empire (ROME)
 

Overview

Max Total Supply

53,911,375.638429586724277289 ROME

Holders

272

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
279,558.137642958289849573 ROME

Value
$0.00
0x3f7c536193a8bb51f4ff5834793e05c030481a3d
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:
Emperator

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-01
*/

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

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

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

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

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

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

// File: ROME.sol

/**

Telegram -  https://t.me/rome_portal 
Twitter -   https://twitter.com/Rome_erc20
Website -   https://www.theromanempire.xyz/

MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWWWNWWWWWWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWOlllllllllllcc:;;,',,,,,dNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMW0l:;.                   .;, :XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWWOc;.     ;o'             .;oOl.:XMWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMKc,.      ,dOO; .lodddl. .;cokd;. .;::xNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMNx,   'l, .,xKd,',lkd:;;,,;oo:,'. .':oddONMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMKo;.   'oKl .coxoc,.''.    ..',;:l;  .';;;:lOWMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMk..c, .:x0c  ..':oocc:' .',;;;,',;'    .;loolckWMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMN0o;lKo..:odoc::;'..';cdxox0KKKK0xl;;l;  .:docld0WMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMKo;..:x0l  ..',;;;cl:,,,cONWMMMMMMMMWXXWKd,  .;o0WMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMXxll, .:c;,''',:;,,,cxO000XWMMMMMMMMMMMMMMMWd..l0WMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMKo:'c0d..:c:ldxdo:coxxOKKOkk0NMMMMMMMMW0kkOXMWd.:NMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMk..;d0o. .,:::::;,:dOKNMO.  '0MMMMMMMMK;  .oWWd.:NMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMWd. .';,',;,'. .'lO0KNMMMKo::dXMMMMMMNkolc:lOWMd.,kXWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMWd.     .,;;',cd0NWMMMMMMMMMMMMMMMMMMK,.oNMMMMM0o,.lNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMWd. .',;;'.. ;XMMKxKMMMMMMMMMMMMMMMMMK, .cKMMMMMWo.cNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMWd. .,:c:,''';lxXd.dWMMMMMMMMW0doooooc.  ,0MMMMKdlckWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMM0c:cccccccdOc .kOcoKWMMMMMMMWk:::::::::oKMMMMWo.cNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMd..kMNdoKNMMMMN0OOkkkkkkkkkO0NMMMWo.lNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMd..kMMXo:xXWMM0;............,OMMWXo'oWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMd..kMMNdll;xWMWXKKKKKKKKKKKKXNMMO:oKNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMWd..kMMXldKxclOWMMMMMMMMMMMMMMM0lcxKWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMWd..kMMXldWWO:;::dXMMMMMMMMMMXdloONMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMWd..kMMWXXMMWXkc'.,cc::cc:c::, .'oKNXXXXXNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMNOxd, .kWNOxKMMMMWN0l....   ...     .''...''dNMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMWWWWWWWWMMMMWW0, .',c0OclkXMMMMMMMWKxc,'.cO0d.   .:x: .oxxoccckNWWMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMNo;;;;;,,lKWNx:,..;0NNKdcdKMMMMMMMMMMMWNKK0XMM0,    :0d..'dXOloxo::l0WWMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMOccoool' .':;.  'd0WMMXkONMMMMMMNkdx0WWKxdxKMMN0l.   .cxc..'oKx;cxkkdcxNWWMMMMMMMMMMMMMMMMM
MMMMMMKdl;':cccccoddddd; .;xNWWWWWWMMMMMMNOxxoc:coxkXWMWXd. .. ;KXk; cXo.,kXWKx:;;l0WMMMMMMMMMMMMMMM
MMMMXdoxxxxddd, :00kkO0l..ooc:::::ckWWWWWWWWWKkx0WWXd::;,. .c; .,dNKkkOo,''dNMW0xxocdXMMMMMMMMMMMMMM
MMKold0NWWXOd:. .'....'. .,cdxxxxxxl:;;;;;;;;;;;;;;'.  .oc.'kkc. 'xXW0dx0x:;:kWMMMNOdcoXWMMMMMMMMMMM
Koc;:ool:;'..':cc:'.    .'..;::lkKWKxxd,           .cxx0Nk.'0Xx; .o0WNK0O00c ,xKWMWKOxo:dNMMMMMMMMMM
'..,'.....';d0NWWWN0o, .;okko:'..:xOO00xolldxkkkkkkOXWWNOc.'0Xx; .o0WMW0okNk:'.l0NWXKN0c;cxNMMMMMMMM
  .   .';cx0NWMMMMMW0c. .;xXNX0d;''':okKXXXKOxolooooooolc' '0Xx; .o0WMW0lkNKd' 'dKMMN000l.;XMMMMMMMM
    ..';lxKWMMMMMMMW0o:' .lONMMW0dc::;;lkXWMWXOkkkkkkkko,,cxOko, .cOWMXd'lXN0;  ,OWKx::kOdooOWMMMMMM
   ..,;cx0NMMMMMMMMWOxOo..lxOXWMWN0xoolccldOKXWWWMMMMXo:cxX0d:..,:ckNWK: ;XMW0l..kWXd..:kNKxxkKMMMMM
  ..',;cx0NMMMMMMMMNOx0x..lxxkXMMMMNOdxO0d::lxkOKXNXx:;lkK0o'. .lc'oNWK: ;XMMMX;.l0NO..;oOXWo.oWMMMM
 ..',,:ox0NMMMMMMMWKol0x..'cdx0WMMMMWXOk0K0kxxxxxl::;ckKko:.  .cOc :XWK: ;XMWNO, 'oKXd;';lONx,:dKMMM
 .'',;ldxk0NWMMMMMWk,,kk:. .oxkKWMMMMMNOdx0XNNXk;;:cx0kd:'   'xXWd.:XWK: ;XMW0o. 'lkXWk..cx0ko'.kMMM
 .'';okkxdoOWMMMMMNx''dkx; .cdxkKNMMMMMWKOO0KOl;cx00kdo:.   .lXMWd.,OKOl,oNMW0o. 'clxX0:',:dkOc.xMMM
 .'':d0KOdoo0WMMMMNd.'oxx; .;odxxOXWMMMMMWNOc:cd0Oxdoc,.   .xXWMWd..oxxxx0WMW0l. ':,:k0x: .cxkc.xMMM
 .'';o0NXkdllkXWMWKo..ldd; .,:ldxxOKWMMMW0dc:o00xolc,.    .:KMMN0c ,kOxxx0WXOd:. ',..cxx: .;c:..ckKW
 .',cdkKN0doold0NXkc..::;. .',;codxxOKKOxolx0kdoo:,.     .;xXN0o,. :XKxl:xNOcc;. ',..cdo;  .,:,.. cN
 .';lxk0NXdloocdKXkc..:'   .',,;coxdooc,:dxdoc:::'..     .lONKo'   :XKx; :XOlc;. ,,..cdc'   .:c:. :N
  
**/

pragma solidity 0.8.20;





contract Emperator is ERC20, Ownable {
	
	IUniswapV2Router02 constant UNISWAP_V2_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    IUniswapV2Factory constant UNISWAP_V2_FACTORY = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);
    IERC20 constant WETH = IERC20(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
	
    address public immutable PAIR;

	uint256 public constant supplyTotal = 76_000_000e18;
    uint256 public constant liquiditySupplyAmount = supplyTotal;
    uint256 public constant feeDenominator = 10000;	
    
	uint256 private _buyFee = (feeDenominator * 30) / 100; 
    uint256 private _sellFee = (feeDenominator * 30) / 100; 
	
	bool public limitsInEffect = true;
	
	uint256 private _maxWalletAmount = supplyTotal * 1 / 100; 
    
    mapping(address => bool) private _exemptFromSwapFees;
    mapping(address => bool) private _exemptFromMaxAmount;    
    
    constructor() ERC20("The Roman Empire", "ROME") {
        PAIR = UNISWAP_V2_FACTORY.createPair(address(this), address(WETH));

        _exemptFromSwapFees[address(this)] = true;

        _exemptFromMaxAmount[msg.sender] = true;
        _exemptFromMaxAmount[address(this)] = true;
        _exemptFromMaxAmount[PAIR] = true;

        _mint(msg.sender, supplyTotal);
        _approve(address(this), address(UNISWAP_V2_ROUTER), totalSupply());
    }
		
    function provisionAqueducts() external payable onlyOwner {
        super._transfer(msg.sender, address(this), liquiditySupplyAmount);

        UNISWAP_V2_ROUTER.addLiquidityETH{value: msg.value}(
            address(this), liquiditySupplyAmount, 0, 0, msg.sender, block.timestamp
        );

        if (address(this).balance > 0 || balanceOf(address(this)) > 0) {
            revert("REMAINING_BALANCE");
        }
    }

    function nullaTaxatio() external onlyOwner {
        _buyFee = 0;
        _sellFee = 0;
    }

    function freeRome() external onlyOwner {
        limitsInEffect = false;
    }    

    /* View Functions */
    function consultAuspices() external view returns (uint256 buyFee, uint256 sellFee) {
        return (_buyFee, _sellFee);
    }

    function consultPraetorianGuardLimit() external view returns (uint256) {
		if (limitsInEffect) {
			return _maxWalletAmount;
		} else {
			return supplyTotal;
		}
    }

    /* Overrides */
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        uint256 feePercentage = 0;
        uint256 feeAmount = 0;

        if (sender == PAIR) {
            // Is in buy
            if (_exemptFromSwapFees[recipient] == false) {
                feePercentage = _buyFee;
            }
        } else if (recipient == PAIR) {
            // Is in sell
            if (_exemptFromSwapFees[sender] == false) {
                feePercentage = _sellFee;
            }
        } 
		if( feePercentage > 0 ) {
			feeAmount = (amount * feePercentage) / feeDenominator;
			amount -= feeAmount;
		}        

        super._transfer(sender, recipient, amount);

        if (feeAmount > 0) {    
			_burn( sender, feeAmount );			
        }
    }

    function _beforeTokenTransfer(address, address to, uint256 amount) internal view override {
		if (limitsInEffect) {
			if (balanceOf(to) + amount > _maxWalletAmount && _exemptFromMaxAmount[to] == false) {
				revert("MAX_WALLET_AMOUNT");
			}
		}
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"consultAuspices","outputs":[{"internalType":"uint256","name":"buyFee","type":"uint256"},{"internalType":"uint256","name":"sellFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"consultPraetorianGuardLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeRome","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySupplyAmount","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":"nullaTaxatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provisionAqueducts","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526064601e61271062000017919062000932565b620000239190620009a9565b6006556064601e61271062000039919062000932565b620000459190620009a9565b600755600160085f6101000a81548160ff021916908315150217905550606460016a3edda04164d68bcc0000006200007e919062000932565b6200008a9190620009a9565b60095534801562000099575f80fd5b506040518060400160405280601081526020017f54686520526f6d616e20456d70697265000000000000000000000000000000008152506040518060400160405280600481526020017f524f4d4500000000000000000000000000000000000000000000000000000000815250816003908162000117919062000c3b565b50806004908162000129919062000c3b565b5050506200014c62000140620003d660201b60201c565b620003dd60201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401620001b192919062000d62565b6020604051808303815f875af1158015620001ce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001f4919062000dc0565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600a5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200039a336a3edda04164d68bcc000000620004a060201b60201c565b620003d030737a250d5630b4cf539739df2c5dacb4c659f2488d620003c46200060560201b60201c565b6200060e60201b60201c565b6200106a565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005089062000e4e565b60405180910390fd5b620005245f8383620007d960201b60201c565b8060025f82825462000537919062000e6e565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005e6919062000eb9565b60405180910390a3620006015f8383620008b260201b60201c565b5050565b5f600254905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200067f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006769062000f48565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e79062000fdc565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620007cc919062000eb9565b60405180910390a3505050565b60085f9054906101000a900460ff1615620008ad57600954816200080384620008b760201b60201c565b6200080f919062000e6e565b1180156200086957505f1515600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b15620008ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a3906200104a565b60405180910390fd5b5b505050565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200093e82620008fc565b91506200094b83620008fc565b92508282026200095b81620008fc565b9150828204841483151762000975576200097462000905565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620009b582620008fc565b9150620009c283620008fc565b925082620009d557620009d46200097c565b5b828204905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a5c57607f821691505b60208210810362000a725762000a7162000a17565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000ad67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a99565b62000ae2868362000a99565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000b2362000b1d62000b1784620008fc565b62000afa565b620008fc565b9050919050565b5f819050919050565b62000b3e8362000b03565b62000b5662000b4d8262000b2a565b84845462000aa5565b825550505050565b5f90565b62000b6c62000b5e565b62000b7981848462000b33565b505050565b5b8181101562000ba05762000b945f8262000b62565b60018101905062000b7f565b5050565b601f82111562000bef5762000bb98162000a78565b62000bc48462000a8a565b8101602085101562000bd4578190505b62000bec62000be38562000a8a565b83018262000b7e565b50505b505050565b5f82821c905092915050565b5f62000c115f198460080262000bf4565b1980831691505092915050565b5f62000c2b838362000c00565b9150826002028217905092915050565b62000c4682620009e0565b67ffffffffffffffff81111562000c625762000c61620009ea565b5b62000c6e825462000a44565b62000c7b82828562000ba4565b5f60209050601f83116001811462000cb1575f841562000c9c578287015190505b62000ca8858262000c1e565b86555062000d17565b601f19841662000cc18662000a78565b5f5b8281101562000cea5784890151825560018201915060208501945060208101905062000cc3565b8683101562000d0a578489015162000d06601f89168262000c00565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000d4a8262000d1f565b9050919050565b62000d5c8162000d3e565b82525050565b5f60408201905062000d775f83018562000d51565b62000d86602083018462000d51565b9392505050565b5f80fd5b62000d9c8162000d3e565b811462000da7575f80fd5b50565b5f8151905062000dba8162000d91565b92915050565b5f6020828403121562000dd85762000dd762000d8d565b5b5f62000de78482850162000daa565b91505092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000e36601f8362000df0565b915062000e438262000e00565b602082019050919050565b5f6020820190508181035f83015262000e678162000e28565b9050919050565b5f62000e7a82620008fc565b915062000e8783620008fc565b925082820190508082111562000ea25762000ea162000905565b5b92915050565b62000eb381620008fc565b82525050565b5f60208201905062000ece5f83018462000ea8565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000f3060248362000df0565b915062000f3d8262000ed4565b604082019050919050565b5f6020820190508181035f83015262000f618162000f22565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000fc460228362000df0565b915062000fd18262000f68565b604082019050919050565b5f6020820190508181035f83015262000ff58162000fb6565b9050919050565b7f4d41585f57414c4c45545f414d4f554e540000000000000000000000000000005f82015250565b5f6200103260118362000df0565b91506200103f8262000ffc565b602082019050919050565b5f6020820190508181035f830152620010638162001024565b9050919050565b6080516121e8620010915f395f81816108a101528181610dfa0152610eac01526121e85ff3fe60806040526004361061014a575f3560e01c8063715018a6116100b5578063ace3a8a71161006e578063ace3a8a714610473578063bbadd8231461049d578063dd62ed3e146104c7578063df314bee14610503578063e651e04c1461050d578063f2fde38b146105375761014a565b8063715018a61461037b5780638da5cb5b1461039157806395d89b41146103bb5780639c8079cf146103e5578063a457c2d7146103fb578063a9059cbb146104375761014a565b8063313ce56711610107578063313ce5671461025a57806339509351146102845780633a16b1b7146102c05780634a62bb65146102ea578063557563561461031457806370a082311461033f5761014a565b806306fdde031461014e578063095ea7b314610178578063180b0d7e146101b457806318160ddd146101de5780631df4401a1461020857806323b872dd1461021e575b5f80fd5b348015610159575f80fd5b5061016261055f565b60405161016f91906115fb565b60405180910390f35b348015610183575f80fd5b5061019e600480360381019061019991906116ac565b6105ef565b6040516101ab9190611704565b60405180910390f35b3480156101bf575f80fd5b506101c8610611565b6040516101d5919061172c565b60405180910390f35b3480156101e9575f80fd5b506101f2610617565b6040516101ff919061172c565b60405180910390f35b348015610213575f80fd5b5061021c610620565b005b348015610229575f80fd5b50610244600480360381019061023f9190611745565b610643565b6040516102519190611704565b60405180910390f35b348015610265575f80fd5b5061026e610671565b60405161027b91906117b0565b60405180910390f35b34801561028f575f80fd5b506102aa60048036038101906102a591906116ac565b610679565b6040516102b79190611704565b60405180910390f35b3480156102cb575f80fd5b506102d46106af565b6040516102e1919061172c565b60405180910390f35b3480156102f5575f80fd5b506102fe6106be565b60405161030b9190611704565b60405180910390f35b34801561031f575f80fd5b506103286106d0565b6040516103369291906117c9565b60405180910390f35b34801561034a575f80fd5b50610365600480360381019061036091906117f0565b6106e0565b604051610372919061172c565b60405180910390f35b348015610386575f80fd5b5061038f610725565b005b34801561039c575f80fd5b506103a5610738565b6040516103b2919061182a565b60405180910390f35b3480156103c6575f80fd5b506103cf610760565b6040516103dc91906115fb565b60405180910390f35b3480156103f0575f80fd5b506103f96107f0565b005b348015610406575f80fd5b50610421600480360381019061041c91906116ac565b610808565b60405161042e9190611704565b60405180910390f35b348015610442575f80fd5b5061045d600480360381019061045891906116ac565b61087d565b60405161046a9190611704565b60405180910390f35b34801561047e575f80fd5b5061048761089f565b604051610494919061182a565b60405180910390f35b3480156104a8575f80fd5b506104b16108c3565b6040516104be919061172c565b60405180910390f35b3480156104d2575f80fd5b506104ed60048036038101906104e89190611843565b6108f4565b6040516104fa919061172c565b60405180910390f35b61050b610976565b005b348015610518575f80fd5b50610521610a92565b60405161052e919061172c565b60405180910390f35b348015610542575f80fd5b5061055d600480360381019061055891906117f0565b610aa1565b005b60606003805461056e906118ae565b80601f016020809104026020016040519081016040528092919081815260200182805461059a906118ae565b80156105e55780601f106105bc576101008083540402835291602001916105e5565b820191905f5260205f20905b8154815290600101906020018083116105c857829003601f168201915b5050505050905090565b5f806105f9610b23565b9050610606818585610b2a565b600191505092915050565b61271081565b5f600254905090565b610628610ced565b5f60085f6101000a81548160ff021916908315150217905550565b5f8061064d610b23565b905061065a858285610d6b565b610665858585610df6565b60019150509392505050565b5f6012905090565b5f80610683610b23565b90506106a481858561069585896108f4565b61069f919061190b565b610b2a565b600191505092915050565b6a3edda04164d68bcc00000081565b60085f9054906101000a900460ff1681565b5f80600654600754915091509091565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61072d610ced565b6107365f610fb0565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461076f906118ae565b80601f016020809104026020016040519081016040528092919081815260200182805461079b906118ae565b80156107e65780601f106107bd576101008083540402835291602001916107e6565b820191905f5260205f20905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b6107f8610ced565b5f6006819055505f600781905550565b5f80610812610b23565b90505f61081f82866108f4565b905083811015610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b906119ae565b60405180910390fd5b6108718286868403610b2a565b60019250505092915050565b5f80610887610b23565b9050610894818585610df6565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60085f9054906101000a900460ff16156108e25760095490506108f1565b6a3edda04164d68bcc00000090505b90565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61097e610ced565b61099433306a3edda04164d68bcc000000611073565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71934306a3edda04164d68bcc0000005f8033426040518863ffffffff1660e01b81526004016109f796959493929190611a0e565b60606040518083038185885af1158015610a13573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a389190611a81565b5050505f471180610a5057505f610a4e306106e0565b115b15610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790611b1b565b60405180910390fd5b565b6a3edda04164d68bcc00000081565b610aa9610ced565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90611ba9565b60405180910390fd5b610b2081610fb0565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611c37565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90611cc5565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ce0919061172c565b60405180910390a3505050565b610cf5610b23565b73ffffffffffffffffffffffffffffffffffffffff16610d13610738565b73ffffffffffffffffffffffffffffffffffffffff1614610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611d2d565b60405180910390fd5b565b5f610d7684846108f4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610df05781811015610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990611d95565b60405180910390fd5b610def8484848403610b2a565b5b50505050565b5f807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610eaa575f1515600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610ea55760065491505b610f59565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f58575f1515600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610f575760075491505b5b5b5f821115610f8b576127108284610f709190611db3565b610f7a9190611e21565b90508083610f889190611e51565b92505b610f96858585611073565b5f811115610fa957610fa885826112df565b5b5050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890611ef4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690611f82565b60405180910390fd5b61115a8383836114a2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490612010565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c6919061172c565b60405180910390a36112d984848461156c565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113449061209e565b60405180910390fd5b611358825f836114a2565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d29061212c565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148a919061172c565b60405180910390a361149d835f8461156c565b505050565b60085f9054906101000a900460ff161561156757600954816114c3846106e0565b6114cd919061190b565b11801561152657505f1515600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b15611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90612194565b60405180910390fd5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115a857808201518184015260208101905061158d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6115cd82611571565b6115d7818561157b565b93506115e781856020860161158b565b6115f0816115b3565b840191505092915050565b5f6020820190508181035f83015261161381846115c3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116488261161f565b9050919050565b6116588161163e565b8114611662575f80fd5b50565b5f813590506116738161164f565b92915050565b5f819050919050565b61168b81611679565b8114611695575f80fd5b50565b5f813590506116a681611682565b92915050565b5f80604083850312156116c2576116c161161b565b5b5f6116cf85828601611665565b92505060206116e085828601611698565b9150509250929050565b5f8115159050919050565b6116fe816116ea565b82525050565b5f6020820190506117175f8301846116f5565b92915050565b61172681611679565b82525050565b5f60208201905061173f5f83018461171d565b92915050565b5f805f6060848603121561175c5761175b61161b565b5b5f61176986828701611665565b935050602061177a86828701611665565b925050604061178b86828701611698565b9150509250925092565b5f60ff82169050919050565b6117aa81611795565b82525050565b5f6020820190506117c35f8301846117a1565b92915050565b5f6040820190506117dc5f83018561171d565b6117e9602083018461171d565b9392505050565b5f602082840312156118055761180461161b565b5b5f61181284828501611665565b91505092915050565b6118248161163e565b82525050565b5f60208201905061183d5f83018461181b565b92915050565b5f80604083850312156118595761185861161b565b5b5f61186685828601611665565b925050602061187785828601611665565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118c557607f821691505b6020821081036118d8576118d7611881565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61191582611679565b915061192083611679565b9250828201905080821115611938576119376118de565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61199860258361157b565b91506119a38261193e565b604082019050919050565b5f6020820190508181035f8301526119c58161198c565b9050919050565b5f819050919050565b5f819050919050565b5f6119f86119f36119ee846119cc565b6119d5565b611679565b9050919050565b611a08816119de565b82525050565b5f60c082019050611a215f83018961181b565b611a2e602083018861171d565b611a3b60408301876119ff565b611a4860608301866119ff565b611a55608083018561181b565b611a6260a083018461171d565b979650505050505050565b5f81519050611a7b81611682565b92915050565b5f805f60608486031215611a9857611a9761161b565b5b5f611aa586828701611a6d565b9350506020611ab686828701611a6d565b9250506040611ac786828701611a6d565b9150509250925092565b7f52454d41494e494e475f42414c414e43450000000000000000000000000000005f82015250565b5f611b0560118361157b565b9150611b1082611ad1565b602082019050919050565b5f6020820190508181035f830152611b3281611af9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b9360268361157b565b9150611b9e82611b39565b604082019050919050565b5f6020820190508181035f830152611bc081611b87565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c2160248361157b565b9150611c2c82611bc7565b604082019050919050565b5f6020820190508181035f830152611c4e81611c15565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611caf60228361157b565b9150611cba82611c55565b604082019050919050565b5f6020820190508181035f830152611cdc81611ca3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d1760208361157b565b9150611d2282611ce3565b602082019050919050565b5f6020820190508181035f830152611d4481611d0b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611d7f601d8361157b565b9150611d8a82611d4b565b602082019050919050565b5f6020820190508181035f830152611dac81611d73565b9050919050565b5f611dbd82611679565b9150611dc883611679565b9250828202611dd681611679565b91508282048414831517611ded57611dec6118de565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611e2b82611679565b9150611e3683611679565b925082611e4657611e45611df4565b5b828204905092915050565b5f611e5b82611679565b9150611e6683611679565b9250828203905081811115611e7e57611e7d6118de565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611ede60258361157b565b9150611ee982611e84565b604082019050919050565b5f6020820190508181035f830152611f0b81611ed2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f6c60238361157b565b9150611f7782611f12565b604082019050919050565b5f6020820190508181035f830152611f9981611f60565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ffa60268361157b565b915061200582611fa0565b604082019050919050565b5f6020820190508181035f83015261202781611fee565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61208860218361157b565b91506120938261202e565b604082019050919050565b5f6020820190508181035f8301526120b58161207c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61211660228361157b565b9150612121826120bc565b604082019050919050565b5f6020820190508181035f8301526121438161210a565b9050919050565b7f4d41585f57414c4c45545f414d4f554e540000000000000000000000000000005f82015250565b5f61217e60118361157b565b91506121898261214a565b602082019050919050565b5f6020820190508181035f8301526121ab81612172565b905091905056fea26469706673582212209ef60fb1b53e08a36d100462b34f5a8b80bda832dcaa40404173028c5864c8ee64736f6c63430008140033

Deployed Bytecode

0x60806040526004361061014a575f3560e01c8063715018a6116100b5578063ace3a8a71161006e578063ace3a8a714610473578063bbadd8231461049d578063dd62ed3e146104c7578063df314bee14610503578063e651e04c1461050d578063f2fde38b146105375761014a565b8063715018a61461037b5780638da5cb5b1461039157806395d89b41146103bb5780639c8079cf146103e5578063a457c2d7146103fb578063a9059cbb146104375761014a565b8063313ce56711610107578063313ce5671461025a57806339509351146102845780633a16b1b7146102c05780634a62bb65146102ea578063557563561461031457806370a082311461033f5761014a565b806306fdde031461014e578063095ea7b314610178578063180b0d7e146101b457806318160ddd146101de5780631df4401a1461020857806323b872dd1461021e575b5f80fd5b348015610159575f80fd5b5061016261055f565b60405161016f91906115fb565b60405180910390f35b348015610183575f80fd5b5061019e600480360381019061019991906116ac565b6105ef565b6040516101ab9190611704565b60405180910390f35b3480156101bf575f80fd5b506101c8610611565b6040516101d5919061172c565b60405180910390f35b3480156101e9575f80fd5b506101f2610617565b6040516101ff919061172c565b60405180910390f35b348015610213575f80fd5b5061021c610620565b005b348015610229575f80fd5b50610244600480360381019061023f9190611745565b610643565b6040516102519190611704565b60405180910390f35b348015610265575f80fd5b5061026e610671565b60405161027b91906117b0565b60405180910390f35b34801561028f575f80fd5b506102aa60048036038101906102a591906116ac565b610679565b6040516102b79190611704565b60405180910390f35b3480156102cb575f80fd5b506102d46106af565b6040516102e1919061172c565b60405180910390f35b3480156102f5575f80fd5b506102fe6106be565b60405161030b9190611704565b60405180910390f35b34801561031f575f80fd5b506103286106d0565b6040516103369291906117c9565b60405180910390f35b34801561034a575f80fd5b50610365600480360381019061036091906117f0565b6106e0565b604051610372919061172c565b60405180910390f35b348015610386575f80fd5b5061038f610725565b005b34801561039c575f80fd5b506103a5610738565b6040516103b2919061182a565b60405180910390f35b3480156103c6575f80fd5b506103cf610760565b6040516103dc91906115fb565b60405180910390f35b3480156103f0575f80fd5b506103f96107f0565b005b348015610406575f80fd5b50610421600480360381019061041c91906116ac565b610808565b60405161042e9190611704565b60405180910390f35b348015610442575f80fd5b5061045d600480360381019061045891906116ac565b61087d565b60405161046a9190611704565b60405180910390f35b34801561047e575f80fd5b5061048761089f565b604051610494919061182a565b60405180910390f35b3480156104a8575f80fd5b506104b16108c3565b6040516104be919061172c565b60405180910390f35b3480156104d2575f80fd5b506104ed60048036038101906104e89190611843565b6108f4565b6040516104fa919061172c565b60405180910390f35b61050b610976565b005b348015610518575f80fd5b50610521610a92565b60405161052e919061172c565b60405180910390f35b348015610542575f80fd5b5061055d600480360381019061055891906117f0565b610aa1565b005b60606003805461056e906118ae565b80601f016020809104026020016040519081016040528092919081815260200182805461059a906118ae565b80156105e55780601f106105bc576101008083540402835291602001916105e5565b820191905f5260205f20905b8154815290600101906020018083116105c857829003601f168201915b5050505050905090565b5f806105f9610b23565b9050610606818585610b2a565b600191505092915050565b61271081565b5f600254905090565b610628610ced565b5f60085f6101000a81548160ff021916908315150217905550565b5f8061064d610b23565b905061065a858285610d6b565b610665858585610df6565b60019150509392505050565b5f6012905090565b5f80610683610b23565b90506106a481858561069585896108f4565b61069f919061190b565b610b2a565b600191505092915050565b6a3edda04164d68bcc00000081565b60085f9054906101000a900460ff1681565b5f80600654600754915091509091565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61072d610ced565b6107365f610fb0565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461076f906118ae565b80601f016020809104026020016040519081016040528092919081815260200182805461079b906118ae565b80156107e65780601f106107bd576101008083540402835291602001916107e6565b820191905f5260205f20905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b6107f8610ced565b5f6006819055505f600781905550565b5f80610812610b23565b90505f61081f82866108f4565b905083811015610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b906119ae565b60405180910390fd5b6108718286868403610b2a565b60019250505092915050565b5f80610887610b23565b9050610894818585610df6565b600191505092915050565b7f000000000000000000000000af3e6e08339a9743c4971da73606411664ed45b181565b5f60085f9054906101000a900460ff16156108e25760095490506108f1565b6a3edda04164d68bcc00000090505b90565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61097e610ced565b61099433306a3edda04164d68bcc000000611073565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71934306a3edda04164d68bcc0000005f8033426040518863ffffffff1660e01b81526004016109f796959493929190611a0e565b60606040518083038185885af1158015610a13573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a389190611a81565b5050505f471180610a5057505f610a4e306106e0565b115b15610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790611b1b565b60405180910390fd5b565b6a3edda04164d68bcc00000081565b610aa9610ced565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90611ba9565b60405180910390fd5b610b2081610fb0565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611c37565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90611cc5565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ce0919061172c565b60405180910390a3505050565b610cf5610b23565b73ffffffffffffffffffffffffffffffffffffffff16610d13610738565b73ffffffffffffffffffffffffffffffffffffffff1614610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611d2d565b60405180910390fd5b565b5f610d7684846108f4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610df05781811015610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990611d95565b60405180910390fd5b610def8484848403610b2a565b5b50505050565b5f807f000000000000000000000000af3e6e08339a9743c4971da73606411664ed45b173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610eaa575f1515600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610ea55760065491505b610f59565b7f000000000000000000000000af3e6e08339a9743c4971da73606411664ed45b173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f58575f1515600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610f575760075491505b5b5b5f821115610f8b576127108284610f709190611db3565b610f7a9190611e21565b90508083610f889190611e51565b92505b610f96858585611073565b5f811115610fa957610fa885826112df565b5b5050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890611ef4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690611f82565b60405180910390fd5b61115a8383836114a2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490612010565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c6919061172c565b60405180910390a36112d984848461156c565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113449061209e565b60405180910390fd5b611358825f836114a2565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d29061212c565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148a919061172c565b60405180910390a361149d835f8461156c565b505050565b60085f9054906101000a900460ff161561156757600954816114c3846106e0565b6114cd919061190b565b11801561152657505f1515600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b15611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90612194565b60405180910390fd5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115a857808201518184015260208101905061158d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6115cd82611571565b6115d7818561157b565b93506115e781856020860161158b565b6115f0816115b3565b840191505092915050565b5f6020820190508181035f83015261161381846115c3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116488261161f565b9050919050565b6116588161163e565b8114611662575f80fd5b50565b5f813590506116738161164f565b92915050565b5f819050919050565b61168b81611679565b8114611695575f80fd5b50565b5f813590506116a681611682565b92915050565b5f80604083850312156116c2576116c161161b565b5b5f6116cf85828601611665565b92505060206116e085828601611698565b9150509250929050565b5f8115159050919050565b6116fe816116ea565b82525050565b5f6020820190506117175f8301846116f5565b92915050565b61172681611679565b82525050565b5f60208201905061173f5f83018461171d565b92915050565b5f805f6060848603121561175c5761175b61161b565b5b5f61176986828701611665565b935050602061177a86828701611665565b925050604061178b86828701611698565b9150509250925092565b5f60ff82169050919050565b6117aa81611795565b82525050565b5f6020820190506117c35f8301846117a1565b92915050565b5f6040820190506117dc5f83018561171d565b6117e9602083018461171d565b9392505050565b5f602082840312156118055761180461161b565b5b5f61181284828501611665565b91505092915050565b6118248161163e565b82525050565b5f60208201905061183d5f83018461181b565b92915050565b5f80604083850312156118595761185861161b565b5b5f61186685828601611665565b925050602061187785828601611665565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118c557607f821691505b6020821081036118d8576118d7611881565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61191582611679565b915061192083611679565b9250828201905080821115611938576119376118de565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61199860258361157b565b91506119a38261193e565b604082019050919050565b5f6020820190508181035f8301526119c58161198c565b9050919050565b5f819050919050565b5f819050919050565b5f6119f86119f36119ee846119cc565b6119d5565b611679565b9050919050565b611a08816119de565b82525050565b5f60c082019050611a215f83018961181b565b611a2e602083018861171d565b611a3b60408301876119ff565b611a4860608301866119ff565b611a55608083018561181b565b611a6260a083018461171d565b979650505050505050565b5f81519050611a7b81611682565b92915050565b5f805f60608486031215611a9857611a9761161b565b5b5f611aa586828701611a6d565b9350506020611ab686828701611a6d565b9250506040611ac786828701611a6d565b9150509250925092565b7f52454d41494e494e475f42414c414e43450000000000000000000000000000005f82015250565b5f611b0560118361157b565b9150611b1082611ad1565b602082019050919050565b5f6020820190508181035f830152611b3281611af9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b9360268361157b565b9150611b9e82611b39565b604082019050919050565b5f6020820190508181035f830152611bc081611b87565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c2160248361157b565b9150611c2c82611bc7565b604082019050919050565b5f6020820190508181035f830152611c4e81611c15565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611caf60228361157b565b9150611cba82611c55565b604082019050919050565b5f6020820190508181035f830152611cdc81611ca3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d1760208361157b565b9150611d2282611ce3565b602082019050919050565b5f6020820190508181035f830152611d4481611d0b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611d7f601d8361157b565b9150611d8a82611d4b565b602082019050919050565b5f6020820190508181035f830152611dac81611d73565b9050919050565b5f611dbd82611679565b9150611dc883611679565b9250828202611dd681611679565b91508282048414831517611ded57611dec6118de565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611e2b82611679565b9150611e3683611679565b925082611e4657611e45611df4565b5b828204905092915050565b5f611e5b82611679565b9150611e6683611679565b9250828203905081811115611e7e57611e7d6118de565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611ede60258361157b565b9150611ee982611e84565b604082019050919050565b5f6020820190508181035f830152611f0b81611ed2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f6c60238361157b565b9150611f7782611f12565b604082019050919050565b5f6020820190508181035f830152611f9981611f60565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ffa60268361157b565b915061200582611fa0565b604082019050919050565b5f6020820190508181035f83015261202781611fee565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61208860218361157b565b91506120938261202e565b604082019050919050565b5f6020820190508181035f8301526120b58161207c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61211660228361157b565b9150612121826120bc565b604082019050919050565b5f6020820190508181035f8301526121438161210a565b9050919050565b7f4d41585f57414c4c45545f414d4f554e540000000000000000000000000000005f82015250565b5f61217e60118361157b565b91506121898261214a565b602082019050919050565b5f6020820190508181035f8301526121ab81612172565b905091905056fea26469706673582212209ef60fb1b53e08a36d100462b34f5a8b80bda832dcaa40404173028c5864c8ee64736f6c63430008140033

Deployed Bytecode Sourcemap

31468:3471:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15171:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31987:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16300:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33415:80;;;;;;;;;;;;;:::i;:::-;;18312:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16142:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18982:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31921:59;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32167:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33533:128;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;16471:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8608:103;;;;;;;;;;;;;:::i;:::-;;7967:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15390:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33311:96;;;;;;;;;;;;;:::i;:::-;;19723:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16804:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31828:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33669:174;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17060:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32872:431;;;:::i;:::-;;31863:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8866:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15171:100;15225:13;15258:5;15251:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15171:100;:::o;17531:201::-;17614:4;17631:13;17647:12;:10;:12::i;:::-;17631:28;;17670:32;17679:5;17686:7;17695:6;17670:8;:32::i;:::-;17720:4;17713:11;;;17531:201;;;;:::o;31987:46::-;32028:5;31987:46;:::o;16300:108::-;16361:7;16388:12;;16381:19;;16300:108;:::o;33415:80::-;7853:13;:11;:13::i;:::-;33482:5:::1;33465:14;;:22;;;;;;;;;;;;;;;;;;33415:80::o:0;18312:261::-;18409:4;18426:15;18444:12;:10;:12::i;:::-;18426:30;;18467:38;18483:4;18489:7;18498:6;18467:15;:38::i;:::-;18516:27;18526:4;18532:2;18536:6;18516:9;:27::i;:::-;18561:4;18554:11;;;18312:261;;;;;:::o;16142:93::-;16200:5;16225:2;16218:9;;16142:93;:::o;18982:238::-;19070:4;19087:13;19103:12;:10;:12::i;:::-;19087:28;;19126:64;19135:5;19142:7;19179:10;19151:25;19161:5;19168:7;19151:9;:25::i;:::-;:38;;;;:::i;:::-;19126:8;:64::i;:::-;19208:4;19201:11;;;18982:238;;;;:::o;31921:59::-;31901:13;31921:59;:::o;32167:33::-;;;;;;;;;;;;;:::o;33533:128::-;33583:14;33599:15;33635:7;;33644:8;;33627:26;;;;33533:128;;:::o;16471:127::-;16545:7;16572:9;:18;16582:7;16572:18;;;;;;;;;;;;;;;;16565:25;;16471:127;;;:::o;8608:103::-;7853:13;:11;:13::i;:::-;8673:30:::1;8700:1;8673:18;:30::i;:::-;8608:103::o:0;7967:87::-;8013:7;8040:6;;;;;;;;;;;8033:13;;7967:87;:::o;15390:104::-;15446:13;15479:7;15472:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15390:104;:::o;33311:96::-;7853:13;:11;:13::i;:::-;33375:1:::1;33365:7;:11;;;;33398:1;33387:8;:12;;;;33311:96::o:0;19723:436::-;19816:4;19833:13;19849:12;:10;:12::i;:::-;19833:28;;19872:24;19899:25;19909:5;19916:7;19899:9;:25::i;:::-;19872:52;;19963:15;19943:16;:35;;19935:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;20056:60;20065:5;20072:7;20100:15;20081:16;:34;20056:8;:60::i;:::-;20147:4;20140:11;;;;19723:436;;;;:::o;16804:193::-;16883:4;16900:13;16916:12;:10;:12::i;:::-;16900:28;;16939;16949:5;16956:2;16960:6;16939:9;:28::i;:::-;16985:4;16978:11;;;16804:193;;;;:::o;31828:29::-;;;:::o;33669:174::-;33731:7;33749:14;;;;;;;;;;;33745:91;;;33778:16;;33771:23;;;;33745:91;31901:13;33812:18;;33669:174;;:::o;17060:151::-;17149:7;17176:11;:18;17188:5;17176:18;;;;;;;;;;;;;;;:27;17195:7;17176:27;;;;;;;;;;;;;;;;17169:34;;17060:151;;;;:::o;32872:431::-;7853:13;:11;:13::i;:::-;32940:65:::1;32956:10;32976:4;31901:13;32940:15;:65::i;:::-;31579:42;33018:33;;;33059:9;33092:4;31901:13;33122:1;33125::::0;33128:10:::1;33140:15;33018:148;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33207:1;33183:21;:25;:57;;;;33239:1;33212:24;33230:4;33212:9;:24::i;:::-;:28;33183:57;33179:117;;;33257:27;;;;;;;;;;:::i;:::-;;;;;;;;33179:117;32872:431::o:0;31863:51::-;31901:13;31863:51;:::o;8866:201::-;7853:13;:11;:13::i;:::-;8975:1:::1;8955:22;;:8;:22;;::::0;8947:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;9031:28;9050:8;9031:18;:28::i;:::-;8866:201:::0;:::o;6512:98::-;6565:7;6592:10;6585:17;;6512:98;:::o;23716:346::-;23835:1;23818:19;;:5;:19;;;23810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23916:1;23897:21;;:7;:21;;;23889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24000:6;23970:11;:18;23982:5;23970:18;;;;;;;;;;;;;;;:27;23989:7;23970:27;;;;;;;;;;;;;;;:36;;;;24038:7;24022:32;;24031:5;24022:32;;;24047:6;24022:32;;;;;;:::i;:::-;;;;;;;;23716:346;;;:::o;8132:132::-;8207:12;:10;:12::i;:::-;8196:23;;:7;:5;:7::i;:::-;:23;;;8188:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8132:132::o;24353:419::-;24454:24;24481:25;24491:5;24498:7;24481:9;:25::i;:::-;24454:52;;24541:17;24521:16;:37;24517:248;;24603:6;24583:16;:26;;24575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24687:51;24696:5;24703:7;24731:6;24712:16;:25;24687:8;:51::i;:::-;24517:248;24443:329;24353:419;;;:::o;33872:798::-;33971:21;34007:17;34055:4;34045:14;;:6;:14;;;34041:358;;34140:5;34106:39;;:19;:30;34126:9;34106:30;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;34102:103;;34182:7;;34166:23;;34102:103;34041:358;;;34239:4;34226:17;;:9;:17;;;34222:177;;34322:5;34291:36;;:19;:27;34311:6;34291:27;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;34287:101;;34364:8;;34348:24;;34287:101;34222:177;34041:358;34424:1;34408:13;:17;34404:114;;;32028:5;34456:13;34447:6;:22;;;;:::i;:::-;34446:41;;;;:::i;:::-;34434:53;;34503:9;34493:19;;;;;:::i;:::-;;;34404:114;34538:42;34554:6;34562:9;34573:6;34538:15;:42::i;:::-;34609:1;34597:9;:13;34593:70;;;34622:26;34629:6;34637:9;34622:5;:26::i;:::-;34593:70;33960:710;;33872:798;;;:::o;9227:191::-;9301:16;9320:6;;;;;;;;;;;9301:25;;9346:8;9337:6;;:17;;;;;;;;;;;;;;;;;;9401:8;9370:40;;9391:8;9370:40;;;;;;;;;;;;9290:128;9227:191;:::o;20629:806::-;20742:1;20726:18;;:4;:18;;;20718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20819:1;20805:16;;:2;:16;;;20797:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20874:38;20895:4;20901:2;20905:6;20874:20;:38::i;:::-;20925:19;20947:9;:15;20957:4;20947:15;;;;;;;;;;;;;;;;20925:37;;20996:6;20981:11;:21;;20973:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;21113:6;21099:11;:20;21081:9;:15;21091:4;21081:15;;;;;;;;;;;;;;;:38;;;;21316:6;21299:9;:13;21309:2;21299:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;21366:2;21351:26;;21360:4;21351:26;;;21370:6;21351:26;;;;;;:::i;:::-;;;;;;;;21390:37;21410:4;21416:2;21420:6;21390:19;:37::i;:::-;20707:728;20629:806;;;:::o;22603:675::-;22706:1;22687:21;;:7;:21;;;22679:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22759:49;22780:7;22797:1;22801:6;22759:20;:49::i;:::-;22821:22;22846:9;:18;22856:7;22846:18;;;;;;;;;;;;;;;;22821:43;;22901:6;22883:14;:24;;22875:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23020:6;23003:14;:23;22982:9;:18;22992:7;22982:18;;;;;;;;;;;;;;;:44;;;;23137:6;23121:12;;:22;;;;;;;;;;;23198:1;23172:37;;23181:7;23172:37;;;23202:6;23172:37;;;;;;:::i;:::-;;;;;;;;23222:48;23242:7;23259:1;23263:6;23222:19;:48::i;:::-;22668:610;22603:675;;:::o;34678:258::-;34777:14;;;;;;;;;;;34773:156;;;34828:16;;34819:6;34803:13;34813:2;34803:9;:13::i;:::-;:22;;;;:::i;:::-;:41;:78;;;;;34876:5;34848:33;;:20;:24;34869:2;34848:24;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;34803:78;34799:125;;;34890:27;;;;;;;;;;:::i;:::-;;;;;;;;34799:125;34773:156;34678:258;;;:::o;26067:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:332::-;4974:4;5012:2;5001:9;4997:18;4989:26;;5025:71;5093:1;5082:9;5078:17;5069:6;5025:71;:::i;:::-;5106:72;5174:2;5163:9;5159:18;5150:6;5106:72;:::i;:::-;4853:332;;;;;:::o;5191:329::-;5250:6;5299:2;5287:9;5278:7;5274:23;5270:32;5267:119;;;5305:79;;:::i;:::-;5267:119;5425:1;5450:53;5495:7;5486:6;5475:9;5471:22;5450:53;:::i;:::-;5440:63;;5396:117;5191:329;;;;:::o;5526:118::-;5613:24;5631:5;5613:24;:::i;:::-;5608:3;5601:37;5526:118;;:::o;5650:222::-;5743:4;5781:2;5770:9;5766:18;5758:26;;5794:71;5862:1;5851:9;5847:17;5838:6;5794:71;:::i;:::-;5650:222;;;;:::o;5878:474::-;5946:6;5954;6003:2;5991:9;5982:7;5978:23;5974:32;5971:119;;;6009:79;;:::i;:::-;5971:119;6129:1;6154:53;6199:7;6190:6;6179:9;6175:22;6154:53;:::i;:::-;6144:63;;6100:117;6256:2;6282:53;6327:7;6318:6;6307:9;6303:22;6282:53;:::i;:::-;6272:63;;6227:118;5878:474;;;;;:::o;6358:180::-;6406:77;6403:1;6396:88;6503:4;6500:1;6493:15;6527:4;6524:1;6517:15;6544:320;6588:6;6625:1;6619:4;6615:12;6605:22;;6672:1;6666:4;6662:12;6693:18;6683:81;;6749:4;6741:6;6737:17;6727:27;;6683:81;6811:2;6803:6;6800:14;6780:18;6777:38;6774:84;;6830:18;;:::i;:::-;6774:84;6595:269;6544:320;;;:::o;6870:180::-;6918:77;6915:1;6908:88;7015:4;7012:1;7005:15;7039:4;7036:1;7029:15;7056:191;7096:3;7115:20;7133:1;7115:20;:::i;:::-;7110:25;;7149:20;7167:1;7149:20;:::i;:::-;7144:25;;7192:1;7189;7185:9;7178:16;;7213:3;7210:1;7207:10;7204:36;;;7220:18;;:::i;:::-;7204:36;7056:191;;;;:::o;7253:224::-;7393:34;7389:1;7381:6;7377:14;7370:58;7462:7;7457:2;7449:6;7445:15;7438:32;7253:224;:::o;7483:366::-;7625:3;7646:67;7710:2;7705:3;7646:67;:::i;:::-;7639:74;;7722:93;7811:3;7722:93;:::i;:::-;7840:2;7835:3;7831:12;7824:19;;7483:366;;;:::o;7855:419::-;8021:4;8059:2;8048:9;8044:18;8036:26;;8108:9;8102:4;8098:20;8094:1;8083:9;8079:17;8072:47;8136:131;8262:4;8136:131;:::i;:::-;8128:139;;7855:419;;;:::o;8280:85::-;8325:7;8354:5;8343:16;;8280:85;;;:::o;8371:60::-;8399:3;8420:5;8413:12;;8371:60;;;:::o;8437:158::-;8495:9;8528:61;8546:42;8555:32;8581:5;8555:32;:::i;:::-;8546:42;:::i;:::-;8528:61;:::i;:::-;8515:74;;8437:158;;;:::o;8601:147::-;8696:45;8735:5;8696:45;:::i;:::-;8691:3;8684:58;8601:147;;:::o;8754:807::-;9003:4;9041:3;9030:9;9026:19;9018:27;;9055:71;9123:1;9112:9;9108:17;9099:6;9055:71;:::i;:::-;9136:72;9204:2;9193:9;9189:18;9180:6;9136:72;:::i;:::-;9218:80;9294:2;9283:9;9279:18;9270:6;9218:80;:::i;:::-;9308;9384:2;9373:9;9369:18;9360:6;9308:80;:::i;:::-;9398:73;9466:3;9455:9;9451:19;9442:6;9398:73;:::i;:::-;9481;9549:3;9538:9;9534:19;9525:6;9481:73;:::i;:::-;8754:807;;;;;;;;;:::o;9567:143::-;9624:5;9655:6;9649:13;9640:22;;9671:33;9698:5;9671:33;:::i;:::-;9567:143;;;;:::o;9716:663::-;9804:6;9812;9820;9869:2;9857:9;9848:7;9844:23;9840:32;9837:119;;;9875:79;;:::i;:::-;9837:119;9995:1;10020:64;10076:7;10067:6;10056:9;10052:22;10020:64;:::i;:::-;10010:74;;9966:128;10133:2;10159:64;10215:7;10206:6;10195:9;10191:22;10159:64;:::i;:::-;10149:74;;10104:129;10272:2;10298:64;10354:7;10345:6;10334:9;10330:22;10298:64;:::i;:::-;10288:74;;10243:129;9716:663;;;;;:::o;10385:167::-;10525:19;10521:1;10513:6;10509:14;10502:43;10385:167;:::o;10558:366::-;10700:3;10721:67;10785:2;10780:3;10721:67;:::i;:::-;10714:74;;10797:93;10886:3;10797:93;:::i;:::-;10915:2;10910:3;10906:12;10899:19;;10558:366;;;:::o;10930:419::-;11096:4;11134:2;11123:9;11119:18;11111:26;;11183:9;11177:4;11173:20;11169:1;11158:9;11154:17;11147:47;11211:131;11337:4;11211:131;:::i;:::-;11203:139;;10930:419;;;:::o;11355:225::-;11495:34;11491:1;11483:6;11479:14;11472:58;11564:8;11559:2;11551:6;11547:15;11540:33;11355:225;:::o;11586:366::-;11728:3;11749:67;11813:2;11808:3;11749:67;:::i;:::-;11742:74;;11825:93;11914:3;11825:93;:::i;:::-;11943:2;11938:3;11934:12;11927:19;;11586:366;;;:::o;11958:419::-;12124:4;12162:2;12151:9;12147:18;12139:26;;12211:9;12205:4;12201:20;12197:1;12186:9;12182:17;12175:47;12239:131;12365:4;12239:131;:::i;:::-;12231:139;;11958:419;;;:::o;12383:223::-;12523:34;12519:1;12511:6;12507:14;12500:58;12592:6;12587:2;12579:6;12575:15;12568:31;12383:223;:::o;12612:366::-;12754:3;12775:67;12839:2;12834:3;12775:67;:::i;:::-;12768:74;;12851:93;12940:3;12851:93;:::i;:::-;12969:2;12964:3;12960:12;12953:19;;12612:366;;;:::o;12984:419::-;13150:4;13188:2;13177:9;13173:18;13165:26;;13237:9;13231:4;13227:20;13223:1;13212:9;13208:17;13201:47;13265:131;13391:4;13265:131;:::i;:::-;13257:139;;12984:419;;;:::o;13409:221::-;13549:34;13545:1;13537:6;13533:14;13526:58;13618:4;13613:2;13605:6;13601:15;13594:29;13409:221;:::o;13636:366::-;13778:3;13799:67;13863:2;13858:3;13799:67;:::i;:::-;13792:74;;13875:93;13964:3;13875:93;:::i;:::-;13993:2;13988:3;13984:12;13977:19;;13636:366;;;:::o;14008:419::-;14174:4;14212:2;14201:9;14197:18;14189:26;;14261:9;14255:4;14251:20;14247:1;14236:9;14232:17;14225:47;14289:131;14415:4;14289:131;:::i;:::-;14281:139;;14008:419;;;:::o;14433:182::-;14573:34;14569:1;14561:6;14557:14;14550:58;14433:182;:::o;14621:366::-;14763:3;14784:67;14848:2;14843:3;14784:67;:::i;:::-;14777:74;;14860:93;14949:3;14860:93;:::i;:::-;14978:2;14973:3;14969:12;14962:19;;14621:366;;;:::o;14993:419::-;15159:4;15197:2;15186:9;15182:18;15174:26;;15246:9;15240:4;15236:20;15232:1;15221:9;15217:17;15210:47;15274:131;15400:4;15274:131;:::i;:::-;15266:139;;14993:419;;;:::o;15418:179::-;15558:31;15554:1;15546:6;15542:14;15535:55;15418:179;:::o;15603:366::-;15745:3;15766:67;15830:2;15825:3;15766:67;:::i;:::-;15759:74;;15842:93;15931:3;15842:93;:::i;:::-;15960:2;15955:3;15951:12;15944:19;;15603:366;;;:::o;15975:419::-;16141:4;16179:2;16168:9;16164:18;16156:26;;16228:9;16222:4;16218:20;16214:1;16203:9;16199:17;16192:47;16256:131;16382:4;16256:131;:::i;:::-;16248:139;;15975:419;;;:::o;16400:410::-;16440:7;16463:20;16481:1;16463:20;:::i;:::-;16458:25;;16497:20;16515:1;16497:20;:::i;:::-;16492:25;;16552:1;16549;16545:9;16574:30;16592:11;16574:30;:::i;:::-;16563:41;;16753:1;16744:7;16740:15;16737:1;16734:22;16714:1;16707:9;16687:83;16664:139;;16783:18;;:::i;:::-;16664:139;16448:362;16400:410;;;;:::o;16816:180::-;16864:77;16861:1;16854:88;16961:4;16958:1;16951:15;16985:4;16982:1;16975:15;17002:185;17042:1;17059:20;17077:1;17059:20;:::i;:::-;17054:25;;17093:20;17111:1;17093:20;:::i;:::-;17088:25;;17132:1;17122:35;;17137:18;;:::i;:::-;17122:35;17179:1;17176;17172:9;17167:14;;17002:185;;;;:::o;17193:194::-;17233:4;17253:20;17271:1;17253:20;:::i;:::-;17248:25;;17287:20;17305:1;17287:20;:::i;:::-;17282:25;;17331:1;17328;17324:9;17316:17;;17355:1;17349:4;17346:11;17343:37;;;17360:18;;:::i;:::-;17343:37;17193:194;;;;:::o;17393:224::-;17533:34;17529:1;17521:6;17517:14;17510:58;17602:7;17597:2;17589:6;17585:15;17578:32;17393:224;:::o;17623:366::-;17765:3;17786:67;17850:2;17845:3;17786:67;:::i;:::-;17779:74;;17862:93;17951:3;17862:93;:::i;:::-;17980:2;17975:3;17971:12;17964:19;;17623:366;;;:::o;17995:419::-;18161:4;18199:2;18188:9;18184:18;18176:26;;18248:9;18242:4;18238:20;18234:1;18223:9;18219:17;18212:47;18276:131;18402:4;18276:131;:::i;:::-;18268:139;;17995:419;;;:::o;18420:222::-;18560:34;18556:1;18548:6;18544:14;18537:58;18629:5;18624:2;18616:6;18612:15;18605:30;18420:222;:::o;18648:366::-;18790:3;18811:67;18875:2;18870:3;18811:67;:::i;:::-;18804:74;;18887:93;18976:3;18887:93;:::i;:::-;19005:2;19000:3;18996:12;18989:19;;18648:366;;;:::o;19020:419::-;19186:4;19224:2;19213:9;19209:18;19201:26;;19273:9;19267:4;19263:20;19259:1;19248:9;19244:17;19237:47;19301:131;19427:4;19301:131;:::i;:::-;19293:139;;19020:419;;;:::o;19445:225::-;19585:34;19581:1;19573:6;19569:14;19562:58;19654:8;19649:2;19641:6;19637:15;19630:33;19445:225;:::o;19676:366::-;19818:3;19839:67;19903:2;19898:3;19839:67;:::i;:::-;19832:74;;19915:93;20004:3;19915:93;:::i;:::-;20033:2;20028:3;20024:12;20017:19;;19676:366;;;:::o;20048:419::-;20214:4;20252:2;20241:9;20237:18;20229:26;;20301:9;20295:4;20291:20;20287:1;20276:9;20272:17;20265:47;20329:131;20455:4;20329:131;:::i;:::-;20321:139;;20048:419;;;:::o;20473:220::-;20613:34;20609:1;20601:6;20597:14;20590:58;20682:3;20677:2;20669:6;20665:15;20658:28;20473:220;:::o;20699:366::-;20841:3;20862:67;20926:2;20921:3;20862:67;:::i;:::-;20855:74;;20938:93;21027:3;20938:93;:::i;:::-;21056:2;21051:3;21047:12;21040:19;;20699:366;;;:::o;21071:419::-;21237:4;21275:2;21264:9;21260:18;21252:26;;21324:9;21318:4;21314:20;21310:1;21299:9;21295:17;21288:47;21352:131;21478:4;21352:131;:::i;:::-;21344:139;;21071:419;;;:::o;21496:221::-;21636:34;21632:1;21624:6;21620:14;21613:58;21705:4;21700:2;21692:6;21688:15;21681:29;21496:221;:::o;21723:366::-;21865:3;21886:67;21950:2;21945:3;21886:67;:::i;:::-;21879:74;;21962:93;22051:3;21962:93;:::i;:::-;22080:2;22075:3;22071:12;22064:19;;21723:366;;;:::o;22095:419::-;22261:4;22299:2;22288:9;22284:18;22276:26;;22348:9;22342:4;22338:20;22334:1;22323:9;22319:17;22312:47;22376:131;22502:4;22376:131;:::i;:::-;22368:139;;22095:419;;;:::o;22520:167::-;22660:19;22656:1;22648:6;22644:14;22637:43;22520:167;:::o;22693:366::-;22835:3;22856:67;22920:2;22915:3;22856:67;:::i;:::-;22849:74;;22932:93;23021:3;22932:93;:::i;:::-;23050:2;23045:3;23041:12;23034:19;;22693:366;;;:::o;23065:419::-;23231:4;23269:2;23258:9;23254:18;23246:26;;23318:9;23312:4;23308:20;23304:1;23293:9;23289:17;23282:47;23346:131;23472:4;23346:131;:::i;:::-;23338:139;;23065:419;;;:::o

Swarm Source

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