ETH Price: $3,443.32 (-0.99%)
Gas: 4 Gwei

Token

0xMAYC (0XMAYC)
 

Overview

Max Total Supply

5,909 0XMAYC

Holders

709

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gemmabear.eth
Balance
2 0XMAYC
0xdf8df10c7c4114de4eb5632e4d7107aea3abd9d0
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:
_0xMAYC

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-19
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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


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

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

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


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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 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 - 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

contract _0xMAYC is ERC721A, Ownable {

    constructor() ERC721A("0xMAYC", "0XMAYC") {}

    bool public saleStatus; 
    string public baseURI; 
    uint256 public price; 
    uint256 public maxSupply;  

    uint256 public constant MAX_PER_TX = 20;
    uint256 public constant MAX_PER_WALLET = 100;  

    mapping(address => uint) public maxPerWallets;

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

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

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }

    function setPrice(uint _price) external onlyOwner {
        price = _price;
    }

    function setMaxSupply(uint _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function ownerMint(uint amount) external onlyOwner {
        require(currentIndex + amount <= maxSupply + 1, "Not enough tokens!");
        _safeMint(msg.sender, amount);
    }

    function saleMint(uint amount) external payable {
        require(saleStatus, "Sale not active!");
        require(amount <= MAX_PER_TX, "Incorrect amount!");
        require(maxPerWallets[msg.sender] + amount <= MAX_PER_WALLET, "Exceeds max amount per wallet!");
        require(currentIndex + amount <= maxSupply + 1, "Not enough tokens!");
        require(msg.value == price * amount, "Incorrect value!");
        _safeMint(msg.sender, amount);
        maxPerWallets[msg.sender] += amount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","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":"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":"address","name":"","type":"address"}],"name":"maxPerWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"saleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","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"}]

