ETH Price: $2,586.16 (-2.71%)

Token

Sybermon (SYBR)
 

Overview

Max Total Supply

359 SYBR

Holders

34

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
versian.eth
Balance
95 SYBR
0xa5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Sybermon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: contracts/Sybermon789.sol

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

// File @openzeppelin/contracts/utils/[email protected]

// 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/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @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/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

    /**
     * @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/utils/[email protected]


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



/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/utils/introspection/[email protected]


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



/**
 * @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 contracts/ERC721A.sol


// Creator: Chiru Labs


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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `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 > 0, 'ERC721A: quantity must be greater 0');

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _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);
    }

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

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

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

contract Sybermon is ERC721A, Ownable {

    string public baseURI = "ipfs://QmRYfpwgFz16fCPEZBtzRfYLgMbfmMEdW3rTZwA4j8VamB/";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 5;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant FREE_MAX_SUPPLY = 300;
    uint256 public constant MAX_SUPPLY = 1000;
    uint256 public constant price = 0.01 ether;

    bool public paused = true;

    constructor() ERC721A("Sybermon", "SYBR") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");

        if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }

        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

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

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160005560405180606001604052806036815260200162004a2560369139600890805190602001906200003a929190620001f8565b506001600960006101000a81548160ff0219169083151502179055503480156200006357600080fd5b506040518060400160405280600881526020017f53796265726d6f6e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53594252000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000e8929190620001f8565b50806002908051906020019062000101929190620001f8565b50505062000124620001186200012a60201b60201c565b6200013260201b60201c565b6200030d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020690620002a8565b90600052602060002090601f0160209004810192826200022a576000855562000276565b82601f106200024557805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027557825182559160200191906001019062000258565b5b50905062000285919062000289565b5090565b5b80821115620002a45760008160009055506001016200028a565b5090565b60006002820490506001821680620002c157607f821691505b60208210811415620002d857620002d7620002de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614708806200031d6000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063cd7c032611610064578063cd7c0326146106d5578063e985e9c514610700578063f2fde38b1461073d578063f43a22dc14610766576101e3565b8063a22cb4651461061b578063b88d4fde14610644578063c66828621461066d578063c87b56dd14610698576101e3565b80638da5cb5b116100d15780638da5cb5b1461057e57806395d89b41146105a9578063a035b1fe146105d4578063a0712d68146105ff576101e3565b80636c0360eb146104d457806370a08231146104ff578063715018a61461053c5780638069876d14610553576101e3565b806332cb6b0c1161017a5780634f6ccce7116101495780634f6ccce71461040657806355f804b3146104435780635c975abb1461046c5780636352211e14610497576101e3565b806332cb6b0c146103705780633ccfd60b1461039b57806342842e0e146103b2578063463fff79146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df57806323b872dd1461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061300a565b610791565b60405161021c91906136d7565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612fdd565b6108db565b005b34801561025a57600080fd5b50610263610974565b60405161027091906136f2565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b91906130da565b610a06565b6040516102ad9190613670565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612f9d565b610a8b565b005b3480156102eb57600080fd5b506102f4610ba4565b6040516103019190613a74565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612e87565b610bad565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612f9d565b610bbd565b6040516103679190613a74565b60405180910390f35b34801561037c57600080fd5b50610385610dbb565b6040516103929190613a74565b60405180910390f35b3480156103a757600080fd5b506103b0610dc1565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612e87565b610ef9565b005b3480156103e757600080fd5b506103f0610f19565b6040516103fd9190613a74565b60405180910390f35b34801561041257600080fd5b5061042d600480360381019061042891906130da565b610f1e565b60405161043a9190613a74565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613091565b610f71565b005b34801561047857600080fd5b50610481611007565b60405161048e91906136d7565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b991906130da565b61101a565b6040516104cb9190613670565b60405180910390f35b3480156104e057600080fd5b506104e9611030565b6040516104f691906136f2565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190612e1a565b6110be565b6040516105339190613a74565b60405180910390f35b34801561054857600080fd5b506105516111a7565b005b34801561055f57600080fd5b5061056861122f565b6040516105759190613a74565b60405180910390f35b34801561058a57600080fd5b50610593611235565b6040516105a09190613670565b60405180910390f35b3480156105b557600080fd5b506105be61125f565b6040516105cb91906136f2565b60405180910390f35b3480156105e057600080fd5b506105e96112f1565b6040516105f69190613a74565b60405180910390f35b610619600480360381019061061491906130da565b6112fc565b005b34801561062757600080fd5b50610642600480360381019061063d9190612f5d565b611560565b005b34801561065057600080fd5b5061066b60048036038101906106669190612eda565b6116e1565b005b34801561067957600080fd5b5061068261173d565b60405161068f91906136f2565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba91906130da565b611776565b6040516106cc91906136f2565b60405180910390f35b3480156106e157600080fd5b506106ea611855565b6040516106f79190613670565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612e47565b61186d565b60405161073491906136d7565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612e1a565b611961565b005b34801561077257600080fd5b5061077b611a59565b6040516107889190613a74565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d457506108d382611a5e565b5b9050919050565b6108e3611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610901611235565b73ffffffffffffffffffffffffffffffffffffffff1614610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e906138d4565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60606001805461098390613de2565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90613de2565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b5050505050905090565b6000610a1182611ad0565b610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4790613a34565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a968261101a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90613954565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b26611ac8565b73ffffffffffffffffffffffffffffffffffffffff161480610b555750610b5481610b4f611ac8565b61186d565b5b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613834565b60405180910390fd5b610b9f838383611add565b505050565b60008054905090565b610bb8838383611b8f565b505050565b6000610bc8836110be565b8210610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613714565b60405180910390fd5b6000610c13610ba4565b905060008060005b83811015610d79576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d655786841415610d56578195505050505050610db5565b8380610d6190613e45565b9450505b508080610d7190613e45565b915050610c1b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90613a14565b60405180910390fd5b92915050565b6103e881565b610dc9611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610de7611235565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e34906138d4565b60405180910390fd5b60004790506000610e4c611ac8565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e6f9061365b565b60006040518083038185875af1925050503d8060008114610eac576040519150601f19603f3d011682016040523d82523d6000602084013e610eb1565b606091505b5050905080610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec906139f4565b60405180910390fd5b5050565b610f14838383604051806020016040528060008152506116e1565b505050565b600581565b6000610f28610ba4565b8210610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f60906137d4565b60405180910390fd5b819050919050565b610f79611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610f97611235565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe4906138d4565b60405180910390fd5b8060089080519060200190611003929190612bdf565b5050565b600960009054906101000a900460ff1681565b600061102582612136565b600001519050919050565b6008805461103d90613de2565b80601f016020809104026020016040519081016040528092919081815260200182805461106990613de2565b80156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613874565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111af611ac8565b73ffffffffffffffffffffffffffffffffffffffff166111cd611235565b73ffffffffffffffffffffffffffffffffffffffff1614611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906138d4565b60405180910390fd5b61122d6000612291565b565b61012c81565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461126e90613de2565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90613de2565b80156112e75780601f106112bc576101008083540402835291602001916112e7565b820191906000526020600020905b8154815290600101906020018083116112ca57829003601f168201915b5050505050905090565b662386f26fc1000081565b6000611306611ac8565b9050600960009054906101000a900460ff1615611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90613734565b60405180910390fd5b81611361610ba4565b61136b9190613bbf565b6103e810156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613854565b60405180910390fd5b600082116113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990613794565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145790613a54565b60405180910390fd5b611468610ba4565b61012c106114b95781600510156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613814565b60405180910390fd5b611552565b81600a10156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f4906137b4565b60405180910390fd5b34662386f26fc10000836115119190613c46565b14611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890613934565b60405180910390fd5b5b61155c8183612357565b5050565b611568611ac8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd906138f4565b60405180910390fd5b80600660006115e3611ac8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611690611ac8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116d591906136d7565b60405180910390a35050565b6116ec848484611b8f565b6116f884848484612375565b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613994565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061178182611ad0565b6117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790613894565b60405180910390fd5b6000600880546117cf90613de2565b9050116117eb576040518060200160405280600081525061184e565b60086117f68361250c565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161183e9392919061362a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118d79190613670565b60206040518083038186803b1580156118ef57600080fd5b505afa158015611903573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119279190613064565b73ffffffffffffffffffffffffffffffffffffffff16141561194d57600191505061195b565b611957848461266d565b9150505b92915050565b611969611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611987611235565b73ffffffffffffffffffffffffffffffffffffffff16146119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d4906138d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490613754565b60405180910390fd5b611a5681612291565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b9a82612136565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bc1611ac8565b73ffffffffffffffffffffffffffffffffffffffff161480611c1d5750611be6611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611c0584610a06565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c395750611c388260000151611c33611ac8565b61186d565b5b905080611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290613914565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce4906138b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d54906137f4565b60405180910390fd5b611d6a8585856001612701565b611d7a6000848460000151611add565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f809190613bbf565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120c657611ff681611ad0565b156120c5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461212e8686866001612707565b505050505050565b61213e612c65565b61214782611ad0565b612186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217d90613774565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461227857809250505061228c565b50808061228490613db8565b91505061218c565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61237182826040518060200160405280600081525061270d565b5050565b60006123968473ffffffffffffffffffffffffffffffffffffffff16612bcc565b156124ff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123bf611ac8565b8786866040518563ffffffff1660e01b81526004016123e1949392919061368b565b602060405180830381600087803b1580156123fb57600080fd5b505af192505050801561242c57506040513d601f19601f820116820180604052508101906124299190613037565b60015b6124af573d806000811461245c576040519150601f19603f3d011682016040523d82523d6000602084013e612461565b606091505b506000815114156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90613994565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612504565b600190505b949350505050565b60606000821415612554576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612668565b600082905060005b6000821461258657808061256f90613e45565b915050600a8261257f9190613c15565b915061255c565b60008167ffffffffffffffff8111156125a2576125a1613f7b565b5b6040519080825280601f01601f1916602001820160405280156125d45781602001600182028036833780820191505090505b5090505b60008514612661576001826125ed9190613ca0565b9150600a856125fc9190613e8e565b60306126089190613bbf565b60f81b81838151811061261e5761261d613f4c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561265a9190613c15565b94506125d8565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a906139d4565b60405180910390fd5b61278c81611ad0565b156127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c3906139b4565b60405180910390fd5b6000831161280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690613974565b60405180910390fd5b61281c6000858386612701565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129199190613b79565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129409190613b79565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612baf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4f6000888488612375565b612b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8590613994565b60405180910390fd5b8180612b9990613e45565b9250508080612ba790613e45565b915050612ade565b5080600081905550612bc46000878588612707565b505050505050565b600080823b905060008111915050919050565b828054612beb90613de2565b90600052602060002090601f016020900481019282612c0d5760008555612c54565b82601f10612c2657805160ff1916838001178555612c54565b82800160010185558215612c54579182015b82811115612c53578251825591602001919060010190612c38565b5b509050612c619190612c9f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612cb8576000816000905550600101612ca0565b5090565b6000612ccf612cca84613ab4565b613a8f565b905082815260208101848484011115612ceb57612cea613faf565b5b612cf6848285613d76565b509392505050565b6000612d11612d0c84613ae5565b613a8f565b905082815260208101848484011115612d2d57612d2c613faf565b5b612d38848285613d76565b509392505050565b600081359050612d4f8161465f565b92915050565b600081359050612d6481614676565b92915050565b600081359050612d798161468d565b92915050565b600081519050612d8e8161468d565b92915050565b600082601f830112612da957612da8613faa565b5b8135612db9848260208601612cbc565b91505092915050565b600081519050612dd1816146a4565b92915050565b600082601f830112612dec57612deb613faa565b5b8135612dfc848260208601612cfe565b91505092915050565b600081359050612e14816146bb565b92915050565b600060208284031215612e3057612e2f613fb9565b5b6000612e3e84828501612d40565b91505092915050565b60008060408385031215612e5e57612e5d613fb9565b5b6000612e6c85828601612d40565b9250506020612e7d85828601612d40565b9150509250929050565b600080600060608486031215612ea057612e9f613fb9565b5b6000612eae86828701612d40565b9350506020612ebf86828701612d40565b9250506040612ed086828701612e05565b9150509250925092565b60008060008060808587031215612ef457612ef3613fb9565b5b6000612f0287828801612d40565b9450506020612f1387828801612d40565b9350506040612f2487828801612e05565b925050606085013567ffffffffffffffff811115612f4557612f44613fb4565b5b612f5187828801612d94565b91505092959194509250565b60008060408385031215612f7457612f73613fb9565b5b6000612f8285828601612d40565b9250506020612f9385828601612d55565b9150509250929050565b60008060408385031215612fb457612fb3613fb9565b5b6000612fc285828601612d40565b9250506020612fd385828601612e05565b9150509250929050565b600060208284031215612ff357612ff2613fb9565b5b600061300184828501612d55565b91505092915050565b6000602082840312156130205761301f613fb9565b5b600061302e84828501612d6a565b91505092915050565b60006020828403121561304d5761304c613fb9565b5b600061305b84828501612d7f565b91505092915050565b60006020828403121561307a57613079613fb9565b5b600061308884828501612dc2565b91505092915050565b6000602082840312156130a7576130a6613fb9565b5b600082013567ffffffffffffffff8111156130c5576130c4613fb4565b5b6130d184828501612dd7565b91505092915050565b6000602082840312156130f0576130ef613fb9565b5b60006130fe84828501612e05565b91505092915050565b61311081613cd4565b82525050565b61311f81613ce6565b82525050565b600061313082613b2b565b61313a8185613b41565b935061314a818560208601613d85565b61315381613fbe565b840191505092915050565b600061316982613b36565b6131738185613b5d565b9350613183818560208601613d85565b61318c81613fbe565b840191505092915050565b60006131a282613b36565b6131ac8185613b6e565b93506131bc818560208601613d85565b80840191505092915050565b600081546131d581613de2565b6131df8186613b6e565b945060018216600081146131fa576001811461320b5761323e565b60ff1983168652818601935061323e565b61321485613b16565b60005b8381101561323657815481890152600182019150602081019050613217565b838801955050505b50505092915050565b6000613254602283613b5d565b915061325f82613fcf565b604082019050919050565b6000613277600683613b5d565b91506132828261401e565b602082019050919050565b600061329a602683613b5d565b91506132a582614047565b604082019050919050565b60006132bd602a83613b5d565b91506132c882614096565b604082019050919050565b60006132e0600a83613b5d565b91506132eb826140e5565b602082019050919050565b6000613303601683613b5d565b915061330e8261410e565b602082019050919050565b6000613326602383613b5d565b915061333182614137565b604082019050919050565b6000613349602583613b5d565b915061335482614186565b604082019050919050565b600061336c601683613b5d565b9150613377826141d5565b602082019050919050565b600061338f603983613b5d565b915061339a826141fe565b604082019050919050565b60006133b2601283613b5d565b91506133bd8261424d565b602082019050919050565b60006133d5602b83613b5d565b91506133e082614276565b604082019050919050565b60006133f8601583613b5d565b9150613403826142c5565b602082019050919050565b600061341b602683613b5d565b9150613426826142ee565b604082019050919050565b600061343e602083613b5d565b91506134498261433d565b602082019050919050565b6000613461601a83613b5d565b915061346c82614366565b602082019050919050565b6000613484603283613b5d565b915061348f8261438f565b604082019050919050565b60006134a7601683613b5d565b91506134b2826143de565b602082019050919050565b60006134ca602283613b5d565b91506134d582614407565b604082019050919050565b60006134ed600083613b52565b91506134f882614456565b600082019050919050565b6000613510602383613b5d565b915061351b82614459565b604082019050919050565b6000613533603383613b5d565b915061353e826144a8565b604082019050919050565b6000613556601d83613b5d565b9150613561826144f7565b602082019050919050565b6000613579602183613b5d565b915061358482614520565b604082019050919050565b600061359c600e83613b5d565b91506135a78261456f565b602082019050919050565b60006135bf602e83613b5d565b91506135ca82614598565b604082019050919050565b60006135e2602d83613b5d565b91506135ed826145e7565b604082019050919050565b6000613605600c83613b5d565b915061361082614636565b602082019050919050565b61362481613d6c565b82525050565b600061363682866131c8565b91506136428285613197565b915061364e8284613197565b9150819050949350505050565b6000613666826134e0565b9150819050919050565b60006020820190506136856000830184613107565b92915050565b60006080820190506136a06000830187613107565b6136ad6020830186613107565b6136ba604083018561361b565b81810360608301526136cc8184613125565b905095945050505050565b60006020820190506136ec6000830184613116565b92915050565b6000602082019050818103600083015261370c818461315e565b905092915050565b6000602082019050818103600083015261372d81613247565b9050919050565b6000602082019050818103600083015261374d8161326a565b9050919050565b6000602082019050818103600083015261376d8161328d565b9050919050565b6000602082019050818103600083015261378d816132b0565b9050919050565b600060208201905081810360008301526137ad816132d3565b9050919050565b600060208201905081810360008301526137cd816132f6565b9050919050565b600060208201905081810360008301526137ed81613319565b9050919050565b6000602082019050818103600083015261380d8161333c565b9050919050565b6000602082019050818103600083015261382d8161335f565b9050919050565b6000602082019050818103600083015261384d81613382565b9050919050565b6000602082019050818103600083015261386d816133a5565b9050919050565b6000602082019050818103600083015261388d816133c8565b9050919050565b600060208201905081810360008301526138ad816133eb565b9050919050565b600060208201905081810360008301526138cd8161340e565b9050919050565b600060208201905081810360008301526138ed81613431565b9050919050565b6000602082019050818103600083015261390d81613454565b9050919050565b6000602082019050818103600083015261392d81613477565b9050919050565b6000602082019050818103600083015261394d8161349a565b9050919050565b6000602082019050818103600083015261396d816134bd565b9050919050565b6000602082019050818103600083015261398d81613503565b9050919050565b600060208201905081810360008301526139ad81613526565b9050919050565b600060208201905081810360008301526139cd81613549565b9050919050565b600060208201905081810360008301526139ed8161356c565b9050919050565b60006020820190508181036000830152613a0d8161358f565b9050919050565b60006020820190508181036000830152613a2d816135b2565b9050919050565b60006020820190508181036000830152613a4d816135d5565b9050919050565b60006020820190508181036000830152613a6d816135f8565b9050919050565b6000602082019050613a89600083018461361b565b92915050565b6000613a99613aaa565b9050613aa58282613e14565b919050565b6000604051905090565b600067ffffffffffffffff821115613acf57613ace613f7b565b5b613ad882613fbe565b9050602081019050919050565b600067ffffffffffffffff821115613b0057613aff613f7b565b5b613b0982613fbe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b8482613d30565b9150613b8f83613d30565b9250826fffffffffffffffffffffffffffffffff03821115613bb457613bb3613ebf565b5b828201905092915050565b6000613bca82613d6c565b9150613bd583613d6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0a57613c09613ebf565b5b828201905092915050565b6000613c2082613d6c565b9150613c2b83613d6c565b925082613c3b57613c3a613eee565b5b828204905092915050565b6000613c5182613d6c565b9150613c5c83613d6c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9557613c94613ebf565b5b828202905092915050565b6000613cab82613d6c565b9150613cb683613d6c565b925082821015613cc957613cc8613ebf565b5b828203905092915050565b6000613cdf82613d4c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613d2982613cd4565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da3578082015181840152602081019050613d88565b83811115613db2576000848401525b50505050565b6000613dc382613d6c565b91506000821415613dd757613dd6613ebf565b5b600182039050919050565b60006002820490506001821680613dfa57607f821691505b60208210811415613e0e57613e0d613f1d565b5b50919050565b613e1d82613fbe565b810181811067ffffffffffffffff82111715613e3c57613e3b613f7b565b5b80604052505050565b6000613e5082613d6c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8357613e82613ebf565b5b600182019050919050565b6000613e9982613d6c565b9150613ea483613d6c565b925082613eb457613eb3613eee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61466881613cd4565b811461467357600080fd5b50565b61467f81613ce6565b811461468a57600080fd5b50565b61469681613cf2565b81146146a157600080fd5b50565b6146ad81613d1e565b81146146b857600080fd5b50565b6146c481613d6c565b81146146cf57600080fd5b5056fea2646970667358221220849476138734ca232b821127737fc282869fbc88380f78967a73afdc295fcbeb64736f6c63430008070033697066733a2f2f516d525966707767467a3136664350455a42747a5266594c674d62666d4d4564573372545a7741346a3856616d422f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063cd7c032611610064578063cd7c0326146106d5578063e985e9c514610700578063f2fde38b1461073d578063f43a22dc14610766576101e3565b8063a22cb4651461061b578063b88d4fde14610644578063c66828621461066d578063c87b56dd14610698576101e3565b80638da5cb5b116100d15780638da5cb5b1461057e57806395d89b41146105a9578063a035b1fe146105d4578063a0712d68146105ff576101e3565b80636c0360eb146104d457806370a08231146104ff578063715018a61461053c5780638069876d14610553576101e3565b806332cb6b0c1161017a5780634f6ccce7116101495780634f6ccce71461040657806355f804b3146104435780635c975abb1461046c5780636352211e14610497576101e3565b806332cb6b0c146103705780633ccfd60b1461039b57806342842e0e146103b2578063463fff79146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df57806323b872dd1461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061300a565b610791565b60405161021c91906136d7565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612fdd565b6108db565b005b34801561025a57600080fd5b50610263610974565b60405161027091906136f2565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b91906130da565b610a06565b6040516102ad9190613670565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612f9d565b610a8b565b005b3480156102eb57600080fd5b506102f4610ba4565b6040516103019190613a74565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612e87565b610bad565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612f9d565b610bbd565b6040516103679190613a74565b60405180910390f35b34801561037c57600080fd5b50610385610dbb565b6040516103929190613a74565b60405180910390f35b3480156103a757600080fd5b506103b0610dc1565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612e87565b610ef9565b005b3480156103e757600080fd5b506103f0610f19565b6040516103fd9190613a74565b60405180910390f35b34801561041257600080fd5b5061042d600480360381019061042891906130da565b610f1e565b60405161043a9190613a74565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613091565b610f71565b005b34801561047857600080fd5b50610481611007565b60405161048e91906136d7565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b991906130da565b61101a565b6040516104cb9190613670565b60405180910390f35b3480156104e057600080fd5b506104e9611030565b6040516104f691906136f2565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190612e1a565b6110be565b6040516105339190613a74565b60405180910390f35b34801561054857600080fd5b506105516111a7565b005b34801561055f57600080fd5b5061056861122f565b6040516105759190613a74565b60405180910390f35b34801561058a57600080fd5b50610593611235565b6040516105a09190613670565b60405180910390f35b3480156105b557600080fd5b506105be61125f565b6040516105cb91906136f2565b60405180910390f35b3480156105e057600080fd5b506105e96112f1565b6040516105f69190613a74565b60405180910390f35b610619600480360381019061061491906130da565b6112fc565b005b34801561062757600080fd5b50610642600480360381019061063d9190612f5d565b611560565b005b34801561065057600080fd5b5061066b60048036038101906106669190612eda565b6116e1565b005b34801561067957600080fd5b5061068261173d565b60405161068f91906136f2565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba91906130da565b611776565b6040516106cc91906136f2565b60405180910390f35b3480156106e157600080fd5b506106ea611855565b6040516106f79190613670565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612e47565b61186d565b60405161073491906136d7565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612e1a565b611961565b005b34801561077257600080fd5b5061077b611a59565b6040516107889190613a74565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d457506108d382611a5e565b5b9050919050565b6108e3611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610901611235565b73ffffffffffffffffffffffffffffffffffffffff1614610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e906138d4565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60606001805461098390613de2565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90613de2565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b5050505050905090565b6000610a1182611ad0565b610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4790613a34565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a968261101a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90613954565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b26611ac8565b73ffffffffffffffffffffffffffffffffffffffff161480610b555750610b5481610b4f611ac8565b61186d565b5b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613834565b60405180910390fd5b610b9f838383611add565b505050565b60008054905090565b610bb8838383611b8f565b505050565b6000610bc8836110be565b8210610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613714565b60405180910390fd5b6000610c13610ba4565b905060008060005b83811015610d79576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d0d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d655786841415610d56578195505050505050610db5565b8380610d6190613e45565b9450505b508080610d7190613e45565b915050610c1b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90613a14565b60405180910390fd5b92915050565b6103e881565b610dc9611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610de7611235565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e34906138d4565b60405180910390fd5b60004790506000610e4c611ac8565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e6f9061365b565b60006040518083038185875af1925050503d8060008114610eac576040519150601f19603f3d011682016040523d82523d6000602084013e610eb1565b606091505b5050905080610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec906139f4565b60405180910390fd5b5050565b610f14838383604051806020016040528060008152506116e1565b505050565b600581565b6000610f28610ba4565b8210610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f60906137d4565b60405180910390fd5b819050919050565b610f79611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610f97611235565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe4906138d4565b60405180910390fd5b8060089080519060200190611003929190612bdf565b5050565b600960009054906101000a900460ff1681565b600061102582612136565b600001519050919050565b6008805461103d90613de2565b80601f016020809104026020016040519081016040528092919081815260200182805461106990613de2565b80156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613874565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111af611ac8565b73ffffffffffffffffffffffffffffffffffffffff166111cd611235565b73ffffffffffffffffffffffffffffffffffffffff1614611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906138d4565b60405180910390fd5b61122d6000612291565b565b61012c81565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461126e90613de2565b80601f016020809104026020016040519081016040528092919081815260200182805461129a90613de2565b80156112e75780601f106112bc576101008083540402835291602001916112e7565b820191906000526020600020905b8154815290600101906020018083116112ca57829003601f168201915b5050505050905090565b662386f26fc1000081565b6000611306611ac8565b9050600960009054906101000a900460ff1615611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90613734565b60405180910390fd5b81611361610ba4565b61136b9190613bbf565b6103e810156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613854565b60405180910390fd5b600082116113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990613794565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145790613a54565b60405180910390fd5b611468610ba4565b61012c106114b95781600510156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613814565b60405180910390fd5b611552565b81600a10156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f4906137b4565b60405180910390fd5b34662386f26fc10000836115119190613c46565b14611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890613934565b60405180910390fd5b5b61155c8183612357565b5050565b611568611ac8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd906138f4565b60405180910390fd5b80600660006115e3611ac8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611690611ac8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116d591906136d7565b60405180910390a35050565b6116ec848484611b8f565b6116f884848484612375565b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613994565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061178182611ad0565b6117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790613894565b60405180910390fd5b6000600880546117cf90613de2565b9050116117eb576040518060200160405280600081525061184e565b60086117f68361250c565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161183e9392919061362a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118d79190613670565b60206040518083038186803b1580156118ef57600080fd5b505afa158015611903573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119279190613064565b73ffffffffffffffffffffffffffffffffffffffff16141561194d57600191505061195b565b611957848461266d565b9150505b92915050565b611969611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611987611235565b73ffffffffffffffffffffffffffffffffffffffff16146119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d4906138d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490613754565b60405180910390fd5b611a5681612291565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b9a82612136565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bc1611ac8565b73ffffffffffffffffffffffffffffffffffffffff161480611c1d5750611be6611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611c0584610a06565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c395750611c388260000151611c33611ac8565b61186d565b5b905080611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290613914565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce4906138b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d54906137f4565b60405180910390fd5b611d6a8585856001612701565b611d7a6000848460000151611add565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f809190613bbf565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120c657611ff681611ad0565b156120c5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461212e8686866001612707565b505050505050565b61213e612c65565b61214782611ad0565b612186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217d90613774565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461227857809250505061228c565b50808061228490613db8565b91505061218c565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61237182826040518060200160405280600081525061270d565b5050565b60006123968473ffffffffffffffffffffffffffffffffffffffff16612bcc565b156124ff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123bf611ac8565b8786866040518563ffffffff1660e01b81526004016123e1949392919061368b565b602060405180830381600087803b1580156123fb57600080fd5b505af192505050801561242c57506040513d601f19601f820116820180604052508101906124299190613037565b60015b6124af573d806000811461245c576040519150601f19603f3d011682016040523d82523d6000602084013e612461565b606091505b506000815114156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90613994565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612504565b600190505b949350505050565b60606000821415612554576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612668565b600082905060005b6000821461258657808061256f90613e45565b915050600a8261257f9190613c15565b915061255c565b60008167ffffffffffffffff8111156125a2576125a1613f7b565b5b6040519080825280601f01601f1916602001820160405280156125d45781602001600182028036833780820191505090505b5090505b60008514612661576001826125ed9190613ca0565b9150600a856125fc9190613e8e565b60306126089190613bbf565b60f81b81838151811061261e5761261d613f4c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561265a9190613c15565b94506125d8565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a906139d4565b60405180910390fd5b61278c81611ad0565b156127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c3906139b4565b60405180910390fd5b6000831161280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690613974565b60405180910390fd5b61281c6000858386612701565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129199190613b79565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129409190613b79565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612baf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4f6000888488612375565b612b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8590613994565b60405180910390fd5b8180612b9990613e45565b9250508080612ba790613e45565b915050612ade565b5080600081905550612bc46000878588612707565b505050505050565b600080823b905060008111915050919050565b828054612beb90613de2565b90600052602060002090601f016020900481019282612c0d5760008555612c54565b82601f10612c2657805160ff1916838001178555612c54565b82800160010185558215612c54579182015b82811115612c53578251825591602001919060010190612c38565b5b509050612c619190612c9f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612cb8576000816000905550600101612ca0565b5090565b6000612ccf612cca84613ab4565b613a8f565b905082815260208101848484011115612ceb57612cea613faf565b5b612cf6848285613d76565b509392505050565b6000612d11612d0c84613ae5565b613a8f565b905082815260208101848484011115612d2d57612d2c613faf565b5b612d38848285613d76565b509392505050565b600081359050612d4f8161465f565b92915050565b600081359050612d6481614676565b92915050565b600081359050612d798161468d565b92915050565b600081519050612d8e8161468d565b92915050565b600082601f830112612da957612da8613faa565b5b8135612db9848260208601612cbc565b91505092915050565b600081519050612dd1816146a4565b92915050565b600082601f830112612dec57612deb613faa565b5b8135612dfc848260208601612cfe565b91505092915050565b600081359050612e14816146bb565b92915050565b600060208284031215612e3057612e2f613fb9565b5b6000612e3e84828501612d40565b91505092915050565b60008060408385031215612e5e57612e5d613fb9565b5b6000612e6c85828601612d40565b9250506020612e7d85828601612d40565b9150509250929050565b600080600060608486031215612ea057612e9f613fb9565b5b6000612eae86828701612d40565b9350506020612ebf86828701612d40565b9250506040612ed086828701612e05565b9150509250925092565b60008060008060808587031215612ef457612ef3613fb9565b5b6000612f0287828801612d40565b9450506020612f1387828801612d40565b9350506040612f2487828801612e05565b925050606085013567ffffffffffffffff811115612f4557612f44613fb4565b5b612f5187828801612d94565b91505092959194509250565b60008060408385031215612f7457612f73613fb9565b5b6000612f8285828601612d40565b9250506020612f9385828601612d55565b9150509250929050565b60008060408385031215612fb457612fb3613fb9565b5b6000612fc285828601612d40565b9250506020612fd385828601612e05565b9150509250929050565b600060208284031215612ff357612ff2613fb9565b5b600061300184828501612d55565b91505092915050565b6000602082840312156130205761301f613fb9565b5b600061302e84828501612d6a565b91505092915050565b60006020828403121561304d5761304c613fb9565b5b600061305b84828501612d7f565b91505092915050565b60006020828403121561307a57613079613fb9565b5b600061308884828501612dc2565b91505092915050565b6000602082840312156130a7576130a6613fb9565b5b600082013567ffffffffffffffff8111156130c5576130c4613fb4565b5b6130d184828501612dd7565b91505092915050565b6000602082840312156130f0576130ef613fb9565b5b60006130fe84828501612e05565b91505092915050565b61311081613cd4565b82525050565b61311f81613ce6565b82525050565b600061313082613b2b565b61313a8185613b41565b935061314a818560208601613d85565b61315381613fbe565b840191505092915050565b600061316982613b36565b6131738185613b5d565b9350613183818560208601613d85565b61318c81613fbe565b840191505092915050565b60006131a282613b36565b6131ac8185613b6e565b93506131bc818560208601613d85565b80840191505092915050565b600081546131d581613de2565b6131df8186613b6e565b945060018216600081146131fa576001811461320b5761323e565b60ff1983168652818601935061323e565b61321485613b16565b60005b8381101561323657815481890152600182019150602081019050613217565b838801955050505b50505092915050565b6000613254602283613b5d565b915061325f82613fcf565b604082019050919050565b6000613277600683613b5d565b91506132828261401e565b602082019050919050565b600061329a602683613b5d565b91506132a582614047565b604082019050919050565b60006132bd602a83613b5d565b91506132c882614096565b604082019050919050565b60006132e0600a83613b5d565b91506132eb826140e5565b602082019050919050565b6000613303601683613b5d565b915061330e8261410e565b602082019050919050565b6000613326602383613b5d565b915061333182614137565b604082019050919050565b6000613349602583613b5d565b915061335482614186565b604082019050919050565b600061336c601683613b5d565b9150613377826141d5565b602082019050919050565b600061338f603983613b5d565b915061339a826141fe565b604082019050919050565b60006133b2601283613b5d565b91506133bd8261424d565b602082019050919050565b60006133d5602b83613b5d565b91506133e082614276565b604082019050919050565b60006133f8601583613b5d565b9150613403826142c5565b602082019050919050565b600061341b602683613b5d565b9150613426826142ee565b604082019050919050565b600061343e602083613b5d565b91506134498261433d565b602082019050919050565b6000613461601a83613b5d565b915061346c82614366565b602082019050919050565b6000613484603283613b5d565b915061348f8261438f565b604082019050919050565b60006134a7601683613b5d565b91506134b2826143de565b602082019050919050565b60006134ca602283613b5d565b91506134d582614407565b604082019050919050565b60006134ed600083613b52565b91506134f882614456565b600082019050919050565b6000613510602383613b5d565b915061351b82614459565b604082019050919050565b6000613533603383613b5d565b915061353e826144a8565b604082019050919050565b6000613556601d83613b5d565b9150613561826144f7565b602082019050919050565b6000613579602183613b5d565b915061358482614520565b604082019050919050565b600061359c600e83613b5d565b91506135a78261456f565b602082019050919050565b60006135bf602e83613b5d565b91506135ca82614598565b604082019050919050565b60006135e2602d83613b5d565b91506135ed826145e7565b604082019050919050565b6000613605600c83613b5d565b915061361082614636565b602082019050919050565b61362481613d6c565b82525050565b600061363682866131c8565b91506136428285613197565b915061364e8284613197565b9150819050949350505050565b6000613666826134e0565b9150819050919050565b60006020820190506136856000830184613107565b92915050565b60006080820190506136a06000830187613107565b6136ad6020830186613107565b6136ba604083018561361b565b81810360608301526136cc8184613125565b905095945050505050565b60006020820190506136ec6000830184613116565b92915050565b6000602082019050818103600083015261370c818461315e565b905092915050565b6000602082019050818103600083015261372d81613247565b9050919050565b6000602082019050818103600083015261374d8161326a565b9050919050565b6000602082019050818103600083015261376d8161328d565b9050919050565b6000602082019050818103600083015261378d816132b0565b9050919050565b600060208201905081810360008301526137ad816132d3565b9050919050565b600060208201905081810360008301526137cd816132f6565b9050919050565b600060208201905081810360008301526137ed81613319565b9050919050565b6000602082019050818103600083015261380d8161333c565b9050919050565b6000602082019050818103600083015261382d8161335f565b9050919050565b6000602082019050818103600083015261384d81613382565b9050919050565b6000602082019050818103600083015261386d816133a5565b9050919050565b6000602082019050818103600083015261388d816133c8565b9050919050565b600060208201905081810360008301526138ad816133eb565b9050919050565b600060208201905081810360008301526138cd8161340e565b9050919050565b600060208201905081810360008301526138ed81613431565b9050919050565b6000602082019050818103600083015261390d81613454565b9050919050565b6000602082019050818103600083015261392d81613477565b9050919050565b6000602082019050818103600083015261394d8161349a565b9050919050565b6000602082019050818103600083015261396d816134bd565b9050919050565b6000602082019050818103600083015261398d81613503565b9050919050565b600060208201905081810360008301526139ad81613526565b9050919050565b600060208201905081810360008301526139cd81613549565b9050919050565b600060208201905081810360008301526139ed8161356c565b9050919050565b60006020820190508181036000830152613a0d8161358f565b9050919050565b60006020820190508181036000830152613a2d816135b2565b9050919050565b60006020820190508181036000830152613a4d816135d5565b9050919050565b60006020820190508181036000830152613a6d816135f8565b9050919050565b6000602082019050613a89600083018461361b565b92915050565b6000613a99613aaa565b9050613aa58282613e14565b919050565b6000604051905090565b600067ffffffffffffffff821115613acf57613ace613f7b565b5b613ad882613fbe565b9050602081019050919050565b600067ffffffffffffffff821115613b0057613aff613f7b565b5b613b0982613fbe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b8482613d30565b9150613b8f83613d30565b9250826fffffffffffffffffffffffffffffffff03821115613bb457613bb3613ebf565b5b828201905092915050565b6000613bca82613d6c565b9150613bd583613d6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0a57613c09613ebf565b5b828201905092915050565b6000613c2082613d6c565b9150613c2b83613d6c565b925082613c3b57613c3a613eee565b5b828204905092915050565b6000613c5182613d6c565b9150613c5c83613d6c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9557613c94613ebf565b5b828202905092915050565b6000613cab82613d6c565b9150613cb683613d6c565b925082821015613cc957613cc8613ebf565b5b828203905092915050565b6000613cdf82613d4c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613d2982613cd4565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da3578082015181840152602081019050613d88565b83811115613db2576000848401525b50505050565b6000613dc382613d6c565b91506000821415613dd757613dd6613ebf565b5b600182039050919050565b60006002820490506001821680613dfa57607f821691505b60208210811415613e0e57613e0d613f1d565b5b50919050565b613e1d82613fbe565b810181811067ffffffffffffffff82111715613e3c57613e3b613f7b565b5b80604052505050565b6000613e5082613d6c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8357613e82613ebf565b5b600182019050919050565b6000613e9982613d6c565b9150613ea483613d6c565b925082613eb457613eb3613eee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61466881613cd4565b811461467357600080fd5b50565b61467f81613ce6565b811461468a57600080fd5b50565b61469681613cf2565b81146146a157600080fd5b50565b6146ad81613d1e565b81146146b857600080fd5b50565b6146c481613d6c565b81146146cf57600080fd5b5056fea2646970667358221220849476138734ca232b821127737fc282869fbc88380f78967a73afdc295fcbeb64736f6c63430008070033

Deployed Bytecode Sourcemap

38744:2515:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26756:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40697:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28383:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29944:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29465:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25197:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30820:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25861:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39177:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40480:209;;;;;;;;;;;;;:::i;:::-;;31053:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39029:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25374:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40786:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39276:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28192:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38791:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27192:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2735:103;;;;;;;;;;;;;:::i;:::-;;39125:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2084:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28552:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39225:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39362:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30230:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31301:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38878:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40894:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38931:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40027:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2993:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39079:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26756:372;26858:4;26910:25;26895:40;;;:11;:40;;;;:105;;;;26967:33;26952:48;;;:11;:48;;;;26895:105;:172;;;;27032:35;27017:50;;;:11;:50;;;;26895:172;:225;;;;27084:36;27108:11;27084:23;:36::i;:::-;26895:225;26875:245;;26756:372;;;:::o;40697:81::-;2315:12;:10;:12::i;:::-;2304:23;;:7;:5;:7::i;:::-;:23;;;2296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40764:6:::1;40755;;:15;;;;;;;;;;;;;;;;;;40697:81:::0;:::o;28383:100::-;28437:13;28470:5;28463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28383:100;:::o;29944:214::-;30012:7;30040:16;30048:7;30040;:16::i;:::-;30032:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30126:15;:24;30142:7;30126:24;;;;;;;;;;;;;;;;;;;;;30119:31;;29944:214;;;:::o;29465:413::-;29538:13;29554:24;29570:7;29554:15;:24::i;:::-;29538:40;;29603:5;29597:11;;:2;:11;;;;29589:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29698:5;29682:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29707:37;29724:5;29731:12;:10;:12::i;:::-;29707:16;:37::i;:::-;29682:62;29660:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;29842:28;29851:2;29855:7;29864:5;29842:8;:28::i;:::-;29527:351;29465:413;;:::o;25197:100::-;25250:7;25277:12;;25270:19;;25197:100;:::o;30820:162::-;30946:28;30956:4;30962:2;30966:7;30946:9;:28::i;:::-;30820:162;;;:::o;25861:823::-;25950:7;25986:16;25996:5;25986:9;:16::i;:::-;25978:5;:24;25970:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26052:22;26077:13;:11;:13::i;:::-;26052:38;;26101:19;26135:25;26189:9;26184:426;26208:14;26204:1;:18;26184:426;;;26244:31;26278:11;:14;26290:1;26278:14;;;;;;;;;;;26244:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26337:1;26311:28;;:9;:14;;;:28;;;26307:103;;26380:9;:14;;;26360:34;;26307:103;26449:5;26428:26;;:17;:26;;;26424:175;;;26494:5;26479:11;:20;26475:77;;;26531:1;26524:8;;;;;;;;;26475:77;26570:13;;;;;:::i;:::-;;;;26424:175;26229:381;26224:3;;;;;:::i;:::-;;;;26184:426;;;;26620:56;;;;;;;;;;:::i;:::-;;;;;;;;25861:823;;;;;:::o;39177:41::-;39214:4;39177:41;:::o;40480:209::-;2315:12;:10;:12::i;:::-;2304:23;;:7;:5;:7::i;:::-;:23;;;2296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40530:15:::1;40548:21;40530:39;;40581:12;40599;:10;:12::i;:::-;:17;;40624:7;40599:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40580:56;;;40655:7;40647:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;40519:170;;40480:209::o:0;31053:177::-;31183:39;31200:4;31206:2;31210:7;31183:39;;;;;;;;;;;;:16;:39::i;:::-;31053:177;;;:::o;39029:43::-;39071:1;39029:43;:::o;25374:187::-;25441:7;25477:13;:11;:13::i;:::-;25469:5;:21;25461:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;25548:5;25541:12;;25374:187;;;:::o;40786:100::-;2315:12;:10;:12::i;:::-;2304:23;;:7;:5;:7::i;:::-;:23;;;2296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40870:8:::1;40860:7;:18;;;;;;;;;;;;:::i;:::-;;40786:100:::0;:::o;39276:25::-;;;;;;;;;;;;;:::o;28192:124::-;28256:7;28283:20;28295:7;28283:11;:20::i;:::-;:25;;;28276:32;;28192:124;;;:::o;38791:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27192:221::-;27256:7;27301:1;27284:19;;:5;:19;;;;27276:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27377:12;:19;27390:5;27377:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27369:36;;27362:43;;27192:221;;;:::o;2735:103::-;2315:12;:10;:12::i;:::-;2304:23;;:7;:5;:7::i;:::-;:23;;;2296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2800:30:::1;2827:1;2800:18;:30::i;:::-;2735:103::o:0;39125:45::-;39167:3;39125:45;:::o;2084:87::-;2130:7;2157:6;;;;;;;;;;;2150:13;;2084:87;:::o;28552:104::-;28608:13;28641:7;28634:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28552:104;:::o;39225:42::-;39257:10;39225:42;:::o;39362:657::-;39421:15;39439:12;:10;:12::i;:::-;39421:30;;39471:6;;;;;;;;;;;39470:7;39462:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;39537:7;39521:13;:11;:13::i;:::-;:23;;;;:::i;:::-;39214:4;39507:37;;39499:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39596:1;39586:7;:11;39578:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;39644:7;39631:20;;:9;:20;;;39623:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;39703:13;:11;:13::i;:::-;39167:3;39684:32;39681:291;;39759:7;39071:1;39740:26;;39732:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39681:291;;;39847:7;39116:2;39833:21;;39825:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39924:9;39257:10;39905:7;:15;;;;:::i;:::-;:28;39897:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;39681:291;39984:27;39994:7;40003;39984:9;:27::i;:::-;39410:609;39362:657;:::o;30230:288::-;30337:12;:10;:12::i;:::-;30325:24;;:8;:24;;;;30317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30438:8;30393:18;:32;30412:12;:10;:12::i;:::-;30393:32;;;;;;;;;;;;;;;:42;30426:8;30393:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30491:8;30462:48;;30477:12;:10;:12::i;:::-;30462:48;;;30501:8;30462:48;;;;;;:::i;:::-;;;;;;;;30230:288;;:::o;31301:355::-;31460:28;31470:4;31476:2;31480:7;31460:9;:28::i;:::-;31521:48;31544:4;31550:2;31554:7;31563:5;31521:22;:48::i;:::-;31499:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;31301:355;;;;:::o;38878:46::-;;;;;;;;;;;;;;;;;;;:::o;40894:362::-;40960:13;40994:17;41002:8;40994:7;:17::i;:::-;40986:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;41079:1;41061:7;41055:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;41137:7;41161:26;41178:8;41161:16;:26::i;:::-;41204:13;;;;;;;;;;;;;;;;;41104:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41055:193;41048:200;;40894:362;;;:::o;38931:89::-;38978:42;38931:89;:::o;40027:445::-;40152:4;40237:27;38978:42;40237:65;;40358:8;40317:49;;40325:13;:21;;;40347:5;40325:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40317:49;;;40313:93;;;40390:4;40383:11;;;;;40313:93;40425:39;40448:5;40455:8;40425:22;:39::i;:::-;40418:46;;;40027:445;;;;;:::o;2993:201::-;2315:12;:10;:12::i;:::-;2304:23;;:7;:5;:7::i;:::-;:23;;;2296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3102:1:::1;3082:22;;:8;:22;;;;3074:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3158:28;3177:8;3158:18;:28::i;:::-;2993:201:::0;:::o;39079:39::-;39116:2;39079:39;:::o;23260:157::-;23345:4;23384:25;23369:40;;;:11;:40;;;;23362:47;;23260:157;;;:::o;825:98::-;878:7;905:10;898:17;;825:98;:::o;31911:111::-;31968:4;32002:12;;31992:7;:22;31985:29;;31911:111;;;:::o;35955:196::-;36097:2;36070:15;:24;36086:7;36070:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36135:7;36131:2;36115:28;;36124:5;36115:28;;;;;;;;;;;;35955:196;;;:::o;34054:1783::-;34169:35;34207:20;34219:7;34207:11;:20::i;:::-;34169:58;;34240:22;34282:13;:18;;;34266:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34341:12;:10;:12::i;:::-;34317:36;;:20;34329:7;34317:11;:20::i;:::-;:36;;;34266:87;:154;;;;34370:50;34387:13;:18;;;34407:12;:10;:12::i;:::-;34370:16;:50::i;:::-;34266:154;34240:181;;34442:17;34434:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34557:4;34535:26;;:13;:18;;;:26;;;34527:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34637:1;34623:16;;:2;:16;;;;34615:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34694:43;34716:4;34722:2;34726:7;34735:1;34694:21;:43::i;:::-;34802:49;34819:1;34823:7;34832:13;:18;;;34802:8;:49::i;:::-;35086:1;35056:12;:18;35069:4;35056:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35130:1;35102:12;:16;35115:2;35102:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35178:43;;;;;;;;35193:2;35178:43;;;;;;35204:15;35178:43;;;;;35155:11;:20;35167:7;35155:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35461:19;35493:1;35483:7;:11;;;;:::i;:::-;35461:33;;35550:1;35509:43;;:11;:24;35521:11;35509:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35505:227;;;35573:20;35581:11;35573:7;:20::i;:::-;35569:152;;;35641:64;;;;;;;;35656:13;:18;;;35641:64;;;;;;35676:13;:28;;;35641:64;;;;;35614:11;:24;35626:11;35614:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35569:152;35505:227;35768:7;35764:2;35749:27;;35758:4;35749:27;;;;;;;;;;;;35787:42;35808:4;35814:2;35818:7;35827:1;35787:20;:42::i;:::-;34158:1679;;;34054:1783;;;:::o;27658:472::-;27719:21;;:::i;:::-;27761:16;27769:7;27761;:16::i;:::-;27753:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27842:12;27857:7;27842:22;;27837:216;27891:31;27925:11;:17;27937:4;27925:17;;;;;;;;;;;27891:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27987:1;27961:28;;:9;:14;;;:28;;;27957:85;;28017:9;28010:16;;;;;;27957:85;27876:177;27868:6;;;;;:::i;:::-;;;;27837:216;;27658:472;;;;:::o;3354:191::-;3428:16;3447:6;;;;;;;;;;;3428:25;;3473:8;3464:6;;:17;;;;;;;;;;;;;;;;;;3528:8;3497:40;;3518:8;3497:40;;;;;;;;;;;;3417:128;3354:191;:::o;32030:104::-;32099:27;32109:2;32113:8;32099:27;;;;;;;;;;;;:9;:27::i;:::-;32030:104;;:::o;36716:804::-;36871:4;36892:15;:2;:13;;;:15::i;:::-;36888:625;;;36944:2;36928:36;;;36965:12;:10;:12::i;:::-;36979:4;36985:7;36994:5;36928:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36924:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37191:1;37174:6;:13;:18;37170:273;;;37217:61;;;;;;;;;;:::i;:::-;;;;;;;;37170:273;37393:6;37387:13;37378:6;37374:2;37370:15;37363:38;36924:534;37061:45;;;37051:55;;;:6;:55;;;;37044:62;;;;;36888:625;37497:4;37490:11;;36716:804;;;;;;;:::o;3902:723::-;3958:13;4188:1;4179:5;:10;4175:53;;;4206:10;;;;;;;;;;;;;;;;;;;;;4175:53;4238:12;4253:5;4238:20;;4269:14;4294:78;4309:1;4301:4;:9;4294:78;;4327:8;;;;;:::i;:::-;;;;4358:2;4350:10;;;;;:::i;:::-;;;4294:78;;;4382:19;4414:6;4404:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4382:39;;4432:154;4448:1;4439:5;:10;4432:154;;4476:1;4466:11;;;;;:::i;:::-;;;4543:2;4535:5;:10;;;;:::i;:::-;4522:2;:24;;;;:::i;:::-;4509:39;;4492:6;4499;4492:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4572:2;4563:11;;;;;:::i;:::-;;;4432:154;;;4610:6;4596:21;;;;;3902:723;;;;:::o;30589:164::-;30686:4;30710:18;:25;30729:5;30710:25;;;;;;;;;;;;;;;:35;30736:8;30710:35;;;;;;;;;;;;;;;;;;;;;;;;;30703:42;;30589:164;;;;:::o;38008:159::-;;;;;:::o;38579:158::-;;;;;:::o;32411:1389::-;32534:20;32557:12;;32534:35;;32602:1;32588:16;;:2;:16;;;;32580:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32787:21;32795:12;32787:7;:21::i;:::-;32786:22;32778:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32872:1;32861:8;:12;32853:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32926:61;32956:1;32960:2;32964:12;32978:8;32926:21;:61::i;:::-;33000:30;33033:12;:16;33046:2;33033:16;;;;;;;;;;;;;;;33000:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33079:135;;;;;;;;33135:8;33105:11;:19;;;:39;;;;:::i;:::-;33079:135;;;;;;33194:8;33159:11;:24;;;:44;;;;:::i;:::-;33079:135;;;;;33060:12;:16;33073:2;33060:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33253:43;;;;;;;;33268:2;33253:43;;;;;;33279:15;33253:43;;;;;33225:11;:25;33237:12;33225:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33309:20;33332:12;33309:35;;33362:9;33357:325;33381:8;33377:1;:12;33357:325;;;33441:12;33437:2;33416:38;;33433:1;33416:38;;;;;;;;;;;;33495:59;33526:1;33530:2;33534:12;33548:5;33495:22;:59::i;:::-;33469:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;33656:14;;;;;:::i;:::-;;;;33391:3;;;;;:::i;:::-;;;;33357:325;;;;33709:12;33694;:27;;;;33732:60;33761:1;33765:2;33769:12;33783:8;33732:20;:60::i;:::-;32523:1277;;;32411:1389;;;:::o;15081:387::-;15141:4;15349:12;15416:7;15404:20;15396:28;;15459:1;15452:4;:8;15445:15;;;15081:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:366::-;10484:3;10505:67;10569:2;10564:3;10505:67;:::i;:::-;10498:74;;10581:93;10670:3;10581:93;:::i;:::-;10699:2;10694:3;10690:12;10683:19;;10342:366;;;:::o;10714:365::-;10856:3;10877:66;10941:1;10936:3;10877:66;:::i;:::-;10870:73;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10714:365;;;:::o;11085:366::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:398::-;17568:3;17589:83;17670:1;17665:3;17589:83;:::i;:::-;17582:90;;17681:93;17770:3;17681:93;:::i;:::-;17799:1;17794:3;17790:11;17783:18;;17409:398;;;:::o;17813:366::-;17955:3;17976:67;18040:2;18035:3;17976:67;:::i;:::-;17969:74;;18052:93;18141:3;18052:93;:::i;:::-;18170:2;18165:3;18161:12;18154:19;;17813:366;;;:::o;18185:::-;18327:3;18348:67;18412:2;18407:3;18348:67;:::i;:::-;18341:74;;18424:93;18513:3;18424:93;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18185:366;;;:::o;18557:::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19301:::-;19443:3;19464:67;19528:2;19523:3;19464:67;:::i;:::-;19457:74;;19540:93;19629:3;19540:93;:::i;:::-;19658:2;19653:3;19649:12;19642:19;;19301:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:118::-;21248:24;21266:5;21248:24;:::i;:::-;21243:3;21236:37;21161:118;;:::o;21285:589::-;21510:3;21532:92;21620:3;21611:6;21532:92;:::i;:::-;21525:99;;21641:95;21732:3;21723:6;21641:95;:::i;:::-;21634:102;;21753:95;21844:3;21835:6;21753:95;:::i;:::-;21746:102;;21865:3;21858:10;;21285:589;;;;;;:::o;21880:379::-;22064:3;22086:147;22229:3;22086:147;:::i;:::-;22079:154;;22250:3;22243:10;;21880:379;;;:::o;22265:222::-;22358:4;22396:2;22385:9;22381:18;22373:26;;22409:71;22477:1;22466:9;22462:17;22453:6;22409:71;:::i;:::-;22265:222;;;;:::o;22493:640::-;22688:4;22726:3;22715:9;22711:19;22703:27;;22740:71;22808:1;22797:9;22793:17;22784:6;22740:71;:::i;:::-;22821:72;22889:2;22878:9;22874:18;22865:6;22821:72;:::i;:::-;22903;22971:2;22960:9;22956:18;22947:6;22903:72;:::i;:::-;23022:9;23016:4;23012:20;23007:2;22996:9;22992:18;22985:48;23050:76;23121:4;23112:6;23050:76;:::i;:::-;23042:84;;22493:640;;;;;;;:::o;23139:210::-;23226:4;23264:2;23253:9;23249:18;23241:26;;23277:65;23339:1;23328:9;23324:17;23315:6;23277:65;:::i;:::-;23139:210;;;;:::o;23355:313::-;23468:4;23506:2;23495:9;23491:18;23483:26;;23555:9;23549:4;23545:20;23541:1;23530:9;23526:17;23519:47;23583:78;23656:4;23647:6;23583:78;:::i;:::-;23575:86;;23355:313;;;;:::o;23674:419::-;23840:4;23878:2;23867:9;23863:18;23855:26;;23927:9;23921:4;23917:20;23913:1;23902:9;23898:17;23891:47;23955:131;24081:4;23955:131;:::i;:::-;23947:139;;23674:419;;;:::o;24099:::-;24265:4;24303:2;24292:9;24288:18;24280:26;;24352:9;24346:4;24342:20;24338:1;24327:9;24323:17;24316:47;24380:131;24506:4;24380:131;:::i;:::-;24372:139;;24099:419;;;:::o;24524:::-;24690:4;24728:2;24717:9;24713:18;24705:26;;24777:9;24771:4;24767:20;24763:1;24752:9;24748:17;24741:47;24805:131;24931:4;24805:131;:::i;:::-;24797:139;;24524:419;;;:::o;24949:::-;25115:4;25153:2;25142:9;25138:18;25130:26;;25202:9;25196:4;25192:20;25188:1;25177:9;25173:17;25166:47;25230:131;25356:4;25230:131;:::i;:::-;25222:139;;24949:419;;;:::o;25374:::-;25540:4;25578:2;25567:9;25563:18;25555:26;;25627:9;25621:4;25617:20;25613:1;25602:9;25598:17;25591:47;25655:131;25781:4;25655:131;:::i;:::-;25647:139;;25374:419;;;:::o;25799:::-;25965:4;26003:2;25992:9;25988:18;25980:26;;26052:9;26046:4;26042:20;26038:1;26027:9;26023:17;26016:47;26080:131;26206:4;26080:131;:::i;:::-;26072:139;;25799:419;;;:::o;26224:::-;26390:4;26428:2;26417:9;26413:18;26405:26;;26477:9;26471:4;26467:20;26463:1;26452:9;26448:17;26441:47;26505:131;26631:4;26505:131;:::i;:::-;26497:139;;26224:419;;;:::o;26649:::-;26815:4;26853:2;26842:9;26838:18;26830:26;;26902:9;26896:4;26892:20;26888:1;26877:9;26873:17;26866:47;26930:131;27056:4;26930:131;:::i;:::-;26922:139;;26649:419;;;:::o;27074:::-;27240:4;27278:2;27267:9;27263:18;27255:26;;27327:9;27321:4;27317:20;27313:1;27302:9;27298:17;27291:47;27355:131;27481:4;27355:131;:::i;:::-;27347:139;;27074:419;;;:::o;27499:::-;27665:4;27703:2;27692:9;27688:18;27680:26;;27752:9;27746:4;27742:20;27738:1;27727:9;27723:17;27716:47;27780:131;27906:4;27780:131;:::i;:::-;27772:139;;27499:419;;;:::o;27924:::-;28090:4;28128:2;28117:9;28113:18;28105:26;;28177:9;28171:4;28167:20;28163:1;28152:9;28148:17;28141:47;28205:131;28331:4;28205:131;:::i;:::-;28197:139;;27924:419;;;:::o;28349:::-;28515:4;28553:2;28542:9;28538:18;28530:26;;28602:9;28596:4;28592:20;28588:1;28577:9;28573:17;28566:47;28630:131;28756:4;28630:131;:::i;:::-;28622:139;;28349:419;;;:::o;28774:::-;28940:4;28978:2;28967:9;28963:18;28955:26;;29027:9;29021:4;29017:20;29013:1;29002:9;28998:17;28991:47;29055:131;29181:4;29055:131;:::i;:::-;29047:139;;28774:419;;;:::o;29199:::-;29365:4;29403:2;29392:9;29388:18;29380:26;;29452:9;29446:4;29442:20;29438:1;29427:9;29423:17;29416:47;29480:131;29606:4;29480:131;:::i;:::-;29472:139;;29199:419;;;:::o;29624:::-;29790:4;29828:2;29817:9;29813:18;29805:26;;29877:9;29871:4;29867:20;29863:1;29852:9;29848:17;29841:47;29905:131;30031:4;29905:131;:::i;:::-;29897:139;;29624:419;;;:::o;30049:::-;30215:4;30253:2;30242:9;30238:18;30230:26;;30302:9;30296:4;30292:20;30288:1;30277:9;30273:17;30266:47;30330:131;30456:4;30330:131;:::i;:::-;30322:139;;30049:419;;;:::o;30474:::-;30640:4;30678:2;30667:9;30663:18;30655:26;;30727:9;30721:4;30717:20;30713:1;30702:9;30698:17;30691:47;30755:131;30881:4;30755:131;:::i;:::-;30747:139;;30474:419;;;:::o;30899:::-;31065:4;31103:2;31092:9;31088:18;31080:26;;31152:9;31146:4;31142:20;31138:1;31127:9;31123:17;31116:47;31180:131;31306:4;31180:131;:::i;:::-;31172:139;;30899:419;;;:::o;31324:::-;31490:4;31528:2;31517:9;31513:18;31505:26;;31577:9;31571:4;31567:20;31563:1;31552:9;31548:17;31541:47;31605:131;31731:4;31605:131;:::i;:::-;31597:139;;31324:419;;;:::o;31749:::-;31915:4;31953:2;31942:9;31938:18;31930:26;;32002:9;31996:4;31992:20;31988:1;31977:9;31973:17;31966:47;32030:131;32156:4;32030:131;:::i;:::-;32022:139;;31749:419;;;:::o;32174:::-;32340:4;32378:2;32367:9;32363:18;32355:26;;32427:9;32421:4;32417:20;32413:1;32402:9;32398:17;32391:47;32455:131;32581:4;32455:131;:::i;:::-;32447:139;;32174:419;;;:::o;32599:::-;32765:4;32803:2;32792:9;32788:18;32780:26;;32852:9;32846:4;32842:20;32838:1;32827:9;32823:17;32816:47;32880:131;33006:4;32880:131;:::i;:::-;32872:139;;32599:419;;;:::o;33024:::-;33190:4;33228:2;33217:9;33213:18;33205:26;;33277:9;33271:4;33267:20;33263:1;33252:9;33248:17;33241:47;33305:131;33431:4;33305:131;:::i;:::-;33297:139;;33024:419;;;:::o;33449:::-;33615:4;33653:2;33642:9;33638:18;33630:26;;33702:9;33696:4;33692:20;33688:1;33677:9;33673:17;33666:47;33730:131;33856:4;33730:131;:::i;:::-;33722:139;;33449:419;;;:::o;33874:::-;34040:4;34078:2;34067:9;34063:18;34055:26;;34127:9;34121:4;34117:20;34113:1;34102:9;34098:17;34091:47;34155:131;34281:4;34155:131;:::i;:::-;34147:139;;33874:419;;;:::o;34724:::-;34890:4;34928:2;34917:9;34913:18;34905:26;;34977:9;34971:4;34967:20;34963:1;34952:9;34948:17;34941:47;35005:131;35131:4;35005:131;:::i;:::-;34997:139;;34724:419;;;:::o;35149:::-;35315:4;35353:2;35342:9;35338:18;35330:26;;35402:9;35396:4;35392:20;35388:1;35377:9;35373:17;35366:47;35430:131;35556:4;35430:131;:::i;:::-;35422:139;;35149:419;;;:::o;35574:222::-;35667:4;35705:2;35694:9;35690:18;35682:26;;35718:71;35786:1;35775:9;35771:17;35762:6;35718:71;:::i;:::-;35574:222;;;;:::o;35802:129::-;35836:6;35863:20;;:::i;:::-;35853:30;;35892:33;35920:4;35912:6;35892:33;:::i;:::-;35802:129;;;:::o;35937:75::-;35970:6;36003:2;35997:9;35987:19;;35937:75;:::o;36018:307::-;36079:4;36169:18;36161:6;36158:30;36155:56;;;36191:18;;:::i;:::-;36155:56;36229:29;36251:6;36229:29;:::i;:::-;36221:37;;36313:4;36307;36303:15;36295:23;;36018:307;;;:::o;36331:308::-;36393:4;36483:18;36475:6;36472:30;36469:56;;;36505:18;;:::i;:::-;36469:56;36543:29;36565:6;36543:29;:::i;:::-;36535:37;;36627:4;36621;36617:15;36609:23;;36331:308;;;:::o;36645:141::-;36694:4;36717:3;36709:11;;36740:3;36737:1;36730:14;36774:4;36771:1;36761:18;36753:26;;36645:141;;;:::o;36792:98::-;36843:6;36877:5;36871:12;36861:22;;36792:98;;;:::o;36896:99::-;36948:6;36982:5;36976:12;36966:22;;36896:99;;;:::o;37001:168::-;37084:11;37118:6;37113:3;37106:19;37158:4;37153:3;37149:14;37134:29;;37001:168;;;;:::o;37175:147::-;37276:11;37313:3;37298:18;;37175:147;;;;:::o;37328:169::-;37412:11;37446:6;37441:3;37434:19;37486:4;37481:3;37477:14;37462:29;;37328:169;;;;:::o;37503:148::-;37605:11;37642:3;37627:18;;37503:148;;;;:::o;37657:273::-;37697:3;37716:20;37734:1;37716:20;:::i;:::-;37711:25;;37750:20;37768:1;37750:20;:::i;:::-;37745:25;;37872:1;37836:34;37832:42;37829:1;37826:49;37823:75;;;37878:18;;:::i;:::-;37823:75;37922:1;37919;37915:9;37908:16;;37657:273;;;;:::o;37936:305::-;37976:3;37995:20;38013:1;37995:20;:::i;:::-;37990:25;;38029:20;38047:1;38029:20;:::i;:::-;38024:25;;38183:1;38115:66;38111:74;38108:1;38105:81;38102:107;;;38189:18;;:::i;:::-;38102:107;38233:1;38230;38226:9;38219:16;;37936:305;;;;:::o;38247:185::-;38287:1;38304:20;38322:1;38304:20;:::i;:::-;38299:25;;38338:20;38356:1;38338:20;:::i;:::-;38333:25;;38377:1;38367:35;;38382:18;;:::i;:::-;38367:35;38424:1;38421;38417:9;38412:14;;38247:185;;;;:::o;38438:348::-;38478:7;38501:20;38519:1;38501:20;:::i;:::-;38496:25;;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38723:1;38655:66;38651:74;38648:1;38645:81;38640:1;38633:9;38626:17;38622:105;38619:131;;;38730:18;;:::i;:::-;38619:131;38778:1;38775;38771:9;38760:20;;38438:348;;;;:::o;38792:191::-;38832:4;38852:20;38870:1;38852:20;:::i;:::-;38847:25;;38886:20;38904:1;38886:20;:::i;:::-;38881:25;;38925:1;38922;38919:8;38916:34;;;38930:18;;:::i;:::-;38916:34;38975:1;38972;38968:9;38960:17;;38792:191;;;;:::o;38989:96::-;39026:7;39055:24;39073:5;39055:24;:::i;:::-;39044:35;;38989:96;;;:::o;39091:90::-;39125:7;39168:5;39161:13;39154:21;39143:32;;39091:90;;;:::o;39187:149::-;39223:7;39263:66;39256:5;39252:78;39241:89;;39187:149;;;:::o;39342:125::-;39408:7;39437:24;39455:5;39437:24;:::i;:::-;39426:35;;39342:125;;;:::o;39473:118::-;39510:7;39550:34;39543:5;39539:46;39528:57;;39473:118;;;:::o;39597:126::-;39634:7;39674:42;39667:5;39663:54;39652:65;;39597:126;;;:::o;39729:77::-;39766:7;39795:5;39784:16;;39729:77;;;:::o;39812:154::-;39896:6;39891:3;39886;39873:30;39958:1;39949:6;39944:3;39940:16;39933:27;39812:154;;;:::o;39972:307::-;40040:1;40050:113;40064:6;40061:1;40058:13;40050:113;;;40149:1;40144:3;40140:11;40134:18;40130:1;40125:3;40121:11;40114:39;40086:2;40083:1;40079:10;40074:15;;40050:113;;;40181:6;40178:1;40175:13;40172:101;;;40261:1;40252:6;40247:3;40243:16;40236:27;40172:101;40021:258;39972:307;;;:::o;40285:171::-;40324:3;40347:24;40365:5;40347:24;:::i;:::-;40338:33;;40393:4;40386:5;40383:15;40380:41;;;40401:18;;:::i;:::-;40380:41;40448:1;40441:5;40437:13;40430:20;;40285:171;;;:::o;40462:320::-;40506:6;40543:1;40537:4;40533:12;40523:22;;40590:1;40584:4;40580:12;40611:18;40601:81;;40667:4;40659:6;40655:17;40645:27;;40601:81;40729:2;40721:6;40718:14;40698:18;40695:38;40692:84;;;40748:18;;:::i;:::-;40692:84;40513:269;40462:320;;;:::o;40788:281::-;40871:27;40893:4;40871:27;:::i;:::-;40863:6;40859:40;41001:6;40989:10;40986:22;40965:18;40953:10;40950:34;40947:62;40944:88;;;41012:18;;:::i;:::-;40944:88;41052:10;41048:2;41041:22;40831:238;40788:281;;:::o;41075:233::-;41114:3;41137:24;41155:5;41137:24;:::i;:::-;41128:33;;41183:66;41176:5;41173:77;41170:103;;;41253:18;;:::i;:::-;41170:103;41300:1;41293:5;41289:13;41282:20;;41075:233;;;:::o;41314:176::-;41346:1;41363:20;41381:1;41363:20;:::i;:::-;41358:25;;41397:20;41415:1;41397:20;:::i;:::-;41392:25;;41436:1;41426:35;;41441:18;;:::i;:::-;41426:35;41482:1;41479;41475:9;41470:14;;41314:176;;;;:::o;41496:180::-;41544:77;41541:1;41534:88;41641:4;41638:1;41631:15;41665:4;41662:1;41655:15;41682:180;41730:77;41727:1;41720:88;41827:4;41824:1;41817:15;41851:4;41848:1;41841:15;41868:180;41916:77;41913:1;41906:88;42013:4;42010:1;42003:15;42037:4;42034:1;42027:15;42054:180;42102:77;42099:1;42092:88;42199:4;42196:1;42189:15;42223:4;42220:1;42213:15;42240:180;42288:77;42285:1;42278:88;42385:4;42382:1;42375:15;42409:4;42406:1;42399:15;42426:117;42535:1;42532;42525:12;42549:117;42658:1;42655;42648:12;42672:117;42781:1;42778;42771:12;42795:117;42904:1;42901;42894:12;42918:102;42959:6;43010:2;43006:7;43001:2;42994:5;42990:14;42986:28;42976:38;;42918:102;;;:::o;43026:221::-;43166:34;43162:1;43154:6;43150:14;43143:58;43235:4;43230:2;43222:6;43218:15;43211:29;43026:221;:::o;43253:156::-;43393:8;43389:1;43381:6;43377:14;43370:32;43253:156;:::o;43415:225::-;43555:34;43551:1;43543:6;43539:14;43532:58;43624:8;43619:2;43611:6;43607:15;43600:33;43415:225;:::o;43646:229::-;43786:34;43782:1;43774:6;43770:14;43763:58;43855:12;43850:2;43842:6;43838:15;43831:37;43646:229;:::o;43881:160::-;44021:12;44017:1;44009:6;44005:14;43998:36;43881:160;:::o;44047:172::-;44187:24;44183:1;44175:6;44171:14;44164:48;44047:172;:::o;44225:222::-;44365:34;44361:1;44353:6;44349:14;44342:58;44434:5;44429:2;44421:6;44417:15;44410:30;44225:222;:::o;44453:224::-;44593:34;44589:1;44581:6;44577:14;44570:58;44662:7;44657:2;44649:6;44645:15;44638:32;44453:224;:::o;44683:172::-;44823:24;44819:1;44811:6;44807:14;44800:48;44683:172;:::o;44861:244::-;45001:34;44997:1;44989:6;44985:14;44978:58;45070:27;45065:2;45057:6;45053:15;45046:52;44861:244;:::o;45111:168::-;45251:20;45247:1;45239:6;45235:14;45228:44;45111:168;:::o;45285:230::-;45425:34;45421:1;45413:6;45409:14;45402:58;45494:13;45489:2;45481:6;45477:15;45470:38;45285:230;:::o;45521:171::-;45661:23;45657:1;45649:6;45645:14;45638:47;45521:171;:::o;45698:225::-;45838:34;45834:1;45826:6;45822:14;45815:58;45907:8;45902:2;45894:6;45890:15;45883:33;45698:225;:::o;45929:182::-;46069:34;46065:1;46057:6;46053:14;46046:58;45929:182;:::o;46117:176::-;46257:28;46253:1;46245:6;46241:14;46234:52;46117:176;:::o;46299:237::-;46439:34;46435:1;46427:6;46423:14;46416:58;46508:20;46503:2;46495:6;46491:15;46484:45;46299:237;:::o;46542:172::-;46682:24;46678:1;46670:6;46666:14;46659:48;46542:172;:::o;46720:221::-;46860:34;46856:1;46848:6;46844:14;46837:58;46929:4;46924:2;46916:6;46912:15;46905:29;46720:221;:::o;46947:114::-;;:::o;47067:222::-;47207:34;47203:1;47195:6;47191:14;47184:58;47276:5;47271:2;47263:6;47259:15;47252:30;47067:222;:::o;47295:238::-;47435:34;47431:1;47423:6;47419:14;47412:58;47504:21;47499:2;47491:6;47487:15;47480:46;47295:238;:::o;47539:179::-;47679:31;47675:1;47667:6;47663:14;47656:55;47539:179;:::o;47724:220::-;47864:34;47860:1;47852:6;47848:14;47841:58;47933:3;47928:2;47920:6;47916:15;47909:28;47724:220;:::o;47950:164::-;48090:16;48086:1;48078:6;48074:14;48067:40;47950:164;:::o;48120:233::-;48260:34;48256:1;48248:6;48244:14;48237:58;48329:16;48324:2;48316:6;48312:15;48305:41;48120:233;:::o;48599:232::-;48739:34;48735:1;48727:6;48723:14;48716:58;48808:15;48803:2;48795:6;48791:15;48784:40;48599:232;:::o;48837:162::-;48977:14;48973:1;48965:6;48961:14;48954:38;48837:162;:::o;49005:122::-;49078:24;49096:5;49078:24;:::i;:::-;49071:5;49068:35;49058:63;;49117:1;49114;49107:12;49058:63;49005:122;:::o;49133:116::-;49203:21;49218:5;49203:21;:::i;:::-;49196:5;49193:32;49183:60;;49239:1;49236;49229:12;49183:60;49133:116;:::o;49255:120::-;49327:23;49344:5;49327:23;:::i;:::-;49320:5;49317:34;49307:62;;49365:1;49362;49355:12;49307:62;49255:120;:::o;49381:180::-;49483:53;49530:5;49483:53;:::i;:::-;49476:5;49473:64;49463:92;;49551:1;49548;49541:12;49463:92;49381:180;:::o;49567:122::-;49640:24;49658:5;49640:24;:::i;:::-;49633:5;49630:35;49620:63;;49679:1;49676;49669:12;49620:63;49567:122;:::o

Swarm Source

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