ETH Price: $3,164.50 (+1.43%)
Gas: 1 Gwei

Token

orcstown.wtf (ORC)
 

Overview

Max Total Supply

2,710 ORC

Holders

625

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ORC
0x105855b222d3a699af331dd0c794211ecc157989
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:
orcstownwtf

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;

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

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


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


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



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

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

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

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

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

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

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

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


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


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



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

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

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

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

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





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



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





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



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

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

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

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

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

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

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

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

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

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

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

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





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



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




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



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

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

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





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



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

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

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





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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




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



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


// File contracts/ERC721A.sol


// Creator: Chiru Labs


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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

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

        uint256 updatedIndex = startTokenId;

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

      currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

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

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

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

contract orcstownwtf is ERC721A, Ownable {

    string public baseURI = "ipfs://";
    string public contractURI = "ipfs://";
    string public constant baseExtension = "";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 3;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant FREE_MAX_SUPPLY = 2500;
    uint256 public MAX_SUPPLY = 5000;
    uint256 public price = 0.005 ether;

    bool public paused = true;

    constructor() ERC721A("orcstown.wtf", "ORC") {}

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

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

        _safeMint(_caller, _amount);
    }



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

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

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
}

function setMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
}


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

Contract Security Audit

Contract ABI

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

6080604052600080556040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600890805190602001906200005592919062000272565b506040518060400160405280600781526020017f697066733a2f2f0000000000000000000000000000000000000000000000000081525060099080519060200190620000a392919062000272565b50611388600a556611c37937e08000600b556001600c60006101000a81548160ff021916908315150217905550348015620000dd57600080fd5b506040518060400160405280600c81526020017f6f726373746f776e2e77746600000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f5243000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200016292919062000272565b5080600290805190602001906200017b92919062000272565b5050506200019e62000192620001a460201b60201c565b620001ac60201b60201c565b62000387565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002809062000322565b90600052602060002090601f016020900481019282620002a45760008555620002f0565b82601f10620002bf57805160ff1916838001178555620002f0565b82800160010185558215620002f0579182015b82811115620002ef578251825591602001919060010190620002d2565b5b509050620002ff919062000303565b5090565b5b808211156200031e57600081600090555060010162000304565b5090565b600060028204905060018216806200033b57607f821691505b6020821081141562000352576200035162000358565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61485580620003976000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d4851461077e578063e985e9c5146107a9578063ec9496ba146107e6578063f2fde38b1461080f578063f43a22dc146108385761020f565b8063b88d4fde146106c2578063c6682862146106eb578063c87b56dd14610716578063cd7c0326146107535761020f565b8063938e3d7b116100e7578063938e3d7b146105fe57806395d89b4114610627578063a035b1fe14610652578063a0712d681461067d578063a22cb465146106995761020f565b8063715018a6146105685780638069876d1461057f5780638da5cb5b146105aa57806391b7f5ed146105d55761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461046f5780635c975abb146104985780636352211e146104c35780636c0360eb1461050057806370a082311461052b5761020f565b80633ccfd60b146103c757806342842e0e146103de578063463fff79146104075780634f6ccce7146104325761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f57806332cb6b0c1461039c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906131ad565b610863565b604051610248919061384d565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613180565b6109ad565b005b34801561028657600080fd5b5061028f610a46565b60405161029c9190613868565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613250565b610ad8565b6040516102d991906137e6565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613140565b610b5d565b005b34801561031757600080fd5b50610320610c76565b60405161032d9190613bea565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061302a565b610c7f565b005b34801561036b57600080fd5b5061038660048036038101906103819190613140565b610c8f565b6040516103939190613bea565b60405180910390f35b3480156103a857600080fd5b506103b1610e8d565b6040516103be9190613bea565b60405180910390f35b3480156103d357600080fd5b506103dc610e93565b005b3480156103ea57600080fd5b506104056004803603810190610400919061302a565b610fcb565b005b34801561041357600080fd5b5061041c610feb565b6040516104299190613bea565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190613250565b610ff0565b6040516104669190613bea565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613207565b611043565b005b3480156104a457600080fd5b506104ad6110d9565b6040516104ba919061384d565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613250565b6110ec565b6040516104f791906137e6565b60405180910390f35b34801561050c57600080fd5b50610515611102565b6040516105229190613868565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190612fbd565b611190565b60405161055f9190613bea565b60405180910390f35b34801561057457600080fd5b5061057d611279565b005b34801561058b57600080fd5b50610594611301565b6040516105a19190613bea565b60405180910390f35b3480156105b657600080fd5b506105bf611307565b6040516105cc91906137e6565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613250565b611331565b005b34801561060a57600080fd5b5061062560048036038101906106209190613207565b6113b7565b005b34801561063357600080fd5b5061063c61144d565b6040516106499190613868565b60405180910390f35b34801561065e57600080fd5b506106676114df565b6040516106749190613bea565b60405180910390f35b61069760048036038101906106929190613250565b6114e5565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190613100565b611744565b005b3480156106ce57600080fd5b506106e960048036038101906106e4919061307d565b6118c5565b005b3480156106f757600080fd5b50610700611921565b60405161070d9190613868565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190613250565b611934565b60405161074a9190613868565b60405180910390f35b34801561075f57600080fd5b506107686119ed565b60405161077591906137e6565b60405180910390f35b34801561078a57600080fd5b50610793611a05565b6040516107a09190613868565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190612fea565b611a93565b6040516107dd919061384d565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613250565b611b27565b005b34801561081b57600080fd5b5061083660048036038101906108319190612fbd565b611bad565b005b34801561084457600080fd5b5061084d611ca5565b60405161085a9190613bea565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657506109a582611caa565b5b9050919050565b6109b5611d14565b73ffffffffffffffffffffffffffffffffffffffff166109d3611307565b73ffffffffffffffffffffffffffffffffffffffff1614610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613a4a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606060018054610a5590613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190613f46565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b6000610ae382611d1c565b610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990613baa565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b68826110ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090613aca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf8611d14565b73ffffffffffffffffffffffffffffffffffffffff161480610c275750610c2681610c21611d14565b611a93565b5b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d906139aa565b60405180910390fd5b610c71838383611d29565b505050565b60008054905090565b610c8a838383611ddb565b505050565b6000610c9a83611190565b8210610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd29061388a565b60405180910390fd5b6000610ce5610c76565b905060008060005b83811015610e4b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ddf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e375786841415610e28578195505050505050610e87565b8380610e3390613fa9565b9450505b508080610e4390613fa9565b915050610ced565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90613b8a565b60405180910390fd5b92915050565b600a5481565b610e9b611d14565b73ffffffffffffffffffffffffffffffffffffffff16610eb9611307565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613a4a565b60405180910390fd5b60004790506000610f1e611d14565b73ffffffffffffffffffffffffffffffffffffffff1682604051610f41906137d1565b60006040518083038185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050905080610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90613b6a565b60405180910390fd5b5050565b610fe6838383604051806020016040528060008152506118c5565b505050565b600381565b6000610ffa610c76565b821061103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061394a565b60405180910390fd5b819050919050565b61104b611d14565b73ffffffffffffffffffffffffffffffffffffffff16611069611307565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613a4a565b60405180910390fd5b80600890805190602001906110d5929190612d97565b5050565b600c60009054906101000a900460ff1681565b60006110f782612382565b600001519050919050565b6008805461110f90613f46565b80601f016020809104026020016040519081016040528092919081815260200182805461113b90613f46565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906139ea565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611281611d14565b73ffffffffffffffffffffffffffffffffffffffff1661129f611307565b73ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90613a4a565b60405180910390fd5b6112ff60006124dd565b565b6109c481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611339611d14565b73ffffffffffffffffffffffffffffffffffffffff16611357611307565b73ffffffffffffffffffffffffffffffffffffffff16146113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613a4a565b60405180910390fd5b80600b8190555050565b6113bf611d14565b73ffffffffffffffffffffffffffffffffffffffff166113dd611307565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613a4a565b60405180910390fd5b8060099080519060200190611449929190612d97565b5050565b60606002805461145c90613f46565b80601f016020809104026020016040519081016040528092919081815260200182805461148890613f46565b80156114d55780601f106114aa576101008083540402835291602001916114d5565b820191906000526020600020905b8154815290600101906020018083116114b857829003601f168201915b5050505050905090565b600b5481565b60006114ef611d14565b9050600c60009054906101000a900460ff1615611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906138aa565b60405180910390fd5b8161154a610c76565b6115549190613d35565b600a541015611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f906139ca565b60405180910390fd5b600082116115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d29061390a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613bca565b60405180910390fd5b611651610c76565b6109c4106116a257816003101561169d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116949061398a565b60405180910390fd5b611736565b81600a10156116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd9061392a565b60405180910390fd5b34600b54836116f59190613dbc565b14611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613aaa565b60405180910390fd5b5b61174081836125a3565b5050565b61174c611d14565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190613a6a565b60405180910390fd5b80600660006117c7611d14565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611874611d14565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b9919061384d565b60405180910390a35050565b6118d0848484611ddb565b6118dc848484846125c1565b61191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613b0a565b60405180910390fd5b50505050565b6040518060200160405280600081525081565b606061193f82611d1c565b61197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613a0a565b60405180910390fd5b60006008805461198d90613f46565b9050116119a957604051806020016040528060008152506119e6565b60086119b483612758565b604051806020016040528060008152506040516020016119d6939291906137a0565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60098054611a1290613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e90613f46565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b2f611d14565b73ffffffffffffffffffffffffffffffffffffffff16611b4d611307565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613a4a565b60405180910390fd5b80600a8190555050565b611bb5611d14565b73ffffffffffffffffffffffffffffffffffffffff16611bd3611307565b73ffffffffffffffffffffffffffffffffffffffff1614611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613a4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c90906138ca565b60405180910390fd5b611ca2816124dd565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611de682612382565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e0d611d14565b73ffffffffffffffffffffffffffffffffffffffff161480611e695750611e32611d14565b73ffffffffffffffffffffffffffffffffffffffff16611e5184610ad8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e855750611e848260000151611e7f611d14565b611a93565b5b905080611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe90613a8a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090613a2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa09061396a565b60405180910390fd5b611fb685858560016128b9565b611fc66000848460000151611d29565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121cc9190613d35565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123125761224281611d1c565b15612311576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461237a86868660016128bf565b505050505050565b61238a612e1d565b61239382611d1c565b6123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c9906138ea565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c45780925050506124d8565b5080806124d090613f1c565b9150506123d8565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125bd8282604051806020016040528060008152506128c5565b5050565b60006125e28473ffffffffffffffffffffffffffffffffffffffff16612d84565b1561274b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261260b611d14565b8786866040518563ffffffff1660e01b815260040161262d9493929190613801565b602060405180830381600087803b15801561264757600080fd5b505af192505050801561267857506040513d601f19601f8201168201806040525081019061267591906131da565b60015b6126fb573d80600081146126a8576040519150601f19603f3d011682016040523d82523d6000602084013e6126ad565b606091505b506000815114156126f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea90613b0a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612750565b600190505b949350505050565b606060008214156127a0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128b4565b600082905060005b600082146127d25780806127bb90613fa9565b915050600a826127cb9190613d8b565b91506127a8565b60008167ffffffffffffffff8111156127ee576127ed6140df565b5b6040519080825280601f01601f1916602001820160405280156128205781602001600182028036833780820191505090505b5090505b600085146128ad576001826128399190613e16565b9150600a856128489190613ff2565b60306128549190613d35565b60f81b81838151811061286a576128696140b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128a69190613d8b565b9450612824565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290613b4a565b60405180910390fd5b61294481611d1c565b15612984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b90613b2a565b60405180910390fd5b600083116129c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129be90613aea565b60405180910390fd5b6129d460008583866128b9565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ad19190613cef565b6fffffffffffffffffffffffffffffffff168152602001858360200151612af89190613cef565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d6757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d0760008884886125c1565b612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90613b0a565b60405180910390fd5b8180612d5190613fa9565b9250508080612d5f90613fa9565b915050612c96565b5080600081905550612d7c60008785886128bf565b505050505050565b600080823b905060008111915050919050565b828054612da390613f46565b90600052602060002090601f016020900481019282612dc55760008555612e0c565b82601f10612dde57805160ff1916838001178555612e0c565b82800160010185558215612e0c579182015b82811115612e0b578251825591602001919060010190612df0565b5b509050612e199190612e57565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e70576000816000905550600101612e58565b5090565b6000612e87612e8284613c2a565b613c05565b905082815260208101848484011115612ea357612ea2614113565b5b612eae848285613eda565b509392505050565b6000612ec9612ec484613c5b565b613c05565b905082815260208101848484011115612ee557612ee4614113565b5b612ef0848285613eda565b509392505050565b600081359050612f07816147c3565b92915050565b600081359050612f1c816147da565b92915050565b600081359050612f31816147f1565b92915050565b600081519050612f46816147f1565b92915050565b600082601f830112612f6157612f6061410e565b5b8135612f71848260208601612e74565b91505092915050565b600082601f830112612f8f57612f8e61410e565b5b8135612f9f848260208601612eb6565b91505092915050565b600081359050612fb781614808565b92915050565b600060208284031215612fd357612fd261411d565b5b6000612fe184828501612ef8565b91505092915050565b600080604083850312156130015761300061411d565b5b600061300f85828601612ef8565b925050602061302085828601612ef8565b9150509250929050565b6000806000606084860312156130435761304261411d565b5b600061305186828701612ef8565b935050602061306286828701612ef8565b925050604061307386828701612fa8565b9150509250925092565b600080600080608085870312156130975761309661411d565b5b60006130a587828801612ef8565b94505060206130b687828801612ef8565b93505060406130c787828801612fa8565b925050606085013567ffffffffffffffff8111156130e8576130e7614118565b5b6130f487828801612f4c565b91505092959194509250565b600080604083850312156131175761311661411d565b5b600061312585828601612ef8565b925050602061313685828601612f0d565b9150509250929050565b600080604083850312156131575761315661411d565b5b600061316585828601612ef8565b925050602061317685828601612fa8565b9150509250929050565b6000602082840312156131965761319561411d565b5b60006131a484828501612f0d565b91505092915050565b6000602082840312156131c3576131c261411d565b5b60006131d184828501612f22565b91505092915050565b6000602082840312156131f0576131ef61411d565b5b60006131fe84828501612f37565b91505092915050565b60006020828403121561321d5761321c61411d565b5b600082013567ffffffffffffffff81111561323b5761323a614118565b5b61324784828501612f7a565b91505092915050565b6000602082840312156132665761326561411d565b5b600061327484828501612fa8565b91505092915050565b61328681613e4a565b82525050565b61329581613e5c565b82525050565b60006132a682613ca1565b6132b08185613cb7565b93506132c0818560208601613ee9565b6132c981614122565b840191505092915050565b60006132df82613cac565b6132e98185613cd3565b93506132f9818560208601613ee9565b61330281614122565b840191505092915050565b600061331882613cac565b6133228185613ce4565b9350613332818560208601613ee9565b80840191505092915050565b6000815461334b81613f46565b6133558186613ce4565b945060018216600081146133705760018114613381576133b4565b60ff198316865281860193506133b4565b61338a85613c8c565b60005b838110156133ac5781548189015260018201915060208101905061338d565b838801955050505b50505092915050565b60006133ca602283613cd3565b91506133d582614133565b604082019050919050565b60006133ed600683613cd3565b91506133f882614182565b602082019050919050565b6000613410602683613cd3565b915061341b826141ab565b604082019050919050565b6000613433602a83613cd3565b915061343e826141fa565b604082019050919050565b6000613456600a83613cd3565b915061346182614249565b602082019050919050565b6000613479601683613cd3565b915061348482614272565b602082019050919050565b600061349c602383613cd3565b91506134a78261429b565b604082019050919050565b60006134bf602583613cd3565b91506134ca826142ea565b604082019050919050565b60006134e2601683613cd3565b91506134ed82614339565b602082019050919050565b6000613505603983613cd3565b915061351082614362565b604082019050919050565b6000613528601283613cd3565b9150613533826143b1565b602082019050919050565b600061354b602b83613cd3565b9150613556826143da565b604082019050919050565b600061356e601583613cd3565b915061357982614429565b602082019050919050565b6000613591602683613cd3565b915061359c82614452565b604082019050919050565b60006135b4602083613cd3565b91506135bf826144a1565b602082019050919050565b60006135d7601a83613cd3565b91506135e2826144ca565b602082019050919050565b60006135fa603283613cd3565b9150613605826144f3565b604082019050919050565b600061361d601683613cd3565b915061362882614542565b602082019050919050565b6000613640602283613cd3565b915061364b8261456b565b604082019050919050565b6000613663600083613cc8565b915061366e826145ba565b600082019050919050565b6000613686602383613cd3565b9150613691826145bd565b604082019050919050565b60006136a9603383613cd3565b91506136b48261460c565b604082019050919050565b60006136cc601d83613cd3565b91506136d78261465b565b602082019050919050565b60006136ef602183613cd3565b91506136fa82614684565b604082019050919050565b6000613712600e83613cd3565b915061371d826146d3565b602082019050919050565b6000613735602e83613cd3565b9150613740826146fc565b604082019050919050565b6000613758602d83613cd3565b91506137638261474b565b604082019050919050565b600061377b600c83613cd3565b91506137868261479a565b602082019050919050565b61379a81613ed0565b82525050565b60006137ac828661333e565b91506137b8828561330d565b91506137c4828461330d565b9150819050949350505050565b60006137dc82613656565b9150819050919050565b60006020820190506137fb600083018461327d565b92915050565b6000608082019050613816600083018761327d565b613823602083018661327d565b6138306040830185613791565b8181036060830152613842818461329b565b905095945050505050565b6000602082019050613862600083018461328c565b92915050565b6000602082019050818103600083015261388281846132d4565b905092915050565b600060208201905081810360008301526138a3816133bd565b9050919050565b600060208201905081810360008301526138c3816133e0565b9050919050565b600060208201905081810360008301526138e381613403565b9050919050565b6000602082019050818103600083015261390381613426565b9050919050565b6000602082019050818103600083015261392381613449565b9050919050565b600060208201905081810360008301526139438161346c565b9050919050565b600060208201905081810360008301526139638161348f565b9050919050565b60006020820190508181036000830152613983816134b2565b9050919050565b600060208201905081810360008301526139a3816134d5565b9050919050565b600060208201905081810360008301526139c3816134f8565b9050919050565b600060208201905081810360008301526139e38161351b565b9050919050565b60006020820190508181036000830152613a038161353e565b9050919050565b60006020820190508181036000830152613a2381613561565b9050919050565b60006020820190508181036000830152613a4381613584565b9050919050565b60006020820190508181036000830152613a63816135a7565b9050919050565b60006020820190508181036000830152613a83816135ca565b9050919050565b60006020820190508181036000830152613aa3816135ed565b9050919050565b60006020820190508181036000830152613ac381613610565b9050919050565b60006020820190508181036000830152613ae381613633565b9050919050565b60006020820190508181036000830152613b0381613679565b9050919050565b60006020820190508181036000830152613b238161369c565b9050919050565b60006020820190508181036000830152613b43816136bf565b9050919050565b60006020820190508181036000830152613b63816136e2565b9050919050565b60006020820190508181036000830152613b8381613705565b9050919050565b60006020820190508181036000830152613ba381613728565b9050919050565b60006020820190508181036000830152613bc38161374b565b9050919050565b60006020820190508181036000830152613be38161376e565b9050919050565b6000602082019050613bff6000830184613791565b92915050565b6000613c0f613c20565b9050613c1b8282613f78565b919050565b6000604051905090565b600067ffffffffffffffff821115613c4557613c446140df565b5b613c4e82614122565b9050602081019050919050565b600067ffffffffffffffff821115613c7657613c756140df565b5b613c7f82614122565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cfa82613e94565b9150613d0583613e94565b9250826fffffffffffffffffffffffffffffffff03821115613d2a57613d29614023565b5b828201905092915050565b6000613d4082613ed0565b9150613d4b83613ed0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8057613d7f614023565b5b828201905092915050565b6000613d9682613ed0565b9150613da183613ed0565b925082613db157613db0614052565b5b828204905092915050565b6000613dc782613ed0565b9150613dd283613ed0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e0b57613e0a614023565b5b828202905092915050565b6000613e2182613ed0565b9150613e2c83613ed0565b925082821015613e3f57613e3e614023565b5b828203905092915050565b6000613e5582613eb0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f07578082015181840152602081019050613eec565b83811115613f16576000848401525b50505050565b6000613f2782613ed0565b91506000821415613f3b57613f3a614023565b5b600182039050919050565b60006002820490506001821680613f5e57607f821691505b60208210811415613f7257613f71614081565b5b50919050565b613f8182614122565b810181811067ffffffffffffffff82111715613fa057613f9f6140df565b5b80604052505050565b6000613fb482613ed0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fe757613fe6614023565b5b600182019050919050565b6000613ffd82613ed0565b915061400883613ed0565b92508261401857614017614052565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6147cc81613e4a565b81146147d757600080fd5b50565b6147e381613e5c565b81146147ee57600080fd5b50565b6147fa81613e68565b811461480557600080fd5b50565b61481181613ed0565b811461481c57600080fd5b5056fea2646970667358221220725423bf692a71763718e99602d08087b4cc92ed005fcc46b2fe4b4a126ea24264736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d4851461077e578063e985e9c5146107a9578063ec9496ba146107e6578063f2fde38b1461080f578063f43a22dc146108385761020f565b8063b88d4fde146106c2578063c6682862146106eb578063c87b56dd14610716578063cd7c0326146107535761020f565b8063938e3d7b116100e7578063938e3d7b146105fe57806395d89b4114610627578063a035b1fe14610652578063a0712d681461067d578063a22cb465146106995761020f565b8063715018a6146105685780638069876d1461057f5780638da5cb5b146105aa57806391b7f5ed146105d55761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461046f5780635c975abb146104985780636352211e146104c35780636c0360eb1461050057806370a082311461052b5761020f565b80633ccfd60b146103c757806342842e0e146103de578063463fff79146104075780634f6ccce7146104325761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f57806332cb6b0c1461039c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906131ad565b610863565b604051610248919061384d565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613180565b6109ad565b005b34801561028657600080fd5b5061028f610a46565b60405161029c9190613868565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613250565b610ad8565b6040516102d991906137e6565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613140565b610b5d565b005b34801561031757600080fd5b50610320610c76565b60405161032d9190613bea565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061302a565b610c7f565b005b34801561036b57600080fd5b5061038660048036038101906103819190613140565b610c8f565b6040516103939190613bea565b60405180910390f35b3480156103a857600080fd5b506103b1610e8d565b6040516103be9190613bea565b60405180910390f35b3480156103d357600080fd5b506103dc610e93565b005b3480156103ea57600080fd5b506104056004803603810190610400919061302a565b610fcb565b005b34801561041357600080fd5b5061041c610feb565b6040516104299190613bea565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190613250565b610ff0565b6040516104669190613bea565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613207565b611043565b005b3480156104a457600080fd5b506104ad6110d9565b6040516104ba919061384d565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613250565b6110ec565b6040516104f791906137e6565b60405180910390f35b34801561050c57600080fd5b50610515611102565b6040516105229190613868565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190612fbd565b611190565b60405161055f9190613bea565b60405180910390f35b34801561057457600080fd5b5061057d611279565b005b34801561058b57600080fd5b50610594611301565b6040516105a19190613bea565b60405180910390f35b3480156105b657600080fd5b506105bf611307565b6040516105cc91906137e6565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613250565b611331565b005b34801561060a57600080fd5b5061062560048036038101906106209190613207565b6113b7565b005b34801561063357600080fd5b5061063c61144d565b6040516106499190613868565b60405180910390f35b34801561065e57600080fd5b506106676114df565b6040516106749190613bea565b60405180910390f35b61069760048036038101906106929190613250565b6114e5565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190613100565b611744565b005b3480156106ce57600080fd5b506106e960048036038101906106e4919061307d565b6118c5565b005b3480156106f757600080fd5b50610700611921565b60405161070d9190613868565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190613250565b611934565b60405161074a9190613868565b60405180910390f35b34801561075f57600080fd5b506107686119ed565b60405161077591906137e6565b60405180910390f35b34801561078a57600080fd5b50610793611a05565b6040516107a09190613868565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190612fea565b611a93565b6040516107dd919061384d565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613250565b611b27565b005b34801561081b57600080fd5b5061083660048036038101906108319190612fbd565b611bad565b005b34801561084457600080fd5b5061084d611ca5565b60405161085a9190613bea565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657506109a582611caa565b5b9050919050565b6109b5611d14565b73ffffffffffffffffffffffffffffffffffffffff166109d3611307565b73ffffffffffffffffffffffffffffffffffffffff1614610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613a4a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606060018054610a5590613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190613f46565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b6000610ae382611d1c565b610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990613baa565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b68826110ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090613aca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf8611d14565b73ffffffffffffffffffffffffffffffffffffffff161480610c275750610c2681610c21611d14565b611a93565b5b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d906139aa565b60405180910390fd5b610c71838383611d29565b505050565b60008054905090565b610c8a838383611ddb565b505050565b6000610c9a83611190565b8210610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd29061388a565b60405180910390fd5b6000610ce5610c76565b905060008060005b83811015610e4b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ddf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e375786841415610e28578195505050505050610e87565b8380610e3390613fa9565b9450505b508080610e4390613fa9565b915050610ced565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90613b8a565b60405180910390fd5b92915050565b600a5481565b610e9b611d14565b73ffffffffffffffffffffffffffffffffffffffff16610eb9611307565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613a4a565b60405180910390fd5b60004790506000610f1e611d14565b73ffffffffffffffffffffffffffffffffffffffff1682604051610f41906137d1565b60006040518083038185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050905080610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90613b6a565b60405180910390fd5b5050565b610fe6838383604051806020016040528060008152506118c5565b505050565b600381565b6000610ffa610c76565b821061103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061394a565b60405180910390fd5b819050919050565b61104b611d14565b73ffffffffffffffffffffffffffffffffffffffff16611069611307565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613a4a565b60405180910390fd5b80600890805190602001906110d5929190612d97565b5050565b600c60009054906101000a900460ff1681565b60006110f782612382565b600001519050919050565b6008805461110f90613f46565b80601f016020809104026020016040519081016040528092919081815260200182805461113b90613f46565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906139ea565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611281611d14565b73ffffffffffffffffffffffffffffffffffffffff1661129f611307565b73ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90613a4a565b60405180910390fd5b6112ff60006124dd565b565b6109c481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611339611d14565b73ffffffffffffffffffffffffffffffffffffffff16611357611307565b73ffffffffffffffffffffffffffffffffffffffff16146113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613a4a565b60405180910390fd5b80600b8190555050565b6113bf611d14565b73ffffffffffffffffffffffffffffffffffffffff166113dd611307565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613a4a565b60405180910390fd5b8060099080519060200190611449929190612d97565b5050565b60606002805461145c90613f46565b80601f016020809104026020016040519081016040528092919081815260200182805461148890613f46565b80156114d55780601f106114aa576101008083540402835291602001916114d5565b820191906000526020600020905b8154815290600101906020018083116114b857829003601f168201915b5050505050905090565b600b5481565b60006114ef611d14565b9050600c60009054906101000a900460ff1615611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906138aa565b60405180910390fd5b8161154a610c76565b6115549190613d35565b600a541015611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f906139ca565b60405180910390fd5b600082116115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d29061390a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613bca565b60405180910390fd5b611651610c76565b6109c4106116a257816003101561169d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116949061398a565b60405180910390fd5b611736565b81600a10156116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd9061392a565b60405180910390fd5b34600b54836116f59190613dbc565b14611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613aaa565b60405180910390fd5b5b61174081836125a3565b5050565b61174c611d14565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190613a6a565b60405180910390fd5b80600660006117c7611d14565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611874611d14565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b9919061384d565b60405180910390a35050565b6118d0848484611ddb565b6118dc848484846125c1565b61191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613b0a565b60405180910390fd5b50505050565b6040518060200160405280600081525081565b606061193f82611d1c565b61197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613a0a565b60405180910390fd5b60006008805461198d90613f46565b9050116119a957604051806020016040528060008152506119e6565b60086119b483612758565b604051806020016040528060008152506040516020016119d6939291906137a0565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60098054611a1290613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e90613f46565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b2f611d14565b73ffffffffffffffffffffffffffffffffffffffff16611b4d611307565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613a4a565b60405180910390fd5b80600a8190555050565b611bb5611d14565b73ffffffffffffffffffffffffffffffffffffffff16611bd3611307565b73ffffffffffffffffffffffffffffffffffffffff1614611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613a4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c90906138ca565b60405180910390fd5b611ca2816124dd565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611de682612382565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e0d611d14565b73ffffffffffffffffffffffffffffffffffffffff161480611e695750611e32611d14565b73ffffffffffffffffffffffffffffffffffffffff16611e5184610ad8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e855750611e848260000151611e7f611d14565b611a93565b5b905080611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe90613a8a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090613a2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa09061396a565b60405180910390fd5b611fb685858560016128b9565b611fc66000848460000151611d29565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121cc9190613d35565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123125761224281611d1c565b15612311576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461237a86868660016128bf565b505050505050565b61238a612e1d565b61239382611d1c565b6123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c9906138ea565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c45780925050506124d8565b5080806124d090613f1c565b9150506123d8565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125bd8282604051806020016040528060008152506128c5565b5050565b60006125e28473ffffffffffffffffffffffffffffffffffffffff16612d84565b1561274b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261260b611d14565b8786866040518563ffffffff1660e01b815260040161262d9493929190613801565b602060405180830381600087803b15801561264757600080fd5b505af192505050801561267857506040513d601f19601f8201168201806040525081019061267591906131da565b60015b6126fb573d80600081146126a8576040519150601f19603f3d011682016040523d82523d6000602084013e6126ad565b606091505b506000815114156126f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea90613b0a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612750565b600190505b949350505050565b606060008214156127a0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128b4565b600082905060005b600082146127d25780806127bb90613fa9565b915050600a826127cb9190613d8b565b91506127a8565b60008167ffffffffffffffff8111156127ee576127ed6140df565b5b6040519080825280601f01601f1916602001820160405280156128205781602001600182028036833780820191505090505b5090505b600085146128ad576001826128399190613e16565b9150600a856128489190613ff2565b60306128549190613d35565b60f81b81838151811061286a576128696140b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128a69190613d8b565b9450612824565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290613b4a565b60405180910390fd5b61294481611d1c565b15612984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b90613b2a565b60405180910390fd5b600083116129c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129be90613aea565b60405180910390fd5b6129d460008583866128b9565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ad19190613cef565b6fffffffffffffffffffffffffffffffff168152602001858360200151612af89190613cef565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d6757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d0760008884886125c1565b612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90613b0a565b60405180910390fd5b8180612d5190613fa9565b9250508080612d5f90613fa9565b915050612c96565b5080600081905550612d7c60008785886128bf565b505050505050565b600080823b905060008111915050919050565b828054612da390613f46565b90600052602060002090601f016020900481019282612dc55760008555612e0c565b82601f10612dde57805160ff1916838001178555612e0c565b82800160010185558215612e0c579182015b82811115612e0b578251825591602001919060010190612df0565b5b509050612e199190612e57565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e70576000816000905550600101612e58565b5090565b6000612e87612e8284613c2a565b613c05565b905082815260208101848484011115612ea357612ea2614113565b5b612eae848285613eda565b509392505050565b6000612ec9612ec484613c5b565b613c05565b905082815260208101848484011115612ee557612ee4614113565b5b612ef0848285613eda565b509392505050565b600081359050612f07816147c3565b92915050565b600081359050612f1c816147da565b92915050565b600081359050612f31816147f1565b92915050565b600081519050612f46816147f1565b92915050565b600082601f830112612f6157612f6061410e565b5b8135612f71848260208601612e74565b91505092915050565b600082601f830112612f8f57612f8e61410e565b5b8135612f9f848260208601612eb6565b91505092915050565b600081359050612fb781614808565b92915050565b600060208284031215612fd357612fd261411d565b5b6000612fe184828501612ef8565b91505092915050565b600080604083850312156130015761300061411d565b5b600061300f85828601612ef8565b925050602061302085828601612ef8565b9150509250929050565b6000806000606084860312156130435761304261411d565b5b600061305186828701612ef8565b935050602061306286828701612ef8565b925050604061307386828701612fa8565b9150509250925092565b600080600080608085870312156130975761309661411d565b5b60006130a587828801612ef8565b94505060206130b687828801612ef8565b93505060406130c787828801612fa8565b925050606085013567ffffffffffffffff8111156130e8576130e7614118565b5b6130f487828801612f4c565b91505092959194509250565b600080604083850312156131175761311661411d565b5b600061312585828601612ef8565b925050602061313685828601612f0d565b9150509250929050565b600080604083850312156131575761315661411d565b5b600061316585828601612ef8565b925050602061317685828601612fa8565b9150509250929050565b6000602082840312156131965761319561411d565b5b60006131a484828501612f0d565b91505092915050565b6000602082840312156131c3576131c261411d565b5b60006131d184828501612f22565b91505092915050565b6000602082840312156131f0576131ef61411d565b5b60006131fe84828501612f37565b91505092915050565b60006020828403121561321d5761321c61411d565b5b600082013567ffffffffffffffff81111561323b5761323a614118565b5b61324784828501612f7a565b91505092915050565b6000602082840312156132665761326561411d565b5b600061327484828501612fa8565b91505092915050565b61328681613e4a565b82525050565b61329581613e5c565b82525050565b60006132a682613ca1565b6132b08185613cb7565b93506132c0818560208601613ee9565b6132c981614122565b840191505092915050565b60006132df82613cac565b6132e98185613cd3565b93506132f9818560208601613ee9565b61330281614122565b840191505092915050565b600061331882613cac565b6133228185613ce4565b9350613332818560208601613ee9565b80840191505092915050565b6000815461334b81613f46565b6133558186613ce4565b945060018216600081146133705760018114613381576133b4565b60ff198316865281860193506133b4565b61338a85613c8c565b60005b838110156133ac5781548189015260018201915060208101905061338d565b838801955050505b50505092915050565b60006133ca602283613cd3565b91506133d582614133565b604082019050919050565b60006133ed600683613cd3565b91506133f882614182565b602082019050919050565b6000613410602683613cd3565b915061341b826141ab565b604082019050919050565b6000613433602a83613cd3565b915061343e826141fa565b604082019050919050565b6000613456600a83613cd3565b915061346182614249565b602082019050919050565b6000613479601683613cd3565b915061348482614272565b602082019050919050565b600061349c602383613cd3565b91506134a78261429b565b604082019050919050565b60006134bf602583613cd3565b91506134ca826142ea565b604082019050919050565b60006134e2601683613cd3565b91506134ed82614339565b602082019050919050565b6000613505603983613cd3565b915061351082614362565b604082019050919050565b6000613528601283613cd3565b9150613533826143b1565b602082019050919050565b600061354b602b83613cd3565b9150613556826143da565b604082019050919050565b600061356e601583613cd3565b915061357982614429565b602082019050919050565b6000613591602683613cd3565b915061359c82614452565b604082019050919050565b60006135b4602083613cd3565b91506135bf826144a1565b602082019050919050565b60006135d7601a83613cd3565b91506135e2826144ca565b602082019050919050565b60006135fa603283613cd3565b9150613605826144f3565b604082019050919050565b600061361d601683613cd3565b915061362882614542565b602082019050919050565b6000613640602283613cd3565b915061364b8261456b565b604082019050919050565b6000613663600083613cc8565b915061366e826145ba565b600082019050919050565b6000613686602383613cd3565b9150613691826145bd565b604082019050919050565b60006136a9603383613cd3565b91506136b48261460c565b604082019050919050565b60006136cc601d83613cd3565b91506136d78261465b565b602082019050919050565b60006136ef602183613cd3565b91506136fa82614684565b604082019050919050565b6000613712600e83613cd3565b915061371d826146d3565b602082019050919050565b6000613735602e83613cd3565b9150613740826146fc565b604082019050919050565b6000613758602d83613cd3565b91506137638261474b565b604082019050919050565b600061377b600c83613cd3565b91506137868261479a565b602082019050919050565b61379a81613ed0565b82525050565b60006137ac828661333e565b91506137b8828561330d565b91506137c4828461330d565b9150819050949350505050565b60006137dc82613656565b9150819050919050565b60006020820190506137fb600083018461327d565b92915050565b6000608082019050613816600083018761327d565b613823602083018661327d565b6138306040830185613791565b8181036060830152613842818461329b565b905095945050505050565b6000602082019050613862600083018461328c565b92915050565b6000602082019050818103600083015261388281846132d4565b905092915050565b600060208201905081810360008301526138a3816133bd565b9050919050565b600060208201905081810360008301526138c3816133e0565b9050919050565b600060208201905081810360008301526138e381613403565b9050919050565b6000602082019050818103600083015261390381613426565b9050919050565b6000602082019050818103600083015261392381613449565b9050919050565b600060208201905081810360008301526139438161346c565b9050919050565b600060208201905081810360008301526139638161348f565b9050919050565b60006020820190508181036000830152613983816134b2565b9050919050565b600060208201905081810360008301526139a3816134d5565b9050919050565b600060208201905081810360008301526139c3816134f8565b9050919050565b600060208201905081810360008301526139e38161351b565b9050919050565b60006020820190508181036000830152613a038161353e565b9050919050565b60006020820190508181036000830152613a2381613561565b9050919050565b60006020820190508181036000830152613a4381613584565b9050919050565b60006020820190508181036000830152613a63816135a7565b9050919050565b60006020820190508181036000830152613a83816135ca565b9050919050565b60006020820190508181036000830152613aa3816135ed565b9050919050565b60006020820190508181036000830152613ac381613610565b9050919050565b60006020820190508181036000830152613ae381613633565b9050919050565b60006020820190508181036000830152613b0381613679565b9050919050565b60006020820190508181036000830152613b238161369c565b9050919050565b60006020820190508181036000830152613b43816136bf565b9050919050565b60006020820190508181036000830152613b63816136e2565b9050919050565b60006020820190508181036000830152613b8381613705565b9050919050565b60006020820190508181036000830152613ba381613728565b9050919050565b60006020820190508181036000830152613bc38161374b565b9050919050565b60006020820190508181036000830152613be38161376e565b9050919050565b6000602082019050613bff6000830184613791565b92915050565b6000613c0f613c20565b9050613c1b8282613f78565b919050565b6000604051905090565b600067ffffffffffffffff821115613c4557613c446140df565b5b613c4e82614122565b9050602081019050919050565b600067ffffffffffffffff821115613c7657613c756140df565b5b613c7f82614122565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cfa82613e94565b9150613d0583613e94565b9250826fffffffffffffffffffffffffffffffff03821115613d2a57613d29614023565b5b828201905092915050565b6000613d4082613ed0565b9150613d4b83613ed0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8057613d7f614023565b5b828201905092915050565b6000613d9682613ed0565b9150613da183613ed0565b925082613db157613db0614052565b5b828204905092915050565b6000613dc782613ed0565b9150613dd283613ed0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e0b57613e0a614023565b5b828202905092915050565b6000613e2182613ed0565b9150613e2c83613ed0565b925082821015613e3f57613e3e614023565b5b828203905092915050565b6000613e5582613eb0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f07578082015181840152602081019050613eec565b83811115613f16576000848401525b50505050565b6000613f2782613ed0565b91506000821415613f3b57613f3a614023565b5b600182039050919050565b60006002820490506001821680613f5e57607f821691505b60208210811415613f7257613f71614081565b5b50919050565b613f8182614122565b810181811067ffffffffffffffff82111715613fa057613f9f6140df565b5b80604052505050565b6000613fb482613ed0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fe757613fe6614023565b5b600182019050919050565b6000613ffd82613ed0565b915061400883613ed0565b92508261401857614017614052565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6147cc81613e4a565b81146147d757600080fd5b50565b6147e381613e5c565b81146147ee57600080fd5b50565b6147fa81613e68565b811461480557600080fd5b50565b61481181613ed0565b811461481c57600080fd5b5056fea2646970667358221220725423bf692a71763718e99602d08087b4cc92ed005fcc46b2fe4b4a126ea24264736f6c63430008070033

