ETH Price: $2,967.79 (-1.49%)
Gas: 3 Gwei

Token

Abnormal Apes (ABNORMAPES)
 

Overview

Max Total Supply

8,485 ABNORMAPES

Holders

1,861

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
2ez4me.eth
Balance
3 ABNORMAPES
0x3a4894f709544e5a3289d55c3b7f988839362712
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:
AbnormalApes

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

    struct StakingInfo {
        bool staked;
        bool usedForMint;
        uint duration;
    }

    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;

    string internal uri;

    // 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;

    mapping(uint => StakingInfo) public _stakedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _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 && tokenId > 0;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

contract AbnormalApes is ERC721A, Ownable {

    constructor() ERC721A("Abnormal Apes", "ABNORMAPES") {}

    // ---------------------------------------------------------------------------------------------
    // CONSTANTS
    // ---------------------------------------------------------------------------------------------

    uint256 private constant MAX_SUPPLY = 7777;     

    bool public saleStatus;
    uint256 public price;  
    uint256 public freeMintPrice = 0;  
    uint256 public maxPerTx = 10;    
    uint256 public maxPerWallet = 21;  
    uint256 public maxFreePerTx = 1;    
    uint256 public maxFreePerWallet = 1;  

 
    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public _minted; 

    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

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

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

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }
    
    function setMaxPerTx(uint amount) external onlyOwner {
        maxPerTx = amount;
    }
    
    function setMaxPerWallet(uint amount) external onlyOwner {
        maxPerWallet = amount;
    }

    function setMaxFreePerTx(uint amount) external onlyOwner {
        maxFreePerTx = amount;
    }
    
    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = amount;
    }

    function setBaseURI(string calldata _uri) external onlyOwner {
        uri = _uri;
    }

    // ---------------------------------------------------------------------------------------------
    // PUBLIC SETTERS
    // ---------------------------------------------------------------------------------------------

    function ownerMint(uint256 amount) external onlyOwner {
        require(currentIndex <= MAX_SUPPLY + 1, "NOT_ALLOWED!");
        _safeMint(msg.sender, amount);
    }

    function mint(uint amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        if(_minted[msg.sender] < maxFreePerWallet){
            require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
            require(_minted[msg.sender] + amount <= maxFreePerWallet, "EXCEEDS_MAX_PER_WALLET!");
            require(msg.value == freeMintPrice * amount, "INCORRECT_AMOUNT!");
            _safeMint(msg.sender, amount);
            _minted[msg.sender] += amount;
        }
        else{
            require(amount * price == msg.value, "NOT_ENOUGH_MONEY!");
            require(amount <= maxPerTx, "EXCEEDS_MAX_PER_TX!");
            require(currentIndex <= MAX_SUPPLY + 1, "NOT_ENOUGH_TOKENS!");
            require(_minted[msg.sender] + amount <= maxPerWallet, "EXCEEDS_MAX_PER_WALLET!");
            _safeMint(msg.sender, amount);
            _minted[msg.sender] += amount;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_stakedTokens","outputs":[{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"bool","name":"usedForMint","type":"bool"},{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016000556000600b55600a600c556015600d556001600e556001600f553480156200002f57600080fd5b506040518060400160405280600d81526020017f41626e6f726d616c2041706573000000000000000000000000000000000000008152506040518060400160405280600a81526020017f41424e4f524d41504553000000000000000000000000000000000000000000008152508160019080519060200190620000b4929190620001c4565b508060029080519060200190620000cd929190620001c4565b505050620000f0620000e4620000f660201b60201c565b620000fe60201b60201c565b620002d9565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d290620002a3565b90600052602060002090601f016020900481019282620001f6576000855562000242565b82601f106200021157805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024157825182559160200191906001019062000224565b5b50905062000251919062000255565b5090565b5b808211156200027057600081600090555060010162000256565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d262000274565b5b50919050565b614a4880620002e96000396000f3fe6080604052600436106102255760003560e01c80637dc949b211610123578063b88d4fde116100ab578063f19e75d41161006f578063f19e75d41461080a578063f2fde38b14610833578063f737c47a1461085c578063f9020e3314610887578063f968adbe146108b257610225565b8063b88d4fde14610715578063c6f6f2161461073e578063c87b56dd14610767578063e268e4d3146107a4578063e985e9c5146107cd57610225565b806395d89b41116100f257806395d89b411461064f578063a035b1fe1461067a578063a0712d68146106a5578063a22cb465146106c1578063a7027357146106ea57610225565b80637dc949b2146105935780637de77ecc146105be5780638da5cb5b146105fb57806391b7f5ed1461062657610225565b806340f070a8116101b157806355f804b31161017557806355f804b3146104b05780636352211e146104d95780636d7c4a4b1461051657806370a082311461053f578063715018a61461057c57610225565b806340f070a8146103df57806342842e0e14610408578063453c2310146104315780634f6ccce71461045c578063502b33af1461049957610225565b806318160ddd116101f857806318160ddd146102f8578063204f490c1461032357806323b872dd146103625780632f745c591461038b5780633ccfd60b146103c857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131d6565b6108dd565b60405161025e919061321e565b60405180910390f35b34801561027357600080fd5b5061027c610a27565b60405161028991906132d2565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061332a565b610ab9565b6040516102c69190613398565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906133df565b610b3e565b005b34801561030457600080fd5b5061030d610c57565b60405161031a919061342e565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061332a565b610c6d565b60405161035993929190613449565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613480565b610cb1565b005b34801561039757600080fd5b506103b260048036038101906103ad91906133df565b610d25565b6040516103bf919061342e565b60405180910390f35b3480156103d457600080fd5b506103dd610f17565b005b3480156103eb57600080fd5b506104066004803603810190610401919061332a565b610fdc565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613480565b611062565b005b34801561043d57600080fd5b506104466110e6565b604051610453919061342e565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e919061332a565b6110ec565b604051610490919061342e565b60405180910390f35b3480156104a557600080fd5b506104ae61113f565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613538565b6111e7565b005b3480156104e557600080fd5b5061050060048036038101906104fb919061332a565b611279565b60405161050d9190613398565b60405180910390f35b34801561052257600080fd5b5061053d6004803603810190610538919061332a565b61128f565b005b34801561054b57600080fd5b5061056660048036038101906105619190613585565b611315565b604051610573919061342e565b60405180910390f35b34801561058857600080fd5b506105916113fe565b005b34801561059f57600080fd5b506105a8611486565b6040516105b5919061342e565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613585565b61148c565b6040516105f2919061342e565b60405180910390f35b34801561060757600080fd5b506106106114a4565b60405161061d9190613398565b60405180910390f35b34801561063257600080fd5b5061064d6004803603810190610648919061332a565b6114ce565b005b34801561065b57600080fd5b50610664611554565b60405161067191906132d2565b60405180910390f35b34801561068657600080fd5b5061068f6115e6565b60405161069c919061342e565b60405180910390f35b6106bf60048036038101906106ba919061332a565b6115ec565b005b3480156106cd57600080fd5b506106e860048036038101906106e391906135de565b6119e6565b005b3480156106f657600080fd5b506106ff611b67565b60405161070c919061342e565b60405180910390f35b34801561072157600080fd5b5061073c6004803603810190610737919061374e565b611b6d565b005b34801561074a57600080fd5b506107656004803603810190610760919061332a565b611c2d565b005b34801561077357600080fd5b5061078e6004803603810190610789919061332a565b611cb3565b60405161079b91906132d2565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c6919061332a565b611d5b565b005b3480156107d957600080fd5b506107f460048036038101906107ef91906137d1565b611de1565b604051610801919061321e565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c919061332a565b611e75565b005b34801561083f57600080fd5b5061085a60048036038101906108559190613585565b611f51565b005b34801561086857600080fd5b50610871612049565b60405161087e919061342e565b60405180910390f35b34801561089357600080fd5b5061089c61204f565b6040516108a9919061321e565b60405180910390f35b3480156108be57600080fd5b506108c7612062565b6040516108d4919061342e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f82612068565b5b9050919050565b606060018054610a3690613840565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290613840565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac4826120d2565b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa906138e4565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4982611279565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613976565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd96120eb565b73ffffffffffffffffffffffffffffffffffffffff161480610c085750610c0781610c026120eb565b611de1565b5b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613a08565b60405180910390fd5b610c528383836120f3565b505050565b60006001600054610c689190613a57565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613ad7565b60405180910390fd5b610d208383836121a5565b505050565b6000610d3083611315565b8210610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613b69565b60405180910390fd5b6000610d7b610c57565b905060008060005b83811015610ed5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec75786841415610ebe578195505050505050610f11565b83806001019450505b508080600101915050610d83565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613bfb565b60405180910390fd5b92915050565b610f1f6120eb565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613c67565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fd9573d6000803e3d6000fd5b50565b610fe46120eb565b73ffffffffffffffffffffffffffffffffffffffff166110026114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613c67565b60405180910390fd5b80600e8190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613ad7565b60405180910390fd5b6110e183838360405180602001604052806000815250611b6d565b505050565b600d5481565b60006110f6610c57565b8210611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613cf9565b60405180910390fd5b819050919050565b6111476120eb565b73ffffffffffffffffffffffffffffffffffffffff166111656114a4565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613c67565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b6111ef6120eb565b73ffffffffffffffffffffffffffffffffffffffff1661120d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613c67565b60405180910390fd5b81816003919061127492919061308d565b505050565b6000611284826126e5565b600001519050919050565b6112976120eb565b73ffffffffffffffffffffffffffffffffffffffff166112b56114a4565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613c67565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613d8b565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114066120eb565b73ffffffffffffffffffffffffffffffffffffffff166114246114a4565b73ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190613c67565b60405180910390fd5b611484600061287f565b565b600e5481565b60106020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d66120eb565b73ffffffffffffffffffffffffffffffffffffffff166114f46114a4565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613c67565b60405180910390fd5b80600a8190555050565b60606002805461156390613840565b80601f016020809104026020016040519081016040528092919081815260200182805461158f90613840565b80156115dc5780601f106115b1576101008083540402835291602001916115dc565b820191906000526020600020905b8154815290600101906020018083116115bf57829003601f168201915b5050505050905090565b600a5481565b600960149054906101000a900460ff1661163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613df7565b60405180910390fd5b600f54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561180c57600e548111156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090613e63565b60405180910390fd5b600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117179190613e83565b1115611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90613f25565b60405180910390fd5b80600b546117669190613f45565b34146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90613feb565b60405180910390fd5b6117b13382612945565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118009190613e83565b925050819055506119e3565b34600a548261181b9190613f45565b1461185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614057565b60405180910390fd5b600c548111156118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790613e63565b60405180910390fd5b6001611e616118af9190613e83565b60005411156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea906140c3565b60405180910390fd5b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119419190613e83565b1115611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613f25565b60405180910390fd5b61198c3382612945565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119db9190613e83565b925050819055505b50565b6119ee6120eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a539061412f565b60405180910390fd5b8060076000611a696120eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b166120eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5b919061321e565b60405180910390a35050565b600f5481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890613ad7565b60405180910390fd5b611bdc8484846121a5565b611be884848484612963565b611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906141c1565b60405180910390fd5b50505050565b611c356120eb565b73ffffffffffffffffffffffffffffffffffffffff16611c536114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613c67565b60405180910390fd5b80600c8190555050565b6060611cbe826120d2565b611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490614253565b60405180910390fd5b6000611d07612aeb565b9050600081511415611d285760405180602001604052806000815250611d53565b80611d3284612b7d565b604051602001611d439291906142fb565b6040516020818303038152906040525b915050919050565b611d636120eb565b73ffffffffffffffffffffffffffffffffffffffff16611d816114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce90613c67565b60405180910390fd5b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e7d6120eb565b73ffffffffffffffffffffffffffffffffffffffff16611e9b6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890613c67565b60405180910390fd5b6001611e61611f009190613e83565b6000541115611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90614376565b60405180910390fd5b611f4e3382612945565b50565b611f596120eb565b73ffffffffffffffffffffffffffffffffffffffff16611f776114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490613c67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490614408565b60405180910390fd5b6120468161287f565b50565b600b5481565b600960149054906101000a900460ff1681565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156120e45750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121b0826126e5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121d76120eb565b73ffffffffffffffffffffffffffffffffffffffff16148061223357506121fc6120eb565b73ffffffffffffffffffffffffffffffffffffffff1661221b84610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061224f575061224e82600001516122496120eb565b611de1565b5b905080612291576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122889061449a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa9061452c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a906145be565b60405180910390fd5b6123808585856001612cde565b61239060008484600001516120f3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612675576125d4816120d2565b156126745782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126de8585856001612ce4565b5050505050565b6126ed613113565b6126f6826120d2565b612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90614650565b60405180910390fd5b60008290505b6000811061283e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461282f57809250505061287a565b5080806001900391505061273b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612871906146e2565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61295f828260405180602001604052806000815250612cea565b5050565b60006129848473ffffffffffffffffffffffffffffffffffffffff16612cfc565b15612ade578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129ad6120eb565b8786866040518563ffffffff1660e01b81526004016129cf9493929190614757565b6020604051808303816000875af1925050508015612a0b57506040513d601f19601f82011682018060405250810190612a0891906147b8565b60015b612a8e573d8060008114612a3b576040519150601f19603f3d011682016040523d82523d6000602084013e612a40565b606091505b50600081511415612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d906141c1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ae3565b600190505b949350505050565b606060038054612afa90613840565b80601f0160208091040260200160405190810160405280929190818152602001828054612b2690613840565b8015612b735780601f10612b4857610100808354040283529160200191612b73565b820191906000526020600020905b815481529060010190602001808311612b5657829003601f168201915b5050505050905090565b60606000821415612bc5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cd9565b600082905060005b60008214612bf7578080612be0906147e5565b915050600a82612bf0919061485d565b9150612bcd565b60008167ffffffffffffffff811115612c1357612c12613623565b5b6040519080825280601f01601f191660200182016040528015612c455781602001600182028036833780820191505090505b5090505b60008514612cd257600182612c5e9190613a57565b9150600a85612c6d919061488e565b6030612c799190613e83565b60f81b818381518110612c8f57612c8e6148bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ccb919061485d565b9450612c49565b8093505050505b919050565b50505050565b50505050565b612cf78383836001612d0f565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7c90614960565b60405180910390fd5b6000841415612dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc0906149f2565b60405180910390fd5b612dd66000868387612cde565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561307057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561305b5761301b6000888488612963565b61305a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613051906141c1565b60405180910390fd5b5b81806001019250508080600101915050612fa4565b5080600081905550506130866000868387612ce4565b5050505050565b82805461309990613840565b90600052602060002090601f0160209004810192826130bb5760008555613102565b82601f106130d457803560ff1916838001178555613102565b82800160010185558215613102579182015b828111156131015782358255916020019190600101906130e6565b5b50905061310f919061314d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561316657600081600090555060010161314e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131b38161317e565b81146131be57600080fd5b50565b6000813590506131d0816131aa565b92915050565b6000602082840312156131ec576131eb613174565b5b60006131fa848285016131c1565b91505092915050565b60008115159050919050565b61321881613203565b82525050565b6000602082019050613233600083018461320f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613273578082015181840152602081019050613258565b83811115613282576000848401525b50505050565b6000601f19601f8301169050919050565b60006132a482613239565b6132ae8185613244565b93506132be818560208601613255565b6132c781613288565b840191505092915050565b600060208201905081810360008301526132ec8184613299565b905092915050565b6000819050919050565b613307816132f4565b811461331257600080fd5b50565b600081359050613324816132fe565b92915050565b6000602082840312156133405761333f613174565b5b600061334e84828501613315565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338282613357565b9050919050565b61339281613377565b82525050565b60006020820190506133ad6000830184613389565b92915050565b6133bc81613377565b81146133c757600080fd5b50565b6000813590506133d9816133b3565b92915050565b600080604083850312156133f6576133f5613174565b5b6000613404858286016133ca565b925050602061341585828601613315565b9150509250929050565b613428816132f4565b82525050565b6000602082019050613443600083018461341f565b92915050565b600060608201905061345e600083018661320f565b61346b602083018561320f565b613478604083018461341f565b949350505050565b60008060006060848603121561349957613498613174565b5b60006134a7868287016133ca565b93505060206134b8868287016133ca565b92505060406134c986828701613315565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126134f8576134f76134d3565b5b8235905067ffffffffffffffff811115613515576135146134d8565b5b602083019150836001820283011115613531576135306134dd565b5b9250929050565b6000806020838503121561354f5761354e613174565b5b600083013567ffffffffffffffff81111561356d5761356c613179565b5b613579858286016134e2565b92509250509250929050565b60006020828403121561359b5761359a613174565b5b60006135a9848285016133ca565b91505092915050565b6135bb81613203565b81146135c657600080fd5b50565b6000813590506135d8816135b2565b92915050565b600080604083850312156135f5576135f4613174565b5b6000613603858286016133ca565b9250506020613614858286016135c9565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61365b82613288565b810181811067ffffffffffffffff8211171561367a57613679613623565b5b80604052505050565b600061368d61316a565b90506136998282613652565b919050565b600067ffffffffffffffff8211156136b9576136b8613623565b5b6136c282613288565b9050602081019050919050565b82818337600083830152505050565b60006136f16136ec8461369e565b613683565b90508281526020810184848401111561370d5761370c61361e565b5b6137188482856136cf565b509392505050565b600082601f830112613735576137346134d3565b5b81356137458482602086016136de565b91505092915050565b6000806000806080858703121561376857613767613174565b5b6000613776878288016133ca565b9450506020613787878288016133ca565b935050604061379887828801613315565b925050606085013567ffffffffffffffff8111156137b9576137b8613179565b5b6137c587828801613720565b91505092959194509250565b600080604083850312156137e8576137e7613174565b5b60006137f6858286016133ca565b9250506020613807858286016133ca565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061385857607f821691505b6020821081141561386c5761386b613811565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006138ce602d83613244565b91506138d982613872565b604082019050919050565b600060208201905081810360008301526138fd816138c1565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613960602283613244565b915061396b82613904565b604082019050919050565b6000602082019050818103600083015261398f81613953565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006139f2603983613244565b91506139fd82613996565b604082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a62826132f4565b9150613a6d836132f4565b925082821015613a8057613a7f613a28565b5b828203905092915050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000613ac1600d83613244565b9150613acc82613a8b565b602082019050919050565b60006020820190508181036000830152613af081613ab4565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b53602283613244565b9150613b5e82613af7565b604082019050919050565b60006020820190508181036000830152613b8281613b46565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613be5602e83613244565b9150613bf082613b89565b604082019050919050565b60006020820190508181036000830152613c1481613bd8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c51602083613244565b9150613c5c82613c1b565b602082019050919050565b60006020820190508181036000830152613c8081613c44565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ce3602383613244565b9150613cee82613c87565b604082019050919050565b60006020820190508181036000830152613d1281613cd6565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613d75602b83613244565b9150613d8082613d19565b604082019050919050565b60006020820190508181036000830152613da481613d68565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613de1601083613244565b9150613dec82613dab565b602082019050919050565b60006020820190508181036000830152613e1081613dd4565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000613e4d601383613244565b9150613e5882613e17565b602082019050919050565b60006020820190508181036000830152613e7c81613e40565b9050919050565b6000613e8e826132f4565b9150613e99836132f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ece57613ecd613a28565b5b828201905092915050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000613f0f601783613244565b9150613f1a82613ed9565b602082019050919050565b60006020820190508181036000830152613f3e81613f02565b9050919050565b6000613f50826132f4565b9150613f5b836132f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f9457613f93613a28565b5b828202905092915050565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b6000613fd5601183613244565b9150613fe082613f9f565b602082019050919050565b6000602082019050818103600083015261400481613fc8565b9050919050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b6000614041601183613244565b915061404c8261400b565b602082019050919050565b6000602082019050818103600083015261407081614034565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b60006140ad601283613244565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614119601a83613244565b9150614124826140e3565b602082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006141ab603383613244565b91506141b68261414f565b604082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061423d602f83613244565b9150614248826141e1565b604082019050919050565b6000602082019050818103600083015261426c81614230565b9050919050565b600081905092915050565b600061428982613239565b6142938185614273565b93506142a3818560208601613255565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006142e5600583614273565b91506142f0826142af565b600582019050919050565b6000614307828561427e565b9150614313828461427e565b915061431e826142d8565b91508190509392505050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b6000614360600c83613244565b915061436b8261432a565b602082019050919050565b6000602082019050818103600083015261438f81614353565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143f2602683613244565b91506143fd82614396565b604082019050919050565b60006020820190508181036000830152614421816143e5565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614484603283613244565b915061448f82614428565b604082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614516602683613244565b9150614521826144ba565b604082019050919050565b6000602082019050818103600083015261454581614509565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145a8602583613244565b91506145b38261454c565b604082019050919050565b600060208201905081810360008301526145d78161459b565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061463a602a83613244565b9150614645826145de565b604082019050919050565b600060208201905081810360008301526146698161462d565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006146cc602f83613244565b91506146d782614670565b604082019050919050565b600060208201905081810360008301526146fb816146bf565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061472982614702565b614733818561470d565b9350614743818560208601613255565b61474c81613288565b840191505092915050565b600060808201905061476c6000830187613389565b6147796020830186613389565b614786604083018561341f565b8181036060830152614798818461471e565b905095945050505050565b6000815190506147b2816131aa565b92915050565b6000602082840312156147ce576147cd613174565b5b60006147dc848285016147a3565b91505092915050565b60006147f0826132f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561482357614822613a28565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614868826132f4565b9150614873836132f4565b9250826148835761488261482e565b5b828204905092915050565b6000614899826132f4565b91506148a4836132f4565b9250826148b4576148b361482e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061494a602183613244565b9150614955826148ee565b604082019050919050565b600060208201905081810360008301526149798161493d565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006149dc602883613244565b91506149e782614980565b604082019050919050565b60006020820190508181036000830152614a0b816149cf565b905091905056fea2646970667358221220e911fdc31907afb326361c4d50cb5e602d032d17b063ecb0828b2f97cfb22a4564736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637dc949b211610123578063b88d4fde116100ab578063f19e75d41161006f578063f19e75d41461080a578063f2fde38b14610833578063f737c47a1461085c578063f9020e3314610887578063f968adbe146108b257610225565b8063b88d4fde14610715578063c6f6f2161461073e578063c87b56dd14610767578063e268e4d3146107a4578063e985e9c5146107cd57610225565b806395d89b41116100f257806395d89b411461064f578063a035b1fe1461067a578063a0712d68146106a5578063a22cb465146106c1578063a7027357146106ea57610225565b80637dc949b2146105935780637de77ecc146105be5780638da5cb5b146105fb57806391b7f5ed1461062657610225565b806340f070a8116101b157806355f804b31161017557806355f804b3146104b05780636352211e146104d95780636d7c4a4b1461051657806370a082311461053f578063715018a61461057c57610225565b806340f070a8146103df57806342842e0e14610408578063453c2310146104315780634f6ccce71461045c578063502b33af1461049957610225565b806318160ddd116101f857806318160ddd146102f8578063204f490c1461032357806323b872dd146103625780632f745c591461038b5780633ccfd60b146103c857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131d6565b6108dd565b60405161025e919061321e565b60405180910390f35b34801561027357600080fd5b5061027c610a27565b60405161028991906132d2565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061332a565b610ab9565b6040516102c69190613398565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906133df565b610b3e565b005b34801561030457600080fd5b5061030d610c57565b60405161031a919061342e565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061332a565b610c6d565b60405161035993929190613449565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613480565b610cb1565b005b34801561039757600080fd5b506103b260048036038101906103ad91906133df565b610d25565b6040516103bf919061342e565b60405180910390f35b3480156103d457600080fd5b506103dd610f17565b005b3480156103eb57600080fd5b506104066004803603810190610401919061332a565b610fdc565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613480565b611062565b005b34801561043d57600080fd5b506104466110e6565b604051610453919061342e565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e919061332a565b6110ec565b604051610490919061342e565b60405180910390f35b3480156104a557600080fd5b506104ae61113f565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613538565b6111e7565b005b3480156104e557600080fd5b5061050060048036038101906104fb919061332a565b611279565b60405161050d9190613398565b60405180910390f35b34801561052257600080fd5b5061053d6004803603810190610538919061332a565b61128f565b005b34801561054b57600080fd5b5061056660048036038101906105619190613585565b611315565b604051610573919061342e565b60405180910390f35b34801561058857600080fd5b506105916113fe565b005b34801561059f57600080fd5b506105a8611486565b6040516105b5919061342e565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613585565b61148c565b6040516105f2919061342e565b60405180910390f35b34801561060757600080fd5b506106106114a4565b60405161061d9190613398565b60405180910390f35b34801561063257600080fd5b5061064d6004803603810190610648919061332a565b6114ce565b005b34801561065b57600080fd5b50610664611554565b60405161067191906132d2565b60405180910390f35b34801561068657600080fd5b5061068f6115e6565b60405161069c919061342e565b60405180910390f35b6106bf60048036038101906106ba919061332a565b6115ec565b005b3480156106cd57600080fd5b506106e860048036038101906106e391906135de565b6119e6565b005b3480156106f657600080fd5b506106ff611b67565b60405161070c919061342e565b60405180910390f35b34801561072157600080fd5b5061073c6004803603810190610737919061374e565b611b6d565b005b34801561074a57600080fd5b506107656004803603810190610760919061332a565b611c2d565b005b34801561077357600080fd5b5061078e6004803603810190610789919061332a565b611cb3565b60405161079b91906132d2565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c6919061332a565b611d5b565b005b3480156107d957600080fd5b506107f460048036038101906107ef91906137d1565b611de1565b604051610801919061321e565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c919061332a565b611e75565b005b34801561083f57600080fd5b5061085a60048036038101906108559190613585565b611f51565b005b34801561086857600080fd5b50610871612049565b60405161087e919061342e565b60405180910390f35b34801561089357600080fd5b5061089c61204f565b6040516108a9919061321e565b60405180910390f35b3480156108be57600080fd5b506108c7612062565b6040516108d4919061342e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f82612068565b5b9050919050565b606060018054610a3690613840565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290613840565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac4826120d2565b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa906138e4565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4982611279565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613976565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd96120eb565b73ffffffffffffffffffffffffffffffffffffffff161480610c085750610c0781610c026120eb565b611de1565b5b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613a08565b60405180910390fd5b610c528383836120f3565b505050565b60006001600054610c689190613a57565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613ad7565b60405180910390fd5b610d208383836121a5565b505050565b6000610d3083611315565b8210610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613b69565b60405180910390fd5b6000610d7b610c57565b905060008060005b83811015610ed5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec75786841415610ebe578195505050505050610f11565b83806001019450505b508080600101915050610d83565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613bfb565b60405180910390fd5b92915050565b610f1f6120eb565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613c67565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fd9573d6000803e3d6000fd5b50565b610fe46120eb565b73ffffffffffffffffffffffffffffffffffffffff166110026114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613c67565b60405180910390fd5b80600e8190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613ad7565b60405180910390fd5b6110e183838360405180602001604052806000815250611b6d565b505050565b600d5481565b60006110f6610c57565b8210611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613cf9565b60405180910390fd5b819050919050565b6111476120eb565b73ffffffffffffffffffffffffffffffffffffffff166111656114a4565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613c67565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b6111ef6120eb565b73ffffffffffffffffffffffffffffffffffffffff1661120d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613c67565b60405180910390fd5b81816003919061127492919061308d565b505050565b6000611284826126e5565b600001519050919050565b6112976120eb565b73ffffffffffffffffffffffffffffffffffffffff166112b56114a4565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613c67565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613d8b565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114066120eb565b73ffffffffffffffffffffffffffffffffffffffff166114246114a4565b73ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190613c67565b60405180910390fd5b611484600061287f565b565b600e5481565b60106020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d66120eb565b73ffffffffffffffffffffffffffffffffffffffff166114f46114a4565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613c67565b60405180910390fd5b80600a8190555050565b60606002805461156390613840565b80601f016020809104026020016040519081016040528092919081815260200182805461158f90613840565b80156115dc5780601f106115b1576101008083540402835291602001916115dc565b820191906000526020600020905b8154815290600101906020018083116115bf57829003601f168201915b5050505050905090565b600a5481565b600960149054906101000a900460ff1661163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613df7565b60405180910390fd5b600f54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561180c57600e548111156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090613e63565b60405180910390fd5b600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117179190613e83565b1115611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90613f25565b60405180910390fd5b80600b546117669190613f45565b34146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90613feb565b60405180910390fd5b6117b13382612945565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118009190613e83565b925050819055506119e3565b34600a548261181b9190613f45565b1461185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614057565b60405180910390fd5b600c548111156118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790613e63565b60405180910390fd5b6001611e616118af9190613e83565b60005411156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea906140c3565b60405180910390fd5b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119419190613e83565b1115611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613f25565b60405180910390fd5b61198c3382612945565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119db9190613e83565b925050819055505b50565b6119ee6120eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a539061412f565b60405180910390fd5b8060076000611a696120eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b166120eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5b919061321e565b60405180910390a35050565b600f5481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890613ad7565b60405180910390fd5b611bdc8484846121a5565b611be884848484612963565b611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906141c1565b60405180910390fd5b50505050565b611c356120eb565b73ffffffffffffffffffffffffffffffffffffffff16611c536114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613c67565b60405180910390fd5b80600c8190555050565b6060611cbe826120d2565b611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490614253565b60405180910390fd5b6000611d07612aeb565b9050600081511415611d285760405180602001604052806000815250611d53565b80611d3284612b7d565b604051602001611d439291906142fb565b6040516020818303038152906040525b915050919050565b611d636120eb565b73ffffffffffffffffffffffffffffffffffffffff16611d816114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce90613c67565b60405180910390fd5b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e7d6120eb565b73ffffffffffffffffffffffffffffffffffffffff16611e9b6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890613c67565b60405180910390fd5b6001611e61611f009190613e83565b6000541115611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90614376565b60405180910390fd5b611f4e3382612945565b50565b611f596120eb565b73ffffffffffffffffffffffffffffffffffffffff16611f776114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490613c67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490614408565b60405180910390fd5b6120468161287f565b50565b600b5481565b600960149054906101000a900460ff1681565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156120e45750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121b0826126e5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121d76120eb565b73ffffffffffffffffffffffffffffffffffffffff16148061223357506121fc6120eb565b73ffffffffffffffffffffffffffffffffffffffff1661221b84610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061224f575061224e82600001516122496120eb565b611de1565b5b905080612291576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122889061449a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa9061452c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a906145be565b60405180910390fd5b6123808585856001612cde565b61239060008484600001516120f3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612675576125d4816120d2565b156126745782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126de8585856001612ce4565b5050505050565b6126ed613113565b6126f6826120d2565b612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90614650565b60405180910390fd5b60008290505b6000811061283e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461282f57809250505061287a565b5080806001900391505061273b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612871906146e2565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61295f828260405180602001604052806000815250612cea565b5050565b60006129848473ffffffffffffffffffffffffffffffffffffffff16612cfc565b15612ade578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129ad6120eb565b8786866040518563ffffffff1660e01b81526004016129cf9493929190614757565b6020604051808303816000875af1925050508015612a0b57506040513d601f19601f82011682018060405250810190612a0891906147b8565b60015b612a8e573d8060008114612a3b576040519150601f19603f3d011682016040523d82523d6000602084013e612a40565b606091505b50600081511415612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d906141c1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ae3565b600190505b949350505050565b606060038054612afa90613840565b80601f0160208091040260200160405190810160405280929190818152602001828054612b2690613840565b8015612b735780601f10612b4857610100808354040283529160200191612b73565b820191906000526020600020905b815481529060010190602001808311612b5657829003601f168201915b5050505050905090565b60606000821415612bc5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cd9565b600082905060005b60008214612bf7578080612be0906147e5565b915050600a82612bf0919061485d565b9150612bcd565b60008167ffffffffffffffff811115612c1357612c12613623565b5b6040519080825280601f01601f191660200182016040528015612c455781602001600182028036833780820191505090505b5090505b60008514612cd257600182612c5e9190613a57565b9150600a85612c6d919061488e565b6030612c799190613e83565b60f81b818381518110612c8f57612c8e6148bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ccb919061485d565b9450612c49565b8093505050505b919050565b50505050565b50505050565b612cf78383836001612d0f565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7c90614960565b60405180910390fd5b6000841415612dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc0906149f2565b60405180910390fd5b612dd66000868387612cde565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561307057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561305b5761301b6000888488612963565b61305a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613051906141c1565b60405180910390fd5b5b81806001019250508080600101915050612fa4565b5080600081905550506130866000868387612ce4565b5050505050565b82805461309990613840565b90600052602060002090601f0160209004810192826130bb5760008555613102565b82601f106130d457803560ff1916838001178555613102565b82800160010185558215613102579182015b828111156131015782358255916020019190600101906130e6565b5b50905061310f919061314d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561316657600081600090555060010161314e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131b38161317e565b81146131be57600080fd5b50565b6000813590506131d0816131aa565b92915050565b6000602082840312156131ec576131eb613174565b5b60006131fa848285016131c1565b91505092915050565b60008115159050919050565b61321881613203565b82525050565b6000602082019050613233600083018461320f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613273578082015181840152602081019050613258565b83811115613282576000848401525b50505050565b6000601f19601f8301169050919050565b60006132a482613239565b6132ae8185613244565b93506132be818560208601613255565b6132c781613288565b840191505092915050565b600060208201905081810360008301526132ec8184613299565b905092915050565b6000819050919050565b613307816132f4565b811461331257600080fd5b50565b600081359050613324816132fe565b92915050565b6000602082840312156133405761333f613174565b5b600061334e84828501613315565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338282613357565b9050919050565b61339281613377565b82525050565b60006020820190506133ad6000830184613389565b92915050565b6133bc81613377565b81146133c757600080fd5b50565b6000813590506133d9816133b3565b92915050565b600080604083850312156133f6576133f5613174565b5b6000613404858286016133ca565b925050602061341585828601613315565b9150509250929050565b613428816132f4565b82525050565b6000602082019050613443600083018461341f565b92915050565b600060608201905061345e600083018661320f565b61346b602083018561320f565b613478604083018461341f565b949350505050565b60008060006060848603121561349957613498613174565b5b60006134a7868287016133ca565b93505060206134b8868287016133ca565b92505060406134c986828701613315565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126134f8576134f76134d3565b5b8235905067ffffffffffffffff811115613515576135146134d8565b5b602083019150836001820283011115613531576135306134dd565b5b9250929050565b6000806020838503121561354f5761354e613174565b5b600083013567ffffffffffffffff81111561356d5761356c613179565b5b613579858286016134e2565b92509250509250929050565b60006020828403121561359b5761359a613174565b5b60006135a9848285016133ca565b91505092915050565b6135bb81613203565b81146135c657600080fd5b50565b6000813590506135d8816135b2565b92915050565b600080604083850312156135f5576135f4613174565b5b6000613603858286016133ca565b9250506020613614858286016135c9565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61365b82613288565b810181811067ffffffffffffffff8211171561367a57613679613623565b5b80604052505050565b600061368d61316a565b90506136998282613652565b919050565b600067ffffffffffffffff8211156136b9576136b8613623565b5b6136c282613288565b9050602081019050919050565b82818337600083830152505050565b60006136f16136ec8461369e565b613683565b90508281526020810184848401111561370d5761370c61361e565b5b6137188482856136cf565b509392505050565b600082601f830112613735576137346134d3565b5b81356137458482602086016136de565b91505092915050565b6000806000806080858703121561376857613767613174565b5b6000613776878288016133ca565b9450506020613787878288016133ca565b935050604061379887828801613315565b925050606085013567ffffffffffffffff8111156137b9576137b8613179565b5b6137c587828801613720565b91505092959194509250565b600080604083850312156137e8576137e7613174565b5b60006137f6858286016133ca565b9250506020613807858286016133ca565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061385857607f821691505b6020821081141561386c5761386b613811565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006138ce602d83613244565b91506138d982613872565b604082019050919050565b600060208201905081810360008301526138fd816138c1565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613960602283613244565b915061396b82613904565b604082019050919050565b6000602082019050818103600083015261398f81613953565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006139f2603983613244565b91506139fd82613996565b604082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a62826132f4565b9150613a6d836132f4565b925082821015613a8057613a7f613a28565b5b828203905092915050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000613ac1600d83613244565b9150613acc82613a8b565b602082019050919050565b60006020820190508181036000830152613af081613ab4565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b53602283613244565b9150613b5e82613af7565b604082019050919050565b60006020820190508181036000830152613b8281613b46565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613be5602e83613244565b9150613bf082613b89565b604082019050919050565b60006020820190508181036000830152613c1481613bd8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c51602083613244565b9150613c5c82613c1b565b602082019050919050565b60006020820190508181036000830152613c8081613c44565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ce3602383613244565b9150613cee82613c87565b604082019050919050565b60006020820190508181036000830152613d1281613cd6565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613d75602b83613244565b9150613d8082613d19565b604082019050919050565b60006020820190508181036000830152613da481613d68565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613de1601083613244565b9150613dec82613dab565b602082019050919050565b60006020820190508181036000830152613e1081613dd4565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000613e4d601383613244565b9150613e5882613e17565b602082019050919050565b60006020820190508181036000830152613e7c81613e40565b9050919050565b6000613e8e826132f4565b9150613e99836132f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ece57613ecd613a28565b5b828201905092915050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000613f0f601783613244565b9150613f1a82613ed9565b602082019050919050565b60006020820190508181036000830152613f3e81613f02565b9050919050565b6000613f50826132f4565b9150613f5b836132f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f9457613f93613a28565b5b828202905092915050565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b6000613fd5601183613244565b9150613fe082613f9f565b602082019050919050565b6000602082019050818103600083015261400481613fc8565b9050919050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b6000614041601183613244565b915061404c8261400b565b602082019050919050565b6000602082019050818103600083015261407081614034565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b60006140ad601283613244565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614119601a83613244565b9150614124826140e3565b602082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006141ab603383613244565b91506141b68261414f565b604082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061423d602f83613244565b9150614248826141e1565b604082019050919050565b6000602082019050818103600083015261426c81614230565b9050919050565b600081905092915050565b600061428982613239565b6142938185614273565b93506142a3818560208601613255565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006142e5600583614273565b91506142f0826142af565b600582019050919050565b6000614307828561427e565b9150614313828461427e565b915061431e826142d8565b91508190509392505050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b6000614360600c83613244565b915061436b8261432a565b602082019050919050565b6000602082019050818103600083015261438f81614353565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143f2602683613244565b91506143fd82614396565b604082019050919050565b60006020820190508181036000830152614421816143e5565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614484603283613244565b915061448f82614428565b604082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614516602683613244565b9150614521826144ba565b604082019050919050565b6000602082019050818103600083015261454581614509565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145a8602583613244565b91506145b38261454c565b604082019050919050565b600060208201905081810360008301526145d78161459b565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061463a602a83613244565b9150614645826145de565b604082019050919050565b600060208201905081810360008301526146698161462d565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006146cc602f83613244565b91506146d782614670565b604082019050919050565b600060208201905081810360008301526146fb816146bf565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061472982614702565b614733818561470d565b9350614743818560208601613255565b61474c81613288565b840191505092915050565b600060808201905061476c6000830187613389565b6147796020830186613389565b614786604083018561341f565b8181036060830152614798818461471e565b905095945050505050565b6000815190506147b2816131aa565b92915050565b6000602082840312156147ce576147cd613174565b5b60006147dc848285016147a3565b91505092915050565b60006147f0826132f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561482357614822613a28565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614868826132f4565b9150614873836132f4565b9250826148835761488261482e565b5b828204905092915050565b6000614899826132f4565b91506148a4836132f4565b9250826148b4576148b361482e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061494a602183613244565b9150614955826148ee565b604082019050919050565b600060208201905081810360008301526149798161493d565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006149dc602883613244565b91506149e782614980565b604082019050919050565b60006020820190508181036000830152614a0b816149cf565b905091905056fea2646970667358221220e911fdc31907afb326361c4d50cb5e602d032d17b063ecb0828b2f97cfb22a4564736f6c634300080c0033

Deployed Bytecode Sourcemap

38688:3329:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25338:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27224:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28796:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28317:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23591:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23341:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;29672:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24259:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39852:109;;;;;;;;;;;;;:::i;:::-;;40365:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29972:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39220:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23772:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39969:87;;;;;;;;;;;;;:::i;:::-;;40587:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27033:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40474:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25774:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4365:94;;;;;;;;;;;;;:::i;:::-;;39261:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39575:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3714:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40064:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27393:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39111:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41090:924;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29082:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39303:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30287:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40159:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27568:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40260:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29441:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40914:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4614:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39140:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39082:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39181:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25338:372;25440:4;25492:25;25477:40;;;:11;:40;;;;:105;;;;25549:33;25534:48;;;:11;:48;;;;25477:105;:172;;;;25614:35;25599:50;;;:11;:50;;;;25477:172;:225;;;;25666:36;25690:11;25666:23;:36::i;:::-;25477:225;25457:245;;25338:372;;;:::o;27224:100::-;27278:13;27311:5;27304:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27224:100;:::o;28796:214::-;28864:7;28892:16;28900:7;28892;:16::i;:::-;28884:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28978:15;:24;28994:7;28978:24;;;;;;;;;;;;;;;;;;;;;28971:31;;28796:214;;;:::o;28317:413::-;28390:13;28406:24;28422:7;28406:15;:24::i;:::-;28390:40;;28455:5;28449:11;;:2;:11;;;;28441:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28550:5;28534:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28559:37;28576:5;28583:12;:10;:12::i;:::-;28559:16;:37::i;:::-;28534:62;28512:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28694:28;28703:2;28707:7;28716:5;28694:8;:28::i;:::-;28379:351;28317:413;;:::o;23591:104::-;23644:7;23686:1;23671:12;;:16;;;;:::i;:::-;23664:23;;23591:104;:::o;23341:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29672:229::-;29807:13;:22;29821:7;29807:22;;;;;;;;;;;:29;;;;;;;;;;;;29806:30;29798:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29865:28;29875:4;29881:2;29885:7;29865:9;:28::i;:::-;29672:229;;;:::o;24259:1007::-;24348:7;24384:16;24394:5;24384:9;:16::i;:::-;24376:5;:24;24368:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24450:22;24475:13;:11;:13::i;:::-;24450:38;;24499:19;24529:25;24718:9;24713:466;24733:14;24729:1;:18;24713:466;;;24773:31;24807:11;:14;24819:1;24807:14;;;;;;;;;;;24773:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24870:1;24844:28;;:9;:14;;;:28;;;24840:111;;24917:9;:14;;;24897:34;;24840:111;24994:5;24973:26;;:17;:26;;;24969:195;;;25043:5;25028:11;:20;25024:85;;;25084:1;25077:8;;;;;;;;;25024:85;25131:13;;;;;;;24969:195;24754:425;24749:3;;;;;;;24713:466;;;;25202:56;;;;;;;;;;:::i;:::-;;;;;;;;24259:1007;;;;;:::o;39852:109::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39910:10:::1;39902:28;;:51;39931:21;39902:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39852:109::o:0;40365:97::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40448:6:::1;40433:12;:21;;;;40365:97:::0;:::o;29972:244::-;30111:13;:22;30125:7;30111:22;;;;;;;;;;;:29;;;;;;;;;;;;30110:30;30102:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30169:39;30186:4;30192:2;30196:7;30169:39;;;;;;;;;;;;:16;:39::i;:::-;29972:244;;;:::o;39220:32::-;;;;:::o;23772:187::-;23839:7;23875:13;:11;:13::i;:::-;23867:5;:21;23859:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23946:5;23939:12;;23772:187;;;:::o;39969:87::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40038:10:::1;;;;;;;;;;;40037:11;40024:10;;:24;;;;;;;;;;;;;;;;;;39969:87::o:0;40587:90::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40665:4:::1;;40659:3;:10;;;;;;;:::i;:::-;;40587:90:::0;;:::o;27033:124::-;27097:7;27124:20;27136:7;27124:11;:20::i;:::-;:25;;;27117:32;;27033:124;;;:::o;40474:105::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:6:::1;40546:16;:25;;;;40474:105:::0;:::o;25774:221::-;25838:7;25883:1;25866:19;;:5;:19;;;;25858:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25959:12;:19;25972:5;25959:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25951:36;;25944:43;;25774:221;;;:::o;4365:94::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4430:21:::1;4448:1;4430:9;:21::i;:::-;4365:94::o:0;39261:31::-;;;;:::o;39575:39::-;;;;;;;;;;;;;;;;;:::o;3714:87::-;3760:7;3787:6;;;;;;;;;;;3780:13;;3714:87;:::o;40064:83::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40133:6:::1;40125:5;:14;;;;40064:83:::0;:::o;27393:104::-;27449:13;27482:7;27475:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27393:104;:::o;39111:20::-;;;;:::o;41090:924::-;41153:10;;;;;;;;;;;41145:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;41220:16;;41198:7;:19;41206:10;41198:19;;;;;;;;;;;;;;;;:38;41195:812;;;41270:12;;41260:6;:22;;41252:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;41361:16;;41351:6;41329:7;:19;41337:10;41329:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:48;;41321:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41457:6;41441:13;;:22;;;;:::i;:::-;41428:9;:35;41420:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41500:29;41510:10;41522:6;41500:9;:29::i;:::-;41567:6;41544:7;:19;41552:10;41544:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41195:812;;;41640:9;41631:5;;41622:6;:14;;;;:::i;:::-;:27;41614:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41704:8;;41694:6;:18;;41686:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;41788:1;39064:4;41775:14;;;;:::i;:::-;41759:12;;:30;;41751:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41867:12;;41857:6;41835:7;:19;41843:10;41835:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;41827:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;41922:29;41932:10;41944:6;41922:9;:29::i;:::-;41989:6;41966:7;:19;41974:10;41966:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41195:812;41090:924;:::o;29082:288::-;29189:12;:10;:12::i;:::-;29177:24;;:8;:24;;;;29169:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29290:8;29245:18;:32;29264:12;:10;:12::i;:::-;29245:32;;;;;;;;;;;;;;;:42;29278:8;29245:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29343:8;29314:48;;29329:12;:10;:12::i;:::-;29314:48;;;29353:8;29314:48;;;;;;:::i;:::-;;;;;;;;29082:288;;:::o;39303:35::-;;;;:::o;30287:422::-;30455:13;:22;30469:7;30455:22;;;;;;;;;;;:29;;;;;;;;;;;;30454:30;30446:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30513:28;30523:4;30529:2;30533:7;30513:9;:28::i;:::-;30574:48;30597:4;30603:2;30607:7;30616:5;30574:22;:48::i;:::-;30552:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;30287:422;;;;:::o;40159:89::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40234:6:::1;40223:8;:17;;;;40159:89:::0;:::o;27568:344::-;27641:13;27675:16;27683:7;27675;:16::i;:::-;27667:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27756:21;27780:10;:8;:10::i;:::-;27756:34;;27833:1;27814:7;27808:21;:26;;:96;;;;;;;;;;;;;;;;;27861:7;27870:18;:7;:16;:18::i;:::-;27844:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27808:96;27801:103;;;27568:344;;;:::o;40260:97::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40343:6:::1;40328:12;:21;;;;40260:97:::0;:::o;29441:164::-;29538:4;29562:18;:25;29581:5;29562:25;;;;;;;;;;;;;;;:35;29588:8;29562:35;;;;;;;;;;;;;;;;;;;;;;;;;29555:42;;29441:164;;;;:::o;40914:168::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41016:1:::1;39064:4;41003:14;;;;:::i;:::-;40987:12;;:30;;40979:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;41045:29;41055:10;41067:6;41045:9;:29::i;:::-;40914:168:::0;:::o;4614:192::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4723:1:::1;4703:22;;:8;:22;;;;4695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4779:19;4789:8;4779:9;:19::i;:::-;4614:192:::0;:::o;39140:32::-;;;;:::o;39082:22::-;;;;;;;;;;;;;:::o;39181:28::-;;;;:::o;15316:157::-;15401:4;15440:25;15425:40;;;:11;:40;;;;15418:47;;15316:157;;;:::o;30964:126::-;31021:4;31055:12;;31045:7;:22;:37;;;;;31081:1;31071:7;:11;31045:37;31038:44;;30964:126;;;:::o;2590:98::-;2643:7;2670:10;2663:17;;2590:98;:::o;35899:196::-;36041:2;36014:15;:24;36030:7;36014:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36079:7;36075:2;36059:28;;36068:5;36059:28;;;;;;;;;;;;35899:196;;;:::o;33779:2002::-;33894:35;33932:20;33944:7;33932:11;:20::i;:::-;33894:58;;33965:22;34007:13;:18;;;33991:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34066:12;:10;:12::i;:::-;34042:36;;:20;34054:7;34042:11;:20::i;:::-;:36;;;33991:87;:154;;;;34095:50;34112:13;:18;;;34132:12;:10;:12::i;:::-;34095:16;:50::i;:::-;33991:154;33965:181;;34167:17;34159:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34282:4;34260:26;;:13;:18;;;:26;;;34252:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34362:1;34348:16;;:2;:16;;;;34340:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34419:43;34441:4;34447:2;34451:7;34460:1;34419:21;:43::i;:::-;34527:49;34544:1;34548:7;34557:13;:18;;;34527:8;:49::i;:::-;34902:1;34872:12;:18;34885:4;34872:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34946:1;34918:12;:16;34931:2;34918:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34992:2;34964:11;:20;34976:7;34964:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;35054:15;35009:11;:20;35021:7;35009:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;35322:19;35354:1;35344:7;:11;35322:33;;35415:1;35374:43;;:11;:24;35386:11;35374:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35370:295;;;35442:20;35450:11;35442:7;:20::i;:::-;35438:212;;;35519:13;:18;;;35487:11;:24;35499:11;35487:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;35602:13;:28;;;35560:11;:24;35572:11;35560:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;35438:212;35370:295;34847:829;35712:7;35708:2;35693:27;;35702:4;35693:27;;;;;;;;;;;;35731:42;35752:4;35758:2;35762:7;35771:1;35731:20;:42::i;:::-;33883:1898;;33779:2002;;;:::o;26434:537::-;26495:21;;:::i;:::-;26537:16;26545:7;26537;:16::i;:::-;26529:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26643:12;26658:7;26643:22;;26638:245;26675:1;26667:4;:9;26638:245;;26705:31;26739:11;:17;26751:4;26739:17;;;;;;;;;;;26705:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26805:1;26779:28;;:9;:14;;;:28;;;26775:93;;26839:9;26832:16;;;;;;26775:93;26686:197;26678:6;;;;;;;;26638:245;;;;26906:57;;;;;;;;;;:::i;:::-;;;;;;;;26434:537;;;;:::o;4814:173::-;4870:16;4889:6;;;;;;;;;;;4870:25;;4915:8;4906:6;;:17;;;;;;;;;;;;;;;;;;4970:8;4939:40;;4960:8;4939:40;;;;;;;;;;;;4859:128;4814:173;:::o;31098:104::-;31167:27;31177:2;31181:8;31167:27;;;;;;;;;;;;:9;:27::i;:::-;31098:104;;:::o;36660:804::-;36815:4;36836:15;:2;:13;;;:15::i;:::-;36832:625;;;36888:2;36872:36;;;36909:12;:10;:12::i;:::-;36923:4;36929:7;36938:5;36872:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36868:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37135:1;37118:6;:13;:18;37114:273;;;37161:61;;;;;;;;;;:::i;:::-;;;;;;;;37114:273;37337:6;37331:13;37322:6;37318:2;37314:15;37307:38;36868:534;37005:45;;;36995:55;;;:6;:55;;;;36988:62;;;;;36832:625;37441:4;37434:11;;36660:804;;;;;;;:::o;28160:95::-;28211:13;28244:3;28237:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28160:95;:::o;289:723::-;345:13;575:1;566:5;:10;562:53;;;593:10;;;;;;;;;;;;;;;;;;;;;562:53;625:12;640:5;625:20;;656:14;681:78;696:1;688:4;:9;681:78;;714:8;;;;;:::i;:::-;;;;745:2;737:10;;;;;:::i;:::-;;;681:78;;;769:19;801:6;791:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769:39;;819:154;835:1;826:5;:10;819:154;;863:1;853:11;;;;;:::i;:::-;;;930:2;922:5;:10;;;;:::i;:::-;909:2;:24;;;;:::i;:::-;896:39;;879:6;886;879:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;959:2;950:11;;;;;:::i;:::-;;;819:154;;;997:6;983:21;;;;;289:723;;;;:::o;37952:159::-;;;;;:::o;38523:158::-;;;;;:::o;31565:163::-;31688:32;31694:2;31698:8;31708:5;31715:4;31688:5;:32::i;:::-;31565:163;;;:::o;5675:387::-;5735:4;5943:12;6010:7;5998:20;5990:28;;6053:1;6046:4;:8;6039:15;;;5675:387;;;:::o;31987:1538::-;32126:20;32149:12;;32126:35;;32194:1;32180:16;;:2;:16;;;;32172:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32265:1;32253:8;:13;;32245:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32324:61;32354:1;32358:2;32362:12;32376:8;32324:21;:61::i;:::-;32699:8;32663:12;:16;32676:2;32663:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32764:8;32723:12;:16;32736:2;32723:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32823:2;32790:11;:25;32802:12;32790:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32890:15;32840:11;:25;32852:12;32840:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32923:20;32946:12;32923:35;;32980:9;32975:415;32995:8;32991:1;:12;32975:415;;;33059:12;33055:2;33034:38;;33051:1;33034:38;;;;;;;;;;;;33095:4;33091:249;;;33158:59;33189:1;33193:2;33197:12;33211:5;33158:22;:59::i;:::-;33124:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;33091:249;33360:14;;;;;;;33005:3;;;;;;;32975:415;;;;33421:12;33406;:27;;;;32638:807;33457:60;33486:1;33490:2;33494:12;33508:8;33457:20;:60::i;:::-;32115:1410;31987:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:418::-;5427:4;5465:2;5454:9;5450:18;5442:26;;5478:65;5540:1;5529:9;5525:17;5516:6;5478:65;:::i;:::-;5553:66;5615:2;5604:9;5600:18;5591:6;5553:66;:::i;:::-;5629:72;5697:2;5686:9;5682:18;5673:6;5629:72;:::i;:::-;5290:418;;;;;;:::o;5714:619::-;5791:6;5799;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;6237:2;6263:53;6308:7;6299:6;6288:9;6284:22;6263:53;:::i;:::-;6253:63;;6208:118;5714:619;;;;;:::o;6339:117::-;6448:1;6445;6438:12;6462:117;6571:1;6568;6561:12;6585:117;6694:1;6691;6684:12;6722:553;6780:8;6790:6;6840:3;6833:4;6825:6;6821:17;6817:27;6807:122;;6848:79;;:::i;:::-;6807:122;6961:6;6948:20;6938:30;;6991:18;6983:6;6980:30;6977:117;;;7013:79;;:::i;:::-;6977:117;7127:4;7119:6;7115:17;7103:29;;7181:3;7173:4;7165:6;7161:17;7151:8;7147:32;7144:41;7141:128;;;7188:79;;:::i;:::-;7141:128;6722:553;;;;;:::o;7281:529::-;7352:6;7360;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7563:1;7552:9;7548:17;7535:31;7593:18;7585:6;7582:30;7579:117;;;7615:79;;:::i;:::-;7579:117;7728:65;7785:7;7776:6;7765:9;7761:22;7728:65;:::i;:::-;7710:83;;;;7506:297;7281:529;;;;;:::o;7816:329::-;7875:6;7924:2;7912:9;7903:7;7899:23;7895:32;7892:119;;;7930:79;;:::i;:::-;7892:119;8050:1;8075:53;8120:7;8111:6;8100:9;8096:22;8075:53;:::i;:::-;8065:63;;8021:117;7816:329;;;;:::o;8151:116::-;8221:21;8236:5;8221:21;:::i;:::-;8214:5;8211:32;8201:60;;8257:1;8254;8247:12;8201:60;8151:116;:::o;8273:133::-;8316:5;8354:6;8341:20;8332:29;;8370:30;8394:5;8370:30;:::i;:::-;8273:133;;;;:::o;8412:468::-;8477:6;8485;8534:2;8522:9;8513:7;8509:23;8505:32;8502:119;;;8540:79;;:::i;:::-;8502:119;8660:1;8685:53;8730:7;8721:6;8710:9;8706:22;8685:53;:::i;:::-;8675:63;;8631:117;8787:2;8813:50;8855:7;8846:6;8835:9;8831:22;8813:50;:::i;:::-;8803:60;;8758:115;8412:468;;;;;:::o;8886:117::-;8995:1;8992;8985:12;9009:180;9057:77;9054:1;9047:88;9154:4;9151:1;9144:15;9178:4;9175:1;9168:15;9195:281;9278:27;9300:4;9278:27;:::i;:::-;9270:6;9266:40;9408:6;9396:10;9393:22;9372:18;9360:10;9357:34;9354:62;9351:88;;;9419:18;;:::i;:::-;9351:88;9459:10;9455:2;9448:22;9238:238;9195:281;;:::o;9482:129::-;9516:6;9543:20;;:::i;:::-;9533:30;;9572:33;9600:4;9592:6;9572:33;:::i;:::-;9482:129;;;:::o;9617:307::-;9678:4;9768:18;9760:6;9757:30;9754:56;;;9790:18;;:::i;:::-;9754:56;9828:29;9850:6;9828:29;:::i;:::-;9820:37;;9912:4;9906;9902:15;9894:23;;9617:307;;;:::o;9930:154::-;10014:6;10009:3;10004;9991:30;10076:1;10067:6;10062:3;10058:16;10051:27;9930:154;;;:::o;10090:410::-;10167:5;10192:65;10208:48;10249:6;10208:48;:::i;:::-;10192:65;:::i;:::-;10183:74;;10280:6;10273:5;10266:21;10318:4;10311:5;10307:16;10356:3;10347:6;10342:3;10338:16;10335:25;10332:112;;;10363:79;;:::i;:::-;10332:112;10453:41;10487:6;10482:3;10477;10453:41;:::i;:::-;10173:327;10090:410;;;;;:::o;10519:338::-;10574:5;10623:3;10616:4;10608:6;10604:17;10600:27;10590:122;;10631:79;;:::i;:::-;10590:122;10748:6;10735:20;10773:78;10847:3;10839:6;10832:4;10824:6;10820:17;10773:78;:::i;:::-;10764:87;;10580:277;10519:338;;;;:::o;10863:943::-;10958:6;10966;10974;10982;11031:3;11019:9;11010:7;11006:23;11002:33;10999:120;;;11038:79;;:::i;:::-;10999:120;11158:1;11183:53;11228:7;11219:6;11208:9;11204:22;11183:53;:::i;:::-;11173:63;;11129:117;11285:2;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11256:118;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11569:2;11558:9;11554:18;11541:32;11600:18;11592:6;11589:30;11586:117;;;11622:79;;:::i;:::-;11586:117;11727:62;11781:7;11772:6;11761:9;11757:22;11727:62;:::i;:::-;11717:72;;11512:287;10863:943;;;;;;;:::o;11812:474::-;11880:6;11888;11937:2;11925:9;11916:7;11912:23;11908:32;11905:119;;;11943:79;;:::i;:::-;11905:119;12063:1;12088:53;12133:7;12124:6;12113:9;12109:22;12088:53;:::i;:::-;12078:63;;12034:117;12190:2;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12161:118;11812:474;;;;;:::o;12292:180::-;12340:77;12337:1;12330:88;12437:4;12434:1;12427:15;12461:4;12458:1;12451:15;12478:320;12522:6;12559:1;12553:4;12549:12;12539:22;;12606:1;12600:4;12596:12;12627:18;12617:81;;12683:4;12675:6;12671:17;12661:27;;12617:81;12745:2;12737:6;12734:14;12714:18;12711:38;12708:84;;;12764:18;;:::i;:::-;12708:84;12529:269;12478:320;;;:::o;12804:232::-;12944:34;12940:1;12932:6;12928:14;12921:58;13013:15;13008:2;13000:6;12996:15;12989:40;12804:232;:::o;13042:366::-;13184:3;13205:67;13269:2;13264:3;13205:67;:::i;:::-;13198:74;;13281:93;13370:3;13281:93;:::i;:::-;13399:2;13394:3;13390:12;13383:19;;13042:366;;;:::o;13414:419::-;13580:4;13618:2;13607:9;13603:18;13595:26;;13667:9;13661:4;13657:20;13653:1;13642:9;13638:17;13631:47;13695:131;13821:4;13695:131;:::i;:::-;13687:139;;13414:419;;;:::o;13839:221::-;13979:34;13975:1;13967:6;13963:14;13956:58;14048:4;14043:2;14035:6;14031:15;14024:29;13839:221;:::o;14066:366::-;14208:3;14229:67;14293:2;14288:3;14229:67;:::i;:::-;14222:74;;14305:93;14394:3;14305:93;:::i;:::-;14423:2;14418:3;14414:12;14407:19;;14066:366;;;:::o;14438:419::-;14604:4;14642:2;14631:9;14627:18;14619:26;;14691:9;14685:4;14681:20;14677:1;14666:9;14662:17;14655:47;14719:131;14845:4;14719:131;:::i;:::-;14711:139;;14438:419;;;:::o;14863:244::-;15003:34;14999:1;14991:6;14987:14;14980:58;15072:27;15067:2;15059:6;15055:15;15048:52;14863:244;:::o;15113:366::-;15255:3;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15352:93;15441:3;15352:93;:::i;:::-;15470:2;15465:3;15461:12;15454:19;;15113:366;;;:::o;15485:419::-;15651:4;15689:2;15678:9;15674:18;15666:26;;15738:9;15732:4;15728:20;15724:1;15713:9;15709:17;15702:47;15766:131;15892:4;15766:131;:::i;:::-;15758:139;;15485:419;;;:::o;15910:180::-;15958:77;15955:1;15948:88;16055:4;16052:1;16045:15;16079:4;16076:1;16069:15;16096:191;16136:4;16156:20;16174:1;16156:20;:::i;:::-;16151:25;;16190:20;16208:1;16190:20;:::i;:::-;16185:25;;16229:1;16226;16223:8;16220:34;;;16234:18;;:::i;:::-;16220:34;16279:1;16276;16272:9;16264:17;;16096:191;;;;:::o;16293:163::-;16433:15;16429:1;16421:6;16417:14;16410:39;16293:163;:::o;16462:366::-;16604:3;16625:67;16689:2;16684:3;16625:67;:::i;:::-;16618:74;;16701:93;16790:3;16701:93;:::i;:::-;16819:2;16814:3;16810:12;16803:19;;16462:366;;;:::o;16834:419::-;17000:4;17038:2;17027:9;17023:18;17015:26;;17087:9;17081:4;17077:20;17073:1;17062:9;17058:17;17051:47;17115:131;17241:4;17115:131;:::i;:::-;17107:139;;16834:419;;;:::o;17259:221::-;17399:34;17395:1;17387:6;17383:14;17376:58;17468:4;17463:2;17455:6;17451:15;17444:29;17259:221;:::o;17486:366::-;17628:3;17649:67;17713:2;17708:3;17649:67;:::i;:::-;17642:74;;17725:93;17814:3;17725:93;:::i;:::-;17843:2;17838:3;17834:12;17827:19;;17486:366;;;:::o;17858:419::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;17858:419;;;:::o;18283:233::-;18423:34;18419:1;18411:6;18407:14;18400:58;18492:16;18487:2;18479:6;18475:15;18468:41;18283:233;:::o;18522:366::-;18664:3;18685:67;18749:2;18744:3;18685:67;:::i;:::-;18678:74;;18761:93;18850:3;18761:93;:::i;:::-;18879:2;18874:3;18870:12;18863:19;;18522:366;;;:::o;18894:419::-;19060:4;19098:2;19087:9;19083:18;19075:26;;19147:9;19141:4;19137:20;19133:1;19122:9;19118:17;19111:47;19175:131;19301:4;19175:131;:::i;:::-;19167:139;;18894:419;;;:::o;19319:182::-;19459:34;19455:1;19447:6;19443:14;19436:58;19319:182;:::o;19507:366::-;19649:3;19670:67;19734:2;19729:3;19670:67;:::i;:::-;19663:74;;19746:93;19835:3;19746:93;:::i;:::-;19864:2;19859:3;19855:12;19848:19;;19507:366;;;:::o;19879:419::-;20045:4;20083:2;20072:9;20068:18;20060:26;;20132:9;20126:4;20122:20;20118:1;20107:9;20103:17;20096:47;20160:131;20286:4;20160:131;:::i;:::-;20152:139;;19879:419;;;:::o;20304:222::-;20444:34;20440:1;20432:6;20428:14;20421:58;20513:5;20508:2;20500:6;20496:15;20489:30;20304:222;:::o;20532:366::-;20674:3;20695:67;20759:2;20754:3;20695:67;:::i;:::-;20688:74;;20771:93;20860:3;20771:93;:::i;:::-;20889:2;20884:3;20880:12;20873:19;;20532:366;;;:::o;20904:419::-;21070:4;21108:2;21097:9;21093:18;21085:26;;21157:9;21151:4;21147:20;21143:1;21132:9;21128:17;21121:47;21185:131;21311:4;21185:131;:::i;:::-;21177:139;;20904:419;;;:::o;21329:230::-;21469:34;21465:1;21457:6;21453:14;21446:58;21538:13;21533:2;21525:6;21521:15;21514:38;21329:230;:::o;21565:366::-;21707:3;21728:67;21792:2;21787:3;21728:67;:::i;:::-;21721:74;;21804:93;21893:3;21804:93;:::i;:::-;21922:2;21917:3;21913:12;21906:19;;21565:366;;;:::o;21937:419::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;21937:419;;;:::o;22362:166::-;22502:18;22498:1;22490:6;22486:14;22479:42;22362:166;:::o;22534:366::-;22676:3;22697:67;22761:2;22756:3;22697:67;:::i;:::-;22690:74;;22773:93;22862:3;22773:93;:::i;:::-;22891:2;22886:3;22882:12;22875:19;;22534:366;;;:::o;22906:419::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:169::-;23471:21;23467:1;23459:6;23455:14;23448:45;23331:169;:::o;23506:366::-;23648:3;23669:67;23733:2;23728:3;23669:67;:::i;:::-;23662:74;;23745:93;23834:3;23745:93;:::i;:::-;23863:2;23858:3;23854:12;23847:19;;23506:366;;;:::o;23878:419::-;24044:4;24082:2;24071:9;24067:18;24059:26;;24131:9;24125:4;24121:20;24117:1;24106:9;24102:17;24095:47;24159:131;24285:4;24159:131;:::i;:::-;24151:139;;23878:419;;;:::o;24303:305::-;24343:3;24362:20;24380:1;24362:20;:::i;:::-;24357:25;;24396:20;24414:1;24396:20;:::i;:::-;24391:25;;24550:1;24482:66;24478:74;24475:1;24472:81;24469:107;;;24556:18;;:::i;:::-;24469:107;24600:1;24597;24593:9;24586:16;;24303:305;;;;:::o;24614:173::-;24754:25;24750:1;24742:6;24738:14;24731:49;24614:173;:::o;24793:366::-;24935:3;24956:67;25020:2;25015:3;24956:67;:::i;:::-;24949:74;;25032:93;25121:3;25032:93;:::i;:::-;25150:2;25145:3;25141:12;25134:19;;24793:366;;;:::o;25165:419::-;25331:4;25369:2;25358:9;25354:18;25346:26;;25418:9;25412:4;25408:20;25404:1;25393:9;25389:17;25382:47;25446:131;25572:4;25446:131;:::i;:::-;25438:139;;25165:419;;;:::o;25590:348::-;25630:7;25653:20;25671:1;25653:20;:::i;:::-;25648:25;;25687:20;25705:1;25687:20;:::i;:::-;25682:25;;25875:1;25807:66;25803:74;25800:1;25797:81;25792:1;25785:9;25778:17;25774:105;25771:131;;;25882:18;;:::i;:::-;25771:131;25930:1;25927;25923:9;25912:20;;25590:348;;;;:::o;25944:167::-;26084:19;26080:1;26072:6;26068:14;26061:43;25944:167;:::o;26117:366::-;26259:3;26280:67;26344:2;26339:3;26280:67;:::i;:::-;26273:74;;26356:93;26445:3;26356:93;:::i;:::-;26474:2;26469:3;26465:12;26458:19;;26117:366;;;:::o;26489:419::-;26655:4;26693:2;26682:9;26678:18;26670:26;;26742:9;26736:4;26732:20;26728:1;26717:9;26713:17;26706:47;26770:131;26896:4;26770:131;:::i;:::-;26762:139;;26489:419;;;:::o;26914:167::-;27054:19;27050:1;27042:6;27038:14;27031:43;26914:167;:::o;27087:366::-;27229:3;27250:67;27314:2;27309:3;27250:67;:::i;:::-;27243:74;;27326:93;27415:3;27326:93;:::i;:::-;27444:2;27439:3;27435:12;27428:19;;27087:366;;;:::o;27459:419::-;27625:4;27663:2;27652:9;27648:18;27640:26;;27712:9;27706:4;27702:20;27698:1;27687:9;27683:17;27676:47;27740:131;27866:4;27740:131;:::i;:::-;27732:139;;27459:419;;;:::o;27884:168::-;28024:20;28020:1;28012:6;28008:14;28001:44;27884:168;:::o;28058:366::-;28200:3;28221:67;28285:2;28280:3;28221:67;:::i;:::-;28214:74;;28297:93;28386:3;28297:93;:::i;:::-;28415:2;28410:3;28406:12;28399:19;;28058:366;;;:::o;28430:419::-;28596:4;28634:2;28623:9;28619:18;28611:26;;28683:9;28677:4;28673:20;28669:1;28658:9;28654:17;28647:47;28711:131;28837:4;28711:131;:::i;:::-;28703:139;;28430:419;;;:::o;28855:176::-;28995:28;28991:1;28983:6;28979:14;28972:52;28855:176;:::o;29037:366::-;29179:3;29200:67;29264:2;29259:3;29200:67;:::i;:::-;29193:74;;29276:93;29365:3;29276:93;:::i;:::-;29394:2;29389:3;29385:12;29378:19;;29037:366;;;:::o;29409:419::-;29575:4;29613:2;29602:9;29598:18;29590:26;;29662:9;29656:4;29652:20;29648:1;29637:9;29633:17;29626:47;29690:131;29816:4;29690:131;:::i;:::-;29682:139;;29409:419;;;:::o;29834:238::-;29974:34;29970:1;29962:6;29958:14;29951:58;30043:21;30038:2;30030:6;30026:15;30019:46;29834:238;:::o;30078:366::-;30220:3;30241:67;30305:2;30300:3;30241:67;:::i;:::-;30234:74;;30317:93;30406:3;30317:93;:::i;:::-;30435:2;30430:3;30426:12;30419:19;;30078:366;;;:::o;30450:419::-;30616:4;30654:2;30643:9;30639:18;30631:26;;30703:9;30697:4;30693:20;30689:1;30678:9;30674:17;30667:47;30731:131;30857:4;30731:131;:::i;:::-;30723:139;;30450:419;;;:::o;30875:234::-;31015:34;31011:1;31003:6;30999:14;30992:58;31084:17;31079:2;31071:6;31067:15;31060:42;30875:234;:::o;31115:366::-;31257:3;31278:67;31342:2;31337:3;31278:67;:::i;:::-;31271:74;;31354:93;31443:3;31354:93;:::i;:::-;31472:2;31467:3;31463:12;31456:19;;31115:366;;;:::o;31487:419::-;31653:4;31691:2;31680:9;31676:18;31668:26;;31740:9;31734:4;31730:20;31726:1;31715:9;31711:17;31704:47;31768:131;31894:4;31768:131;:::i;:::-;31760:139;;31487:419;;;:::o;31912:148::-;32014:11;32051:3;32036:18;;31912:148;;;;:::o;32066:377::-;32172:3;32200:39;32233:5;32200:39;:::i;:::-;32255:89;32337:6;32332:3;32255:89;:::i;:::-;32248:96;;32353:52;32398:6;32393:3;32386:4;32379:5;32375:16;32353:52;:::i;:::-;32430:6;32425:3;32421:16;32414:23;;32176:267;32066:377;;;;:::o;32449:155::-;32589:7;32585:1;32577:6;32573:14;32566:31;32449:155;:::o;32610:400::-;32770:3;32791:84;32873:1;32868:3;32791:84;:::i;:::-;32784:91;;32884:93;32973:3;32884:93;:::i;:::-;33002:1;32997:3;32993:11;32986:18;;32610:400;;;:::o;33016:701::-;33297:3;33319:95;33410:3;33401:6;33319:95;:::i;:::-;33312:102;;33431:95;33522:3;33513:6;33431:95;:::i;:::-;33424:102;;33543:148;33687:3;33543:148;:::i;:::-;33536:155;;33708:3;33701:10;;33016:701;;;;;:::o;33723:162::-;33863:14;33859:1;33851:6;33847:14;33840:38;33723:162;:::o;33891:366::-;34033:3;34054:67;34118:2;34113:3;34054:67;:::i;:::-;34047:74;;34130:93;34219:3;34130:93;:::i;:::-;34248:2;34243:3;34239:12;34232:19;;33891:366;;;:::o;34263:419::-;34429:4;34467:2;34456:9;34452:18;34444:26;;34516:9;34510:4;34506:20;34502:1;34491:9;34487:17;34480:47;34544:131;34670:4;34544:131;:::i;:::-;34536:139;;34263:419;;;:::o;34688:225::-;34828:34;34824:1;34816:6;34812:14;34805:58;34897:8;34892:2;34884:6;34880:15;34873:33;34688:225;:::o;34919:366::-;35061:3;35082:67;35146:2;35141:3;35082:67;:::i;:::-;35075:74;;35158:93;35247:3;35158:93;:::i;:::-;35276:2;35271:3;35267:12;35260:19;;34919:366;;;:::o;35291:419::-;35457:4;35495:2;35484:9;35480:18;35472:26;;35544:9;35538:4;35534:20;35530:1;35519:9;35515:17;35508:47;35572:131;35698:4;35572:131;:::i;:::-;35564:139;;35291:419;;;:::o;35716:237::-;35856:34;35852:1;35844:6;35840:14;35833:58;35925:20;35920:2;35912:6;35908:15;35901:45;35716:237;:::o;35959:366::-;36101:3;36122:67;36186:2;36181:3;36122:67;:::i;:::-;36115:74;;36198:93;36287:3;36198:93;:::i;:::-;36316:2;36311:3;36307:12;36300:19;;35959:366;;;:::o;36331:419::-;36497:4;36535:2;36524:9;36520:18;36512:26;;36584:9;36578:4;36574:20;36570:1;36559:9;36555:17;36548:47;36612:131;36738:4;36612:131;:::i;:::-;36604:139;;36331:419;;;:::o;36756:225::-;36896:34;36892:1;36884:6;36880:14;36873:58;36965:8;36960:2;36952:6;36948:15;36941:33;36756:225;:::o;36987:366::-;37129:3;37150:67;37214:2;37209:3;37150:67;:::i;:::-;37143:74;;37226:93;37315:3;37226:93;:::i;:::-;37344:2;37339:3;37335:12;37328:19;;36987:366;;;:::o;37359:419::-;37525:4;37563:2;37552:9;37548:18;37540:26;;37612:9;37606:4;37602:20;37598:1;37587:9;37583:17;37576:47;37640:131;37766:4;37640:131;:::i;:::-;37632:139;;37359:419;;;:::o;37784:224::-;37924:34;37920:1;37912:6;37908:14;37901:58;37993:7;37988:2;37980:6;37976:15;37969:32;37784:224;:::o;38014:366::-;38156:3;38177:67;38241:2;38236:3;38177:67;:::i;:::-;38170:74;;38253:93;38342:3;38253:93;:::i;:::-;38371:2;38366:3;38362:12;38355:19;;38014:366;;;:::o;38386:419::-;38552:4;38590:2;38579:9;38575:18;38567:26;;38639:9;38633:4;38629:20;38625:1;38614:9;38610:17;38603:47;38667:131;38793:4;38667:131;:::i;:::-;38659:139;;38386:419;;;:::o;38811:229::-;38951:34;38947:1;38939:6;38935:14;38928:58;39020:12;39015:2;39007:6;39003:15;38996:37;38811:229;:::o;39046:366::-;39188:3;39209:67;39273:2;39268:3;39209:67;:::i;:::-;39202:74;;39285:93;39374:3;39285:93;:::i;:::-;39403:2;39398:3;39394:12;39387:19;;39046:366;;;:::o;39418:419::-;39584:4;39622:2;39611:9;39607:18;39599:26;;39671:9;39665:4;39661:20;39657:1;39646:9;39642:17;39635:47;39699:131;39825:4;39699:131;:::i;:::-;39691:139;;39418:419;;;:::o;39843:234::-;39983:34;39979:1;39971:6;39967:14;39960:58;40052:17;40047:2;40039:6;40035:15;40028:42;39843:234;:::o;40083:366::-;40225:3;40246:67;40310:2;40305:3;40246:67;:::i;:::-;40239:74;;40322:93;40411:3;40322:93;:::i;:::-;40440:2;40435:3;40431:12;40424:19;;40083:366;;;:::o;40455:419::-;40621:4;40659:2;40648:9;40644:18;40636:26;;40708:9;40702:4;40698:20;40694:1;40683:9;40679:17;40672:47;40736:131;40862:4;40736:131;:::i;:::-;40728:139;;40455:419;;;:::o;40880:98::-;40931:6;40965:5;40959:12;40949:22;;40880:98;;;:::o;40984:168::-;41067:11;41101:6;41096:3;41089:19;41141:4;41136:3;41132:14;41117:29;;40984:168;;;;:::o;41158:360::-;41244:3;41272:38;41304:5;41272:38;:::i;:::-;41326:70;41389:6;41384:3;41326:70;:::i;:::-;41319:77;;41405:52;41450:6;41445:3;41438:4;41431:5;41427:16;41405:52;:::i;:::-;41482:29;41504:6;41482:29;:::i;:::-;41477:3;41473:39;41466:46;;41248:270;41158:360;;;;:::o;41524:640::-;41719:4;41757:3;41746:9;41742:19;41734:27;;41771:71;41839:1;41828:9;41824:17;41815:6;41771:71;:::i;:::-;41852:72;41920:2;41909:9;41905:18;41896:6;41852:72;:::i;:::-;41934;42002:2;41991:9;41987:18;41978:6;41934:72;:::i;:::-;42053:9;42047:4;42043:20;42038:2;42027:9;42023:18;42016:48;42081:76;42152:4;42143:6;42081:76;:::i;:::-;42073:84;;41524:640;;;;;;;:::o;42170:141::-;42226:5;42257:6;42251:13;42242:22;;42273:32;42299:5;42273:32;:::i;:::-;42170:141;;;;:::o;42317:349::-;42386:6;42435:2;42423:9;42414:7;42410:23;42406:32;42403:119;;;42441:79;;:::i;:::-;42403:119;42561:1;42586:63;42641:7;42632:6;42621:9;42617:22;42586:63;:::i;:::-;42576:73;;42532:127;42317:349;;;;:::o;42672:233::-;42711:3;42734:24;42752:5;42734:24;:::i;:::-;42725:33;;42780:66;42773:5;42770:77;42767:103;;;42850:18;;:::i;:::-;42767:103;42897:1;42890:5;42886:13;42879:20;;42672:233;;;:::o;42911:180::-;42959:77;42956:1;42949:88;43056:4;43053:1;43046:15;43080:4;43077:1;43070:15;43097:185;43137:1;43154:20;43172:1;43154:20;:::i;:::-;43149:25;;43188:20;43206:1;43188:20;:::i;:::-;43183:25;;43227:1;43217:35;;43232:18;;:::i;:::-;43217:35;43274:1;43271;43267:9;43262:14;;43097:185;;;;:::o;43288:176::-;43320:1;43337:20;43355:1;43337:20;:::i;:::-;43332:25;;43371:20;43389:1;43371:20;:::i;:::-;43366:25;;43410:1;43400:35;;43415:18;;:::i;:::-;43400:35;43456:1;43453;43449:9;43444:14;;43288:176;;;;:::o;43470:180::-;43518:77;43515:1;43508:88;43615:4;43612:1;43605:15;43639:4;43636:1;43629:15;43656:220;43796:34;43792:1;43784:6;43780:14;43773:58;43865:3;43860:2;43852:6;43848:15;43841:28;43656:220;:::o;43882:366::-;44024:3;44045:67;44109:2;44104:3;44045:67;:::i;:::-;44038:74;;44121:93;44210:3;44121:93;:::i;:::-;44239:2;44234:3;44230:12;44223:19;;43882:366;;;:::o;44254:419::-;44420:4;44458:2;44447:9;44443:18;44435:26;;44507:9;44501:4;44497:20;44493:1;44482:9;44478:17;44471:47;44535:131;44661:4;44535:131;:::i;:::-;44527:139;;44254:419;;;:::o;44679:227::-;44819:34;44815:1;44807:6;44803:14;44796:58;44888:10;44883:2;44875:6;44871:15;44864:35;44679:227;:::o;44912:366::-;45054:3;45075:67;45139:2;45134:3;45075:67;:::i;:::-;45068:74;;45151:93;45240:3;45151:93;:::i;:::-;45269:2;45264:3;45260:12;45253:19;;44912:366;;;:::o;45284:419::-;45450:4;45488:2;45477:9;45473:18;45465:26;;45537:9;45531:4;45527:20;45523:1;45512:9;45508:17;45501:47;45565:131;45691:4;45565:131;:::i;:::-;45557:139;;45284:419;;;:::o

Swarm Source

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