608060405260016000553480156200001657600080fd5b506040518060400160405280600681526020017f30784d41594300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f30584d415943000000000000000000000000000000000000000000000000000081525081600190805190602001906200009b929190620001ab565b508060029080519060200190620000b4929190620001ab565b505050620000d7620000cb620000dd60201b60201c565b620000e560201b60201c565b620002c0565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b9906200028a565b90600052602060002090601f016020900481019282620001dd576000855562000229565b82601f10620001f857805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002285782518255916020019190600101906200020b565b5b5090506200023891906200023c565b5090565b5b80821115620002575760008160009055506001016200023d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002a357607f821691505b60208210811415620002ba57620002b96200025b565b5b50919050565b6143a680620002d06000396000f3fe6080604052600436106101ee5760003560e01c80636f8b44b01161010d578063a22cb465116100a0578063e985e9c51161006f578063e985e9c5146106dc578063f19e75d414610719578063f2fde38b14610742578063f43a22dc1461076b578063f9020e3314610796576101ee565b8063a22cb46514610622578063b88d4fde1461064b578063c87b56dd14610674578063d5abeb01146106b1576101ee565b80638da5cb5b116100dc5780638da5cb5b1461057857806391b7f5ed146105a357806395d89b41146105cc578063a035b1fe146105f7576101ee565b80636f8b44b0146104df57806370a0823114610508578063715018a6146105455780638ca887ca1461055c576101ee565b80632f745c5911610185578063502b33af11610154578063502b33af1461043757806355f804b31461044e5780636352211e146104775780636c0360eb146104b4576101ee565b80632f745c591461037d5780633ccfd60b146103ba57806342842e0e146103d15780634f6ccce7146103fa576101ee565b80630f2cdd6c116101c15780630f2cdd6c146102c1578063145e9922146102ec57806318160ddd1461032957806323b872dd14610354576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612c72565b6107c1565b6040516102279190612cba565b60405180910390f35b34801561023c57600080fd5b5061024561090b565b6040516102529190612d6e565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612dc6565b61099d565b60405161028f9190612e34565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612e7b565b610a22565b005b3480156102cd57600080fd5b506102d6610b3b565b6040516102e39190612eca565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612ee5565b610b40565b6040516103209190612eca565b60405180910390f35b34801561033557600080fd5b5061033e610b58565b60405161034b9190612eca565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612f12565b610b6e565b005b34801561038957600080fd5b506103a4600480360381019061039f9190612e7b565b610b7e565b6040516103b19190612eca565b60405180910390f35b3480156103c657600080fd5b506103cf610d70565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612f12565b610e35565b005b34801561040657600080fd5b50610421600480360381019061041c9190612dc6565b610e55565b60405161042e9190612eca565b60405180910390f35b34801561044357600080fd5b5061044c610ea8565b005b34801561045a57600080fd5b506104756004803603810190610470919061309a565b610f50565b005b34801561048357600080fd5b5061049e60048036038101906104999190612dc6565b610fe6565b6040516104ab9190612e34565b60405180910390f35b3480156104c057600080fd5b506104c9610ffc565b6040516104d69190612d6e565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190612dc6565b61108a565b005b34801561051457600080fd5b5061052f600480360381019061052a9190612ee5565b611110565b60405161053c9190612eca565b60405180910390f35b34801561055157600080fd5b5061055a6111f9565b005b61057660048036038101906105719190612dc6565b611281565b005b34801561058457600080fd5b5061058d6114b2565b60405161059a9190612e34565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190612dc6565b6114dc565b005b3480156105d857600080fd5b506105e1611562565b6040516105ee9190612d6e565b60405180910390f35b34801561060357600080fd5b5061060c6115f4565b6040516106199190612eca565b60405180910390f35b34801561062e57600080fd5b506106496004803603810190610644919061310f565b6115fa565b005b34801561065757600080fd5b50610672600480360381019061066d91906131f0565b61177b565b005b34801561068057600080fd5b5061069b60048036038101906106969190612dc6565b6117d7565b6040516106a89190612d6e565b60405180910390f35b3480156106bd57600080fd5b506106c661187f565b6040516106d39190612eca565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613273565b611885565b6040516107109190612cba565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190612dc6565b611919565b005b34801561074e57600080fd5b5061076960048036038101906107649190612ee5565b611a00565b005b34801561077757600080fd5b50610780611af8565b60405161078d9190612eca565b60405180910390f35b3480156107a257600080fd5b506107ab611afd565b6040516107b89190612cba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611b10565b5b9050919050565b60606001805461091a906132e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610946906132e2565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109a882611b7a565b6109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90613386565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2d82610fe6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590613418565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abd611b87565b73ffffffffffffffffffffffffffffffffffffffff161480610aec5750610aeb81610ae6611b87565b611885565b5b610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b22906134aa565b60405180910390fd5b610b36838383611b8f565b505050565b606481565b600b6020528060005260406000206000915090505481565b60006001600054610b6991906134f9565b905090565b610b79838383611c41565b505050565b6000610b8983611110565b8210610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc19061359f565b60405180910390fd5b6000610bd4610b58565b905060008060005b83811015610d2e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cce57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d205786841415610d17578195505050505050610d6a565b83806001019450505b508080600101915050610bdc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6190613631565b60405180910390fd5b92915050565b610d78611b87565b73ffffffffffffffffffffffffffffffffffffffff16610d966114b2565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de39061369d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e32573d6000803e3d6000fd5b50565b610e508383836040518060200160405280600081525061177b565b505050565b6000610e5f610b58565b8210610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e979061372f565b60405180910390fd5b819050919050565b610eb0611b87565b73ffffffffffffffffffffffffffffffffffffffff16610ece6114b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b9061369d565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b610f58611b87565b73ffffffffffffffffffffffffffffffffffffffff16610f766114b2565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc39061369d565b60405180910390fd5b8060089080519060200190610fe2929190612b29565b5050565b6000610ff182612181565b600001519050919050565b60088054611009906132e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611035906132e2565b80156110825780601f1061105757610100808354040283529160200191611082565b820191906000526020600020905b81548152906001019060200180831161106557829003601f168201915b505050505081565b611092611b87565b73ffffffffffffffffffffffffffffffffffffffff166110b06114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd9061369d565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611178906137c1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611201611b87565b73ffffffffffffffffffffffffffffffffffffffff1661121f6114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9061369d565b60405180910390fd5b61127f600061231b565b565b600760149054906101000a900460ff166112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c79061382d565b60405180910390fd5b6014811115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613899565b60405180910390fd5b606481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136191906138b9565b11156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061395b565b60405180910390fd5b6001600a546113b191906138b9565b816000546113bf91906138b9565b1115611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f7906139c7565b60405180910390fd5b8060095461140e91906139e7565b341461144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690613a8d565b60405180910390fd5b61145933826123e1565b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a891906138b9565b9250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e4611b87565b73ffffffffffffffffffffffffffffffffffffffff166115026114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f9061369d565b60405180910390fd5b8060098190555050565b606060028054611571906132e2565b80601f016020809104026020016040519081016040528092919081815260200182805461159d906132e2565b80156115ea5780601f106115bf576101008083540402835291602001916115ea565b820191906000526020600020905b8154815290600101906020018083116115cd57829003601f168201915b5050505050905090565b60095481565b611602611b87565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166790613af9565b60405180910390fd5b806006600061167d611b87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661172a611b87565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176f9190612cba565b60405180910390a35050565b611786848484611c41565b611792848484846123ff565b6117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613b8b565b60405180910390fd5b50505050565b60606117e282611b7a565b611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890613c1d565b60405180910390fd5b600061182b612587565b905060008151141561184c5760405180602001604052806000815250611877565b8061185684612619565b604051602001611867929190613cc5565b6040516020818303038152906040525b915050919050565b600a5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611921611b87565b73ffffffffffffffffffffffffffffffffffffffff1661193f6114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c9061369d565b60405180910390fd5b6001600a546119a491906138b9565b816000546119b291906138b9565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906139c7565b60405180910390fd5b6119fd33826123e1565b50565b611a08611b87565b73ffffffffffffffffffffffffffffffffffffffff16611a266114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a739061369d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390613d66565b60405180910390fd5b611af58161231b565b50565b601481565b600760149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c4c82612181565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c73611b87565b73ffffffffffffffffffffffffffffffffffffffff161480611ccf5750611c98611b87565b73ffffffffffffffffffffffffffffffffffffffff16611cb78461099d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ceb5750611cea8260000151611ce5611b87565b611885565b5b905080611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613df8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9690613e8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690613f1c565b60405180910390fd5b611e1c858585600161277a565b611e2c6000848460000151611b8f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121115761207081611b7a565b156121105782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461217a8585856001612780565b5050505050565b612189612baf565b61219282611b7a565b6121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890613fae565b60405180910390fd5b60008290505b600081106122da576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122cb578092505050612316565b508080600190039150506121d7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d90614040565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123fb828260405180602001604052806000815250612786565b5050565b60006124208473ffffffffffffffffffffffffffffffffffffffff16612798565b1561257a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612449611b87565b8786866040518563ffffffff1660e01b815260040161246b94939291906140b5565b6020604051808303816000875af19250505080156124a757506040513d601f19601f820116820180604052508101906124a49190614116565b60015b61252a573d80600081146124d7576040519150601f19603f3d011682016040523d82523d6000602084013e6124dc565b606091505b50600081511415612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990613b8b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061257f565b600190505b949350505050565b606060088054612596906132e2565b80601f01602080910402602001604051908101604052809291908181526020018280546125c2906132e2565b801561260f5780601f106125e45761010080835404028352916020019161260f565b820191906000526020600020905b8154815290600101906020018083116125f257829003601f168201915b5050505050905090565b60606000821415612661576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612775565b600082905060005b6000821461269357808061267c90614143565b915050600a8261268c91906141bb565b9150612669565b60008167ffffffffffffffff8111156126af576126ae612f6f565b5b6040519080825280601f01601f1916602001820160405280156126e15781602001600182028036833780820191505090505b5090505b6000851461276e576001826126fa91906134f9565b9150600a8561270991906141ec565b603061271591906138b9565b60f81b81838151811061272b5761272a61421d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561276791906141bb565b94506126e5565b8093505050505b919050565b50505050565b50505050565b61279383838360016127ab565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612818906142be565b60405180910390fd5b6000841415612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90614350565b60405180910390fd5b612872600086838761277a565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b0c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612af757612ab760008884886123ff565b612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed90613b8b565b60405180910390fd5b5b81806001019250508080600101915050612a40565b508060008190555050612b226000868387612780565b5050505050565b828054612b35906132e2565b90600052602060002090601f016020900481019282612b575760008555612b9e565b82601f10612b7057805160ff1916838001178555612b9e565b82800160010185558215612b9e579182015b82811115612b9d578251825591602001919060010190612b82565b5b509050612bab9190612be9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612c02576000816000905550600101612bea565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c4f81612c1a565b8114612c5a57600080fd5b50565b600081359050612c6c81612c46565b92915050565b600060208284031215612c8857612c87612c10565b5b6000612c9684828501612c5d565b91505092915050565b60008115159050919050565b612cb481612c9f565b82525050565b6000602082019050612ccf6000830184612cab565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d0f578082015181840152602081019050612cf4565b83811115612d1e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d4082612cd5565b612d4a8185612ce0565b9350612d5a818560208601612cf1565b612d6381612d24565b840191505092915050565b60006020820190508181036000830152612d888184612d35565b905092915050565b6000819050919050565b612da381612d90565b8114612dae57600080fd5b50565b600081359050612dc081612d9a565b92915050565b600060208284031215612ddc57612ddb612c10565b5b6000612dea84828501612db1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e1e82612df3565b9050919050565b612e2e81612e13565b82525050565b6000602082019050612e496000830184612e25565b92915050565b612e5881612e13565b8114612e6357600080fd5b50565b600081359050612e7581612e4f565b92915050565b60008060408385031215612e9257612e91612c10565b5b6000612ea085828601612e66565b9250506020612eb185828601612db1565b9150509250929050565b612ec481612d90565b82525050565b6000602082019050612edf6000830184612ebb565b92915050565b600060208284031215612efb57612efa612c10565b5b6000612f0984828501612e66565b91505092915050565b600080600060608486031215612f2b57612f2a612c10565b5b6000612f3986828701612e66565b9350506020612f4a86828701612e66565b9250506040612f5b86828701612db1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fa782612d24565b810181811067ffffffffffffffff82111715612fc657612fc5612f6f565b5b80604052505050565b6000612fd9612c06565b9050612fe58282612f9e565b919050565b600067ffffffffffffffff82111561300557613004612f6f565b5b61300e82612d24565b9050602081019050919050565b82818337600083830152505050565b600061303d61303884612fea565b612fcf565b90508281526020810184848401111561305957613058612f6a565b5b61306484828561301b565b509392505050565b600082601f83011261308157613080612f65565b5b813561309184826020860161302a565b91505092915050565b6000602082840312156130b0576130af612c10565b5b600082013567ffffffffffffffff8111156130ce576130cd612c15565b5b6130da8482850161306c565b91505092915050565b6130ec81612c9f565b81146130f757600080fd5b50565b600081359050613109816130e3565b92915050565b6000806040838503121561312657613125612c10565b5b600061313485828601612e66565b9250506020613145858286016130fa565b9150509250929050565b600067ffffffffffffffff82111561316a57613169612f6f565b5b61317382612d24565b9050602081019050919050565b600061319361318e8461314f565b612fcf565b9050828152602081018484840111156131af576131ae612f6a565b5b6131ba84828561301b565b509392505050565b600082601f8301126131d7576131d6612f65565b5b81356131e7848260208601613180565b91505092915050565b6000806000806080858703121561320a57613209612c10565b5b600061321887828801612e66565b945050602061322987828801612e66565b935050604061323a87828801612db1565b925050606085013567ffffffffffffffff81111561325b5761325a612c15565b5b613267878288016131c2565b91505092959194509250565b6000806040838503121561328a57613289612c10565b5b600061329885828601612e66565b92505060206132a985828601612e66565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132fa57607f821691505b6020821081141561330e5761330d6132b3565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613370602d83612ce0565b915061337b82613314565b604082019050919050565b6000602082019050818103600083015261339f81613363565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613402602283612ce0565b915061340d826133a6565b604082019050919050565b60006020820190508181036000830152613431816133f5565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613494603983612ce0565b915061349f82613438565b604082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061350482612d90565b915061350f83612d90565b925082821015613522576135216134ca565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613589602283612ce0565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061361b602e83612ce0565b9150613626826135bf565b604082019050919050565b6000602082019050818103600083015261364a8161360e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613687602083612ce0565b915061369282613651565b602082019050919050565b600060208201905081810360008301526136b68161367a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613719602383612ce0565b9150613724826136bd565b604082019050919050565b600060208201905081810360008301526137488161370c565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006137ab602b83612ce0565b91506137b68261374f565b604082019050919050565b600060208201905081810360008301526137da8161379e565b9050919050565b7f53616c65206e6f74206163746976652100000000000000000000000000000000600082015250565b6000613817601083612ce0565b9150613822826137e1565b602082019050919050565b600060208201905081810360008301526138468161380a565b9050919050565b7f496e636f727265637420616d6f756e7421000000000000000000000000000000600082015250565b6000613883601183612ce0565b915061388e8261384d565b602082019050919050565b600060208201905081810360008301526138b281613876565b9050919050565b60006138c482612d90565b91506138cf83612d90565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613904576139036134ca565b5b828201905092915050565b7f45786365656473206d617820616d6f756e74207065722077616c6c6574210000600082015250565b6000613945601e83612ce0565b91506139508261390f565b602082019050919050565b6000602082019050818103600083015261397481613938565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73210000000000000000000000000000600082015250565b60006139b1601283612ce0565b91506139bc8261397b565b602082019050919050565b600060208201905081810360008301526139e0816139a4565b9050919050565b60006139f282612d90565b91506139fd83612d90565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3657613a356134ca565b5b828202905092915050565b7f496e636f72726563742076616c75652100000000000000000000000000000000600082015250565b6000613a77601083612ce0565b9150613a8282613a41565b602082019050919050565b60006020820190508181036000830152613aa681613a6a565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613ae3601a83612ce0565b9150613aee82613aad565b602082019050919050565b60006020820190508181036000830152613b1281613ad6565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613b75603383612ce0565b9150613b8082613b19565b604082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c07602f83612ce0565b9150613c1282613bab565b604082019050919050565b60006020820190508181036000830152613c3681613bfa565b9050919050565b600081905092915050565b6000613c5382612cd5565b613c5d8185613c3d565b9350613c6d818560208601612cf1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613caf600583613c3d565b9150613cba82613c79565b600582019050919050565b6000613cd18285613c48565b9150613cdd8284613c48565b9150613ce882613ca2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d50602683612ce0565b9150613d5b82613cf4565b604082019050919050565b60006020820190508181036000830152613d7f81613d43565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613de2603283612ce0565b9150613ded82613d86565b604082019050919050565b60006020820190508181036000830152613e1181613dd5565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613e74602683612ce0565b9150613e7f82613e18565b604082019050919050565b60006020820190508181036000830152613ea381613e67565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f06602583612ce0565b9150613f1182613eaa565b604082019050919050565b60006020820190508181036000830152613f3581613ef9565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613f98602a83612ce0565b9150613fa382613f3c565b604082019050919050565b60006020820190508181036000830152613fc781613f8b565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061402a602f83612ce0565b915061403582613fce565b604082019050919050565b600060208201905081810360008301526140598161401d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061408782614060565b614091818561406b565b93506140a1818560208601612cf1565b6140aa81612d24565b840191505092915050565b60006080820190506140ca6000830187612e25565b6140d76020830186612e25565b6140e46040830185612ebb565b81810360608301526140f6818461407c565b905095945050505050565b60008151905061411081612c46565b92915050565b60006020828403121561412c5761412b612c10565b5b600061413a84828501614101565b91505092915050565b600061414e82612d90565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614181576141806134ca565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141c682612d90565b91506141d183612d90565b9250826141e1576141e061418c565b5b828204905092915050565b60006141f782612d90565b915061420283612d90565b9250826142125761421161418c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006142a8602183612ce0565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b600061433a602883612ce0565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b905091905056fea264697066735822122016ca0e30f31d8bd044ca664451ba9fc85cf9476f228b59a4d64037305ac26fa764736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636f8b44b01161010d578063a22cb465116100a0578063e985e9c51161006f578063e985e9c5146106dc578063f19e75d414610719578063f2fde38b14610742578063f43a22dc1461076b578063f9020e3314610796576101ee565b8063a22cb46514610622578063b88d4fde1461064b578063c87b56dd14610674578063d5abeb01146106b1576101ee565b80638da5cb5b116100dc5780638da5cb5b1461057857806391b7f5ed146105a357806395d89b41146105cc578063a035b1fe146105f7576101ee565b80636f8b44b0146104df57806370a0823114610508578063715018a6146105455780638ca887ca1461055c576101ee565b80632f745c5911610185578063502b33af11610154578063502b33af1461043757806355f804b31461044e5780636352211e146104775780636c0360eb146104b4576101ee565b80632f745c591461037d5780633ccfd60b146103ba57806342842e0e146103d15780634f6ccce7146103fa576101ee565b80630f2cdd6c116101c15780630f2cdd6c146102c1578063145e9922146102ec57806318160ddd1461032957806323b872dd14610354576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612c72565b6107c1565b6040516102279190612cba565b60405180910390f35b34801561023c57600080fd5b5061024561090b565b6040516102529190612d6e565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612dc6565b61099d565b60405161028f9190612e34565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612e7b565b610a22565b005b3480156102cd57600080fd5b506102d6610b3b565b6040516102e39190612eca565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612ee5565b610b40565b6040516103209190612eca565b60405180910390f35b34801561033557600080fd5b5061033e610b58565b60405161034b9190612eca565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612f12565b610b6e565b005b34801561038957600080fd5b506103a4600480360381019061039f9190612e7b565b610b7e565b6040516103b19190612eca565b60405180910390f35b3480156103c657600080fd5b506103cf610d70565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612f12565b610e35565b005b34801561040657600080fd5b50610421600480360381019061041c9190612dc6565b610e55565b60405161042e9190612eca565b60405180910390f35b34801561044357600080fd5b5061044c610ea8565b005b34801561045a57600080fd5b506104756004803603810190610470919061309a565b610f50565b005b34801561048357600080fd5b5061049e60048036038101906104999190612dc6565b610fe6565b6040516104ab9190612e34565b60405180910390f35b3480156104c057600080fd5b506104c9610ffc565b6040516104d69190612d6e565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190612dc6565b61108a565b005b34801561051457600080fd5b5061052f600480360381019061052a9190612ee5565b611110565b60405161053c9190612eca565b60405180910390f35b34801561055157600080fd5b5061055a6111f9565b005b61057660048036038101906105719190612dc6565b611281565b005b34801561058457600080fd5b5061058d6114b2565b60405161059a9190612e34565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190612dc6565b6114dc565b005b3480156105d857600080fd5b506105e1611562565b6040516105ee9190612d6e565b60405180910390f35b34801561060357600080fd5b5061060c6115f4565b6040516106199190612eca565b60405180910390f35b34801561062e57600080fd5b506106496004803603810190610644919061310f565b6115fa565b005b34801561065757600080fd5b50610672600480360381019061066d91906131f0565b61177b565b005b34801561068057600080fd5b5061069b60048036038101906106969190612dc6565b6117d7565b6040516106a89190612d6e565b60405180910390f35b3480156106bd57600080fd5b506106c661187f565b6040516106d39190612eca565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613273565b611885565b6040516107109190612cba565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190612dc6565b611919565b005b34801561074e57600080fd5b5061076960048036038101906107649190612ee5565b611a00565b005b34801561077757600080fd5b50610780611af8565b60405161078d9190612eca565b60405180910390f35b3480156107a257600080fd5b506107ab611afd565b6040516107b89190612cba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611b10565b5b9050919050565b60606001805461091a906132e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610946906132e2565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109a882611b7a565b6109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90613386565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2d82610fe6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590613418565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abd611b87565b73ffffffffffffffffffffffffffffffffffffffff161480610aec5750610aeb81610ae6611b87565b611885565b5b610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b22906134aa565b60405180910390fd5b610b36838383611b8f565b505050565b606481565b600b6020528060005260406000206000915090505481565b60006001600054610b6991906134f9565b905090565b610b79838383611c41565b505050565b6000610b8983611110565b8210610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc19061359f565b60405180910390fd5b6000610bd4610b58565b905060008060005b83811015610d2e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cce57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d205786841415610d17578195505050505050610d6a565b83806001019450505b508080600101915050610bdc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6190613631565b60405180910390fd5b92915050565b610d78611b87565b73ffffffffffffffffffffffffffffffffffffffff16610d966114b2565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de39061369d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e32573d6000803e3d6000fd5b50565b610e508383836040518060200160405280600081525061177b565b505050565b6000610e5f610b58565b8210610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e979061372f565b60405180910390fd5b819050919050565b610eb0611b87565b73ffffffffffffffffffffffffffffffffffffffff16610ece6114b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b9061369d565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b610f58611b87565b73ffffffffffffffffffffffffffffffffffffffff16610f766114b2565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc39061369d565b60405180910390fd5b8060089080519060200190610fe2929190612b29565b5050565b6000610ff182612181565b600001519050919050565b60088054611009906132e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611035906132e2565b80156110825780601f1061105757610100808354040283529160200191611082565b820191906000526020600020905b81548152906001019060200180831161106557829003601f168201915b505050505081565b611092611b87565b73ffffffffffffffffffffffffffffffffffffffff166110b06114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd9061369d565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611178906137c1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611201611b87565b73ffffffffffffffffffffffffffffffffffffffff1661121f6114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c9061369d565b60405180910390fd5b61127f600061231b565b565b600760149054906101000a900460ff166112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c79061382d565b60405180910390fd5b6014811115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613899565b60405180910390fd5b606481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461136191906138b9565b11156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061395b565b60405180910390fd5b6001600a546113b191906138b9565b816000546113bf91906138b9565b1115611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f7906139c7565b60405180910390fd5b8060095461140e91906139e7565b341461144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690613a8d565b60405180910390fd5b61145933826123e1565b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a891906138b9565b9250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e4611b87565b73ffffffffffffffffffffffffffffffffffffffff166115026114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f9061369d565b60405180910390fd5b8060098190555050565b606060028054611571906132e2565b80601f016020809104026020016040519081016040528092919081815260200182805461159d906132e2565b80156115ea5780601f106115bf576101008083540402835291602001916115ea565b820191906000526020600020905b8154815290600101906020018083116115cd57829003601f168201915b5050505050905090565b60095481565b611602611b87565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166790613af9565b60405180910390fd5b806006600061167d611b87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661172a611b87565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176f9190612cba565b60405180910390a35050565b611786848484611c41565b611792848484846123ff565b6117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613b8b565b60405180910390fd5b50505050565b60606117e282611b7a565b611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890613c1d565b60405180910390fd5b600061182b612587565b905060008151141561184c5760405180602001604052806000815250611877565b8061185684612619565b604051602001611867929190613cc5565b6040516020818303038152906040525b915050919050565b600a5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611921611b87565b73ffffffffffffffffffffffffffffffffffffffff1661193f6114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c9061369d565b60405180910390fd5b6001600a546119a491906138b9565b816000546119b291906138b9565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906139c7565b60405180910390fd5b6119fd33826123e1565b50565b611a08611b87565b73ffffffffffffffffffffffffffffffffffffffff16611a266114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a739061369d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390613d66565b60405180910390fd5b611af58161231b565b50565b601481565b600760149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c4c82612181565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c73611b87565b73ffffffffffffffffffffffffffffffffffffffff161480611ccf5750611c98611b87565b73ffffffffffffffffffffffffffffffffffffffff16611cb78461099d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ceb5750611cea8260000151611ce5611b87565b611885565b5b905080611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613df8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9690613e8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690613f1c565b60405180910390fd5b611e1c858585600161277a565b611e2c6000848460000151611b8f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121115761207081611b7a565b156121105782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461217a8585856001612780565b5050505050565b612189612baf565b61219282611b7a565b6121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890613fae565b60405180910390fd5b60008290505b600081106122da576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122cb578092505050612316565b508080600190039150506121d7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d90614040565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123fb828260405180602001604052806000815250612786565b5050565b60006124208473ffffffffffffffffffffffffffffffffffffffff16612798565b1561257a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612449611b87565b8786866040518563ffffffff1660e01b815260040161246b94939291906140b5565b6020604051808303816000875af19250505080156124a757506040513d601f19601f820116820180604052508101906124a49190614116565b60015b61252a573d80600081146124d7576040519150601f19603f3d011682016040523d82523d6000602084013e6124dc565b606091505b50600081511415612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990613b8b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061257f565b600190505b949350505050565b606060088054612596906132e2565b80601f01602080910402602001604051908101604052809291908181526020018280546125c2906132e2565b801561260f5780601f106125e45761010080835404028352916020019161260f565b820191906000526020600020905b8154815290600101906020018083116125f257829003601f168201915b5050505050905090565b60606000821415612661576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612775565b600082905060005b6000821461269357808061267c90614143565b915050600a8261268c91906141bb565b9150612669565b60008167ffffffffffffffff8111156126af576126ae612f6f565b5b6040519080825280601f01601f1916602001820160405280156126e15781602001600182028036833780820191505090505b5090505b6000851461276e576001826126fa91906134f9565b9150600a8561270991906141ec565b603061271591906138b9565b60f81b81838151811061272b5761272a61421d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561276791906141bb565b94506126e5565b8093505050505b919050565b50505050565b50505050565b61279383838360016127ab565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612818906142be565b60405180910390fd5b6000841415612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90614350565b60405180910390fd5b612872600086838761277a565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b0c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612af757612ab760008884886123ff565b612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed90613b8b565b60405180910390fd5b5b81806001019250508080600101915050612a40565b508060008190555050612b226000868387612780565b5050505050565b828054612b35906132e2565b90600052602060002090601f016020900481019282612b575760008555612b9e565b82601f10612b7057805160ff1916838001178555612b9e565b82800160010185558215612b9e579182015b82811115612b9d578251825591602001919060010190612b82565b5b509050612bab9190612be9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612c02576000816000905550600101612bea565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c4f81612c1a565b8114612c5a57600080fd5b50565b600081359050612c6c81612c46565b92915050565b600060208284031215612c8857612c87612c10565b5b6000612c9684828501612c5d565b91505092915050565b60008115159050919050565b612cb481612c9f565b82525050565b6000602082019050612ccf6000830184612cab565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d0f578082015181840152602081019050612cf4565b83811115612d1e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d4082612cd5565b612d4a8185612ce0565b9350612d5a818560208601612cf1565b612d6381612d24565b840191505092915050565b60006020820190508181036000830152612d888184612d35565b905092915050565b6000819050919050565b612da381612d90565b8114612dae57600080fd5b50565b600081359050612dc081612d9a565b92915050565b600060208284031215612ddc57612ddb612c10565b5b6000612dea84828501612db1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e1e82612df3565b9050919050565b612e2e81612e13565b82525050565b6000602082019050612e496000830184612e25565b92915050565b612e5881612e13565b8114612e6357600080fd5b50565b600081359050612e7581612e4f565b92915050565b60008060408385031215612e9257612e91612c10565b5b6000612ea085828601612e66565b9250506020612eb185828601612db1565b9150509250929050565b612ec481612d90565b82525050565b6000602082019050612edf6000830184612ebb565b92915050565b600060208284031215612efb57612efa612c10565b5b6000612f0984828501612e66565b91505092915050565b600080600060608486031215612f2b57612f2a612c10565b5b6000612f3986828701612e66565b9350506020612f4a86828701612e66565b9250506040612f5b86828701612db1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fa782612d24565b810181811067ffffffffffffffff82111715612fc657612fc5612f6f565b5b80604052505050565b6000612fd9612c06565b9050612fe58282612f9e565b919050565b600067ffffffffffffffff82111561300557613004612f6f565b5b61300e82612d24565b9050602081019050919050565b82818337600083830152505050565b600061303d61303884612fea565b612fcf565b90508281526020810184848401111561305957613058612f6a565b5b61306484828561301b565b509392505050565b600082601f83011261308157613080612f65565b5b813561309184826020860161302a565b91505092915050565b6000602082840312156130b0576130af612c10565b5b600082013567ffffffffffffffff8111156130ce576130cd612c15565b5b6130da8482850161306c565b91505092915050565b6130ec81612c9f565b81146130f757600080fd5b50565b600081359050613109816130e3565b92915050565b6000806040838503121561312657613125612c10565b5b600061313485828601612e66565b9250506020613145858286016130fa565b9150509250929050565b600067ffffffffffffffff82111561316a57613169612f6f565b5b61317382612d24565b9050602081019050919050565b600061319361318e8461314f565b612fcf565b9050828152602081018484840111156131af576131ae612f6a565b5b6131ba84828561301b565b509392505050565b600082601f8301126131d7576131d6612f65565b5b81356131e7848260208601613180565b91505092915050565b6000806000806080858703121561320a57613209612c10565b5b600061321887828801612e66565b945050602061322987828801612e66565b935050604061323a87828801612db1565b925050606085013567ffffffffffffffff81111561325b5761325a612c15565b5b613267878288016131c2565b91505092959194509250565b6000806040838503121561328a57613289612c10565b5b600061329885828601612e66565b92505060206132a985828601612e66565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132fa57607f821691505b6020821081141561330e5761330d6132b3565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613370602d83612ce0565b915061337b82613314565b604082019050919050565b6000602082019050818103600083015261339f81613363565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613402602283612ce0565b915061340d826133a6565b604082019050919050565b60006020820190508181036000830152613431816133f5565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613494603983612ce0565b915061349f82613438565b604082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061350482612d90565b915061350f83612d90565b925082821015613522576135216134ca565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613589602283612ce0565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061361b602e83612ce0565b9150613626826135bf565b604082019050919050565b6000602082019050818103600083015261364a8161360e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613687602083612ce0565b915061369282613651565b602082019050919050565b600060208201905081810360008301526136b68161367a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613719602383612ce0565b9150613724826136bd565b604082019050919050565b600060208201905081810360008301526137488161370c565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006137ab602b83612ce0565b91506137b68261374f565b604082019050919050565b600060208201905081810360008301526137da8161379e565b9050919050565b7f53616c65206e6f74206163746976652100000000000000000000000000000000600082015250565b6000613817601083612ce0565b9150613822826137e1565b602082019050919050565b600060208201905081810360008301526138468161380a565b9050919050565b7f496e636f727265637420616d6f756e7421000000000000000000000000000000600082015250565b6000613883601183612ce0565b915061388e8261384d565b602082019050919050565b600060208201905081810360008301526138b281613876565b9050919050565b60006138c482612d90565b91506138cf83612d90565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613904576139036134ca565b5b828201905092915050565b7f45786365656473206d617820616d6f756e74207065722077616c6c6574210000600082015250565b6000613945601e83612ce0565b91506139508261390f565b602082019050919050565b6000602082019050818103600083015261397481613938565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73210000000000000000000000000000600082015250565b60006139b1601283612ce0565b91506139bc8261397b565b602082019050919050565b600060208201905081810360008301526139e0816139a4565b9050919050565b60006139f282612d90565b91506139fd83612d90565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3657613a356134ca565b5b828202905092915050565b7f496e636f72726563742076616c75652100000000000000000000000000000000600082015250565b6000613a77601083612ce0565b9150613a8282613a41565b602082019050919050565b60006020820190508181036000830152613aa681613a6a565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613ae3601a83612ce0565b9150613aee82613aad565b602082019050919050565b60006020820190508181036000830152613b1281613ad6565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613b75603383612ce0565b9150613b8082613b19565b604082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c07602f83612ce0565b9150613c1282613bab565b604082019050919050565b60006020820190508181036000830152613c3681613bfa565b9050919050565b600081905092915050565b6000613c5382612cd5565b613c5d8185613c3d565b9350613c6d818560208601612cf1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613caf600583613c3d565b9150613cba82613c79565b600582019050919050565b6000613cd18285613c48565b9150613cdd8284613c48565b9150613ce882613ca2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d50602683612ce0565b9150613d5b82613cf4565b604082019050919050565b60006020820190508181036000830152613d7f81613d43565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613de2603283612ce0565b9150613ded82613d86565b604082019050919050565b60006020820190508181036000830152613e1181613dd5565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613e74602683612ce0565b9150613e7f82613e18565b604082019050919050565b60006020820190508181036000830152613ea381613e67565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f06602583612ce0565b9150613f1182613eaa565b604082019050919050565b60006020820190508181036000830152613f3581613ef9565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613f98602a83612ce0565b9150613fa382613f3c565b604082019050919050565b60006020820190508181036000830152613fc781613f8b565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061402a602f83612ce0565b915061403582613fce565b604082019050919050565b600060208201905081810360008301526140598161401d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061408782614060565b614091818561406b565b93506140a1818560208601612cf1565b6140aa81612d24565b840191505092915050565b60006080820190506140ca6000830187612e25565b6140d76020830186612e25565b6140e46040830185612ebb565b81810360608301526140f6818461407c565b905095945050505050565b60008151905061411081612c46565b92915050565b60006020828403121561412c5761412b612c10565b5b600061413a84828501614101565b91505092915050565b600061414e82612d90565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614181576141806134ca565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141c682612d90565b91506141d183612d90565b9250826141e1576141e061418c565b5b828204905092915050565b60006141f782612d90565b915061420283612d90565b9250826142125761421161418c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006142a8602183612ce0565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b600061433a602883612ce0565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b905091905056fea264697066735822122016ca0e30f31d8bd044ca664451ba9fc85cf9476f228b59a4d64037305ac26fa764736f6c634300080c0033