Deployed Bytecode Sourcemap

38072:2362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26086:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39558:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27713:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29274:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28795:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24527:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30150:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25191:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38501:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39341:209;;;;;;;;;;;;;:::i;:::-;;30383:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38352:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24704:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39647:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38583:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27522:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38122:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26522:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2564:103;;;;;;;;;;;;;:::i;:::-;;38448:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1913:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39875:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39755:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27882:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38540:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38672:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29560:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30631:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38206:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40069:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38254:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38162:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29919:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39963:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2822:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38402:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26086:372;26188:4;26240:25;26225:40;;;:11;:40;;;;:105;;;;26297:33;26282:48;;;:11;:48;;;;26225:105;:172;;;;26362:35;26347:50;;;:11;:50;;;;26225:172;:225;;;;26414:36;26438:11;26414:23;:36::i;:::-;26225:225;26205:245;;26086:372;;;:::o;39558:81::-;2144:12;:10;:12::i;:::-;2133:23;;:7;:5;:7::i;:::-;:23;;;2125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39625:6:::1;39616;;:15;;;;;;;;;;;;;;;;;;39558:81:::0;:::o;27713:100::-;27767:13;27800:5;27793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27713:100;:::o;29274:214::-;29342:7;29370:16;29378:7;29370;:16::i;:::-;29362:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29456:15;:24;29472:7;29456:24;;;;;;;;;;;;;;;;;;;;;29449:31;;29274:214;;;:::o;28795:413::-;28868:13;28884:24;28900:7;28884:15;:24::i;:::-;28868:40;;28933:5;28927:11;;:2;:11;;;;28919:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29028:5;29012:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29037:37;29054:5;29061:12;:10;:12::i;:::-;29037:16;:37::i;:::-;29012:62;28990:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;29172:28;29181:2;29185:7;29194:5;29172:8;:28::i;:::-;28857:351;28795:413;;:::o;24527:100::-;24580:7;24607:12;;24600:19;;24527:100;:::o;30150:162::-;30276:28;30286:4;30292:2;30296:7;30276:9;:28::i;:::-;30150:162;;;:::o;25191:823::-;25280:7;25316:16;25326:5;25316:9;:16::i;:::-;25308:5;:24;25300:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25382:22;25407:13;:11;:13::i;:::-;25382:38;;25431:19;25465:25;25519:9;25514:426;25538:14;25534:1;:18;25514:426;;;25574:31;25608:11;:14;25620:1;25608:14;;;;;;;;;;;25574:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25667:1;25641:28;;:9;:14;;;:28;;;25637:103;;25710:9;:14;;;25690:34;;25637:103;25779:5;25758:26;;:17;:26;;;25754:175;;;25824:5;25809:11;:20;25805:77;;;25861:1;25854:8;;;;;;;;;25805:77;25900:13;;;;;:::i;:::-;;;;25754:175;25559:381;25554:3;;;;;:::i;:::-;;;;25514:426;;;;25950:56;;;;;;;;;;:::i;:::-;;;;;;;;25191:823;;;;;:::o;38501:32::-;;;;:::o;39341:209::-;2144:12;:10;:12::i;:::-;2133:23;;:7;:5;:7::i;:::-;:23;;;2125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39391:15:::1;39409:21;39391:39;;39442:12;39460;:10;:12::i;:::-;:17;;39485:7;39460:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39441:56;;;39516:7;39508:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;39380:170;;39341:209::o:0;30383:177::-;30513:39;30530:4;30536:2;30540:7;30513:39;;;;;;;;;;;;:16;:39::i;:::-;30383:177;;;:::o;38352:43::-;38394:1;38352:43;:::o;24704:187::-;24771:7;24807:13;:11;:13::i;:::-;24799:5;:21;24791:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;24878:5;24871:12;;24704:187;;;:::o;39647:100::-;2144:12;:10;:12::i;:::-;2133:23;;:7;:5;:7::i;:::-;:23;;;2125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39731:8:::1;39721:7;:18;;;;;;;;;;;;:::i;:::-;;39647:100:::0;:::o;38583:25::-;;;;;;;;;;;;;:::o;27522:124::-;27586:7;27613:20;27625:7;27613:11;:20::i;:::-;:25;;;27606:32;;27522:124;;;:::o;38122:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26522:221::-;26586:7;26631:1;26614:19;;:5;:19;;;;26606:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;26707:12;:19;26720:5;26707:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26699:36;;26692:43;;26522:221;;;:::o;2564:103::-;2144:12;:10;:12::i;:::-;2133:23;;:7;:5;:7::i;:::-;:23;;;2125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2629:30:::1;2656:1;2629:18;:30::i;:::-;2564:103::o:0;38448:46::-;38490:4;38448:46;:::o;1913:87::-;1959:7;1986:6;;;;;;;;;;;1979:13;;1913:87;:::o;39875:84::-;2144:12;:10;:12::i;:::-;2133:23;;:7;:5;:7::i;:::-;:23;;;2125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39947:8:::1;39939:5;:16;;;;39875:84:::0;:::o;39755:116::-;2144:12;:10;:12::i;:::-;2133:23;;:7;:5;:7::i;:::-;:23;;;2125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39851:12:::1;39837:11;:26;;;;;;;;;;;;:::i;:::-;;39755:116:::0;:::o;27882:104::-;27938:13;27971:7;27964:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27882:104;:::o;38540:34::-;;;;:::o;38672:657::-;38731:15;38749:12;:10;:12::i;:::-;38731:30;;38781:6;;;;;;;;;;;38780:7;38772:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;38847:7;38831:13;:11;:13::i;:::-;:23;;;;:::i;:::-;38817:10;;:37;;38809:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38906:1;38896:7;:11;38888:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;38954:7;38941:20;;:9;:20;;;38933:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;39013:13;:11;:13::i;:::-;38490:4;38994:32;38991:291;;39069:7;38394:1;39050:26;;39042:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;38991:291;;;39157:7;38439:2;39143:21;;39135:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39234:9;39225:5;;39215:7;:15;;;;:::i;:::-;:28;39207:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38991:291;39294:27;39304:7;39313;39294:9;:27::i;:::-;38720:609;38672:657;:::o;29560:288::-;29667:12;:10;:12::i;:::-;29655:24;;:8;:24;;;;29647:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29768:8;29723:18;:32;29742:12;:10;:12::i;:::-;29723:32;;;;;;;;;;;;;;;:42;29756:8;29723:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29821:8;29792:48;;29807:12;:10;:12::i;:::-;29792:48;;;29831:8;29792:48;;;;;;:::i;:::-;;;;;;;;29560:288;;:::o;30631:355::-;30790:28;30800:4;30806:2;30810:7;30790:9;:28::i;:::-;30851:48;30874:4;30880:2;30884:7;30893:5;30851:22;:48::i;:::-;30829:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;30631:355;;;;:::o;38206:41::-;;;;;;;;;;;;;;:::o;40069:362::-;40135:13;40169:17;40177:8;40169:7;:17::i;:::-;40161:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;40254:1;40236:7;40230:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;40312:7;40336:26;40353:8;40336:16;:26::i;:::-;40379:13;;;;;;;;;;;;40279:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40230:193;40223:200;;40069:362;;;:::o;38254:89::-;38301:42;38254:89;:::o;38162:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29919:164::-;30016:4;30040:18;:25;30059:5;30040:25;;;;;;;;;;;;;;;:35;30066:8;30040:35;;;;;;;;;;;;;;;;;;;;;;;;;30033:42;;29919:164;;;;:::o;39963:96::-;2144:12;:10;:12::i;:::-;2133:23;;:7;:5;:7::i;:::-;:23;;;2125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40046:9:::1;40033:10;:22;;;;39963:96:::0;:::o;2822:201::-;2144:12;:10;:12::i;:::-;2133:23;;:7;:5;:7::i;:::-;:23;;;2125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2931:1:::1;2911:22;;:8;:22;;;;2903:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2987:28;3006:8;2987:18;:28::i;:::-;2822:201:::0;:::o;38402:39::-;38439:2;38402:39;:::o;22590:157::-;22675:4;22714:25;22699:40;;;:11;:40;;;;22692:47;;22590:157;;;:::o;654:98::-;707:7;734:10;727:17;;654:98;:::o;31241:111::-;31298:4;31332:12;;31322:7;:22;31315:29;;31241:111;;;:::o;35283:196::-;35425:2;35398:15;:24;35414:7;35398:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35463:7;35459:2;35443:28;;35452:5;35443:28;;;;;;;;;;;;35283:196;;;:::o;33382:1783::-;33497:35;33535:20;33547:7;33535:11;:20::i;:::-;33497:58;;33568:22;33610:13;:18;;;33594:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33669:12;:10;:12::i;:::-;33645:36;;:20;33657:7;33645:11;:20::i;:::-;:36;;;33594:87;:154;;;;33698:50;33715:13;:18;;;33735:12;:10;:12::i;:::-;33698:16;:50::i;:::-;33594:154;33568:181;;33770:17;33762:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33885:4;33863:26;;:13;:18;;;:26;;;33855:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33965:1;33951:16;;:2;:16;;;;33943:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34022:43;34044:4;34050:2;34054:7;34063:1;34022:21;:43::i;:::-;34130:49;34147:1;34151:7;34160:13;:18;;;34130:8;:49::i;:::-;34414:1;34384:12;:18;34397:4;34384:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34458:1;34430:12;:16;34443:2;34430:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34506:43;;;;;;;;34521:2;34506:43;;;;;;34532:15;34506:43;;;;;34483:11;:20;34495:7;34483:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34789:19;34821:1;34811:7;:11;;;;:::i;:::-;34789:33;;34878:1;34837:43;;:11;:24;34849:11;34837:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34833:227;;;34901:20;34909:11;34901:7;:20::i;:::-;34897:152;;;34969:64;;;;;;;;34984:13;:18;;;34969:64;;;;;;35004:13;:28;;;34969:64;;;;;34942:11;:24;34954:11;34942:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34897:152;34833:227;35096:7;35092:2;35077:27;;35086:4;35077:27;;;;;;;;;;;;35115:42;35136:4;35142:2;35146:7;35155:1;35115:20;:42::i;:::-;33486:1679;;;33382:1783;;;:::o;26988:472::-;27049:21;;:::i;:::-;27091:16;27099:7;27091;:16::i;:::-;27083:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27172:12;27187:7;27172:22;;27167:216;27221:31;27255:11;:17;27267:4;27255:17;;;;;;;;;;;27221:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27317:1;27291:28;;:9;:14;;;:28;;;27287:85;;27347:9;27340:16;;;;;;27287:85;27206:177;27198:6;;;;;:::i;:::-;;;;27167:216;;26988:472;;;;:::o;3183:191::-;3257:16;3276:6;;;;;;;;;;;3257:25;;3302:8;3293:6;;:17;;;;;;;;;;;;;;;;;;3357:8;3326:40;;3347:8;3326:40;;;;;;;;;;;;3246:128;3183:191;:::o;31360:104::-;31429:27;31439:2;31443:8;31429:27;;;;;;;;;;;;:9;:27::i;:::-;31360:104;;:::o;36044:804::-;36199:4;36220:15;:2;:13;;;:15::i;:::-;36216:625;;;36272:2;36256:36;;;36293:12;:10;:12::i;:::-;36307:4;36313:7;36322:5;36256:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36252:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36519:1;36502:6;:13;:18;36498:273;;;36545:61;;;;;;;;;;:::i;:::-;;;;;;;;36498:273;36721:6;36715:13;36706:6;36702:2;36698:15;36691:38;36252:534;36389:45;;;36379:55;;;:6;:55;;;;36372:62;;;;;36216:625;36825:4;36818:11;;36044:804;;;;;;;:::o;3731:723::-;3787:13;4017:1;4008:5;:10;4004:53;;;4035:10;;;;;;;;;;;;;;;;;;;;;4004:53;4067:12;4082:5;4067:20;;4098:14;4123:78;4138:1;4130:4;:9;4123:78;;4156:8;;;;;:::i;:::-;;;;4187:2;4179:10;;;;;:::i;:::-;;;4123:78;;;4211:19;4243:6;4233:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4211:39;;4261:154;4277:1;4268:5;:10;4261:154;;4305:1;4295:11;;;;;:::i;:::-;;;4372:2;4364:5;:10;;;;:::i;:::-;4351:2;:24;;;;:::i;:::-;4338:39;;4321:6;4328;4321:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4401:2;4392:11;;;;;:::i;:::-;;;4261:154;;;4439:6;4425:21;;;;;3731:723;;;;:::o;37336:159::-;;;;;:::o;37907:158::-;;;;;:::o;31741:1387::-;31864:20;31887:12;;31864:35;;31932:1;31918:16;;:2;:16;;;;31910:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32117:21;32125:12;32117:7;:21::i;:::-;32116:22;32108:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32202:1;32191:8;:12;32183:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32256:61;32286:1;32290:2;32294:12;32308:8;32256:21;:61::i;:::-;32330:30;32363:12;:16;32376:2;32363:16;;;;;;;;;;;;;;;32330:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32409:135;;;;;;;;32465:8;32435:11;:19;;;:39;;;;:::i;:::-;32409:135;;;;;;32524:8;32489:11;:24;;;:44;;;;:::i;:::-;32409:135;;;;;32390:12;:16;32403:2;32390:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32583:43;;;;;;;;32598:2;32583:43;;;;;;32609:15;32583:43;;;;;32555:11;:25;32567:12;32555:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32639:20;32662:12;32639:35;;32692:9;32687:325;32711:8;32707:1;:12;32687:325;;;32771:12;32767:2;32746:38;;32763:1;32746:38;;;;;;;;;;;;32825:59;32856:1;32860:2;32864:12;32878:5;32825:22;:59::i;:::-;32799:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;32986:14;;;;;:::i;:::-;;;;32721:3;;;;;:::i;:::-;;;;32687:325;;;;33037:12;33022;:27;;;;33060:60;33089:1;33093:2;33097:12;33111:8;33060:20;:60::i;:::-;31853:1275;;;31741:1387;;;:::o;14482:387::-;14542:4;14750:12;14817:7;14805:20;14797:28;;14860:1;14853:4;:8;14846:15;;;14482:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:365::-;10234:3;10255:66;10319:1;10314:3;10255:66;:::i;:::-;10248:73;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10092:365;;;:::o;10463:366::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:::-;12837:3;12858:67;12922:2;12917:3;12858:67;:::i;:::-;12851:74;;12934:93;13023:3;12934:93;:::i;:::-;13052:2;13047:3;13043:12;13036:19;;12695:366;;;:::o;13067:::-;13209:3;13230:67;13294:2;13289:3;13230:67;:::i;:::-;13223:74;;13306:93;13395:3;13306:93;:::i;:::-;13424:2;13419:3;13415:12;13408:19;;13067:366;;;:::o;13439:::-;13581:3;13602:67;13666:2;13661:3;13602:67;:::i;:::-;13595:74;;13678:93;13767:3;13678:93;:::i;:::-;13796:2;13791:3;13787:12;13780:19;;13439:366;;;:::o;13811:::-;13953:3;13974:67;14038:2;14033:3;13974:67;:::i;:::-;13967:74;;14050:93;14139:3;14050:93;:::i;:::-;14168:2;14163:3;14159:12;14152:19;;13811:366;;;:::o;14183:::-;14325:3;14346:67;14410:2;14405:3;14346:67;:::i;:::-;14339:74;;14422:93;14511:3;14422:93;:::i;:::-;14540:2;14535:3;14531:12;14524:19;;14183:366;;;:::o;14555:::-;14697:3;14718:67;14782:2;14777:3;14718:67;:::i;:::-;14711:74;;14794:93;14883:3;14794:93;:::i;:::-;14912:2;14907:3;14903:12;14896:19;;14555:366;;;:::o;14927:::-;15069:3;15090:67;15154:2;15149:3;15090:67;:::i;:::-;15083:74;;15166:93;15255:3;15166:93;:::i;:::-;15284:2;15279:3;15275:12;15268:19;;14927:366;;;:::o;15299:::-;15441:3;15462:67;15526:2;15521:3;15462:67;:::i;:::-;15455:74;;15538:93;15627:3;15538:93;:::i;:::-;15656:2;15651:3;15647:12;15640:19;;15299:366;;;:::o;15671:::-;15813:3;15834:67;15898:2;15893:3;15834:67;:::i;:::-;15827:74;;15910:93;15999:3;15910:93;:::i;:::-;16028:2;16023:3;16019:12;16012:19;;15671:366;;;:::o;16043:::-;16185:3;16206:67;16270:2;16265:3;16206:67;:::i;:::-;16199:74;;16282:93;16371:3;16282:93;:::i;:::-;16400:2;16395:3;16391:12;16384:19;;16043:366;;;:::o;16415:::-;16557:3;16578:67;16642:2;16637:3;16578:67;:::i;:::-;16571:74;;16654:93;16743:3;16654:93;:::i;:::-;16772:2;16767:3;16763:12;16756:19;;16415:366;;;:::o;16787:398::-;16946:3;16967:83;17048:1;17043:3;16967:83;:::i;:::-;16960:90;;17059:93;17148:3;17059:93;:::i;:::-;17177:1;17172:3;17168:11;17161:18;;16787:398;;;:::o;17191:366::-;17333:3;17354:67;17418:2;17413:3;17354:67;:::i;:::-;17347:74;;17430:93;17519:3;17430:93;:::i;:::-;17548:2;17543:3;17539:12;17532:19;;17191:366;;;:::o;17563:::-;17705:3;17726:67;17790:2;17785:3;17726:67;:::i;:::-;17719:74;;17802:93;17891:3;17802:93;:::i;:::-;17920:2;17915:3;17911:12;17904:19;;17563:366;;;:::o;17935:::-;18077:3;18098:67;18162:2;18157:3;18098:67;:::i;:::-;18091:74;;18174:93;18263:3;18174:93;:::i;:::-;18292:2;18287:3;18283:12;18276:19;;17935:366;;;:::o;18307:::-;18449:3;18470:67;18534:2;18529:3;18470:67;:::i;:::-;18463:74;;18546:93;18635:3;18546:93;:::i;:::-;18664:2;18659:3;18655:12;18648:19;;18307:366;;;:::o;18679:::-;18821:3;18842:67;18906:2;18901:3;18842:67;:::i;:::-;18835:74;;18918:93;19007:3;18918:93;:::i;:::-;19036:2;19031:3;19027:12;19020:19;;18679:366;;;:::o;19051:::-;19193:3;19214:67;19278:2;19273:3;19214:67;:::i;:::-;19207:74;;19290:93;19379:3;19290:93;:::i;:::-;19408:2;19403:3;19399:12;19392:19;;19051:366;;;:::o;19795:::-;19937:3;19958:67;20022:2;20017:3;19958:67;:::i;:::-;19951:74;;20034:93;20123:3;20034:93;:::i;:::-;20152:2;20147:3;20143:12;20136:19;;19795:366;;;:::o;20167:::-;20309:3;20330:67;20394:2;20389:3;20330:67;:::i;:::-;20323:74;;20406:93;20495:3;20406:93;:::i;:::-;20524:2;20519:3;20515:12;20508:19;;20167:366;;;:::o;20539:118::-;20626:24;20644:5;20626:24;:::i;:::-;20621:3;20614:37;20539:118;;:::o;20663:589::-;20888:3;20910:92;20998:3;20989:6;20910:92;:::i;:::-;20903:99;;21019:95;21110:3;21101:6;21019:95;:::i;:::-;21012:102;;21131:95;21222:3;21213:6;21131:95;:::i;:::-;21124:102;;21243:3;21236:10;;20663:589;;;;;;:::o;21258:379::-;21442:3;21464:147;21607:3;21464:147;:::i;:::-;21457:154;;21628:3;21621:10;;21258:379;;;:::o;21643:222::-;21736:4;21774:2;21763:9;21759:18;21751:26;;21787:71;21855:1;21844:9;21840:17;21831:6;21787:71;:::i;:::-;21643:222;;;;:::o;21871:640::-;22066:4;22104:3;22093:9;22089:19;22081:27;;22118:71;22186:1;22175:9;22171:17;22162:6;22118:71;:::i;:::-;22199:72;22267:2;22256:9;22252:18;22243:6;22199:72;:::i;:::-;22281;22349:2;22338:9;22334:18;22325:6;22281:72;:::i;:::-;22400:9;22394:4;22390:20;22385:2;22374:9;22370:18;22363:48;22428:76;22499:4;22490:6;22428:76;:::i;:::-;22420:84;;21871:640;;;;;;;:::o;22517:210::-;22604:4;22642:2;22631:9;22627:18;22619:26;;22655:65;22717:1;22706:9;22702:17;22693:6;22655:65;:::i;:::-;22517:210;;;;:::o;22733:313::-;22846:4;22884:2;22873:9;22869:18;22861:26;;22933:9;22927:4;22923:20;22919:1;22908:9;22904:17;22897:47;22961:78;23034:4;23025:6;22961:78;:::i;:::-;22953:86;;22733:313;;;;:::o;23052:419::-;23218:4;23256:2;23245:9;23241:18;23233:26;;23305:9;23299:4;23295:20;23291:1;23280:9;23276:17;23269:47;23333:131;23459:4;23333:131;:::i;:::-;23325:139;;23052:419;;;:::o;23477:::-;23643:4;23681:2;23670:9;23666:18;23658:26;;23730:9;23724:4;23720:20;23716:1;23705:9;23701:17;23694:47;23758:131;23884:4;23758:131;:::i;:::-;23750:139;;23477:419;;;:::o;23902:::-;24068:4;24106:2;24095:9;24091:18;24083:26;;24155:9;24149:4;24145:20;24141:1;24130:9;24126:17;24119:47;24183:131;24309:4;24183:131;:::i;:::-;24175:139;;23902:419;;;:::o;24327:::-;24493:4;24531:2;24520:9;24516:18;24508:26;;24580:9;24574:4;24570:20;24566:1;24555:9;24551:17;24544:47;24608:131;24734:4;24608:131;:::i;:::-;24600:139;;24327:419;;;:::o;24752:::-;24918:4;24956:2;24945:9;24941:18;24933:26;;25005:9;24999:4;24995:20;24991:1;24980:9;24976:17;24969:47;25033:131;25159:4;25033:131;:::i;:::-;25025:139;;24752:419;;;:::o;25177:::-;25343:4;25381:2;25370:9;25366:18;25358:26;;25430:9;25424:4;25420:20;25416:1;25405:9;25401:17;25394:47;25458:131;25584:4;25458:131;:::i;:::-;25450:139;;25177:419;;;:::o;25602:::-;25768:4;25806:2;25795:9;25791:18;25783:26;;25855:9;25849:4;25845:20;25841:1;25830:9;25826:17;25819:47;25883:131;26009:4;25883:131;:::i;:::-;25875:139;;25602:419;;;:::o;26027:::-;26193:4;26231:2;26220:9;26216:18;26208:26;;26280:9;26274:4;26270:20;26266:1;26255:9;26251:17;26244:47;26308:131;26434:4;26308:131;:::i;:::-;26300:139;;26027:419;;;:::o;26452:::-;26618:4;26656:2;26645:9;26641:18;26633:26;;26705:9;26699:4;26695:20;26691:1;26680:9;26676:17;26669:47;26733:131;26859:4;26733:131;:::i;:::-;26725:139;;26452:419;;;:::o;26877:::-;27043:4;27081:2;27070:9;27066:18;27058:26;;27130:9;27124:4;27120:20;27116:1;27105:9;27101:17;27094:47;27158:131;27284:4;27158:131;:::i;:::-;27150:139;;26877:419;;;:::o;27302:::-;27468:4;27506:2;27495:9;27491:18;27483:26;;27555:9;27549:4;27545:20;27541:1;27530:9;27526:17;27519:47;27583:131;27709:4;27583:131;:::i;:::-;27575:139;;27302:419;;;:::o;27727:::-;27893:4;27931:2;27920:9;27916:18;27908:26;;27980:9;27974:4;27970:20;27966:1;27955:9;27951:17;27944:47;28008:131;28134:4;28008:131;:::i;:::-;28000:139;;27727:419;;;:::o;28152:::-;28318:4;28356:2;28345:9;28341:18;28333:26;;28405:9;28399:4;28395:20;28391:1;28380:9;28376:17;28369:47;28433:131;28559:4;28433:131;:::i;:::-;28425:139;;28152:419;;;:::o;28577:::-;28743:4;28781:2;28770:9;28766:18;28758:26;;28830:9;28824:4;28820:20;28816:1;28805:9;28801:17;28794:47;28858:131;28984:4;28858:131;:::i;:::-;28850:139;;28577:419;;;:::o;29002:::-;29168:4;29206:2;29195:9;29191:18;29183:26;;29255:9;29249:4;29245:20;29241:1;29230:9;29226:17;29219:47;29283:131;29409:4;29283:131;:::i;:::-;29275:139;;29002:419;;;:::o;29427:::-;29593:4;29631:2;29620:9;29616:18;29608:26;;29680:9;29674:4;29670:20;29666:1;29655:9;29651:17;29644:47;29708:131;29834:4;29708:131;:::i;:::-;29700:139;;29427:419;;;:::o;29852:::-;30018:4;30056:2;30045:9;30041:18;30033:26;;30105:9;30099:4;30095:20;30091:1;30080:9;30076:17;30069:47;30133:131;30259:4;30133:131;:::i;:::-;30125:139;;29852:419;;;:::o;30277:::-;30443:4;30481:2;30470:9;30466:18;30458:26;;30530:9;30524:4;30520:20;30516:1;30505:9;30501:17;30494:47;30558:131;30684:4;30558:131;:::i;:::-;30550:139;;30277:419;;;:::o;30702:::-;30868:4;30906:2;30895:9;30891:18;30883:26;;30955:9;30949:4;30945:20;30941:1;30930:9;30926:17;30919:47;30983:131;31109:4;30983:131;:::i;:::-;30975:139;;30702:419;;;:::o;31127:::-;31293:4;31331:2;31320:9;31316:18;31308:26;;31380:9;31374:4;31370:20;31366:1;31355:9;31351:17;31344:47;31408:131;31534:4;31408:131;:::i;:::-;31400:139;;31127:419;;;:::o;31552:::-;31718:4;31756:2;31745:9;31741:18;31733:26;;31805:9;31799:4;31795:20;31791:1;31780:9;31776:17;31769:47;31833:131;31959:4;31833:131;:::i;:::-;31825:139;;31552:419;;;:::o;31977:::-;32143:4;32181:2;32170:9;32166:18;32158:26;;32230:9;32224:4;32220:20;32216:1;32205:9;32201:17;32194:47;32258:131;32384:4;32258:131;:::i;:::-;32250:139;;31977:419;;;:::o;32402:::-;32568:4;32606:2;32595:9;32591:18;32583:26;;32655:9;32649:4;32645:20;32641:1;32630:9;32626:17;32619:47;32683:131;32809:4;32683:131;:::i;:::-;32675:139;;32402:419;;;:::o;32827:::-;32993:4;33031:2;33020:9;33016:18;33008:26;;33080:9;33074:4;33070:20;33066:1;33055:9;33051:17;33044:47;33108:131;33234:4;33108:131;:::i;:::-;33100:139;;32827:419;;;:::o;33252:::-;33418:4;33456:2;33445:9;33441:18;33433:26;;33505:9;33499:4;33495:20;33491:1;33480:9;33476:17;33469:47;33533:131;33659:4;33533:131;:::i;:::-;33525:139;;33252:419;;;:::o;34102:::-;34268:4;34306:2;34295:9;34291:18;34283:26;;34355:9;34349:4;34345:20;34341:1;34330:9;34326:17;34319:47;34383:131;34509:4;34383:131;:::i;:::-;34375:139;;34102:419;;;:::o;34527:::-;34693:4;34731:2;34720:9;34716:18;34708:26;;34780:9;34774:4;34770:20;34766:1;34755:9;34751:17;34744:47;34808:131;34934:4;34808:131;:::i;:::-;34800:139;;34527:419;;;:::o;34952:222::-;35045:4;35083:2;35072:9;35068:18;35060:26;;35096:71;35164:1;35153:9;35149:17;35140:6;35096:71;:::i;:::-;34952:222;;;;:::o;35180:129::-;35214:6;35241:20;;:::i;:::-;35231:30;;35270:33;35298:4;35290:6;35270:33;:::i;:::-;35180:129;;;:::o;35315:75::-;35348:6;35381:2;35375:9;35365:19;;35315:75;:::o;35396:307::-;35457:4;35547:18;35539:6;35536:30;35533:56;;;35569:18;;:::i;:::-;35533:56;35607:29;35629:6;35607:29;:::i;:::-;35599:37;;35691:4;35685;35681:15;35673:23;;35396:307;;;:::o;35709:308::-;35771:4;35861:18;35853:6;35850:30;35847:56;;;35883:18;;:::i;:::-;35847:56;35921:29;35943:6;35921:29;:::i;:::-;35913:37;;36005:4;35999;35995:15;35987:23;;35709:308;;;:::o;36023:141::-;36072:4;36095:3;36087:11;;36118:3;36115:1;36108:14;36152:4;36149:1;36139:18;36131:26;;36023:141;;;:::o;36170:98::-;36221:6;36255:5;36249:12;36239:22;;36170:98;;;:::o;36274:99::-;36326:6;36360:5;36354:12;36344:22;;36274:99;;;:::o;36379:168::-;36462:11;36496:6;36491:3;36484:19;36536:4;36531:3;36527:14;36512:29;;36379:168;;;;:::o;36553:147::-;36654:11;36691:3;36676:18;;36553:147;;;;:::o;36706:169::-;36790:11;36824:6;36819:3;36812:19;36864:4;36859:3;36855:14;36840:29;;36706:169;;;;:::o;36881:148::-;36983:11;37020:3;37005:18;;36881:148;;;;:::o;37035:273::-;37075:3;37094:20;37112:1;37094:20;:::i;:::-;37089:25;;37128:20;37146:1;37128:20;:::i;:::-;37123:25;;37250:1;37214:34;37210:42;37207:1;37204:49;37201:75;;;37256:18;;:::i;:::-;37201:75;37300:1;37297;37293:9;37286:16;;37035:273;;;;:::o;37314:305::-;37354:3;37373:20;37391:1;37373:20;:::i;:::-;37368:25;;37407:20;37425:1;37407:20;:::i;:::-;37402:25;;37561:1;37493:66;37489:74;37486:1;37483:81;37480:107;;;37567:18;;:::i;:::-;37480:107;37611:1;37608;37604:9;37597:16;;37314:305;;;;:::o;37625:185::-;37665:1;37682:20;37700:1;37682:20;:::i;:::-;37677:25;;37716:20;37734:1;37716:20;:::i;:::-;37711:25;;37755:1;37745:35;;37760:18;;:::i;:::-;37745:35;37802:1;37799;37795:9;37790:14;;37625:185;;;;:::o;37816:348::-;37856:7;37879:20;37897:1;37879:20;:::i;:::-;37874:25;;37913:20;37931:1;37913:20;:::i;:::-;37908:25;;38101:1;38033:66;38029:74;38026:1;38023:81;38018:1;38011:9;38004:17;38000:105;37997:131;;;38108:18;;:::i;:::-;37997:131;38156:1;38153;38149:9;38138:20;;37816:348;;;;:::o;38170:191::-;38210:4;38230:20;38248:1;38230:20;:::i;:::-;38225:25;;38264:20;38282:1;38264:20;:::i;:::-;38259:25;;38303:1;38300;38297:8;38294:34;;;38308:18;;:::i;:::-;38294:34;38353:1;38350;38346:9;38338:17;;38170:191;;;;:::o;38367:96::-;38404:7;38433:24;38451:5;38433:24;:::i;:::-;38422:35;;38367:96;;;:::o;38469:90::-;38503:7;38546:5;38539:13;38532:21;38521:32;;38469:90;;;:::o;38565:149::-;38601:7;38641:66;38634:5;38630:78;38619:89;;38565:149;;;:::o;38720:118::-;38757:7;38797:34;38790:5;38786:46;38775:57;;38720:118;;;:::o;38844:126::-;38881:7;38921:42;38914:5;38910:54;38899:65;;38844:126;;;:::o;38976:77::-;39013:7;39042:5;39031:16;;38976:77;;;:::o;39059:154::-;39143:6;39138:3;39133;39120:30;39205:1;39196:6;39191:3;39187:16;39180:27;39059:154;;;:::o;39219:307::-;39287:1;39297:113;39311:6;39308:1;39305:13;39297:113;;;39396:1;39391:3;39387:11;39381:18;39377:1;39372:3;39368:11;39361:39;39333:2;39330:1;39326:10;39321:15;;39297:113;;;39428:6;39425:1;39422:13;39419:101;;;39508:1;39499:6;39494:3;39490:16;39483:27;39419:101;39268:258;39219:307;;;:::o;39532:171::-;39571:3;39594:24;39612:5;39594:24;:::i;:::-;39585:33;;39640:4;39633:5;39630:15;39627:41;;;39648:18;;:::i;:::-;39627:41;39695:1;39688:5;39684:13;39677:20;;39532:171;;;:::o;39709:320::-;39753:6;39790:1;39784:4;39780:12;39770:22;;39837:1;39831:4;39827:12;39858:18;39848:81;;39914:4;39906:6;39902:17;39892:27;;39848:81;39976:2;39968:6;39965:14;39945:18;39942:38;39939:84;;;39995:18;;:::i;:::-;39939:84;39760:269;39709:320;;;:::o;40035:281::-;40118:27;40140:4;40118:27;:::i;:::-;40110:6;40106:40;40248:6;40236:10;40233:22;40212:18;40200:10;40197:34;40194:62;40191:88;;;40259:18;;:::i;:::-;40191:88;40299:10;40295:2;40288:22;40078:238;40035:281;;:::o;40322:233::-;40361:3;40384:24;40402:5;40384:24;:::i;:::-;40375:33;;40430:66;40423:5;40420:77;40417:103;;;40500:18;;:::i;:::-;40417:103;40547:1;40540:5;40536:13;40529:20;;40322:233;;;:::o;40561:176::-;40593:1;40610:20;40628:1;40610:20;:::i;:::-;40605:25;;40644:20;40662:1;40644:20;:::i;:::-;40639:25;;40683:1;40673:35;;40688:18;;:::i;:::-;40673:35;40729:1;40726;40722:9;40717:14;;40561:176;;;;:::o;40743:180::-;40791:77;40788:1;40781:88;40888:4;40885:1;40878:15;40912:4;40909:1;40902:15;40929:180;40977:77;40974:1;40967:88;41074:4;41071:1;41064:15;41098:4;41095:1;41088:15;41115:180;41163:77;41160:1;41153:88;41260:4;41257:1;41250:15;41284:4;41281:1;41274:15;41301:180;41349:77;41346:1;41339:88;41446:4;41443:1;41436:15;41470:4;41467:1;41460:15;41487:180;41535:77;41532:1;41525:88;41632:4;41629:1;41622:15;41656:4;41653:1;41646:15;41673:117;41782:1;41779;41772:12;41796:117;41905:1;41902;41895:12;41919:117;42028:1;42025;42018:12;42042:117;42151:1;42148;42141:12;42165:102;42206:6;42257:2;42253:7;42248:2;42241:5;42237:14;42233:28;42223:38;;42165:102;;;:::o;42273:221::-;42413:34;42409:1;42401:6;42397:14;42390:58;42482:4;42477:2;42469:6;42465:15;42458:29;42273:221;:::o;42500:156::-;42640:8;42636:1;42628:6;42624:14;42617:32;42500:156;:::o;42662:225::-;42802:34;42798:1;42790:6;42786:14;42779:58;42871:8;42866:2;42858:6;42854:15;42847:33;42662:225;:::o;42893:229::-;43033:34;43029:1;43021:6;43017:14;43010:58;43102:12;43097:2;43089:6;43085:15;43078:37;42893:229;:::o;43128:160::-;43268:12;43264:1;43256:6;43252:14;43245:36;43128:160;:::o;43294:172::-;43434:24;43430:1;43422:6;43418:14;43411:48;43294:172;:::o;43472:222::-;43612:34;43608:1;43600:6;43596:14;43589:58;43681:5;43676:2;43668:6;43664:15;43657:30;43472:222;:::o;43700:224::-;43840:34;43836:1;43828:6;43824:14;43817:58;43909:7;43904:2;43896:6;43892:15;43885:32;43700:224;:::o;43930:172::-;44070:24;44066:1;44058:6;44054:14;44047:48;43930:172;:::o;44108:244::-;44248:34;44244:1;44236:6;44232:14;44225:58;44317:27;44312:2;44304:6;44300:15;44293:52;44108:244;:::o;44358:168::-;44498:20;44494:1;44486:6;44482:14;44475:44;44358:168;:::o;44532:230::-;44672:34;44668:1;44660:6;44656:14;44649:58;44741:13;44736:2;44728:6;44724:15;44717:38;44532:230;:::o;44768:171::-;44908:23;44904:1;44896:6;44892:14;44885:47;44768:171;:::o;44945:225::-;45085:34;45081:1;45073:6;45069:14;45062:58;45154:8;45149:2;45141:6;45137:15;45130:33;44945:225;:::o;45176:182::-;45316:34;45312:1;45304:6;45300:14;45293:58;45176:182;:::o;45364:176::-;45504:28;45500:1;45492:6;45488:14;45481:52;45364:176;:::o;45546:237::-;45686:34;45682:1;45674:6;45670:14;45663:58;45755:20;45750:2;45742:6;45738:15;45731:45;45546:237;:::o;45789:172::-;45929:24;45925:1;45917:6;45913:14;45906:48;45789:172;:::o;45967:221::-;46107:34;46103:1;46095:6;46091:14;46084:58;46176:4;46171:2;46163:6;46159:15;46152:29;45967:221;:::o;46194:114::-;;:::o;46314:222::-;46454:34;46450:1;46442:6;46438:14;46431:58;46523:5;46518:2;46510:6;46506:15;46499:30;46314:222;:::o;46542:238::-;46682:34;46678:1;46670:6;46666:14;46659:58;46751:21;46746:2;46738:6;46734:15;46727:46;46542:238;:::o;46786:179::-;46926:31;46922:1;46914:6;46910:14;46903:55;46786:179;:::o;46971:220::-;47111:34;47107:1;47099:6;47095:14;47088:58;47180:3;47175:2;47167:6;47163:15;47156:28;46971:220;:::o;47197:164::-;47337:16;47333:1;47325:6;47321:14;47314:40;47197:164;:::o;47367:233::-;47507:34;47503:1;47495:6;47491:14;47484:58;47576:16;47571:2;47563:6;47559:15;47552:41;47367:233;:::o;47846:232::-;47986:34;47982:1;47974:6;47970:14;47963:58;48055:15;48050:2;48042:6;48038:15;48031:40;47846:232;:::o;48084:162::-;48224:14;48220:1;48212:6;48208:14;48201:38;48084:162;:::o;48252:122::-;48325:24;48343:5;48325:24;:::i;:::-;48318:5;48315:35;48305:63;;48364:1;48361;48354:12;48305:63;48252:122;:::o;48380:116::-;48450:21;48465:5;48450:21;:::i;:::-;48443:5;48440:32;48430:60;;48486:1;48483;48476:12;48430:60;48380:116;:::o;48502:120::-;48574:23;48591:5;48574:23;:::i;:::-;48567:5;48564:34;48554:62;;48612:1;48609;48602:12;48554:62;48502:120;:::o;48628:122::-;48701:24;48719:5;48701:24;:::i;:::-;48694:5;48691:35;48681:63;;48740:1;48737;48730:12;48681:63;48628:122;:::o

Swarm Source

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