ETH Price: $3,414.63 (+0.97%)
Gas: 4 Gwei

Token

Mimosa (MSA)
 

Overview

Max Total Supply

1,000,000,000,000 MSA

Holders

86

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
21,144,430,118.177639833130503513 MSA

Value
$0.00
0x882e747c5c2e0366d4fd6f9f95780467c6549732
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:
Mimosa

Compiler Version
v0.8.21+commit.d9974bed

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 Mimosa is ERC20Permit, ReentrancyGuard {
    constructor() ERC20Permit("Mimosa", "MSA") {
        _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 {
    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]);
        }
    }
}

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);
    
    /**
     * @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":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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"}]

60806040525f60055f6101000a81548160ff02191690831515021790555034801562000029575f80fd5b506040518060400160405280600681526020017f4d696d6f736100000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d534100000000000000000000000000000000000000000000000000000000008152508181620000b8620000ac6200012f60201b60201c565b6200013660201b60201c565b8160069081620000c9919062000614565b508060079081620000db919062000614565b505050505060016008819055506200012933620000fd620001f760201b60201c565b600a6200010b919062000881565b64e8d4a510006200011d9190620008d1565b620001ff60201b60201c565b620009ff565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000270576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002679062000979565b60405180910390fd5b620002835f8383620003a660201b60201c565b630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508060045f828254620002d7919062000999565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003879190620009e4565b60405180910390a3620003a25f8383620003ab60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200042c57607f821691505b602082108103620004425762000441620003e7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000469565b620004b2868362000469565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004fc620004f6620004f084620004ca565b620004d3565b620004ca565b9050919050565b5f819050919050565b6200051783620004dc565b6200052f620005268262000503565b84845462000475565b825550505050565b5f90565b6200054562000537565b620005528184846200050c565b505050565b5b8181101562000579576200056d5f826200053b565b60018101905062000558565b5050565b601f821115620005c857620005928162000448565b6200059d846200045a565b81016020851015620005ad578190505b620005c5620005bc856200045a565b83018262000557565b50505b505050565b5f82821c905092915050565b5f620005ea5f1984600802620005cd565b1980831691505092915050565b5f620006048383620005d9565b9150826002028217905092915050565b6200061f82620003b0565b67ffffffffffffffff8111156200063b576200063a620003ba565b5b62000647825462000414565b620006548282856200057d565b5f60209050601f8311600181146200068a575f841562000675578287015190505b620006818582620005f7565b865550620006f0565b601f1984166200069a8662000448565b5f5b82811015620006c3578489015182556001820191506020850194506020810190506200069c565b86831015620006e35784890151620006df601f891682620005d9565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000782578086048111156200075a5762000759620006f8565b5b60018516156200076a5780820291505b80810290506200077a8562000725565b94506200073a565b94509492505050565b5f826200079c57600190506200086e565b81620007ab575f90506200086e565b8160018114620007c45760028114620007cf5762000805565b60019150506200086e565b60ff841115620007e457620007e3620006f8565b5b8360020a915084821115620007fe57620007fd620006f8565b5b506200086e565b5060208310610133831016604e8410600b84101617156200083f5782820a905083811115620008395762000838620006f8565b5b6200086e565b6200084e848484600162000731565b92509050818404811115620008685762000867620006f8565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200088d82620004ca565b91506200089a8362000875565b9250620008c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200078b565b905092915050565b5f620008dd82620004ca565b9150620008ea83620004ca565b9250828202620008fa81620004ca565b91508282048414831517620009145762000913620006f8565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000961601f836200091b565b91506200096e826200092b565b602082019050919050565b5f6020820190508181035f830152620009928162000953565b9050919050565b5f620009a582620004ca565b9150620009b283620004ca565b9250828201905080821115620009cd57620009cc620006f8565b5b92915050565b620009de81620004ca565b82525050565b5f602082019050620009f95f830184620009d3565b92915050565b611c9e8062000a0d5f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c80637111a994116100ab578063a9059cbb1161006f578063a9059cbb14610307578063beabacc814610337578063dd62ed3e14610353578063f2fde38b14610383578063f6ee6ba81461039f5761011f565b80637111a99414610275578063715018a6146102915780638da5cb5b1461029b57806395d89b41146102b9578063a457c2d7146102d75761011f565b806323b872dd116100f257806323b872dd146101ab578063313ce567146101db57806339509351146101f9578063477e19441461022957806370a08231146102455761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806320ea14e71461018f575b5f80fd5b61012b6103cf565b6040516101389190611230565b60405180910390f35b61015b600480360381019061015691906112e5565b61045f565b604051610168919061133d565b60405180910390f35b610179610481565b6040516101869190611365565b60405180910390f35b6101a960048036038101906101a491906113df565b61048a565b005b6101c560048036038101906101c0919061142a565b610533565b6040516101d2919061133d565b60405180910390f35b6101e3610561565b6040516101f09190611495565b60405180910390f35b610213600480360381019061020e91906112e5565b610569565b604051610220919061133d565b60405180910390f35b610243600480360381019061023e91906113df565b61059f565b005b61025f600480360381019061025a91906114ae565b610647565b60405161026c9190611365565b60405180910390f35b61028f600480360381019061028a919061152e565b61068d565b005b610299610782565b005b6102a3610795565b6040516102b091906115ed565b60405180910390f35b6102c16107bc565b6040516102ce9190611230565b60405180910390f35b6102f160048036038101906102ec91906112e5565b61084c565b6040516102fe919061133d565b60405180910390f35b610321600480360381019061031c91906112e5565b6108c1565b60405161032e919061133d565b60405180910390f35b610351600480360381019061034c919061142a565b6108e3565b005b61036d60048036038101906103689190611606565b61094d565b60405161037a9190611365565b60405180910390f35b61039d600480360381019061039891906114ae565b6109cf565b005b6103b960048036038101906103b491906114ae565b610a51565b6040516103c6919061133d565b60405180910390f35b6060600680546103de90611671565b80601f016020809104026020016040519081016040528092919081815260200182805461040a90611671565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b5050505050905090565b5f80610469610aa3565b9050610476818585610aaa565b600191505092915050565b5f600454905090565b610492610c6d565b5f5b8282905081101561052e57600160025f8585858181106104b7576104b66116a1565b5b90506020020160208101906104cc91906114ae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610526906116fb565b915050610494565b505050565b5f8061053d610aa3565b905061054a858285610ceb565b610555858585610d76565b60019150509392505050565b5f6012905090565b5f80610573610aa3565b9050610594818585610585858961094d565b61058f9190611742565b610aaa565b600191505092915050565b6105a7610c6d565b5f5b82829050811015610642575f60025f8585858181106105cb576105ca6116a1565b5b90506020020160208101906105e091906114ae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061063a906116fb565b9150506105a9565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f5b86869050811015610779578484828181106106ad576106ac6116a1565b5b90506020020160208101906106c291906114ae565b73ffffffffffffffffffffffffffffffffffffffff168787838181106106eb576106ea6116a1565b5b905060200201602081019061070091906114ae565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061074a576107496116a1565b5b9050602002013560405161075e9190611365565b60405180910390a38080610771906116fb565b91505061068f565b50505050505050565b61078a610c6d565b6107935f6110db565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546107cb90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546107f790611671565b80156108425780601f1061081957610100808354040283529160200191610842565b820191905f5260205f20905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b5f80610856610aa3565b90505f610863828661094d565b9050838110156108a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089f906117e5565b60405180910390fd5b6108b58286868403610aaa565b60019250505092915050565b5f806108cb610aa3565b90506108d8818585610d76565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109409190611365565b60405180910390a3505050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109d7610c6d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90611873565b60405180910390fd5b610a4e816110db565b50565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611901565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061198f565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c609190611365565b60405180910390a3505050565b610c75610aa3565b73ffffffffffffffffffffffffffffffffffffffff16610c93610795565b73ffffffffffffffffffffffffffffffffffffffff1614610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce0906119f7565b60405180910390fd5b565b5f610cf6848461094d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d705781811015610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990611a5f565b60405180910390fd5b610d6f8484848403610aaa565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611aed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990611b7b565b60405180910390fd5b610e5d83838361119c565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890611c09565b60405180910390fd5b60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f7c575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610fd7576001151560055f9054906101000a900460ff16151514610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90611c4a565b60405180910390fd5b5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110c29190611365565b60405180910390a36110d58484846111a1565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156111dd5780820151818401526020810190506111c2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611202826111a6565b61120c81856111b0565b935061121c8185602086016111c0565b611225816111e8565b840191505092915050565b5f6020820190508181035f83015261124881846111f8565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61128182611258565b9050919050565b61129181611277565b811461129b575f80fd5b50565b5f813590506112ac81611288565b92915050565b5f819050919050565b6112c4816112b2565b81146112ce575f80fd5b50565b5f813590506112df816112bb565b92915050565b5f80604083850312156112fb576112fa611250565b5b5f6113088582860161129e565b9250506020611319858286016112d1565b9150509250929050565b5f8115159050919050565b61133781611323565b82525050565b5f6020820190506113505f83018461132e565b92915050565b61135f816112b2565b82525050565b5f6020820190506113785f830184611356565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261139f5761139e61137e565b5b8235905067ffffffffffffffff8111156113bc576113bb611382565b5b6020830191508360208202830111156113d8576113d7611386565b5b9250929050565b5f80602083850312156113f5576113f4611250565b5b5f83013567ffffffffffffffff81111561141257611411611254565b5b61141e8582860161138a565b92509250509250929050565b5f805f6060848603121561144157611440611250565b5b5f61144e8682870161129e565b935050602061145f8682870161129e565b9250506040611470868287016112d1565b9150509250925092565b5f60ff82169050919050565b61148f8161147a565b82525050565b5f6020820190506114a85f830184611486565b92915050565b5f602082840312156114c3576114c2611250565b5b5f6114d08482850161129e565b91505092915050565b5f8083601f8401126114ee576114ed61137e565b5b8235905067ffffffffffffffff81111561150b5761150a611382565b5b60208301915083602082028301111561152757611526611386565b5b9250929050565b5f805f805f806060878903121561154857611547611250565b5b5f87013567ffffffffffffffff81111561156557611564611254565b5b61157189828a0161138a565b9650965050602087013567ffffffffffffffff81111561159457611593611254565b5b6115a089828a0161138a565b9450945050604087013567ffffffffffffffff8111156115c3576115c2611254565b5b6115cf89828a016114d9565b92509250509295509295509295565b6115e781611277565b82525050565b5f6020820190506116005f8301846115de565b92915050565b5f806040838503121561161c5761161b611250565b5b5f6116298582860161129e565b925050602061163a8582860161129e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061168857607f821691505b60208210810361169b5761169a611644565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611705826112b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611737576117366116ce565b5b600182019050919050565b5f61174c826112b2565b9150611757836112b2565b925082820190508082111561176f5761176e6116ce565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6117cf6025836111b0565b91506117da82611775565b604082019050919050565b5f6020820190508181035f8301526117fc816117c3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61185d6026836111b0565b915061186882611803565b604082019050919050565b5f6020820190508181035f83015261188a81611851565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6118eb6024836111b0565b91506118f682611891565b604082019050919050565b5f6020820190508181035f830152611918816118df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119796022836111b0565b91506119848261191f565b604082019050919050565b5f6020820190508181035f8301526119a68161196d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119e16020836111b0565b91506119ec826119ad565b602082019050919050565b5f6020820190508181035f830152611a0e816119d5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611a49601d836111b0565b9150611a5482611a15565b602082019050919050565b5f6020820190508181035f830152611a7681611a3d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611ad76025836111b0565b9150611ae282611a7d565b604082019050919050565b5f6020820190508181035f830152611b0481611acb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611b656023836111b0565b9150611b7082611b0b565b604082019050919050565b5f6020820190508181035f830152611b9281611b59565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611bf36026836111b0565b9150611bfe82611b99565b604082019050919050565b5f6020820190508181035f830152611c2081611be7565b9050919050565b50565b5f611c355f836111b0565b9150611c4082611c27565b5f82019050919050565b5f6020820190508181035f830152611c6181611c2a565b905091905056fea2646970667358221220cfdbacff95916d4fc3653412cb05928df3fd74d00a3aad4679165544c85f24ea64736f6c63430008150033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c80637111a994116100ab578063a9059cbb1161006f578063a9059cbb14610307578063beabacc814610337578063dd62ed3e14610353578063f2fde38b14610383578063f6ee6ba81461039f5761011f565b80637111a99414610275578063715018a6146102915780638da5cb5b1461029b57806395d89b41146102b9578063a457c2d7146102d75761011f565b806323b872dd116100f257806323b872dd146101ab578063313ce567146101db57806339509351146101f9578063477e19441461022957806370a08231146102455761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806320ea14e71461018f575b5f80fd5b61012b6103cf565b6040516101389190611230565b60405180910390f35b61015b600480360381019061015691906112e5565b61045f565b604051610168919061133d565b60405180910390f35b610179610481565b6040516101869190611365565b60405180910390f35b6101a960048036038101906101a491906113df565b61048a565b005b6101c560048036038101906101c0919061142a565b610533565b6040516101d2919061133d565b60405180910390f35b6101e3610561565b6040516101f09190611495565b60405180910390f35b610213600480360381019061020e91906112e5565b610569565b604051610220919061133d565b60405180910390f35b610243600480360381019061023e91906113df565b61059f565b005b61025f600480360381019061025a91906114ae565b610647565b60405161026c9190611365565b60405180910390f35b61028f600480360381019061028a919061152e565b61068d565b005b610299610782565b005b6102a3610795565b6040516102b091906115ed565b60405180910390f35b6102c16107bc565b6040516102ce9190611230565b60405180910390f35b6102f160048036038101906102ec91906112e5565b61084c565b6040516102fe919061133d565b60405180910390f35b610321600480360381019061031c91906112e5565b6108c1565b60405161032e919061133d565b60405180910390f35b610351600480360381019061034c919061142a565b6108e3565b005b61036d60048036038101906103689190611606565b61094d565b60405161037a9190611365565b60405180910390f35b61039d600480360381019061039891906114ae565b6109cf565b005b6103b960048036038101906103b491906114ae565b610a51565b6040516103c6919061133d565b60405180910390f35b6060600680546103de90611671565b80601f016020809104026020016040519081016040528092919081815260200182805461040a90611671565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b5050505050905090565b5f80610469610aa3565b9050610476818585610aaa565b600191505092915050565b5f600454905090565b610492610c6d565b5f5b8282905081101561052e57600160025f8585858181106104b7576104b66116a1565b5b90506020020160208101906104cc91906114ae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610526906116fb565b915050610494565b505050565b5f8061053d610aa3565b905061054a858285610ceb565b610555858585610d76565b60019150509392505050565b5f6012905090565b5f80610573610aa3565b9050610594818585610585858961094d565b61058f9190611742565b610aaa565b600191505092915050565b6105a7610c6d565b5f5b82829050811015610642575f60025f8585858181106105cb576105ca6116a1565b5b90506020020160208101906105e091906114ae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061063a906116fb565b9150506105a9565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f5b86869050811015610779578484828181106106ad576106ac6116a1565b5b90506020020160208101906106c291906114ae565b73ffffffffffffffffffffffffffffffffffffffff168787838181106106eb576106ea6116a1565b5b905060200201602081019061070091906114ae565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061074a576107496116a1565b5b9050602002013560405161075e9190611365565b60405180910390a38080610771906116fb565b91505061068f565b50505050505050565b61078a610c6d565b6107935f6110db565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546107cb90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546107f790611671565b80156108425780601f1061081957610100808354040283529160200191610842565b820191905f5260205f20905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b5f80610856610aa3565b90505f610863828661094d565b9050838110156108a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089f906117e5565b60405180910390fd5b6108b58286868403610aaa565b60019250505092915050565b5f806108cb610aa3565b90506108d8818585610d76565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109409190611365565b60405180910390a3505050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109d7610c6d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90611873565b60405180910390fd5b610a4e816110db565b50565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611901565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061198f565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c609190611365565b60405180910390a3505050565b610c75610aa3565b73ffffffffffffffffffffffffffffffffffffffff16610c93610795565b73ffffffffffffffffffffffffffffffffffffffff1614610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce0906119f7565b60405180910390fd5b565b5f610cf6848461094d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d705781811015610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990611a5f565b60405180910390fd5b610d6f8484848403610aaa565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611aed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990611b7b565b60405180910390fd5b610e5d83838361119c565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890611c09565b60405180910390fd5b60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f7c575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610fd7576001151560055f9054906101000a900460ff16151514610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90611c4a565b60405180910390fd5b5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110c29190611365565b60405180910390a36110d58484846111a1565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156111dd5780820151818401526020810190506111c2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611202826111a6565b61120c81856111b0565b935061121c8185602086016111c0565b611225816111e8565b840191505092915050565b5f6020820190508181035f83015261124881846111f8565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61128182611258565b9050919050565b61129181611277565b811461129b575f80fd5b50565b5f813590506112ac81611288565b92915050565b5f819050919050565b6112c4816112b2565b81146112ce575f80fd5b50565b5f813590506112df816112bb565b92915050565b5f80604083850312156112fb576112fa611250565b5b5f6113088582860161129e565b9250506020611319858286016112d1565b9150509250929050565b5f8115159050919050565b61133781611323565b82525050565b5f6020820190506113505f83018461132e565b92915050565b61135f816112b2565b82525050565b5f6020820190506113785f830184611356565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261139f5761139e61137e565b5b8235905067ffffffffffffffff8111156113bc576113bb611382565b5b6020830191508360208202830111156113d8576113d7611386565b5b9250929050565b5f80602083850312156113f5576113f4611250565b5b5f83013567ffffffffffffffff81111561141257611411611254565b5b61141e8582860161138a565b92509250509250929050565b5f805f6060848603121561144157611440611250565b5b5f61144e8682870161129e565b935050602061145f8682870161129e565b9250506040611470868287016112d1565b9150509250925092565b5f60ff82169050919050565b61148f8161147a565b82525050565b5f6020820190506114a85f830184611486565b92915050565b5f602082840312156114c3576114c2611250565b5b5f6114d08482850161129e565b91505092915050565b5f8083601f8401126114ee576114ed61137e565b5b8235905067ffffffffffffffff81111561150b5761150a611382565b5b60208301915083602082028301111561152757611526611386565b5b9250929050565b5f805f805f806060878903121561154857611547611250565b5b5f87013567ffffffffffffffff81111561156557611564611254565b5b61157189828a0161138a565b9650965050602087013567ffffffffffffffff81111561159457611593611254565b5b6115a089828a0161138a565b9450945050604087013567ffffffffffffffff8111156115c3576115c2611254565b5b6115cf89828a016114d9565b92509250509295509295509295565b6115e781611277565b82525050565b5f6020820190506116005f8301846115de565b92915050565b5f806040838503121561161c5761161b611250565b5b5f6116298582860161129e565b925050602061163a8582860161129e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061168857607f821691505b60208210810361169b5761169a611644565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611705826112b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611737576117366116ce565b5b600182019050919050565b5f61174c826112b2565b9150611757836112b2565b925082820190508082111561176f5761176e6116ce565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6117cf6025836111b0565b91506117da82611775565b604082019050919050565b5f6020820190508181035f8301526117fc816117c3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61185d6026836111b0565b915061186882611803565b604082019050919050565b5f6020820190508181035f83015261188a81611851565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6118eb6024836111b0565b91506118f682611891565b604082019050919050565b5f6020820190508181035f830152611918816118df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119796022836111b0565b91506119848261191f565b604082019050919050565b5f6020820190508181035f8301526119a68161196d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119e16020836111b0565b91506119ec826119ad565b602082019050919050565b5f6020820190508181035f830152611a0e816119d5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611a49601d836111b0565b9150611a5482611a15565b602082019050919050565b5f6020820190508181035f830152611a7681611a3d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611ad76025836111b0565b9150611ae282611a7d565b604082019050919050565b5f6020820190508181035f830152611b0481611acb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611b656023836111b0565b9150611b7082611b0b565b604082019050919050565b5f6020820190508181035f830152611b9281611b59565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611bf36026836111b0565b9150611bfe82611b99565b604082019050919050565b5f6020820190508181035f830152611c2081611be7565b9050919050565b50565b5f611c355f836111b0565b9150611c4082611c27565b5f82019050919050565b5f6020820190508181035f830152611c6181611c2a565b905091905056fea2646970667358221220cfdbacff95916d4fc3653412cb05928df3fd74d00a3aad4679165544c85f24ea64736f6c63430008150033

Deployed Bytecode Sourcemap

82:167:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2206:98:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4482:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3293:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13605:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5241:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3143:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5922:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13800:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3457:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14243:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2459:101:2;;;:::i;:::-;;1836:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2417:102:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6643:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3778:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14120:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4025:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2709:198:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14007: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;13605:189::-;1729:13:2;:11;:13::i;:::-;13688:9:3::1;13683:105;13707:11;;:18;;13703:1;:22;13683:105;;;13773:4;13746:8;:24;13755:11;;13767:1;13755:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13746:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;13727:3;;;;;:::i;:::-;;;;13683:105;;;;13605: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;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;13800:201::-;1729:13:2;:11;:13::i;:::-;13894:9:3::1;13889:106;13913:11;;:18;;13909:1;:22;13889:106;;;13979:5;13952:8;:24;13961:11;;13973:1;13961:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13952:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;13933:3;;;;;:::i;:::-;;;;13889:106;;;;13800:201:::0;;:::o;3457:125::-;3531:7;3557:9;:18;3567:7;3557:18;;;;;;;;;;;;;;;;3550:25;;3457:125;;;:::o;14243:229::-;14363:9;14358:108;14382:5;;:12;;14378:1;:16;14358:108;;;14439:3;;14443:1;14439:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14420:35;;14429:5;;14435:1;14429:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14420:35;;;14447:4;;14452:1;14447:7;;;;;;;:::i;:::-;;;;;;;;14420:35;;;;;;:::i;:::-;;;;;;;;14396:3;;;;;:::i;:::-;;;;14358:108;;;;14243:229;;;;;;:::o;2459:101:2:-;1729:13;:11;:13::i;:::-;2523:30:::1;2550:1;2523:18;:30::i;:::-;2459:101::o:0;1836:85::-;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;14120:117::-;14220:3;14204:26;;14213:5;14204:26;;;14225:4;14204:26;;;;;;:::i;:::-;;;;;;;;14120: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;14007:107:3:-;14065:4;14088:8;:19;14097:9;14088:19;;;;;;;;;;;;;;;;;;;;;;;;;14081:26;;14007: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;6730:568::-;6803:8;6813:6;6863:3;6856:4;6848:6;6844:17;6840:27;6830:122;;6871:79;;:::i;:::-;6830:122;6984:6;6971:20;6961:30;;7014:18;7006:6;7003:30;7000:117;;;7036:79;;:::i;:::-;7000:117;7150:4;7142:6;7138:17;7126:29;;7204:3;7196:4;7188:6;7184:17;7174:8;7170:32;7167:41;7164:128;;;7211:79;;:::i;:::-;7164:128;6730:568;;;;;:::o;7304:1309::-;7462:6;7470;7478;7486;7494;7502;7551:2;7539:9;7530:7;7526:23;7522:32;7519:119;;;7557:79;;:::i;:::-;7519:119;7705:1;7694:9;7690:17;7677:31;7735:18;7727:6;7724:30;7721:117;;;7757:79;;:::i;:::-;7721:117;7870:80;7942:7;7933:6;7922:9;7918:22;7870:80;:::i;:::-;7852:98;;;;7648:312;8027:2;8016:9;8012:18;7999:32;8058:18;8050:6;8047:30;8044:117;;;8080:79;;:::i;:::-;8044:117;8193:80;8265:7;8256:6;8245:9;8241:22;8193:80;:::i;:::-;8175:98;;;;7970:313;8350:2;8339:9;8335:18;8322:32;8381:18;8373:6;8370:30;8367:117;;;8403:79;;:::i;:::-;8367:117;8516:80;8588:7;8579:6;8568:9;8564:22;8516:80;:::i;:::-;8498:98;;;;8293:313;7304:1309;;;;;;;;:::o;8619:118::-;8706:24;8724:5;8706:24;:::i;:::-;8701:3;8694:37;8619:118;;:::o;8743:222::-;8836:4;8874:2;8863:9;8859:18;8851:26;;8887:71;8955:1;8944:9;8940:17;8931:6;8887:71;:::i;:::-;8743:222;;;;:::o;8971:474::-;9039:6;9047;9096:2;9084:9;9075:7;9071:23;9067:32;9064:119;;;9102:79;;:::i;:::-;9064:119;9222:1;9247:53;9292:7;9283:6;9272:9;9268:22;9247:53;:::i;:::-;9237:63;;9193:117;9349:2;9375:53;9420:7;9411:6;9400:9;9396:22;9375:53;:::i;:::-;9365:63;;9320:118;8971:474;;;;;:::o;9451:180::-;9499:77;9496:1;9489:88;9596:4;9593:1;9586:15;9620:4;9617:1;9610:15;9637:320;9681:6;9718:1;9712:4;9708:12;9698:22;;9765:1;9759:4;9755:12;9786:18;9776:81;;9842:4;9834:6;9830:17;9820:27;;9776:81;9904:2;9896:6;9893:14;9873:18;9870:38;9867:84;;9923:18;;:::i;:::-;9867:84;9688:269;9637:320;;;:::o;9963:180::-;10011:77;10008:1;10001:88;10108:4;10105:1;10098:15;10132:4;10129:1;10122:15;10149:180;10197:77;10194:1;10187:88;10294:4;10291:1;10284:15;10318:4;10315:1;10308:15;10335:233;10374:3;10397:24;10415:5;10397:24;:::i;:::-;10388:33;;10443:66;10436:5;10433:77;10430:103;;10513:18;;:::i;:::-;10430:103;10560:1;10553:5;10549:13;10542:20;;10335:233;;;:::o;10574:191::-;10614:3;10633:20;10651:1;10633:20;:::i;:::-;10628:25;;10667:20;10685:1;10667:20;:::i;:::-;10662:25;;10710:1;10707;10703:9;10696:16;;10731:3;10728:1;10725:10;10722:36;;;10738:18;;:::i;:::-;10722:36;10574:191;;;;:::o;10771:224::-;10911:34;10907:1;10899:6;10895:14;10888:58;10980:7;10975:2;10967:6;10963:15;10956:32;10771:224;:::o;11001:366::-;11143:3;11164:67;11228:2;11223:3;11164:67;:::i;:::-;11157:74;;11240:93;11329:3;11240:93;:::i;:::-;11358:2;11353:3;11349:12;11342:19;;11001:366;;;:::o;11373:419::-;11539:4;11577:2;11566:9;11562:18;11554:26;;11626:9;11620:4;11616:20;11612:1;11601:9;11597:17;11590:47;11654:131;11780:4;11654:131;:::i;:::-;11646:139;;11373:419;;;:::o;11798:225::-;11938:34;11934:1;11926:6;11922:14;11915:58;12007:8;12002:2;11994:6;11990:15;11983:33;11798:225;:::o;12029:366::-;12171:3;12192:67;12256:2;12251:3;12192:67;:::i;:::-;12185:74;;12268:93;12357:3;12268:93;:::i;:::-;12386:2;12381:3;12377:12;12370:19;;12029:366;;;:::o;12401:419::-;12567:4;12605:2;12594:9;12590:18;12582:26;;12654:9;12648:4;12644:20;12640:1;12629:9;12625:17;12618:47;12682:131;12808:4;12682:131;:::i;:::-;12674:139;;12401:419;;;:::o;12826:223::-;12966:34;12962:1;12954:6;12950:14;12943:58;13035:6;13030:2;13022:6;13018:15;13011:31;12826:223;:::o;13055:366::-;13197:3;13218:67;13282:2;13277:3;13218:67;:::i;:::-;13211:74;;13294:93;13383:3;13294:93;:::i;:::-;13412:2;13407:3;13403:12;13396:19;;13055:366;;;:::o;13427:419::-;13593:4;13631:2;13620:9;13616:18;13608:26;;13680:9;13674:4;13670:20;13666:1;13655:9;13651:17;13644:47;13708:131;13834:4;13708:131;:::i;:::-;13700:139;;13427:419;;;:::o;13852:221::-;13992:34;13988:1;13980:6;13976:14;13969:58;14061:4;14056:2;14048:6;14044:15;14037:29;13852:221;:::o;14079:366::-;14221:3;14242:67;14306:2;14301:3;14242:67;:::i;:::-;14235:74;;14318:93;14407:3;14318:93;:::i;:::-;14436:2;14431:3;14427:12;14420:19;;14079:366;;;:::o;14451:419::-;14617:4;14655:2;14644:9;14640:18;14632:26;;14704:9;14698:4;14694:20;14690:1;14679:9;14675:17;14668:47;14732:131;14858:4;14732:131;:::i;:::-;14724:139;;14451:419;;;:::o;14876:182::-;15016:34;15012:1;15004:6;15000:14;14993:58;14876:182;:::o;15064:366::-;15206:3;15227:67;15291:2;15286:3;15227:67;:::i;:::-;15220:74;;15303:93;15392:3;15303:93;:::i;:::-;15421:2;15416:3;15412:12;15405:19;;15064:366;;;:::o;15436:419::-;15602:4;15640:2;15629:9;15625:18;15617:26;;15689:9;15683:4;15679:20;15675:1;15664:9;15660:17;15653:47;15717:131;15843:4;15717:131;:::i;:::-;15709:139;;15436:419;;;:::o;15861:179::-;16001:31;15997:1;15989:6;15985:14;15978:55;15861:179;:::o;16046:366::-;16188:3;16209:67;16273:2;16268:3;16209:67;:::i;:::-;16202:74;;16285:93;16374:3;16285:93;:::i;:::-;16403:2;16398:3;16394:12;16387:19;;16046:366;;;:::o;16418:419::-;16584:4;16622:2;16611:9;16607:18;16599:26;;16671:9;16665:4;16661:20;16657:1;16646:9;16642:17;16635:47;16699:131;16825:4;16699:131;:::i;:::-;16691:139;;16418:419;;;:::o;16843:224::-;16983:34;16979:1;16971:6;16967:14;16960:58;17052:7;17047:2;17039:6;17035:15;17028:32;16843:224;:::o;17073:366::-;17215:3;17236:67;17300:2;17295:3;17236:67;:::i;:::-;17229:74;;17312:93;17401:3;17312:93;:::i;:::-;17430:2;17425:3;17421:12;17414:19;;17073:366;;;:::o;17445:419::-;17611:4;17649:2;17638:9;17634:18;17626:26;;17698:9;17692:4;17688:20;17684:1;17673:9;17669:17;17662:47;17726:131;17852:4;17726:131;:::i;:::-;17718:139;;17445:419;;;:::o;17870:222::-;18010:34;18006:1;17998:6;17994:14;17987:58;18079:5;18074:2;18066:6;18062:15;18055:30;17870:222;:::o;18098:366::-;18240:3;18261:67;18325:2;18320:3;18261:67;:::i;:::-;18254:74;;18337:93;18426:3;18337:93;:::i;:::-;18455:2;18450:3;18446:12;18439:19;;18098:366;;;:::o;18470:419::-;18636:4;18674:2;18663:9;18659:18;18651:26;;18723:9;18717:4;18713:20;18709:1;18698:9;18694:17;18687:47;18751:131;18877:4;18751:131;:::i;:::-;18743:139;;18470:419;;;:::o;18895:225::-;19035:34;19031:1;19023:6;19019:14;19012:58;19104:8;19099:2;19091:6;19087:15;19080:33;18895:225;:::o;19126:366::-;19268:3;19289:67;19353:2;19348:3;19289:67;:::i;:::-;19282:74;;19365:93;19454:3;19365:93;:::i;:::-;19483:2;19478:3;19474:12;19467:19;;19126:366;;;:::o;19498:419::-;19664:4;19702:2;19691:9;19687:18;19679:26;;19751:9;19745:4;19741:20;19737:1;19726:9;19722:17;19715:47;19779:131;19905:4;19779:131;:::i;:::-;19771:139;;19498:419;;;:::o;19923:114::-;;:::o;20043:364::-;20185:3;20206:66;20270:1;20265:3;20206:66;:::i;:::-;20199:73;;20281:93;20370:3;20281:93;:::i;:::-;20399:1;20394:3;20390:11;20383:18;;20043:364;;;:::o;20413:419::-;20579:4;20617:2;20606:9;20602:18;20594:26;;20666:9;20660:4;20656:20;20652:1;20641:9;20637:17;20630:47;20694:131;20820:4;20694:131;:::i;:::-;20686:139;;20413:419;;;:::o

Swarm Source

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