ETH Price: $3,424.97 (-2.08%)
Gas: 5 Gwei

Token

StorageChain (WSTOR)
 

Overview

Max Total Supply

32,126,634.819123231920145935 WSTOR

Holders

809 (0.00%)

Market

Price

$0.01 @ 0.000003 ETH (-21.57%)

Onchain Market Cap

$327,560.60

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.0000000000006101 WSTOR

Value
$0.00 ( ~0 Eth) [0.0000%]
0x25f28e7edca868b591213bcb9ebcd80eb29e70f4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The StorageChain technology is built on the Substrate framework, which provides a flexible and scalable foundation for blockchain development.

Market

Volume (24H):$91,671.00
Market Capitalization:$0.00
Circulating Supply:0.00 WSTOR
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StorageChain

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @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 {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @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, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @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, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @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, "Address: low-level static call failed");
    }

    /**
     * @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,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @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, "Address: low-level delegate call failed");
    }

    /**
     * @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,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @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 one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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 {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;


/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized != type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}

// File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol


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

pragma solidity ^0.8.0;


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

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _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);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    function __Pausable_init() internal onlyInitializing {
        __Pausable_init_unchained();
    }

    function __Pausable_init_unchained() internal onlyInitializing {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol


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

pragma solidity ^0.8.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[45] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;




/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable {
    function __ERC20Burnable_init() internal onlyInitializing {
    }

    function __ERC20Burnable_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

// File: contracts/WSTOR.sol


pragma solidity ^0.8.9;






contract StorageChain is Initializable, ERC20Upgradeable, ERC20BurnableUpgradeable, PausableUpgradeable, OwnableUpgradeable {
    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor() {
        initialize();
    }

    function initialize() initializer public {
        __ERC20_init("StorageChain", "WSTOR");
        __ERC20Burnable_init();
        __Pausable_init();
        __Ownable_init();
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to,    amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50620000226200002860201b60201c565b62000b02565b60008060019054906101000a900460ff161590508080156200005a5750600160008054906101000a900460ff1660ff16105b8062000096575062000077306200022160201b62000a0a1760201c565b158015620000955750600160008054906101000a900460ff1660ff16145b5b620000d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000cf906200067a565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801562000116576001600060016101000a81548160ff0219169083151502179055505b620001926040518060400160405280600c81526020017f53746f72616765436861696e00000000000000000000000000000000000000008152506040518060400160405280600581526020017f5753544f520000000000000000000000000000000000000000000000000000008152506200024460201b60201c565b620001a2620002ac60201b60201c565b620001b26200030060201b60201c565b620001c26200036460201b60201c565b80156200021e5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051620002159190620006f6565b60405180910390a15b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1662000296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028d9062000789565b60405180910390fd5b620002a88282620003c860201b60201c565b5050565b600060019054906101000a900460ff16620002fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f59062000789565b60405180910390fd5b565b600060019054906101000a900460ff1662000352576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003499062000789565b60405180910390fd5b620003626200044260201b60201c565b565b600060019054906101000a900460ff16620003b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ad9062000789565b60405180910390fd5b620003c6620004b160201b60201c565b565b600060019054906101000a900460ff166200041a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004119062000789565b60405180910390fd5b81603690816200042b919062000a1b565b5080603790816200043d919062000a1b565b505050565b600060019054906101000a900460ff1662000494576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048b9062000789565b60405180910390fd5b6000609760006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff1662000503576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004fa9062000789565b60405180910390fd5b62000523620005176200052560201b60201c565b6200052d60201b60201c565b565b600033905090565b600060c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160c960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600062000662602e83620005f3565b91506200066f8262000604565b604082019050919050565b60006020820190508181036000830152620006958162000653565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b6000620006de620006d8620006d2846200069c565b620006b3565b620006a6565b9050919050565b620006f081620006bd565b82525050565b60006020820190506200070d6000830184620006e5565b92915050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b600062000771602b83620005f3565b91506200077e8262000713565b604082019050919050565b60006020820190508181036000830152620007a48162000762565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200082d57607f821691505b602082108103620008435762000842620007e5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200086e565b620008b986836200086e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008fc620008f6620008f084620008d1565b620006b3565b620008d1565b9050919050565b6000819050919050565b6200091883620008db565b62000930620009278262000903565b8484546200087b565b825550505050565b600090565b6200094762000938565b620009548184846200090d565b505050565b5b818110156200097c57620009706000826200093d565b6001810190506200095a565b5050565b601f821115620009cb57620009958162000849565b620009a0846200085e565b81016020851015620009b0578190505b620009c8620009bf856200085e565b83018262000959565b50505b505050565b600082821c905092915050565b6000620009f060001984600802620009d0565b1980831691505092915050565b600062000a0b8383620009dd565b9150826002028217905092915050565b62000a2682620007ab565b67ffffffffffffffff81111562000a425762000a41620007b6565b5b62000a4e825462000814565b62000a5b82828562000980565b600060209050601f83116001811462000a93576000841562000a7e578287015190505b62000a8a8582620009fd565b86555062000afa565b601f19841662000aa38662000849565b60005b8281101562000acd5784890151825560018201915060208501945060208101905062000aa6565b8683101562000aed578489015162000ae9601f891682620009dd565b8355505b6001600288020188555050505b505050505050565b61271f8062000b126000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b146102f057806395d89b411461030e578063a457c2d71461032c578063a9059cbb1461035c578063dd62ed3e1461038c578063f2fde38b146103bc57610137565b806370a0823114610286578063715018a6146102b657806379cc6790146102c05780638129fc1c146102dc5780638456cb59146102e657610137565b806339509351116100ff57806339509351146101f65780633f4ba83a1461022657806340c10f191461023057806342966c681461024c5780635c975abb1461026857610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b6101446103d8565b6040516101519190611818565b60405180910390f35b610174600480360381019061016f91906118d3565b61046a565b604051610181919061192e565b60405180910390f35b61019261048d565b60405161019f9190611958565b60405180910390f35b6101c260048036038101906101bd9190611973565b610497565b6040516101cf919061192e565b60405180910390f35b6101e06104c6565b6040516101ed91906119e2565b60405180910390f35b610210600480360381019061020b91906118d3565b6104cf565b60405161021d919061192e565b60405180910390f35b61022e610506565b005b61024a600480360381019061024591906118d3565b610518565b005b610266600480360381019061026191906119fd565b61052e565b005b610270610542565b60405161027d919061192e565b60405180910390f35b6102a0600480360381019061029b9190611a2a565b610559565b6040516102ad9190611958565b60405180910390f35b6102be6105a2565b005b6102da60048036038101906102d591906118d3565b6105b6565b005b6102e46105d6565b005b6102ee610798565b005b6102f86107aa565b6040516103059190611a66565b60405180910390f35b6103166107d4565b6040516103239190611818565b60405180910390f35b610346600480360381019061034191906118d3565b610866565b604051610353919061192e565b60405180910390f35b610376600480360381019061037191906118d3565b6108dd565b604051610383919061192e565b60405180910390f35b6103a660048036038101906103a19190611a81565b610900565b6040516103b39190611958565b60405180910390f35b6103d660048036038101906103d19190611a2a565b610987565b005b6060603680546103e790611af0565b80601f016020809104026020016040519081016040528092919081815260200182805461041390611af0565b80156104605780601f1061043557610100808354040283529160200191610460565b820191906000526020600020905b81548152906001019060200180831161044357829003601f168201915b5050505050905090565b600080610475610a2d565b9050610482818585610a35565b600191505092915050565b6000603554905090565b6000806104a2610a2d565b90506104af858285610bfe565b6104ba858585610c8a565b60019150509392505050565b60006012905090565b6000806104da610a2d565b90506104fb8185856104ec8589610900565b6104f69190611b50565b610a35565b600191505092915050565b61050e610f03565b610516610f81565b565b610520610f03565b61052a8282610fe4565b5050565b61053f610539610a2d565b8261113b565b50565b6000609760009054906101000a900460ff16905090565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105aa610f03565b6105b4600061130a565b565b6105c8826105c2610a2d565b83610bfe565b6105d2828261113b565b5050565b60008060019054906101000a900460ff161590508080156106075750600160008054906101000a900460ff1660ff16105b80610634575061061630610a0a565b1580156106335750600160008054906101000a900460ff1660ff16145b5b610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a90611bf6565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156106b0576001600060016101000a81548160ff0219169083151502179055505b6107246040518060400160405280600c81526020017f53746f72616765436861696e00000000000000000000000000000000000000008152506040518060400160405280600581526020017f5753544f520000000000000000000000000000000000000000000000000000008152506113d0565b61072c61142d565b61073461147e565b61073c6114d7565b80156107955760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161078c9190611c5b565b60405180910390a15b50565b6107a0610f03565b6107a8611530565b565b600060c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060603780546107e390611af0565b80601f016020809104026020016040519081016040528092919081815260200182805461080f90611af0565b801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b5050505050905090565b600080610871610a2d565b9050600061087f8286610900565b9050838110156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90611ce8565b60405180910390fd5b6108d18286868403610a35565b60019250505092915050565b6000806108e8610a2d565b90506108f5818585610c8a565b600191505092915050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61098f610f03565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590611d7a565b60405180910390fd5b610a078161130a565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90611e0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90611e9e565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf19190611958565b60405180910390a3505050565b6000610c0a8484610900565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c845781811015610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611f0a565b60405180910390fd5b610c838484848403610a35565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090611f9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f9061202e565b60405180910390fd5b610d73838383611593565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df1906120c0565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eea9190611958565b60405180910390a3610efd8484846115ab565b50505050565b610f0b610a2d565b73ffffffffffffffffffffffffffffffffffffffff16610f296107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061212c565b60405180910390fd5b565b610f896115b0565b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610fcd610a2d565b604051610fda9190611a66565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612198565b60405180910390fd5b61105f60008383611593565b80603560008282546110719190611b50565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111239190611958565b60405180910390a3611137600083836115ab565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061222a565b60405180910390fd5b6111b682600083611593565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561123d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611234906122bc565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603560008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112f19190611958565b60405180910390a3611305836000846115ab565b505050565b600060c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160c960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff1661141f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114169061234e565b60405180910390fd5b61142982826115f9565b5050565b600060019054906101000a900460ff1661147c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114739061234e565b60405180910390fd5b565b600060019054906101000a900460ff166114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c49061234e565b60405180910390fd5b6114d561166c565b565b600060019054906101000a900460ff16611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d9061234e565b60405180910390fd5b61152e6116d8565b565b611538611739565b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861157c610a2d565b6040516115899190611a66565b60405180910390a1565b61159b611739565b6115a6838383611783565b505050565b505050565b6115b8610542565b6115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906123ba565b60405180910390fd5b565b600060019054906101000a900460ff16611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f9061234e565b60405180910390fd5b816036908161165791906125ab565b50806037908161166791906125ab565b505050565b600060019054906101000a900460ff166116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061234e565b60405180910390fd5b6000609760006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff16611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e9061234e565b60405180910390fd5b611737611732610a2d565b61130a565b565b611741610542565b15611781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611778906126c9565b60405180910390fd5b565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117c25780820151818401526020810190506117a7565b60008484015250505050565b6000601f19601f8301169050919050565b60006117ea82611788565b6117f48185611793565b93506118048185602086016117a4565b61180d816117ce565b840191505092915050565b6000602082019050818103600083015261183281846117df565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061186a8261183f565b9050919050565b61187a8161185f565b811461188557600080fd5b50565b60008135905061189781611871565b92915050565b6000819050919050565b6118b08161189d565b81146118bb57600080fd5b50565b6000813590506118cd816118a7565b92915050565b600080604083850312156118ea576118e961183a565b5b60006118f885828601611888565b9250506020611909858286016118be565b9150509250929050565b60008115159050919050565b61192881611913565b82525050565b6000602082019050611943600083018461191f565b92915050565b6119528161189d565b82525050565b600060208201905061196d6000830184611949565b92915050565b60008060006060848603121561198c5761198b61183a565b5b600061199a86828701611888565b93505060206119ab86828701611888565b92505060406119bc868287016118be565b9150509250925092565b600060ff82169050919050565b6119dc816119c6565b82525050565b60006020820190506119f760008301846119d3565b92915050565b600060208284031215611a1357611a1261183a565b5b6000611a21848285016118be565b91505092915050565b600060208284031215611a4057611a3f61183a565b5b6000611a4e84828501611888565b91505092915050565b611a608161185f565b82525050565b6000602082019050611a7b6000830184611a57565b92915050565b60008060408385031215611a9857611a9761183a565b5b6000611aa685828601611888565b9250506020611ab785828601611888565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b0857607f821691505b602082108103611b1b57611b1a611ac1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b5b8261189d565b9150611b668361189d565b9250828201905080821115611b7e57611b7d611b21565b5b92915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000611be0602e83611793565b9150611beb82611b84565b604082019050919050565b60006020820190508181036000830152611c0f81611bd3565b9050919050565b6000819050919050565b6000819050919050565b6000611c45611c40611c3b84611c16565b611c20565b6119c6565b9050919050565b611c5581611c2a565b82525050565b6000602082019050611c706000830184611c4c565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611cd2602583611793565b9150611cdd82611c76565b604082019050919050565b60006020820190508181036000830152611d0181611cc5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d64602683611793565b9150611d6f82611d08565b604082019050919050565b60006020820190508181036000830152611d9381611d57565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611df6602483611793565b9150611e0182611d9a565b604082019050919050565b60006020820190508181036000830152611e2581611de9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e88602283611793565b9150611e9382611e2c565b604082019050919050565b60006020820190508181036000830152611eb781611e7b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ef4601d83611793565b9150611eff82611ebe565b602082019050919050565b60006020820190508181036000830152611f2381611ee7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f86602583611793565b9150611f9182611f2a565b604082019050919050565b60006020820190508181036000830152611fb581611f79565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612018602383611793565b915061202382611fbc565b604082019050919050565b600060208201905081810360008301526120478161200b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120aa602683611793565b91506120b58261204e565b604082019050919050565b600060208201905081810360008301526120d98161209d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612116602083611793565b9150612121826120e0565b602082019050919050565b6000602082019050818103600083015261214581612109565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612182601f83611793565b915061218d8261214c565b602082019050919050565b600060208201905081810360008301526121b181612175565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612214602183611793565b915061221f826121b8565b604082019050919050565b6000602082019050818103600083015261224381612207565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006122a6602283611793565b91506122b18261224a565b604082019050919050565b600060208201905081810360008301526122d581612299565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000612338602b83611793565b9150612343826122dc565b604082019050919050565b600060208201905081810360008301526123678161232b565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006123a4601483611793565b91506123af8261236e565b602082019050919050565b600060208201905081810360008301526123d381612397565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261246b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261242e565b612475868361242e565b95508019841693508086168417925050509392505050565b60006124a86124a361249e8461189d565b611c20565b61189d565b9050919050565b6000819050919050565b6124c28361248d565b6124d66124ce826124af565b84845461243b565b825550505050565b600090565b6124eb6124de565b6124f68184846124b9565b505050565b5b8181101561251a5761250f6000826124e3565b6001810190506124fc565b5050565b601f82111561255f5761253081612409565b6125398461241e565b81016020851015612548578190505b61255c6125548561241e565b8301826124fb565b50505b505050565b600082821c905092915050565b600061258260001984600802612564565b1980831691505092915050565b600061259b8383612571565b9150826002028217905092915050565b6125b482611788565b67ffffffffffffffff8111156125cd576125cc6123da565b5b6125d78254611af0565b6125e282828561251e565b600060209050601f8311600181146126155760008415612603578287015190505b61260d858261258f565b865550612675565b601f19841661262386612409565b60005b8281101561264b57848901518255600182019150602085019450602081019050612626565b868310156126685784890151612664601f891682612571565b8355505b6001600288020188555050505b505050505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006126b3601083611793565b91506126be8261267d565b602082019050919050565b600060208201905081810360008301526126e2816126a6565b905091905056fea264697066735822122019c2025a7d50f9f84374a90a30cd58853028602863a716cfe221710cdded76d764736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b146102f057806395d89b411461030e578063a457c2d71461032c578063a9059cbb1461035c578063dd62ed3e1461038c578063f2fde38b146103bc57610137565b806370a0823114610286578063715018a6146102b657806379cc6790146102c05780638129fc1c146102dc5780638456cb59146102e657610137565b806339509351116100ff57806339509351146101f65780633f4ba83a1461022657806340c10f191461023057806342966c681461024c5780635c975abb1461026857610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b6101446103d8565b6040516101519190611818565b60405180910390f35b610174600480360381019061016f91906118d3565b61046a565b604051610181919061192e565b60405180910390f35b61019261048d565b60405161019f9190611958565b60405180910390f35b6101c260048036038101906101bd9190611973565b610497565b6040516101cf919061192e565b60405180910390f35b6101e06104c6565b6040516101ed91906119e2565b60405180910390f35b610210600480360381019061020b91906118d3565b6104cf565b60405161021d919061192e565b60405180910390f35b61022e610506565b005b61024a600480360381019061024591906118d3565b610518565b005b610266600480360381019061026191906119fd565b61052e565b005b610270610542565b60405161027d919061192e565b60405180910390f35b6102a0600480360381019061029b9190611a2a565b610559565b6040516102ad9190611958565b60405180910390f35b6102be6105a2565b005b6102da60048036038101906102d591906118d3565b6105b6565b005b6102e46105d6565b005b6102ee610798565b005b6102f86107aa565b6040516103059190611a66565b60405180910390f35b6103166107d4565b6040516103239190611818565b60405180910390f35b610346600480360381019061034191906118d3565b610866565b604051610353919061192e565b60405180910390f35b610376600480360381019061037191906118d3565b6108dd565b604051610383919061192e565b60405180910390f35b6103a660048036038101906103a19190611a81565b610900565b6040516103b39190611958565b60405180910390f35b6103d660048036038101906103d19190611a2a565b610987565b005b6060603680546103e790611af0565b80601f016020809104026020016040519081016040528092919081815260200182805461041390611af0565b80156104605780601f1061043557610100808354040283529160200191610460565b820191906000526020600020905b81548152906001019060200180831161044357829003601f168201915b5050505050905090565b600080610475610a2d565b9050610482818585610a35565b600191505092915050565b6000603554905090565b6000806104a2610a2d565b90506104af858285610bfe565b6104ba858585610c8a565b60019150509392505050565b60006012905090565b6000806104da610a2d565b90506104fb8185856104ec8589610900565b6104f69190611b50565b610a35565b600191505092915050565b61050e610f03565b610516610f81565b565b610520610f03565b61052a8282610fe4565b5050565b61053f610539610a2d565b8261113b565b50565b6000609760009054906101000a900460ff16905090565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105aa610f03565b6105b4600061130a565b565b6105c8826105c2610a2d565b83610bfe565b6105d2828261113b565b5050565b60008060019054906101000a900460ff161590508080156106075750600160008054906101000a900460ff1660ff16105b80610634575061061630610a0a565b1580156106335750600160008054906101000a900460ff1660ff16145b5b610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a90611bf6565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156106b0576001600060016101000a81548160ff0219169083151502179055505b6107246040518060400160405280600c81526020017f53746f72616765436861696e00000000000000000000000000000000000000008152506040518060400160405280600581526020017f5753544f520000000000000000000000000000000000000000000000000000008152506113d0565b61072c61142d565b61073461147e565b61073c6114d7565b80156107955760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161078c9190611c5b565b60405180910390a15b50565b6107a0610f03565b6107a8611530565b565b600060c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060603780546107e390611af0565b80601f016020809104026020016040519081016040528092919081815260200182805461080f90611af0565b801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b5050505050905090565b600080610871610a2d565b9050600061087f8286610900565b9050838110156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90611ce8565b60405180910390fd5b6108d18286868403610a35565b60019250505092915050565b6000806108e8610a2d565b90506108f5818585610c8a565b600191505092915050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61098f610f03565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590611d7a565b60405180910390fd5b610a078161130a565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90611e0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90611e9e565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf19190611958565b60405180910390a3505050565b6000610c0a8484610900565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c845781811015610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611f0a565b60405180910390fd5b610c838484848403610a35565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090611f9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f9061202e565b60405180910390fd5b610d73838383611593565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df1906120c0565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eea9190611958565b60405180910390a3610efd8484846115ab565b50505050565b610f0b610a2d565b73ffffffffffffffffffffffffffffffffffffffff16610f296107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061212c565b60405180910390fd5b565b610f896115b0565b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610fcd610a2d565b604051610fda9190611a66565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612198565b60405180910390fd5b61105f60008383611593565b80603560008282546110719190611b50565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111239190611958565b60405180910390a3611137600083836115ab565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061222a565b60405180910390fd5b6111b682600083611593565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561123d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611234906122bc565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603560008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112f19190611958565b60405180910390a3611305836000846115ab565b505050565b600060c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160c960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff1661141f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114169061234e565b60405180910390fd5b61142982826115f9565b5050565b600060019054906101000a900460ff1661147c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114739061234e565b60405180910390fd5b565b600060019054906101000a900460ff166114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c49061234e565b60405180910390fd5b6114d561166c565b565b600060019054906101000a900460ff16611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d9061234e565b60405180910390fd5b61152e6116d8565b565b611538611739565b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861157c610a2d565b6040516115899190611a66565b60405180910390a1565b61159b611739565b6115a6838383611783565b505050565b505050565b6115b8610542565b6115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906123ba565b60405180910390fd5b565b600060019054906101000a900460ff16611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f9061234e565b60405180910390fd5b816036908161165791906125ab565b50806037908161166791906125ab565b505050565b600060019054906101000a900460ff166116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061234e565b60405180910390fd5b6000609760006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff16611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e9061234e565b60405180910390fd5b611737611732610a2d565b61130a565b565b611741610542565b15611781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611778906126c9565b60405180910390fd5b565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117c25780820151818401526020810190506117a7565b60008484015250505050565b6000601f19601f8301169050919050565b60006117ea82611788565b6117f48185611793565b93506118048185602086016117a4565b61180d816117ce565b840191505092915050565b6000602082019050818103600083015261183281846117df565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061186a8261183f565b9050919050565b61187a8161185f565b811461188557600080fd5b50565b60008135905061189781611871565b92915050565b6000819050919050565b6118b08161189d565b81146118bb57600080fd5b50565b6000813590506118cd816118a7565b92915050565b600080604083850312156118ea576118e961183a565b5b60006118f885828601611888565b9250506020611909858286016118be565b9150509250929050565b60008115159050919050565b61192881611913565b82525050565b6000602082019050611943600083018461191f565b92915050565b6119528161189d565b82525050565b600060208201905061196d6000830184611949565b92915050565b60008060006060848603121561198c5761198b61183a565b5b600061199a86828701611888565b93505060206119ab86828701611888565b92505060406119bc868287016118be565b9150509250925092565b600060ff82169050919050565b6119dc816119c6565b82525050565b60006020820190506119f760008301846119d3565b92915050565b600060208284031215611a1357611a1261183a565b5b6000611a21848285016118be565b91505092915050565b600060208284031215611a4057611a3f61183a565b5b6000611a4e84828501611888565b91505092915050565b611a608161185f565b82525050565b6000602082019050611a7b6000830184611a57565b92915050565b60008060408385031215611a9857611a9761183a565b5b6000611aa685828601611888565b9250506020611ab785828601611888565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b0857607f821691505b602082108103611b1b57611b1a611ac1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b5b8261189d565b9150611b668361189d565b9250828201905080821115611b7e57611b7d611b21565b5b92915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000611be0602e83611793565b9150611beb82611b84565b604082019050919050565b60006020820190508181036000830152611c0f81611bd3565b9050919050565b6000819050919050565b6000819050919050565b6000611c45611c40611c3b84611c16565b611c20565b6119c6565b9050919050565b611c5581611c2a565b82525050565b6000602082019050611c706000830184611c4c565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611cd2602583611793565b9150611cdd82611c76565b604082019050919050565b60006020820190508181036000830152611d0181611cc5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d64602683611793565b9150611d6f82611d08565b604082019050919050565b60006020820190508181036000830152611d9381611d57565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611df6602483611793565b9150611e0182611d9a565b604082019050919050565b60006020820190508181036000830152611e2581611de9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e88602283611793565b9150611e9382611e2c565b604082019050919050565b60006020820190508181036000830152611eb781611e7b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ef4601d83611793565b9150611eff82611ebe565b602082019050919050565b60006020820190508181036000830152611f2381611ee7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f86602583611793565b9150611f9182611f2a565b604082019050919050565b60006020820190508181036000830152611fb581611f79565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612018602383611793565b915061202382611fbc565b604082019050919050565b600060208201905081810360008301526120478161200b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120aa602683611793565b91506120b58261204e565b604082019050919050565b600060208201905081810360008301526120d98161209d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612116602083611793565b9150612121826120e0565b602082019050919050565b6000602082019050818103600083015261214581612109565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612182601f83611793565b915061218d8261214c565b602082019050919050565b600060208201905081810360008301526121b181612175565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612214602183611793565b915061221f826121b8565b604082019050919050565b6000602082019050818103600083015261224381612207565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006122a6602283611793565b91506122b18261224a565b604082019050919050565b600060208201905081810360008301526122d581612299565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000612338602b83611793565b9150612343826122dc565b604082019050919050565b600060208201905081810360008301526123678161232b565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006123a4601483611793565b91506123af8261236e565b602082019050919050565b600060208201905081810360008301526123d381612397565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261246b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261242e565b612475868361242e565b95508019841693508086168417925050509392505050565b60006124a86124a361249e8461189d565b611c20565b61189d565b9050919050565b6000819050919050565b6124c28361248d565b6124d66124ce826124af565b84845461243b565b825550505050565b600090565b6124eb6124de565b6124f68184846124b9565b505050565b5b8181101561251a5761250f6000826124e3565b6001810190506124fc565b5050565b601f82111561255f5761253081612409565b6125398461241e565b81016020851015612548578190505b61255c6125548561241e565b8301826124fb565b50505b505050565b600082821c905092915050565b600061258260001984600802612564565b1980831691505092915050565b600061259b8383612571565b9150826002028217905092915050565b6125b482611788565b67ffffffffffffffff8111156125cd576125cc6123da565b5b6125d78254611af0565b6125e282828561251e565b600060209050601f8311600181146126155760008415612603578287015190505b61260d858261258f565b865550612675565b601f19841661262386612409565b60005b8281101561264b57848901518255600182019150602085019450602081019050612626565b868310156126685784890151612664601f891682612571565b8355505b6001600288020188555050505b505050505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006126b3601083611793565b91506126be8261267d565b602082019050919050565b600060208201905081810360008301526126e2816126a6565b905091905056fea264697066735822122019c2025a7d50f9f84374a90a30cd58853028602863a716cfe221710cdded76d764736f6c63430008120033

Deployed Bytecode Sourcemap

43424:881:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30371:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32731:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31500:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33512:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31342:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34182:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43924:65;;;:::i;:::-;;43997:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42474:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22997:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31671:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19991:103;;;:::i;:::-;;42884:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43662:185;;;:::i;:::-;;43855:61;;;:::i;:::-;;19350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30590:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34923:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32004:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32260:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30371:100;30425:13;30458:5;30451:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30371:100;:::o;32731:201::-;32814:4;32831:13;32847:12;:10;:12::i;:::-;32831:28;;32870:32;32879:5;32886:7;32895:6;32870:8;:32::i;:::-;32920:4;32913:11;;;32731:201;;;;:::o;31500:108::-;31561:7;31588:12;;31581:19;;31500:108;:::o;33512:261::-;33609:4;33626:15;33644:12;:10;:12::i;:::-;33626:30;;33667:38;33683:4;33689:7;33698:6;33667:15;:38::i;:::-;33716:27;33726:4;33732:2;33736:6;33716:9;:27::i;:::-;33761:4;33754:11;;;33512:261;;;;;:::o;31342:93::-;31400:5;31425:2;31418:9;;31342:93;:::o;34182:238::-;34270:4;34287:13;34303:12;:10;:12::i;:::-;34287:28;;34326:64;34335:5;34342:7;34379:10;34351:25;34361:5;34368:7;34351:9;:25::i;:::-;:38;;;;:::i;:::-;34326:8;:64::i;:::-;34408:4;34401:11;;;34182:238;;;;:::o;43924:65::-;19236:13;:11;:13::i;:::-;43971:10:::1;:8;:10::i;:::-;43924:65::o:0;43997:95::-;19236:13;:11;:13::i;:::-;44067:17:::1;44073:2;44077:6;44067:5;:17::i;:::-;43997:95:::0;;:::o;42474:91::-;42530:27;42536:12;:10;:12::i;:::-;42550:6;42530:5;:27::i;:::-;42474:91;:::o;22997:86::-;23044:4;23068:7;;;;;;;;;;;23061:14;;22997:86;:::o;31671:127::-;31745:7;31772:9;:18;31782:7;31772:18;;;;;;;;;;;;;;;;31765:25;;31671:127;;;:::o;19991:103::-;19236:13;:11;:13::i;:::-;20056:30:::1;20083:1;20056:18;:30::i;:::-;19991:103::o:0;42884:164::-;42961:46;42977:7;42986:12;:10;:12::i;:::-;43000:6;42961:15;:46::i;:::-;43018:22;43024:7;43033:6;43018:5;:22::i;:::-;42884:164;;:::o;43662:185::-;13066:19;13089:13;;;;;;;;;;;13088:14;13066:36;;13136:14;:34;;;;;13169:1;13154:12;;;;;;;;;;:16;;;13136:34;13135:108;;;;13177:44;13215:4;13177:29;:44::i;:::-;13176:45;:66;;;;;13241:1;13225:12;;;;;;;;;;:17;;;13176:66;13135:108;13113:204;;;;;;;;;;;;:::i;:::-;;;;;;;;;13343:1;13328:12;;:16;;;;;;;;;;;;;;;;;;13359:14;13355:67;;;13406:4;13390:13;;:20;;;;;;;;;;;;;;;;;;13355:67;43714:37:::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;::::0;:12:::1;:37::i;:::-;43762:22;:20;:22::i;:::-;43795:17;:15;:17::i;:::-;43823:16;:14;:16::i;:::-;13448:14:::0;13444:102;;;13495:5;13479:13;;:21;;;;;;;;;;;;;;;;;;13520:14;13532:1;13520:14;;;;;;:::i;:::-;;;;;;;;13444:102;13055:498;43662:185::o;43855:61::-;19236:13;:11;:13::i;:::-;43900:8:::1;:6;:8::i;:::-;43855:61::o:0;19350:87::-;19396:7;19423:6;;;;;;;;;;;19416:13;;19350:87;:::o;30590:104::-;30646:13;30679:7;30672:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30590:104;:::o;34923:436::-;35016:4;35033:13;35049:12;:10;:12::i;:::-;35033:28;;35072:24;35099:25;35109:5;35116:7;35099:9;:25::i;:::-;35072:52;;35163:15;35143:16;:35;;35135:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;35256:60;35265:5;35272:7;35300:15;35281:16;:34;35256:8;:60::i;:::-;35347:4;35340:11;;;;34923:436;;;;:::o;32004:193::-;32083:4;32100:13;32116:12;:10;:12::i;:::-;32100:28;;32139;32149:5;32156:2;32160:6;32139:9;:28::i;:::-;32185:4;32178:11;;;32004:193;;;;:::o;32260:151::-;32349:7;32376:11;:18;32388:5;32376:18;;;;;;;;;;;;;;;:27;32395:7;32376:27;;;;;;;;;;;;;;;;32369:34;;32260:151;;;;:::o;20249:201::-;19236:13;:11;:13::i;:::-;20358:1:::1;20338:22;;:8;:22;;::::0;20330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20414:28;20433:8;20414:18;:28::i;:::-;20249:201:::0;:::o;1543:326::-;1603:4;1860:1;1838:7;:19;;;:23;1831:30;;1543:326;;;:::o;17388:98::-;17441:7;17468:10;17461:17;;17388:98;:::o;38916:346::-;39035:1;39018:19;;:5;:19;;;39010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39116:1;39097:21;;:7;:21;;;39089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39200:6;39170:11;:18;39182:5;39170:18;;;;;;;;;;;;;;;:27;39189:7;39170:27;;;;;;;;;;;;;;;:36;;;;39238:7;39222:32;;39231:5;39222:32;;;39247:6;39222:32;;;;;;:::i;:::-;;;;;;;;38916:346;;;:::o;39553:419::-;39654:24;39681:25;39691:5;39698:7;39681:9;:25::i;:::-;39654:52;;39741:17;39721:16;:37;39717:248;;39803:6;39783:16;:26;;39775:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39887:51;39896:5;39903:7;39931:6;39912:16;:25;39887:8;:51::i;:::-;39717:248;39643:329;39553:419;;;:::o;35829:806::-;35942:1;35926:18;;:4;:18;;;35918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36019:1;36005:16;;:2;:16;;;35997:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36074:38;36095:4;36101:2;36105:6;36074:20;:38::i;:::-;36125:19;36147:9;:15;36157:4;36147:15;;;;;;;;;;;;;;;;36125:37;;36196:6;36181:11;:21;;36173:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;36313:6;36299:11;:20;36281:9;:15;36291:4;36281:15;;;;;;;;;;;;;;;:38;;;;36516:6;36499:9;:13;36509:2;36499:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;36566:2;36551:26;;36560:4;36551:26;;;36570:6;36551:26;;;;;;:::i;:::-;;;;;;;;36590:37;36610:4;36616:2;36620:6;36590:19;:37::i;:::-;35907:728;35829:806;;;:::o;19515:132::-;19590:12;:10;:12::i;:::-;19579:23;;:7;:5;:7::i;:::-;:23;;;19571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19515:132::o;23852:120::-;22861:16;:14;:16::i;:::-;23921:5:::1;23911:7;;:15;;;;;;;;;;;;;;;;;;23942:22;23951:12;:10;:12::i;:::-;23942:22;;;;;;:::i;:::-;;;;;;;;23852:120::o:0;36922:548::-;37025:1;37006:21;;:7;:21;;;36998:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37076:49;37105:1;37109:7;37118:6;37076:20;:49::i;:::-;37154:6;37138:12;;:22;;;;;;;:::i;:::-;;;;;;;;37331:6;37309:9;:18;37319:7;37309:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;37385:7;37364:37;;37381:1;37364:37;;;37394:6;37364:37;;;;;;:::i;:::-;;;;;;;;37414:48;37442:1;37446:7;37455:6;37414:19;:48::i;:::-;36922:548;;:::o;37803:675::-;37906:1;37887:21;;:7;:21;;;37879:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37959:49;37980:7;37997:1;38001:6;37959:20;:49::i;:::-;38021:22;38046:9;:18;38056:7;38046:18;;;;;;;;;;;;;;;;38021:43;;38101:6;38083:14;:24;;38075:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38220:6;38203:14;:23;38182:9;:18;38192:7;38182:18;;;;;;;;;;;;;;;:44;;;;38337:6;38321:12;;:22;;;;;;;;;;;38398:1;38372:37;;38381:7;38372:37;;;38402:6;38372:37;;;;;;:::i;:::-;;;;;;;;38422:48;38442:7;38459:1;38463:6;38422:19;:48::i;:::-;37868:610;37803:675;;:::o;20610:191::-;20684:16;20703:6;;;;;;;;;;;20684:25;;20729:8;20720:6;;:17;;;;;;;;;;;;;;;;;;20784:8;20753:40;;20774:8;20753:40;;;;;;;;;;;;20673:128;20610:191;:::o;29982:149::-;15209:13;;;;;;;;;;;15201:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30085:38:::1;30108:5;30115:7;30085:22;:38::i;:::-;29982:149:::0;;:::o;42210:66::-;15209:13;;;;;;;;;;;15201:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42210:66::o;22167:99::-;15209:13;;;;;;;;;;;15201:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22231:27:::1;:25;:27::i;:::-;22167:99::o:0;18893:97::-;15209:13;;;;;;;;;;;15201:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;18956:26:::1;:24;:26::i;:::-;18893:97::o:0;23593:118::-;22602:19;:17;:19::i;:::-;23663:4:::1;23653:7;;:14;;;;;;;;;;;;;;;;;;23683:20;23690:12;:10;:12::i;:::-;23683:20;;;;;;:::i;:::-;;;;;;;;23593:118::o:0;44100:202::-;22602:19;:17;:19::i;:::-;44247:47:::1;44274:4;44280:2;44287:6;44247:26;:47::i;:::-;44100:202:::0;;;:::o;41267:90::-;;;;:::o;23341:108::-;23408:8;:6;:8::i;:::-;23400:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;23341:108::o;30139:162::-;15209:13;;;;;;;;;;;15201:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30260:5:::1;30252;:13;;;;;;:::i;:::-;;30286:7;30276;:17;;;;;;:::i;:::-;;30139:162:::0;;:::o;22274:97::-;15209:13;;;;;;;;;;;15201:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22358:5:::1;22348:7;;:15;;;;;;;;;;;;;;;;;;22274:97::o:0;18998:113::-;15209:13;;;;;;;;;;;15201:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;19071:32:::1;19090:12;:10;:12::i;:::-;19071:18;:32::i;:::-;18998:113::o:0;23156:108::-;23227:8;:6;:8::i;:::-;23226:9;23218:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23156:108::o;40572:91::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:233::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:16;7454:2;7446:6;7442:15;7435:41;7250:233;:::o;7489:366::-;7631:3;7652:67;7716:2;7711:3;7652:67;:::i;:::-;7645:74;;7728:93;7817:3;7728:93;:::i;:::-;7846:2;7841:3;7837:12;7830:19;;7489:366;;;:::o;7861:419::-;8027:4;8065:2;8054:9;8050:18;8042:26;;8114:9;8108:4;8104:20;8100:1;8089:9;8085:17;8078:47;8142:131;8268:4;8142:131;:::i;:::-;8134:139;;7861:419;;;:::o;8286:85::-;8331:7;8360:5;8349:16;;8286:85;;;:::o;8377:60::-;8405:3;8426:5;8419:12;;8377:60;;;:::o;8443:154::-;8499:9;8532:59;8548:42;8557:32;8583:5;8557:32;:::i;:::-;8548:42;:::i;:::-;8532:59;:::i;:::-;8519:72;;8443:154;;;:::o;8603:143::-;8696:43;8733:5;8696:43;:::i;:::-;8691:3;8684:56;8603:143;;:::o;8752:234::-;8851:4;8889:2;8878:9;8874:18;8866:26;;8902:77;8976:1;8965:9;8961:17;8952:6;8902:77;:::i;:::-;8752:234;;;;:::o;8992:224::-;9132:34;9128:1;9120:6;9116:14;9109:58;9201:7;9196:2;9188:6;9184:15;9177:32;8992:224;:::o;9222:366::-;9364:3;9385:67;9449:2;9444:3;9385:67;:::i;:::-;9378:74;;9461:93;9550:3;9461:93;:::i;:::-;9579:2;9574:3;9570:12;9563:19;;9222:366;;;:::o;9594:419::-;9760:4;9798:2;9787:9;9783:18;9775:26;;9847:9;9841:4;9837:20;9833:1;9822:9;9818:17;9811:47;9875:131;10001:4;9875:131;:::i;:::-;9867:139;;9594:419;;;:::o;10019:225::-;10159:34;10155:1;10147:6;10143:14;10136:58;10228:8;10223:2;10215:6;10211:15;10204:33;10019:225;:::o;10250:366::-;10392:3;10413:67;10477:2;10472:3;10413:67;:::i;:::-;10406:74;;10489:93;10578:3;10489:93;:::i;:::-;10607:2;10602:3;10598:12;10591:19;;10250:366;;;:::o;10622:419::-;10788:4;10826:2;10815:9;10811:18;10803:26;;10875:9;10869:4;10865:20;10861:1;10850:9;10846:17;10839:47;10903:131;11029:4;10903:131;:::i;:::-;10895:139;;10622:419;;;:::o;11047:223::-;11187:34;11183:1;11175:6;11171:14;11164:58;11256:6;11251:2;11243:6;11239:15;11232:31;11047:223;:::o;11276:366::-;11418:3;11439:67;11503:2;11498:3;11439:67;:::i;:::-;11432:74;;11515:93;11604:3;11515:93;:::i;:::-;11633:2;11628:3;11624:12;11617:19;;11276:366;;;:::o;11648:419::-;11814:4;11852:2;11841:9;11837:18;11829:26;;11901:9;11895:4;11891:20;11887:1;11876:9;11872:17;11865:47;11929:131;12055:4;11929:131;:::i;:::-;11921:139;;11648:419;;;:::o;12073:221::-;12213:34;12209:1;12201:6;12197:14;12190:58;12282:4;12277:2;12269:6;12265:15;12258:29;12073:221;:::o;12300:366::-;12442:3;12463:67;12527:2;12522:3;12463:67;:::i;:::-;12456:74;;12539:93;12628:3;12539:93;:::i;:::-;12657:2;12652:3;12648:12;12641:19;;12300:366;;;:::o;12672:419::-;12838:4;12876:2;12865:9;12861:18;12853:26;;12925:9;12919:4;12915:20;12911:1;12900:9;12896:17;12889:47;12953:131;13079:4;12953:131;:::i;:::-;12945:139;;12672:419;;;:::o;13097:179::-;13237:31;13233:1;13225:6;13221:14;13214:55;13097:179;:::o;13282:366::-;13424:3;13445:67;13509:2;13504:3;13445:67;:::i;:::-;13438:74;;13521:93;13610:3;13521:93;:::i;:::-;13639:2;13634:3;13630:12;13623:19;;13282:366;;;:::o;13654:419::-;13820:4;13858:2;13847:9;13843:18;13835:26;;13907:9;13901:4;13897:20;13893:1;13882:9;13878:17;13871:47;13935:131;14061:4;13935:131;:::i;:::-;13927:139;;13654:419;;;:::o;14079:224::-;14219:34;14215:1;14207:6;14203:14;14196:58;14288:7;14283:2;14275:6;14271:15;14264:32;14079:224;:::o;14309:366::-;14451:3;14472:67;14536:2;14531:3;14472:67;:::i;:::-;14465:74;;14548:93;14637:3;14548:93;:::i;:::-;14666:2;14661:3;14657:12;14650:19;;14309:366;;;:::o;14681:419::-;14847:4;14885:2;14874:9;14870:18;14862:26;;14934:9;14928:4;14924:20;14920:1;14909:9;14905:17;14898:47;14962:131;15088:4;14962:131;:::i;:::-;14954:139;;14681:419;;;:::o;15106:222::-;15246:34;15242:1;15234:6;15230:14;15223:58;15315:5;15310:2;15302:6;15298:15;15291:30;15106:222;:::o;15334:366::-;15476:3;15497:67;15561:2;15556:3;15497:67;:::i;:::-;15490:74;;15573:93;15662:3;15573:93;:::i;:::-;15691:2;15686:3;15682:12;15675:19;;15334:366;;;:::o;15706:419::-;15872:4;15910:2;15899:9;15895:18;15887:26;;15959:9;15953:4;15949:20;15945:1;15934:9;15930:17;15923:47;15987:131;16113:4;15987:131;:::i;:::-;15979:139;;15706:419;;;:::o;16131:225::-;16271:34;16267:1;16259:6;16255:14;16248:58;16340:8;16335:2;16327:6;16323:15;16316:33;16131:225;:::o;16362:366::-;16504:3;16525:67;16589:2;16584:3;16525:67;:::i;:::-;16518:74;;16601:93;16690:3;16601:93;:::i;:::-;16719:2;16714:3;16710:12;16703:19;;16362:366;;;:::o;16734:419::-;16900:4;16938:2;16927:9;16923:18;16915:26;;16987:9;16981:4;16977:20;16973:1;16962:9;16958:17;16951:47;17015:131;17141:4;17015:131;:::i;:::-;17007:139;;16734:419;;;:::o;17159:182::-;17299:34;17295:1;17287:6;17283:14;17276:58;17159:182;:::o;17347:366::-;17489:3;17510:67;17574:2;17569:3;17510:67;:::i;:::-;17503:74;;17586:93;17675:3;17586:93;:::i;:::-;17704:2;17699:3;17695:12;17688:19;;17347:366;;;:::o;17719:419::-;17885:4;17923:2;17912:9;17908:18;17900:26;;17972:9;17966:4;17962:20;17958:1;17947:9;17943:17;17936:47;18000:131;18126:4;18000:131;:::i;:::-;17992:139;;17719:419;;;:::o;18144:181::-;18284:33;18280:1;18272:6;18268:14;18261:57;18144:181;:::o;18331:366::-;18473:3;18494:67;18558:2;18553:3;18494:67;:::i;:::-;18487:74;;18570:93;18659:3;18570:93;:::i;:::-;18688:2;18683:3;18679:12;18672:19;;18331:366;;;:::o;18703:419::-;18869:4;18907:2;18896:9;18892:18;18884:26;;18956:9;18950:4;18946:20;18942:1;18931:9;18927:17;18920:47;18984:131;19110:4;18984:131;:::i;:::-;18976:139;;18703:419;;;:::o;19128:220::-;19268:34;19264:1;19256:6;19252:14;19245:58;19337:3;19332:2;19324:6;19320:15;19313:28;19128:220;:::o;19354:366::-;19496:3;19517:67;19581:2;19576:3;19517:67;:::i;:::-;19510:74;;19593:93;19682:3;19593:93;:::i;:::-;19711:2;19706:3;19702:12;19695:19;;19354:366;;;:::o;19726:419::-;19892:4;19930:2;19919:9;19915:18;19907:26;;19979:9;19973:4;19969:20;19965:1;19954:9;19950:17;19943:47;20007:131;20133:4;20007:131;:::i;:::-;19999:139;;19726:419;;;:::o;20151:221::-;20291:34;20287:1;20279:6;20275:14;20268:58;20360:4;20355:2;20347:6;20343:15;20336:29;20151:221;:::o;20378:366::-;20520:3;20541:67;20605:2;20600:3;20541:67;:::i;:::-;20534:74;;20617:93;20706:3;20617:93;:::i;:::-;20735:2;20730:3;20726:12;20719:19;;20378:366;;;:::o;20750:419::-;20916:4;20954:2;20943:9;20939:18;20931:26;;21003:9;20997:4;20993:20;20989:1;20978:9;20974:17;20967:47;21031:131;21157:4;21031:131;:::i;:::-;21023:139;;20750:419;;;:::o;21175:230::-;21315:34;21311:1;21303:6;21299:14;21292:58;21384:13;21379:2;21371:6;21367:15;21360:38;21175:230;:::o;21411:366::-;21553:3;21574:67;21638:2;21633:3;21574:67;:::i;:::-;21567:74;;21650:93;21739:3;21650:93;:::i;:::-;21768:2;21763:3;21759:12;21752:19;;21411:366;;;:::o;21783:419::-;21949:4;21987:2;21976:9;21972:18;21964:26;;22036:9;22030:4;22026:20;22022:1;22011:9;22007:17;22000:47;22064:131;22190:4;22064:131;:::i;:::-;22056:139;;21783:419;;;:::o;22208:170::-;22348:22;22344:1;22336:6;22332:14;22325:46;22208:170;:::o;22384:366::-;22526:3;22547:67;22611:2;22606:3;22547:67;:::i;:::-;22540:74;;22623:93;22712:3;22623:93;:::i;:::-;22741:2;22736:3;22732:12;22725:19;;22384:366;;;:::o;22756:419::-;22922:4;22960:2;22949:9;22945:18;22937:26;;23009:9;23003:4;22999:20;22995:1;22984:9;22980:17;22973:47;23037:131;23163:4;23037:131;:::i;:::-;23029:139;;22756:419;;;:::o;23181:180::-;23229:77;23226:1;23219:88;23326:4;23323:1;23316:15;23350:4;23347:1;23340:15;23367:141;23416:4;23439:3;23431:11;;23462:3;23459:1;23452:14;23496:4;23493:1;23483:18;23475:26;;23367:141;;;:::o;23514:93::-;23551:6;23598:2;23593;23586:5;23582:14;23578:23;23568:33;;23514:93;;;:::o;23613:107::-;23657:8;23707:5;23701:4;23697:16;23676:37;;23613:107;;;;:::o;23726:393::-;23795:6;23845:1;23833:10;23829:18;23868:97;23898:66;23887:9;23868:97;:::i;:::-;23986:39;24016:8;24005:9;23986:39;:::i;:::-;23974:51;;24058:4;24054:9;24047:5;24043:21;24034:30;;24107:4;24097:8;24093:19;24086:5;24083:30;24073:40;;23802:317;;23726:393;;;;;:::o;24125:142::-;24175:9;24208:53;24226:34;24235:24;24253:5;24235:24;:::i;:::-;24226:34;:::i;:::-;24208:53;:::i;:::-;24195:66;;24125:142;;;:::o;24273:75::-;24316:3;24337:5;24330:12;;24273:75;;;:::o;24354:269::-;24464:39;24495:7;24464:39;:::i;:::-;24525:91;24574:41;24598:16;24574:41;:::i;:::-;24566:6;24559:4;24553:11;24525:91;:::i;:::-;24519:4;24512:105;24430:193;24354:269;;;:::o;24629:73::-;24674:3;24629:73;:::o;24708:189::-;24785:32;;:::i;:::-;24826:65;24884:6;24876;24870:4;24826:65;:::i;:::-;24761:136;24708:189;;:::o;24903:186::-;24963:120;24980:3;24973:5;24970:14;24963:120;;;25034:39;25071:1;25064:5;25034:39;:::i;:::-;25007:1;25000:5;24996:13;24987:22;;24963:120;;;24903:186;;:::o;25095:543::-;25196:2;25191:3;25188:11;25185:446;;;25230:38;25262:5;25230:38;:::i;:::-;25314:29;25332:10;25314:29;:::i;:::-;25304:8;25300:44;25497:2;25485:10;25482:18;25479:49;;;25518:8;25503:23;;25479:49;25541:80;25597:22;25615:3;25597:22;:::i;:::-;25587:8;25583:37;25570:11;25541:80;:::i;:::-;25200:431;;25185:446;25095:543;;;:::o;25644:117::-;25698:8;25748:5;25742:4;25738:16;25717:37;;25644:117;;;;:::o;25767:169::-;25811:6;25844:51;25892:1;25888:6;25880:5;25877:1;25873:13;25844:51;:::i;:::-;25840:56;25925:4;25919;25915:15;25905:25;;25818:118;25767:169;;;;:::o;25941:295::-;26017:4;26163:29;26188:3;26182:4;26163:29;:::i;:::-;26155:37;;26225:3;26222:1;26218:11;26212:4;26209:21;26201:29;;25941:295;;;;:::o;26241:1395::-;26358:37;26391:3;26358:37;:::i;:::-;26460:18;26452:6;26449:30;26446:56;;;26482:18;;:::i;:::-;26446:56;26526:38;26558:4;26552:11;26526:38;:::i;:::-;26611:67;26671:6;26663;26657:4;26611:67;:::i;:::-;26705:1;26729:4;26716:17;;26761:2;26753:6;26750:14;26778:1;26773:618;;;;27435:1;27452:6;27449:77;;;27501:9;27496:3;27492:19;27486:26;27477:35;;27449:77;27552:67;27612:6;27605:5;27552:67;:::i;:::-;27546:4;27539:81;27408:222;26743:887;;26773:618;26825:4;26821:9;26813:6;26809:22;26859:37;26891:4;26859:37;:::i;:::-;26918:1;26932:208;26946:7;26943:1;26940:14;26932:208;;;27025:9;27020:3;27016:19;27010:26;27002:6;26995:42;27076:1;27068:6;27064:14;27054:24;;27123:2;27112:9;27108:18;27095:31;;26969:4;26966:1;26962:12;26957:17;;26932:208;;;27168:6;27159:7;27156:19;27153:179;;;27226:9;27221:3;27217:19;27211:26;27269:48;27311:4;27303:6;27299:17;27288:9;27269:48;:::i;:::-;27261:6;27254:64;27176:156;27153:179;27378:1;27374;27366:6;27362:14;27358:22;27352:4;27345:36;26780:611;;;26743:887;;26333:1303;;;26241:1395;;:::o;27642:166::-;27782:18;27778:1;27770:6;27766:14;27759:42;27642:166;:::o;27814:366::-;27956:3;27977:67;28041:2;28036:3;27977:67;:::i;:::-;27970:74;;28053:93;28142:3;28053:93;:::i;:::-;28171:2;28166:3;28162:12;28155:19;;27814:366;;;:::o;28186:419::-;28352:4;28390:2;28379:9;28375:18;28367:26;;28439:9;28433:4;28429:20;28425:1;28414:9;28410:17;28403:47;28467:131;28593:4;28467:131;:::i;:::-;28459:139;;28186:419;;;:::o

Swarm Source

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