ETH Price: $3,421.12 (+7.17%)
Gas: 15 Gwei

Token

Scrubby Ape Artwork (SAA)
 

Overview

Max Total Supply

3,762 SAA

Holders

380

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
25 SAA
0x20fe10b966708b772e912458932a1206aa8d7e40
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:
ScrubbyApeArtwork

Compiler Version
v0.8.11+commit.d7f03943

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-06
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".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');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater than 0');

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

        _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 = 0; 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.
        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 ScrubbyApeArtwork is ERC721A {

    mapping (address => uint8) public _minted;

    uint public salePrice;
    uint public reachedCapPrice;
    uint16 public maxSupply;
    uint8 public maxPerTx;
    uint8 public maxPerWallet;

    bool public publicMintStatus;

    string public baseURI;

    address private owner;

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setSalePrice(uint price) external onlyOwner {
        salePrice = price;
    }

    function setReachedCapPrice(uint price) external onlyOwner {
        reachedCapPrice = price;
    }

    function setMaxSupply(uint16 supply) external onlyOwner {
        maxSupply = supply;
    }

    function setMaxPerTx(uint8 max) external onlyOwner {
        maxPerTx = max;
    }

    function setMaxPerWallet(uint8 max) external onlyOwner {
        maxPerWallet = max;
    }

    function setPublicMintStatus() external onlyOwner {
        publicMintStatus = !publicMintStatus;
    }

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

    modifier onlyOwner {
        require(owner == msg.sender, "Not the owner!");
        _;
    }

    function transferOwnership(address newOwner) external onlyOwner {
        owner = newOwner;
    }

    constructor() ERC721A("Scrubby Ape Artwork", "SAA") {
        owner = msg.sender;
    }

    function I_AM_A_GENIUS_SO_I_AM_BUYING_MORE(uint8 amount) external payable {
        require(publicMintStatus, "Sale not active!");
        require(currentIndex + amount <= maxSupply + 1, "Not enough tokens to sell!");
        require(amount <= maxPerTx, "Incorrect amount!");
        require(_minted[msg.sender] + amount <= maxPerWallet, "Incorrect amount!");
        if(currentIndex + amount > 3000){
            require(msg.value == reachedCapPrice * amount, "Incorrect amount!");
            _safeMint(msg.sender, amount);
            _minted[msg.sender] += amount;
        }else{
            require(msg.value == salePrice * amount, "Incorrect amount!");
            _safeMint(msg.sender, amount);
            _minted[msg.sender] += amount;
        }
    }

    function LOL_YOU_CAN_BUY_MORE_FOR_THE_SAME_PRICE() external payable {
        require(publicMintStatus, "Sale not active!");
        require(currentIndex <= maxSupply, "Not enough tokens to sell!");
        require(_minted[msg.sender] + 1 <= maxPerWallet, "Not allowed!");
        if(currentIndex > 5000){
            require(msg.value == reachedCapPrice, "Incorrect amount!");
            _safeMint(msg.sender, 1);
            _minted[msg.sender] += 1;
        }else{
            require(msg.value == 0, "Incorrect amount!");
            _safeMint(msg.sender, 1);
            _minted[msg.sender] += 1;
        }
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"I_AM_A_GENIUS_SO_I_AM_BUYING_MORE","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"LOL_YOU_CAN_BUY_MORE_FOR_THE_SAME_PRICE","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"maxPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reachedCapPrice","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":"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":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint8","name":"max","type":"uint8"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"max","type":"uint8"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"supply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setReachedCapPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSalePrice","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"}]

608060405260016000553480156200001657600080fd5b506040518060400160405280601381526020017f536372756262792041706520417274776f726b000000000000000000000000008152506040518060400160405280600381526020017f534141000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200009b929190620000fe565b508060029080519060200190620000b4929190620000fe565b50505033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000213565b8280546200010c90620001dd565b90600052602060002090601f0160209004810192826200013057600085556200017c565b82601f106200014b57805160ff19168380011785556200017c565b828001600101855582156200017c579182015b828111156200017b5782518255916020019190600101906200015e565b5b5090506200018b91906200018f565b5090565b5b80821115620001aa57600081600090555060010162000190565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001f657607f821691505b602082108114156200020d576200020c620001ae565b5b50919050565b61499c80620002236000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063c219c2ef116100a0578063e985e9c51161006f578063e985e9c514610744578063f2fde38b14610781578063f51f96dd146107aa578063f968adbe146107d5578063fb4acf851461080057610204565b8063c219c2ef146106bb578063c6aa2b71146106d2578063c87b56dd146106dc578063d5abeb011461071957610204565b806395d89b41116100e757806395d89b41146105ec578063a22cb46514610617578063abf08ae114610640578063b88d4fde14610669578063b8da55611461069257610204565b80636c0360eb1461051e5780636e34c7961461054957806370a08231146105725780637de77ecc146105af57610204565b8063262023701161019b578063453c23101161016a578063453c2310146104255780634f6ccce71461045057806355f804b31461048d5780636352211e146104b657806367ede142146104f357610204565b8063262023701461037d5780632f745c59146103a85780633ccfd60b146103e557806342842e0e146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd146103005780631919fed71461032b57806323b872dd1461035457610204565b806301ffc9a71461020957806306421c2f1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613170565b61081c565b60405161023d91906131b8565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061320d565b610966565b005b34801561027b57600080fd5b50610284610a16565b60405161029191906132d3565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061332b565b610aa8565b6040516102ce9190613399565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f991906133e0565b610b2d565b005b34801561030c57600080fd5b50610315610c46565b604051610322919061342f565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d919061332b565b610c4f565b005b34801561036057600080fd5b5061037b6004803603810190610376919061344a565b610ce9565b005b34801561038957600080fd5b50610392610cf9565b60405161039f91906131b8565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca91906133e0565b610d0c565b6040516103dc919061342f565b60405180910390f35b3480156103f157600080fd5b506103fa610f0a565b005b34801561040857600080fd5b50610423600480360381019061041e919061344a565b610fe3565b005b34801561043157600080fd5b5061043a611003565b60405161044791906134b9565b60405180910390f35b34801561045c57600080fd5b506104776004803603810190610472919061332b565b611016565b604051610484919061342f565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613609565b611069565b005b3480156104c257600080fd5b506104dd60048036038101906104d8919061332b565b611113565b6040516104ea9190613399565b60405180910390f35b3480156104ff57600080fd5b50610508611129565b604051610515919061342f565b60405180910390f35b34801561052a57600080fd5b5061053361112f565b60405161054091906132d3565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b919061367e565b6111bd565b005b34801561057e57600080fd5b50610599600480360381019061059491906136ab565b61126b565b6040516105a6919061342f565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906136ab565b611354565b6040516105e391906134b9565b60405180910390f35b3480156105f857600080fd5b50610601611374565b60405161060e91906132d3565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613704565b611406565b005b34801561064c57600080fd5b506106676004803603810190610662919061367e565b611587565b005b34801561067557600080fd5b50610690600480360381019061068b91906137e5565b611635565b005b34801561069e57600080fd5b506106b960048036038101906106b4919061332b565b611691565b005b3480156106c757600080fd5b506106d061172b565b005b6106da6117e7565b005b3480156106e857600080fd5b5061070360048036038101906106fe919061332b565b611ad8565b60405161071091906132d3565b60405180910390f35b34801561072557600080fd5b5061072e611b7f565b60405161073b9190613877565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613892565b611b93565b60405161077891906131b8565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a391906136ab565b611c27565b005b3480156107b657600080fd5b506107bf611cfb565b6040516107cc919061342f565b60405180910390f35b3480156107e157600080fd5b506107ea611d01565b6040516107f791906134b9565b60405180910390f35b61081a6004803603810190610815919061367e565b611d14565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095f575061095e826120a4565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed9061391e565b60405180910390fd5b80600a60006101000a81548161ffff021916908361ffff16021790555050565b606060018054610a259061396d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a519061396d565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000610ab38261210e565b610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613a11565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3882611113565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613aa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc861211b565b73ffffffffffffffffffffffffffffffffffffffff161480610bf75750610bf681610bf161211b565b611b93565b5b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90613b35565b60405180910390fd5b610c41838383612123565b505050565b60008054905090565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061391e565b60405180910390fd5b8060088190555050565b610cf48383836121d5565b505050565b600a60049054906101000a900460ff1681565b6000610d178361126b565b8210610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613bc7565b60405180910390fd5b6000610d62610c46565b905060008060005b83811015610ec8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e5c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb45786841415610ea5578195505050505050610f04565b8380610eb090613c16565b9450505b508080610ec090613c16565b915050610d6a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90613cd1565b60405180910390fd5b92915050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f919061391e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fe0573d6000803e3d6000fd5b50565b610ffe83838360405180602001604052806000815250611635565b505050565b600a60039054906101000a900460ff1681565b6000611020610c46565b8210611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613d63565b60405180910390fd5b819050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f09061391e565b60405180910390fd5b80600b908051906020019061110f929190613027565b5050565b600061111e8261271e565b600001519050919050565b60095481565b600b805461113c9061396d565b80601f01602080910402602001604051908101604052809291908181526020018280546111689061396d565b80156111b55780601f1061118a576101008083540402835291602001916111b5565b820191906000526020600020905b81548152906001019060200180831161119857829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461124d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112449061391e565b60405180910390fd5b80600a60026101000a81548160ff021916908360ff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613df5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60076020528060005260406000206000915054906101000a900460ff1681565b6060600280546113839061396d565b80601f01602080910402602001604051908101604052809291908181526020018280546113af9061396d565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b5050505050905090565b61140e61211b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613e61565b60405180910390fd5b806006600061148961211b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661153661211b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161157b91906131b8565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e9061391e565b60405180910390fd5b80600a60036101000a81548160ff021916908360ff16021790555050565b6116408484846121d5565b61164c84848484612879565b61168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613ef3565b60405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611721576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117189061391e565b60405180910390fd5b8060098190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b29061391e565b60405180910390fd5b600a60049054906101000a900460ff1615600a60046101000a81548160ff021916908315150217905550565b600a60049054906101000a900460ff16611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613f5f565b60405180910390fd5b600a60009054906101000a900461ffff1661ffff16600054111561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613fcb565b60405180910390fd5b600a60039054906101000a900460ff1660ff166001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118fb9190613feb565b60ff16111561193f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119369061406e565b60405180910390fd5b6113886000541115611a1357600954341461198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906140da565b60405180910390fd5b61199a336001612a01565b6001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166119f69190613feb565b92506101000a81548160ff021916908360ff160217905550611ad6565b60003414611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d906140da565b60405180910390fd5b611a61336001612a01565b6001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611abd9190613feb565b92506101000a81548160ff021916908360ff1602179055505b565b6060611ae38261210e565b611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b199061416c565b60405180910390fd5b6000611b2c612a1f565b90506000815111611b4c5760405180602001604052806000815250611b77565b80611b5684612ab1565b604051602001611b67929190614214565b6040516020818303038152906040525b915050919050565b600a60009054906101000a900461ffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae9061391e565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b600a60029054906101000a900460ff1681565b600a60049054906101000a900460ff16611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a90613f5f565b60405180910390fd5b6001600a60009054906101000a900461ffff16611d809190614243565b61ffff168160ff16600054611d95919061427b565b1115611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90613fcb565b60405180910390fd5b600a60029054906101000a900460ff1660ff168160ff161115611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e25906140da565b60405180910390fd5b600a60039054906101000a900460ff1660ff1681600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e999190613feb565b60ff161115611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed4906140da565b60405180910390fd5b610bb88160ff16600054611ef1919061427b565b1115611fce578060ff16600954611f0891906142d1565b3414611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f40906140da565b60405180910390fd5b611f56338260ff16612a01565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611fb19190613feb565b92506101000a81548160ff021916908360ff1602179055506120a1565b8060ff16600854611fdf91906142d1565b3414612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906140da565b60405180910390fd5b61202d338260ff16612a01565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166120889190613feb565b92506101000a81548160ff021916908360ff1602179055505b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121e08261271e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661220761211b565b73ffffffffffffffffffffffffffffffffffffffff161480612263575061222c61211b565b73ffffffffffffffffffffffffffffffffffffffff1661224b84610aa8565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227f575061227e826000015161227961211b565b611b93565b5b9050806122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b89061439d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a9061442f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a906144c1565b60405180910390fd5b6123b08585856001612c12565b6123c06000848460000151612123565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184612597919061427b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126ae5761260d8161210e565b156126ad5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127168686866001612c18565b505050505050565b6127266130ad565b61272f8261210e565b61276e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276590614553565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612860578092505050612874565b50808061286c90614573565b915050612774565b919050565b600061289a8473ffffffffffffffffffffffffffffffffffffffff16612c1e565b156129f4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128c361211b565b8786866040518563ffffffff1660e01b81526004016128e594939291906145f2565b6020604051808303816000875af192505050801561292157506040513d601f19601f8201168201806040525081019061291e9190614653565b60015b6129a4573d8060008114612951576040519150601f19603f3d011682016040523d82523d6000602084013e612956565b606091505b5060008151141561299c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299390613ef3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129f9565b600190505b949350505050565b612a1b828260405180602001604052806000815250612c31565b5050565b6060600b8054612a2e9061396d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a5a9061396d565b8015612aa75780601f10612a7c57610100808354040283529160200191612aa7565b820191906000526020600020905b815481529060010190602001808311612a8a57829003601f168201915b5050505050905090565b60606000821415612af9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c0d565b600082905060005b60008214612b2b578080612b1490613c16565b915050600a82612b2491906146af565b9150612b01565b60008167ffffffffffffffff811115612b4757612b466134de565b5b6040519080825280601f01601f191660200182016040528015612b795781602001600182028036833780820191505090505b5090505b60008514612c0657600182612b9291906146e0565b9150600a85612ba19190614714565b6030612bad919061427b565b60f81b818381518110612bc357612bc2614745565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bff91906146af565b9450612b7d565b8093505050505b919050565b50505050565b50505050565b600080823b905060008111915050919050565b612c3e8383836001612c43565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb0906147e6565b60405180910390fd5b612cc28161210e565b15612d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf990614852565b60405180910390fd5b60008411612d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3c906148e4565b60405180910390fd5b612d526000868387612c12565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612dbf9190614920565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff16612e629190614920565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561300a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612fe957612fa96000888488612879565b612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf90613ef3565b60405180910390fd5b5b8180612ff490613c16565b925050808061300290613c16565b915050612f32565b508060008190555061301f6000878488612c18565b505050505050565b8280546130339061396d565b90600052602060002090601f016020900481019282613055576000855561309c565b82601f1061306e57805160ff191683800117855561309c565b8280016001018555821561309c579182015b8281111561309b578251825591602001919060010190613080565b5b5090506130a991906130e7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131005760008160009055506001016130e8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314d81613118565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b6000602082840312156131865761318561310e565b5b60006131948482850161315b565b91505092915050565b60008115159050919050565b6131b28161319d565b82525050565b60006020820190506131cd60008301846131a9565b92915050565b600061ffff82169050919050565b6131ea816131d3565b81146131f557600080fd5b50565b600081359050613207816131e1565b92915050565b6000602082840312156132235761322261310e565b5b6000613231848285016131f8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613274578082015181840152602081019050613259565b83811115613283576000848401525b50505050565b6000601f19601f8301169050919050565b60006132a58261323a565b6132af8185613245565b93506132bf818560208601613256565b6132c881613289565b840191505092915050565b600060208201905081810360008301526132ed818461329a565b905092915050565b6000819050919050565b613308816132f5565b811461331357600080fd5b50565b600081359050613325816132ff565b92915050565b6000602082840312156133415761334061310e565b5b600061334f84828501613316565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338382613358565b9050919050565b61339381613378565b82525050565b60006020820190506133ae600083018461338a565b92915050565b6133bd81613378565b81146133c857600080fd5b50565b6000813590506133da816133b4565b92915050565b600080604083850312156133f7576133f661310e565b5b6000613405858286016133cb565b925050602061341685828601613316565b9150509250929050565b613429816132f5565b82525050565b60006020820190506134446000830184613420565b92915050565b6000806000606084860312156134635761346261310e565b5b6000613471868287016133cb565b9350506020613482868287016133cb565b925050604061349386828701613316565b9150509250925092565b600060ff82169050919050565b6134b38161349d565b82525050565b60006020820190506134ce60008301846134aa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61351682613289565b810181811067ffffffffffffffff82111715613535576135346134de565b5b80604052505050565b6000613548613104565b9050613554828261350d565b919050565b600067ffffffffffffffff821115613574576135736134de565b5b61357d82613289565b9050602081019050919050565b82818337600083830152505050565b60006135ac6135a784613559565b61353e565b9050828152602081018484840111156135c8576135c76134d9565b5b6135d384828561358a565b509392505050565b600082601f8301126135f0576135ef6134d4565b5b8135613600848260208601613599565b91505092915050565b60006020828403121561361f5761361e61310e565b5b600082013567ffffffffffffffff81111561363d5761363c613113565b5b613649848285016135db565b91505092915050565b61365b8161349d565b811461366657600080fd5b50565b60008135905061367881613652565b92915050565b6000602082840312156136945761369361310e565b5b60006136a284828501613669565b91505092915050565b6000602082840312156136c1576136c061310e565b5b60006136cf848285016133cb565b91505092915050565b6136e18161319d565b81146136ec57600080fd5b50565b6000813590506136fe816136d8565b92915050565b6000806040838503121561371b5761371a61310e565b5b6000613729858286016133cb565b925050602061373a858286016136ef565b9150509250929050565b600067ffffffffffffffff82111561375f5761375e6134de565b5b61376882613289565b9050602081019050919050565b600061378861378384613744565b61353e565b9050828152602081018484840111156137a4576137a36134d9565b5b6137af84828561358a565b509392505050565b600082601f8301126137cc576137cb6134d4565b5b81356137dc848260208601613775565b91505092915050565b600080600080608085870312156137ff576137fe61310e565b5b600061380d878288016133cb565b945050602061381e878288016133cb565b935050604061382f87828801613316565b925050606085013567ffffffffffffffff8111156138505761384f613113565b5b61385c878288016137b7565b91505092959194509250565b613871816131d3565b82525050565b600060208201905061388c6000830184613868565b92915050565b600080604083850312156138a9576138a861310e565b5b60006138b7858286016133cb565b92505060206138c8858286016133cb565b9150509250929050565b7f4e6f7420746865206f776e657221000000000000000000000000000000000000600082015250565b6000613908600e83613245565b9150613913826138d2565b602082019050919050565b60006020820190508181036000830152613937816138fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061398557607f821691505b602082108114156139995761399861393e565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006139fb602d83613245565b9150613a068261399f565b604082019050919050565b60006020820190508181036000830152613a2a816139ee565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a8d602283613245565b9150613a9882613a31565b604082019050919050565b60006020820190508181036000830152613abc81613a80565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b1f603983613245565b9150613b2a82613ac3565b604082019050919050565b60006020820190508181036000830152613b4e81613b12565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bb1602283613245565b9150613bbc82613b55565b604082019050919050565b60006020820190508181036000830152613be081613ba4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c21826132f5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c5457613c53613be7565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613cbb602e83613245565b9150613cc682613c5f565b604082019050919050565b60006020820190508181036000830152613cea81613cae565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4d602383613245565b9150613d5882613cf1565b604082019050919050565b60006020820190508181036000830152613d7c81613d40565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ddf602b83613245565b9150613dea82613d83565b604082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613e4b601a83613245565b9150613e5682613e15565b602082019050919050565b60006020820190508181036000830152613e7a81613e3e565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613edd603383613245565b9150613ee882613e81565b604082019050919050565b60006020820190508181036000830152613f0c81613ed0565b9050919050565b7f53616c65206e6f74206163746976652100000000000000000000000000000000600082015250565b6000613f49601083613245565b9150613f5482613f13565b602082019050919050565b60006020820190508181036000830152613f7881613f3c565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c21000000000000600082015250565b6000613fb5601a83613245565b9150613fc082613f7f565b602082019050919050565b60006020820190508181036000830152613fe481613fa8565b9050919050565b6000613ff68261349d565b91506140018361349d565b92508260ff0382111561401757614016613be7565b5b828201905092915050565b7f4e6f7420616c6c6f776564210000000000000000000000000000000000000000600082015250565b6000614058600c83613245565b915061406382614022565b602082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b7f496e636f727265637420616d6f756e7421000000000000000000000000000000600082015250565b60006140c4601183613245565b91506140cf8261408e565b602082019050919050565b600060208201905081810360008301526140f3816140b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614156602f83613245565b9150614161826140fa565b604082019050919050565b6000602082019050818103600083015261418581614149565b9050919050565b600081905092915050565b60006141a28261323a565b6141ac818561418c565b93506141bc818560208601613256565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006141fe60058361418c565b9150614209826141c8565b600582019050919050565b60006142208285614197565b915061422c8284614197565b9150614237826141f1565b91508190509392505050565b600061424e826131d3565b9150614259836131d3565b92508261ffff038211156142705761426f613be7565b5b828201905092915050565b6000614286826132f5565b9150614291836132f5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142c6576142c5613be7565b5b828201905092915050565b60006142dc826132f5565b91506142e7836132f5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143205761431f613be7565b5b828202905092915050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614387603283613245565b91506143928261432b565b604082019050919050565b600060208201905081810360008301526143b68161437a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614419602683613245565b9150614424826143bd565b604082019050919050565b600060208201905081810360008301526144488161440c565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144ab602583613245565b91506144b68261444f565b604082019050919050565b600060208201905081810360008301526144da8161449e565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061453d602a83613245565b9150614548826144e1565b604082019050919050565b6000602082019050818103600083015261456c81614530565b9050919050565b600061457e826132f5565b9150600082141561459257614591613be7565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006145c48261459d565b6145ce81856145a8565b93506145de818560208601613256565b6145e781613289565b840191505092915050565b6000608082019050614607600083018761338a565b614614602083018661338a565b6146216040830185613420565b818103606083015261463381846145b9565b905095945050505050565b60008151905061464d81613144565b92915050565b6000602082840312156146695761466861310e565b5b60006146778482850161463e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146ba826132f5565b91506146c5836132f5565b9250826146d5576146d4614680565b5b828204905092915050565b60006146eb826132f5565b91506146f6836132f5565b92508282101561470957614708613be7565b5b828203905092915050565b600061471f826132f5565b915061472a836132f5565b92508261473a57614739614680565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006147d0602183613245565b91506147db82614774565b604082019050919050565b600060208201905081810360008301526147ff816147c3565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061483c601d83613245565b915061484782614806565b602082019050919050565b6000602082019050818103600083015261486b8161482f565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006148ce602883613245565b91506148d982614872565b604082019050919050565b600060208201905081810360008301526148fd816148c1565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061492b82614904565b915061493683614904565b9250826fffffffffffffffffffffffffffffffff0382111561495b5761495a613be7565b5b82820190509291505056fea26469706673582212204dcdaecadbb4a564a10ff44fd294938706b34d8e250082804007a587acfd65c564736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636c0360eb11610118578063c219c2ef116100a0578063e985e9c51161006f578063e985e9c514610744578063f2fde38b14610781578063f51f96dd146107aa578063f968adbe146107d5578063fb4acf851461080057610204565b8063c219c2ef146106bb578063c6aa2b71146106d2578063c87b56dd146106dc578063d5abeb011461071957610204565b806395d89b41116100e757806395d89b41146105ec578063a22cb46514610617578063abf08ae114610640578063b88d4fde14610669578063b8da55611461069257610204565b80636c0360eb1461051e5780636e34c7961461054957806370a08231146105725780637de77ecc146105af57610204565b8063262023701161019b578063453c23101161016a578063453c2310146104255780634f6ccce71461045057806355f804b31461048d5780636352211e146104b657806367ede142146104f357610204565b8063262023701461037d5780632f745c59146103a85780633ccfd60b146103e557806342842e0e146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd146103005780631919fed71461032b57806323b872dd1461035457610204565b806301ffc9a71461020957806306421c2f1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613170565b61081c565b60405161023d91906131b8565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061320d565b610966565b005b34801561027b57600080fd5b50610284610a16565b60405161029191906132d3565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061332b565b610aa8565b6040516102ce9190613399565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f991906133e0565b610b2d565b005b34801561030c57600080fd5b50610315610c46565b604051610322919061342f565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d919061332b565b610c4f565b005b34801561036057600080fd5b5061037b6004803603810190610376919061344a565b610ce9565b005b34801561038957600080fd5b50610392610cf9565b60405161039f91906131b8565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca91906133e0565b610d0c565b6040516103dc919061342f565b60405180910390f35b3480156103f157600080fd5b506103fa610f0a565b005b34801561040857600080fd5b50610423600480360381019061041e919061344a565b610fe3565b005b34801561043157600080fd5b5061043a611003565b60405161044791906134b9565b60405180910390f35b34801561045c57600080fd5b506104776004803603810190610472919061332b565b611016565b604051610484919061342f565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613609565b611069565b005b3480156104c257600080fd5b506104dd60048036038101906104d8919061332b565b611113565b6040516104ea9190613399565b60405180910390f35b3480156104ff57600080fd5b50610508611129565b604051610515919061342f565b60405180910390f35b34801561052a57600080fd5b5061053361112f565b60405161054091906132d3565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b919061367e565b6111bd565b005b34801561057e57600080fd5b50610599600480360381019061059491906136ab565b61126b565b6040516105a6919061342f565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906136ab565b611354565b6040516105e391906134b9565b60405180910390f35b3480156105f857600080fd5b50610601611374565b60405161060e91906132d3565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613704565b611406565b005b34801561064c57600080fd5b506106676004803603810190610662919061367e565b611587565b005b34801561067557600080fd5b50610690600480360381019061068b91906137e5565b611635565b005b34801561069e57600080fd5b506106b960048036038101906106b4919061332b565b611691565b005b3480156106c757600080fd5b506106d061172b565b005b6106da6117e7565b005b3480156106e857600080fd5b5061070360048036038101906106fe919061332b565b611ad8565b60405161071091906132d3565b60405180910390f35b34801561072557600080fd5b5061072e611b7f565b60405161073b9190613877565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613892565b611b93565b60405161077891906131b8565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a391906136ab565b611c27565b005b3480156107b657600080fd5b506107bf611cfb565b6040516107cc919061342f565b60405180910390f35b3480156107e157600080fd5b506107ea611d01565b6040516107f791906134b9565b60405180910390f35b61081a6004803603810190610815919061367e565b611d14565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095f575061095e826120a4565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed9061391e565b60405180910390fd5b80600a60006101000a81548161ffff021916908361ffff16021790555050565b606060018054610a259061396d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a519061396d565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000610ab38261210e565b610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613a11565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3882611113565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613aa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc861211b565b73ffffffffffffffffffffffffffffffffffffffff161480610bf75750610bf681610bf161211b565b611b93565b5b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90613b35565b60405180910390fd5b610c41838383612123565b505050565b60008054905090565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061391e565b60405180910390fd5b8060088190555050565b610cf48383836121d5565b505050565b600a60049054906101000a900460ff1681565b6000610d178361126b565b8210610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613bc7565b60405180910390fd5b6000610d62610c46565b905060008060005b83811015610ec8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e5c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb45786841415610ea5578195505050505050610f04565b8380610eb090613c16565b9450505b508080610ec090613c16565b915050610d6a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90613cd1565b60405180910390fd5b92915050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f919061391e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fe0573d6000803e3d6000fd5b50565b610ffe83838360405180602001604052806000815250611635565b505050565b600a60039054906101000a900460ff1681565b6000611020610c46565b8210611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613d63565b60405180910390fd5b819050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f09061391e565b60405180910390fd5b80600b908051906020019061110f929190613027565b5050565b600061111e8261271e565b600001519050919050565b60095481565b600b805461113c9061396d565b80601f01602080910402602001604051908101604052809291908181526020018280546111689061396d565b80156111b55780601f1061118a576101008083540402835291602001916111b5565b820191906000526020600020905b81548152906001019060200180831161119857829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461124d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112449061391e565b60405180910390fd5b80600a60026101000a81548160ff021916908360ff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613df5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60076020528060005260406000206000915054906101000a900460ff1681565b6060600280546113839061396d565b80601f01602080910402602001604051908101604052809291908181526020018280546113af9061396d565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b5050505050905090565b61140e61211b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613e61565b60405180910390fd5b806006600061148961211b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661153661211b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161157b91906131b8565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e9061391e565b60405180910390fd5b80600a60036101000a81548160ff021916908360ff16021790555050565b6116408484846121d5565b61164c84848484612879565b61168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613ef3565b60405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611721576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117189061391e565b60405180910390fd5b8060098190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b29061391e565b60405180910390fd5b600a60049054906101000a900460ff1615600a60046101000a81548160ff021916908315150217905550565b600a60049054906101000a900460ff16611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613f5f565b60405180910390fd5b600a60009054906101000a900461ffff1661ffff16600054111561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613fcb565b60405180910390fd5b600a60039054906101000a900460ff1660ff166001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118fb9190613feb565b60ff16111561193f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119369061406e565b60405180910390fd5b6113886000541115611a1357600954341461198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906140da565b60405180910390fd5b61199a336001612a01565b6001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166119f69190613feb565b92506101000a81548160ff021916908360ff160217905550611ad6565b60003414611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d906140da565b60405180910390fd5b611a61336001612a01565b6001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611abd9190613feb565b92506101000a81548160ff021916908360ff1602179055505b565b6060611ae38261210e565b611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b199061416c565b60405180910390fd5b6000611b2c612a1f565b90506000815111611b4c5760405180602001604052806000815250611b77565b80611b5684612ab1565b604051602001611b67929190614214565b6040516020818303038152906040525b915050919050565b600a60009054906101000a900461ffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae9061391e565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b600a60029054906101000a900460ff1681565b600a60049054906101000a900460ff16611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a90613f5f565b60405180910390fd5b6001600a60009054906101000a900461ffff16611d809190614243565b61ffff168160ff16600054611d95919061427b565b1115611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90613fcb565b60405180910390fd5b600a60029054906101000a900460ff1660ff168160ff161115611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e25906140da565b60405180910390fd5b600a60039054906101000a900460ff1660ff1681600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e999190613feb565b60ff161115611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed4906140da565b60405180910390fd5b610bb88160ff16600054611ef1919061427b565b1115611fce578060ff16600954611f0891906142d1565b3414611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f40906140da565b60405180910390fd5b611f56338260ff16612a01565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611fb19190613feb565b92506101000a81548160ff021916908360ff1602179055506120a1565b8060ff16600854611fdf91906142d1565b3414612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906140da565b60405180910390fd5b61202d338260ff16612a01565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166120889190613feb565b92506101000a81548160ff021916908360ff1602179055505b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121e08261271e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661220761211b565b73ffffffffffffffffffffffffffffffffffffffff161480612263575061222c61211b565b73ffffffffffffffffffffffffffffffffffffffff1661224b84610aa8565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227f575061227e826000015161227961211b565b611b93565b5b9050806122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b89061439d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a9061442f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a906144c1565b60405180910390fd5b6123b08585856001612c12565b6123c06000848460000151612123565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184612597919061427b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126ae5761260d8161210e565b156126ad5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127168686866001612c18565b505050505050565b6127266130ad565b61272f8261210e565b61276e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276590614553565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612860578092505050612874565b50808061286c90614573565b915050612774565b919050565b600061289a8473ffffffffffffffffffffffffffffffffffffffff16612c1e565b156129f4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128c361211b565b8786866040518563ffffffff1660e01b81526004016128e594939291906145f2565b6020604051808303816000875af192505050801561292157506040513d601f19601f8201168201806040525081019061291e9190614653565b60015b6129a4573d8060008114612951576040519150601f19603f3d011682016040523d82523d6000602084013e612956565b606091505b5060008151141561299c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299390613ef3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129f9565b600190505b949350505050565b612a1b828260405180602001604052806000815250612c31565b5050565b6060600b8054612a2e9061396d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a5a9061396d565b8015612aa75780601f10612a7c57610100808354040283529160200191612aa7565b820191906000526020600020905b815481529060010190602001808311612a8a57829003601f168201915b5050505050905090565b60606000821415612af9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c0d565b600082905060005b60008214612b2b578080612b1490613c16565b915050600a82612b2491906146af565b9150612b01565b60008167ffffffffffffffff811115612b4757612b466134de565b5b6040519080825280601f01601f191660200182016040528015612b795781602001600182028036833780820191505090505b5090505b60008514612c0657600182612b9291906146e0565b9150600a85612ba19190614714565b6030612bad919061427b565b60f81b818381518110612bc357612bc2614745565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bff91906146af565b9450612b7d565b8093505050505b919050565b50505050565b50505050565b600080823b905060008111915050919050565b612c3e8383836001612c43565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb0906147e6565b60405180910390fd5b612cc28161210e565b15612d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf990614852565b60405180910390fd5b60008411612d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3c906148e4565b60405180910390fd5b612d526000868387612c12565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612dbf9190614920565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff16612e629190614920565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561300a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612fe957612fa96000888488612879565b612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf90613ef3565b60405180910390fd5b5b8180612ff490613c16565b925050808061300290613c16565b915050612f32565b508060008190555061301f6000878488612c18565b505050505050565b8280546130339061396d565b90600052602060002090601f016020900481019282613055576000855561309c565b82601f1061306e57805160ff191683800117855561309c565b8280016001018555821561309c579182015b8281111561309b578251825591602001919060010190613080565b5b5090506130a991906130e7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131005760008160009055506001016130e8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314d81613118565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b6000602082840312156131865761318561310e565b5b60006131948482850161315b565b91505092915050565b60008115159050919050565b6131b28161319d565b82525050565b60006020820190506131cd60008301846131a9565b92915050565b600061ffff82169050919050565b6131ea816131d3565b81146131f557600080fd5b50565b600081359050613207816131e1565b92915050565b6000602082840312156132235761322261310e565b5b6000613231848285016131f8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613274578082015181840152602081019050613259565b83811115613283576000848401525b50505050565b6000601f19601f8301169050919050565b60006132a58261323a565b6132af8185613245565b93506132bf818560208601613256565b6132c881613289565b840191505092915050565b600060208201905081810360008301526132ed818461329a565b905092915050565b6000819050919050565b613308816132f5565b811461331357600080fd5b50565b600081359050613325816132ff565b92915050565b6000602082840312156133415761334061310e565b5b600061334f84828501613316565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338382613358565b9050919050565b61339381613378565b82525050565b60006020820190506133ae600083018461338a565b92915050565b6133bd81613378565b81146133c857600080fd5b50565b6000813590506133da816133b4565b92915050565b600080604083850312156133f7576133f661310e565b5b6000613405858286016133cb565b925050602061341685828601613316565b9150509250929050565b613429816132f5565b82525050565b60006020820190506134446000830184613420565b92915050565b6000806000606084860312156134635761346261310e565b5b6000613471868287016133cb565b9350506020613482868287016133cb565b925050604061349386828701613316565b9150509250925092565b600060ff82169050919050565b6134b38161349d565b82525050565b60006020820190506134ce60008301846134aa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61351682613289565b810181811067ffffffffffffffff82111715613535576135346134de565b5b80604052505050565b6000613548613104565b9050613554828261350d565b919050565b600067ffffffffffffffff821115613574576135736134de565b5b61357d82613289565b9050602081019050919050565b82818337600083830152505050565b60006135ac6135a784613559565b61353e565b9050828152602081018484840111156135c8576135c76134d9565b5b6135d384828561358a565b509392505050565b600082601f8301126135f0576135ef6134d4565b5b8135613600848260208601613599565b91505092915050565b60006020828403121561361f5761361e61310e565b5b600082013567ffffffffffffffff81111561363d5761363c613113565b5b613649848285016135db565b91505092915050565b61365b8161349d565b811461366657600080fd5b50565b60008135905061367881613652565b92915050565b6000602082840312156136945761369361310e565b5b60006136a284828501613669565b91505092915050565b6000602082840312156136c1576136c061310e565b5b60006136cf848285016133cb565b91505092915050565b6136e18161319d565b81146136ec57600080fd5b50565b6000813590506136fe816136d8565b92915050565b6000806040838503121561371b5761371a61310e565b5b6000613729858286016133cb565b925050602061373a858286016136ef565b9150509250929050565b600067ffffffffffffffff82111561375f5761375e6134de565b5b61376882613289565b9050602081019050919050565b600061378861378384613744565b61353e565b9050828152602081018484840111156137a4576137a36134d9565b5b6137af84828561358a565b509392505050565b600082601f8301126137cc576137cb6134d4565b5b81356137dc848260208601613775565b91505092915050565b600080600080608085870312156137ff576137fe61310e565b5b600061380d878288016133cb565b945050602061381e878288016133cb565b935050604061382f87828801613316565b925050606085013567ffffffffffffffff8111156138505761384f613113565b5b61385c878288016137b7565b91505092959194509250565b613871816131d3565b82525050565b600060208201905061388c6000830184613868565b92915050565b600080604083850312156138a9576138a861310e565b5b60006138b7858286016133cb565b92505060206138c8858286016133cb565b9150509250929050565b7f4e6f7420746865206f776e657221000000000000000000000000000000000000600082015250565b6000613908600e83613245565b9150613913826138d2565b602082019050919050565b60006020820190508181036000830152613937816138fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061398557607f821691505b602082108114156139995761399861393e565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006139fb602d83613245565b9150613a068261399f565b604082019050919050565b60006020820190508181036000830152613a2a816139ee565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a8d602283613245565b9150613a9882613a31565b604082019050919050565b60006020820190508181036000830152613abc81613a80565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b1f603983613245565b9150613b2a82613ac3565b604082019050919050565b60006020820190508181036000830152613b4e81613b12565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bb1602283613245565b9150613bbc82613b55565b604082019050919050565b60006020820190508181036000830152613be081613ba4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c21826132f5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c5457613c53613be7565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613cbb602e83613245565b9150613cc682613c5f565b604082019050919050565b60006020820190508181036000830152613cea81613cae565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4d602383613245565b9150613d5882613cf1565b604082019050919050565b60006020820190508181036000830152613d7c81613d40565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ddf602b83613245565b9150613dea82613d83565b604082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613e4b601a83613245565b9150613e5682613e15565b602082019050919050565b60006020820190508181036000830152613e7a81613e3e565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613edd603383613245565b9150613ee882613e81565b604082019050919050565b60006020820190508181036000830152613f0c81613ed0565b9050919050565b7f53616c65206e6f74206163746976652100000000000000000000000000000000600082015250565b6000613f49601083613245565b9150613f5482613f13565b602082019050919050565b60006020820190508181036000830152613f7881613f3c565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c21000000000000600082015250565b6000613fb5601a83613245565b9150613fc082613f7f565b602082019050919050565b60006020820190508181036000830152613fe481613fa8565b9050919050565b6000613ff68261349d565b91506140018361349d565b92508260ff0382111561401757614016613be7565b5b828201905092915050565b7f4e6f7420616c6c6f776564210000000000000000000000000000000000000000600082015250565b6000614058600c83613245565b915061406382614022565b602082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b7f496e636f727265637420616d6f756e7421000000000000000000000000000000600082015250565b60006140c4601183613245565b91506140cf8261408e565b602082019050919050565b600060208201905081810360008301526140f3816140b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614156602f83613245565b9150614161826140fa565b604082019050919050565b6000602082019050818103600083015261418581614149565b9050919050565b600081905092915050565b60006141a28261323a565b6141ac818561418c565b93506141bc818560208601613256565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006141fe60058361418c565b9150614209826141c8565b600582019050919050565b60006142208285614197565b915061422c8284614197565b9150614237826141f1565b91508190509392505050565b600061424e826131d3565b9150614259836131d3565b92508261ffff038211156142705761426f613be7565b5b828201905092915050565b6000614286826132f5565b9150614291836132f5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142c6576142c5613be7565b5b828201905092915050565b60006142dc826132f5565b91506142e7836132f5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143205761431f613be7565b5b828202905092915050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614387603283613245565b91506143928261432b565b604082019050919050565b600060208201905081810360008301526143b68161437a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614419602683613245565b9150614424826143bd565b604082019050919050565b600060208201905081810360008301526144488161440c565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144ab602583613245565b91506144b68261444f565b604082019050919050565b600060208201905081810360008301526144da8161449e565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061453d602a83613245565b9150614548826144e1565b604082019050919050565b6000602082019050818103600083015261456c81614530565b9050919050565b600061457e826132f5565b9150600082141561459257614591613be7565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006145c48261459d565b6145ce81856145a8565b93506145de818560208601613256565b6145e781613289565b840191505092915050565b6000608082019050614607600083018761338a565b614614602083018661338a565b6146216040830185613420565b818103606083015261463381846145b9565b905095945050505050565b60008151905061464d81613144565b92915050565b6000602082840312156146695761466861310e565b5b60006146778482850161463e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146ba826132f5565b91506146c5836132f5565b9250826146d5576146d4614680565b5b828204905092915050565b60006146eb826132f5565b91506146f6836132f5565b92508282101561470957614708613be7565b5b828203905092915050565b600061471f826132f5565b915061472a836132f5565b92508261473a57614739614680565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006147d0602183613245565b91506147db82614774565b604082019050919050565b600060208201905081810360008301526147ff816147c3565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061483c601d83613245565b915061484782614806565b602082019050919050565b6000602082019050818103600083015261486b8161482f565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006148ce602883613245565b91506148d982614872565b604082019050919050565b600060208201905081810360008301526148fd816148c1565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061492b82614904565b915061493683614904565b9250826fffffffffffffffffffffffffffffffff0382111561495b5761495a613be7565b5b82820190509291505056fea26469706673582212204dcdaecadbb4a564a10ff44fd294938706b34d8e250082804007a587acfd65c564736f6c634300080b0033

Deployed Bytecode Sourcemap

35945:3027:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23150:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36725:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24971:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26541:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26062:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21591:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36519:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27417:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36196:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22255:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37131:109;;;;;;;;;;;;;:::i;:::-;;27650:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36162:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21768:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36405:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24780:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36070:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36233:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36826:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23586:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35992:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25140:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26827:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36918:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27898:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36616:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37018:105;;;;;;;;;;;;;:::i;:::-;;38338:631;;;:::i;:::-;;25315:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36104:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27186:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37352:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36042:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37556:774;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23150:372;23252:4;23304:25;23289:40;;;:11;:40;;;;:105;;;;23361:33;23346:48;;;:11;:48;;;;23289:105;:172;;;;23426:35;23411:50;;;:11;:50;;;;23289:172;:225;;;;23478:36;23502:11;23478:23;:36::i;:::-;23289:225;23269:245;;23150:372;;;:::o;36725:93::-;37295:10;37286:19;;:5;;;;;;;;;;;:19;;;37278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;36804:6:::1;36792:9;;:18;;;;;;;;;;;;;;;;;;36725:93:::0;:::o;24971:100::-;25025:13;25058:5;25051:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24971:100;:::o;26541:214::-;26609:7;26637:16;26645:7;26637;:16::i;:::-;26629:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26723:15;:24;26739:7;26723:24;;;;;;;;;;;;;;;;;;;;;26716:31;;26541:214;;;:::o;26062:413::-;26135:13;26151:24;26167:7;26151:15;:24::i;:::-;26135:40;;26200:5;26194:11;;:2;:11;;;;26186:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;26295:5;26279:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26304:37;26321:5;26328:12;:10;:12::i;:::-;26304:16;:37::i;:::-;26279:62;26257:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;26439:28;26448:2;26452:7;26461:5;26439:8;:28::i;:::-;26124:351;26062:413;;:::o;21591:100::-;21644:7;21671:12;;21664:19;;21591:100;:::o;36519:89::-;37295:10;37286:19;;:5;;;;;;;;;;;:19;;;37278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;36595:5:::1;36583:9;:17;;;;36519:89:::0;:::o;27417:162::-;27543:28;27553:4;27559:2;27563:7;27543:9;:28::i;:::-;27417:162;;;:::o;36196:28::-;;;;;;;;;;;;;:::o;22255:823::-;22344:7;22380:16;22390:5;22380:9;:16::i;:::-;22372:5;:24;22364:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22446:22;22471:13;:11;:13::i;:::-;22446:38;;22495:19;22529:25;22583:9;22578:426;22602:14;22598:1;:18;22578:426;;;22638:31;22672:11;:14;22684:1;22672:14;;;;;;;;;;;22638:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22731:1;22705:28;;:9;:14;;;:28;;;22701:103;;22774:9;:14;;;22754:34;;22701:103;22843:5;22822:26;;:17;:26;;;22818:175;;;22888:5;22873:11;:20;22869:77;;;22925:1;22918:8;;;;;;;;;22869:77;22964:13;;;;;:::i;:::-;;;;22818:175;22623:381;22618:3;;;;;:::i;:::-;;;;22578:426;;;;23014:56;;;;;;;;;;:::i;:::-;;;;;;;;22255:823;;;;;:::o;37131:109::-;37295:10;37286:19;;:5;;;;;;;;;;;:19;;;37278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;37189:10:::1;37181:28;;:51;37210:21;37181:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37131:109::o:0;27650:177::-;27780:39;27797:4;27803:2;27807:7;27780:39;;;;;;;;;;;;:16;:39::i;:::-;27650:177;;;:::o;36162:25::-;;;;;;;;;;;;;:::o;21768:187::-;21835:7;21871:13;:11;:13::i;:::-;21863:5;:21;21855:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;21942:5;21935:12;;21768:187;;;:::o;36405:106::-;37295:10;37286:19;;:5;;;;;;;;;;;:19;;;37278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;36492:11:::1;36482:7;:21;;;;;;;;;;;;:::i;:::-;;36405:106:::0;:::o;24780:124::-;24844:7;24871:20;24883:7;24871:11;:20::i;:::-;:25;;;24864:32;;24780:124;;;:::o;36070:27::-;;;;:::o;36233:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36826:84::-;37295:10;37286:19;;:5;;;;;;;;;;;:19;;;37278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;36899:3:::1;36888:8;;:14;;;;;;;;;;;;;;;;;;36826:84:::0;:::o;23586:221::-;23650:7;23695:1;23678:19;;:5;:19;;;;23670:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;23771:12;:19;23784:5;23771:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;23763:36;;23756:43;;23586:221;;;:::o;35992:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;25140:104::-;25196:13;25229:7;25222:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25140:104;:::o;26827:288::-;26934:12;:10;:12::i;:::-;26922:24;;:8;:24;;;;26914:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27035:8;26990:18;:32;27009:12;:10;:12::i;:::-;26990:32;;;;;;;;;;;;;;;:42;27023:8;26990:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27088:8;27059:48;;27074:12;:10;:12::i;:::-;27059:48;;;27098:8;27059:48;;;;;;:::i;:::-;;;;;;;;26827:288;;:::o;36918:92::-;37295:10;37286:19;;:5;;;;;;;;;;;:19;;;37278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;36999:3:::1;36984:12;;:18;;;;;;;;;;;;;;;;;;36918:92:::0;:::o;27898:355::-;28057:28;28067:4;28073:2;28077:7;28057:9;:28::i;:::-;28118:48;28141:4;28147:2;28151:7;28160:5;28118:22;:48::i;:::-;28096:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;27898:355;;;;:::o;36616:101::-;37295:10;37286:19;;:5;;;;;;;;;;;:19;;;37278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;36704:5:::1;36686:15;:23;;;;36616:101:::0;:::o;37018:105::-;37295:10;37286:19;;:5;;;;;;;;;;;:19;;;37278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;37099:16:::1;;;;;;;;;;;37098:17;37079:16;;:36;;;;;;;;;;;;;;;;;;37018:105::o:0;38338:631::-;38425:16;;;;;;;;;;;38417:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;38497:9;;;;;;;;;;;38481:25;;:12;;:25;;38473:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38583:12;;;;;;;;;;;38556:39;;38578:1;38556:7;:19;38564:10;38556:19;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;;:::i;:::-;:39;;;;38548:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38641:4;38626:12;;:19;38623:339;;;38682:15;;38669:9;:28;38661:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38734:24;38744:10;38756:1;38734:9;:24::i;:::-;38796:1;38773:7;:19;38781:10;38773:19;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38623:339;;;38849:1;38836:9;:14;38828:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;38887:24;38897:10;38909:1;38887:9;:24::i;:::-;38949:1;38926:7;:19;38934:10;38926:19;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38623:339;38338:631::o;25315:343::-;25388:13;25422:16;25430:7;25422;:16::i;:::-;25414:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25503:21;25527:10;:8;:10::i;:::-;25503:34;;25579:1;25561:7;25555:21;:25;:95;;;;;;;;;;;;;;;;;25607:7;25616:18;:7;:16;:18::i;:::-;25590:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25555:95;25548:102;;;25315:343;;;:::o;36104:23::-;;;;;;;;;;;;;:::o;27186:164::-;27283:4;27307:18;:25;27326:5;27307:25;;;;;;;;;;;;;;;:35;27333:8;27307:35;;;;;;;;;;;;;;;;;;;;;;;;;27300:42;;27186:164;;;;:::o;37352:99::-;37295:10;37286:19;;:5;;;;;;;;;;;:19;;;37278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;37435:8:::1;37427:5;;:16;;;;;;;;;;;;;;;;;;37352:99:::0;:::o;36042:21::-;;;;:::o;36134:::-;;;;;;;;;;;;;:::o;37556:774::-;37649:16;;;;;;;;;;;37641:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;37742:1;37730:9;;;;;;;;;;;:13;;;;:::i;:::-;37705:38;;37720:6;37705:21;;:12;;:21;;;;:::i;:::-;:38;;37697:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;37803:8;;;;;;;;;;;37793:18;;:6;:18;;;;37785:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;37884:12;;;;;;;;;;;37852:44;;37874:6;37852:7;:19;37860:10;37852:19;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;;;37844:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37956:4;37947:6;37932:21;;:12;;:21;;;;:::i;:::-;:28;37929:394;;;38015:6;37997:24;;:15;;:24;;;;:::i;:::-;37984:9;:37;37976:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38058:29;38068:10;38080:6;38058:29;;:9;:29::i;:::-;38125:6;38102:7;:19;38110:10;38102:19;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37929:394;;;38195:6;38183:18;;:9;;:18;;;;:::i;:::-;38170:9;:31;38162:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38238:29;38248:10;38260:6;38238:29;;:9;:29::i;:::-;38305:6;38282:7;:19;38290:10;38282:19;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37929:394;37556:774;:::o;13122:157::-;13207:4;13246:25;13231:40;;;:11;:40;;;;13224:47;;13122:157;;;:::o;28508:111::-;28565:4;28599:12;;28589:7;:22;28582:29;;28508:111;;;:::o;2586:98::-;2639:7;2666:10;2659:17;;2586:98;:::o;33156:196::-;33298:2;33271:15;:24;33287:7;33271:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33336:7;33332:2;33316:28;;33325:5;33316:28;;;;;;;;;;;;33156:196;;;:::o;31171:1867::-;31286:35;31324:20;31336:7;31324:11;:20::i;:::-;31286:58;;31357:22;31399:13;:18;;;31383:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;31458:12;:10;:12::i;:::-;31434:36;;:20;31446:7;31434:11;:20::i;:::-;:36;;;31383:87;:154;;;;31487:50;31504:13;:18;;;31524:12;:10;:12::i;:::-;31487:16;:50::i;:::-;31383:154;31357:181;;31559:17;31551:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;31674:4;31652:26;;:13;:18;;;:26;;;31644:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;31754:1;31740:16;;:2;:16;;;;31732:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31811:43;31833:4;31839:2;31843:7;31852:1;31811:21;:43::i;:::-;31919:49;31936:1;31940:7;31949:13;:18;;;31919:8;:49::i;:::-;32203:1;32173:12;:18;32186:4;32173:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32247:1;32219:12;:16;32232:2;32219:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32300:2;32272:11;:20;32284:7;32272:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;32358:15;32313:11;:20;32325:7;32313:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;32614:19;32646:1;32636:7;:11;;;;:::i;:::-;32614:33;;32703:1;32662:43;;:11;:24;32674:11;32662:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;32658:275;;;32726:20;32734:11;32726:7;:20::i;:::-;32722:200;;;32799:13;:18;;;32767:11;:24;32779:11;32767:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;32878:13;:28;;;32836:11;:24;32848:11;32836:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;32722:200;32658:275;32969:7;32965:2;32950:27;;32959:4;32950:27;;;;;;;;;;;;32988:42;33009:4;33015:2;33019:7;33028:1;32988:20;:42::i;:::-;31275:1763;;;31171:1867;;;:::o;24246:472::-;24307:21;;:::i;:::-;24349:16;24357:7;24349;:16::i;:::-;24341:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24430:12;24445:7;24430:22;;24425:216;24479:31;24513:11;:17;24525:4;24513:17;;;;;;;;;;;24479:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24575:1;24549:28;;:9;:14;;;:28;;;24545:85;;24605:9;24598:16;;;;;;24545:85;24464:177;24456:6;;;;;:::i;:::-;;;;24425:216;;24246:472;;;;:::o;33917:804::-;34072:4;34093:15;:2;:13;;;:15::i;:::-;34089:625;;;34145:2;34129:36;;;34166:12;:10;:12::i;:::-;34180:4;34186:7;34195:5;34129:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34125:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34392:1;34375:6;:13;:18;34371:273;;;34418:61;;;;;;;;;;:::i;:::-;;;;;;;;34371:273;34594:6;34588:13;34579:6;34575:2;34571:15;34564:38;34125:534;34262:45;;;34252:55;;;:6;:55;;;;34245:62;;;;;34089:625;34698:4;34691:11;;33917:804;;;;;;;:::o;28627:104::-;28696:27;28706:2;28710:8;28696:27;;;;;;;;;;;;:9;:27::i;:::-;28627:104;;:::o;36293:100::-;36345:13;36378:7;36371:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36293:100;:::o;287:723::-;343:13;573:1;564:5;:10;560:53;;;591:10;;;;;;;;;;;;;;;;;;;;;560:53;623:12;638:5;623:20;;654:14;679:78;694:1;686:4;:9;679:78;;712:8;;;;;:::i;:::-;;;;743:2;735:10;;;;;:::i;:::-;;;679:78;;;767:19;799:6;789:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;767:39;;817:154;833:1;824:5;:10;817:154;;861:1;851:11;;;;;:::i;:::-;;;928:2;920:5;:10;;;;:::i;:::-;907:2;:24;;;;:::i;:::-;894:39;;877:6;884;877:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;957:2;948:11;;;;;:::i;:::-;;;817:154;;;995:6;981:21;;;;;287:723;;;;:::o;35209:159::-;;;;;:::o;35780:158::-;;;;;:::o;3481:387::-;3541:4;3749:12;3816:7;3804:20;3796:28;;3859:1;3852:4;:8;3845:15;;;3481:387;;;:::o;29094:163::-;29217:32;29223:2;29227:8;29237:5;29244:4;29217:5;:32::i;:::-;29094:163;;;:::o;29516:1401::-;29655:20;29678:12;;29655:35;;29723:1;29709:16;;:2;:16;;;;29701:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29908:21;29916:12;29908:7;:21::i;:::-;29907:22;29899:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29993:1;29982:8;:12;29974:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30052:61;30082:1;30086:2;30090:12;30104:8;30052:21;:61::i;:::-;30162:8;30126:12;:16;30139:2;30126:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30223:8;30182:12;:16;30195:2;30182:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30278:2;30245:11;:25;30257:12;30245:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;30341:15;30291:11;:25;30303:12;30291:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;30370:20;30393:12;30370:35;;30423:9;30418:381;30442:8;30438:1;:12;30418:381;;;30502:12;30498:2;30477:38;;30494:1;30477:38;;;;;;;;;;;;30534:4;30530:229;;;30589:59;30620:1;30624:2;30628:12;30642:5;30589:22;:59::i;:::-;30559:184;;;;;;;;;;;;:::i;:::-;;;;;;;;;30530:229;30773:14;;;;;:::i;:::-;;;;30452:3;;;;;:::i;:::-;;;;30418:381;;;;30826:12;30811;:27;;;;30849:60;30878:1;30882:2;30886:12;30900:8;30849:20;:60::i;:::-;29644:1273;;29516:1401;;;;:::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:89::-;1554:7;1594:6;1587:5;1583:18;1572:29;;1518:89;;;:::o;1613:120::-;1685:23;1702:5;1685:23;:::i;:::-;1678:5;1675:34;1665:62;;1723:1;1720;1713:12;1665:62;1613:120;:::o;1739:137::-;1784:5;1822:6;1809:20;1800:29;;1838:32;1864:5;1838:32;:::i;:::-;1739:137;;;;:::o;1882:327::-;1940:6;1989:2;1977:9;1968:7;1964:23;1960:32;1957:119;;;1995:79;;:::i;:::-;1957:119;2115:1;2140:52;2184:7;2175:6;2164:9;2160:22;2140:52;:::i;:::-;2130:62;;2086:116;1882:327;;;;:::o;2215:99::-;2267:6;2301:5;2295:12;2285:22;;2215:99;;;:::o;2320:169::-;2404:11;2438:6;2433:3;2426:19;2478:4;2473:3;2469:14;2454:29;;2320:169;;;;:::o;2495:307::-;2563:1;2573:113;2587:6;2584:1;2581:13;2573:113;;;2672:1;2667:3;2663:11;2657:18;2653:1;2648:3;2644:11;2637:39;2609:2;2606:1;2602:10;2597:15;;2573:113;;;2704:6;2701:1;2698:13;2695:101;;;2784:1;2775:6;2770:3;2766:16;2759:27;2695:101;2544:258;2495:307;;;:::o;2808:102::-;2849:6;2900:2;2896:7;2891:2;2884:5;2880:14;2876:28;2866:38;;2808:102;;;:::o;2916:364::-;3004:3;3032:39;3065:5;3032:39;:::i;:::-;3087:71;3151:6;3146:3;3087:71;:::i;:::-;3080:78;;3167:52;3212:6;3207:3;3200:4;3193:5;3189:16;3167:52;:::i;:::-;3244:29;3266:6;3244:29;:::i;:::-;3239:3;3235:39;3228:46;;3008:272;2916:364;;;;:::o;3286:313::-;3399:4;3437:2;3426:9;3422:18;3414:26;;3486:9;3480:4;3476:20;3472:1;3461:9;3457:17;3450:47;3514:78;3587:4;3578:6;3514:78;:::i;:::-;3506:86;;3286:313;;;;:::o;3605:77::-;3642:7;3671:5;3660:16;;3605:77;;;:::o;3688:122::-;3761:24;3779:5;3761:24;:::i;:::-;3754:5;3751:35;3741:63;;3800:1;3797;3790:12;3741:63;3688:122;:::o;3816:139::-;3862:5;3900:6;3887:20;3878:29;;3916:33;3943:5;3916:33;:::i;:::-;3816:139;;;;:::o;3961:329::-;4020:6;4069:2;4057:9;4048:7;4044:23;4040:32;4037:119;;;4075:79;;:::i;:::-;4037:119;4195:1;4220:53;4265:7;4256:6;4245:9;4241:22;4220:53;:::i;:::-;4210:63;;4166:117;3961:329;;;;:::o;4296:126::-;4333:7;4373:42;4366:5;4362:54;4351:65;;4296:126;;;:::o;4428:96::-;4465:7;4494:24;4512:5;4494:24;:::i;:::-;4483:35;;4428:96;;;:::o;4530:118::-;4617:24;4635:5;4617:24;:::i;:::-;4612:3;4605:37;4530:118;;:::o;4654:222::-;4747:4;4785:2;4774:9;4770:18;4762:26;;4798:71;4866:1;4855:9;4851:17;4842:6;4798:71;:::i;:::-;4654:222;;;;:::o;4882:122::-;4955:24;4973:5;4955:24;:::i;:::-;4948:5;4945:35;4935:63;;4994:1;4991;4984:12;4935:63;4882:122;:::o;5010:139::-;5056:5;5094:6;5081:20;5072:29;;5110:33;5137:5;5110:33;:::i;:::-;5010:139;;;;:::o;5155:474::-;5223:6;5231;5280:2;5268:9;5259:7;5255:23;5251:32;5248:119;;;5286:79;;:::i;:::-;5248:119;5406:1;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5377:117;5533:2;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5504:118;5155:474;;;;;:::o;5635:118::-;5722:24;5740:5;5722:24;:::i;:::-;5717:3;5710:37;5635:118;;:::o;5759:222::-;5852:4;5890:2;5879:9;5875:18;5867:26;;5903:71;5971:1;5960:9;5956:17;5947:6;5903:71;:::i;:::-;5759:222;;;;:::o;5987:619::-;6064:6;6072;6080;6129:2;6117:9;6108:7;6104:23;6100:32;6097:119;;;6135:79;;:::i;:::-;6097:119;6255:1;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6226:117;6382:2;6408:53;6453:7;6444:6;6433:9;6429:22;6408:53;:::i;:::-;6398:63;;6353:118;6510:2;6536:53;6581:7;6572:6;6561:9;6557:22;6536:53;:::i;:::-;6526:63;;6481:118;5987:619;;;;;:::o;6612:86::-;6647:7;6687:4;6680:5;6676:16;6665:27;;6612:86;;;:::o;6704:112::-;6787:22;6803:5;6787:22;:::i;:::-;6782:3;6775:35;6704:112;;:::o;6822:214::-;6911:4;6949:2;6938:9;6934:18;6926:26;;6962:67;7026:1;7015:9;7011:17;7002:6;6962:67;:::i;:::-;6822:214;;;;:::o;7042:117::-;7151:1;7148;7141:12;7165:117;7274:1;7271;7264:12;7288:180;7336:77;7333:1;7326:88;7433:4;7430:1;7423:15;7457:4;7454:1;7447:15;7474:281;7557:27;7579:4;7557:27;:::i;:::-;7549:6;7545:40;7687:6;7675:10;7672:22;7651:18;7639:10;7636:34;7633:62;7630:88;;;7698:18;;:::i;:::-;7630:88;7738:10;7734:2;7727:22;7517:238;7474:281;;:::o;7761:129::-;7795:6;7822:20;;:::i;:::-;7812:30;;7851:33;7879:4;7871:6;7851:33;:::i;:::-;7761:129;;;:::o;7896:308::-;7958:4;8048:18;8040:6;8037:30;8034:56;;;8070:18;;:::i;:::-;8034:56;8108:29;8130:6;8108:29;:::i;:::-;8100:37;;8192:4;8186;8182:15;8174:23;;7896:308;;;:::o;8210:154::-;8294:6;8289:3;8284;8271:30;8356:1;8347:6;8342:3;8338:16;8331:27;8210:154;;;:::o;8370:412::-;8448:5;8473:66;8489:49;8531:6;8489:49;:::i;:::-;8473:66;:::i;:::-;8464:75;;8562:6;8555:5;8548:21;8600:4;8593:5;8589:16;8638:3;8629:6;8624:3;8620:16;8617:25;8614:112;;;8645:79;;:::i;:::-;8614:112;8735:41;8769:6;8764:3;8759;8735:41;:::i;:::-;8454:328;8370:412;;;;;:::o;8802:340::-;8858:5;8907:3;8900:4;8892:6;8888:17;8884:27;8874:122;;8915:79;;:::i;:::-;8874:122;9032:6;9019:20;9057:79;9132:3;9124:6;9117:4;9109:6;9105:17;9057:79;:::i;:::-;9048:88;;8864:278;8802:340;;;;:::o;9148:509::-;9217:6;9266:2;9254:9;9245:7;9241:23;9237:32;9234:119;;;9272:79;;:::i;:::-;9234:119;9420:1;9409:9;9405:17;9392:31;9450:18;9442:6;9439:30;9436:117;;;9472:79;;:::i;:::-;9436:117;9577:63;9632:7;9623:6;9612:9;9608:22;9577:63;:::i;:::-;9567:73;;9363:287;9148:509;;;;:::o;9663:118::-;9734:22;9750:5;9734:22;:::i;:::-;9727:5;9724:33;9714:61;;9771:1;9768;9761:12;9714:61;9663:118;:::o;9787:135::-;9831:5;9869:6;9856:20;9847:29;;9885:31;9910:5;9885:31;:::i;:::-;9787:135;;;;:::o;9928:325::-;9985:6;10034:2;10022:9;10013:7;10009:23;10005:32;10002:119;;;10040:79;;:::i;:::-;10002:119;10160:1;10185:51;10228:7;10219:6;10208:9;10204:22;10185:51;:::i;:::-;10175:61;;10131:115;9928:325;;;;:::o;10259:329::-;10318:6;10367:2;10355:9;10346:7;10342:23;10338:32;10335:119;;;10373:79;;:::i;:::-;10335:119;10493:1;10518:53;10563:7;10554:6;10543:9;10539:22;10518:53;:::i;:::-;10508:63;;10464:117;10259:329;;;;:::o;10594:116::-;10664:21;10679:5;10664:21;:::i;:::-;10657:5;10654:32;10644:60;;10700:1;10697;10690:12;10644:60;10594:116;:::o;10716:133::-;10759:5;10797:6;10784:20;10775:29;;10813:30;10837:5;10813:30;:::i;:::-;10716:133;;;;:::o;10855:468::-;10920:6;10928;10977:2;10965:9;10956:7;10952:23;10948:32;10945:119;;;10983:79;;:::i;:::-;10945:119;11103:1;11128:53;11173:7;11164:6;11153:9;11149:22;11128:53;:::i;:::-;11118:63;;11074:117;11230:2;11256:50;11298:7;11289:6;11278:9;11274:22;11256:50;:::i;:::-;11246:60;;11201:115;10855:468;;;;;:::o;11329:307::-;11390:4;11480:18;11472:6;11469:30;11466:56;;;11502:18;;:::i;:::-;11466:56;11540:29;11562:6;11540:29;:::i;:::-;11532:37;;11624:4;11618;11614:15;11606:23;;11329:307;;;:::o;11642:410::-;11719:5;11744:65;11760:48;11801:6;11760:48;:::i;:::-;11744:65;:::i;:::-;11735:74;;11832:6;11825:5;11818:21;11870:4;11863:5;11859:16;11908:3;11899:6;11894:3;11890:16;11887:25;11884:112;;;11915:79;;:::i;:::-;11884:112;12005:41;12039:6;12034:3;12029;12005:41;:::i;:::-;11725:327;11642:410;;;;;:::o;12071:338::-;12126:5;12175:3;12168:4;12160:6;12156:17;12152:27;12142:122;;12183:79;;:::i;:::-;12142:122;12300:6;12287:20;12325:78;12399:3;12391:6;12384:4;12376:6;12372:17;12325:78;:::i;:::-;12316:87;;12132:277;12071:338;;;;:::o;12415:943::-;12510:6;12518;12526;12534;12583:3;12571:9;12562:7;12558:23;12554:33;12551:120;;;12590:79;;:::i;:::-;12551:120;12710:1;12735:53;12780:7;12771:6;12760:9;12756:22;12735:53;:::i;:::-;12725:63;;12681:117;12837:2;12863:53;12908:7;12899:6;12888:9;12884:22;12863:53;:::i;:::-;12853:63;;12808:118;12965:2;12991:53;13036:7;13027:6;13016:9;13012:22;12991:53;:::i;:::-;12981:63;;12936:118;13121:2;13110:9;13106:18;13093:32;13152:18;13144:6;13141:30;13138:117;;;13174:79;;:::i;:::-;13138:117;13279:62;13333:7;13324:6;13313:9;13309:22;13279:62;:::i;:::-;13269:72;;13064:287;12415:943;;;;;;;:::o;13364:115::-;13449:23;13466:5;13449:23;:::i;:::-;13444:3;13437:36;13364:115;;:::o;13485:218::-;13576:4;13614:2;13603:9;13599:18;13591:26;;13627:69;13693:1;13682:9;13678:17;13669:6;13627:69;:::i;:::-;13485:218;;;;:::o;13709:474::-;13777:6;13785;13834:2;13822:9;13813:7;13809:23;13805:32;13802:119;;;13840:79;;:::i;:::-;13802:119;13960:1;13985:53;14030:7;14021:6;14010:9;14006:22;13985:53;:::i;:::-;13975:63;;13931:117;14087:2;14113:53;14158:7;14149:6;14138:9;14134:22;14113:53;:::i;:::-;14103:63;;14058:118;13709:474;;;;;:::o;14189:164::-;14329:16;14325:1;14317:6;14313:14;14306:40;14189:164;:::o;14359:366::-;14501:3;14522:67;14586:2;14581:3;14522:67;:::i;:::-;14515:74;;14598:93;14687:3;14598:93;:::i;:::-;14716:2;14711:3;14707:12;14700:19;;14359:366;;;:::o;14731:419::-;14897:4;14935:2;14924:9;14920:18;14912:26;;14984:9;14978:4;14974:20;14970:1;14959:9;14955:17;14948:47;15012:131;15138:4;15012:131;:::i;:::-;15004:139;;14731:419;;;:::o;15156:180::-;15204:77;15201:1;15194:88;15301:4;15298:1;15291:15;15325:4;15322:1;15315:15;15342:320;15386:6;15423:1;15417:4;15413:12;15403:22;;15470:1;15464:4;15460:12;15491:18;15481:81;;15547:4;15539:6;15535:17;15525:27;;15481:81;15609:2;15601:6;15598:14;15578:18;15575:38;15572:84;;;15628:18;;:::i;:::-;15572:84;15393:269;15342:320;;;:::o;15668:232::-;15808:34;15804:1;15796:6;15792:14;15785:58;15877:15;15872:2;15864:6;15860:15;15853:40;15668:232;:::o;15906:366::-;16048:3;16069:67;16133:2;16128:3;16069:67;:::i;:::-;16062:74;;16145:93;16234:3;16145:93;:::i;:::-;16263:2;16258:3;16254:12;16247:19;;15906:366;;;:::o;16278:419::-;16444:4;16482:2;16471:9;16467:18;16459:26;;16531:9;16525:4;16521:20;16517:1;16506:9;16502:17;16495:47;16559:131;16685:4;16559:131;:::i;:::-;16551:139;;16278:419;;;:::o;16703:221::-;16843:34;16839:1;16831:6;16827:14;16820:58;16912:4;16907:2;16899:6;16895:15;16888:29;16703:221;:::o;16930:366::-;17072:3;17093:67;17157:2;17152:3;17093:67;:::i;:::-;17086:74;;17169:93;17258:3;17169:93;:::i;:::-;17287:2;17282:3;17278:12;17271:19;;16930:366;;;:::o;17302:419::-;17468:4;17506:2;17495:9;17491:18;17483:26;;17555:9;17549:4;17545:20;17541:1;17530:9;17526:17;17519:47;17583:131;17709:4;17583:131;:::i;:::-;17575:139;;17302:419;;;:::o;17727:244::-;17867:34;17863:1;17855:6;17851:14;17844:58;17936:27;17931:2;17923:6;17919:15;17912:52;17727:244;:::o;17977:366::-;18119:3;18140:67;18204:2;18199:3;18140:67;:::i;:::-;18133:74;;18216:93;18305:3;18216:93;:::i;:::-;18334:2;18329:3;18325:12;18318:19;;17977:366;;;:::o;18349:419::-;18515:4;18553:2;18542:9;18538:18;18530:26;;18602:9;18596:4;18592:20;18588:1;18577:9;18573:17;18566:47;18630:131;18756:4;18630:131;:::i;:::-;18622:139;;18349:419;;;:::o;18774:221::-;18914:34;18910:1;18902:6;18898:14;18891:58;18983:4;18978:2;18970:6;18966:15;18959:29;18774:221;:::o;19001:366::-;19143:3;19164:67;19228:2;19223:3;19164:67;:::i;:::-;19157:74;;19240:93;19329:3;19240:93;:::i;:::-;19358:2;19353:3;19349:12;19342:19;;19001:366;;;:::o;19373:419::-;19539:4;19577:2;19566:9;19562:18;19554:26;;19626:9;19620:4;19616:20;19612:1;19601:9;19597:17;19590:47;19654:131;19780:4;19654:131;:::i;:::-;19646:139;;19373:419;;;:::o;19798:180::-;19846:77;19843:1;19836:88;19943:4;19940:1;19933:15;19967:4;19964:1;19957:15;19984:233;20023:3;20046:24;20064:5;20046:24;:::i;:::-;20037:33;;20092:66;20085:5;20082:77;20079:103;;;20162:18;;:::i;:::-;20079:103;20209:1;20202:5;20198:13;20191:20;;19984:233;;;:::o;20223:::-;20363:34;20359:1;20351:6;20347:14;20340:58;20432:16;20427:2;20419:6;20415:15;20408:41;20223:233;:::o;20462:366::-;20604:3;20625:67;20689:2;20684:3;20625:67;:::i;:::-;20618:74;;20701:93;20790:3;20701:93;:::i;:::-;20819:2;20814:3;20810:12;20803:19;;20462:366;;;:::o;20834:419::-;21000:4;21038:2;21027:9;21023:18;21015:26;;21087:9;21081:4;21077:20;21073:1;21062:9;21058:17;21051:47;21115:131;21241:4;21115:131;:::i;:::-;21107:139;;20834:419;;;:::o;21259:222::-;21399:34;21395:1;21387:6;21383:14;21376:58;21468:5;21463:2;21455:6;21451:15;21444:30;21259:222;:::o;21487:366::-;21629:3;21650:67;21714:2;21709:3;21650:67;:::i;:::-;21643:74;;21726:93;21815:3;21726:93;:::i;:::-;21844:2;21839:3;21835:12;21828:19;;21487:366;;;:::o;21859:419::-;22025:4;22063:2;22052:9;22048:18;22040:26;;22112:9;22106:4;22102:20;22098:1;22087:9;22083:17;22076:47;22140:131;22266:4;22140:131;:::i;:::-;22132:139;;21859:419;;;:::o;22284:230::-;22424:34;22420:1;22412:6;22408:14;22401:58;22493:13;22488:2;22480:6;22476:15;22469:38;22284:230;:::o;22520:366::-;22662:3;22683:67;22747:2;22742:3;22683:67;:::i;:::-;22676:74;;22759:93;22848:3;22759:93;:::i;:::-;22877:2;22872:3;22868:12;22861:19;;22520:366;;;:::o;22892:419::-;23058:4;23096:2;23085:9;23081:18;23073:26;;23145:9;23139:4;23135:20;23131:1;23120:9;23116:17;23109:47;23173:131;23299:4;23173:131;:::i;:::-;23165:139;;22892:419;;;:::o;23317:176::-;23457:28;23453:1;23445:6;23441:14;23434:52;23317:176;:::o;23499:366::-;23641:3;23662:67;23726:2;23721:3;23662:67;:::i;:::-;23655:74;;23738:93;23827:3;23738:93;:::i;:::-;23856:2;23851:3;23847:12;23840:19;;23499:366;;;:::o;23871:419::-;24037:4;24075:2;24064:9;24060:18;24052:26;;24124:9;24118:4;24114:20;24110:1;24099:9;24095:17;24088:47;24152:131;24278:4;24152:131;:::i;:::-;24144:139;;23871:419;;;:::o;24296:238::-;24436:34;24432:1;24424:6;24420:14;24413:58;24505:21;24500:2;24492:6;24488:15;24481:46;24296:238;:::o;24540:366::-;24682:3;24703:67;24767:2;24762:3;24703:67;:::i;:::-;24696:74;;24779:93;24868:3;24779:93;:::i;:::-;24897:2;24892:3;24888:12;24881:19;;24540:366;;;:::o;24912:419::-;25078:4;25116:2;25105:9;25101:18;25093:26;;25165:9;25159:4;25155:20;25151:1;25140:9;25136:17;25129:47;25193:131;25319:4;25193:131;:::i;:::-;25185:139;;24912:419;;;:::o;25337:166::-;25477:18;25473:1;25465:6;25461:14;25454:42;25337:166;:::o;25509:366::-;25651:3;25672:67;25736:2;25731:3;25672:67;:::i;:::-;25665:74;;25748:93;25837:3;25748:93;:::i;:::-;25866:2;25861:3;25857:12;25850:19;;25509:366;;;:::o;25881:419::-;26047:4;26085:2;26074:9;26070:18;26062:26;;26134:9;26128:4;26124:20;26120:1;26109:9;26105:17;26098:47;26162:131;26288:4;26162:131;:::i;:::-;26154:139;;25881:419;;;:::o;26306:176::-;26446:28;26442:1;26434:6;26430:14;26423:52;26306:176;:::o;26488:366::-;26630:3;26651:67;26715:2;26710:3;26651:67;:::i;:::-;26644:74;;26727:93;26816:3;26727:93;:::i;:::-;26845:2;26840:3;26836:12;26829:19;;26488:366;;;:::o;26860:419::-;27026:4;27064:2;27053:9;27049:18;27041:26;;27113:9;27107:4;27103:20;27099:1;27088:9;27084:17;27077:47;27141:131;27267:4;27141:131;:::i;:::-;27133:139;;26860:419;;;:::o;27285:237::-;27323:3;27342:18;27358:1;27342:18;:::i;:::-;27337:23;;27374:18;27390:1;27374:18;:::i;:::-;27369:23;;27464:1;27458:4;27454:12;27451:1;27448:19;27445:45;;;27470:18;;:::i;:::-;27445:45;27514:1;27511;27507:9;27500:16;;27285:237;;;;:::o;27528:162::-;27668:14;27664:1;27656:6;27652:14;27645:38;27528:162;:::o;27696:366::-;27838:3;27859:67;27923:2;27918:3;27859:67;:::i;:::-;27852:74;;27935:93;28024:3;27935:93;:::i;:::-;28053:2;28048:3;28044:12;28037:19;;27696:366;;;:::o;28068:419::-;28234:4;28272:2;28261:9;28257:18;28249:26;;28321:9;28315:4;28311:20;28307:1;28296:9;28292:17;28285:47;28349:131;28475:4;28349:131;:::i;:::-;28341:139;;28068:419;;;:::o;28493:167::-;28633:19;28629:1;28621:6;28617:14;28610:43;28493:167;:::o;28666:366::-;28808:3;28829:67;28893:2;28888:3;28829:67;:::i;:::-;28822:74;;28905:93;28994:3;28905:93;:::i;:::-;29023:2;29018:3;29014:12;29007:19;;28666:366;;;:::o;29038:419::-;29204:4;29242:2;29231:9;29227:18;29219:26;;29291:9;29285:4;29281:20;29277:1;29266:9;29262:17;29255:47;29319:131;29445:4;29319:131;:::i;:::-;29311:139;;29038:419;;;:::o;29463:234::-;29603:34;29599:1;29591:6;29587:14;29580:58;29672:17;29667:2;29659:6;29655:15;29648:42;29463:234;:::o;29703:366::-;29845:3;29866:67;29930:2;29925:3;29866:67;:::i;:::-;29859:74;;29942:93;30031:3;29942:93;:::i;:::-;30060:2;30055:3;30051:12;30044:19;;29703:366;;;:::o;30075:419::-;30241:4;30279:2;30268:9;30264:18;30256:26;;30328:9;30322:4;30318:20;30314:1;30303:9;30299:17;30292:47;30356:131;30482:4;30356:131;:::i;:::-;30348:139;;30075:419;;;:::o;30500:148::-;30602:11;30639:3;30624:18;;30500:148;;;;:::o;30654:377::-;30760:3;30788:39;30821:5;30788:39;:::i;:::-;30843:89;30925:6;30920:3;30843:89;:::i;:::-;30836:96;;30941:52;30986:6;30981:3;30974:4;30967:5;30963:16;30941:52;:::i;:::-;31018:6;31013:3;31009:16;31002:23;;30764:267;30654:377;;;;:::o;31037:155::-;31177:7;31173:1;31165:6;31161:14;31154:31;31037:155;:::o;31198:400::-;31358:3;31379:84;31461:1;31456:3;31379:84;:::i;:::-;31372:91;;31472:93;31561:3;31472:93;:::i;:::-;31590:1;31585:3;31581:11;31574:18;;31198:400;;;:::o;31604:701::-;31885:3;31907:95;31998:3;31989:6;31907:95;:::i;:::-;31900:102;;32019:95;32110:3;32101:6;32019:95;:::i;:::-;32012:102;;32131:148;32275:3;32131:148;:::i;:::-;32124:155;;32296:3;32289:10;;31604:701;;;;;:::o;32311:242::-;32350:3;32369:19;32386:1;32369:19;:::i;:::-;32364:24;;32402:19;32419:1;32402:19;:::i;:::-;32397:24;;32495:1;32487:6;32483:14;32480:1;32477:21;32474:47;;;32501:18;;:::i;:::-;32474:47;32545:1;32542;32538:9;32531:16;;32311:242;;;;:::o;32559:305::-;32599:3;32618:20;32636:1;32618:20;:::i;:::-;32613:25;;32652:20;32670:1;32652:20;:::i;:::-;32647:25;;32806:1;32738:66;32734:74;32731:1;32728:81;32725:107;;;32812:18;;:::i;:::-;32725:107;32856:1;32853;32849:9;32842:16;;32559:305;;;;:::o;32870:348::-;32910:7;32933:20;32951:1;32933:20;:::i;:::-;32928:25;;32967:20;32985:1;32967:20;:::i;:::-;32962:25;;33155:1;33087:66;33083:74;33080:1;33077:81;33072:1;33065:9;33058:17;33054:105;33051:131;;;33162:18;;:::i;:::-;33051:131;33210:1;33207;33203:9;33192:20;;32870:348;;;;:::o;33224:237::-;33364:34;33360:1;33352:6;33348:14;33341:58;33433:20;33428:2;33420:6;33416:15;33409:45;33224:237;:::o;33467:366::-;33609:3;33630:67;33694:2;33689:3;33630:67;:::i;:::-;33623:74;;33706:93;33795:3;33706:93;:::i;:::-;33824:2;33819:3;33815:12;33808:19;;33467:366;;;:::o;33839:419::-;34005:4;34043:2;34032:9;34028:18;34020:26;;34092:9;34086:4;34082:20;34078:1;34067:9;34063:17;34056:47;34120:131;34246:4;34120:131;:::i;:::-;34112:139;;33839:419;;;:::o;34264:225::-;34404:34;34400:1;34392:6;34388:14;34381:58;34473:8;34468:2;34460:6;34456:15;34449:33;34264:225;:::o;34495:366::-;34637:3;34658:67;34722:2;34717:3;34658:67;:::i;:::-;34651:74;;34734:93;34823:3;34734:93;:::i;:::-;34852:2;34847:3;34843:12;34836:19;;34495:366;;;:::o;34867:419::-;35033:4;35071:2;35060:9;35056:18;35048:26;;35120:9;35114:4;35110:20;35106:1;35095:9;35091:17;35084:47;35148:131;35274:4;35148:131;:::i;:::-;35140:139;;34867:419;;;:::o;35292:224::-;35432:34;35428:1;35420:6;35416:14;35409:58;35501:7;35496:2;35488:6;35484:15;35477:32;35292:224;:::o;35522:366::-;35664:3;35685:67;35749:2;35744:3;35685:67;:::i;:::-;35678:74;;35761:93;35850:3;35761:93;:::i;:::-;35879:2;35874:3;35870:12;35863:19;;35522:366;;;:::o;35894:419::-;36060:4;36098:2;36087:9;36083:18;36075:26;;36147:9;36141:4;36137:20;36133:1;36122:9;36118:17;36111:47;36175:131;36301:4;36175:131;:::i;:::-;36167:139;;35894:419;;;:::o;36319:229::-;36459:34;36455:1;36447:6;36443:14;36436:58;36528:12;36523:2;36515:6;36511:15;36504:37;36319:229;:::o;36554:366::-;36696:3;36717:67;36781:2;36776:3;36717:67;:::i;:::-;36710:74;;36793:93;36882:3;36793:93;:::i;:::-;36911:2;36906:3;36902:12;36895:19;;36554:366;;;:::o;36926:419::-;37092:4;37130:2;37119:9;37115:18;37107:26;;37179:9;37173:4;37169:20;37165:1;37154:9;37150:17;37143:47;37207:131;37333:4;37207:131;:::i;:::-;37199:139;;36926:419;;;:::o;37351:171::-;37390:3;37413:24;37431:5;37413:24;:::i;:::-;37404:33;;37459:4;37452:5;37449:15;37446:41;;;37467:18;;:::i;:::-;37446:41;37514:1;37507:5;37503:13;37496:20;;37351:171;;;:::o;38565:98::-;38616:6;38650:5;38644:12;38634:22;;38565:98;;;:::o;38669:168::-;38752:11;38786:6;38781:3;38774:19;38826:4;38821:3;38817:14;38802:29;;38669:168;;;;:::o;38843:360::-;38929:3;38957:38;38989:5;38957:38;:::i;:::-;39011:70;39074:6;39069:3;39011:70;:::i;:::-;39004:77;;39090:52;39135:6;39130:3;39123:4;39116:5;39112:16;39090:52;:::i;:::-;39167:29;39189:6;39167:29;:::i;:::-;39162:3;39158:39;39151:46;;38933:270;38843:360;;;;:::o;39209:640::-;39404:4;39442:3;39431:9;39427:19;39419:27;;39456:71;39524:1;39513:9;39509:17;39500:6;39456:71;:::i;:::-;39537:72;39605:2;39594:9;39590:18;39581:6;39537:72;:::i;:::-;39619;39687:2;39676:9;39672:18;39663:6;39619:72;:::i;:::-;39738:9;39732:4;39728:20;39723:2;39712:9;39708:18;39701:48;39766:76;39837:4;39828:6;39766:76;:::i;:::-;39758:84;;39209:640;;;;;;;:::o;39855:141::-;39911:5;39942:6;39936:13;39927:22;;39958:32;39984:5;39958:32;:::i;:::-;39855:141;;;;:::o;40002:349::-;40071:6;40120:2;40108:9;40099:7;40095:23;40091:32;40088:119;;;40126:79;;:::i;:::-;40088:119;40246:1;40271:63;40326:7;40317:6;40306:9;40302:22;40271:63;:::i;:::-;40261:73;;40217:127;40002:349;;;;:::o;40357:180::-;40405:77;40402:1;40395:88;40502:4;40499:1;40492:15;40526:4;40523:1;40516:15;40543:185;40583:1;40600:20;40618:1;40600:20;:::i;:::-;40595:25;;40634:20;40652:1;40634:20;:::i;:::-;40629:25;;40673:1;40663:35;;40678:18;;:::i;:::-;40663:35;40720:1;40717;40713:9;40708:14;;40543:185;;;;:::o;40734:191::-;40774:4;40794:20;40812:1;40794:20;:::i;:::-;40789:25;;40828:20;40846:1;40828:20;:::i;:::-;40823:25;;40867:1;40864;40861:8;40858:34;;;40872:18;;:::i;:::-;40858:34;40917:1;40914;40910:9;40902:17;;40734:191;;;;:::o;40931:176::-;40963:1;40980:20;40998:1;40980:20;:::i;:::-;40975:25;;41014:20;41032:1;41014:20;:::i;:::-;41009:25;;41053:1;41043:35;;41058:18;;:::i;:::-;41043:35;41099:1;41096;41092:9;41087:14;;40931:176;;;;:::o;41113:180::-;41161:77;41158:1;41151:88;41258:4;41255:1;41248:15;41282:4;41279:1;41272:15;41299:220;41439:34;41435:1;41427:6;41423:14;41416:58;41508:3;41503:2;41495:6;41491:15;41484:28;41299:220;:::o;41525:366::-;41667:3;41688:67;41752:2;41747:3;41688:67;:::i;:::-;41681:74;;41764:93;41853:3;41764:93;:::i;:::-;41882:2;41877:3;41873:12;41866:19;;41525:366;;;:::o;41897:419::-;42063:4;42101:2;42090:9;42086:18;42078:26;;42150:9;42144:4;42140:20;42136:1;42125:9;42121:17;42114:47;42178:131;42304:4;42178:131;:::i;:::-;42170:139;;41897:419;;;:::o;42322:179::-;42462:31;42458:1;42450:6;42446:14;42439:55;42322:179;:::o;42507:366::-;42649:3;42670:67;42734:2;42729:3;42670:67;:::i;:::-;42663:74;;42746:93;42835:3;42746:93;:::i;:::-;42864:2;42859:3;42855:12;42848:19;;42507:366;;;:::o;42879:419::-;43045:4;43083:2;43072:9;43068:18;43060:26;;43132:9;43126:4;43122:20;43118:1;43107:9;43103:17;43096:47;43160:131;43286:4;43160:131;:::i;:::-;43152:139;;42879:419;;;:::o;43304:227::-;43444:34;43440:1;43432:6;43428:14;43421:58;43513:10;43508:2;43500:6;43496:15;43489:35;43304:227;:::o;43537:366::-;43679:3;43700:67;43764:2;43759:3;43700:67;:::i;:::-;43693:74;;43776:93;43865:3;43776:93;:::i;:::-;43894:2;43889:3;43885:12;43878:19;;43537:366;;;:::o;43909:419::-;44075:4;44113:2;44102:9;44098:18;44090:26;;44162:9;44156:4;44152:20;44148:1;44137:9;44133:17;44126:47;44190:131;44316:4;44190:131;:::i;:::-;44182:139;;43909:419;;;:::o;44334:118::-;44371:7;44411:34;44404:5;44400:46;44389:57;;44334:118;;;:::o;44458:273::-;44498:3;44517:20;44535:1;44517:20;:::i;:::-;44512:25;;44551:20;44569:1;44551:20;:::i;:::-;44546:25;;44673:1;44637:34;44633:42;44630:1;44627:49;44624:75;;;44679:18;;:::i;:::-;44624:75;44723:1;44720;44716:9;44709:16;;44458:273;;;;:::o

Swarm Source

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