Deployed Bytecode Sourcemap

38277:1703:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25144:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27030:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28601:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28122:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38543:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38598:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23397:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29477:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24065:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39167:109;;;;;;;;;;;;;:::i;:::-;;29710:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23578:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38874:87;;;;;;;;;;;;;:::i;:::-;;38760:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26839:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38405:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39060:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25580:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4365:94;;;;;;;;;;;;;:::i;:::-;;39471:506;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3714:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38969:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27199:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38434:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28887:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29958:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27374:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38462:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29246:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39284:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4614:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38497:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38375:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25144:372;25246:4;25298:25;25283:40;;;:11;:40;;;;:105;;;;25355:33;25340:48;;;:11;:48;;;;25283:105;:172;;;;25420:35;25405:50;;;:11;:50;;;;25283:172;:225;;;;25472:36;25496:11;25472:23;:36::i;:::-;25283:225;25263:245;;25144:372;;;:::o;27030:100::-;27084:13;27117:5;27110:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27030:100;:::o;28601:214::-;28669:7;28697:16;28705:7;28697;:16::i;:::-;28689:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28783:15;:24;28799:7;28783:24;;;;;;;;;;;;;;;;;;;;;28776:31;;28601:214;;;:::o;28122:413::-;28195:13;28211:24;28227:7;28211:15;:24::i;:::-;28195:40;;28260:5;28254:11;;:2;:11;;;;28246:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28355:5;28339:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28364:37;28381:5;28388:12;:10;:12::i;:::-;28364:16;:37::i;:::-;28339:62;28317:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28499:28;28508:2;28512:7;28521:5;28499:8;:28::i;:::-;28184:351;28122:413;;:::o;38543:44::-;38584:3;38543:44;:::o;38598:45::-;;;;;;;;;;;;;;;;;:::o;23397:104::-;23450:7;23492:1;23477:12;;:16;;;;:::i;:::-;23470:23;;23397:104;:::o;29477:162::-;29603:28;29613:4;29619:2;29623:7;29603:9;:28::i;:::-;29477:162;;;:::o;24065:1007::-;24154:7;24190:16;24200:5;24190:9;:16::i;:::-;24182:5;:24;24174:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24256:22;24281:13;:11;:13::i;:::-;24256:38;;24305:19;24335:25;24524:9;24519:466;24539:14;24535:1;:18;24519:466;;;24579:31;24613:11;:14;24625:1;24613:14;;;;;;;;;;;24579:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24676:1;24650:28;;:9;:14;;;:28;;;24646:111;;24723:9;:14;;;24703:34;;24646:111;24800:5;24779:26;;:17;:26;;;24775:195;;;24849:5;24834:11;:20;24830:85;;;24890:1;24883:8;;;;;;;;;24830:85;24937:13;;;;;;;24775:195;24560:425;24555:3;;;;;;;24519:466;;;;25008:56;;;;;;;;;;:::i;:::-;;;;;;;;24065:1007;;;;;:::o;39167:109::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39225:10:::1;39217:28;;:51;39246:21;39217:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39167:109::o:0;29710:177::-;29840:39;29857:4;29863:2;29867:7;29840:39;;;;;;;;;;;;:16;:39::i;:::-;29710:177;;;:::o;23578:187::-;23645:7;23681:13;:11;:13::i;:::-;23673:5;:21;23665:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23752:5;23745:12;;23578:187;;;:::o;38874:87::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38943:10:::1;;;;;;;;;;;38942:11;38929:10;;:24;;;;;;;;;;;;;;;;;;38874:87::o:0;38760:106::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38847:11:::1;38837:7;:21;;;;;;;;;;;;:::i;:::-;;38760:106:::0;:::o;26839:124::-;26903:7;26930:20;26942:7;26930:11;:20::i;:::-;:25;;;26923:32;;26839:124;;;:::o;38405:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39060:99::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39141:10:::1;39129:9;:22;;;;39060:99:::0;:::o;25580:221::-;25644:7;25689:1;25672:19;;:5;:19;;;;25664:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25765:12;:19;25778:5;25765:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25757:36;;25750:43;;25580:221;;;:::o;4365:94::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4430:21:::1;4448:1;4430:9;:21::i;:::-;4365:94::o:0;39471:506::-;39538:10;;;;;;;;;;;39530:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;38534:2;39588:6;:20;;39580:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;38584:3;39677:6;39649:13;:25;39663:10;39649:25;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:52;;39641:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39792:1;39780:9;;:13;;;;:::i;:::-;39770:6;39755:12;;:21;;;;:::i;:::-;:38;;39747:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;39856:6;39848:5;;:14;;;;:::i;:::-;39835:9;:27;39827:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39894:29;39904:10;39916:6;39894:9;:29::i;:::-;39963:6;39934:13;:25;39948:10;39934:25;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;39471:506;:::o;3714:87::-;3760:7;3787:6;;;;;;;;;;;3780:13;;3714:87;:::o;38969:83::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39038:6:::1;39030:5;:14;;;;38969:83:::0;:::o;27199:104::-;27255:13;27288:7;27281:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27199:104;:::o;38434:20::-;;;;:::o;28887:288::-;28994:12;:10;:12::i;:::-;28982:24;;:8;:24;;;;28974:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29095:8;29050:18;:32;29069:12;:10;:12::i;:::-;29050:32;;;;;;;;;;;;;;;:42;29083:8;29050:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29148:8;29119:48;;29134:12;:10;:12::i;:::-;29119:48;;;29158:8;29119:48;;;;;;:::i;:::-;;;;;;;;28887:288;;:::o;29958:355::-;30117:28;30127:4;30133:2;30137:7;30117:9;:28::i;:::-;30178:48;30201:4;30207:2;30211:7;30220:5;30178:22;:48::i;:::-;30156:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;29958:355;;;;:::o;27374:344::-;27447:13;27481:16;27489:7;27481;:16::i;:::-;27473:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27562:21;27586:10;:8;:10::i;:::-;27562:34;;27639:1;27620:7;27614:21;:26;;:96;;;;;;;;;;;;;;;;;27667:7;27676:18;:7;:16;:18::i;:::-;27650:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27614:96;27607:103;;;27374:344;;;:::o;38462:24::-;;;;:::o;29246:164::-;29343:4;29367:18;:25;29386:5;29367:25;;;;;;;;;;;;;;;:35;29393:8;29367:35;;;;;;;;;;;;;;;;;;;;;;;;;29360:42;;29246:164;;;;:::o;39284:179::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39391:1:::1;39379:9;;:13;;;;:::i;:::-;39369:6;39354:12;;:21;;;;:::i;:::-;:38;;39346:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;39426:29;39436:10;39448:6;39426:9;:29::i;:::-;39284:179:::0;:::o;4614:192::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4723:1:::1;4703:22;;:8;:22;;;;4695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4779:19;4789:8;4779:9;:19::i;:::-;4614:192:::0;:::o;38497:39::-;38534:2;38497:39;:::o;38375:22::-;;;;;;;;;;;;;:::o;15316:157::-;15401:4;15440:25;15425:40;;;:11;:40;;;;15418:47;;15316:157;;;:::o;30568:111::-;30625:4;30659:12;;30649:7;:22;30642:29;;30568:111;;;:::o;2590:98::-;2643:7;2670:10;2663:17;;2590:98;:::o;35488:196::-;35630:2;35603:15;:24;35619:7;35603:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35668:7;35664:2;35648:28;;35657:5;35648:28;;;;;;;;;;;;35488:196;;;:::o;33368:2002::-;33483:35;33521:20;33533:7;33521:11;:20::i;:::-;33483:58;;33554:22;33596:13;:18;;;33580:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33655:12;:10;:12::i;:::-;33631:36;;:20;33643:7;33631:11;:20::i;:::-;:36;;;33580:87;:154;;;;33684:50;33701:13;:18;;;33721:12;:10;:12::i;:::-;33684:16;:50::i;:::-;33580:154;33554:181;;33756:17;33748:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33871:4;33849:26;;:13;:18;;;:26;;;33841:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33951:1;33937:16;;:2;:16;;;;33929:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34008:43;34030:4;34036:2;34040:7;34049:1;34008:21;:43::i;:::-;34116:49;34133:1;34137:7;34146:13;:18;;;34116:8;:49::i;:::-;34491:1;34461:12;:18;34474:4;34461:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34535:1;34507:12;:16;34520:2;34507:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34581:2;34553:11;:20;34565:7;34553:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;34643:15;34598:11;:20;34610:7;34598:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;34911:19;34943:1;34933:7;:11;34911:33;;35004:1;34963:43;;:11;:24;34975:11;34963:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34959:295;;;35031:20;35039:11;35031:7;:20::i;:::-;35027:212;;;35108:13;:18;;;35076:11;:24;35088:11;35076:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;35191:13;:28;;;35149:11;:24;35161:11;35149:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;35027:212;34959:295;34436:829;35301:7;35297:2;35282:27;;35291:4;35282:27;;;;;;;;;;;;35320:42;35341:4;35347:2;35351:7;35360:1;35320:20;:42::i;:::-;33472:1898;;33368:2002;;;:::o;26240:537::-;26301:21;;:::i;:::-;26343:16;26351:7;26343;:16::i;:::-;26335:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26449:12;26464:7;26449:22;;26444:245;26481:1;26473:4;:9;26444:245;;26511:31;26545:11;:17;26557:4;26545:17;;;;;;;;;;;26511:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26611:1;26585:28;;:9;:14;;;:28;;;26581:93;;26645:9;26638:16;;;;;;26581:93;26492:197;26484:6;;;;;;;;26444:245;;;;26712:57;;;;;;;;;;:::i;:::-;;;;;;;;26240:537;;;;:::o;4814:173::-;4870:16;4889:6;;;;;;;;;;;4870:25;;4915:8;4906:6;;:17;;;;;;;;;;;;;;;;;;4970:8;4939:40;;4960:8;4939:40;;;;;;;;;;;;4859:128;4814:173;:::o;30687:104::-;30756:27;30766:2;30770:8;30756:27;;;;;;;;;;;;:9;:27::i;:::-;30687:104;;:::o;36249:804::-;36404:4;36425:15;:2;:13;;;:15::i;:::-;36421:625;;;36477:2;36461:36;;;36498:12;:10;:12::i;:::-;36512:4;36518:7;36527:5;36461:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36457:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36724:1;36707:6;:13;:18;36703:273;;;36750:61;;;;;;;;;;:::i;:::-;;;;;;;;36703:273;36926:6;36920:13;36911:6;36907:2;36903:15;36896:38;36457:534;36594:45;;;36584:55;;;:6;:55;;;;36577:62;;;;;36421:625;37030:4;37023:11;;36249:804;;;;;;;:::o;38652:100::-;38704:13;38737:7;38730:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38652:100;:::o;289:723::-;345:13;575:1;566:5;:10;562:53;;;593:10;;;;;;;;;;;;;;;;;;;;;562:53;625:12;640:5;625:20;;656:14;681:78;696:1;688:4;:9;681:78;;714:8;;;;;:::i;:::-;;;;745:2;737:10;;;;;:::i;:::-;;;681:78;;;769:19;801:6;791:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769:39;;819:154;835:1;826:5;:10;819:154;;863:1;853:11;;;;;:::i;:::-;;;930:2;922:5;:10;;;;:::i;:::-;909:2;:24;;;;:::i;:::-;896:39;;879:6;886;879:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;959:2;950:11;;;;;:::i;:::-;;;819:154;;;997:6;983:21;;;;;289:723;;;;:::o;37541:159::-;;;;;:::o;38112:158::-;;;;;:::o;31154:163::-;31277:32;31283:2;31287:8;31297:5;31304:4;31277:5;:32::i;:::-;31154:163;;;:::o;5675:387::-;5735:4;5943:12;6010:7;5998:20;5990:28;;6053:1;6046:4;:8;6039:15;;;5675:387;;;:::o;31576:1538::-;31715:20;31738:12;;31715:35;;31783:1;31769:16;;:2;:16;;;;31761:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31854:1;31842:8;:13;;31834:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31913:61;31943:1;31947:2;31951:12;31965:8;31913:21;:61::i;:::-;32288:8;32252:12;:16;32265:2;32252:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32353:8;32312:12;:16;32325:2;32312:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32412:2;32379:11;:25;32391:12;32379:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32479:15;32429:11;:25;32441:12;32429:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32512:20;32535:12;32512:35;;32569:9;32564:415;32584:8;32580:1;:12;32564:415;;;32648:12;32644:2;32623:38;;32640:1;32623:38;;;;;;;;;;;;32684:4;32680:249;;;32747:59;32778:1;32782:2;32786:12;32800:5;32747:22;:59::i;:::-;32713:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;32680:249;32949:14;;;;;;;32594:3;;;;;;;32564:415;;;;33010:12;32995;:27;;;;32227:807;33046:60;33075:1;33079:2;33083:12;33097:8;33046:20;:60::i;:::-;31704:1410;31576:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:232::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:15;12837:2;12829:6;12825:15;12818:40;12633:232;:::o;12871:366::-;13013:3;13034:67;13098:2;13093:3;13034:67;:::i;:::-;13027:74;;13110:93;13199:3;13110:93;:::i;:::-;13228:2;13223:3;13219:12;13212:19;;12871:366;;;:::o;13243:419::-;13409:4;13447:2;13436:9;13432:18;13424:26;;13496:9;13490:4;13486:20;13482:1;13471:9;13467:17;13460:47;13524:131;13650:4;13524:131;:::i;:::-;13516:139;;13243:419;;;:::o;13668:221::-;13808:34;13804:1;13796:6;13792:14;13785:58;13877:4;13872:2;13864:6;13860:15;13853:29;13668:221;:::o;13895:366::-;14037:3;14058:67;14122:2;14117:3;14058:67;:::i;:::-;14051:74;;14134:93;14223:3;14134:93;:::i;:::-;14252:2;14247:3;14243:12;14236:19;;13895:366;;;:::o;14267:419::-;14433:4;14471:2;14460:9;14456:18;14448:26;;14520:9;14514:4;14510:20;14506:1;14495:9;14491:17;14484:47;14548:131;14674:4;14548:131;:::i;:::-;14540:139;;14267:419;;;:::o;14692:244::-;14832:34;14828:1;14820:6;14816:14;14809:58;14901:27;14896:2;14888:6;14884:15;14877:52;14692:244;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:180::-;15787:77;15784:1;15777:88;15884:4;15881:1;15874:15;15908:4;15905:1;15898:15;15925:191;15965:4;15985:20;16003:1;15985:20;:::i;:::-;15980:25;;16019:20;16037:1;16019:20;:::i;:::-;16014:25;;16058:1;16055;16052:8;16049:34;;;16063:18;;:::i;:::-;16049:34;16108:1;16105;16101:9;16093:17;;15925:191;;;;:::o;16122:221::-;16262:34;16258:1;16250:6;16246:14;16239:58;16331:4;16326:2;16318:6;16314:15;16307:29;16122:221;:::o;16349:366::-;16491:3;16512:67;16576:2;16571:3;16512:67;:::i;:::-;16505:74;;16588:93;16677:3;16588:93;:::i;:::-;16706:2;16701:3;16697:12;16690:19;;16349:366;;;:::o;16721:419::-;16887:4;16925:2;16914:9;16910:18;16902:26;;16974:9;16968:4;16964:20;16960:1;16949:9;16945:17;16938:47;17002:131;17128:4;17002:131;:::i;:::-;16994:139;;16721:419;;;:::o;17146:233::-;17286:34;17282:1;17274:6;17270:14;17263:58;17355:16;17350:2;17342:6;17338:15;17331:41;17146:233;:::o;17385:366::-;17527:3;17548:67;17612:2;17607:3;17548:67;:::i;:::-;17541:74;;17624:93;17713:3;17624:93;:::i;:::-;17742:2;17737:3;17733:12;17726:19;;17385:366;;;:::o;17757:419::-;17923:4;17961:2;17950:9;17946:18;17938:26;;18010:9;18004:4;18000:20;17996:1;17985:9;17981:17;17974:47;18038:131;18164:4;18038:131;:::i;:::-;18030:139;;17757:419;;;:::o;18182:182::-;18322:34;18318:1;18310:6;18306:14;18299:58;18182:182;:::o;18370:366::-;18512:3;18533:67;18597:2;18592:3;18533:67;:::i;:::-;18526:74;;18609:93;18698:3;18609:93;:::i;:::-;18727:2;18722:3;18718:12;18711:19;;18370:366;;;:::o;18742:419::-;18908:4;18946:2;18935:9;18931:18;18923:26;;18995:9;18989:4;18985:20;18981:1;18970:9;18966:17;18959:47;19023:131;19149:4;19023:131;:::i;:::-;19015:139;;18742:419;;;:::o;19167:222::-;19307:34;19303:1;19295:6;19291:14;19284:58;19376:5;19371:2;19363:6;19359:15;19352:30;19167:222;:::o;19395:366::-;19537:3;19558:67;19622:2;19617:3;19558:67;:::i;:::-;19551:74;;19634:93;19723:3;19634:93;:::i;:::-;19752:2;19747:3;19743:12;19736:19;;19395:366;;;:::o;19767:419::-;19933:4;19971:2;19960:9;19956:18;19948:26;;20020:9;20014:4;20010:20;20006:1;19995:9;19991:17;19984:47;20048:131;20174:4;20048:131;:::i;:::-;20040:139;;19767:419;;;:::o;20192:230::-;20332:34;20328:1;20320:6;20316:14;20309:58;20401:13;20396:2;20388:6;20384:15;20377:38;20192:230;:::o;20428:366::-;20570:3;20591:67;20655:2;20650:3;20591:67;:::i;:::-;20584:74;;20667:93;20756:3;20667:93;:::i;:::-;20785:2;20780:3;20776:12;20769:19;;20428:366;;;:::o;20800:419::-;20966:4;21004:2;20993:9;20989:18;20981:26;;21053:9;21047:4;21043:20;21039:1;21028:9;21024:17;21017:47;21081:131;21207:4;21081:131;:::i;:::-;21073:139;;20800:419;;;:::o;21225:166::-;21365:18;21361:1;21353:6;21349:14;21342:42;21225:166;:::o;21397:366::-;21539:3;21560:67;21624:2;21619:3;21560:67;:::i;:::-;21553:74;;21636:93;21725:3;21636:93;:::i;:::-;21754:2;21749:3;21745:12;21738:19;;21397:366;;;:::o;21769:419::-;21935:4;21973:2;21962:9;21958:18;21950:26;;22022:9;22016:4;22012:20;22008:1;21997:9;21993:17;21986:47;22050:131;22176:4;22050:131;:::i;:::-;22042:139;;21769:419;;;:::o;22194:167::-;22334:19;22330:1;22322:6;22318:14;22311:43;22194:167;:::o;22367:366::-;22509:3;22530:67;22594:2;22589:3;22530:67;:::i;:::-;22523:74;;22606:93;22695:3;22606:93;:::i;:::-;22724:2;22719:3;22715:12;22708:19;;22367:366;;;:::o;22739:419::-;22905:4;22943:2;22932:9;22928:18;22920:26;;22992:9;22986:4;22982:20;22978:1;22967:9;22963:17;22956:47;23020:131;23146:4;23020:131;:::i;:::-;23012:139;;22739:419;;;:::o;23164:305::-;23204:3;23223:20;23241:1;23223:20;:::i;:::-;23218:25;;23257:20;23275:1;23257:20;:::i;:::-;23252:25;;23411:1;23343:66;23339:74;23336:1;23333:81;23330:107;;;23417:18;;:::i;:::-;23330:107;23461:1;23458;23454:9;23447:16;;23164:305;;;;:::o;23475:180::-;23615:32;23611:1;23603:6;23599:14;23592:56;23475:180;:::o;23661:366::-;23803:3;23824:67;23888:2;23883:3;23824:67;:::i;:::-;23817:74;;23900:93;23989:3;23900:93;:::i;:::-;24018:2;24013:3;24009:12;24002:19;;23661:366;;;:::o;24033:419::-;24199:4;24237:2;24226:9;24222:18;24214:26;;24286:9;24280:4;24276:20;24272:1;24261:9;24257:17;24250:47;24314:131;24440:4;24314:131;:::i;:::-;24306:139;;24033:419;;;:::o;24458:168::-;24598:20;24594:1;24586:6;24582:14;24575:44;24458:168;:::o;24632:366::-;24774:3;24795:67;24859:2;24854:3;24795:67;:::i;:::-;24788:74;;24871:93;24960:3;24871:93;:::i;:::-;24989:2;24984:3;24980:12;24973:19;;24632:366;;;:::o;25004:419::-;25170:4;25208:2;25197:9;25193:18;25185:26;;25257:9;25251:4;25247:20;25243:1;25232:9;25228:17;25221:47;25285:131;25411:4;25285:131;:::i;:::-;25277:139;;25004:419;;;:::o;25429:348::-;25469:7;25492:20;25510:1;25492:20;:::i;:::-;25487:25;;25526:20;25544:1;25526:20;:::i;:::-;25521:25;;25714:1;25646:66;25642:74;25639:1;25636:81;25631:1;25624:9;25617:17;25613:105;25610:131;;;25721:18;;:::i;:::-;25610:131;25769:1;25766;25762:9;25751:20;;25429:348;;;;:::o;25783:166::-;25923:18;25919:1;25911:6;25907:14;25900:42;25783:166;:::o;25955:366::-;26097:3;26118:67;26182:2;26177:3;26118:67;:::i;:::-;26111:74;;26194:93;26283:3;26194:93;:::i;:::-;26312:2;26307:3;26303:12;26296:19;;25955:366;;;:::o;26327:419::-;26493:4;26531:2;26520:9;26516:18;26508:26;;26580:9;26574:4;26570:20;26566:1;26555:9;26551:17;26544:47;26608:131;26734:4;26608:131;:::i;:::-;26600:139;;26327:419;;;:::o;26752:176::-;26892:28;26888:1;26880:6;26876:14;26869:52;26752:176;:::o;26934:366::-;27076:3;27097:67;27161:2;27156:3;27097:67;:::i;:::-;27090:74;;27173:93;27262:3;27173:93;:::i;:::-;27291:2;27286:3;27282:12;27275:19;;26934:366;;;:::o;27306:419::-;27472:4;27510:2;27499:9;27495:18;27487:26;;27559:9;27553:4;27549:20;27545:1;27534:9;27530:17;27523:47;27587:131;27713:4;27587:131;:::i;:::-;27579:139;;27306:419;;;:::o;27731:238::-;27871:34;27867:1;27859:6;27855:14;27848:58;27940:21;27935:2;27927:6;27923:15;27916:46;27731:238;:::o;27975:366::-;28117:3;28138:67;28202:2;28197:3;28138:67;:::i;:::-;28131:74;;28214:93;28303:3;28214:93;:::i;:::-;28332:2;28327:3;28323:12;28316:19;;27975:366;;;:::o;28347:419::-;28513:4;28551:2;28540:9;28536:18;28528:26;;28600:9;28594:4;28590:20;28586:1;28575:9;28571:17;28564:47;28628:131;28754:4;28628:131;:::i;:::-;28620:139;;28347:419;;;:::o;28772:234::-;28912:34;28908:1;28900:6;28896:14;28889:58;28981:17;28976:2;28968:6;28964:15;28957:42;28772:234;:::o;29012:366::-;29154:3;29175:67;29239:2;29234:3;29175:67;:::i;:::-;29168:74;;29251:93;29340:3;29251:93;:::i;:::-;29369:2;29364:3;29360:12;29353:19;;29012:366;;;:::o;29384:419::-;29550:4;29588:2;29577:9;29573:18;29565:26;;29637:9;29631:4;29627:20;29623:1;29612:9;29608:17;29601:47;29665:131;29791:4;29665:131;:::i;:::-;29657:139;;29384:419;;;:::o;29809:148::-;29911:11;29948:3;29933:18;;29809:148;;;;:::o;29963:377::-;30069:3;30097:39;30130:5;30097:39;:::i;:::-;30152:89;30234:6;30229:3;30152:89;:::i;:::-;30145:96;;30250:52;30295:6;30290:3;30283:4;30276:5;30272:16;30250:52;:::i;:::-;30327:6;30322:3;30318:16;30311:23;;30073:267;29963:377;;;;:::o;30346:155::-;30486:7;30482:1;30474:6;30470:14;30463:31;30346:155;:::o;30507:400::-;30667:3;30688:84;30770:1;30765:3;30688:84;:::i;:::-;30681:91;;30781:93;30870:3;30781:93;:::i;:::-;30899:1;30894:3;30890:11;30883:18;;30507:400;;;:::o;30913:701::-;31194:3;31216:95;31307:3;31298:6;31216:95;:::i;:::-;31209:102;;31328:95;31419:3;31410:6;31328:95;:::i;:::-;31321:102;;31440:148;31584:3;31440:148;:::i;:::-;31433:155;;31605:3;31598:10;;30913:701;;;;;:::o;31620:225::-;31760:34;31756:1;31748:6;31744:14;31737:58;31829:8;31824:2;31816:6;31812:15;31805:33;31620:225;:::o;31851:366::-;31993:3;32014:67;32078:2;32073:3;32014:67;:::i;:::-;32007:74;;32090:93;32179:3;32090:93;:::i;:::-;32208:2;32203:3;32199:12;32192:19;;31851:366;;;:::o;32223:419::-;32389:4;32427:2;32416:9;32412:18;32404:26;;32476:9;32470:4;32466:20;32462:1;32451:9;32447:17;32440:47;32504:131;32630:4;32504:131;:::i;:::-;32496:139;;32223:419;;;:::o;32648:237::-;32788:34;32784:1;32776:6;32772:14;32765:58;32857:20;32852:2;32844:6;32840:15;32833:45;32648:237;:::o;32891:366::-;33033:3;33054:67;33118:2;33113:3;33054:67;:::i;:::-;33047:74;;33130:93;33219:3;33130:93;:::i;:::-;33248:2;33243:3;33239:12;33232:19;;32891:366;;;:::o;33263:419::-;33429:4;33467:2;33456:9;33452:18;33444:26;;33516:9;33510:4;33506:20;33502:1;33491:9;33487:17;33480:47;33544:131;33670:4;33544:131;:::i;:::-;33536:139;;33263:419;;;:::o;33688:225::-;33828:34;33824:1;33816:6;33812:14;33805:58;33897:8;33892:2;33884:6;33880:15;33873:33;33688:225;:::o;33919:366::-;34061:3;34082:67;34146:2;34141:3;34082:67;:::i;:::-;34075:74;;34158:93;34247:3;34158:93;:::i;:::-;34276:2;34271:3;34267:12;34260:19;;33919:366;;;:::o;34291:419::-;34457:4;34495:2;34484:9;34480:18;34472:26;;34544:9;34538:4;34534:20;34530:1;34519:9;34515:17;34508:47;34572:131;34698:4;34572:131;:::i;:::-;34564:139;;34291:419;;;:::o;34716:224::-;34856:34;34852:1;34844:6;34840:14;34833:58;34925:7;34920:2;34912:6;34908:15;34901:32;34716:224;:::o;34946:366::-;35088:3;35109:67;35173:2;35168:3;35109:67;:::i;:::-;35102:74;;35185:93;35274:3;35185:93;:::i;:::-;35303:2;35298:3;35294:12;35287:19;;34946:366;;;:::o;35318:419::-;35484:4;35522:2;35511:9;35507:18;35499:26;;35571:9;35565:4;35561:20;35557:1;35546:9;35542:17;35535:47;35599:131;35725:4;35599:131;:::i;:::-;35591:139;;35318:419;;;:::o;35743:229::-;35883:34;35879:1;35871:6;35867:14;35860:58;35952:12;35947:2;35939:6;35935:15;35928:37;35743:229;:::o;35978:366::-;36120:3;36141:67;36205:2;36200:3;36141:67;:::i;:::-;36134:74;;36217:93;36306:3;36217:93;:::i;:::-;36335:2;36330:3;36326:12;36319:19;;35978:366;;;:::o;36350:419::-;36516:4;36554:2;36543:9;36539:18;36531:26;;36603:9;36597:4;36593:20;36589:1;36578:9;36574:17;36567:47;36631:131;36757:4;36631:131;:::i;:::-;36623:139;;36350:419;;;:::o;36775:234::-;36915:34;36911:1;36903:6;36899:14;36892:58;36984:17;36979:2;36971:6;36967:15;36960:42;36775:234;:::o;37015:366::-;37157:3;37178:67;37242:2;37237:3;37178:67;:::i;:::-;37171:74;;37254:93;37343:3;37254:93;:::i;:::-;37372:2;37367:3;37363:12;37356:19;;37015:366;;;:::o;37387:419::-;37553:4;37591:2;37580:9;37576:18;37568:26;;37640:9;37634:4;37630:20;37626:1;37615:9;37611:17;37604:47;37668:131;37794:4;37668:131;:::i;:::-;37660:139;;37387:419;;;:::o;37812:98::-;37863:6;37897:5;37891:12;37881:22;;37812:98;;;:::o;37916:168::-;37999:11;38033:6;38028:3;38021:19;38073:4;38068:3;38064:14;38049:29;;37916:168;;;;:::o;38090:360::-;38176:3;38204:38;38236:5;38204:38;:::i;:::-;38258:70;38321:6;38316:3;38258:70;:::i;:::-;38251:77;;38337:52;38382:6;38377:3;38370:4;38363:5;38359:16;38337:52;:::i;:::-;38414:29;38436:6;38414:29;:::i;:::-;38409:3;38405:39;38398:46;;38180:270;38090:360;;;;:::o;38456:640::-;38651:4;38689:3;38678:9;38674:19;38666:27;;38703:71;38771:1;38760:9;38756:17;38747:6;38703:71;:::i;:::-;38784:72;38852:2;38841:9;38837:18;38828:6;38784:72;:::i;:::-;38866;38934:2;38923:9;38919:18;38910:6;38866:72;:::i;:::-;38985:9;38979:4;38975:20;38970:2;38959:9;38955:18;38948:48;39013:76;39084:4;39075:6;39013:76;:::i;:::-;39005:84;;38456:640;;;;;;;:::o;39102:141::-;39158:5;39189:6;39183:13;39174:22;;39205:32;39231:5;39205:32;:::i;:::-;39102:141;;;;:::o;39249:349::-;39318:6;39367:2;39355:9;39346:7;39342:23;39338:32;39335:119;;;39373:79;;:::i;:::-;39335:119;39493:1;39518:63;39573:7;39564:6;39553:9;39549:22;39518:63;:::i;:::-;39508:73;;39464:127;39249:349;;;;:::o;39604:233::-;39643:3;39666:24;39684:5;39666:24;:::i;:::-;39657:33;;39712:66;39705:5;39702:77;39699:103;;;39782:18;;:::i;:::-;39699:103;39829:1;39822:5;39818:13;39811:20;;39604:233;;;:::o;39843:180::-;39891:77;39888:1;39881:88;39988:4;39985:1;39978:15;40012:4;40009:1;40002:15;40029:185;40069:1;40086:20;40104:1;40086:20;:::i;:::-;40081:25;;40120:20;40138:1;40120:20;:::i;:::-;40115:25;;40159:1;40149:35;;40164:18;;:::i;:::-;40149:35;40206:1;40203;40199:9;40194:14;;40029:185;;;;:::o;40220:176::-;40252:1;40269:20;40287:1;40269:20;:::i;:::-;40264:25;;40303:20;40321:1;40303:20;:::i;:::-;40298:25;;40342:1;40332:35;;40347:18;;:::i;:::-;40332:35;40388:1;40385;40381:9;40376:14;;40220:176;;;;:::o;40402:180::-;40450:77;40447:1;40440:88;40547:4;40544:1;40537:15;40571:4;40568:1;40561:15;40588:220;40728:34;40724:1;40716:6;40712:14;40705:58;40797:3;40792:2;40784:6;40780:15;40773:28;40588:220;:::o;40814:366::-;40956:3;40977:67;41041:2;41036:3;40977:67;:::i;:::-;40970:74;;41053:93;41142:3;41053:93;:::i;:::-;41171:2;41166:3;41162:12;41155:19;;40814:366;;;:::o;41186:419::-;41352:4;41390:2;41379:9;41375:18;41367:26;;41439:9;41433:4;41429:20;41425:1;41414:9;41410:17;41403:47;41467:131;41593:4;41467:131;:::i;:::-;41459:139;;41186:419;;;:::o;41611:227::-;41751:34;41747:1;41739:6;41735:14;41728:58;41820:10;41815:2;41807:6;41803:15;41796:35;41611:227;:::o;41844:366::-;41986:3;42007:67;42071:2;42066:3;42007:67;:::i;:::-;42000:74;;42083:93;42172:3;42083:93;:::i;:::-;42201:2;42196:3;42192:12;42185:19;;41844:366;;;:::o;42216:419::-;42382:4;42420:2;42409:9;42405:18;42397:26;;42469:9;42463:4;42459:20;42455:1;42444:9;42440:17;42433:47;42497:131;42623:4;42497:131;:::i;:::-;42489:139;;42216:419;;;:::o

Swarm Source

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