ETH Price: $2,279.47 (-3.57%)

Token

CDB Street Fighters (CDBSF)
 

Overview

Max Total Supply

44 CDBSF

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CDBSF
0x96135D085A17e06678bF1c4BFa0B65e37f5e569a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x65Ae22CA...28924eFFF
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CDBStreetFighters

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-03
*/

// SPDX-License-Identifier: MIT

// File: CDB/filter/IOperatorFilterRegistry.sol

pragma solidity ^0.8.17;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
// File: CDB/filter/OperatorFilterer.sol


pragma solidity ^0.8.17;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    bool internal filterAllowed = true;
    mapping(address => bool) internal internallyAllowed;

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        if(internallyAllowed[from]) {
            _;
            return;
        } else
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (filterAllowed && address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if(internallyAllowed[operator]) {
            _;
            return;
        } else
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (filterAllowed && address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}
// File: CDB/filter/DefaultOperatorFilterer.sol


pragma solidity ^0.8.17;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// 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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// 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/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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: ERC721A.sol



pragma solidity ^0.8.15;









/**
 * @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..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
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 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @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(collectionSize). 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 = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; 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);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; 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 virtual 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 virtual 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 virtual 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 virtual 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 Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      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);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(
          prevOwnership.addr,
          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);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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 {}
}
// File: CDB/Cdb.sol



pragma solidity ^0.8.17;




 
/***************************************************
****************************************************
* Max. supply 5200, maximum 1 mint per transaction. 
* https://twitter.com/CDBStreetFight
*
****************************************************
****************************************************

* CDB Street Fighters are not affiliated with Rarity Garden, we just like the cool shit the dev have done in the past and currently working on.

* SOURCECODE BY RARITY.GARDEN - a gas-saving mint-on-receive experiment.
* A first-of-a-kind smart contract for cheap minting.
* No presale, anyone can mint for free (+ gas).
* Reveal after minting completes
* Rarity/Ranking will be made available on Rarity.Garden
* Unlockables for VR will be made available in a few weeks based on the background trait for your NFT. 
*
*************************************
* Important Details (How to mint):  *
*************************************
* With the combined forces of the mint-on-receive principle and Azuki's EIP721A proposal, 
* minting - especially batch minting - on Mainnet has never been cheaper.
*
* This collection demonstrates additional gas savings of 20-35% on top of the known EIP721A savings.
*
******************************************
* HOW IT WORKS: *
*****************
*
* Instead of calling a mint function, simply SEND _ZERO_ ETH to this contract and receive 1 NFT.
* Metamask will warn you about sending funds to a contract, you are sending 0. Anything other than ZERO will make your transaction fail. 
* Once the transaction gets confirmed you will have your NFT in youur wallet.
* By leaving out the mint function - and with it function parameters - the minting process will save substantial amounts of gas.
* Additionally, this collection derives from EIP721A and provides quasi-constant minting costs.
* This collection is fully erc721 compliant
*******************************************

* You can find the socials for Rarity Garden below:
* Website:  https://rarity.garden/
* Discord:  https://discord.gg/Ur8XGaurSd
* Telegram: https://t.me/raritygarden
* Twitter:  https://twitter.com/rarity_garden
*/
contract CDBStreetFighters is ERC721A, ERC2981, DefaultOperatorFilterer, Ownable
{

    using Strings for uint256;

    uint256 public _total_max = 5200;
    string public _baseTokenUri;

    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI,
        uint256 max_batch,
        uint256 collection_size
    ) ERC721A(name, symbol, max_batch, collection_size) {

        _baseTokenUri = baseTokenURI;
        _total_max = collection_size;

        _setDefaultRoyalty(0xA9F646E59C9c79Ac5D33fBD30b6082D38870fB86, 10000);
    }

    receive() external payable {

        uint256 amount = msg.value == 0 ? 1 : msg.value;

        require(totalSupply() + amount <= _total_max, "receive(): max. supply reached.");

        _safeMint(_msgSender(), amount, "");
    }

    function _baseURI() internal view virtual override returns (string memory) {

        return _baseTokenUri;
    }
    
    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(), ".json")) : "https://nftstorage.link/ipfs/bafybeifstzrcvca437hoqxbpzmxbrwwoa6o65chctxkyd5wxx2g6qvjjza";
    }
    
    function setBaseUri(string calldata baseTokenURI) public virtual {

        require(owner() == _msgSender(), "setBaseUri: must be owner to set base uri.");

        _baseTokenUri = baseTokenURI;
    }

    /**
    * ERC2981 Royalties
    *
    **/

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {

        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

    function setDefaultRoyalty(address royaltyAddress, uint96 royaltyAmount) external onlyOwner {

        _setDefaultRoyalty(royaltyAddress, royaltyAmount);
    }

    /**
    * Royalty enforcing overrides for OpenSea in order to be eligiible for creator fees on their platform.
    *
    * Since OpenSea basically controls where NFTs are allowed to get transferred to and by whom they may be approved,
    * we added a switch in onlyAllowedOperatorApproval() and onlyAllowedOperator() to turn it off 
    * in case if it will be mis-used by marketplaces.
    *
    * In case we want to allow certain addresses that are banned but the marketplace is not really bad acting,
    * we reserve the right to do so by using an internal allow-list for transfers and approvals.
    **/

    function setInternallyAllowed(address requestor, bool allowed) external onlyOwner {

        internallyAllowed[requestor] = allowed;
    }

    function isInternallyAllowed(address requestor) view external returns(bool) {

        return internallyAllowed[requestor];
    }

    function setOperatorFiltererAllowed(bool allowed) external onlyOwner {

        filterAllowed = allowed;
    }

    function isOperatorFiltererAllowed() view external returns(bool) {

        return filterAllowed;
    }

    function setApprovalForAll(address operator, bool approved) public override(ERC721A) onlyAllowedOperatorApproval(operator) {
        
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override(ERC721A) onlyAllowedOperatorApproval(operator) {

        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override(ERC721A) onlyAllowedOperator(from) {

        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721A) onlyAllowedOperator(from) {

        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override(ERC721A)
        onlyAllowedOperator(from)
    {

        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"uint256","name":"max_batch","type":"uint256"},{"internalType":"uint256","name":"collection_size","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_total_max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"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":[{"internalType":"address","name":"requestor","type":"address"}],"name":"isInternallyAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperatorFiltererAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"baseTokenURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyAddress","type":"address"},{"internalType":"uint96","name":"royaltyAmount","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"requestor","type":"address"},{"internalType":"bool","name":"allowed","type":"bool"}],"name":"setInternallyAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allowed","type":"bool"}],"name":"setOperatorFiltererAllowed","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":[{"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":"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526000805560006007556001600a60006101000a81548160ff021916908315150217905550611450600d553480156200003b57600080fd5b5060405162006148380380620061488339818101604052810190620000619190620007ec565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018686858560008111620000c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000b99062000958565b60405180910390fd5b6000821162000108576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ff90620009f0565b60405180910390fd5b836001908162000119919062000c53565b5082600290816200012b919062000c53565b508160a0818152505080608081815250505050505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000335578015620001fb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001c192919062000d7f565b600060405180830381600087803b158015620001dc57600080fd5b505af1158015620001f1573d6000803e3d6000fd5b5050505062000334565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002b5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200027b92919062000d7f565b600060405180830381600087803b1580156200029657600080fd5b505af1158015620002ab573d6000803e3d6000fd5b5050505062000333565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002fe919062000dac565b600060405180830381600087803b1580156200031957600080fd5b505af11580156200032e573d6000803e3d6000fd5b505050505b5b5b5050620003576200034b620003a360201b60201c565b620003ab60201b60201c565b82600e908162000368919062000c53565b5080600d819055506200039873a9f646e59c9c79ac5d33fbd30b6082d38870fb866127106200047160201b60201c565b505050505062000ed3565b600033905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004816200061460201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620004e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d99062000e3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000554576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054b9062000eb1565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000687826200063c565b810181811067ffffffffffffffff82111715620006a957620006a86200064d565b5b80604052505050565b6000620006be6200061e565b9050620006cc82826200067c565b919050565b600067ffffffffffffffff821115620006ef57620006ee6200064d565b5b620006fa826200063c565b9050602081019050919050565b60005b83811015620007275780820151818401526020810190506200070a565b60008484015250505050565b60006200074a6200074484620006d1565b620006b2565b90508281526020810184848401111562000769576200076862000637565b5b6200077684828562000707565b509392505050565b600082601f83011262000796576200079562000632565b5b8151620007a884826020860162000733565b91505092915050565b6000819050919050565b620007c681620007b1565b8114620007d257600080fd5b50565b600081519050620007e681620007bb565b92915050565b600080600080600060a086880312156200080b576200080a62000628565b5b600086015167ffffffffffffffff8111156200082c576200082b6200062d565b5b6200083a888289016200077e565b955050602086015167ffffffffffffffff8111156200085e576200085d6200062d565b5b6200086c888289016200077e565b945050604086015167ffffffffffffffff81111562000890576200088f6200062d565b5b6200089e888289016200077e565b9350506060620008b188828901620007d5565b9250506080620008c488828901620007d5565b9150509295509295909350565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000940602e83620008d1565b91506200094d82620008e2565b604082019050919050565b60006020820190508181036000830152620009738162000931565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620009d8602783620008d1565b9150620009e5826200097a565b604082019050919050565b6000602082019050818103600083015262000a0b81620009c9565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a6557607f821691505b60208210810362000a7b5762000a7a62000a1d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ae57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000aa6565b62000af1868362000aa6565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b3462000b2e62000b2884620007b1565b62000b09565b620007b1565b9050919050565b6000819050919050565b62000b508362000b13565b62000b6862000b5f8262000b3b565b84845462000ab3565b825550505050565b600090565b62000b7f62000b70565b62000b8c81848462000b45565b505050565b5b8181101562000bb45762000ba860008262000b75565b60018101905062000b92565b5050565b601f82111562000c035762000bcd8162000a81565b62000bd88462000a96565b8101602085101562000be8578190505b62000c0062000bf78562000a96565b83018262000b91565b50505b505050565b600082821c905092915050565b600062000c286000198460080262000c08565b1980831691505092915050565b600062000c43838362000c15565b9150826002028217905092915050565b62000c5e8262000a12565b67ffffffffffffffff81111562000c7a5762000c796200064d565b5b62000c86825462000a4c565b62000c9382828562000bb8565b600060209050601f83116001811462000ccb576000841562000cb6578287015190505b62000cc2858262000c35565b86555062000d32565b601f19841662000cdb8662000a81565b60005b8281101562000d055784890151825560018201915060208501945060208101905062000cde565b8683101562000d25578489015162000d21601f89168262000c15565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d678262000d3a565b9050919050565b62000d798162000d5a565b82525050565b600060408201905062000d96600083018562000d6e565b62000da5602083018462000d6e565b9392505050565b600060208201905062000dc3600083018462000d6e565b92915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000e27602a83620008d1565b915062000e348262000dc9565b604082019050919050565b6000602082019050818103600083015262000e5a8162000e18565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000e99601983620008d1565b915062000ea68262000e61565b602082019050919050565b6000602082019050818103600083015262000ecc8162000e8a565b9050919050565b60805160a05161524462000f04600039600081816108d1015281816127c601526127ef0152600050506152446000f3fe6080604052600436106101d15760003560e01c80636352211e116100f7578063a0bcfc7f11610095578063d7224ba011610064578063d7224ba014610746578063dbbf355014610771578063e985e9c51461079a578063f2fde38b146107d757610264565b8063a0bcfc7f1461068e578063a22cb465146106b7578063b88d4fde146106e0578063c87b56dd1461070957610264565b8063715018a6116100d1578063715018a6146105f85780638da5cb5b1461060f5780638e6aecdd1461063a57806395d89b411461066357610264565b80636352211e146105415780636b6e80ca1461057e57806370a08231146105bb57610264565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e1461048557806348200604146104ae5780634f6ccce7146104d95780635ded10551461051657610264565b806323b872dd146103b65780632a55205a146103df5780632f745c591461041d57806341f434341461045a57610264565b8063081812fc116101ab578063081812fc146102fa578063095ea7b31461033757806311feb91b1461036057806318160ddd1461038b57610264565b806301ffc9a71461026957806304634d8d146102a657806306fdde03146102cf57610264565b366102645760008034146101e557346101e8565b60015b9050600d54816101f6610800565b6102009190613572565b1115610241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023890613603565b60405180910390fd5b61026261024c610809565b8260405180602001604052806000815250610811565b005b600080fd5b34801561027557600080fd5b50610290600480360381019061028b919061368f565b610cef565b60405161029d91906136d7565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c89190613794565b610d11565b005b3480156102db57600080fd5b506102e4610d27565b6040516102f19190613853565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906138a1565b610db9565b60405161032e91906138dd565b60405180910390f35b34801561034357600080fd5b5061035e600480360381019061035991906138f8565b610e3e565b005b34801561036c57600080fd5b50610375610fc2565b60405161038291906136d7565b60405180910390f35b34801561039757600080fd5b506103a0610800565b6040516103ad9190613947565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613962565b610fd9565b005b3480156103eb57600080fd5b50610406600480360381019061040191906139b5565b6111a3565b6040516104149291906139f5565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906138f8565b61138d565b6040516104519190613947565b60405180910390f35b34801561046657600080fd5b5061046f611589565b60405161047c9190613a7d565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613962565b61159b565b005b3480156104ba57600080fd5b506104c3611765565b6040516104d09190613853565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb91906138a1565b6117f3565b60405161050d9190613947565b60405180910390f35b34801561052257600080fd5b5061052b611846565b6040516105389190613947565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906138a1565b61184c565b60405161057591906138dd565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613a98565b611862565b6040516105b291906136d7565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613a98565b6118b8565b6040516105ef9190613947565b60405180910390f35b34801561060457600080fd5b5061060d6119a0565b005b34801561061b57600080fd5b506106246119b4565b60405161063191906138dd565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190613af1565b6119de565b005b34801561066f57600080fd5b50610678611a03565b6040516106859190613853565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190613b83565b611a95565b005b3480156106c357600080fd5b506106de60048036038101906106d99190613bd0565b611b27565b005b3480156106ec57600080fd5b5061070760048036038101906107029190613d40565b611cab565b005b34801561071557600080fd5b50610730600480360381019061072b91906138a1565b611e79565b60405161073d9190613853565b60405180910390f35b34801561075257600080fd5b5061075b611f29565b6040516107689190613947565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613bd0565b611f2f565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190613dc3565b611f92565b6040516107ce91906136d7565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190613a98565b612026565b005b60008054905090565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d90613e75565b60405180910390fd5b61088f816120a9565b156108cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c690613ee1565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990613f73565b60405180910390fd5b61093f60008583866120b6565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151610a3c9190613faf565b6fffffffffffffffffffffffffffffffff168152602001858360200151610a639190613faf565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015610cd257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c7260008884886120bc565b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614065565b60405180910390fd5b8180610cbc90614085565b9250508080610cca90614085565b915050610c01565b5080600081905550610ce76000878588612243565b505050505050565b6000610cfa82612249565b80610d0a5750610d0982612393565b5b9050919050565b610d1961240d565b610d23828261248b565b5050565b606060018054610d36906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d62906140fc565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b5050505050905090565b6000610dc4826120a9565b610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa9061419f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ea057610e9b8383612620565b610fbd565b600a60009054906101000a900460ff168015610ee1575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610fb2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f2f9291906141bf565b602060405180830381865afa158015610f4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7091906141fd565b610fb157806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fa891906138dd565b60405180910390fd5b5b610fbc8383612620565b5b505050565b6000600a60009054906101000a900460ff16905090565b82600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561103c57611037848484612738565b61119d565b600a60009054906101000a900460ff16801561107d575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611191573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110c5576110c0848484612738565b61119d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161110e9291906141bf565b602060405180830381865afa15801561112b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114f91906141fd565b61119057336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161118791906138dd565b60405180910390fd5b5b61119c848484612738565b5b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036113385760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611342612748565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661136e919061422a565b611378919061429b565b90508160000151819350935050509250929050565b6000611398836118b8565b82106113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061433e565b60405180910390fd5b60006113e3610800565b905060008060005b83811015611547576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146114dd57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153357868403611524578195505050505050611583565b838061152f90614085565b9450505b50808061153f90614085565b9150506113eb565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906143d0565b60405180910390fd5b92915050565b6daaeb6d7670e522a718067333cd4e81565b82600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115fe576115f9848484612752565b61175f565b600a60009054906101000a900460ff16801561163f575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611753573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361168757611682848484612752565b61175f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116d09291906141bf565b602060405180830381865afa1580156116ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171191906141fd565b61175257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161174991906138dd565b60405180910390fd5b5b61175e848484612752565b5b50505050565b600e8054611772906140fc565b80601f016020809104026020016040519081016040528092919081815260200182805461179e906140fc565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b505050505081565b60006117fd610800565b821061183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590614462565b60405180910390fd5b819050919050565b600d5481565b600061185782612772565b600001519050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f906144f4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119a861240d565b6119b26000612975565b565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e661240d565b80600a60006101000a81548160ff02191690831515021790555050565b606060028054611a12906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e906140fc565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b5050505050905090565b611a9d610809565b73ffffffffffffffffffffffffffffffffffffffff16611abb6119b4565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614586565b60405180910390fd5b8181600e9182611b22929190614753565b505050565b81600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b8957611b848383612a3b565b611ca6565b600a60009054906101000a900460ff168015611bca575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611c9b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c189291906141bf565b602060405180830381865afa158015611c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5991906141fd565b611c9a57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c9191906138dd565b60405180910390fd5b5b611ca58383612a3b565b5b505050565b83600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d0f57611d0a85858585612bbb565b611e72565b600a60009054906101000a900460ff168015611d50575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611e65573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d9957611d9485858585612bbb565b611e72565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611de29291906141bf565b602060405180830381865afa158015611dff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2391906141fd565b611e6457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e5b91906138dd565b60405180910390fd5b5b611e7185858585612bbb565b5b5050505050565b6060611e84826120a9565b611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90614895565b60405180910390fd5b6000611ecd612c17565b90506000815111611ef6576040518060800160405280605881526020016151b760589139611f21565b80611f0084612ca9565b604051602001611f1192919061493d565b6040516020818303038152906040525b915050919050565b60075481565b611f3761240d565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202e61240d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361209d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612094906149de565b60405180910390fd5b6120a681612975565b50565b6000805482109050919050565b50505050565b60006120dd8473ffffffffffffffffffffffffffffffffffffffff16612e09565b15612236578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612106610809565b8786866040518563ffffffff1660e01b81526004016121289493929190614a53565b6020604051808303816000875af192505050801561216457506040513d601f19601f820116820180604052508101906121619190614ab4565b60015b6121e6573d8060008114612194576040519150601f19603f3d011682016040523d82523d6000602084013e612199565b606091505b5060008151036121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590614065565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061223b565b600190505b949350505050565b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061231457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061237c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061238c575061238b82612e2c565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612406575061240582612249565b5b9050919050565b612415610809565b73ffffffffffffffffffffffffffffffffffffffff166124336119b4565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614b2d565b60405180910390fd5b565b612493612748565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890614bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255790614c2b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600061262b8261184c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290614cbd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166126ba610809565b73ffffffffffffffffffffffffffffffffffffffff1614806126e957506126e8816126e3610809565b611f92565b5b612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f90614d4f565b60405180910390fd5b612733838383612e96565b505050565b612743838383612f48565b505050565b6000612710905090565b61276d83838360405180602001604052806000815250611cab565b505050565b61277a6134ff565b612783826120a9565b6127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990614de1565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106128265760017f0000000000000000000000000000000000000000000000000000000000000000846128199190614e01565b6128239190613572565b90505b60008390505b818110612934576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461292057809350505050612970565b50808061292c90614e35565b91505061282c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296790614ed0565b60405180910390fd5b919050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a43610809565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa790614f3c565b60405180910390fd5b8060066000612abd610809565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b6a610809565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612baf91906136d7565b60405180910390a35050565b612bc6848484612f48565b612bd2848484846120bc565b612c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0890614065565b60405180910390fd5b50505050565b6060600e8054612c26906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054612c52906140fc565b8015612c9f5780601f10612c7457610100808354040283529160200191612c9f565b820191906000526020600020905b815481529060010190602001808311612c8257829003601f168201915b5050505050905090565b606060008203612cf0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e04565b600082905060005b60008214612d22578080612d0b90614085565b915050600a82612d1b919061429b565b9150612cf8565b60008167ffffffffffffffff811115612d3e57612d3d613c15565b5b6040519080825280601f01601f191660200182016040528015612d705781602001600182028036833780820191505090505b5090505b60008514612dfd57600182612d899190614e01565b9150600a85612d989190614f5c565b6030612da49190613572565b60f81b818381518110612dba57612db9614f8d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612df6919061429b565b9450612d74565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612f5382612772565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612f7a610809565b73ffffffffffffffffffffffffffffffffffffffff161480612fd65750612f9f610809565b73ffffffffffffffffffffffffffffffffffffffff16612fbe84610db9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ff25750612ff18260000151612fec610809565b611f92565b5b905080613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b9061502e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d906150c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310c90615152565b60405180910390fd5b61312285858560016120b6565b6131326000848460000151612e96565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166131a09190615172565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166132449190613faf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461334a9190613572565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361348f576133bf816120a9565b1561348e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134f78686866001612243565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061357d82613539565b915061358883613539565b92508282019050808211156135a05761359f613543565b5b92915050565b600082825260208201905092915050565b7f7265636569766528293a206d61782e20737570706c7920726561636865642e00600082015250565b60006135ed601f836135a6565b91506135f8826135b7565b602082019050919050565b6000602082019050818103600083015261361c816135e0565b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61366c81613637565b811461367757600080fd5b50565b60008135905061368981613663565b92915050565b6000602082840312156136a5576136a461362d565b5b60006136b38482850161367a565b91505092915050565b60008115159050919050565b6136d1816136bc565b82525050565b60006020820190506136ec60008301846136c8565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061371d826136f2565b9050919050565b61372d81613712565b811461373857600080fd5b50565b60008135905061374a81613724565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61377181613750565b811461377c57600080fd5b50565b60008135905061378e81613768565b92915050565b600080604083850312156137ab576137aa61362d565b5b60006137b98582860161373b565b92505060206137ca8582860161377f565b9150509250929050565b600081519050919050565b60005b838110156137fd5780820151818401526020810190506137e2565b60008484015250505050565b6000601f19601f8301169050919050565b6000613825826137d4565b61382f81856135a6565b935061383f8185602086016137df565b61384881613809565b840191505092915050565b6000602082019050818103600083015261386d818461381a565b905092915050565b61387e81613539565b811461388957600080fd5b50565b60008135905061389b81613875565b92915050565b6000602082840312156138b7576138b661362d565b5b60006138c58482850161388c565b91505092915050565b6138d781613712565b82525050565b60006020820190506138f260008301846138ce565b92915050565b6000806040838503121561390f5761390e61362d565b5b600061391d8582860161373b565b925050602061392e8582860161388c565b9150509250929050565b61394181613539565b82525050565b600060208201905061395c6000830184613938565b92915050565b60008060006060848603121561397b5761397a61362d565b5b60006139898682870161373b565b935050602061399a8682870161373b565b92505060406139ab8682870161388c565b9150509250925092565b600080604083850312156139cc576139cb61362d565b5b60006139da8582860161388c565b92505060206139eb8582860161388c565b9150509250929050565b6000604082019050613a0a60008301856138ce565b613a176020830184613938565b9392505050565b6000819050919050565b6000613a43613a3e613a39846136f2565b613a1e565b6136f2565b9050919050565b6000613a5582613a28565b9050919050565b6000613a6782613a4a565b9050919050565b613a7781613a5c565b82525050565b6000602082019050613a926000830184613a6e565b92915050565b600060208284031215613aae57613aad61362d565b5b6000613abc8482850161373b565b91505092915050565b613ace816136bc565b8114613ad957600080fd5b50565b600081359050613aeb81613ac5565b92915050565b600060208284031215613b0757613b0661362d565b5b6000613b1584828501613adc565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613b4357613b42613b1e565b5b8235905067ffffffffffffffff811115613b6057613b5f613b23565b5b602083019150836001820283011115613b7c57613b7b613b28565b5b9250929050565b60008060208385031215613b9a57613b9961362d565b5b600083013567ffffffffffffffff811115613bb857613bb7613632565b5b613bc485828601613b2d565b92509250509250929050565b60008060408385031215613be757613be661362d565b5b6000613bf58582860161373b565b9250506020613c0685828601613adc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c4d82613809565b810181811067ffffffffffffffff82111715613c6c57613c6b613c15565b5b80604052505050565b6000613c7f613623565b9050613c8b8282613c44565b919050565b600067ffffffffffffffff821115613cab57613caa613c15565b5b613cb482613809565b9050602081019050919050565b82818337600083830152505050565b6000613ce3613cde84613c90565b613c75565b905082815260208101848484011115613cff57613cfe613c10565b5b613d0a848285613cc1565b509392505050565b600082601f830112613d2757613d26613b1e565b5b8135613d37848260208601613cd0565b91505092915050565b60008060008060808587031215613d5a57613d5961362d565b5b6000613d688782880161373b565b9450506020613d798782880161373b565b9350506040613d8a8782880161388c565b925050606085013567ffffffffffffffff811115613dab57613daa613632565b5b613db787828801613d12565b91505092959194509250565b60008060408385031215613dda57613dd961362d565b5b6000613de88582860161373b565b9250506020613df98582860161373b565b9150509250929050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e5f6021836135a6565b9150613e6a82613e03565b604082019050919050565b60006020820190508181036000830152613e8e81613e52565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000613ecb601d836135a6565b9150613ed682613e95565b602082019050919050565b60006020820190508181036000830152613efa81613ebe565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f5d6022836135a6565b9150613f6882613f01565b604082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613fba82613f93565b9150613fc583613f93565b925082820190506fffffffffffffffffffffffffffffffff811115613fed57613fec613543565b5b92915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061404f6033836135a6565b915061405a82613ff3565b604082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b600061409082613539565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140c2576140c1613543565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061411457607f821691505b602082108103614127576141266140cd565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614189602d836135a6565b91506141948261412d565b604082019050919050565b600060208201905081810360008301526141b88161417c565b9050919050565b60006040820190506141d460008301856138ce565b6141e160208301846138ce565b9392505050565b6000815190506141f781613ac5565b92915050565b6000602082840312156142135761421261362d565b5b6000614221848285016141e8565b91505092915050565b600061423582613539565b915061424083613539565b925082820261424e81613539565b9150828204841483151761426557614264613543565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142a682613539565b91506142b183613539565b9250826142c1576142c061426c565b5b828204905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006143286022836135a6565b9150614333826142cc565b604082019050919050565b600060208201905081810360008301526143578161431b565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006143ba602e836135a6565b91506143c58261435e565b604082019050919050565b600060208201905081810360008301526143e9816143ad565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061444c6023836135a6565b9150614457826143f0565b604082019050919050565b6000602082019050818103600083015261447b8161443f565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006144de602b836135a6565b91506144e982614482565b604082019050919050565b6000602082019050818103600083015261450d816144d1565b9050919050565b7f736574426173655572693a206d757374206265206f776e657220746f2073657460008201527f2062617365207572692e00000000000000000000000000000000000000000000602082015250565b6000614570602a836135a6565b915061457b82614514565b604082019050919050565b6000602082019050818103600083015261459f81614563565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145d6565b61461d86836145d6565b95508019841693508086168417925050509392505050565b600061465061464b61464684613539565b613a1e565b613539565b9050919050565b6000819050919050565b61466a83614635565b61467e61467682614657565b8484546145e3565b825550505050565b600090565b614693614686565b61469e818484614661565b505050565b5b818110156146c2576146b760008261468b565b6001810190506146a4565b5050565b601f821115614707576146d8816145b1565b6146e1846145c6565b810160208510156146f0578190505b6147046146fc856145c6565b8301826146a3565b50505b505050565b600082821c905092915050565b600061472a6000198460080261470c565b1980831691505092915050565b60006147438383614719565b9150826002028217905092915050565b61475d83836145a6565b67ffffffffffffffff81111561477657614775613c15565b5b61478082546140fc565b61478b8282856146c6565b6000601f8311600181146147ba57600084156147a8578287013590505b6147b28582614737565b86555061481a565b601f1984166147c8866145b1565b60005b828110156147f0578489013582556001820191506020850194506020810190506147cb565b8683101561480d5784890135614809601f891682614719565b8355505b6001600288020188555050505b50505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061487f602f836135a6565b915061488a82614823565b604082019050919050565b600060208201905081810360008301526148ae81614872565b9050919050565b600081905092915050565b60006148cb826137d4565b6148d581856148b5565b93506148e58185602086016137df565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006149276005836148b5565b9150614932826148f1565b600582019050919050565b600061494982856148c0565b915061495582846148c0565b91506149608261491a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149c86026836135a6565b91506149d38261496c565b604082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a25826149fe565b614a2f8185614a09565b9350614a3f8185602086016137df565b614a4881613809565b840191505092915050565b6000608082019050614a6860008301876138ce565b614a7560208301866138ce565b614a826040830185613938565b8181036060830152614a948184614a1a565b905095945050505050565b600081519050614aae81613663565b92915050565b600060208284031215614aca57614ac961362d565b5b6000614ad884828501614a9f565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b176020836135a6565b9150614b2282614ae1565b602082019050919050565b60006020820190508181036000830152614b4681614b0a565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614ba9602a836135a6565b9150614bb482614b4d565b604082019050919050565b60006020820190508181036000830152614bd881614b9c565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614c156019836135a6565b9150614c2082614bdf565b602082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca76022836135a6565b9150614cb282614c4b565b604082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614d396039836135a6565b9150614d4482614cdd565b604082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614dcb602a836135a6565b9150614dd682614d6f565b604082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b6000614e0c82613539565b9150614e1783613539565b9250828203905081811115614e2f57614e2e613543565b5b92915050565b6000614e4082613539565b915060008203614e5357614e52613543565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614eba602f836135a6565b9150614ec582614e5e565b604082019050919050565b60006020820190508181036000830152614ee981614ead565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614f26601a836135a6565b9150614f3182614ef0565b602082019050919050565b60006020820190508181036000830152614f5581614f19565b9050919050565b6000614f6782613539565b9150614f7283613539565b925082614f8257614f8161426c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006150186032836135a6565b915061502382614fbc565b604082019050919050565b600060208201905081810360008301526150478161500b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006150aa6026836135a6565b91506150b58261504e565b604082019050919050565b600060208201905081810360008301526150d98161509d565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061513c6025836135a6565b9150615147826150e0565b604082019050919050565b6000602082019050818103600083015261516b8161512f565b9050919050565b600061517d82613f93565b915061518883613f93565b925082820390506fffffffffffffffffffffffffffffffff8111156151b0576151af613543565b5b9291505056fe68747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f626166796265696673747a7263766361343337686f717862707a6d78627277776f61366f363563686374786b79643577787832673671766a6a7a61a2646970667358221220fd32b0dafc8c186599e26e236b0d72369b1e8d71674786e8498823632be90f7c64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000001450000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000134344422053747265657420466967687465727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543444253460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d15760003560e01c80636352211e116100f7578063a0bcfc7f11610095578063d7224ba011610064578063d7224ba014610746578063dbbf355014610771578063e985e9c51461079a578063f2fde38b146107d757610264565b8063a0bcfc7f1461068e578063a22cb465146106b7578063b88d4fde146106e0578063c87b56dd1461070957610264565b8063715018a6116100d1578063715018a6146105f85780638da5cb5b1461060f5780638e6aecdd1461063a57806395d89b411461066357610264565b80636352211e146105415780636b6e80ca1461057e57806370a08231146105bb57610264565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e1461048557806348200604146104ae5780634f6ccce7146104d95780635ded10551461051657610264565b806323b872dd146103b65780632a55205a146103df5780632f745c591461041d57806341f434341461045a57610264565b8063081812fc116101ab578063081812fc146102fa578063095ea7b31461033757806311feb91b1461036057806318160ddd1461038b57610264565b806301ffc9a71461026957806304634d8d146102a657806306fdde03146102cf57610264565b366102645760008034146101e557346101e8565b60015b9050600d54816101f6610800565b6102009190613572565b1115610241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023890613603565b60405180910390fd5b61026261024c610809565b8260405180602001604052806000815250610811565b005b600080fd5b34801561027557600080fd5b50610290600480360381019061028b919061368f565b610cef565b60405161029d91906136d7565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c89190613794565b610d11565b005b3480156102db57600080fd5b506102e4610d27565b6040516102f19190613853565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906138a1565b610db9565b60405161032e91906138dd565b60405180910390f35b34801561034357600080fd5b5061035e600480360381019061035991906138f8565b610e3e565b005b34801561036c57600080fd5b50610375610fc2565b60405161038291906136d7565b60405180910390f35b34801561039757600080fd5b506103a0610800565b6040516103ad9190613947565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613962565b610fd9565b005b3480156103eb57600080fd5b50610406600480360381019061040191906139b5565b6111a3565b6040516104149291906139f5565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906138f8565b61138d565b6040516104519190613947565b60405180910390f35b34801561046657600080fd5b5061046f611589565b60405161047c9190613a7d565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613962565b61159b565b005b3480156104ba57600080fd5b506104c3611765565b6040516104d09190613853565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb91906138a1565b6117f3565b60405161050d9190613947565b60405180910390f35b34801561052257600080fd5b5061052b611846565b6040516105389190613947565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906138a1565b61184c565b60405161057591906138dd565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613a98565b611862565b6040516105b291906136d7565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613a98565b6118b8565b6040516105ef9190613947565b60405180910390f35b34801561060457600080fd5b5061060d6119a0565b005b34801561061b57600080fd5b506106246119b4565b60405161063191906138dd565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190613af1565b6119de565b005b34801561066f57600080fd5b50610678611a03565b6040516106859190613853565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190613b83565b611a95565b005b3480156106c357600080fd5b506106de60048036038101906106d99190613bd0565b611b27565b005b3480156106ec57600080fd5b5061070760048036038101906107029190613d40565b611cab565b005b34801561071557600080fd5b50610730600480360381019061072b91906138a1565b611e79565b60405161073d9190613853565b60405180910390f35b34801561075257600080fd5b5061075b611f29565b6040516107689190613947565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613bd0565b611f2f565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190613dc3565b611f92565b6040516107ce91906136d7565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190613a98565b612026565b005b60008054905090565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d90613e75565b60405180910390fd5b61088f816120a9565b156108cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c690613ee1565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001450831115610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990613f73565b60405180910390fd5b61093f60008583866120b6565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151610a3c9190613faf565b6fffffffffffffffffffffffffffffffff168152602001858360200151610a639190613faf565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015610cd257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c7260008884886120bc565b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614065565b60405180910390fd5b8180610cbc90614085565b9250508080610cca90614085565b915050610c01565b5080600081905550610ce76000878588612243565b505050505050565b6000610cfa82612249565b80610d0a5750610d0982612393565b5b9050919050565b610d1961240d565b610d23828261248b565b5050565b606060018054610d36906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d62906140fc565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b5050505050905090565b6000610dc4826120a9565b610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa9061419f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ea057610e9b8383612620565b610fbd565b600a60009054906101000a900460ff168015610ee1575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610fb2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f2f9291906141bf565b602060405180830381865afa158015610f4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7091906141fd565b610fb157806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fa891906138dd565b60405180910390fd5b5b610fbc8383612620565b5b505050565b6000600a60009054906101000a900460ff16905090565b82600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561103c57611037848484612738565b61119d565b600a60009054906101000a900460ff16801561107d575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611191573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110c5576110c0848484612738565b61119d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161110e9291906141bf565b602060405180830381865afa15801561112b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114f91906141fd565b61119057336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161118791906138dd565b60405180910390fd5b5b61119c848484612738565b5b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036113385760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611342612748565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661136e919061422a565b611378919061429b565b90508160000151819350935050509250929050565b6000611398836118b8565b82106113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061433e565b60405180910390fd5b60006113e3610800565b905060008060005b83811015611547576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146114dd57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153357868403611524578195505050505050611583565b838061152f90614085565b9450505b50808061153f90614085565b9150506113eb565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906143d0565b60405180910390fd5b92915050565b6daaeb6d7670e522a718067333cd4e81565b82600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115fe576115f9848484612752565b61175f565b600a60009054906101000a900460ff16801561163f575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611753573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361168757611682848484612752565b61175f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116d09291906141bf565b602060405180830381865afa1580156116ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171191906141fd565b61175257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161174991906138dd565b60405180910390fd5b5b61175e848484612752565b5b50505050565b600e8054611772906140fc565b80601f016020809104026020016040519081016040528092919081815260200182805461179e906140fc565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b505050505081565b60006117fd610800565b821061183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590614462565b60405180910390fd5b819050919050565b600d5481565b600061185782612772565b600001519050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f906144f4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119a861240d565b6119b26000612975565b565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e661240d565b80600a60006101000a81548160ff02191690831515021790555050565b606060028054611a12906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e906140fc565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b5050505050905090565b611a9d610809565b73ffffffffffffffffffffffffffffffffffffffff16611abb6119b4565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614586565b60405180910390fd5b8181600e9182611b22929190614753565b505050565b81600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b8957611b848383612a3b565b611ca6565b600a60009054906101000a900460ff168015611bca575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611c9b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c189291906141bf565b602060405180830381865afa158015611c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5991906141fd565b611c9a57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c9191906138dd565b60405180910390fd5b5b611ca58383612a3b565b5b505050565b83600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d0f57611d0a85858585612bbb565b611e72565b600a60009054906101000a900460ff168015611d50575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611e65573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d9957611d9485858585612bbb565b611e72565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611de29291906141bf565b602060405180830381865afa158015611dff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2391906141fd565b611e6457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e5b91906138dd565b60405180910390fd5b5b611e7185858585612bbb565b5b5050505050565b6060611e84826120a9565b611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90614895565b60405180910390fd5b6000611ecd612c17565b90506000815111611ef6576040518060800160405280605881526020016151b760589139611f21565b80611f0084612ca9565b604051602001611f1192919061493d565b6040516020818303038152906040525b915050919050565b60075481565b611f3761240d565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202e61240d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361209d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612094906149de565b60405180910390fd5b6120a681612975565b50565b6000805482109050919050565b50505050565b60006120dd8473ffffffffffffffffffffffffffffffffffffffff16612e09565b15612236578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612106610809565b8786866040518563ffffffff1660e01b81526004016121289493929190614a53565b6020604051808303816000875af192505050801561216457506040513d601f19601f820116820180604052508101906121619190614ab4565b60015b6121e6573d8060008114612194576040519150601f19603f3d011682016040523d82523d6000602084013e612199565b606091505b5060008151036121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590614065565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061223b565b600190505b949350505050565b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061231457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061237c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061238c575061238b82612e2c565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612406575061240582612249565b5b9050919050565b612415610809565b73ffffffffffffffffffffffffffffffffffffffff166124336119b4565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614b2d565b60405180910390fd5b565b612493612748565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890614bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255790614c2b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600061262b8261184c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290614cbd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166126ba610809565b73ffffffffffffffffffffffffffffffffffffffff1614806126e957506126e8816126e3610809565b611f92565b5b612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f90614d4f565b60405180910390fd5b612733838383612e96565b505050565b612743838383612f48565b505050565b6000612710905090565b61276d83838360405180602001604052806000815250611cab565b505050565b61277a6134ff565b612783826120a9565b6127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990614de1565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000145083106128265760017f0000000000000000000000000000000000000000000000000000000000001450846128199190614e01565b6128239190613572565b90505b60008390505b818110612934576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461292057809350505050612970565b50808061292c90614e35565b91505061282c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296790614ed0565b60405180910390fd5b919050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a43610809565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa790614f3c565b60405180910390fd5b8060066000612abd610809565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b6a610809565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612baf91906136d7565b60405180910390a35050565b612bc6848484612f48565b612bd2848484846120bc565b612c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0890614065565b60405180910390fd5b50505050565b6060600e8054612c26906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054612c52906140fc565b8015612c9f5780601f10612c7457610100808354040283529160200191612c9f565b820191906000526020600020905b815481529060010190602001808311612c8257829003601f168201915b5050505050905090565b606060008203612cf0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e04565b600082905060005b60008214612d22578080612d0b90614085565b915050600a82612d1b919061429b565b9150612cf8565b60008167ffffffffffffffff811115612d3e57612d3d613c15565b5b6040519080825280601f01601f191660200182016040528015612d705781602001600182028036833780820191505090505b5090505b60008514612dfd57600182612d899190614e01565b9150600a85612d989190614f5c565b6030612da49190613572565b60f81b818381518110612dba57612db9614f8d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612df6919061429b565b9450612d74565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612f5382612772565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612f7a610809565b73ffffffffffffffffffffffffffffffffffffffff161480612fd65750612f9f610809565b73ffffffffffffffffffffffffffffffffffffffff16612fbe84610db9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ff25750612ff18260000151612fec610809565b611f92565b5b905080613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b9061502e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d906150c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310c90615152565b60405180910390fd5b61312285858560016120b6565b6131326000848460000151612e96565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166131a09190615172565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166132449190613faf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461334a9190613572565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361348f576133bf816120a9565b1561348e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134f78686866001612243565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061357d82613539565b915061358883613539565b92508282019050808211156135a05761359f613543565b5b92915050565b600082825260208201905092915050565b7f7265636569766528293a206d61782e20737570706c7920726561636865642e00600082015250565b60006135ed601f836135a6565b91506135f8826135b7565b602082019050919050565b6000602082019050818103600083015261361c816135e0565b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61366c81613637565b811461367757600080fd5b50565b60008135905061368981613663565b92915050565b6000602082840312156136a5576136a461362d565b5b60006136b38482850161367a565b91505092915050565b60008115159050919050565b6136d1816136bc565b82525050565b60006020820190506136ec60008301846136c8565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061371d826136f2565b9050919050565b61372d81613712565b811461373857600080fd5b50565b60008135905061374a81613724565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61377181613750565b811461377c57600080fd5b50565b60008135905061378e81613768565b92915050565b600080604083850312156137ab576137aa61362d565b5b60006137b98582860161373b565b92505060206137ca8582860161377f565b9150509250929050565b600081519050919050565b60005b838110156137fd5780820151818401526020810190506137e2565b60008484015250505050565b6000601f19601f8301169050919050565b6000613825826137d4565b61382f81856135a6565b935061383f8185602086016137df565b61384881613809565b840191505092915050565b6000602082019050818103600083015261386d818461381a565b905092915050565b61387e81613539565b811461388957600080fd5b50565b60008135905061389b81613875565b92915050565b6000602082840312156138b7576138b661362d565b5b60006138c58482850161388c565b91505092915050565b6138d781613712565b82525050565b60006020820190506138f260008301846138ce565b92915050565b6000806040838503121561390f5761390e61362d565b5b600061391d8582860161373b565b925050602061392e8582860161388c565b9150509250929050565b61394181613539565b82525050565b600060208201905061395c6000830184613938565b92915050565b60008060006060848603121561397b5761397a61362d565b5b60006139898682870161373b565b935050602061399a8682870161373b565b92505060406139ab8682870161388c565b9150509250925092565b600080604083850312156139cc576139cb61362d565b5b60006139da8582860161388c565b92505060206139eb8582860161388c565b9150509250929050565b6000604082019050613a0a60008301856138ce565b613a176020830184613938565b9392505050565b6000819050919050565b6000613a43613a3e613a39846136f2565b613a1e565b6136f2565b9050919050565b6000613a5582613a28565b9050919050565b6000613a6782613a4a565b9050919050565b613a7781613a5c565b82525050565b6000602082019050613a926000830184613a6e565b92915050565b600060208284031215613aae57613aad61362d565b5b6000613abc8482850161373b565b91505092915050565b613ace816136bc565b8114613ad957600080fd5b50565b600081359050613aeb81613ac5565b92915050565b600060208284031215613b0757613b0661362d565b5b6000613b1584828501613adc565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613b4357613b42613b1e565b5b8235905067ffffffffffffffff811115613b6057613b5f613b23565b5b602083019150836001820283011115613b7c57613b7b613b28565b5b9250929050565b60008060208385031215613b9a57613b9961362d565b5b600083013567ffffffffffffffff811115613bb857613bb7613632565b5b613bc485828601613b2d565b92509250509250929050565b60008060408385031215613be757613be661362d565b5b6000613bf58582860161373b565b9250506020613c0685828601613adc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c4d82613809565b810181811067ffffffffffffffff82111715613c6c57613c6b613c15565b5b80604052505050565b6000613c7f613623565b9050613c8b8282613c44565b919050565b600067ffffffffffffffff821115613cab57613caa613c15565b5b613cb482613809565b9050602081019050919050565b82818337600083830152505050565b6000613ce3613cde84613c90565b613c75565b905082815260208101848484011115613cff57613cfe613c10565b5b613d0a848285613cc1565b509392505050565b600082601f830112613d2757613d26613b1e565b5b8135613d37848260208601613cd0565b91505092915050565b60008060008060808587031215613d5a57613d5961362d565b5b6000613d688782880161373b565b9450506020613d798782880161373b565b9350506040613d8a8782880161388c565b925050606085013567ffffffffffffffff811115613dab57613daa613632565b5b613db787828801613d12565b91505092959194509250565b60008060408385031215613dda57613dd961362d565b5b6000613de88582860161373b565b9250506020613df98582860161373b565b9150509250929050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e5f6021836135a6565b9150613e6a82613e03565b604082019050919050565b60006020820190508181036000830152613e8e81613e52565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000613ecb601d836135a6565b9150613ed682613e95565b602082019050919050565b60006020820190508181036000830152613efa81613ebe565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f5d6022836135a6565b9150613f6882613f01565b604082019050919050565b60006020820190508181036000830152613f8c81613f50565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613fba82613f93565b9150613fc583613f93565b925082820190506fffffffffffffffffffffffffffffffff811115613fed57613fec613543565b5b92915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061404f6033836135a6565b915061405a82613ff3565b604082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b600061409082613539565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140c2576140c1613543565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061411457607f821691505b602082108103614127576141266140cd565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614189602d836135a6565b91506141948261412d565b604082019050919050565b600060208201905081810360008301526141b88161417c565b9050919050565b60006040820190506141d460008301856138ce565b6141e160208301846138ce565b9392505050565b6000815190506141f781613ac5565b92915050565b6000602082840312156142135761421261362d565b5b6000614221848285016141e8565b91505092915050565b600061423582613539565b915061424083613539565b925082820261424e81613539565b9150828204841483151761426557614264613543565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142a682613539565b91506142b183613539565b9250826142c1576142c061426c565b5b828204905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006143286022836135a6565b9150614333826142cc565b604082019050919050565b600060208201905081810360008301526143578161431b565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006143ba602e836135a6565b91506143c58261435e565b604082019050919050565b600060208201905081810360008301526143e9816143ad565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061444c6023836135a6565b9150614457826143f0565b604082019050919050565b6000602082019050818103600083015261447b8161443f565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006144de602b836135a6565b91506144e982614482565b604082019050919050565b6000602082019050818103600083015261450d816144d1565b9050919050565b7f736574426173655572693a206d757374206265206f776e657220746f2073657460008201527f2062617365207572692e00000000000000000000000000000000000000000000602082015250565b6000614570602a836135a6565b915061457b82614514565b604082019050919050565b6000602082019050818103600083015261459f81614563565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145d6565b61461d86836145d6565b95508019841693508086168417925050509392505050565b600061465061464b61464684613539565b613a1e565b613539565b9050919050565b6000819050919050565b61466a83614635565b61467e61467682614657565b8484546145e3565b825550505050565b600090565b614693614686565b61469e818484614661565b505050565b5b818110156146c2576146b760008261468b565b6001810190506146a4565b5050565b601f821115614707576146d8816145b1565b6146e1846145c6565b810160208510156146f0578190505b6147046146fc856145c6565b8301826146a3565b50505b505050565b600082821c905092915050565b600061472a6000198460080261470c565b1980831691505092915050565b60006147438383614719565b9150826002028217905092915050565b61475d83836145a6565b67ffffffffffffffff81111561477657614775613c15565b5b61478082546140fc565b61478b8282856146c6565b6000601f8311600181146147ba57600084156147a8578287013590505b6147b28582614737565b86555061481a565b601f1984166147c8866145b1565b60005b828110156147f0578489013582556001820191506020850194506020810190506147cb565b8683101561480d5784890135614809601f891682614719565b8355505b6001600288020188555050505b50505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061487f602f836135a6565b915061488a82614823565b604082019050919050565b600060208201905081810360008301526148ae81614872565b9050919050565b600081905092915050565b60006148cb826137d4565b6148d581856148b5565b93506148e58185602086016137df565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006149276005836148b5565b9150614932826148f1565b600582019050919050565b600061494982856148c0565b915061495582846148c0565b91506149608261491a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149c86026836135a6565b91506149d38261496c565b604082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a25826149fe565b614a2f8185614a09565b9350614a3f8185602086016137df565b614a4881613809565b840191505092915050565b6000608082019050614a6860008301876138ce565b614a7560208301866138ce565b614a826040830185613938565b8181036060830152614a948184614a1a565b905095945050505050565b600081519050614aae81613663565b92915050565b600060208284031215614aca57614ac961362d565b5b6000614ad884828501614a9f565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b176020836135a6565b9150614b2282614ae1565b602082019050919050565b60006020820190508181036000830152614b4681614b0a565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614ba9602a836135a6565b9150614bb482614b4d565b604082019050919050565b60006020820190508181036000830152614bd881614b9c565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614c156019836135a6565b9150614c2082614bdf565b602082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca76022836135a6565b9150614cb282614c4b565b604082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614d396039836135a6565b9150614d4482614cdd565b604082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614dcb602a836135a6565b9150614dd682614d6f565b604082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b6000614e0c82613539565b9150614e1783613539565b9250828203905081811115614e2f57614e2e613543565b5b92915050565b6000614e4082613539565b915060008203614e5357614e52613543565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614eba602f836135a6565b9150614ec582614e5e565b604082019050919050565b60006020820190508181036000830152614ee981614ead565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614f26601a836135a6565b9150614f3182614ef0565b602082019050919050565b60006020820190508181036000830152614f5581614f19565b9050919050565b6000614f6782613539565b9150614f7283613539565b925082614f8257614f8161426c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006150186032836135a6565b915061502382614fbc565b604082019050919050565b600060208201905081810360008301526150478161500b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006150aa6026836135a6565b91506150b58261504e565b604082019050919050565b600060208201905081810360008301526150d98161509d565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061513c6025836135a6565b9150615147826150e0565b604082019050919050565b6000602082019050818103600083015261516b8161512f565b9050919050565b600061517d82613f93565b915061518883613f93565b925082820390506fffffffffffffffffffffffffffffffff8111156151b0576151af613543565b5b9291505056fe68747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f626166796265696673747a7263766361343337686f717862707a6d78627277776f61366f363563686374786b79643577787832673671766a6a7a61a2646970667358221220fd32b0dafc8c186599e26e236b0d72369b1e8d71674786e8498823632be90f7c64736f6c63430008110033

Deployed Bytecode Sourcemap

53331:4303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53977:14;54007:1;53994:9;:14;:30;;54015:9;53994:30;;;54011:1;53994:30;53977:47;;54071:10;;54061:6;54045:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;54037:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;54130:35;54140:12;:10;:12::i;:::-;54154:6;54130:35;;;;;;;;;;;;:9;:35::i;:::-;53964:209;53331:4303;;;;55037:276;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55321:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40470:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42003:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56844:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56527:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37305:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57020:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25731:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;37936:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2922:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57202:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53495:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37468:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53456:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40293:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56266:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39170:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10857:103;;;;;;;;;;;;;:::i;:::-;;10209:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56406:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40625:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54772:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56641:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57392:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54309:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47733:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56117:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42624:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11115:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37305:94;37358:7;37381:12;;37374:19;;37305:94;:::o;8760:98::-;8813:7;8840:10;8833:17;;8760:98;:::o;44416:1272::-;44521:20;44544:12;;44521:35;;44585:1;44571:16;;:2;:16;;;44563:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44762:21;44770:12;44762:7;:21::i;:::-;44761:22;44753:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44844:12;44832:8;:24;;44824:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44904:61;44934:1;44938:2;44942:12;44956:8;44904:21;:61::i;:::-;44974:30;45007:12;:16;45020:2;45007:16;;;;;;;;;;;;;;;44974:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45049:119;;;;;;;;45099:8;45069:11;:19;;;:39;;;;:::i;:::-;45049:119;;;;;;45152:8;45117:11;:24;;;:44;;;;:::i;:::-;45049:119;;;;;45030:12;:16;45043:2;45030:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45203:43;;;;;;;;45218:2;45203:43;;;;;;45229:15;45203:43;;;;;45175:11;:25;45187:12;45175:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45255:20;45278:12;45255:35;;45304:9;45299:281;45323:8;45319:1;:12;45299:281;;;45377:12;45373:2;45352:38;;45369:1;45352:38;;;;;;;;;;;;45417:59;45448:1;45452:2;45456:12;45470:5;45417:22;:59::i;:::-;45399:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;45558:14;;;;;:::i;:::-;;;;45333:3;;;;;:::i;:::-;;;;45299:281;;;;45603:12;45588;:27;;;;45622:60;45651:1;45655:2;45659:12;45673:8;45622:20;:60::i;:::-;44514:1174;;;44416:1272;;;:::o;55037:276::-;55168:4;55212:38;55238:11;55212:25;:38::i;:::-;:93;;;;55267:38;55293:11;55267:25;:38::i;:::-;55212:93;55192:113;;55037:276;;;:::o;55321:162::-;10095:13;:11;:13::i;:::-;55426:49:::1;55445:14;55461:13;55426:18;:49::i;:::-;55321:162:::0;;:::o;40470:94::-;40524:13;40553:5;40546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40470:94;:::o;42003:212::-;42079:7;42103:16;42111:7;42103;:16::i;:::-;42095:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42185:15;:24;42201:7;42185:24;;;;;;;;;;;;;;;;;;;;;42178:31;;42003:212;;;:::o;56844:168::-;56949:8;5019:17;:27;5037:8;5019:27;;;;;;;;;;;;;;;;;;;;;;;;;5016:444;;;56972:32:::1;56986:8;56996:7;56972:13;:32::i;:::-;5079:7:::0;;5016:444;5222:13;;;;;;;;;;;:66;;;;;5287:1;3022:42;5239:45;;;:49;5222:66;5218:242;;;3022:42;5310;;;5361:4;5368:8;5310:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5305:144;;5424:8;5405:28;;;;;;;;;;;:::i;:::-;;;;;;;;5305:144;5218:242;56972:32:::1;56986:8;56996:7;56972:13;:32::i;:::-;56844:168:::0;;;;:::o;56527:106::-;56586:4;56612:13;;;;;;;;;;;56605:20;;56527:106;:::o;57020:174::-;57130:4;4164:17;:23;4182:4;4164:23;;;;;;;;;;;;;;;;;;;;;;;;;4161:754;;;57149:37:::1;57168:4;57174:2;57178:7;57149:18;:37::i;:::-;4220:7:::0;;4161:754;4363:13;;;;;;;;;;;:66;;;;;4428:1;3022:42;4380:45;;;:49;4363:66;4359:556;;;4669:10;4661:18;;:4;:18;;;4657:85;;57149:37:::1;57168:4;57174:2;57178:7;57149:18;:37::i;:::-;4720:7:::0;;4657:85;3022:42;4761;;;4812:4;4819:10;4761:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4756:148;;4877:10;4858:30;;;;;;;;;;;:::i;:::-;;;;;;;;4756:148;4359:556;57149:37:::1;57168:4;57174:2;57178:7;57149:18;:37::i;:::-;57020:174:::0;;;;;:::o;25731:442::-;25828:7;25837;25857:26;25886:17;:27;25904:8;25886:27;;;;;;;;;;;25857:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25958:1;25930:30;;:7;:16;;;:30;;;25926:92;;25987:19;25977:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25926:92;26030:21;26095:17;:15;:17::i;:::-;26054:58;;26068:7;:23;;;26055:36;;:10;:36;;;;:::i;:::-;26054:58;;;;:::i;:::-;26030:82;;26133:7;:16;;;26151:13;26125:40;;;;;;25731:442;;;;;:::o;37936:744::-;38045:7;38080:16;38090:5;38080:9;:16::i;:::-;38072:5;:24;38064:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38142:22;38167:13;:11;:13::i;:::-;38142:38;;38187:19;38217:25;38267:9;38262:350;38286:14;38282:1;:18;38262:350;;;38316:31;38350:11;:14;38362:1;38350:14;;;;;;;;;;;38316:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38403:1;38377:28;;:9;:14;;;:28;;;38373:89;;38438:9;:14;;;38418:34;;38373:89;38495:5;38474:26;;:17;:26;;;38470:135;;38532:5;38517:11;:20;38513:59;;38559:1;38552:8;;;;;;;;;38513:59;38582:13;;;;;:::i;:::-;;;;38470:135;38307:305;38302:3;;;;;:::i;:::-;;;;38262:350;;;;38618:56;;;;;;;;;;:::i;:::-;;;;;;;;37936:744;;;;;:::o;2922:143::-;3022:42;2922:143;:::o;57202:182::-;57316:4;4164:17;:23;4182:4;4164:23;;;;;;;;;;;;;;;;;;;;;;;;;4161:754;;;57335:41:::1;57358:4;57364:2;57368:7;57335:22;:41::i;:::-;4220:7:::0;;4161:754;4363:13;;;;;;;;;;;:66;;;;;4428:1;3022:42;4380:45;;;:49;4363:66;4359:556;;;4669:10;4661:18;;:4;:18;;;4657:85;;57335:41:::1;57358:4;57364:2;57368:7;57335:22;:41::i;:::-;4720:7:::0;;4657:85;3022:42;4761;;;4812:4;4819:10;4761:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4756:148;;4877:10;4858:30;;;;;;;;;;;:::i;:::-;;;;;;;;4756:148;4359:556;57335:41:::1;57358:4;57364:2;57368:7;57335:22;:41::i;:::-;57202:182:::0;;;;;:::o;53495:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37468:177::-;37535:7;37567:13;:11;:13::i;:::-;37559:5;:21;37551:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;37634:5;37627:12;;37468:177;;;:::o;53456:32::-;;;;:::o;40293:118::-;40357:7;40380:20;40392:7;40380:11;:20::i;:::-;:25;;;40373:32;;40293:118;;;:::o;56266:132::-;56336:4;56362:17;:28;56380:9;56362:28;;;;;;;;;;;;;;;;;;;;;;;;;56355:35;;56266:132;;;:::o;39170:211::-;39234:7;39275:1;39258:19;;:5;:19;;;39250:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;39347:12;:19;39360:5;39347:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;39339:36;;39332:43;;39170:211;;;:::o;10857:103::-;10095:13;:11;:13::i;:::-;10922:30:::1;10949:1;10922:18;:30::i;:::-;10857:103::o:0;10209:87::-;10255:7;10282:6;;;;;;;;;;;10275:13;;10209:87;:::o;56406:113::-;10095:13;:11;:13::i;:::-;56504:7:::1;56488:13;;:23;;;;;;;;;;;;;;;;;;56406:113:::0;:::o;40625:98::-;40681:13;40710:7;40703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40625:98;:::o;54772:205::-;54869:12;:10;:12::i;:::-;54858:23;;:7;:5;:7::i;:::-;:23;;;54850:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;54957:12;;54941:13;:28;;;;;;;:::i;:::-;;54772:205;;:::o;56641:195::-;56754:8;5019:17;:27;5037:8;5019:27;;;;;;;;;;;;;;;;;;;;;;;;;5016:444;;;56785:43:::1;56809:8;56819;56785:23;:43::i;:::-;5079:7:::0;;5016:444;5222:13;;;;;;;;;;;:66;;;;;5287:1;3022:42;5239:45;;;:49;5222:66;5218:242;;;3022:42;5310;;;5361:4;5368:8;5310:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5305:144;;5424:8;5405:28;;;;;;;;;;;:::i;:::-;;;;;;;;5305:144;5218:242;56785:43:::1;56809:8;56819;56785:23;:43::i;:::-;56641:195:::0;;;;:::o;57392:239::-;57552:4;4164:17;:23;4182:4;4164:23;;;;;;;;;;;;;;;;;;;;;;;;;4161:754;;;57576:47:::1;57599:4;57605:2;57609:7;57618:4;57576:22;:47::i;:::-;4220:7:::0;;4161:754;4363:13;;;;;;;;;;;:66;;;;;4428:1;3022:42;4380:45;;;:49;4363:66;4359:556;;;4669:10;4661:18;;:4;:18;;;4657:85;;57576:47:::1;57599:4;57605:2;57609:7;57618:4;57576:22;:47::i;:::-;4720:7:::0;;4657:85;3022:42;4761;;;4812:4;4819:10;4761:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4756:148;;4877:10;4858:30;;;;;;;;;;;:::i;:::-;;;;;;;;4756:148;4359:556;57576:47:::1;57599:4;57605:2;57609:7;57618:4;57576:22;:47::i;:::-;57392:239:::0;;;;;;:::o;54309:451::-;54382:13;54426:16;54434:7;54426;:16::i;:::-;54418:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;54517:21;54541:10;:8;:10::i;:::-;54517:34;;54593:1;54575:7;54569:21;:25;:183;;;;;;;;;;;;;;;;;;;;;;54621:7;54630:18;:7;:16;:18::i;:::-;54604:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54569:183;54562:190;;;54309:451;;;:::o;47733:43::-;;;;:::o;56117:141::-;10095:13;:11;:13::i;:::-;56243:7:::1;56212:17;:28;56230:9;56212:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;56117:141:::0;;:::o;42624:186::-;42746:4;42769:18;:25;42788:5;42769:25;;;;;;;;;;;;;;;:35;42795:8;42769:35;;;;;;;;;;;;;;;;;;;;;;;;;42762:42;;42624:186;;;;:::o;11115:201::-;10095:13;:11;:13::i;:::-;11224:1:::1;11204:22;;:8;:22;;::::0;11196:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11280:28;11299:8;11280:18;:28::i;:::-;11115:201:::0;:::o;43868:105::-;43925:4;43955:12;;43945:7;:22;43938:29;;43868:105;;;:::o;50422:141::-;;;;;:::o;49270:690::-;49407:4;49424:15;:2;:13;;;:15::i;:::-;49420:535;;;49479:2;49463:36;;;49500:12;:10;:12::i;:::-;49514:4;49520:7;49529:5;49463:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49450:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49711:1;49694:6;:13;:18;49690:215;;49727:61;;;;;;;;;;:::i;:::-;;;;;;;;49690:215;49873:6;49867:13;49858:6;49854:2;49850:15;49843:38;49450:464;49595:45;;;49585:55;;;:6;:55;;;;49578:62;;;;;49420:535;49943:4;49936:11;;49270:690;;;;;;;:::o;50949:140::-;;;;;:::o;38744:370::-;38871:4;38916:25;38901:40;;;:11;:40;;;;:99;;;;38967:33;38952:48;;;:11;:48;;;;38901:99;:160;;;;39026:35;39011:50;;;:11;:50;;;;38901:160;:207;;;;39072:36;39096:11;39072:23;:36::i;:::-;38901:207;38887:221;;38744:370;;;:::o;25461:215::-;25563:4;25602:26;25587:41;;;:11;:41;;;;:81;;;;25632:36;25656:11;25632:23;:36::i;:::-;25587:81;25580:88;;25461:215;;;:::o;10374:132::-;10449:12;:10;:12::i;:::-;10438:23;;:7;:5;:7::i;:::-;:23;;;10430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10374:132::o;26823:332::-;26942:17;:15;:17::i;:::-;26926:33;;:12;:33;;;;26918:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;27045:1;27025:22;;:8;:22;;;27017:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;27112:35;;;;;;;;27124:8;27112:35;;;;;;27134:12;27112:35;;;;;27090:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26823:332;;:::o;41558:387::-;41635:13;41651:24;41667:7;41651:15;:24::i;:::-;41635:40;;41696:5;41690:11;;:2;:11;;;41682:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41781:5;41765:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41790:37;41807:5;41814:12;:10;:12::i;:::-;41790:16;:37::i;:::-;41765:62;41749:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;41911:28;41920:2;41924:7;41933:5;41911:8;:28::i;:::-;41628:317;41558:387;;:::o;42869:150::-;42985:28;42995:4;43001:2;43005:7;42985:9;:28::i;:::-;42869:150;;;:::o;26455:97::-;26513:6;26539:5;26532:12;;26455:97;:::o;43082:165::-;43202:39;43219:4;43225:2;43229:7;43202:39;;;;;;;;;;;;:16;:39::i;:::-;43082:165;;;:::o;39633:606::-;39709:21;;:::i;:::-;39750:16;39758:7;39750;:16::i;:::-;39742:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39822:26;39870:12;39859:7;:23;39855:93;;39939:1;39924:12;39914:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;39893:47;;39855:93;39961:12;39976:7;39961:22;;39956:212;39993:18;39985:4;:26;39956:212;;40030:31;40064:11;:17;40076:4;40064:17;;;;;;;;;;;40030:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40120:1;40094:28;;:9;:14;;;:28;;;40090:71;;40142:9;40135:16;;;;;;;40090:71;40021:147;40013:6;;;;;:::i;:::-;;;;39956:212;;;;40176:57;;;;;;;;;;:::i;:::-;;;;;;;;39633:606;;;;:::o;11476:191::-;11550:16;11569:6;;;;;;;;;;;11550:25;;11595:8;11586:6;;:17;;;;;;;;;;;;;;;;;;11650:8;11619:40;;11640:8;11619:40;;;;;;;;;;;;11539:128;11476:191;:::o;42279:282::-;42390:12;:10;:12::i;:::-;42378:24;;:8;:24;;;42370:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42487:8;42442:18;:32;42461:12;:10;:12::i;:::-;42442:32;;;;;;;;;;;;;;;:42;42475:8;42442:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;42536:8;42507:48;;42522:12;:10;:12::i;:::-;42507:48;;;42546:8;42507:48;;;;;;:::i;:::-;;;;;;;;42279:282;;:::o;43310:319::-;43455:28;43465:4;43471:2;43475:7;43455:9;:28::i;:::-;43506:48;43529:4;43535:2;43539:7;43548:5;43506:22;:48::i;:::-;43490:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;43310:319;;;;:::o;54181:116::-;54241:13;54276;54269:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54181:116;:::o;6322:723::-;6378:13;6608:1;6599:5;:10;6595:53;;6626:10;;;;;;;;;;;;;;;;;;;;;6595:53;6658:12;6673:5;6658:20;;6689:14;6714:78;6729:1;6721:4;:9;6714:78;;6747:8;;;;;:::i;:::-;;;;6778:2;6770:10;;;;;:::i;:::-;;;6714:78;;;6802:19;6834:6;6824:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6802:39;;6852:154;6868:1;6859:5;:10;6852:154;;6896:1;6886:11;;;;;:::i;:::-;;;6963:2;6955:5;:10;;;;:::i;:::-;6942:2;:24;;;;:::i;:::-;6929:39;;6912:6;6919;6912:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6992:2;6983:11;;;;;:::i;:::-;;;6852:154;;;7030:6;7016:21;;;;;6322:723;;;;:::o;12907:326::-;12967:4;13224:1;13202:7;:19;;;:23;13195:30;;12907:326;;;:::o;23911:157::-;23996:4;24035:25;24020:40;;;:11;:40;;;;24013:47;;23911:157;;;:::o;47555:172::-;47679:2;47652:15;:24;47668:7;47652:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47713:7;47709:2;47693:28;;47702:5;47693:28;;;;;;;;;;;;47555:172;;;:::o;45920:1529::-;46017:35;46055:20;46067:7;46055:11;:20::i;:::-;46017:58;;46084:22;46126:13;:18;;;46110:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;46179:12;:10;:12::i;:::-;46155:36;;:20;46167:7;46155:11;:20::i;:::-;:36;;;46110:81;:142;;;;46202:50;46219:13;:18;;;46239:12;:10;:12::i;:::-;46202:16;:50::i;:::-;46110:142;46084:169;;46278:17;46262:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;46410:4;46388:26;;:13;:18;;;:26;;;46372:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;46499:1;46485:16;;:2;:16;;;46477:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46552:43;46574:4;46580:2;46584:7;46593:1;46552:21;:43::i;:::-;46652:49;46669:1;46673:7;46682:13;:18;;;46652:8;:49::i;:::-;46740:1;46710:12;:18;46723:4;46710:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46776:1;46748:12;:16;46761:2;46748:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46807:43;;;;;;;;46822:2;46807:43;;;;;;46833:15;46807:43;;;;;46784:11;:20;46796:7;46784:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47078:19;47110:1;47100:7;:11;;;;:::i;:::-;47078:33;;47163:1;47122:43;;:11;:24;47134:11;47122:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47118:236;;47180:20;47188:11;47180:7;:20::i;:::-;47176:171;;;47240:97;;;;;;;;47267:13;:18;;;47240:97;;;;;;47298:13;:28;;;47240:97;;;;;47213:11;:24;47225:11;47213:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47176:171;47118:236;47386:7;47382:2;47367:27;;47376:4;47367:27;;;;;;;;;;;;47401:42;47422:4;47428:2;47432:7;47441:1;47401:20;:42::i;:::-;46010:1439;;;45920:1529;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:180::-;138:77;135:1;128:88;235:4;232:1;225:15;259:4;256:1;249:15;276:191;316:3;335:20;353:1;335:20;:::i;:::-;330:25;;369:20;387:1;369:20;:::i;:::-;364:25;;412:1;409;405:9;398:16;;433:3;430:1;427:10;424:36;;;440:18;;:::i;:::-;424:36;276:191;;;;:::o;473:169::-;557:11;591:6;586:3;579:19;631:4;626:3;622:14;607:29;;473:169;;;;:::o;648:181::-;788:33;784:1;776:6;772:14;765:57;648:181;:::o;835:366::-;977:3;998:67;1062:2;1057:3;998:67;:::i;:::-;991:74;;1074:93;1163:3;1074:93;:::i;:::-;1192:2;1187:3;1183:12;1176:19;;835:366;;;:::o;1207:419::-;1373:4;1411:2;1400:9;1396:18;1388:26;;1460:9;1454:4;1450:20;1446:1;1435:9;1431:17;1424:47;1488:131;1614:4;1488:131;:::i;:::-;1480:139;;1207:419;;;:::o;1632:75::-;1665:6;1698:2;1692:9;1682:19;;1632:75;:::o;1713:117::-;1822:1;1819;1812:12;1836:117;1945:1;1942;1935:12;1959:149;1995:7;2035:66;2028:5;2024:78;2013:89;;1959:149;;;:::o;2114:120::-;2186:23;2203:5;2186:23;:::i;:::-;2179:5;2176:34;2166:62;;2224:1;2221;2214:12;2166:62;2114:120;:::o;2240:137::-;2285:5;2323:6;2310:20;2301:29;;2339:32;2365:5;2339:32;:::i;:::-;2240:137;;;;:::o;2383:327::-;2441:6;2490:2;2478:9;2469:7;2465:23;2461:32;2458:119;;;2496:79;;:::i;:::-;2458:119;2616:1;2641:52;2685:7;2676:6;2665:9;2661:22;2641:52;:::i;:::-;2631:62;;2587:116;2383:327;;;;:::o;2716:90::-;2750:7;2793:5;2786:13;2779:21;2768:32;;2716:90;;;:::o;2812:109::-;2893:21;2908:5;2893:21;:::i;:::-;2888:3;2881:34;2812:109;;:::o;2927:210::-;3014:4;3052:2;3041:9;3037:18;3029:26;;3065:65;3127:1;3116:9;3112:17;3103:6;3065:65;:::i;:::-;2927:210;;;;:::o;3143:126::-;3180:7;3220:42;3213:5;3209:54;3198:65;;3143:126;;;:::o;3275:96::-;3312:7;3341:24;3359:5;3341:24;:::i;:::-;3330:35;;3275:96;;;:::o;3377:122::-;3450:24;3468:5;3450:24;:::i;:::-;3443:5;3440:35;3430:63;;3489:1;3486;3479:12;3430:63;3377:122;:::o;3505:139::-;3551:5;3589:6;3576:20;3567:29;;3605:33;3632:5;3605:33;:::i;:::-;3505:139;;;;:::o;3650:109::-;3686:7;3726:26;3719:5;3715:38;3704:49;;3650:109;;;:::o;3765:120::-;3837:23;3854:5;3837:23;:::i;:::-;3830:5;3827:34;3817:62;;3875:1;3872;3865:12;3817:62;3765:120;:::o;3891:137::-;3936:5;3974:6;3961:20;3952:29;;3990:32;4016:5;3990:32;:::i;:::-;3891:137;;;;:::o;4034:472::-;4101:6;4109;4158:2;4146:9;4137:7;4133:23;4129:32;4126:119;;;4164:79;;:::i;:::-;4126:119;4284:1;4309:53;4354:7;4345:6;4334:9;4330:22;4309:53;:::i;:::-;4299:63;;4255:117;4411:2;4437:52;4481:7;4472:6;4461:9;4457:22;4437:52;:::i;:::-;4427:62;;4382:117;4034:472;;;;;:::o;4512:99::-;4564:6;4598:5;4592:12;4582:22;;4512:99;;;:::o;4617:246::-;4698:1;4708:113;4722:6;4719:1;4716:13;4708:113;;;4807:1;4802:3;4798:11;4792:18;4788:1;4783:3;4779:11;4772:39;4744:2;4741:1;4737:10;4732:15;;4708:113;;;4855:1;4846:6;4841:3;4837:16;4830:27;4679:184;4617:246;;;:::o;4869:102::-;4910:6;4961:2;4957:7;4952:2;4945:5;4941:14;4937:28;4927:38;;4869:102;;;:::o;4977:377::-;5065:3;5093:39;5126:5;5093:39;:::i;:::-;5148:71;5212:6;5207:3;5148:71;:::i;:::-;5141:78;;5228:65;5286:6;5281:3;5274:4;5267:5;5263:16;5228:65;:::i;:::-;5318:29;5340:6;5318:29;:::i;:::-;5313:3;5309:39;5302:46;;5069:285;4977:377;;;;:::o;5360:313::-;5473:4;5511:2;5500:9;5496:18;5488:26;;5560:9;5554:4;5550:20;5546:1;5535:9;5531:17;5524:47;5588:78;5661:4;5652:6;5588:78;:::i;:::-;5580:86;;5360:313;;;;:::o;5679:122::-;5752:24;5770:5;5752:24;:::i;:::-;5745:5;5742:35;5732:63;;5791:1;5788;5781:12;5732:63;5679:122;:::o;5807:139::-;5853:5;5891:6;5878:20;5869:29;;5907:33;5934:5;5907:33;:::i;:::-;5807:139;;;;:::o;5952:329::-;6011:6;6060:2;6048:9;6039:7;6035:23;6031:32;6028:119;;;6066:79;;:::i;:::-;6028:119;6186:1;6211:53;6256:7;6247:6;6236:9;6232:22;6211:53;:::i;:::-;6201:63;;6157:117;5952:329;;;;:::o;6287:118::-;6374:24;6392:5;6374:24;:::i;:::-;6369:3;6362:37;6287:118;;:::o;6411:222::-;6504:4;6542:2;6531:9;6527:18;6519:26;;6555:71;6623:1;6612:9;6608:17;6599:6;6555:71;:::i;:::-;6411:222;;;;:::o;6639:474::-;6707:6;6715;6764:2;6752:9;6743:7;6739:23;6735:32;6732:119;;;6770:79;;:::i;:::-;6732:119;6890:1;6915:53;6960:7;6951:6;6940:9;6936:22;6915:53;:::i;:::-;6905:63;;6861:117;7017:2;7043:53;7088:7;7079:6;7068:9;7064:22;7043:53;:::i;:::-;7033:63;;6988:118;6639:474;;;;;:::o;7119:118::-;7206:24;7224:5;7206:24;:::i;:::-;7201:3;7194:37;7119:118;;:::o;7243:222::-;7336:4;7374:2;7363:9;7359:18;7351:26;;7387:71;7455:1;7444:9;7440:17;7431:6;7387:71;:::i;:::-;7243:222;;;;:::o;7471:619::-;7548:6;7556;7564;7613:2;7601:9;7592:7;7588:23;7584:32;7581:119;;;7619:79;;:::i;:::-;7581:119;7739:1;7764:53;7809:7;7800:6;7789:9;7785:22;7764:53;:::i;:::-;7754:63;;7710:117;7866:2;7892:53;7937:7;7928:6;7917:9;7913:22;7892:53;:::i;:::-;7882:63;;7837:118;7994:2;8020:53;8065:7;8056:6;8045:9;8041:22;8020:53;:::i;:::-;8010:63;;7965:118;7471:619;;;;;:::o;8096:474::-;8164:6;8172;8221:2;8209:9;8200:7;8196:23;8192:32;8189:119;;;8227:79;;:::i;:::-;8189:119;8347:1;8372:53;8417:7;8408:6;8397:9;8393:22;8372:53;:::i;:::-;8362:63;;8318:117;8474:2;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8445:118;8096:474;;;;;:::o;8576:332::-;8697:4;8735:2;8724:9;8720:18;8712:26;;8748:71;8816:1;8805:9;8801:17;8792:6;8748:71;:::i;:::-;8829:72;8897:2;8886:9;8882:18;8873:6;8829:72;:::i;:::-;8576:332;;;;;:::o;8914:60::-;8942:3;8963:5;8956:12;;8914:60;;;:::o;8980:142::-;9030:9;9063:53;9081:34;9090:24;9108:5;9090:24;:::i;:::-;9081:34;:::i;:::-;9063:53;:::i;:::-;9050:66;;8980:142;;;:::o;9128:126::-;9178:9;9211:37;9242:5;9211:37;:::i;:::-;9198:50;;9128:126;;;:::o;9260:157::-;9341:9;9374:37;9405:5;9374:37;:::i;:::-;9361:50;;9260:157;;;:::o;9423:193::-;9541:68;9603:5;9541:68;:::i;:::-;9536:3;9529:81;9423:193;;:::o;9622:284::-;9746:4;9784:2;9773:9;9769:18;9761:26;;9797:102;9896:1;9885:9;9881:17;9872:6;9797:102;:::i;:::-;9622:284;;;;:::o;9912:329::-;9971:6;10020:2;10008:9;9999:7;9995:23;9991:32;9988:119;;;10026:79;;:::i;:::-;9988:119;10146:1;10171:53;10216:7;10207:6;10196:9;10192:22;10171:53;:::i;:::-;10161:63;;10117:117;9912:329;;;;:::o;10247:116::-;10317:21;10332:5;10317:21;:::i;:::-;10310:5;10307:32;10297:60;;10353:1;10350;10343:12;10297:60;10247:116;:::o;10369:133::-;10412:5;10450:6;10437:20;10428:29;;10466:30;10490:5;10466:30;:::i;:::-;10369:133;;;;:::o;10508:323::-;10564:6;10613:2;10601:9;10592:7;10588:23;10584:32;10581:119;;;10619:79;;:::i;:::-;10581:119;10739:1;10764:50;10806:7;10797:6;10786:9;10782:22;10764:50;:::i;:::-;10754:60;;10710:114;10508:323;;;;:::o;10837:117::-;10946:1;10943;10936:12;10960:117;11069:1;11066;11059:12;11083:117;11192:1;11189;11182:12;11220:553;11278:8;11288:6;11338:3;11331:4;11323:6;11319:17;11315:27;11305:122;;11346:79;;:::i;:::-;11305:122;11459:6;11446:20;11436:30;;11489:18;11481:6;11478:30;11475:117;;;11511:79;;:::i;:::-;11475:117;11625:4;11617:6;11613:17;11601:29;;11679:3;11671:4;11663:6;11659:17;11649:8;11645:32;11642:41;11639:128;;;11686:79;;:::i;:::-;11639:128;11220:553;;;;;:::o;11779:529::-;11850:6;11858;11907:2;11895:9;11886:7;11882:23;11878:32;11875:119;;;11913:79;;:::i;:::-;11875:119;12061:1;12050:9;12046:17;12033:31;12091:18;12083:6;12080:30;12077:117;;;12113:79;;:::i;:::-;12077:117;12226:65;12283:7;12274:6;12263:9;12259:22;12226:65;:::i;:::-;12208:83;;;;12004:297;11779:529;;;;;:::o;12314:468::-;12379:6;12387;12436:2;12424:9;12415:7;12411:23;12407:32;12404:119;;;12442:79;;:::i;:::-;12404:119;12562:1;12587:53;12632:7;12623:6;12612:9;12608:22;12587:53;:::i;:::-;12577:63;;12533:117;12689:2;12715:50;12757:7;12748:6;12737:9;12733:22;12715:50;:::i;:::-;12705:60;;12660:115;12314:468;;;;;:::o;12788:117::-;12897:1;12894;12887:12;12911:180;12959:77;12956:1;12949:88;13056:4;13053:1;13046:15;13080:4;13077:1;13070:15;13097:281;13180:27;13202:4;13180:27;:::i;:::-;13172:6;13168:40;13310:6;13298:10;13295:22;13274:18;13262:10;13259:34;13256:62;13253:88;;;13321:18;;:::i;:::-;13253:88;13361:10;13357:2;13350:22;13140:238;13097:281;;:::o;13384:129::-;13418:6;13445:20;;:::i;:::-;13435:30;;13474:33;13502:4;13494:6;13474:33;:::i;:::-;13384:129;;;:::o;13519:307::-;13580:4;13670:18;13662:6;13659:30;13656:56;;;13692:18;;:::i;:::-;13656:56;13730:29;13752:6;13730:29;:::i;:::-;13722:37;;13814:4;13808;13804:15;13796:23;;13519:307;;;:::o;13832:146::-;13929:6;13924:3;13919;13906:30;13970:1;13961:6;13956:3;13952:16;13945:27;13832:146;;;:::o;13984:423::-;14061:5;14086:65;14102:48;14143:6;14102:48;:::i;:::-;14086:65;:::i;:::-;14077:74;;14174:6;14167:5;14160:21;14212:4;14205:5;14201:16;14250:3;14241:6;14236:3;14232:16;14229:25;14226:112;;;14257:79;;:::i;:::-;14226:112;14347:54;14394:6;14389:3;14384;14347:54;:::i;:::-;14067:340;13984:423;;;;;:::o;14426:338::-;14481:5;14530:3;14523:4;14515:6;14511:17;14507:27;14497:122;;14538:79;;:::i;:::-;14497:122;14655:6;14642:20;14680:78;14754:3;14746:6;14739:4;14731:6;14727:17;14680:78;:::i;:::-;14671:87;;14487:277;14426:338;;;;:::o;14770:943::-;14865:6;14873;14881;14889;14938:3;14926:9;14917:7;14913:23;14909:33;14906:120;;;14945:79;;:::i;:::-;14906:120;15065:1;15090:53;15135:7;15126:6;15115:9;15111:22;15090:53;:::i;:::-;15080:63;;15036:117;15192:2;15218:53;15263:7;15254:6;15243:9;15239:22;15218:53;:::i;:::-;15208:63;;15163:118;15320:2;15346:53;15391:7;15382:6;15371:9;15367:22;15346:53;:::i;:::-;15336:63;;15291:118;15476:2;15465:9;15461:18;15448:32;15507:18;15499:6;15496:30;15493:117;;;15529:79;;:::i;:::-;15493:117;15634:62;15688:7;15679:6;15668:9;15664:22;15634:62;:::i;:::-;15624:72;;15419:287;14770:943;;;;;;;:::o;15719:474::-;15787:6;15795;15844:2;15832:9;15823:7;15819:23;15815:32;15812:119;;;15850:79;;:::i;:::-;15812:119;15970:1;15995:53;16040:7;16031:6;16020:9;16016:22;15995:53;:::i;:::-;15985:63;;15941:117;16097:2;16123:53;16168:7;16159:6;16148:9;16144:22;16123:53;:::i;:::-;16113:63;;16068:118;15719:474;;;;;:::o;16199:220::-;16339:34;16335:1;16327:6;16323:14;16316:58;16408:3;16403:2;16395:6;16391:15;16384:28;16199:220;:::o;16425:366::-;16567:3;16588:67;16652:2;16647:3;16588:67;:::i;:::-;16581:74;;16664:93;16753:3;16664:93;:::i;:::-;16782:2;16777:3;16773:12;16766:19;;16425:366;;;:::o;16797:419::-;16963:4;17001:2;16990:9;16986:18;16978:26;;17050:9;17044:4;17040:20;17036:1;17025:9;17021:17;17014:47;17078:131;17204:4;17078:131;:::i;:::-;17070:139;;16797:419;;;:::o;17222:179::-;17362:31;17358:1;17350:6;17346:14;17339:55;17222:179;:::o;17407:366::-;17549:3;17570:67;17634:2;17629:3;17570:67;:::i;:::-;17563:74;;17646:93;17735:3;17646:93;:::i;:::-;17764:2;17759:3;17755:12;17748:19;;17407:366;;;:::o;17779:419::-;17945:4;17983:2;17972:9;17968:18;17960:26;;18032:9;18026:4;18022:20;18018:1;18007:9;18003:17;17996:47;18060:131;18186:4;18060:131;:::i;:::-;18052:139;;17779:419;;;:::o;18204:221::-;18344:34;18340:1;18332:6;18328:14;18321:58;18413:4;18408:2;18400:6;18396:15;18389:29;18204:221;:::o;18431:366::-;18573:3;18594:67;18658:2;18653:3;18594:67;:::i;:::-;18587:74;;18670:93;18759:3;18670:93;:::i;:::-;18788:2;18783:3;18779:12;18772:19;;18431:366;;;:::o;18803:419::-;18969:4;19007:2;18996:9;18992:18;18984:26;;19056:9;19050:4;19046:20;19042:1;19031:9;19027:17;19020:47;19084:131;19210:4;19084:131;:::i;:::-;19076:139;;18803:419;;;:::o;19228:118::-;19265:7;19305:34;19298:5;19294:46;19283:57;;19228:118;;;:::o;19352:224::-;19392:3;19411:20;19429:1;19411:20;:::i;:::-;19406:25;;19445:20;19463:1;19445:20;:::i;:::-;19440:25;;19488:1;19485;19481:9;19474:16;;19511:34;19506:3;19503:43;19500:69;;;19549:18;;:::i;:::-;19500:69;19352:224;;;;:::o;19582:238::-;19722:34;19718:1;19710:6;19706:14;19699:58;19791:21;19786:2;19778:6;19774:15;19767:46;19582:238;:::o;19826:366::-;19968:3;19989:67;20053:2;20048:3;19989:67;:::i;:::-;19982:74;;20065:93;20154:3;20065:93;:::i;:::-;20183:2;20178:3;20174:12;20167:19;;19826:366;;;:::o;20198:419::-;20364:4;20402:2;20391:9;20387:18;20379:26;;20451:9;20445:4;20441:20;20437:1;20426:9;20422:17;20415:47;20479:131;20605:4;20479:131;:::i;:::-;20471:139;;20198:419;;;:::o;20623:233::-;20662:3;20685:24;20703:5;20685:24;:::i;:::-;20676:33;;20731:66;20724:5;20721:77;20718:103;;20801:18;;:::i;:::-;20718:103;20848:1;20841:5;20837:13;20830:20;;20623:233;;;:::o;20862:180::-;20910:77;20907:1;20900:88;21007:4;21004:1;20997:15;21031:4;21028:1;21021:15;21048:320;21092:6;21129:1;21123:4;21119:12;21109:22;;21176:1;21170:4;21166:12;21197:18;21187:81;;21253:4;21245:6;21241:17;21231:27;;21187:81;21315:2;21307:6;21304:14;21284:18;21281:38;21278:84;;21334:18;;:::i;:::-;21278:84;21099:269;21048:320;;;:::o;21374:232::-;21514:34;21510:1;21502:6;21498:14;21491:58;21583:15;21578:2;21570:6;21566:15;21559:40;21374:232;:::o;21612:366::-;21754:3;21775:67;21839:2;21834:3;21775:67;:::i;:::-;21768:74;;21851:93;21940:3;21851:93;:::i;:::-;21969:2;21964:3;21960:12;21953:19;;21612:366;;;:::o;21984:419::-;22150:4;22188:2;22177:9;22173:18;22165:26;;22237:9;22231:4;22227:20;22223:1;22212:9;22208:17;22201:47;22265:131;22391:4;22265:131;:::i;:::-;22257:139;;21984:419;;;:::o;22409:332::-;22530:4;22568:2;22557:9;22553:18;22545:26;;22581:71;22649:1;22638:9;22634:17;22625:6;22581:71;:::i;:::-;22662:72;22730:2;22719:9;22715:18;22706:6;22662:72;:::i;:::-;22409:332;;;;;:::o;22747:137::-;22801:5;22832:6;22826:13;22817:22;;22848:30;22872:5;22848:30;:::i;:::-;22747:137;;;;:::o;22890:345::-;22957:6;23006:2;22994:9;22985:7;22981:23;22977:32;22974:119;;;23012:79;;:::i;:::-;22974:119;23132:1;23157:61;23210:7;23201:6;23190:9;23186:22;23157:61;:::i;:::-;23147:71;;23103:125;22890:345;;;;:::o;23241:410::-;23281:7;23304:20;23322:1;23304:20;:::i;:::-;23299:25;;23338:20;23356:1;23338:20;:::i;:::-;23333:25;;23393:1;23390;23386:9;23415:30;23433:11;23415:30;:::i;:::-;23404:41;;23594:1;23585:7;23581:15;23578:1;23575:22;23555:1;23548:9;23528:83;23505:139;;23624:18;;:::i;:::-;23505:139;23289:362;23241:410;;;;:::o;23657:180::-;23705:77;23702:1;23695:88;23802:4;23799:1;23792:15;23826:4;23823:1;23816:15;23843:185;23883:1;23900:20;23918:1;23900:20;:::i;:::-;23895:25;;23934:20;23952:1;23934:20;:::i;:::-;23929:25;;23973:1;23963:35;;23978:18;;:::i;:::-;23963:35;24020:1;24017;24013:9;24008:14;;23843:185;;;;:::o;24034:221::-;24174:34;24170:1;24162:6;24158:14;24151:58;24243:4;24238:2;24230:6;24226:15;24219:29;24034:221;:::o;24261:366::-;24403:3;24424:67;24488:2;24483:3;24424:67;:::i;:::-;24417:74;;24500:93;24589:3;24500:93;:::i;:::-;24618:2;24613:3;24609:12;24602:19;;24261:366;;;:::o;24633:419::-;24799:4;24837:2;24826:9;24822:18;24814:26;;24886:9;24880:4;24876:20;24872:1;24861:9;24857:17;24850:47;24914:131;25040:4;24914:131;:::i;:::-;24906:139;;24633:419;;;:::o;25058:233::-;25198:34;25194:1;25186:6;25182:14;25175:58;25267:16;25262:2;25254:6;25250:15;25243:41;25058:233;:::o;25297:366::-;25439:3;25460:67;25524:2;25519:3;25460:67;:::i;:::-;25453:74;;25536:93;25625:3;25536:93;:::i;:::-;25654:2;25649:3;25645:12;25638:19;;25297:366;;;:::o;25669:419::-;25835:4;25873:2;25862:9;25858:18;25850:26;;25922:9;25916:4;25912:20;25908:1;25897:9;25893:17;25886:47;25950:131;26076:4;25950:131;:::i;:::-;25942:139;;25669:419;;;:::o;26094:222::-;26234:34;26230:1;26222:6;26218:14;26211:58;26303:5;26298:2;26290:6;26286:15;26279:30;26094:222;:::o;26322:366::-;26464:3;26485:67;26549:2;26544:3;26485:67;:::i;:::-;26478:74;;26561:93;26650:3;26561:93;:::i;:::-;26679:2;26674:3;26670:12;26663:19;;26322:366;;;:::o;26694:419::-;26860:4;26898:2;26887:9;26883:18;26875:26;;26947:9;26941:4;26937:20;26933:1;26922:9;26918:17;26911:47;26975:131;27101:4;26975:131;:::i;:::-;26967:139;;26694:419;;;:::o;27119:230::-;27259:34;27255:1;27247:6;27243:14;27236:58;27328:13;27323:2;27315:6;27311:15;27304:38;27119:230;:::o;27355:366::-;27497:3;27518:67;27582:2;27577:3;27518:67;:::i;:::-;27511:74;;27594:93;27683:3;27594:93;:::i;:::-;27712:2;27707:3;27703:12;27696:19;;27355:366;;;:::o;27727:419::-;27893:4;27931:2;27920:9;27916:18;27908:26;;27980:9;27974:4;27970:20;27966:1;27955:9;27951:17;27944:47;28008:131;28134:4;28008:131;:::i;:::-;28000:139;;27727:419;;;:::o;28152:229::-;28292:34;28288:1;28280:6;28276:14;28269:58;28361:12;28356:2;28348:6;28344:15;28337:37;28152:229;:::o;28387:366::-;28529:3;28550:67;28614:2;28609:3;28550:67;:::i;:::-;28543:74;;28626:93;28715:3;28626:93;:::i;:::-;28744:2;28739:3;28735:12;28728:19;;28387:366;;;:::o;28759:419::-;28925:4;28963:2;28952:9;28948:18;28940:26;;29012:9;29006:4;29002:20;28998:1;28987:9;28983:17;28976:47;29040:131;29166:4;29040:131;:::i;:::-;29032:139;;28759:419;;;:::o;29184:97::-;29243:6;29271:3;29261:13;;29184:97;;;;:::o;29287:141::-;29336:4;29359:3;29351:11;;29382:3;29379:1;29372:14;29416:4;29413:1;29403:18;29395:26;;29287:141;;;:::o;29434:93::-;29471:6;29518:2;29513;29506:5;29502:14;29498:23;29488:33;;29434:93;;;:::o;29533:107::-;29577:8;29627:5;29621:4;29617:16;29596:37;;29533:107;;;;:::o;29646:393::-;29715:6;29765:1;29753:10;29749:18;29788:97;29818:66;29807:9;29788:97;:::i;:::-;29906:39;29936:8;29925:9;29906:39;:::i;:::-;29894:51;;29978:4;29974:9;29967:5;29963:21;29954:30;;30027:4;30017:8;30013:19;30006:5;30003:30;29993:40;;29722:317;;29646:393;;;;;:::o;30045:142::-;30095:9;30128:53;30146:34;30155:24;30173:5;30155:24;:::i;:::-;30146:34;:::i;:::-;30128:53;:::i;:::-;30115:66;;30045:142;;;:::o;30193:75::-;30236:3;30257:5;30250:12;;30193:75;;;:::o;30274:269::-;30384:39;30415:7;30384:39;:::i;:::-;30445:91;30494:41;30518:16;30494:41;:::i;:::-;30486:6;30479:4;30473:11;30445:91;:::i;:::-;30439:4;30432:105;30350:193;30274:269;;;:::o;30549:73::-;30594:3;30549:73;:::o;30628:189::-;30705:32;;:::i;:::-;30746:65;30804:6;30796;30790:4;30746:65;:::i;:::-;30681:136;30628:189;;:::o;30823:186::-;30883:120;30900:3;30893:5;30890:14;30883:120;;;30954:39;30991:1;30984:5;30954:39;:::i;:::-;30927:1;30920:5;30916:13;30907:22;;30883:120;;;30823:186;;:::o;31015:543::-;31116:2;31111:3;31108:11;31105:446;;;31150:38;31182:5;31150:38;:::i;:::-;31234:29;31252:10;31234:29;:::i;:::-;31224:8;31220:44;31417:2;31405:10;31402:18;31399:49;;;31438:8;31423:23;;31399:49;31461:80;31517:22;31535:3;31517:22;:::i;:::-;31507:8;31503:37;31490:11;31461:80;:::i;:::-;31120:431;;31105:446;31015:543;;;:::o;31564:117::-;31618:8;31668:5;31662:4;31658:16;31637:37;;31564:117;;;;:::o;31687:169::-;31731:6;31764:51;31812:1;31808:6;31800:5;31797:1;31793:13;31764:51;:::i;:::-;31760:56;31845:4;31839;31835:15;31825:25;;31738:118;31687:169;;;;:::o;31861:295::-;31937:4;32083:29;32108:3;32102:4;32083:29;:::i;:::-;32075:37;;32145:3;32142:1;32138:11;32132:4;32129:21;32121:29;;31861:295;;;;:::o;32161:1403::-;32285:44;32325:3;32320;32285:44;:::i;:::-;32394:18;32386:6;32383:30;32380:56;;;32416:18;;:::i;:::-;32380:56;32460:38;32492:4;32486:11;32460:38;:::i;:::-;32545:67;32605:6;32597;32591:4;32545:67;:::i;:::-;32639:1;32668:2;32660:6;32657:14;32685:1;32680:632;;;;33356:1;33373:6;33370:84;;;33429:9;33424:3;33420:19;33407:33;33398:42;;33370:84;33480:67;33540:6;33533:5;33480:67;:::i;:::-;33474:4;33467:81;33329:229;32650:908;;32680:632;32732:4;32728:9;32720:6;32716:22;32766:37;32798:4;32766:37;:::i;:::-;32825:1;32839:215;32853:7;32850:1;32847:14;32839:215;;;32939:9;32934:3;32930:19;32917:33;32909:6;32902:49;32990:1;32982:6;32978:14;32968:24;;33037:2;33026:9;33022:18;33009:31;;32876:4;32873:1;32869:12;32864:17;;32839:215;;;33082:6;33073:7;33070:19;33067:186;;;33147:9;33142:3;33138:19;33125:33;33190:48;33232:4;33224:6;33220:17;33209:9;33190:48;:::i;:::-;33182:6;33175:64;33090:163;33067:186;33299:1;33295;33287:6;33283:14;33279:22;33273:4;33266:36;32687:625;;;32650:908;;32260:1304;;;32161:1403;;;:::o;33570:234::-;33710:34;33706:1;33698:6;33694:14;33687:58;33779:17;33774:2;33766:6;33762:15;33755:42;33570:234;:::o;33810:366::-;33952:3;33973:67;34037:2;34032:3;33973:67;:::i;:::-;33966:74;;34049:93;34138:3;34049:93;:::i;:::-;34167:2;34162:3;34158:12;34151:19;;33810:366;;;:::o;34182:419::-;34348:4;34386:2;34375:9;34371:18;34363:26;;34435:9;34429:4;34425:20;34421:1;34410:9;34406:17;34399:47;34463:131;34589:4;34463:131;:::i;:::-;34455:139;;34182:419;;;:::o;34607:148::-;34709:11;34746:3;34731:18;;34607:148;;;;:::o;34761:390::-;34867:3;34895:39;34928:5;34895:39;:::i;:::-;34950:89;35032:6;35027:3;34950:89;:::i;:::-;34943:96;;35048:65;35106:6;35101:3;35094:4;35087:5;35083:16;35048:65;:::i;:::-;35138:6;35133:3;35129:16;35122:23;;34871:280;34761:390;;;;:::o;35157:155::-;35297:7;35293:1;35285:6;35281:14;35274:31;35157:155;:::o;35318:400::-;35478:3;35499:84;35581:1;35576:3;35499:84;:::i;:::-;35492:91;;35592:93;35681:3;35592:93;:::i;:::-;35710:1;35705:3;35701:11;35694:18;;35318:400;;;:::o;35724:701::-;36005:3;36027:95;36118:3;36109:6;36027:95;:::i;:::-;36020:102;;36139:95;36230:3;36221:6;36139:95;:::i;:::-;36132:102;;36251:148;36395:3;36251:148;:::i;:::-;36244:155;;36416:3;36409:10;;35724:701;;;;;:::o;36431:225::-;36571:34;36567:1;36559:6;36555:14;36548:58;36640:8;36635:2;36627:6;36623:15;36616:33;36431:225;:::o;36662:366::-;36804:3;36825:67;36889:2;36884:3;36825:67;:::i;:::-;36818:74;;36901:93;36990:3;36901:93;:::i;:::-;37019:2;37014:3;37010:12;37003:19;;36662:366;;;:::o;37034:419::-;37200:4;37238:2;37227:9;37223:18;37215:26;;37287:9;37281:4;37277:20;37273:1;37262:9;37258:17;37251:47;37315:131;37441:4;37315:131;:::i;:::-;37307:139;;37034:419;;;:::o;37459:98::-;37510:6;37544:5;37538:12;37528:22;;37459:98;;;:::o;37563:168::-;37646:11;37680:6;37675:3;37668:19;37720:4;37715:3;37711:14;37696:29;;37563:168;;;;:::o;37737:373::-;37823:3;37851:38;37883:5;37851:38;:::i;:::-;37905:70;37968:6;37963:3;37905:70;:::i;:::-;37898:77;;37984:65;38042:6;38037:3;38030:4;38023:5;38019:16;37984:65;:::i;:::-;38074:29;38096:6;38074:29;:::i;:::-;38069:3;38065:39;38058:46;;37827:283;37737:373;;;;:::o;38116:640::-;38311:4;38349:3;38338:9;38334:19;38326:27;;38363:71;38431:1;38420:9;38416:17;38407:6;38363:71;:::i;:::-;38444:72;38512:2;38501:9;38497:18;38488:6;38444:72;:::i;:::-;38526;38594:2;38583:9;38579:18;38570:6;38526:72;:::i;:::-;38645:9;38639:4;38635:20;38630:2;38619:9;38615:18;38608:48;38673:76;38744:4;38735:6;38673:76;:::i;:::-;38665:84;;38116:640;;;;;;;:::o;38762:141::-;38818:5;38849:6;38843:13;38834:22;;38865:32;38891:5;38865:32;:::i;:::-;38762:141;;;;:::o;38909:349::-;38978:6;39027:2;39015:9;39006:7;39002:23;38998:32;38995:119;;;39033:79;;:::i;:::-;38995:119;39153:1;39178:63;39233:7;39224:6;39213:9;39209:22;39178:63;:::i;:::-;39168:73;;39124:127;38909:349;;;;:::o;39264:182::-;39404:34;39400:1;39392:6;39388:14;39381:58;39264:182;:::o;39452:366::-;39594:3;39615:67;39679:2;39674:3;39615:67;:::i;:::-;39608:74;;39691:93;39780:3;39691:93;:::i;:::-;39809:2;39804:3;39800:12;39793:19;;39452:366;;;:::o;39824:419::-;39990:4;40028:2;40017:9;40013:18;40005:26;;40077:9;40071:4;40067:20;40063:1;40052:9;40048:17;40041:47;40105:131;40231:4;40105:131;:::i;:::-;40097:139;;39824:419;;;:::o;40249:229::-;40389:34;40385:1;40377:6;40373:14;40366:58;40458:12;40453:2;40445:6;40441:15;40434:37;40249:229;:::o;40484:366::-;40626:3;40647:67;40711:2;40706:3;40647:67;:::i;:::-;40640:74;;40723:93;40812:3;40723:93;:::i;:::-;40841:2;40836:3;40832:12;40825:19;;40484:366;;;:::o;40856:419::-;41022:4;41060:2;41049:9;41045:18;41037:26;;41109:9;41103:4;41099:20;41095:1;41084:9;41080:17;41073:47;41137:131;41263:4;41137:131;:::i;:::-;41129:139;;40856:419;;;:::o;41281:175::-;41421:27;41417:1;41409:6;41405:14;41398:51;41281:175;:::o;41462:366::-;41604:3;41625:67;41689:2;41684:3;41625:67;:::i;:::-;41618:74;;41701:93;41790:3;41701:93;:::i;:::-;41819:2;41814:3;41810:12;41803:19;;41462:366;;;:::o;41834:419::-;42000:4;42038:2;42027:9;42023:18;42015:26;;42087:9;42081:4;42077:20;42073:1;42062:9;42058:17;42051:47;42115:131;42241:4;42115:131;:::i;:::-;42107:139;;41834:419;;;:::o;42259:221::-;42399:34;42395:1;42387:6;42383:14;42376:58;42468:4;42463:2;42455:6;42451:15;42444:29;42259:221;:::o;42486:366::-;42628:3;42649:67;42713:2;42708:3;42649:67;:::i;:::-;42642:74;;42725:93;42814:3;42725:93;:::i;:::-;42843:2;42838:3;42834:12;42827:19;;42486:366;;;:::o;42858:419::-;43024:4;43062:2;43051:9;43047:18;43039:26;;43111:9;43105:4;43101:20;43097:1;43086:9;43082:17;43075:47;43139:131;43265:4;43139:131;:::i;:::-;43131:139;;42858:419;;;:::o;43283:244::-;43423:34;43419:1;43411:6;43407:14;43400:58;43492:27;43487:2;43479:6;43475:15;43468:52;43283:244;:::o;43533:366::-;43675:3;43696:67;43760:2;43755:3;43696:67;:::i;:::-;43689:74;;43772:93;43861:3;43772:93;:::i;:::-;43890:2;43885:3;43881:12;43874:19;;43533:366;;;:::o;43905:419::-;44071:4;44109:2;44098:9;44094:18;44086:26;;44158:9;44152:4;44148:20;44144:1;44133:9;44129:17;44122:47;44186:131;44312:4;44186:131;:::i;:::-;44178:139;;43905:419;;;:::o;44330:229::-;44470:34;44466:1;44458:6;44454:14;44447:58;44539:12;44534:2;44526:6;44522:15;44515:37;44330:229;:::o;44565:366::-;44707:3;44728:67;44792:2;44787:3;44728:67;:::i;:::-;44721:74;;44804:93;44893:3;44804:93;:::i;:::-;44922:2;44917:3;44913:12;44906:19;;44565:366;;;:::o;44937:419::-;45103:4;45141:2;45130:9;45126:18;45118:26;;45190:9;45184:4;45180:20;45176:1;45165:9;45161:17;45154:47;45218:131;45344:4;45218:131;:::i;:::-;45210:139;;44937:419;;;:::o;45362:194::-;45402:4;45422:20;45440:1;45422:20;:::i;:::-;45417:25;;45456:20;45474:1;45456:20;:::i;:::-;45451:25;;45500:1;45497;45493:9;45485:17;;45524:1;45518:4;45515:11;45512:37;;;45529:18;;:::i;:::-;45512:37;45362:194;;;;:::o;45562:171::-;45601:3;45624:24;45642:5;45624:24;:::i;:::-;45615:33;;45670:4;45663:5;45660:15;45657:41;;45678:18;;:::i;:::-;45657:41;45725:1;45718:5;45714:13;45707:20;;45562:171;;;:::o;45739:234::-;45879:34;45875:1;45867:6;45863:14;45856:58;45948:17;45943:2;45935:6;45931:15;45924:42;45739:234;:::o;45979:366::-;46121:3;46142:67;46206:2;46201:3;46142:67;:::i;:::-;46135:74;;46218:93;46307:3;46218:93;:::i;:::-;46336:2;46331:3;46327:12;46320:19;;45979:366;;;:::o;46351:419::-;46517:4;46555:2;46544:9;46540:18;46532:26;;46604:9;46598:4;46594:20;46590:1;46579:9;46575:17;46568:47;46632:131;46758:4;46632:131;:::i;:::-;46624:139;;46351:419;;;:::o;46776:176::-;46916:28;46912:1;46904:6;46900:14;46893:52;46776:176;:::o;46958:366::-;47100:3;47121:67;47185:2;47180:3;47121:67;:::i;:::-;47114:74;;47197:93;47286:3;47197:93;:::i;:::-;47315:2;47310:3;47306:12;47299:19;;46958:366;;;:::o;47330:419::-;47496:4;47534:2;47523:9;47519:18;47511:26;;47583:9;47577:4;47573:20;47569:1;47558:9;47554:17;47547:47;47611:131;47737:4;47611:131;:::i;:::-;47603:139;;47330:419;;;:::o;47755:176::-;47787:1;47804:20;47822:1;47804:20;:::i;:::-;47799:25;;47838:20;47856:1;47838:20;:::i;:::-;47833:25;;47877:1;47867:35;;47882:18;;:::i;:::-;47867:35;47923:1;47920;47916:9;47911:14;;47755:176;;;;:::o;47937:180::-;47985:77;47982:1;47975:88;48082:4;48079:1;48072:15;48106:4;48103:1;48096:15;48123:237;48263:34;48259:1;48251:6;48247:14;48240:58;48332:20;48327:2;48319:6;48315:15;48308:45;48123:237;:::o;48366:366::-;48508:3;48529:67;48593:2;48588:3;48529:67;:::i;:::-;48522:74;;48605:93;48694:3;48605:93;:::i;:::-;48723:2;48718:3;48714:12;48707:19;;48366:366;;;:::o;48738:419::-;48904:4;48942:2;48931:9;48927:18;48919:26;;48991:9;48985:4;48981:20;48977:1;48966:9;48962:17;48955:47;49019:131;49145:4;49019:131;:::i;:::-;49011:139;;48738:419;;;:::o;49163:225::-;49303:34;49299:1;49291:6;49287:14;49280:58;49372:8;49367:2;49359:6;49355:15;49348:33;49163:225;:::o;49394:366::-;49536:3;49557:67;49621:2;49616:3;49557:67;:::i;:::-;49550:74;;49633:93;49722:3;49633:93;:::i;:::-;49751:2;49746:3;49742:12;49735:19;;49394:366;;;:::o;49766:419::-;49932:4;49970:2;49959:9;49955:18;49947:26;;50019:9;50013:4;50009:20;50005:1;49994:9;49990:17;49983:47;50047:131;50173:4;50047:131;:::i;:::-;50039:139;;49766:419;;;:::o;50191:224::-;50331:34;50327:1;50319:6;50315:14;50308:58;50400:7;50395:2;50387:6;50383:15;50376:32;50191:224;:::o;50421:366::-;50563:3;50584:67;50648:2;50643:3;50584:67;:::i;:::-;50577:74;;50660:93;50749:3;50660:93;:::i;:::-;50778:2;50773:3;50769:12;50762:19;;50421:366;;;:::o;50793:419::-;50959:4;50997:2;50986:9;50982:18;50974:26;;51046:9;51040:4;51036:20;51032:1;51021:9;51017:17;51010:47;51074:131;51200:4;51074:131;:::i;:::-;51066:139;;50793:419;;;:::o;51218:227::-;51258:4;51278:20;51296:1;51278:20;:::i;:::-;51273:25;;51312:20;51330:1;51312:20;:::i;:::-;51307:25;;51356:1;51353;51349:9;51341:17;;51380:34;51374:4;51371:44;51368:70;;;51418:18;;:::i;:::-;51368:70;51218:227;;;;:::o

Swarm Source

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