ETH Price: $3,517.33 (+2.46%)
Gas: 5 Gwei

Token

Mutant MoonRunners (MMOONR)
 

Overview

Max Total Supply

751 MMOONR

Holders

358

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MMOONR
0x071a8d0edcc0f67786c939e7b11d3958a8b1157d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MutantMoonRunners

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-27
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// ........................................................................................................................
// ........................................................................................................................
// ........................................................................................................................
// .......................................................   ..............................................................
// .................................................................   .........   ........................................
// ..............................................  ...............       ..................................................
// ...........................................        ..............   ....................................................
// ..............................................  .......................................  ...............................
// ..................................................(@@@@@@@@@@@@@@@@@@@@@@@@@@@@(....        ............................
// ................................................@@(         ,,,,,,,,,,/////////%@@.....  ...............................
// ................................................@@(       ,,,,,,,,,,,,,,///////%@@......................................
// ................................................@@@&&&&&&&//////////////%&&&&&&@@@......................................
// ..................................................(@@/////,,,,,,,,,,,,,,/////@@(........................................
// .....................................................@@#////*,,,,,,,,,////#@@,..........................................
// .......................................................%@@/////,,,,*////&@%.............................................
// ........................................,@@@@%...........,@@(/////////@@/...............................................
// ......................................(@@////#@@............&@@////%@@...........,@@@@%.................................
// ....................................@@%((##(((//@@(,,.........,@@@@(.........,,#@@##((#@@...............................
// ....................................@@%(#@@#((////%@@........................@@%(#@@#(#@@...............................
// ....................................@@%(#@@@@&((//#&&**,................,*/&&(/(#%@@#(#@@...............................
// ....................................@@%(#@@@@@%%/////@@(****************%&%((((&@@@@#(#@@...............................
// ....................................@@%(#@@@@@@@(((//%%%%%&&&&&%%&&&&&%%(/(##%%&@@&&%%%##...............................
// ....................................@@%(#@@@@@@@((//////////(((////(((((///((@@@@@((@@%.................................
// ....................................@@&##%%@@@@@//////////**(((((***//(((((((##%%%((@@%.................................
// ....................................@@%//((@@&##(((/////////***(((((((*******(((((((@@%.................................
// ....................................@@%((**///*******((////////****/((((/////****/@@**,.................................
// .................................*@@/****((((((((((((@@@@@@@(///////****&@@@@#((((@@,...................................
// .................................*@@((((/*******((%@@  %@@##@@&///////@@%#%@@@@%((//@@%.................................
// ...............................%@&((*****/////((@@(    %@@  &@@///////((. *@@. (@@//@@%.................................
// ...............................%@&**//////////((       %@@((@@@((//(((//((%@@.    //@@%.................................
// ...............................%@&////////////((((,    /((//@@@(((((((/////((     ////#@@...............................
// .............................@@#/////////((*,,,,((((((((((((((((((((((,,*//(((((((((//#@@...............................
// .............................@@#//////(((,,,,,,,,,/(((((((((,,,,,,,,,,,,,,*//((((((((((//@@#............................
// .............................@@%((((((/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,//((((((((((@@#............................
// .............................@@(******/((((*,,,,(((((,,,,,,,,,,,,@@@@@@@@@@@@,,*//((/////@@#............................
// ...............................%@&//((/,,,,,,,,,(((((,,,,,,,,,,,,%&@@@@@@@@&&,,*//(((((((@@#............................
// ...............................%@&****///((*,,,,,,,,,(((((,,,,,,,,,(&&@@&&#,,,,*//((//#@@...............................
// ...............................%@&((((/**,,,,,,,,,,,,,,/((((((((((((((&&#(/,,%&#((((((#@@...............................
// .............................@@#////((((((((((((,,,,,,,,,,&&&&&&&&&&&&&&&&&&&#((((((@@%.................................
// .............................@@#////(((((**//*,,,,,,,,,,,,,,,,*&&/*/((**#&#,,(((((//@@%.................................
// .............................@@%((//(((((**///**(((((((*,,,,,,*&&/*/((**#&%(((((((((@@%.................................
// ..........................(@@(((((//(((((**///(((((((,,,,,,,,,*%%///////#&%(((((////((#@@...............................
// ..........................(@@///////(((((**///**((/(((((((,,,,,,,%&&&&&&#((((/////((((#@@...............................
// ..........................(@@/////((((/**/////**/////,,,,,,,,,,,,,,,,,,,,,*((((((((((((//@@#............................
// ........................**#&&/////((((/**//***((((/////*,,**,,,,,,,,,,,,,**(((((((((/////&&#**..........................
// ........................@@%(((((((//**///**////////////***//,,,,,,,,,,,,/(((((((((//((///**#@@..........................
// ........................@@%/////////////*///(//////((**,,,,,,,,,,,,,,,,,**/(((((((//(((**//(%%##*.......................
// ........................@@%/////////**//////////(((//*****//,,,,,,,,,,,,//((((////((////////**@@/.......................

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @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
     * ====
     *
     * [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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract MutantMoonRunners is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          totalFree         = 1000;
  uint public          maxSupply         = 5555;
  uint256 public       maxFreePerWallet  = 2;
  uint public          maxPerTx          = 20;
  uint public          price             = 0.005 ether;
  bool public          mintEnabled;
  mapping(address => uint256) private _mintedFreeAmount;

  constructor() ERC721A("Mutant MoonRunners", "MMOONR"){
  }

  function mint(uint256 amount) external payable
  {
    uint cost = price;
    
    bool isFree = ((totalSupply() + amount < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + amount <= maxFreePerWallet));

    if(isFree) {
      cost = 0;
    }
    require(mintEnabled, "Minting is not live yet");
    require(totalSupply() + amount < maxSupply + 1,"No more supply");
    require(msg.value == amount * cost,"Please send the exact amount");
    require(amount < maxPerTx + 1, "Max per TX reached");
    
    if (isFree) {
            _mintedFreeAmount[msg.sender] += amount;
        }

    _safeMint(msg.sender, amount);
  }

  function ownerBatchMint(uint256 amount) external onlyOwner
  {
    require(totalSupply() + amount < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amount);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setPrice(uint256 price_) external onlyOwner {
      price = price_;
  }

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e8600a556115b3600b556002600c556014600d556611c37937e08000600e553480156200003257600080fd5b506040518060400160405280601281526020017f4d7574616e74204d6f6f6e52756e6e65727300000000000000000000000000008152506040518060400160405280600681526020017f4d4d4f4f4e5200000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620001cf565b508060029080519060200190620000d0929190620001cf565b505050620000f3620000e76200010160201b60201c565b6200010960201b60201c565b6001600881905550620002e4565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001dd906200027f565b90600052602060002090601f0160209004810192826200020157600085556200024d565b82601f106200021c57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024c5782518255916020019190600101906200022f565b5b5090506200025c919062000260565b5090565b5b808211156200027b57600081600090555060010162000261565b5090565b600060028204905060018216806200029857607f821691505b60208210811415620002af57620002ae620002b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61478580620002f46000396000f3fe6080604052600436106102045760003560e01c80637d55094d11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610732578063dc33e6811461075d578063e985e9c51461079a578063f2fde38b146107d7578063f968adbe1461080057610204565b8063b88d4fde14610678578063c6f6f216146106a1578063c87b56dd146106ca578063d12397301461070757610204565b806395d89b41116100e757806395d89b41146105b2578063a035b1fe146105dd578063a0712d6814610608578063a22cb46514610624578063a70273571461064d57610204565b80637d55094d1461051e5780638da5cb5b146105355780638db89f071461056057806391b7f5ed1461058957610204565b80633ccfd60b1161019b578063563aaf111161016a578063563aaf11146104395780636352211e146104625780636c0360eb1461049f57806370a08231146104ca578063715018a61461050757610204565b80633ccfd60b1461039357806342842e0e146103aa5780634f6ccce7146103d357806355f804b31461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b578063333e44e61461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131bb565b61082b565b60405161023d91906137d3565b60405180910390f35b34801561025257600080fd5b5061025b610975565b60405161026891906137ee565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613262565b610a07565b6040516102a5919061376c565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061317b565b610a8c565b005b3480156102e357600080fd5b506102ec610ba5565b6040516102f99190613b70565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613065565b610bae565b005b34801561033757600080fd5b50610352600480360381019061034d919061317b565b610bbe565b60405161035f9190613b70565b60405180910390f35b34801561037457600080fd5b5061037d610db0565b60405161038a9190613b70565b60405180910390f35b34801561039f57600080fd5b506103a8610db6565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613065565b610f37565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613262565b610f57565b6040516104079190613b70565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613215565b610faa565b005b34801561044557600080fd5b50610460600480360381019061045b9190613262565b61103c565b005b34801561046e57600080fd5b5061048960048036038101906104849190613262565b6110c2565b604051610496919061376c565b60405180910390f35b3480156104ab57600080fd5b506104b46110d8565b6040516104c191906137ee565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612ff8565b611166565b6040516104fe9190613b70565b60405180910390f35b34801561051357600080fd5b5061051c61124f565b005b34801561052a57600080fd5b506105336112d7565b005b34801561054157600080fd5b5061054a61137f565b604051610557919061376c565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190613262565b6113a9565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613262565b611494565b005b3480156105be57600080fd5b506105c761151a565b6040516105d491906137ee565b60405180910390f35b3480156105e957600080fd5b506105f26115ac565b6040516105ff9190613b70565b60405180910390f35b610622600480360381019061061d9190613262565b6115b2565b005b34801561063057600080fd5b5061064b6004803603810190610646919061313b565b6117fd565b005b34801561065957600080fd5b5061066261197e565b60405161066f9190613b70565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906130b8565b611984565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190613262565b6119e0565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613262565b611a66565b6040516106fe91906137ee565b60405180910390f35b34801561071357600080fd5b5061071c611b0e565b60405161072991906137d3565b60405180910390f35b34801561073e57600080fd5b50610747611b21565b6040516107549190613b70565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612ff8565b611b27565b6040516107919190613b70565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613025565b611b39565b6040516107ce91906137d3565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612ff8565b611bcd565b005b34801561080c57600080fd5b50610815611cc5565b6040516108229190613b70565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611ccb565b5b9050919050565b60606001805461098490613dfa565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613dfa565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a1282611d35565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613b50565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a97826110c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613a10565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27611d42565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50611d42565b611b39565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613910565b60405180910390fd5b610ba0838383611d4a565b505050565b60008054905090565b610bb9838383611dfc565b505050565b6000610bc983611166565b8210610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613810565b60405180910390fd5b6000610c14610ba5565b905060008060005b83811015610d6e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d605786841415610d57578195505050505050610daa565b83806001019450505b508080600101915050610c1c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613af0565b60405180910390fd5b92915050565b600a5481565b610dbe611d42565b73ffffffffffffffffffffffffffffffffffffffff16610ddc61137f565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990613970565b60405180910390fd5b60026008541415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613b10565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ea690613757565b60006040518083038185875af1925050503d8060008114610ee3576040519150601f19603f3d011682016040523d82523d6000602084013e610ee8565b606091505b5050905080610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390613a30565b60405180910390fd5b506001600881905550565b610f5283838360405180602001604052806000815250611984565b505050565b6000610f61610ba5565b8210610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613890565b60405180910390fd5b819050919050565b610fb2611d42565b73ffffffffffffffffffffffffffffffffffffffff16610fd061137f565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613970565b60405180910390fd5b818160099190611037929190612dec565b505050565b611044611d42565b73ffffffffffffffffffffffffffffffffffffffff1661106261137f565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90613970565b60405180910390fd5b80600a8190555050565b60006110cd8261233c565b600001519050919050565b600980546110e590613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461111190613dfa565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613930565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611257611d42565b73ffffffffffffffffffffffffffffffffffffffff1661127561137f565b73ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613970565b60405180910390fd5b6112d560006124d6565b565b6112df611d42565b73ffffffffffffffffffffffffffffffffffffffff166112fd61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613970565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b1611d42565b73ffffffffffffffffffffffffffffffffffffffff166113cf61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613970565b60405180910390fd5b6001600b546114349190613c2f565b8161143d610ba5565b6114479190613c2f565b10611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906138f0565b60405180910390fd5b611491338261259c565b50565b61149c611d42565b73ffffffffffffffffffffffffffffffffffffffff166114ba61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613970565b60405180910390fd5b80600e8190555050565b60606002805461152990613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613dfa565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b600e5481565b6000600e54905060006001600a546115ca9190613c2f565b836115d3610ba5565b6115dd9190613c2f565b1080156116365750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116339190613c2f565b11155b9050801561164357600091505b600f60009054906101000a900460ff16611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613830565b60405180910390fd5b6001600b546116a19190613c2f565b836116aa610ba5565b6116b49190613c2f565b106116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613ad0565b60405180910390fd5b81836117009190613cb6565b3414611741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611738906139f0565b60405180910390fd5b6001600d546117509190613c2f565b8310611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613a70565b60405180910390fd5b80156117ee5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e69190613c2f565b925050819055505b6117f8338461259c565b505050565b611805611d42565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906139b0565b60405180910390fd5b8060066000611880611d42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661192d611d42565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197291906137d3565b60405180910390a35050565b600c5481565b61198f848484611dfc565b61199b848484846125ba565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613a50565b60405180910390fd5b50505050565b6119e8611d42565b73ffffffffffffffffffffffffffffffffffffffff16611a0661137f565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390613970565b60405180910390fd5b80600d8190555050565b6060611a7182611d35565b611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613990565b60405180910390fd5b6000611aba612751565b9050600081511415611adb5760405180602001604052806000815250611b06565b80611ae5846127e3565b604051602001611af6929190613733565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600b5481565b6000611b3282612944565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bd5611d42565b73ffffffffffffffffffffffffffffffffffffffff16611bf361137f565b73ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613970565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613850565b60405180910390fd5b611cc2816124d6565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e078261233c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e2e611d42565b73ffffffffffffffffffffffffffffffffffffffff161480611e8a5750611e53611d42565b73ffffffffffffffffffffffffffffffffffffffff16611e7284610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea65750611ea58260000151611ea0611d42565b611b39565b5b905080611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906139d0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613950565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc1906138b0565b60405180910390fd5b611fd78585856001612a2d565b611fe76000848460000151611d4a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122cc5761222b81611d35565b156122cb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123358585856001612a33565b5050505050565b612344612e72565b61234d82611d35565b61238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613870565b60405180910390fd5b60008290505b60008110612495576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124865780925050506124d1565b50808060019003915050612392565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890613b30565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125b6828260405180602001604052806000815250612a39565b5050565b60006125db8473ffffffffffffffffffffffffffffffffffffffff16612a4b565b15612744578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612604611d42565b8786866040518563ffffffff1660e01b81526004016126269493929190613787565b602060405180830381600087803b15801561264057600080fd5b505af192505050801561267157506040513d601f19601f8201168201806040525081019061266e91906131e8565b60015b6126f4573d80600081146126a1576040519150601f19603f3d011682016040523d82523d6000602084013e6126a6565b606091505b506000815114156126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390613a50565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612749565b600190505b949350505050565b60606009805461276090613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461278c90613dfa565b80156127d95780601f106127ae576101008083540402835291602001916127d9565b820191906000526020600020905b8154815290600101906020018083116127bc57829003601f168201915b5050505050905090565b6060600082141561282b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293f565b600082905060005b6000821461285d57808061284690613e5d565b915050600a826128569190613c85565b9150612833565b60008167ffffffffffffffff81111561287957612878613f93565b5b6040519080825280601f01601f1916602001820160405280156128ab5781602001600182028036833780820191505090505b5090505b60008514612938576001826128c49190613d10565b9150600a856128d39190613ea6565b60306128df9190613c2f565b60f81b8183815181106128f5576128f4613f64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129319190613c85565b94506128af565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac906138d0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612a468383836001612a6e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90613a90565b60405180910390fd5b6000841415612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f90613ab0565b60405180910390fd5b612b356000868387612a2d565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612dcf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612dba57612d7a60008884886125ba565b612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db090613a50565b60405180910390fd5b5b81806001019250508080600101915050612d03565b508060008190555050612de56000868387612a33565b5050505050565b828054612df890613dfa565b90600052602060002090601f016020900481019282612e1a5760008555612e61565b82601f10612e3357803560ff1916838001178555612e61565b82800160010185558215612e61579182015b82811115612e60578235825591602001919060010190612e45565b5b509050612e6e9190612eac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ec5576000816000905550600101612ead565b5090565b6000612edc612ed784613bb0565b613b8b565b905082815260208101848484011115612ef857612ef7613fd1565b5b612f03848285613db8565b509392505050565b600081359050612f1a816146f3565b92915050565b600081359050612f2f8161470a565b92915050565b600081359050612f4481614721565b92915050565b600081519050612f5981614721565b92915050565b600082601f830112612f7457612f73613fc7565b5b8135612f84848260208601612ec9565b91505092915050565b60008083601f840112612fa357612fa2613fc7565b5b8235905067ffffffffffffffff811115612fc057612fbf613fc2565b5b602083019150836001820283011115612fdc57612fdb613fcc565b5b9250929050565b600081359050612ff281614738565b92915050565b60006020828403121561300e5761300d613fdb565b5b600061301c84828501612f0b565b91505092915050565b6000806040838503121561303c5761303b613fdb565b5b600061304a85828601612f0b565b925050602061305b85828601612f0b565b9150509250929050565b60008060006060848603121561307e5761307d613fdb565b5b600061308c86828701612f0b565b935050602061309d86828701612f0b565b92505060406130ae86828701612fe3565b9150509250925092565b600080600080608085870312156130d2576130d1613fdb565b5b60006130e087828801612f0b565b94505060206130f187828801612f0b565b935050604061310287828801612fe3565b925050606085013567ffffffffffffffff81111561312357613122613fd6565b5b61312f87828801612f5f565b91505092959194509250565b6000806040838503121561315257613151613fdb565b5b600061316085828601612f0b565b925050602061317185828601612f20565b9150509250929050565b6000806040838503121561319257613191613fdb565b5b60006131a085828601612f0b565b92505060206131b185828601612fe3565b9150509250929050565b6000602082840312156131d1576131d0613fdb565b5b60006131df84828501612f35565b91505092915050565b6000602082840312156131fe576131fd613fdb565b5b600061320c84828501612f4a565b91505092915050565b6000806020838503121561322c5761322b613fdb565b5b600083013567ffffffffffffffff81111561324a57613249613fd6565b5b61325685828601612f8d565b92509250509250929050565b60006020828403121561327857613277613fdb565b5b600061328684828501612fe3565b91505092915050565b61329881613d44565b82525050565b6132a781613d56565b82525050565b60006132b882613be1565b6132c28185613bf7565b93506132d2818560208601613dc7565b6132db81613fe0565b840191505092915050565b60006132f182613bec565b6132fb8185613c13565b935061330b818560208601613dc7565b61331481613fe0565b840191505092915050565b600061332a82613bec565b6133348185613c24565b9350613344818560208601613dc7565b80840191505092915050565b600061335d602283613c13565b915061336882613ff1565b604082019050919050565b6000613380601783613c13565b915061338b82614040565b602082019050919050565b60006133a3602683613c13565b91506133ae82614069565b604082019050919050565b60006133c6602a83613c13565b91506133d1826140b8565b604082019050919050565b60006133e9602383613c13565b91506133f482614107565b604082019050919050565b600061340c602583613c13565b915061341782614156565b604082019050919050565b600061342f603183613c13565b915061343a826141a5565b604082019050919050565b6000613452600983613c13565b915061345d826141f4565b602082019050919050565b6000613475603983613c13565b91506134808261421d565b604082019050919050565b6000613498602b83613c13565b91506134a38261426c565b604082019050919050565b60006134bb602683613c13565b91506134c6826142bb565b604082019050919050565b60006134de602083613c13565b91506134e98261430a565b602082019050919050565b6000613501602f83613c13565b915061350c82614333565b604082019050919050565b6000613524601a83613c13565b915061352f82614382565b602082019050919050565b6000613547603283613c13565b9150613552826143ab565b604082019050919050565b600061356a601c83613c13565b9150613575826143fa565b602082019050919050565b600061358d602283613c13565b915061359882614423565b604082019050919050565b60006135b0600083613c08565b91506135bb82614472565b600082019050919050565b60006135d3601083613c13565b91506135de82614475565b602082019050919050565b60006135f6603383613c13565b91506136018261449e565b604082019050919050565b6000613619601283613c13565b9150613624826144ed565b602082019050919050565b600061363c602183613c13565b915061364782614516565b604082019050919050565b600061365f602883613c13565b915061366a82614565565b604082019050919050565b6000613682600e83613c13565b915061368d826145b4565b602082019050919050565b60006136a5602e83613c13565b91506136b0826145dd565b604082019050919050565b60006136c8601f83613c13565b91506136d38261462c565b602082019050919050565b60006136eb602f83613c13565b91506136f682614655565b604082019050919050565b600061370e602d83613c13565b9150613719826146a4565b604082019050919050565b61372d81613dae565b82525050565b600061373f828561331f565b915061374b828461331f565b91508190509392505050565b6000613762826135a3565b9150819050919050565b6000602082019050613781600083018461328f565b92915050565b600060808201905061379c600083018761328f565b6137a9602083018661328f565b6137b66040830185613724565b81810360608301526137c881846132ad565b905095945050505050565b60006020820190506137e8600083018461329e565b92915050565b6000602082019050818103600083015261380881846132e6565b905092915050565b6000602082019050818103600083015261382981613350565b9050919050565b6000602082019050818103600083015261384981613373565b9050919050565b6000602082019050818103600083015261386981613396565b9050919050565b60006020820190508181036000830152613889816133b9565b9050919050565b600060208201905081810360008301526138a9816133dc565b9050919050565b600060208201905081810360008301526138c9816133ff565b9050919050565b600060208201905081810360008301526138e981613422565b9050919050565b6000602082019050818103600083015261390981613445565b9050919050565b6000602082019050818103600083015261392981613468565b9050919050565b600060208201905081810360008301526139498161348b565b9050919050565b60006020820190508181036000830152613969816134ae565b9050919050565b60006020820190508181036000830152613989816134d1565b9050919050565b600060208201905081810360008301526139a9816134f4565b9050919050565b600060208201905081810360008301526139c981613517565b9050919050565b600060208201905081810360008301526139e98161353a565b9050919050565b60006020820190508181036000830152613a098161355d565b9050919050565b60006020820190508181036000830152613a2981613580565b9050919050565b60006020820190508181036000830152613a49816135c6565b9050919050565b60006020820190508181036000830152613a69816135e9565b9050919050565b60006020820190508181036000830152613a898161360c565b9050919050565b60006020820190508181036000830152613aa98161362f565b9050919050565b60006020820190508181036000830152613ac981613652565b9050919050565b60006020820190508181036000830152613ae981613675565b9050919050565b60006020820190508181036000830152613b0981613698565b9050919050565b60006020820190508181036000830152613b29816136bb565b9050919050565b60006020820190508181036000830152613b49816136de565b9050919050565b60006020820190508181036000830152613b6981613701565b9050919050565b6000602082019050613b856000830184613724565b92915050565b6000613b95613ba6565b9050613ba18282613e2c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bcb57613bca613f93565b5b613bd482613fe0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3a82613dae565b9150613c4583613dae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7a57613c79613ed7565b5b828201905092915050565b6000613c9082613dae565b9150613c9b83613dae565b925082613cab57613caa613f06565b5b828204905092915050565b6000613cc182613dae565b9150613ccc83613dae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0557613d04613ed7565b5b828202905092915050565b6000613d1b82613dae565b9150613d2683613dae565b925082821015613d3957613d38613ed7565b5b828203905092915050565b6000613d4f82613d8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613de5578082015181840152602081019050613dca565b83811115613df4576000848401525b50505050565b60006002820490506001821680613e1257607f821691505b60208210811415613e2657613e25613f35565b5b50919050565b613e3582613fe0565b810181811067ffffffffffffffff82111715613e5457613e53613f93565b5b80604052505050565b6000613e6882613dae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9b57613e9a613ed7565b5b600182019050919050565b6000613eb182613dae565b9150613ebc83613dae565b925082613ecc57613ecb613f06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520737570706c79000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6146fc81613d44565b811461470757600080fd5b50565b61471381613d56565b811461471e57600080fd5b50565b61472a81613d62565b811461473557600080fd5b50565b61474181613dae565b811461474c57600080fd5b5056fea2646970667358221220e09130a9d66974f1baf8b40b29e55dc7eed1575379d72b21816dad50018bf66264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637d55094d11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610732578063dc33e6811461075d578063e985e9c51461079a578063f2fde38b146107d7578063f968adbe1461080057610204565b8063b88d4fde14610678578063c6f6f216146106a1578063c87b56dd146106ca578063d12397301461070757610204565b806395d89b41116100e757806395d89b41146105b2578063a035b1fe146105dd578063a0712d6814610608578063a22cb46514610624578063a70273571461064d57610204565b80637d55094d1461051e5780638da5cb5b146105355780638db89f071461056057806391b7f5ed1461058957610204565b80633ccfd60b1161019b578063563aaf111161016a578063563aaf11146104395780636352211e146104625780636c0360eb1461049f57806370a08231146104ca578063715018a61461050757610204565b80633ccfd60b1461039357806342842e0e146103aa5780634f6ccce7146103d357806355f804b31461041057610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b578063333e44e61461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131bb565b61082b565b60405161023d91906137d3565b60405180910390f35b34801561025257600080fd5b5061025b610975565b60405161026891906137ee565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613262565b610a07565b6040516102a5919061376c565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061317b565b610a8c565b005b3480156102e357600080fd5b506102ec610ba5565b6040516102f99190613b70565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613065565b610bae565b005b34801561033757600080fd5b50610352600480360381019061034d919061317b565b610bbe565b60405161035f9190613b70565b60405180910390f35b34801561037457600080fd5b5061037d610db0565b60405161038a9190613b70565b60405180910390f35b34801561039f57600080fd5b506103a8610db6565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613065565b610f37565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613262565b610f57565b6040516104079190613b70565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613215565b610faa565b005b34801561044557600080fd5b50610460600480360381019061045b9190613262565b61103c565b005b34801561046e57600080fd5b5061048960048036038101906104849190613262565b6110c2565b604051610496919061376c565b60405180910390f35b3480156104ab57600080fd5b506104b46110d8565b6040516104c191906137ee565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612ff8565b611166565b6040516104fe9190613b70565b60405180910390f35b34801561051357600080fd5b5061051c61124f565b005b34801561052a57600080fd5b506105336112d7565b005b34801561054157600080fd5b5061054a61137f565b604051610557919061376c565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190613262565b6113a9565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613262565b611494565b005b3480156105be57600080fd5b506105c761151a565b6040516105d491906137ee565b60405180910390f35b3480156105e957600080fd5b506105f26115ac565b6040516105ff9190613b70565b60405180910390f35b610622600480360381019061061d9190613262565b6115b2565b005b34801561063057600080fd5b5061064b6004803603810190610646919061313b565b6117fd565b005b34801561065957600080fd5b5061066261197e565b60405161066f9190613b70565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906130b8565b611984565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190613262565b6119e0565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613262565b611a66565b6040516106fe91906137ee565b60405180910390f35b34801561071357600080fd5b5061071c611b0e565b60405161072991906137d3565b60405180910390f35b34801561073e57600080fd5b50610747611b21565b6040516107549190613b70565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612ff8565b611b27565b6040516107919190613b70565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613025565b611b39565b6040516107ce91906137d3565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612ff8565b611bcd565b005b34801561080c57600080fd5b50610815611cc5565b6040516108229190613b70565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611ccb565b5b9050919050565b60606001805461098490613dfa565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613dfa565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a1282611d35565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613b50565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a97826110c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613a10565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b27611d42565b73ffffffffffffffffffffffffffffffffffffffff161480610b565750610b5581610b50611d42565b611b39565b5b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613910565b60405180910390fd5b610ba0838383611d4a565b505050565b60008054905090565b610bb9838383611dfc565b505050565b6000610bc983611166565b8210610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613810565b60405180910390fd5b6000610c14610ba5565b905060008060005b83811015610d6e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d605786841415610d57578195505050505050610daa565b83806001019450505b508080600101915050610c1c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613af0565b60405180910390fd5b92915050565b600a5481565b610dbe611d42565b73ffffffffffffffffffffffffffffffffffffffff16610ddc61137f565b73ffffffffffffffffffffffffffffffffffffffff1614610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2990613970565b60405180910390fd5b60026008541415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613b10565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ea690613757565b60006040518083038185875af1925050503d8060008114610ee3576040519150601f19603f3d011682016040523d82523d6000602084013e610ee8565b606091505b5050905080610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390613a30565b60405180910390fd5b506001600881905550565b610f5283838360405180602001604052806000815250611984565b505050565b6000610f61610ba5565b8210610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613890565b60405180910390fd5b819050919050565b610fb2611d42565b73ffffffffffffffffffffffffffffffffffffffff16610fd061137f565b73ffffffffffffffffffffffffffffffffffffffff1614611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90613970565b60405180910390fd5b818160099190611037929190612dec565b505050565b611044611d42565b73ffffffffffffffffffffffffffffffffffffffff1661106261137f565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90613970565b60405180910390fd5b80600a8190555050565b60006110cd8261233c565b600001519050919050565b600980546110e590613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461111190613dfa565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613930565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611257611d42565b73ffffffffffffffffffffffffffffffffffffffff1661127561137f565b73ffffffffffffffffffffffffffffffffffffffff16146112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613970565b60405180910390fd5b6112d560006124d6565b565b6112df611d42565b73ffffffffffffffffffffffffffffffffffffffff166112fd61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613970565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b1611d42565b73ffffffffffffffffffffffffffffffffffffffff166113cf61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613970565b60405180910390fd5b6001600b546114349190613c2f565b8161143d610ba5565b6114479190613c2f565b10611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906138f0565b60405180910390fd5b611491338261259c565b50565b61149c611d42565b73ffffffffffffffffffffffffffffffffffffffff166114ba61137f565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613970565b60405180910390fd5b80600e8190555050565b60606002805461152990613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613dfa565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b600e5481565b6000600e54905060006001600a546115ca9190613c2f565b836115d3610ba5565b6115dd9190613c2f565b1080156116365750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116339190613c2f565b11155b9050801561164357600091505b600f60009054906101000a900460ff16611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613830565b60405180910390fd5b6001600b546116a19190613c2f565b836116aa610ba5565b6116b49190613c2f565b106116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613ad0565b60405180910390fd5b81836117009190613cb6565b3414611741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611738906139f0565b60405180910390fd5b6001600d546117509190613c2f565b8310611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613a70565b60405180910390fd5b80156117ee5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e69190613c2f565b925050819055505b6117f8338461259c565b505050565b611805611d42565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906139b0565b60405180910390fd5b8060066000611880611d42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661192d611d42565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197291906137d3565b60405180910390a35050565b600c5481565b61198f848484611dfc565b61199b848484846125ba565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613a50565b60405180910390fd5b50505050565b6119e8611d42565b73ffffffffffffffffffffffffffffffffffffffff16611a0661137f565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390613970565b60405180910390fd5b80600d8190555050565b6060611a7182611d35565b611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613990565b60405180910390fd5b6000611aba612751565b9050600081511415611adb5760405180602001604052806000815250611b06565b80611ae5846127e3565b604051602001611af6929190613733565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600b5481565b6000611b3282612944565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bd5611d42565b73ffffffffffffffffffffffffffffffffffffffff16611bf361137f565b73ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613970565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613850565b60405180910390fd5b611cc2816124d6565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e078261233c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e2e611d42565b73ffffffffffffffffffffffffffffffffffffffff161480611e8a5750611e53611d42565b73ffffffffffffffffffffffffffffffffffffffff16611e7284610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea65750611ea58260000151611ea0611d42565b611b39565b5b905080611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906139d0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613950565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc1906138b0565b60405180910390fd5b611fd78585856001612a2d565b611fe76000848460000151611d4a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122cc5761222b81611d35565b156122cb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123358585856001612a33565b5050505050565b612344612e72565b61234d82611d35565b61238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613870565b60405180910390fd5b60008290505b60008110612495576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124865780925050506124d1565b50808060019003915050612392565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890613b30565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125b6828260405180602001604052806000815250612a39565b5050565b60006125db8473ffffffffffffffffffffffffffffffffffffffff16612a4b565b15612744578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612604611d42565b8786866040518563ffffffff1660e01b81526004016126269493929190613787565b602060405180830381600087803b15801561264057600080fd5b505af192505050801561267157506040513d601f19601f8201168201806040525081019061266e91906131e8565b60015b6126f4573d80600081146126a1576040519150601f19603f3d011682016040523d82523d6000602084013e6126a6565b606091505b506000815114156126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390613a50565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612749565b600190505b949350505050565b60606009805461276090613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461278c90613dfa565b80156127d95780601f106127ae576101008083540402835291602001916127d9565b820191906000526020600020905b8154815290600101906020018083116127bc57829003601f168201915b5050505050905090565b6060600082141561282b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293f565b600082905060005b6000821461285d57808061284690613e5d565b915050600a826128569190613c85565b9150612833565b60008167ffffffffffffffff81111561287957612878613f93565b5b6040519080825280601f01601f1916602001820160405280156128ab5781602001600182028036833780820191505090505b5090505b60008514612938576001826128c49190613d10565b9150600a856128d39190613ea6565b60306128df9190613c2f565b60f81b8183815181106128f5576128f4613f64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129319190613c85565b94506128af565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac906138d0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612a468383836001612a6e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90613a90565b60405180910390fd5b6000841415612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f90613ab0565b60405180910390fd5b612b356000868387612a2d565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612dcf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612dba57612d7a60008884886125ba565b612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db090613a50565b60405180910390fd5b5b81806001019250508080600101915050612d03565b508060008190555050612de56000868387612a33565b5050505050565b828054612df890613dfa565b90600052602060002090601f016020900481019282612e1a5760008555612e61565b82601f10612e3357803560ff1916838001178555612e61565b82800160010185558215612e61579182015b82811115612e60578235825591602001919060010190612e45565b5b509050612e6e9190612eac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ec5576000816000905550600101612ead565b5090565b6000612edc612ed784613bb0565b613b8b565b905082815260208101848484011115612ef857612ef7613fd1565b5b612f03848285613db8565b509392505050565b600081359050612f1a816146f3565b92915050565b600081359050612f2f8161470a565b92915050565b600081359050612f4481614721565b92915050565b600081519050612f5981614721565b92915050565b600082601f830112612f7457612f73613fc7565b5b8135612f84848260208601612ec9565b91505092915050565b60008083601f840112612fa357612fa2613fc7565b5b8235905067ffffffffffffffff811115612fc057612fbf613fc2565b5b602083019150836001820283011115612fdc57612fdb613fcc565b5b9250929050565b600081359050612ff281614738565b92915050565b60006020828403121561300e5761300d613fdb565b5b600061301c84828501612f0b565b91505092915050565b6000806040838503121561303c5761303b613fdb565b5b600061304a85828601612f0b565b925050602061305b85828601612f0b565b9150509250929050565b60008060006060848603121561307e5761307d613fdb565b5b600061308c86828701612f0b565b935050602061309d86828701612f0b565b92505060406130ae86828701612fe3565b9150509250925092565b600080600080608085870312156130d2576130d1613fdb565b5b60006130e087828801612f0b565b94505060206130f187828801612f0b565b935050604061310287828801612fe3565b925050606085013567ffffffffffffffff81111561312357613122613fd6565b5b61312f87828801612f5f565b91505092959194509250565b6000806040838503121561315257613151613fdb565b5b600061316085828601612f0b565b925050602061317185828601612f20565b9150509250929050565b6000806040838503121561319257613191613fdb565b5b60006131a085828601612f0b565b92505060206131b185828601612fe3565b9150509250929050565b6000602082840312156131d1576131d0613fdb565b5b60006131df84828501612f35565b91505092915050565b6000602082840312156131fe576131fd613fdb565b5b600061320c84828501612f4a565b91505092915050565b6000806020838503121561322c5761322b613fdb565b5b600083013567ffffffffffffffff81111561324a57613249613fd6565b5b61325685828601612f8d565b92509250509250929050565b60006020828403121561327857613277613fdb565b5b600061328684828501612fe3565b91505092915050565b61329881613d44565b82525050565b6132a781613d56565b82525050565b60006132b882613be1565b6132c28185613bf7565b93506132d2818560208601613dc7565b6132db81613fe0565b840191505092915050565b60006132f182613bec565b6132fb8185613c13565b935061330b818560208601613dc7565b61331481613fe0565b840191505092915050565b600061332a82613bec565b6133348185613c24565b9350613344818560208601613dc7565b80840191505092915050565b600061335d602283613c13565b915061336882613ff1565b604082019050919050565b6000613380601783613c13565b915061338b82614040565b602082019050919050565b60006133a3602683613c13565b91506133ae82614069565b604082019050919050565b60006133c6602a83613c13565b91506133d1826140b8565b604082019050919050565b60006133e9602383613c13565b91506133f482614107565b604082019050919050565b600061340c602583613c13565b915061341782614156565b604082019050919050565b600061342f603183613c13565b915061343a826141a5565b604082019050919050565b6000613452600983613c13565b915061345d826141f4565b602082019050919050565b6000613475603983613c13565b91506134808261421d565b604082019050919050565b6000613498602b83613c13565b91506134a38261426c565b604082019050919050565b60006134bb602683613c13565b91506134c6826142bb565b604082019050919050565b60006134de602083613c13565b91506134e98261430a565b602082019050919050565b6000613501602f83613c13565b915061350c82614333565b604082019050919050565b6000613524601a83613c13565b915061352f82614382565b602082019050919050565b6000613547603283613c13565b9150613552826143ab565b604082019050919050565b600061356a601c83613c13565b9150613575826143fa565b602082019050919050565b600061358d602283613c13565b915061359882614423565b604082019050919050565b60006135b0600083613c08565b91506135bb82614472565b600082019050919050565b60006135d3601083613c13565b91506135de82614475565b602082019050919050565b60006135f6603383613c13565b91506136018261449e565b604082019050919050565b6000613619601283613c13565b9150613624826144ed565b602082019050919050565b600061363c602183613c13565b915061364782614516565b604082019050919050565b600061365f602883613c13565b915061366a82614565565b604082019050919050565b6000613682600e83613c13565b915061368d826145b4565b602082019050919050565b60006136a5602e83613c13565b91506136b0826145dd565b604082019050919050565b60006136c8601f83613c13565b91506136d38261462c565b602082019050919050565b60006136eb602f83613c13565b91506136f682614655565b604082019050919050565b600061370e602d83613c13565b9150613719826146a4565b604082019050919050565b61372d81613dae565b82525050565b600061373f828561331f565b915061374b828461331f565b91508190509392505050565b6000613762826135a3565b9150819050919050565b6000602082019050613781600083018461328f565b92915050565b600060808201905061379c600083018761328f565b6137a9602083018661328f565b6137b66040830185613724565b81810360608301526137c881846132ad565b905095945050505050565b60006020820190506137e8600083018461329e565b92915050565b6000602082019050818103600083015261380881846132e6565b905092915050565b6000602082019050818103600083015261382981613350565b9050919050565b6000602082019050818103600083015261384981613373565b9050919050565b6000602082019050818103600083015261386981613396565b9050919050565b60006020820190508181036000830152613889816133b9565b9050919050565b600060208201905081810360008301526138a9816133dc565b9050919050565b600060208201905081810360008301526138c9816133ff565b9050919050565b600060208201905081810360008301526138e981613422565b9050919050565b6000602082019050818103600083015261390981613445565b9050919050565b6000602082019050818103600083015261392981613468565b9050919050565b600060208201905081810360008301526139498161348b565b9050919050565b60006020820190508181036000830152613969816134ae565b9050919050565b60006020820190508181036000830152613989816134d1565b9050919050565b600060208201905081810360008301526139a9816134f4565b9050919050565b600060208201905081810360008301526139c981613517565b9050919050565b600060208201905081810360008301526139e98161353a565b9050919050565b60006020820190508181036000830152613a098161355d565b9050919050565b60006020820190508181036000830152613a2981613580565b9050919050565b60006020820190508181036000830152613a49816135c6565b9050919050565b60006020820190508181036000830152613a69816135e9565b9050919050565b60006020820190508181036000830152613a898161360c565b9050919050565b60006020820190508181036000830152613aa98161362f565b9050919050565b60006020820190508181036000830152613ac981613652565b9050919050565b60006020820190508181036000830152613ae981613675565b9050919050565b60006020820190508181036000830152613b0981613698565b9050919050565b60006020820190508181036000830152613b29816136bb565b9050919050565b60006020820190508181036000830152613b49816136de565b9050919050565b60006020820190508181036000830152613b6981613701565b9050919050565b6000602082019050613b856000830184613724565b92915050565b6000613b95613ba6565b9050613ba18282613e2c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bcb57613bca613f93565b5b613bd482613fe0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3a82613dae565b9150613c4583613dae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7a57613c79613ed7565b5b828201905092915050565b6000613c9082613dae565b9150613c9b83613dae565b925082613cab57613caa613f06565b5b828204905092915050565b6000613cc182613dae565b9150613ccc83613dae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0557613d04613ed7565b5b828202905092915050565b6000613d1b82613dae565b9150613d2683613dae565b925082821015613d3957613d38613ed7565b5b828203905092915050565b6000613d4f82613d8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613de5578082015181840152602081019050613dca565b83811115613df4576000848401525b50505050565b60006002820490506001821680613e1257607f821691505b60208210811415613e2657613e25613f35565b5b50919050565b613e3582613fe0565b810181811067ffffffffffffffff82111715613e5457613e53613f93565b5b80604052505050565b6000613e6882613dae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9b57613e9a613ed7565b5b600182019050919050565b6000613eb182613dae565b9150613ebc83613dae565b925082613ecc57613ecb613f06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520737570706c79000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6146fc81613d44565b811461470757600080fd5b50565b61471381613d56565b811461471e57600080fd5b50565b61472a81613d62565b811461473557600080fd5b50565b61474181613dae565b811461474c57600080fd5b5056fea2646970667358221220e09130a9d66974f1baf8b40b29e55dc7eed1575379d72b21816dad50018bf66264736f6c63430008070033

Deployed Bytecode Sourcemap

56016:2244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42876:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44762:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46324:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45845:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41133:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47200:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41797:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56120:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58079:176;;;;;;;;;;;;;:::i;:::-;;47441:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41310:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57577:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57767:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44571:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56087:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43312:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16268:103;;;;;;;;;;;;;:::i;:::-;;57373:85;;;;;;;;;;;;;:::i;:::-;;15617:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57195:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57679:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44931:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56315:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56534:655;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46610:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56220:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47697:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57871:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45106:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56372:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56170:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57464:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46969:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16526:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56267:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42876:372;42978:4;43030:25;43015:40;;;:11;:40;;;;:105;;;;43087:33;43072:48;;;:11;:48;;;;43015:105;:172;;;;43152:35;43137:50;;;:11;:50;;;;43015:172;:225;;;;43204:36;43228:11;43204:23;:36::i;:::-;43015:225;42995:245;;42876:372;;;:::o;44762:100::-;44816:13;44849:5;44842:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44762:100;:::o;46324:214::-;46392:7;46420:16;46428:7;46420;:16::i;:::-;46412:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46506:15;:24;46522:7;46506:24;;;;;;;;;;;;;;;;;;;;;46499:31;;46324:214;;;:::o;45845:413::-;45918:13;45934:24;45950:7;45934:15;:24::i;:::-;45918:40;;45983:5;45977:11;;:2;:11;;;;45969:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46078:5;46062:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46087:37;46104:5;46111:12;:10;:12::i;:::-;46087:16;:37::i;:::-;46062:62;46040:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;46222:28;46231:2;46235:7;46244:5;46222:8;:28::i;:::-;45907:351;45845:413;;:::o;41133:100::-;41186:7;41213:12;;41206:19;;41133:100;:::o;47200:170::-;47334:28;47344:4;47350:2;47354:7;47334:9;:28::i;:::-;47200:170;;;:::o;41797:1007::-;41886:7;41922:16;41932:5;41922:9;:16::i;:::-;41914:5;:24;41906:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41988:22;42013:13;:11;:13::i;:::-;41988:38;;42037:19;42067:25;42256:9;42251:466;42271:14;42267:1;:18;42251:466;;;42311:31;42345:11;:14;42357:1;42345:14;;;;;;;;;;;42311:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42408:1;42382:28;;:9;:14;;;:28;;;42378:111;;42455:9;:14;;;42435:34;;42378:111;42532:5;42511:26;;:17;:26;;;42507:195;;;42581:5;42566:11;:20;42562:85;;;42622:1;42615:8;;;;;;;;;42562:85;42669:13;;;;;;;42507:195;42292:425;42287:3;;;;;;;42251:466;;;;42740:56;;;;;;;;;;:::i;:::-;;;;;;;;41797:1007;;;;;:::o;56120:45::-;;;;:::o;58079:176::-;15848:12;:10;:12::i;:::-;15837:23;;:7;:5;:7::i;:::-;:23;;;15829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10591:1:::1;11189:7;;:19;;11181:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10591:1;11322:7;:18;;;;58139:12:::2;58157:10;:15;;58180:21;58157:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58138:68;;;58221:7;58213:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;58131:124;10547:1:::1;11501:7;:22;;;;58079:176::o:0;47441:185::-;47579:39;47596:4;47602:2;47606:7;47579:39;;;;;;;;;;;;:16;:39::i;:::-;47441:185;;;:::o;41310:187::-;41377:7;41413:13;:11;:13::i;:::-;41405:5;:21;41397:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41484:5;41477:12;;41310:187;;;:::o;57577:96::-;15848:12;:10;:12::i;:::-;15837:23;;:7;:5;:7::i;:::-;:23;;;15829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57659:8:::1;;57649:7;:18;;;;;;;:::i;:::-;;57577:96:::0;;:::o;57767:98::-;15848:12;:10;:12::i;:::-;15837:23;;:7;:5;:7::i;:::-;:23;;;15829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57849:10:::1;57837:9;:22;;;;57767:98:::0;:::o;44571:124::-;44635:7;44662:20;44674:7;44662:11;:20::i;:::-;:25;;;44655:32;;44571:124;;;:::o;56087:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43312:221::-;43376:7;43421:1;43404:19;;:5;:19;;;;43396:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43497:12;:19;43510:5;43497:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43489:36;;43482:43;;43312:221;;;:::o;16268:103::-;15848:12;:10;:12::i;:::-;15837:23;;:7;:5;:7::i;:::-;:23;;;15829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16333:30:::1;16360:1;16333:18;:30::i;:::-;16268:103::o:0;57373:85::-;15848:12;:10;:12::i;:::-;15837:23;;:7;:5;:7::i;:::-;:23;;;15829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57441:11:::1;;;;;;;;;;;57440:12;57426:11;;:26;;;;;;;;;;;;;;;;;;57373:85::o:0;15617:87::-;15663:7;15690:6;;;;;;;;;;;15683:13;;15617:87;:::o;57195:172::-;15848:12;:10;:12::i;:::-;15837:23;;:7;:5;:7::i;:::-;:23;;;15829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57309:1:::1;57297:9;;:13;;;;:::i;:::-;57288:6;57272:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;57264:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;57332:29;57342:10;57354:6;57332:9;:29::i;:::-;57195:172:::0;:::o;57679:82::-;15848:12;:10;:12::i;:::-;15837:23;;:7;:5;:7::i;:::-;:23;;;15829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57749:6:::1;57741:5;:14;;;;57679:82:::0;:::o;44931:104::-;44987:13;45020:7;45013:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44931:104;:::o;56315:52::-;;;;:::o;56534:655::-;56591:9;56603:5;;56591:17;;56621:11;56674:1;56662:9;;:13;;;;:::i;:::-;56653:6;56637:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;56636:117;;;;;56736:16;;56726:6;56694:17;:29;56712:10;56694:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;56636:117;56621:133;;56766:6;56763:36;;;56790:1;56783:8;;56763:36;56813:11;;;;;;;;;;;56805:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;56904:1;56892:9;;:13;;;;:::i;:::-;56883:6;56867:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;56859:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;56960:4;56951:6;:13;;;;:::i;:::-;56938:9;:26;56930:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;57031:1;57020:8;;:12;;;;:::i;:::-;57011:6;:21;57003:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;57072:6;57068:78;;;57128:6;57095:17;:29;57113:10;57095:29;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;57068:78;57154:29;57164:10;57176:6;57154:9;:29::i;:::-;56584:605;;56534:655;:::o;46610:288::-;46717:12;:10;:12::i;:::-;46705:24;;:8;:24;;;;46697:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46818:8;46773:18;:32;46792:12;:10;:12::i;:::-;46773:32;;;;;;;;;;;;;;;:42;46806:8;46773:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46871:8;46842:48;;46857:12;:10;:12::i;:::-;46842:48;;;46881:8;46842:48;;;;;;:::i;:::-;;;;;;;;46610:288;;:::o;56220:42::-;;;;:::o;47697:355::-;47856:28;47866:4;47872:2;47876:7;47856:9;:28::i;:::-;47917:48;47940:4;47946:2;47950:7;47959:5;47917:22;:48::i;:::-;47895:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;47697:355;;;;:::o;57871:94::-;15848:12;:10;:12::i;:::-;15837:23;;:7;:5;:7::i;:::-;:23;;;15829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57950:9:::1;57939:8;:20;;;;57871:94:::0;:::o;45106:335::-;45179:13;45213:16;45221:7;45213;:16::i;:::-;45205:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45294:21;45318:10;:8;:10::i;:::-;45294:34;;45371:1;45352:7;45346:21;:26;;:87;;;;;;;;;;;;;;;;;45399:7;45408:18;:7;:16;:18::i;:::-;45382:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45346:87;45339:94;;;45106:335;;;:::o;56372:32::-;;;;;;;;;;;;;:::o;56170:45::-;;;;:::o;57464:107::-;57522:7;57545:20;57559:5;57545:13;:20::i;:::-;57538:27;;57464:107;;;:::o;46969:164::-;47066:4;47090:18;:25;47109:5;47090:25;;;;;;;;;;;;;;;:35;47116:8;47090:35;;;;;;;;;;;;;;;;;;;;;;;;;47083:42;;46969:164;;;;:::o;16526:201::-;15848:12;:10;:12::i;:::-;15837:23;;:7;:5;:7::i;:::-;:23;;;15829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16635:1:::1;16615:22;;:8;:22;;;;16607:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16691:28;16710:8;16691:18;:28::i;:::-;16526:201:::0;:::o;56267:43::-;;;;:::o;32396:157::-;32481:4;32520:25;32505:40;;;:11;:40;;;;32498:47;;32396:157;;;:::o;48307:111::-;48364:4;48398:12;;48388:7;:22;48381:29;;48307:111;;;:::o;14341:98::-;14394:7;14421:10;14414:17;;14341:98;:::o;53227:196::-;53369:2;53342:15;:24;53358:7;53342:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;53407:7;53403:2;53387:28;;53396:5;53387:28;;;;;;;;;;;;53227:196;;;:::o;51107:2002::-;51222:35;51260:20;51272:7;51260:11;:20::i;:::-;51222:58;;51293:22;51335:13;:18;;;51319:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;51394:12;:10;:12::i;:::-;51370:36;;:20;51382:7;51370:11;:20::i;:::-;:36;;;51319:87;:154;;;;51423:50;51440:13;:18;;;51460:12;:10;:12::i;:::-;51423:16;:50::i;:::-;51319:154;51293:181;;51495:17;51487:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;51610:4;51588:26;;:13;:18;;;:26;;;51580:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51690:1;51676:16;;:2;:16;;;;51668:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51747:43;51769:4;51775:2;51779:7;51788:1;51747:21;:43::i;:::-;51855:49;51872:1;51876:7;51885:13;:18;;;51855:8;:49::i;:::-;52230:1;52200:12;:18;52213:4;52200:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52274:1;52246:12;:16;52259:2;52246:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52320:2;52292:11;:20;52304:7;52292:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;52382:15;52337:11;:20;52349:7;52337:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;52650:19;52682:1;52672:7;:11;52650:33;;52743:1;52702:43;;:11;:24;52714:11;52702:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;52698:295;;;52770:20;52778:11;52770:7;:20::i;:::-;52766:212;;;52847:13;:18;;;52815:11;:24;52827:11;52815:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;52930:13;:28;;;52888:11;:24;52900:11;52888:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;52766:212;52698:295;52175:829;53040:7;53036:2;53021:27;;53030:4;53021:27;;;;;;;;;;;;53059:42;53080:4;53086:2;53090:7;53099:1;53059:20;:42::i;:::-;51211:1898;;51107:2002;;;:::o;43972:537::-;44033:21;;:::i;:::-;44075:16;44083:7;44075;:16::i;:::-;44067:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44181:12;44196:7;44181:22;;44176:245;44213:1;44205:4;:9;44176:245;;44243:31;44277:11;:17;44289:4;44277:17;;;;;;;;;;;44243:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44343:1;44317:28;;:9;:14;;;:28;;;44313:93;;44377:9;44370:16;;;;;;44313:93;44224:197;44216:6;;;;;;;;44176:245;;;;44444:57;;;;;;;;;;:::i;:::-;;;;;;;;43972:537;;;;:::o;16887:191::-;16961:16;16980:6;;;;;;;;;;;16961:25;;17006:8;16997:6;;:17;;;;;;;;;;;;;;;;;;17061:8;17030:40;;17051:8;17030:40;;;;;;;;;;;;16950:128;16887:191;:::o;48426:104::-;48495:27;48505:2;48509:8;48495:27;;;;;;;;;;;;:9;:27::i;:::-;48426:104;;:::o;53988:804::-;54143:4;54164:15;:2;:13;;;:15::i;:::-;54160:625;;;54216:2;54200:36;;;54237:12;:10;:12::i;:::-;54251:4;54257:7;54266:5;54200:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54196:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54463:1;54446:6;:13;:18;54442:273;;;54489:61;;;;;;;;;;:::i;:::-;;;;;;;;54442:273;54665:6;54659:13;54650:6;54646:2;54642:15;54635:38;54196:534;54333:45;;;54323:55;;;:6;:55;;;;54316:62;;;;;54160:625;54769:4;54762:11;;53988:804;;;;;;;:::o;57971:102::-;58031:13;58060:7;58053:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57971:102;:::o;11903:723::-;11959:13;12189:1;12180:5;:10;12176:53;;;12207:10;;;;;;;;;;;;;;;;;;;;;12176:53;12239:12;12254:5;12239:20;;12270:14;12295:78;12310:1;12302:4;:9;12295:78;;12328:8;;;;;:::i;:::-;;;;12359:2;12351:10;;;;;:::i;:::-;;;12295:78;;;12383:19;12415:6;12405:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12383:39;;12433:154;12449:1;12440:5;:10;12433:154;;12477:1;12467:11;;;;;:::i;:::-;;;12544:2;12536:5;:10;;;;:::i;:::-;12523:2;:24;;;;:::i;:::-;12510:39;;12493:6;12500;12493:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12573:2;12564:11;;;;;:::i;:::-;;;12433:154;;;12611:6;12597:21;;;;;11903:723;;;;:::o;43541:229::-;43602:7;43647:1;43630:19;;:5;:19;;;;43622:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;43729:12;:19;43742:5;43729:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;43721:41;;43714:48;;43541:229;;;:::o;55280:159::-;;;;;:::o;55851:158::-;;;;;:::o;48893:163::-;49016:32;49022:2;49026:8;49036:5;49043:4;49016:5;:32::i;:::-;48893:163;;;:::o;18318:326::-;18378:4;18635:1;18613:7;:19;;;:23;18606:30;;18318:326;;;:::o;49315:1538::-;49454:20;49477:12;;49454:35;;49522:1;49508:16;;:2;:16;;;;49500:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49593:1;49581:8;:13;;49573:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49652:61;49682:1;49686:2;49690:12;49704:8;49652:21;:61::i;:::-;50027:8;49991:12;:16;50004:2;49991:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50092:8;50051:12;:16;50064:2;50051:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50151:2;50118:11;:25;50130:12;50118:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50218:15;50168:11;:25;50180:12;50168:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;50251:20;50274:12;50251:35;;50308:9;50303:415;50323:8;50319:1;:12;50303:415;;;50387:12;50383:2;50362:38;;50379:1;50362:38;;;;;;;;;;;;50423:4;50419:249;;;50486:59;50517:1;50521:2;50525:12;50539:5;50486:22;:59::i;:::-;50452:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;50419:249;50688:14;;;;;;;50333:3;;;;;;;50303:415;;;;50749:12;50734;:27;;;;49966:807;50785:60;50814:1;50818:2;50822:12;50836:8;50785:20;:60::i;:::-;49443:1410;49315:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:365::-;11077:3;11098:66;11162:1;11157:3;11098:66;:::i;:::-;11091:73;;11173:93;11262:3;11173:93;:::i;:::-;11291:2;11286:3;11282:12;11275:19;;10935:365;;;:::o;11306:366::-;11448:3;11469:67;11533:2;11528:3;11469:67;:::i;:::-;11462:74;;11545:93;11634:3;11545:93;:::i;:::-;11663:2;11658:3;11654:12;11647:19;;11306:366;;;:::o;11678:::-;11820:3;11841:67;11905:2;11900:3;11841:67;:::i;:::-;11834:74;;11917:93;12006:3;11917:93;:::i;:::-;12035:2;12030:3;12026:12;12019:19;;11678:366;;;:::o;12050:::-;12192:3;12213:67;12277:2;12272:3;12213:67;:::i;:::-;12206:74;;12289:93;12378:3;12289:93;:::i;:::-;12407:2;12402:3;12398:12;12391:19;;12050:366;;;:::o;12422:::-;12564:3;12585:67;12649:2;12644:3;12585:67;:::i;:::-;12578:74;;12661:93;12750:3;12661:93;:::i;:::-;12779:2;12774:3;12770:12;12763:19;;12422:366;;;:::o;12794:::-;12936:3;12957:67;13021:2;13016:3;12957:67;:::i;:::-;12950:74;;13033:93;13122:3;13033:93;:::i;:::-;13151:2;13146:3;13142:12;13135:19;;12794:366;;;:::o;13166:::-;13308:3;13329:67;13393:2;13388:3;13329:67;:::i;:::-;13322:74;;13405:93;13494:3;13405:93;:::i;:::-;13523:2;13518:3;13514:12;13507:19;;13166:366;;;:::o;13538:::-;13680:3;13701:67;13765:2;13760:3;13701:67;:::i;:::-;13694:74;;13777:93;13866:3;13777:93;:::i;:::-;13895:2;13890:3;13886:12;13879:19;;13538:366;;;:::o;13910:::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:::-;14424:3;14445:67;14509:2;14504:3;14445:67;:::i;:::-;14438:74;;14521:93;14610:3;14521:93;:::i;:::-;14639:2;14634:3;14630:12;14623:19;;14282:366;;;:::o;14654:398::-;14813:3;14834:83;14915:1;14910:3;14834:83;:::i;:::-;14827:90;;14926:93;15015:3;14926:93;:::i;:::-;15044:1;15039:3;15035:11;15028:18;;14654:398;;;:::o;15058:366::-;15200:3;15221:67;15285:2;15280:3;15221:67;:::i;:::-;15214:74;;15297:93;15386:3;15297:93;:::i;:::-;15415:2;15410:3;15406:12;15399:19;;15058:366;;;:::o;15430:::-;15572:3;15593:67;15657:2;15652:3;15593:67;:::i;:::-;15586:74;;15669:93;15758:3;15669:93;:::i;:::-;15787:2;15782:3;15778:12;15771:19;;15430:366;;;:::o;15802:::-;15944:3;15965:67;16029:2;16024:3;15965:67;:::i;:::-;15958:74;;16041:93;16130:3;16041:93;:::i;:::-;16159:2;16154:3;16150:12;16143:19;;15802:366;;;:::o;16174:::-;16316:3;16337:67;16401:2;16396:3;16337:67;:::i;:::-;16330:74;;16413:93;16502:3;16413:93;:::i;:::-;16531:2;16526:3;16522:12;16515:19;;16174:366;;;:::o;16546:::-;16688:3;16709:67;16773:2;16768:3;16709:67;:::i;:::-;16702:74;;16785:93;16874:3;16785:93;:::i;:::-;16903:2;16898:3;16894:12;16887:19;;16546:366;;;:::o;16918:::-;17060:3;17081:67;17145:2;17140:3;17081:67;:::i;:::-;17074:74;;17157:93;17246:3;17157:93;:::i;:::-;17275:2;17270:3;17266:12;17259:19;;16918:366;;;:::o;17290:::-;17432:3;17453:67;17517:2;17512:3;17453:67;:::i;:::-;17446:74;;17529:93;17618:3;17529:93;:::i;:::-;17647:2;17642:3;17638:12;17631:19;;17290:366;;;:::o;17662:::-;17804:3;17825:67;17889:2;17884:3;17825:67;:::i;:::-;17818:74;;17901:93;17990:3;17901:93;:::i;:::-;18019:2;18014:3;18010:12;18003:19;;17662:366;;;:::o;18034:::-;18176:3;18197:67;18261:2;18256:3;18197:67;:::i;:::-;18190:74;;18273:93;18362:3;18273:93;:::i;:::-;18391:2;18386:3;18382:12;18375:19;;18034:366;;;:::o;18406:::-;18548:3;18569:67;18633:2;18628:3;18569:67;:::i;:::-;18562:74;;18645:93;18734:3;18645:93;:::i;:::-;18763:2;18758:3;18754:12;18747:19;;18406:366;;;:::o;18778:118::-;18865:24;18883:5;18865:24;:::i;:::-;18860:3;18853:37;18778:118;;:::o;18902:435::-;19082:3;19104:95;19195:3;19186:6;19104:95;:::i;:::-;19097:102;;19216:95;19307:3;19298:6;19216:95;:::i;:::-;19209:102;;19328:3;19321:10;;18902:435;;;;;:::o;19343:379::-;19527:3;19549:147;19692:3;19549:147;:::i;:::-;19542:154;;19713:3;19706:10;;19343:379;;;:::o;19728:222::-;19821:4;19859:2;19848:9;19844:18;19836:26;;19872:71;19940:1;19929:9;19925:17;19916:6;19872:71;:::i;:::-;19728:222;;;;:::o;19956:640::-;20151:4;20189:3;20178:9;20174:19;20166:27;;20203:71;20271:1;20260:9;20256:17;20247:6;20203:71;:::i;:::-;20284:72;20352:2;20341:9;20337:18;20328:6;20284:72;:::i;:::-;20366;20434:2;20423:9;20419:18;20410:6;20366:72;:::i;:::-;20485:9;20479:4;20475:20;20470:2;20459:9;20455:18;20448:48;20513:76;20584:4;20575:6;20513:76;:::i;:::-;20505:84;;19956:640;;;;;;;:::o;20602:210::-;20689:4;20727:2;20716:9;20712:18;20704:26;;20740:65;20802:1;20791:9;20787:17;20778:6;20740:65;:::i;:::-;20602:210;;;;:::o;20818:313::-;20931:4;20969:2;20958:9;20954:18;20946:26;;21018:9;21012:4;21008:20;21004:1;20993:9;20989:17;20982:47;21046:78;21119:4;21110:6;21046:78;:::i;:::-;21038:86;;20818:313;;;;:::o;21137:419::-;21303:4;21341:2;21330:9;21326:18;21318:26;;21390:9;21384:4;21380:20;21376:1;21365:9;21361:17;21354:47;21418:131;21544:4;21418:131;:::i;:::-;21410:139;;21137:419;;;:::o;21562:::-;21728:4;21766:2;21755:9;21751:18;21743:26;;21815:9;21809:4;21805:20;21801:1;21790:9;21786:17;21779:47;21843:131;21969:4;21843:131;:::i;:::-;21835:139;;21562:419;;;:::o;21987:::-;22153:4;22191:2;22180:9;22176:18;22168:26;;22240:9;22234:4;22230:20;22226:1;22215:9;22211:17;22204:47;22268:131;22394:4;22268:131;:::i;:::-;22260:139;;21987:419;;;:::o;22412:::-;22578:4;22616:2;22605:9;22601:18;22593:26;;22665:9;22659:4;22655:20;22651:1;22640:9;22636:17;22629:47;22693:131;22819:4;22693:131;:::i;:::-;22685:139;;22412:419;;;:::o;22837:::-;23003:4;23041:2;23030:9;23026:18;23018:26;;23090:9;23084:4;23080:20;23076:1;23065:9;23061:17;23054:47;23118:131;23244:4;23118:131;:::i;:::-;23110:139;;22837:419;;;:::o;23262:::-;23428:4;23466:2;23455:9;23451:18;23443:26;;23515:9;23509:4;23505:20;23501:1;23490:9;23486:17;23479:47;23543:131;23669:4;23543:131;:::i;:::-;23535:139;;23262:419;;;:::o;23687:::-;23853:4;23891:2;23880:9;23876:18;23868:26;;23940:9;23934:4;23930:20;23926:1;23915:9;23911:17;23904:47;23968:131;24094:4;23968:131;:::i;:::-;23960:139;;23687:419;;;:::o;24112:::-;24278:4;24316:2;24305:9;24301:18;24293:26;;24365:9;24359:4;24355:20;24351:1;24340:9;24336:17;24329:47;24393:131;24519:4;24393:131;:::i;:::-;24385:139;;24112:419;;;:::o;24537:::-;24703:4;24741:2;24730:9;24726:18;24718:26;;24790:9;24784:4;24780:20;24776:1;24765:9;24761:17;24754:47;24818:131;24944:4;24818:131;:::i;:::-;24810:139;;24537:419;;;:::o;24962:::-;25128:4;25166:2;25155:9;25151:18;25143:26;;25215:9;25209:4;25205:20;25201:1;25190:9;25186:17;25179:47;25243:131;25369:4;25243:131;:::i;:::-;25235:139;;24962:419;;;:::o;25387:::-;25553:4;25591:2;25580:9;25576:18;25568:26;;25640:9;25634:4;25630:20;25626:1;25615:9;25611:17;25604:47;25668:131;25794:4;25668:131;:::i;:::-;25660:139;;25387:419;;;:::o;25812:::-;25978:4;26016:2;26005:9;26001:18;25993:26;;26065:9;26059:4;26055:20;26051:1;26040:9;26036:17;26029:47;26093:131;26219:4;26093:131;:::i;:::-;26085:139;;25812:419;;;:::o;26237:::-;26403:4;26441:2;26430:9;26426:18;26418:26;;26490:9;26484:4;26480:20;26476:1;26465:9;26461:17;26454:47;26518:131;26644:4;26518:131;:::i;:::-;26510:139;;26237:419;;;:::o;26662:::-;26828:4;26866:2;26855:9;26851:18;26843:26;;26915:9;26909:4;26905:20;26901:1;26890:9;26886:17;26879:47;26943:131;27069:4;26943:131;:::i;:::-;26935:139;;26662:419;;;:::o;27087:::-;27253:4;27291:2;27280:9;27276:18;27268:26;;27340:9;27334:4;27330:20;27326:1;27315:9;27311:17;27304:47;27368:131;27494:4;27368:131;:::i;:::-;27360:139;;27087:419;;;:::o;27512:::-;27678:4;27716:2;27705:9;27701:18;27693:26;;27765:9;27759:4;27755:20;27751:1;27740:9;27736:17;27729:47;27793:131;27919:4;27793:131;:::i;:::-;27785:139;;27512:419;;;:::o;27937:::-;28103:4;28141:2;28130:9;28126:18;28118:26;;28190:9;28184:4;28180:20;28176:1;28165:9;28161:17;28154:47;28218:131;28344:4;28218:131;:::i;:::-;28210:139;;27937:419;;;:::o;28362:::-;28528:4;28566:2;28555:9;28551:18;28543:26;;28615:9;28609:4;28605:20;28601:1;28590:9;28586:17;28579:47;28643:131;28769:4;28643:131;:::i;:::-;28635:139;;28362:419;;;:::o;28787:::-;28953:4;28991:2;28980:9;28976:18;28968:26;;29040:9;29034:4;29030:20;29026:1;29015:9;29011:17;29004:47;29068:131;29194:4;29068:131;:::i;:::-;29060:139;;28787:419;;;:::o;29212:::-;29378:4;29416:2;29405:9;29401:18;29393:26;;29465:9;29459:4;29455:20;29451:1;29440:9;29436:17;29429:47;29493:131;29619:4;29493:131;:::i;:::-;29485:139;;29212:419;;;:::o;29637:::-;29803:4;29841:2;29830:9;29826:18;29818:26;;29890:9;29884:4;29880:20;29876:1;29865:9;29861:17;29854:47;29918:131;30044:4;29918:131;:::i;:::-;29910:139;;29637:419;;;:::o;30062:::-;30228:4;30266:2;30255:9;30251:18;30243:26;;30315:9;30309:4;30305:20;30301:1;30290:9;30286:17;30279:47;30343:131;30469:4;30343:131;:::i;:::-;30335:139;;30062:419;;;:::o;30487:::-;30653:4;30691:2;30680:9;30676:18;30668:26;;30740:9;30734:4;30730:20;30726:1;30715:9;30711:17;30704:47;30768:131;30894:4;30768:131;:::i;:::-;30760:139;;30487:419;;;:::o;30912:::-;31078:4;31116:2;31105:9;31101:18;31093:26;;31165:9;31159:4;31155:20;31151:1;31140:9;31136:17;31129:47;31193:131;31319:4;31193:131;:::i;:::-;31185:139;;30912:419;;;:::o;31337:::-;31503:4;31541:2;31530:9;31526:18;31518:26;;31590:9;31584:4;31580:20;31576:1;31565:9;31561:17;31554:47;31618:131;31744:4;31618:131;:::i;:::-;31610:139;;31337:419;;;:::o;31762:::-;31928:4;31966:2;31955:9;31951:18;31943:26;;32015:9;32009:4;32005:20;32001:1;31990:9;31986:17;31979:47;32043:131;32169:4;32043:131;:::i;:::-;32035:139;;31762:419;;;:::o;32187:::-;32353:4;32391:2;32380:9;32376:18;32368:26;;32440:9;32434:4;32430:20;32426:1;32415:9;32411:17;32404:47;32468:131;32594:4;32468:131;:::i;:::-;32460:139;;32187:419;;;:::o;32612:222::-;32705:4;32743:2;32732:9;32728:18;32720:26;;32756:71;32824:1;32813:9;32809:17;32800:6;32756:71;:::i;:::-;32612:222;;;;:::o;32840:129::-;32874:6;32901:20;;:::i;:::-;32891:30;;32930:33;32958:4;32950:6;32930:33;:::i;:::-;32840:129;;;:::o;32975:75::-;33008:6;33041:2;33035:9;33025:19;;32975:75;:::o;33056:307::-;33117:4;33207:18;33199:6;33196:30;33193:56;;;33229:18;;:::i;:::-;33193:56;33267:29;33289:6;33267:29;:::i;:::-;33259:37;;33351:4;33345;33341:15;33333:23;;33056:307;;;:::o;33369:98::-;33420:6;33454:5;33448:12;33438:22;;33369:98;;;:::o;33473:99::-;33525:6;33559:5;33553:12;33543:22;;33473:99;;;:::o;33578:168::-;33661:11;33695:6;33690:3;33683:19;33735:4;33730:3;33726:14;33711:29;;33578:168;;;;:::o;33752:147::-;33853:11;33890:3;33875:18;;33752:147;;;;:::o;33905:169::-;33989:11;34023:6;34018:3;34011:19;34063:4;34058:3;34054:14;34039:29;;33905:169;;;;:::o;34080:148::-;34182:11;34219:3;34204:18;;34080:148;;;;:::o;34234:305::-;34274:3;34293:20;34311:1;34293:20;:::i;:::-;34288:25;;34327:20;34345:1;34327:20;:::i;:::-;34322:25;;34481:1;34413:66;34409:74;34406:1;34403:81;34400:107;;;34487:18;;:::i;:::-;34400:107;34531:1;34528;34524:9;34517:16;;34234:305;;;;:::o;34545:185::-;34585:1;34602:20;34620:1;34602:20;:::i;:::-;34597:25;;34636:20;34654:1;34636:20;:::i;:::-;34631:25;;34675:1;34665:35;;34680:18;;:::i;:::-;34665:35;34722:1;34719;34715:9;34710:14;;34545:185;;;;:::o;34736:348::-;34776:7;34799:20;34817:1;34799:20;:::i;:::-;34794:25;;34833:20;34851:1;34833:20;:::i;:::-;34828:25;;35021:1;34953:66;34949:74;34946:1;34943:81;34938:1;34931:9;34924:17;34920:105;34917:131;;;35028:18;;:::i;:::-;34917:131;35076:1;35073;35069:9;35058:20;;34736:348;;;;:::o;35090:191::-;35130:4;35150:20;35168:1;35150:20;:::i;:::-;35145:25;;35184:20;35202:1;35184:20;:::i;:::-;35179:25;;35223:1;35220;35217:8;35214:34;;;35228:18;;:::i;:::-;35214:34;35273:1;35270;35266:9;35258:17;;35090:191;;;;:::o;35287:96::-;35324:7;35353:24;35371:5;35353:24;:::i;:::-;35342:35;;35287:96;;;:::o;35389:90::-;35423:7;35466:5;35459:13;35452:21;35441:32;;35389:90;;;:::o;35485:149::-;35521:7;35561:66;35554:5;35550:78;35539:89;;35485:149;;;:::o;35640:126::-;35677:7;35717:42;35710:5;35706:54;35695:65;;35640:126;;;:::o;35772:77::-;35809:7;35838:5;35827:16;;35772:77;;;:::o;35855:154::-;35939:6;35934:3;35929;35916:30;36001:1;35992:6;35987:3;35983:16;35976:27;35855:154;;;:::o;36015:307::-;36083:1;36093:113;36107:6;36104:1;36101:13;36093:113;;;36192:1;36187:3;36183:11;36177:18;36173:1;36168:3;36164:11;36157:39;36129:2;36126:1;36122:10;36117:15;;36093:113;;;36224:6;36221:1;36218:13;36215:101;;;36304:1;36295:6;36290:3;36286:16;36279:27;36215:101;36064:258;36015:307;;;:::o;36328:320::-;36372:6;36409:1;36403:4;36399:12;36389:22;;36456:1;36450:4;36446:12;36477:18;36467:81;;36533:4;36525:6;36521:17;36511:27;;36467:81;36595:2;36587:6;36584:14;36564:18;36561:38;36558:84;;;36614:18;;:::i;:::-;36558:84;36379:269;36328:320;;;:::o;36654:281::-;36737:27;36759:4;36737:27;:::i;:::-;36729:6;36725:40;36867:6;36855:10;36852:22;36831:18;36819:10;36816:34;36813:62;36810:88;;;36878:18;;:::i;:::-;36810:88;36918:10;36914:2;36907:22;36697:238;36654:281;;:::o;36941:233::-;36980:3;37003:24;37021:5;37003:24;:::i;:::-;36994:33;;37049:66;37042:5;37039:77;37036:103;;;37119:18;;:::i;:::-;37036:103;37166:1;37159:5;37155:13;37148:20;;36941:233;;;:::o;37180:176::-;37212:1;37229:20;37247:1;37229:20;:::i;:::-;37224:25;;37263:20;37281:1;37263:20;:::i;:::-;37258:25;;37302:1;37292:35;;37307:18;;:::i;:::-;37292:35;37348:1;37345;37341:9;37336:14;;37180:176;;;;:::o;37362:180::-;37410:77;37407:1;37400:88;37507:4;37504:1;37497:15;37531:4;37528:1;37521:15;37548:180;37596:77;37593:1;37586:88;37693:4;37690:1;37683:15;37717:4;37714:1;37707:15;37734:180;37782:77;37779:1;37772:88;37879:4;37876:1;37869:15;37903:4;37900:1;37893:15;37920:180;37968:77;37965:1;37958:88;38065:4;38062:1;38055:15;38089:4;38086:1;38079:15;38106:180;38154:77;38151:1;38144:88;38251:4;38248:1;38241:15;38275:4;38272:1;38265:15;38292:117;38401:1;38398;38391:12;38415:117;38524:1;38521;38514:12;38538:117;38647:1;38644;38637:12;38661:117;38770:1;38767;38760:12;38784:117;38893:1;38890;38883:12;38907:117;39016:1;39013;39006:12;39030:102;39071:6;39122:2;39118:7;39113:2;39106:5;39102:14;39098:28;39088:38;;39030:102;;;:::o;39138:221::-;39278:34;39274:1;39266:6;39262:14;39255:58;39347:4;39342:2;39334:6;39330:15;39323:29;39138:221;:::o;39365:173::-;39505:25;39501:1;39493:6;39489:14;39482:49;39365:173;:::o;39544:225::-;39684:34;39680:1;39672:6;39668:14;39661:58;39753:8;39748:2;39740:6;39736:15;39729:33;39544:225;:::o;39775:229::-;39915:34;39911:1;39903:6;39899:14;39892:58;39984:12;39979:2;39971:6;39967:15;39960:37;39775:229;:::o;40010:222::-;40150:34;40146:1;40138:6;40134:14;40127:58;40219:5;40214:2;40206:6;40202:15;40195:30;40010:222;:::o;40238:224::-;40378:34;40374:1;40366:6;40362:14;40355:58;40447:7;40442:2;40434:6;40430:15;40423:32;40238:224;:::o;40468:236::-;40608:34;40604:1;40596:6;40592:14;40585:58;40677:19;40672:2;40664:6;40660:15;40653:44;40468:236;:::o;40710:159::-;40850:11;40846:1;40838:6;40834:14;40827:35;40710:159;:::o;40875:244::-;41015:34;41011:1;41003:6;40999:14;40992:58;41084:27;41079:2;41071:6;41067:15;41060:52;40875:244;:::o;41125:230::-;41265:34;41261:1;41253:6;41249:14;41242:58;41334:13;41329:2;41321:6;41317:15;41310:38;41125:230;:::o;41361:225::-;41501:34;41497:1;41489:6;41485:14;41478:58;41570:8;41565:2;41557:6;41553:15;41546:33;41361:225;:::o;41592:182::-;41732:34;41728:1;41720:6;41716:14;41709:58;41592:182;:::o;41780:234::-;41920:34;41916:1;41908:6;41904:14;41897:58;41989:17;41984:2;41976:6;41972:15;41965:42;41780:234;:::o;42020:176::-;42160:28;42156:1;42148:6;42144:14;42137:52;42020:176;:::o;42202:237::-;42342:34;42338:1;42330:6;42326:14;42319:58;42411:20;42406:2;42398:6;42394:15;42387:45;42202:237;:::o;42445:178::-;42585:30;42581:1;42573:6;42569:14;42562:54;42445:178;:::o;42629:221::-;42769:34;42765:1;42757:6;42753:14;42746:58;42838:4;42833:2;42825:6;42821:15;42814:29;42629:221;:::o;42856:114::-;;:::o;42976:166::-;43116:18;43112:1;43104:6;43100:14;43093:42;42976:166;:::o;43148:238::-;43288:34;43284:1;43276:6;43272:14;43265:58;43357:21;43352:2;43344:6;43340:15;43333:46;43148:238;:::o;43392:168::-;43532:20;43528:1;43520:6;43516:14;43509:44;43392:168;:::o;43566:220::-;43706:34;43702:1;43694:6;43690:14;43683:58;43775:3;43770:2;43762:6;43758:15;43751:28;43566:220;:::o;43792:227::-;43932:34;43928:1;43920:6;43916:14;43909:58;44001:10;43996:2;43988:6;43984:15;43977:35;43792:227;:::o;44025:164::-;44165:16;44161:1;44153:6;44149:14;44142:40;44025:164;:::o;44195:233::-;44335:34;44331:1;44323:6;44319:14;44312:58;44404:16;44399:2;44391:6;44387:15;44380:41;44195:233;:::o;44434:181::-;44574:33;44570:1;44562:6;44558:14;44551:57;44434:181;:::o;44621:234::-;44761:34;44757:1;44749:6;44745:14;44738:58;44830:17;44825:2;44817:6;44813:15;44806:42;44621:234;:::o;44861:232::-;45001:34;44997:1;44989:6;44985:14;44978:58;45070:15;45065:2;45057:6;45053:15;45046:40;44861:232;:::o;45099:122::-;45172:24;45190:5;45172:24;:::i;:::-;45165:5;45162:35;45152:63;;45211:1;45208;45201:12;45152:63;45099:122;:::o;45227:116::-;45297:21;45312:5;45297:21;:::i;:::-;45290:5;45287:32;45277:60;;45333:1;45330;45323:12;45277:60;45227:116;:::o;45349:120::-;45421:23;45438:5;45421:23;:::i;:::-;45414:5;45411:34;45401:62;;45459:1;45456;45449:12;45401:62;45349:120;:::o;45475:122::-;45548:24;45566:5;45548:24;:::i;:::-;45541:5;45538:35;45528:63;;45587:1;45584;45577:12;45528:63;45475:122;:::o

Swarm Source

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