ETH Price: $3,357.52 (+0.29%)

Token

rektgoblinstown (REKTGBL)
 

Overview

Max Total Supply

95 REKTGBL

Holders

24

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
selfeat.eth
Balance
1 REKTGBL
0xf0c15c42d12a66a64c18b7b3aaabd301850c2b67
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:
rektgoblinstown

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 public currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string internal uri;

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

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

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

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

    mapping(uint => StakingInfo) public _stakedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

contract rektgoblinstown is ERC721A, Ownable {

    constructor() ERC721A("rektgoblinstown", "REKTGBL") {}

    uint public maxSupply = 10000;
    bool public saleStatus;
    uint public price;   
    uint public maxPerTx = 10;    
    uint public maxPerWallet = 20;

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

    mapping(address => uint) public _minted; 

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

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

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

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

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }
    
    function setMaxPerTx(uint amount) external onlyOwner {
        maxPerTx = amount;
    }
    
    function setMaxPerWallet(uint amount) external onlyOwner {
        maxPerWallet = amount;
    }
    
    function setBaseURI(string calldata _uri) external onlyOwner {
        uri = _uri;
    }

    function getTotalSupply() public view returns(uint) {
        return currentIndex - 1;
    }

    function getMaxSupply() public view returns(uint) {
        return maxSupply;
    }

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

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

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

Contract Security Audit

Contract ABI

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

60806040526001600055612710600a55600a600d556014600e553480156200002657600080fd5b506040518060400160405280600f81526020017f72656b74676f626c696e73746f776e00000000000000000000000000000000008152506040518060400160405280600781526020017f52454b5447424c000000000000000000000000000000000000000000000000008152508160019080519060200190620000ab929190620001bb565b508060029080519060200190620000c4929190620001bb565b505050620000e7620000db620000ed60201b60201c565b620000f560201b60201c565b620002d0565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c9906200029a565b90600052602060002090601f016020900481019282620001ed576000855562000239565b82601f106200020857805160ff191683800117855562000239565b8280016001018555821562000239579182015b82811115620002385782518255916020019190600101906200021b565b5b5090506200024891906200024c565b5090565b5b80821115620002675760008160009055506001016200024d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b357607f821691505b60208210811415620002ca57620002c96200026b565b5b50919050565b614b6d80620002e06000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063c4e41b22116100ab578063e985e9c51161006f578063e985e9c5146107fa578063f19e75d414610837578063f2fde38b14610860578063f9020e3314610889578063f968adbe146108b457610225565b8063c4e41b2214610715578063c6f6f21614610740578063c87b56dd14610769578063d5abeb01146107a6578063e268e4d3146107d157610225565b806395d89b41116100f257806395d89b4114610651578063a035b1fe1461067c578063a0712d68146106a7578063a22cb465146106c3578063b88d4fde146106ec57610225565b8063715018a6146105a95780637de77ecc146105c05780638da5cb5b146105fd57806391b7f5ed1461062857610225565b80633ccfd60b116101b1578063502b33af11610175578063502b33af146104c657806355f804b3146104dd5780636352211e146105065780636f8b44b01461054357806370a082311461056c57610225565b80633ccfd60b146103f357806342842e0e1461040a578063453c2310146104335780634c0f38c21461045e5780634f6ccce71461048957610225565b806318160ddd116101f857806318160ddd146102f8578063204f490c1461032357806323b872dd1461036257806326987b601461038b5780632f745c59146103b657610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613223565b6108df565b60405161025e919061326b565b60405180910390f35b34801561027357600080fd5b5061027c610a29565b604051610289919061331f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613377565b610abb565b6040516102c691906133e5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061342c565b610b40565b005b34801561030457600080fd5b5061030d610c59565b60405161031a919061347b565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613377565b610c6f565b60405161035993929190613496565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906134cd565b610cb3565b005b34801561039757600080fd5b506103a0610d27565b6040516103ad919061347b565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d8919061342c565b610d2d565b6040516103ea919061347b565b60405180910390f35b3480156103ff57600080fd5b50610408610f1f565b005b34801561041657600080fd5b50610431600480360381019061042c91906134cd565b610fe4565b005b34801561043f57600080fd5b50610448611068565b604051610455919061347b565b60405180910390f35b34801561046a57600080fd5b5061047361106e565b604051610480919061347b565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613377565b611078565b6040516104bd919061347b565b60405180910390f35b3480156104d257600080fd5b506104db6110cb565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613585565b611173565b005b34801561051257600080fd5b5061052d60048036038101906105289190613377565b611205565b60405161053a91906133e5565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613377565b61121b565b005b34801561057857600080fd5b50610593600480360381019061058e91906135d2565b6112a1565b6040516105a0919061347b565b60405180910390f35b3480156105b557600080fd5b506105be61138a565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906135d2565b611412565b6040516105f4919061347b565b60405180910390f35b34801561060957600080fd5b5061061261142a565b60405161061f91906133e5565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613377565b611454565b005b34801561065d57600080fd5b506106666114da565b604051610673919061331f565b60405180910390f35b34801561068857600080fd5b5061069161156c565b60405161069e919061347b565b60405180910390f35b6106c160048036038101906106bc9190613377565b611572565b005b3480156106cf57600080fd5b506106ea60048036038101906106e5919061362b565b6119d1565b005b3480156106f857600080fd5b50610713600480360381019061070e919061379b565b611b52565b005b34801561072157600080fd5b5061072a611c12565b604051610737919061347b565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613377565b611c28565b005b34801561077557600080fd5b50610790600480360381019061078b9190613377565b611cae565b60405161079d919061331f565b60405180910390f35b3480156107b257600080fd5b506107bb611d56565b6040516107c8919061347b565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613377565b611d5c565b005b34801561080657600080fd5b50610821600480360381019061081c919061381e565b611de2565b60405161082e919061326b565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613377565b611e76565b005b34801561086c57600080fd5b50610887600480360381019061088291906135d2565b611fa4565b005b34801561089557600080fd5b5061089e61209c565b6040516108ab919061326b565b60405180910390f35b3480156108c057600080fd5b506108c96120af565b6040516108d6919061347b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a225750610a21826120b5565b5b9050919050565b606060018054610a389061388d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a649061388d565b8015610ab15780601f10610a8657610100808354040283529160200191610ab1565b820191906000526020600020905b815481529060010190602001808311610a9457829003601f168201915b5050505050905090565b6000610ac68261211f565b610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc90613931565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4b82611205565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb3906139c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bdb612138565b73ffffffffffffffffffffffffffffffffffffffff161480610c0a5750610c0981610c04612138565b611de2565b5b610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613a55565b60405180910390fd5b610c54838383612140565b505050565b60006001600054610c6a9190613aa4565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613b24565b60405180910390fd5b610d228383836121f2565b505050565b60005481565b6000610d38836112a1565b8210610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090613bb6565b60405180910390fd5b6000610d83610c59565b905060008060005b83811015610edd576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecf5786841415610ec6578195505050505050610f19565b83806001019450505b508080600101915050610d8b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613c48565b60405180910390fd5b92915050565b610f27612138565b73ffffffffffffffffffffffffffffffffffffffff16610f4561142a565b73ffffffffffffffffffffffffffffffffffffffff1614610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290613cb4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fe1573d6000803e3d6000fd5b50565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613b24565b60405180910390fd5b61106383838360405180602001604052806000815250611b52565b505050565b600e5481565b6000600a54905090565b6000611082610c59565b82106110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613d46565b60405180910390fd5b819050919050565b6110d3612138565b73ffffffffffffffffffffffffffffffffffffffff166110f161142a565b73ffffffffffffffffffffffffffffffffffffffff1614611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90613cb4565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61117b612138565b73ffffffffffffffffffffffffffffffffffffffff1661119961142a565b73ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690613cb4565b60405180910390fd5b8181600391906112009291906130da565b505050565b600061121082612732565b600001519050919050565b611223612138565b73ffffffffffffffffffffffffffffffffffffffff1661124161142a565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90613cb4565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613dd8565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611392612138565b73ffffffffffffffffffffffffffffffffffffffff166113b061142a565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613cb4565b60405180910390fd5b61141060006128cc565b565b600f6020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61145c612138565b73ffffffffffffffffffffffffffffffffffffffff1661147a61142a565b73ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613cb4565b60405180910390fd5b80600c8190555050565b6060600280546114e99061388d565b80601f01602080910402602001604051908101604052809291908181526020018280546115159061388d565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b5050505050905090565b600c5481565b600b60009054906101000a900460ff166115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890613e44565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156117a557600181111561164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490613eb0565b60405180910390fd5b80600061165a9190613ed0565b341461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613f76565b60405180910390fd5b600a5460005411156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613fe2565b60405180910390fd5b600a546001826000546116f59190614002565b6116ff9190613aa4565b1115611740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611737906140a4565b60405180910390fd5b61174a3382612992565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117999190614002565b925050819055506119ce565b34600c54826117b49190613ed0565b146117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90614110565b60405180910390fd5b600d54811115611839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118309061417c565b60405180910390fd5b600a546000541115611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613fe2565b60405180910390fd5b600a546001826000546118939190614002565b61189d9190613aa4565b11156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906140a4565b60405180910390fd5b600e5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461192c9190614002565b111561196d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611964906141e8565b60405180910390fd5b6119773382612992565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c69190614002565b925050819055505b50565b6119d9612138565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614254565b60405180910390fd5b8060076000611a54612138565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b01612138565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b46919061326b565b60405180910390a35050565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613b24565b60405180910390fd5b611bc18484846121f2565b611bcd848484846129b0565b611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c03906142e6565b60405180910390fd5b50505050565b60006001600054611c239190613aa4565b905090565b611c30612138565b73ffffffffffffffffffffffffffffffffffffffff16611c4e61142a565b73ffffffffffffffffffffffffffffffffffffffff1614611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90613cb4565b60405180910390fd5b80600d8190555050565b6060611cb98261211f565b611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef90614378565b60405180910390fd5b6000611d02612b38565b9050600081511415611d235760405180602001604052806000815250611d4e565b80611d2d84612bca565b604051602001611d3e929190614420565b6040516020818303038152906040525b915050919050565b600a5481565b611d64612138565b73ffffffffffffffffffffffffffffffffffffffff16611d8261142a565b73ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613cb4565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e7e612138565b73ffffffffffffffffffffffffffffffffffffffff16611e9c61142a565b73ffffffffffffffffffffffffffffffffffffffff1614611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613cb4565b60405180910390fd5b600a546000541115611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f309061449b565b60405180910390fd5b600a54600182600054611f4c9190614002565b611f569190613aa4565b1115611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906140a4565b60405180910390fd5b611fa13382612992565b50565b611fac612138565b73ffffffffffffffffffffffffffffffffffffffff16611fca61142a565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790613cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120879061452d565b60405180910390fd5b612099816128cc565b50565b600b60009054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156121315750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121fd82612732565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612224612138565b73ffffffffffffffffffffffffffffffffffffffff1614806122805750612249612138565b73ffffffffffffffffffffffffffffffffffffffff1661226884610abb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229c575061229b8260000151612296612138565b611de2565b5b9050806122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d5906145bf565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614651565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b7906146e3565b60405180910390fd5b6123cd8585856001612d2b565b6123dd6000848460000151612140565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126c2576126218161211f565b156126c15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461272b8585856001612d31565b5050505050565b61273a613160565b6127438261211f565b612782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277990614775565b60405180910390fd5b60008290505b6000811061288b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461287c5780925050506128c7565b50808060019003915050612788565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be90614807565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129ac828260405180602001604052806000815250612d37565b5050565b60006129d18473ffffffffffffffffffffffffffffffffffffffff16612d49565b15612b2b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129fa612138565b8786866040518563ffffffff1660e01b8152600401612a1c949392919061487c565b6020604051808303816000875af1925050508015612a5857506040513d601f19601f82011682018060405250810190612a5591906148dd565b60015b612adb573d8060008114612a88576040519150601f19603f3d011682016040523d82523d6000602084013e612a8d565b606091505b50600081511415612ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aca906142e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b30565b600190505b949350505050565b606060038054612b479061388d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b739061388d565b8015612bc05780601f10612b9557610100808354040283529160200191612bc0565b820191906000526020600020905b815481529060010190602001808311612ba357829003601f168201915b5050505050905090565b60606000821415612c12576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d26565b600082905060005b60008214612c44578080612c2d9061490a565b915050600a82612c3d9190614982565b9150612c1a565b60008167ffffffffffffffff811115612c6057612c5f613670565b5b6040519080825280601f01601f191660200182016040528015612c925781602001600182028036833780820191505090505b5090505b60008514612d1f57600182612cab9190613aa4565b9150600a85612cba91906149b3565b6030612cc69190614002565b60f81b818381518110612cdc57612cdb6149e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d189190614982565b9450612c96565b8093505050505b919050565b50505050565b50505050565b612d448383836001612d5c565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc990614a85565b60405180910390fd5b6000841415612e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0d90614b17565b60405180910390fd5b612e236000868387612d2b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130bd57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156130a85761306860008884886129b0565b6130a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309e906142e6565b60405180910390fd5b5b81806001019250508080600101915050612ff1565b5080600081905550506130d36000868387612d31565b5050505050565b8280546130e69061388d565b90600052602060002090601f016020900481019282613108576000855561314f565b82601f1061312157803560ff191683800117855561314f565b8280016001018555821561314f579182015b8281111561314e578235825591602001919060010190613133565b5b50905061315c919061319a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131b357600081600090555060010161319b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613200816131cb565b811461320b57600080fd5b50565b60008135905061321d816131f7565b92915050565b600060208284031215613239576132386131c1565b5b60006132478482850161320e565b91505092915050565b60008115159050919050565b61326581613250565b82525050565b6000602082019050613280600083018461325c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132c05780820151818401526020810190506132a5565b838111156132cf576000848401525b50505050565b6000601f19601f8301169050919050565b60006132f182613286565b6132fb8185613291565b935061330b8185602086016132a2565b613314816132d5565b840191505092915050565b6000602082019050818103600083015261333981846132e6565b905092915050565b6000819050919050565b61335481613341565b811461335f57600080fd5b50565b6000813590506133718161334b565b92915050565b60006020828403121561338d5761338c6131c1565b5b600061339b84828501613362565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133cf826133a4565b9050919050565b6133df816133c4565b82525050565b60006020820190506133fa60008301846133d6565b92915050565b613409816133c4565b811461341457600080fd5b50565b60008135905061342681613400565b92915050565b60008060408385031215613443576134426131c1565b5b600061345185828601613417565b925050602061346285828601613362565b9150509250929050565b61347581613341565b82525050565b6000602082019050613490600083018461346c565b92915050565b60006060820190506134ab600083018661325c565b6134b8602083018561325c565b6134c5604083018461346c565b949350505050565b6000806000606084860312156134e6576134e56131c1565b5b60006134f486828701613417565b935050602061350586828701613417565b925050604061351686828701613362565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261354557613544613520565b5b8235905067ffffffffffffffff81111561356257613561613525565b5b60208301915083600182028301111561357e5761357d61352a565b5b9250929050565b6000806020838503121561359c5761359b6131c1565b5b600083013567ffffffffffffffff8111156135ba576135b96131c6565b5b6135c68582860161352f565b92509250509250929050565b6000602082840312156135e8576135e76131c1565b5b60006135f684828501613417565b91505092915050565b61360881613250565b811461361357600080fd5b50565b600081359050613625816135ff565b92915050565b60008060408385031215613642576136416131c1565b5b600061365085828601613417565b925050602061366185828601613616565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136a8826132d5565b810181811067ffffffffffffffff821117156136c7576136c6613670565b5b80604052505050565b60006136da6131b7565b90506136e6828261369f565b919050565b600067ffffffffffffffff82111561370657613705613670565b5b61370f826132d5565b9050602081019050919050565b82818337600083830152505050565b600061373e613739846136eb565b6136d0565b90508281526020810184848401111561375a5761375961366b565b5b61376584828561371c565b509392505050565b600082601f83011261378257613781613520565b5b813561379284826020860161372b565b91505092915050565b600080600080608085870312156137b5576137b46131c1565b5b60006137c387828801613417565b94505060206137d487828801613417565b93505060406137e587828801613362565b925050606085013567ffffffffffffffff811115613806576138056131c6565b5b6138128782880161376d565b91505092959194509250565b60008060408385031215613835576138346131c1565b5b600061384385828601613417565b925050602061385485828601613417565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138a557607f821691505b602082108114156138b9576138b861385e565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061391b602d83613291565b9150613926826138bf565b604082019050919050565b6000602082019050818103600083015261394a8161390e565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006139ad602283613291565b91506139b882613951565b604082019050919050565b600060208201905081810360008301526139dc816139a0565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613a3f603983613291565b9150613a4a826139e3565b604082019050919050565b60006020820190508181036000830152613a6e81613a32565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613aaf82613341565b9150613aba83613341565b925082821015613acd57613acc613a75565b5b828203905092915050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000613b0e600d83613291565b9150613b1982613ad8565b602082019050919050565b60006020820190508181036000830152613b3d81613b01565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ba0602283613291565b9150613bab82613b44565b604082019050919050565b60006020820190508181036000830152613bcf81613b93565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613c32602e83613291565b9150613c3d82613bd6565b604082019050919050565b60006020820190508181036000830152613c6181613c25565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c9e602083613291565b9150613ca982613c68565b602082019050919050565b60006020820190508181036000830152613ccd81613c91565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d30602383613291565b9150613d3b82613cd4565b604082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613dc2602b83613291565b9150613dcd82613d66565b604082019050919050565b60006020820190508181036000830152613df181613db5565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613e2e601083613291565b9150613e3982613df8565b602082019050919050565b60006020820190508181036000830152613e5d81613e21565b9050919050565b7f4f4e4c595f4f4e455f465245455f414c4c4f5745440000000000000000000000600082015250565b6000613e9a601583613291565b9150613ea582613e64565b602082019050919050565b60006020820190508181036000830152613ec981613e8d565b9050919050565b6000613edb82613341565b9150613ee683613341565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1f57613f1e613a75565b5b828202905092915050565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b6000613f60601183613291565b9150613f6b82613f2a565b602082019050919050565b60006020820190508181036000830152613f8f81613f53565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b6000613fcc601283613291565b9150613fd782613f96565b602082019050919050565b60006020820190508181036000830152613ffb81613fbf565b9050919050565b600061400d82613341565b915061401883613341565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561404d5761404c613a75565b5b828201905092915050565b7f4e4f545f454e4f5547485f544f4b454e53000000000000000000000000000000600082015250565b600061408e601183613291565b915061409982614058565b602082019050919050565b600060208201905081810360008301526140bd81614081565b9050919050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b60006140fa601183613291565b9150614105826140c4565b602082019050919050565b60006020820190508181036000830152614129816140ed565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000614166601383613291565b915061417182614130565b602082019050919050565b6000602082019050818103600083015261419581614159565b9050919050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b60006141d2601783613291565b91506141dd8261419c565b602082019050919050565b60006020820190508181036000830152614201816141c5565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061423e601a83613291565b915061424982614208565b602082019050919050565b6000602082019050818103600083015261426d81614231565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006142d0603383613291565b91506142db82614274565b604082019050919050565b600060208201905081810360008301526142ff816142c3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614362602f83613291565b915061436d82614306565b604082019050919050565b6000602082019050818103600083015261439181614355565b9050919050565b600081905092915050565b60006143ae82613286565b6143b88185614398565b93506143c88185602086016132a2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061440a600583614398565b9150614415826143d4565b600582019050919050565b600061442c82856143a3565b915061443882846143a3565b9150614443826143fd565b91508190509392505050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b6000614485600c83613291565b91506144908261444f565b602082019050919050565b600060208201905081810360008301526144b481614478565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614517602683613291565b9150614522826144bb565b604082019050919050565b600060208201905081810360008301526145468161450a565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006145a9603283613291565b91506145b48261454d565b604082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061463b602683613291565b9150614646826145df565b604082019050919050565b6000602082019050818103600083015261466a8161462e565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146cd602583613291565b91506146d882614671565b604082019050919050565b600060208201905081810360008301526146fc816146c0565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061475f602a83613291565b915061476a82614703565b604082019050919050565b6000602082019050818103600083015261478e81614752565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006147f1602f83613291565b91506147fc82614795565b604082019050919050565b60006020820190508181036000830152614820816147e4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061484e82614827565b6148588185614832565b93506148688185602086016132a2565b614871816132d5565b840191505092915050565b600060808201905061489160008301876133d6565b61489e60208301866133d6565b6148ab604083018561346c565b81810360608301526148bd8184614843565b905095945050505050565b6000815190506148d7816131f7565b92915050565b6000602082840312156148f3576148f26131c1565b5b6000614901848285016148c8565b91505092915050565b600061491582613341565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561494857614947613a75565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061498d82613341565b915061499883613341565b9250826149a8576149a7614953565b5b828204905092915050565b60006149be82613341565b91506149c983613341565b9250826149d9576149d8614953565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a6f602183613291565b9150614a7a82614a13565b604082019050919050565b60006020820190508181036000830152614a9e81614a62565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614b01602883613291565b9150614b0c82614aa5565b604082019050919050565b60006020820190508181036000830152614b3081614af4565b905091905056fea2646970667358221220393a9990d05854a04839b3fb8b8fae54bc773bd88b868997482f5cda94c5eb4564736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063c4e41b22116100ab578063e985e9c51161006f578063e985e9c5146107fa578063f19e75d414610837578063f2fde38b14610860578063f9020e3314610889578063f968adbe146108b457610225565b8063c4e41b2214610715578063c6f6f21614610740578063c87b56dd14610769578063d5abeb01146107a6578063e268e4d3146107d157610225565b806395d89b41116100f257806395d89b4114610651578063a035b1fe1461067c578063a0712d68146106a7578063a22cb465146106c3578063b88d4fde146106ec57610225565b8063715018a6146105a95780637de77ecc146105c05780638da5cb5b146105fd57806391b7f5ed1461062857610225565b80633ccfd60b116101b1578063502b33af11610175578063502b33af146104c657806355f804b3146104dd5780636352211e146105065780636f8b44b01461054357806370a082311461056c57610225565b80633ccfd60b146103f357806342842e0e1461040a578063453c2310146104335780634c0f38c21461045e5780634f6ccce71461048957610225565b806318160ddd116101f857806318160ddd146102f8578063204f490c1461032357806323b872dd1461036257806326987b601461038b5780632f745c59146103b657610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613223565b6108df565b60405161025e919061326b565b60405180910390f35b34801561027357600080fd5b5061027c610a29565b604051610289919061331f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613377565b610abb565b6040516102c691906133e5565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061342c565b610b40565b005b34801561030457600080fd5b5061030d610c59565b60405161031a919061347b565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613377565b610c6f565b60405161035993929190613496565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906134cd565b610cb3565b005b34801561039757600080fd5b506103a0610d27565b6040516103ad919061347b565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d8919061342c565b610d2d565b6040516103ea919061347b565b60405180910390f35b3480156103ff57600080fd5b50610408610f1f565b005b34801561041657600080fd5b50610431600480360381019061042c91906134cd565b610fe4565b005b34801561043f57600080fd5b50610448611068565b604051610455919061347b565b60405180910390f35b34801561046a57600080fd5b5061047361106e565b604051610480919061347b565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613377565b611078565b6040516104bd919061347b565b60405180910390f35b3480156104d257600080fd5b506104db6110cb565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613585565b611173565b005b34801561051257600080fd5b5061052d60048036038101906105289190613377565b611205565b60405161053a91906133e5565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613377565b61121b565b005b34801561057857600080fd5b50610593600480360381019061058e91906135d2565b6112a1565b6040516105a0919061347b565b60405180910390f35b3480156105b557600080fd5b506105be61138a565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906135d2565b611412565b6040516105f4919061347b565b60405180910390f35b34801561060957600080fd5b5061061261142a565b60405161061f91906133e5565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613377565b611454565b005b34801561065d57600080fd5b506106666114da565b604051610673919061331f565b60405180910390f35b34801561068857600080fd5b5061069161156c565b60405161069e919061347b565b60405180910390f35b6106c160048036038101906106bc9190613377565b611572565b005b3480156106cf57600080fd5b506106ea60048036038101906106e5919061362b565b6119d1565b005b3480156106f857600080fd5b50610713600480360381019061070e919061379b565b611b52565b005b34801561072157600080fd5b5061072a611c12565b604051610737919061347b565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613377565b611c28565b005b34801561077557600080fd5b50610790600480360381019061078b9190613377565b611cae565b60405161079d919061331f565b60405180910390f35b3480156107b257600080fd5b506107bb611d56565b6040516107c8919061347b565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613377565b611d5c565b005b34801561080657600080fd5b50610821600480360381019061081c919061381e565b611de2565b60405161082e919061326b565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613377565b611e76565b005b34801561086c57600080fd5b50610887600480360381019061088291906135d2565b611fa4565b005b34801561089557600080fd5b5061089e61209c565b6040516108ab919061326b565b60405180910390f35b3480156108c057600080fd5b506108c96120af565b6040516108d6919061347b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a225750610a21826120b5565b5b9050919050565b606060018054610a389061388d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a649061388d565b8015610ab15780601f10610a8657610100808354040283529160200191610ab1565b820191906000526020600020905b815481529060010190602001808311610a9457829003601f168201915b5050505050905090565b6000610ac68261211f565b610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc90613931565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4b82611205565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb3906139c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bdb612138565b73ffffffffffffffffffffffffffffffffffffffff161480610c0a5750610c0981610c04612138565b611de2565b5b610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613a55565b60405180910390fd5b610c54838383612140565b505050565b60006001600054610c6a9190613aa4565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613b24565b60405180910390fd5b610d228383836121f2565b505050565b60005481565b6000610d38836112a1565b8210610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090613bb6565b60405180910390fd5b6000610d83610c59565b905060008060005b83811015610edd576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecf5786841415610ec6578195505050505050610f19565b83806001019450505b508080600101915050610d8b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613c48565b60405180910390fd5b92915050565b610f27612138565b73ffffffffffffffffffffffffffffffffffffffff16610f4561142a565b73ffffffffffffffffffffffffffffffffffffffff1614610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290613cb4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fe1573d6000803e3d6000fd5b50565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613b24565b60405180910390fd5b61106383838360405180602001604052806000815250611b52565b505050565b600e5481565b6000600a54905090565b6000611082610c59565b82106110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613d46565b60405180910390fd5b819050919050565b6110d3612138565b73ffffffffffffffffffffffffffffffffffffffff166110f161142a565b73ffffffffffffffffffffffffffffffffffffffff1614611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90613cb4565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61117b612138565b73ffffffffffffffffffffffffffffffffffffffff1661119961142a565b73ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690613cb4565b60405180910390fd5b8181600391906112009291906130da565b505050565b600061121082612732565b600001519050919050565b611223612138565b73ffffffffffffffffffffffffffffffffffffffff1661124161142a565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90613cb4565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613dd8565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611392612138565b73ffffffffffffffffffffffffffffffffffffffff166113b061142a565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613cb4565b60405180910390fd5b61141060006128cc565b565b600f6020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61145c612138565b73ffffffffffffffffffffffffffffffffffffffff1661147a61142a565b73ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613cb4565b60405180910390fd5b80600c8190555050565b6060600280546114e99061388d565b80601f01602080910402602001604051908101604052809291908181526020018280546115159061388d565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b5050505050905090565b600c5481565b600b60009054906101000a900460ff166115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890613e44565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156117a557600181111561164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490613eb0565b60405180910390fd5b80600061165a9190613ed0565b341461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613f76565b60405180910390fd5b600a5460005411156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613fe2565b60405180910390fd5b600a546001826000546116f59190614002565b6116ff9190613aa4565b1115611740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611737906140a4565b60405180910390fd5b61174a3382612992565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117999190614002565b925050819055506119ce565b34600c54826117b49190613ed0565b146117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90614110565b60405180910390fd5b600d54811115611839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118309061417c565b60405180910390fd5b600a546000541115611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613fe2565b60405180910390fd5b600a546001826000546118939190614002565b61189d9190613aa4565b11156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906140a4565b60405180910390fd5b600e5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461192c9190614002565b111561196d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611964906141e8565b60405180910390fd5b6119773382612992565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c69190614002565b925050819055505b50565b6119d9612138565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614254565b60405180910390fd5b8060076000611a54612138565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b01612138565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b46919061326b565b60405180910390a35050565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613b24565b60405180910390fd5b611bc18484846121f2565b611bcd848484846129b0565b611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c03906142e6565b60405180910390fd5b50505050565b60006001600054611c239190613aa4565b905090565b611c30612138565b73ffffffffffffffffffffffffffffffffffffffff16611c4e61142a565b73ffffffffffffffffffffffffffffffffffffffff1614611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90613cb4565b60405180910390fd5b80600d8190555050565b6060611cb98261211f565b611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef90614378565b60405180910390fd5b6000611d02612b38565b9050600081511415611d235760405180602001604052806000815250611d4e565b80611d2d84612bca565b604051602001611d3e929190614420565b6040516020818303038152906040525b915050919050565b600a5481565b611d64612138565b73ffffffffffffffffffffffffffffffffffffffff16611d8261142a565b73ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613cb4565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e7e612138565b73ffffffffffffffffffffffffffffffffffffffff16611e9c61142a565b73ffffffffffffffffffffffffffffffffffffffff1614611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613cb4565b60405180910390fd5b600a546000541115611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f309061449b565b60405180910390fd5b600a54600182600054611f4c9190614002565b611f569190613aa4565b1115611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906140a4565b60405180910390fd5b611fa13382612992565b50565b611fac612138565b73ffffffffffffffffffffffffffffffffffffffff16611fca61142a565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790613cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120879061452d565b60405180910390fd5b612099816128cc565b50565b600b60009054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156121315750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121fd82612732565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612224612138565b73ffffffffffffffffffffffffffffffffffffffff1614806122805750612249612138565b73ffffffffffffffffffffffffffffffffffffffff1661226884610abb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229c575061229b8260000151612296612138565b611de2565b5b9050806122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d5906145bf565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614651565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b7906146e3565b60405180910390fd5b6123cd8585856001612d2b565b6123dd6000848460000151612140565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126c2576126218161211f565b156126c15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461272b8585856001612d31565b5050505050565b61273a613160565b6127438261211f565b612782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277990614775565b60405180910390fd5b60008290505b6000811061288b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461287c5780925050506128c7565b50808060019003915050612788565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be90614807565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129ac828260405180602001604052806000815250612d37565b5050565b60006129d18473ffffffffffffffffffffffffffffffffffffffff16612d49565b15612b2b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129fa612138565b8786866040518563ffffffff1660e01b8152600401612a1c949392919061487c565b6020604051808303816000875af1925050508015612a5857506040513d601f19601f82011682018060405250810190612a5591906148dd565b60015b612adb573d8060008114612a88576040519150601f19603f3d011682016040523d82523d6000602084013e612a8d565b606091505b50600081511415612ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aca906142e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b30565b600190505b949350505050565b606060038054612b479061388d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b739061388d565b8015612bc05780601f10612b9557610100808354040283529160200191612bc0565b820191906000526020600020905b815481529060010190602001808311612ba357829003601f168201915b5050505050905090565b60606000821415612c12576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d26565b600082905060005b60008214612c44578080612c2d9061490a565b915050600a82612c3d9190614982565b9150612c1a565b60008167ffffffffffffffff811115612c6057612c5f613670565b5b6040519080825280601f01601f191660200182016040528015612c925781602001600182028036833780820191505090505b5090505b60008514612d1f57600182612cab9190613aa4565b9150600a85612cba91906149b3565b6030612cc69190614002565b60f81b818381518110612cdc57612cdb6149e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d189190614982565b9450612c96565b8093505050505b919050565b50505050565b50505050565b612d448383836001612d5c565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc990614a85565b60405180910390fd5b6000841415612e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0d90614b17565b60405180910390fd5b612e236000868387612d2b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130bd57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156130a85761306860008884886129b0565b6130a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309e906142e6565b60405180910390fd5b5b81806001019250508080600101915050612ff1565b5080600081905550506130d36000868387612d31565b5050505050565b8280546130e69061388d565b90600052602060002090601f016020900481019282613108576000855561314f565b82601f1061312157803560ff191683800117855561314f565b8280016001018555821561314f579182015b8281111561314e578235825591602001919060010190613133565b5b50905061315c919061319a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131b357600081600090555060010161319b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613200816131cb565b811461320b57600080fd5b50565b60008135905061321d816131f7565b92915050565b600060208284031215613239576132386131c1565b5b60006132478482850161320e565b91505092915050565b60008115159050919050565b61326581613250565b82525050565b6000602082019050613280600083018461325c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132c05780820151818401526020810190506132a5565b838111156132cf576000848401525b50505050565b6000601f19601f8301169050919050565b60006132f182613286565b6132fb8185613291565b935061330b8185602086016132a2565b613314816132d5565b840191505092915050565b6000602082019050818103600083015261333981846132e6565b905092915050565b6000819050919050565b61335481613341565b811461335f57600080fd5b50565b6000813590506133718161334b565b92915050565b60006020828403121561338d5761338c6131c1565b5b600061339b84828501613362565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133cf826133a4565b9050919050565b6133df816133c4565b82525050565b60006020820190506133fa60008301846133d6565b92915050565b613409816133c4565b811461341457600080fd5b50565b60008135905061342681613400565b92915050565b60008060408385031215613443576134426131c1565b5b600061345185828601613417565b925050602061346285828601613362565b9150509250929050565b61347581613341565b82525050565b6000602082019050613490600083018461346c565b92915050565b60006060820190506134ab600083018661325c565b6134b8602083018561325c565b6134c5604083018461346c565b949350505050565b6000806000606084860312156134e6576134e56131c1565b5b60006134f486828701613417565b935050602061350586828701613417565b925050604061351686828701613362565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261354557613544613520565b5b8235905067ffffffffffffffff81111561356257613561613525565b5b60208301915083600182028301111561357e5761357d61352a565b5b9250929050565b6000806020838503121561359c5761359b6131c1565b5b600083013567ffffffffffffffff8111156135ba576135b96131c6565b5b6135c68582860161352f565b92509250509250929050565b6000602082840312156135e8576135e76131c1565b5b60006135f684828501613417565b91505092915050565b61360881613250565b811461361357600080fd5b50565b600081359050613625816135ff565b92915050565b60008060408385031215613642576136416131c1565b5b600061365085828601613417565b925050602061366185828601613616565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136a8826132d5565b810181811067ffffffffffffffff821117156136c7576136c6613670565b5b80604052505050565b60006136da6131b7565b90506136e6828261369f565b919050565b600067ffffffffffffffff82111561370657613705613670565b5b61370f826132d5565b9050602081019050919050565b82818337600083830152505050565b600061373e613739846136eb565b6136d0565b90508281526020810184848401111561375a5761375961366b565b5b61376584828561371c565b509392505050565b600082601f83011261378257613781613520565b5b813561379284826020860161372b565b91505092915050565b600080600080608085870312156137b5576137b46131c1565b5b60006137c387828801613417565b94505060206137d487828801613417565b93505060406137e587828801613362565b925050606085013567ffffffffffffffff811115613806576138056131c6565b5b6138128782880161376d565b91505092959194509250565b60008060408385031215613835576138346131c1565b5b600061384385828601613417565b925050602061385485828601613417565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138a557607f821691505b602082108114156138b9576138b861385e565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b600061391b602d83613291565b9150613926826138bf565b604082019050919050565b6000602082019050818103600083015261394a8161390e565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006139ad602283613291565b91506139b882613951565b604082019050919050565b600060208201905081810360008301526139dc816139a0565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613a3f603983613291565b9150613a4a826139e3565b604082019050919050565b60006020820190508181036000830152613a6e81613a32565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613aaf82613341565b9150613aba83613341565b925082821015613acd57613acc613a75565b5b828203905092915050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000613b0e600d83613291565b9150613b1982613ad8565b602082019050919050565b60006020820190508181036000830152613b3d81613b01565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ba0602283613291565b9150613bab82613b44565b604082019050919050565b60006020820190508181036000830152613bcf81613b93565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613c32602e83613291565b9150613c3d82613bd6565b604082019050919050565b60006020820190508181036000830152613c6181613c25565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c9e602083613291565b9150613ca982613c68565b602082019050919050565b60006020820190508181036000830152613ccd81613c91565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d30602383613291565b9150613d3b82613cd4565b604082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613dc2602b83613291565b9150613dcd82613d66565b604082019050919050565b60006020820190508181036000830152613df181613db5565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613e2e601083613291565b9150613e3982613df8565b602082019050919050565b60006020820190508181036000830152613e5d81613e21565b9050919050565b7f4f4e4c595f4f4e455f465245455f414c4c4f5745440000000000000000000000600082015250565b6000613e9a601583613291565b9150613ea582613e64565b602082019050919050565b60006020820190508181036000830152613ec981613e8d565b9050919050565b6000613edb82613341565b9150613ee683613341565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1f57613f1e613a75565b5b828202905092915050565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b6000613f60601183613291565b9150613f6b82613f2a565b602082019050919050565b60006020820190508181036000830152613f8f81613f53565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b6000613fcc601283613291565b9150613fd782613f96565b602082019050919050565b60006020820190508181036000830152613ffb81613fbf565b9050919050565b600061400d82613341565b915061401883613341565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561404d5761404c613a75565b5b828201905092915050565b7f4e4f545f454e4f5547485f544f4b454e53000000000000000000000000000000600082015250565b600061408e601183613291565b915061409982614058565b602082019050919050565b600060208201905081810360008301526140bd81614081565b9050919050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b60006140fa601183613291565b9150614105826140c4565b602082019050919050565b60006020820190508181036000830152614129816140ed565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000614166601383613291565b915061417182614130565b602082019050919050565b6000602082019050818103600083015261419581614159565b9050919050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b60006141d2601783613291565b91506141dd8261419c565b602082019050919050565b60006020820190508181036000830152614201816141c5565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061423e601a83613291565b915061424982614208565b602082019050919050565b6000602082019050818103600083015261426d81614231565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006142d0603383613291565b91506142db82614274565b604082019050919050565b600060208201905081810360008301526142ff816142c3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614362602f83613291565b915061436d82614306565b604082019050919050565b6000602082019050818103600083015261439181614355565b9050919050565b600081905092915050565b60006143ae82613286565b6143b88185614398565b93506143c88185602086016132a2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061440a600583614398565b9150614415826143d4565b600582019050919050565b600061442c82856143a3565b915061443882846143a3565b9150614443826143fd565b91508190509392505050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b6000614485600c83613291565b91506144908261444f565b602082019050919050565b600060208201905081810360008301526144b481614478565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614517602683613291565b9150614522826144bb565b604082019050919050565b600060208201905081810360008301526145468161450a565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006145a9603283613291565b91506145b48261454d565b604082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061463b602683613291565b9150614646826145df565b604082019050919050565b6000602082019050818103600083015261466a8161462e565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146cd602583613291565b91506146d882614671565b604082019050919050565b600060208201905081810360008301526146fc816146c0565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061475f602a83613291565b915061476a82614703565b604082019050919050565b6000602082019050818103600083015261478e81614752565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006147f1602f83613291565b91506147fc82614795565b604082019050919050565b60006020820190508181036000830152614820816147e4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061484e82614827565b6148588185614832565b93506148688185602086016132a2565b614871816132d5565b840191505092915050565b600060808201905061489160008301876133d6565b61489e60208301866133d6565b6148ab604083018561346c565b81810360608301526148bd8184614843565b905095945050505050565b6000815190506148d7816131f7565b92915050565b6000602082840312156148f3576148f26131c1565b5b6000614901848285016148c8565b91505092915050565b600061491582613341565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561494857614947613a75565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061498d82613341565b915061499883613341565b9250826149a8576149a7614953565b5b828204905092915050565b60006149be82613341565b91506149c983613341565b9250826149d9576149d8614953565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a6f602183613291565b9150614a7a82614a13565b604082019050919050565b60006020820190508181036000830152614a9e81614a62565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614b01602883613291565b9150614b0c82614aa5565b604082019050919050565b60006020820190508181036000830152614b3081614af4565b905091905056fea2646970667358221220393a9990d05854a04839b3fb8b8fae54bc773bd88b868997482f5cda94c5eb4564736f6c634300080c0033

Deployed Bytecode Sourcemap

38757:3212:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25407:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27293:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28865:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28386:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23660:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23410:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;29741:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22659:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24328:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39542:109;;;;;;;;;;;;;:::i;:::-;;30041:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39001:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40358:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23841:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39659:87;;;;;;;;;;;;;:::i;:::-;;40158:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27102:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39754:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25843:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4436:94;;;;;;;;;;;;;:::i;:::-;;39265:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3785:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39853:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27462:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38938:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40938:1028;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29151:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30356:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40256:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39948:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27637:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38873:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40049:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29510:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40680:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4685:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38909:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38965:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25407:372;25509:4;25561:25;25546:40;;;:11;:40;;;;:105;;;;25618:33;25603:48;;;:11;:48;;;;25546:105;:172;;;;25683:35;25668:50;;;:11;:50;;;;25546:172;:225;;;;25735:36;25759:11;25735:23;:36::i;:::-;25546:225;25526:245;;25407:372;;;:::o;27293:100::-;27347:13;27380:5;27373:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27293:100;:::o;28865:214::-;28933:7;28961:16;28969:7;28961;:16::i;:::-;28953:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29047:15;:24;29063:7;29047:24;;;;;;;;;;;;;;;;;;;;;29040:31;;28865:214;;;:::o;28386:413::-;28459:13;28475:24;28491:7;28475:15;:24::i;:::-;28459:40;;28524:5;28518:11;;:2;:11;;;;28510:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28619:5;28603:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28628:37;28645:5;28652:12;:10;:12::i;:::-;28628:16;:37::i;:::-;28603:62;28581:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28763:28;28772:2;28776:7;28785:5;28763:8;:28::i;:::-;28448:351;28386:413;;:::o;23660:104::-;23713:7;23755:1;23740:12;;:16;;;;:::i;:::-;23733:23;;23660:104;:::o;23410:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29741:229::-;29876:13;:22;29890:7;29876:22;;;;;;;;;;;:29;;;;;;;;;;;;29875:30;29867:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29934:28;29944:4;29950:2;29954:7;29934:9;:28::i;:::-;29741:229;;;:::o;22659:31::-;;;;:::o;24328:1007::-;24417:7;24453:16;24463:5;24453:9;:16::i;:::-;24445:5;:24;24437:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24519:22;24544:13;:11;:13::i;:::-;24519:38;;24568:19;24598:25;24787:9;24782:466;24802:14;24798:1;:18;24782:466;;;24842:31;24876:11;:14;24888:1;24876:14;;;;;;;;;;;24842:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24939:1;24913:28;;:9;:14;;;:28;;;24909:111;;24986:9;:14;;;24966:34;;24909:111;25063:5;25042:26;;:17;:26;;;25038:195;;;25112:5;25097:11;:20;25093:85;;;25153:1;25146:8;;;;;;;;;25093:85;25200:13;;;;;;;25038:195;24823:425;24818:3;;;;;;;24782:466;;;;25271:56;;;;;;;;;;:::i;:::-;;;;;;;;24328:1007;;;;;:::o;39542:109::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39600:10:::1;39592:28;;:51;39621:21;39592:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39542:109::o:0;30041:244::-;30180:13;:22;30194:7;30180:22;;;;;;;;;;;:29;;;;;;;;;;;;30179:30;30171:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30238:39;30255:4;30261:2;30265:7;30238:39;;;;;;;;;;;;:16;:39::i;:::-;30041:244;;;:::o;39001:29::-;;;;:::o;40358:85::-;40402:4;40426:9;;40419:16;;40358:85;:::o;23841:187::-;23908:7;23944:13;:11;:13::i;:::-;23936:5;:21;23928:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;24015:5;24008:12;;23841:187;;;:::o;39659:87::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39728:10:::1;;;;;;;;;;;39727:11;39714:10;;:24;;;;;;;;;;;;;;;;;;39659:87::o:0;40158:90::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40236:4:::1;;40230:3;:10;;;;;;;:::i;:::-;;40158:90:::0;;:::o;27102:124::-;27166:7;27193:20;27205:7;27193:11;:20::i;:::-;:25;;;27186:32;;27102:124;;;:::o;39754:91::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39831:6:::1;39819:9;:18;;;;39754:91:::0;:::o;25843:221::-;25907:7;25952:1;25935:19;;:5;:19;;;;25927:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;26028:12;:19;26041:5;26028:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26020:36;;26013:43;;25843:221;;;:::o;4436:94::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4501:21:::1;4519:1;4501:9;:21::i;:::-;4436:94::o:0;39265:39::-;;;;;;;;;;;;;;;;;:::o;3785:87::-;3831:7;3858:6;;;;;;;;;;;3851:13;;3785:87;:::o;39853:83::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39922:6:::1;39914:5;:14;;;;39853:83:::0;:::o;27462:104::-;27518:13;27551:7;27544:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27462:104;:::o;38938:17::-;;;;:::o;40938:1028::-;41004:10;;;;;;;;;;;40996:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;41071:1;41049:7;:19;41057:10;41049:19;;;;;;;;;;;;;;;;:23;41046:913;;;41106:1;41096:6;:11;;41088:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;41173:6;41169:1;:10;;;;:::i;:::-;41156:9;:23;41148:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;41240:9;;41224:12;;:25;;41216:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41326:9;;41320:1;41312:6;41297:12;;:21;;;;:::i;:::-;41296:25;;;;:::i;:::-;41295:40;;41287:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;41372:29;41382:10;41394:6;41372:9;:29::i;:::-;41439:6;41416:7;:19;41424:10;41416:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41046:913;;;41512:9;41503:5;;41494:6;:14;;;;:::i;:::-;:27;41486:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41576:8;;41566:6;:18;;41558:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;41647:9;;41631:12;;:25;;41623:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41733:9;;41727:1;41719:6;41704:12;;:21;;;;:::i;:::-;41703:25;;;;:::i;:::-;41702:40;;41694:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;41819:12;;41809:6;41787:7;:19;41795:10;41787:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;41779:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;41874:29;41884:10;41896:6;41874:9;:29::i;:::-;41941:6;41918:7;:19;41926:10;41918:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41046:913;40938:1028;:::o;29151:288::-;29258:12;:10;:12::i;:::-;29246:24;;:8;:24;;;;29238:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29359:8;29314:18;:32;29333:12;:10;:12::i;:::-;29314:32;;;;;;;;;;;;;;;:42;29347:8;29314:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29412:8;29383:48;;29398:12;:10;:12::i;:::-;29383:48;;;29422:8;29383:48;;;;;;:::i;:::-;;;;;;;;29151:288;;:::o;30356:422::-;30524:13;:22;30538:7;30524:22;;;;;;;;;;;:29;;;;;;;;;;;;30523:30;30515:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30582:28;30592:4;30598:2;30602:7;30582:9;:28::i;:::-;30643:48;30666:4;30672:2;30676:7;30685:5;30643:22;:48::i;:::-;30621:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;30356:422;;;;:::o;40256:94::-;40302:4;40341:1;40326:12;;:16;;;;:::i;:::-;40319:23;;40256:94;:::o;39948:89::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40023:6:::1;40012:8;:17;;;;39948:89:::0;:::o;27637:344::-;27710:13;27744:16;27752:7;27744;:16::i;:::-;27736:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27825:21;27849:10;:8;:10::i;:::-;27825:34;;27902:1;27883:7;27877:21;:26;;:96;;;;;;;;;;;;;;;;;27930:7;27939:18;:7;:16;:18::i;:::-;27913:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27877:96;27870:103;;;27637:344;;;:::o;38873:29::-;;;;:::o;40049:97::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40132:6:::1;40117:12;:21;;;;40049:97:::0;:::o;29510:164::-;29607:4;29631:18;:25;29650:5;29631:25;;;;;;;;;;;;;;;:35;29657:8;29631:35;;;;;;;;;;;;;;;;;;;;;;;;;29624:42;;29510:164;;;;:::o;40680:244::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40769:9:::1;;40753:12;;:25;;40745:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;40845:9;;40839:1;40831:6;40816:12;;:21;;;;:::i;:::-;40815:25;;;;:::i;:::-;40814:40;;40806:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;40887:29;40897:10;40909:6;40887:9;:29::i;:::-;40680:244:::0;:::o;4685:192::-;4016:12;:10;:12::i;:::-;4005:23;;:7;:5;:7::i;:::-;:23;;;3997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4794:1:::1;4774:22;;:8;:22;;;;4766:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4850:19;4860:8;4850:9;:19::i;:::-;4685:192:::0;:::o;38909:22::-;;;;;;;;;;;;;:::o;38965:25::-;;;;:::o;15387:157::-;15472:4;15511:25;15496:40;;;:11;:40;;;;15489:47;;15387:157;;;:::o;31033:126::-;31090:4;31124:12;;31114:7;:22;:37;;;;;31150:1;31140:7;:11;31114:37;31107:44;;31033:126;;;:::o;2661:98::-;2714:7;2741:10;2734:17;;2661:98;:::o;35968:196::-;36110:2;36083:15;:24;36099:7;36083:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36148:7;36144:2;36128:28;;36137:5;36128:28;;;;;;;;;;;;35968:196;;;:::o;33848:2002::-;33963:35;34001:20;34013:7;34001:11;:20::i;:::-;33963:58;;34034:22;34076:13;:18;;;34060:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34135:12;:10;:12::i;:::-;34111:36;;:20;34123:7;34111:11;:20::i;:::-;:36;;;34060:87;:154;;;;34164:50;34181:13;:18;;;34201:12;:10;:12::i;:::-;34164:16;:50::i;:::-;34060:154;34034:181;;34236:17;34228:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34351:4;34329:26;;:13;:18;;;:26;;;34321:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34431:1;34417:16;;:2;:16;;;;34409:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34488:43;34510:4;34516:2;34520:7;34529:1;34488:21;:43::i;:::-;34596:49;34613:1;34617:7;34626:13;:18;;;34596:8;:49::i;:::-;34971:1;34941:12;:18;34954:4;34941:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35015:1;34987:12;:16;35000:2;34987:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35061:2;35033:11;:20;35045:7;35033:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;35123:15;35078:11;:20;35090:7;35078:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;35391:19;35423:1;35413:7;:11;35391:33;;35484:1;35443:43;;:11;:24;35455:11;35443:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35439:295;;;35511:20;35519:11;35511:7;:20::i;:::-;35507:212;;;35588:13;:18;;;35556:11;:24;35568:11;35556:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;35671:13;:28;;;35629:11;:24;35641:11;35629:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;35507:212;35439:295;34916:829;35781:7;35777:2;35762:27;;35771:4;35762:27;;;;;;;;;;;;35800:42;35821:4;35827:2;35831:7;35840:1;35800:20;:42::i;:::-;33952:1898;;33848:2002;;;:::o;26503:537::-;26564:21;;:::i;:::-;26606:16;26614:7;26606;:16::i;:::-;26598:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26712:12;26727:7;26712:22;;26707:245;26744:1;26736:4;:9;26707:245;;26774:31;26808:11;:17;26820:4;26808:17;;;;;;;;;;;26774:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26874:1;26848:28;;:9;:14;;;:28;;;26844:93;;26908:9;26901:16;;;;;;26844:93;26755:197;26747:6;;;;;;;;26707:245;;;;26975:57;;;;;;;;;;:::i;:::-;;;;;;;;26503:537;;;;:::o;4885:173::-;4941:16;4960:6;;;;;;;;;;;4941:25;;4986:8;4977:6;;:17;;;;;;;;;;;;;;;;;;5041:8;5010:40;;5031:8;5010:40;;;;;;;;;;;;4930:128;4885:173;:::o;31167:104::-;31236:27;31246:2;31250:8;31236:27;;;;;;;;;;;;:9;:27::i;:::-;31167:104;;:::o;36729:804::-;36884:4;36905:15;:2;:13;;;:15::i;:::-;36901:625;;;36957:2;36941:36;;;36978:12;:10;:12::i;:::-;36992:4;36998:7;37007:5;36941:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36937:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37204:1;37187:6;:13;:18;37183:273;;;37230:61;;;;;;;;;;:::i;:::-;;;;;;;;37183:273;37406:6;37400:13;37391:6;37387:2;37383:15;37376:38;36937:534;37074:45;;;37064:55;;;:6;:55;;;;37057:62;;;;;36901:625;37510:4;37503:11;;36729:804;;;;;;;:::o;28229:95::-;28280:13;28313:3;28306:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28229:95;:::o;360:723::-;416:13;646:1;637:5;:10;633:53;;;664:10;;;;;;;;;;;;;;;;;;;;;633:53;696:12;711:5;696:20;;727:14;752:78;767:1;759:4;:9;752:78;;785:8;;;;;:::i;:::-;;;;816:2;808:10;;;;;:::i;:::-;;;752:78;;;840:19;872:6;862:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840:39;;890:154;906:1;897:5;:10;890:154;;934:1;924:11;;;;;:::i;:::-;;;1001:2;993:5;:10;;;;:::i;:::-;980:2;:24;;;;:::i;:::-;967:39;;950:6;957;950:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1030:2;1021:11;;;;;:::i;:::-;;;890:154;;;1068:6;1054:21;;;;;360:723;;;;:::o;38021:159::-;;;;;:::o;38592:158::-;;;;;:::o;31634:163::-;31757:32;31763:2;31767:8;31777:5;31784:4;31757:5;:32::i;:::-;31634:163;;;:::o;5746:387::-;5806:4;6014:12;6081:7;6069:20;6061:28;;6124:1;6117:4;:8;6110:15;;;5746:387;;;:::o;32056:1538::-;32195:20;32218:12;;32195:35;;32263:1;32249:16;;:2;:16;;;;32241:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32334:1;32322:8;:13;;32314:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32393:61;32423:1;32427:2;32431:12;32445:8;32393:21;:61::i;:::-;32768:8;32732:12;:16;32745:2;32732:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32833:8;32792:12;:16;32805:2;32792:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32892:2;32859:11;:25;32871:12;32859:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32959:15;32909:11;:25;32921:12;32909:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32992:20;33015:12;32992:35;;33049:9;33044:415;33064:8;33060:1;:12;33044:415;;;33128:12;33124:2;33103:38;;33120:1;33103:38;;;;;;;;;;;;33164:4;33160:249;;;33227:59;33258:1;33262:2;33266:12;33280:5;33227:22;:59::i;:::-;33193:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;33160:249;33429:14;;;;;;;33074:3;;;;;;;33044:415;;;;33490:12;33475;:27;;;;32707:807;33526:60;33555:1;33559:2;33563:12;33577:8;33526:20;:60::i;:::-;32184:1410;32056:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:418::-;5427:4;5465:2;5454:9;5450:18;5442:26;;5478:65;5540:1;5529:9;5525:17;5516:6;5478:65;:::i;:::-;5553:66;5615:2;5604:9;5600:18;5591:6;5553:66;:::i;:::-;5629:72;5697:2;5686:9;5682:18;5673:6;5629:72;:::i;:::-;5290:418;;;;;;:::o;5714:619::-;5791:6;5799;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;6237:2;6263:53;6308:7;6299:6;6288:9;6284:22;6263:53;:::i;:::-;6253:63;;6208:118;5714:619;;;;;:::o;6339:117::-;6448:1;6445;6438:12;6462:117;6571:1;6568;6561:12;6585:117;6694:1;6691;6684:12;6722:553;6780:8;6790:6;6840:3;6833:4;6825:6;6821:17;6817:27;6807:122;;6848:79;;:::i;:::-;6807:122;6961:6;6948:20;6938:30;;6991:18;6983:6;6980:30;6977:117;;;7013:79;;:::i;:::-;6977:117;7127:4;7119:6;7115:17;7103:29;;7181:3;7173:4;7165:6;7161:17;7151:8;7147:32;7144:41;7141:128;;;7188:79;;:::i;:::-;7141:128;6722:553;;;;;:::o;7281:529::-;7352:6;7360;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7563:1;7552:9;7548:17;7535:31;7593:18;7585:6;7582:30;7579:117;;;7615:79;;:::i;:::-;7579:117;7728:65;7785:7;7776:6;7765:9;7761:22;7728:65;:::i;:::-;7710:83;;;;7506:297;7281:529;;;;;:::o;7816:329::-;7875:6;7924:2;7912:9;7903:7;7899:23;7895:32;7892:119;;;7930:79;;:::i;:::-;7892:119;8050:1;8075:53;8120:7;8111:6;8100:9;8096:22;8075:53;:::i;:::-;8065:63;;8021:117;7816:329;;;;:::o;8151:116::-;8221:21;8236:5;8221:21;:::i;:::-;8214:5;8211:32;8201:60;;8257:1;8254;8247:12;8201:60;8151:116;:::o;8273:133::-;8316:5;8354:6;8341:20;8332:29;;8370:30;8394:5;8370:30;:::i;:::-;8273:133;;;;:::o;8412:468::-;8477:6;8485;8534:2;8522:9;8513:7;8509:23;8505:32;8502:119;;;8540:79;;:::i;:::-;8502:119;8660:1;8685:53;8730:7;8721:6;8710:9;8706:22;8685:53;:::i;:::-;8675:63;;8631:117;8787:2;8813:50;8855:7;8846:6;8835:9;8831:22;8813:50;:::i;:::-;8803:60;;8758:115;8412:468;;;;;:::o;8886:117::-;8995:1;8992;8985:12;9009:180;9057:77;9054:1;9047:88;9154:4;9151:1;9144:15;9178:4;9175:1;9168:15;9195:281;9278:27;9300:4;9278:27;:::i;:::-;9270:6;9266:40;9408:6;9396:10;9393:22;9372:18;9360:10;9357:34;9354:62;9351:88;;;9419:18;;:::i;:::-;9351:88;9459:10;9455:2;9448:22;9238:238;9195:281;;:::o;9482:129::-;9516:6;9543:20;;:::i;:::-;9533:30;;9572:33;9600:4;9592:6;9572:33;:::i;:::-;9482:129;;;:::o;9617:307::-;9678:4;9768:18;9760:6;9757:30;9754:56;;;9790:18;;:::i;:::-;9754:56;9828:29;9850:6;9828:29;:::i;:::-;9820:37;;9912:4;9906;9902:15;9894:23;;9617:307;;;:::o;9930:154::-;10014:6;10009:3;10004;9991:30;10076:1;10067:6;10062:3;10058:16;10051:27;9930:154;;;:::o;10090:410::-;10167:5;10192:65;10208:48;10249:6;10208:48;:::i;:::-;10192:65;:::i;:::-;10183:74;;10280:6;10273:5;10266:21;10318:4;10311:5;10307:16;10356:3;10347:6;10342:3;10338:16;10335:25;10332:112;;;10363:79;;:::i;:::-;10332:112;10453:41;10487:6;10482:3;10477;10453:41;:::i;:::-;10173:327;10090:410;;;;;:::o;10519:338::-;10574:5;10623:3;10616:4;10608:6;10604:17;10600:27;10590:122;;10631:79;;:::i;:::-;10590:122;10748:6;10735:20;10773:78;10847:3;10839:6;10832:4;10824:6;10820:17;10773:78;:::i;:::-;10764:87;;10580:277;10519:338;;;;:::o;10863:943::-;10958:6;10966;10974;10982;11031:3;11019:9;11010:7;11006:23;11002:33;10999:120;;;11038:79;;:::i;:::-;10999:120;11158:1;11183:53;11228:7;11219:6;11208:9;11204:22;11183:53;:::i;:::-;11173:63;;11129:117;11285:2;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11256:118;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11569:2;11558:9;11554:18;11541:32;11600:18;11592:6;11589:30;11586:117;;;11622:79;;:::i;:::-;11586:117;11727:62;11781:7;11772:6;11761:9;11757:22;11727:62;:::i;:::-;11717:72;;11512:287;10863:943;;;;;;;:::o;11812:474::-;11880:6;11888;11937:2;11925:9;11916:7;11912:23;11908:32;11905:119;;;11943:79;;:::i;:::-;11905:119;12063:1;12088:53;12133:7;12124:6;12113:9;12109:22;12088:53;:::i;:::-;12078:63;;12034:117;12190:2;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12161:118;11812:474;;;;;:::o;12292:180::-;12340:77;12337:1;12330:88;12437:4;12434:1;12427:15;12461:4;12458:1;12451:15;12478:320;12522:6;12559:1;12553:4;12549:12;12539:22;;12606:1;12600:4;12596:12;12627:18;12617:81;;12683:4;12675:6;12671:17;12661:27;;12617:81;12745:2;12737:6;12734:14;12714:18;12711:38;12708:84;;;12764:18;;:::i;:::-;12708:84;12529:269;12478:320;;;:::o;12804:232::-;12944:34;12940:1;12932:6;12928:14;12921:58;13013:15;13008:2;13000:6;12996:15;12989:40;12804:232;:::o;13042:366::-;13184:3;13205:67;13269:2;13264:3;13205:67;:::i;:::-;13198:74;;13281:93;13370:3;13281:93;:::i;:::-;13399:2;13394:3;13390:12;13383:19;;13042:366;;;:::o;13414:419::-;13580:4;13618:2;13607:9;13603:18;13595:26;;13667:9;13661:4;13657:20;13653:1;13642:9;13638:17;13631:47;13695:131;13821:4;13695:131;:::i;:::-;13687:139;;13414:419;;;:::o;13839:221::-;13979:34;13975:1;13967:6;13963:14;13956:58;14048:4;14043:2;14035:6;14031:15;14024:29;13839:221;:::o;14066:366::-;14208:3;14229:67;14293:2;14288:3;14229:67;:::i;:::-;14222:74;;14305:93;14394:3;14305:93;:::i;:::-;14423:2;14418:3;14414:12;14407:19;;14066:366;;;:::o;14438:419::-;14604:4;14642:2;14631:9;14627:18;14619:26;;14691:9;14685:4;14681:20;14677:1;14666:9;14662:17;14655:47;14719:131;14845:4;14719:131;:::i;:::-;14711:139;;14438:419;;;:::o;14863:244::-;15003:34;14999:1;14991:6;14987:14;14980:58;15072:27;15067:2;15059:6;15055:15;15048:52;14863:244;:::o;15113:366::-;15255:3;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15352:93;15441:3;15352:93;:::i;:::-;15470:2;15465:3;15461:12;15454:19;;15113:366;;;:::o;15485:419::-;15651:4;15689:2;15678:9;15674:18;15666:26;;15738:9;15732:4;15728:20;15724:1;15713:9;15709:17;15702:47;15766:131;15892:4;15766:131;:::i;:::-;15758:139;;15485:419;;;:::o;15910:180::-;15958:77;15955:1;15948:88;16055:4;16052:1;16045:15;16079:4;16076:1;16069:15;16096:191;16136:4;16156:20;16174:1;16156:20;:::i;:::-;16151:25;;16190:20;16208:1;16190:20;:::i;:::-;16185:25;;16229:1;16226;16223:8;16220:34;;;16234:18;;:::i;:::-;16220:34;16279:1;16276;16272:9;16264:17;;16096:191;;;;:::o;16293:163::-;16433:15;16429:1;16421:6;16417:14;16410:39;16293:163;:::o;16462:366::-;16604:3;16625:67;16689:2;16684:3;16625:67;:::i;:::-;16618:74;;16701:93;16790:3;16701:93;:::i;:::-;16819:2;16814:3;16810:12;16803:19;;16462:366;;;:::o;16834:419::-;17000:4;17038:2;17027:9;17023:18;17015:26;;17087:9;17081:4;17077:20;17073:1;17062:9;17058:17;17051:47;17115:131;17241:4;17115:131;:::i;:::-;17107:139;;16834:419;;;:::o;17259:221::-;17399:34;17395:1;17387:6;17383:14;17376:58;17468:4;17463:2;17455:6;17451:15;17444:29;17259:221;:::o;17486:366::-;17628:3;17649:67;17713:2;17708:3;17649:67;:::i;:::-;17642:74;;17725:93;17814:3;17725:93;:::i;:::-;17843:2;17838:3;17834:12;17827:19;;17486:366;;;:::o;17858:419::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;17858:419;;;:::o;18283:233::-;18423:34;18419:1;18411:6;18407:14;18400:58;18492:16;18487:2;18479:6;18475:15;18468:41;18283:233;:::o;18522:366::-;18664:3;18685:67;18749:2;18744:3;18685:67;:::i;:::-;18678:74;;18761:93;18850:3;18761:93;:::i;:::-;18879:2;18874:3;18870:12;18863:19;;18522:366;;;:::o;18894:419::-;19060:4;19098:2;19087:9;19083:18;19075:26;;19147:9;19141:4;19137:20;19133:1;19122:9;19118:17;19111:47;19175:131;19301:4;19175:131;:::i;:::-;19167:139;;18894:419;;;:::o;19319:182::-;19459:34;19455:1;19447:6;19443:14;19436:58;19319:182;:::o;19507:366::-;19649:3;19670:67;19734:2;19729:3;19670:67;:::i;:::-;19663:74;;19746:93;19835:3;19746:93;:::i;:::-;19864:2;19859:3;19855:12;19848:19;;19507:366;;;:::o;19879:419::-;20045:4;20083:2;20072:9;20068:18;20060:26;;20132:9;20126:4;20122:20;20118:1;20107:9;20103:17;20096:47;20160:131;20286:4;20160:131;:::i;:::-;20152:139;;19879:419;;;:::o;20304:222::-;20444:34;20440:1;20432:6;20428:14;20421:58;20513:5;20508:2;20500:6;20496:15;20489:30;20304:222;:::o;20532:366::-;20674:3;20695:67;20759:2;20754:3;20695:67;:::i;:::-;20688:74;;20771:93;20860:3;20771:93;:::i;:::-;20889:2;20884:3;20880:12;20873:19;;20532:366;;;:::o;20904:419::-;21070:4;21108:2;21097:9;21093:18;21085:26;;21157:9;21151:4;21147:20;21143:1;21132:9;21128:17;21121:47;21185:131;21311:4;21185:131;:::i;:::-;21177:139;;20904:419;;;:::o;21329:230::-;21469:34;21465:1;21457:6;21453:14;21446:58;21538:13;21533:2;21525:6;21521:15;21514:38;21329:230;:::o;21565:366::-;21707:3;21728:67;21792:2;21787:3;21728:67;:::i;:::-;21721:74;;21804:93;21893:3;21804:93;:::i;:::-;21922:2;21917:3;21913:12;21906:19;;21565:366;;;:::o;21937:419::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;21937:419;;;:::o;22362:166::-;22502:18;22498:1;22490:6;22486:14;22479:42;22362:166;:::o;22534:366::-;22676:3;22697:67;22761:2;22756:3;22697:67;:::i;:::-;22690:74;;22773:93;22862:3;22773:93;:::i;:::-;22891:2;22886:3;22882:12;22875:19;;22534:366;;;:::o;22906:419::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:171::-;23471:23;23467:1;23459:6;23455:14;23448:47;23331:171;:::o;23508:366::-;23650:3;23671:67;23735:2;23730:3;23671:67;:::i;:::-;23664:74;;23747:93;23836:3;23747:93;:::i;:::-;23865:2;23860:3;23856:12;23849:19;;23508:366;;;:::o;23880:419::-;24046:4;24084:2;24073:9;24069:18;24061:26;;24133:9;24127:4;24123:20;24119:1;24108:9;24104:17;24097:47;24161:131;24287:4;24161:131;:::i;:::-;24153:139;;23880:419;;;:::o;24305:348::-;24345:7;24368:20;24386:1;24368:20;:::i;:::-;24363:25;;24402:20;24420:1;24402:20;:::i;:::-;24397:25;;24590:1;24522:66;24518:74;24515:1;24512:81;24507:1;24500:9;24493:17;24489:105;24486:131;;;24597:18;;:::i;:::-;24486:131;24645:1;24642;24638:9;24627:20;;24305:348;;;;:::o;24659:167::-;24799:19;24795:1;24787:6;24783:14;24776:43;24659:167;:::o;24832:366::-;24974:3;24995:67;25059:2;25054:3;24995:67;:::i;:::-;24988:74;;25071:93;25160:3;25071:93;:::i;:::-;25189:2;25184:3;25180:12;25173:19;;24832:366;;;:::o;25204:419::-;25370:4;25408:2;25397:9;25393:18;25385:26;;25457:9;25451:4;25447:20;25443:1;25432:9;25428:17;25421:47;25485:131;25611:4;25485:131;:::i;:::-;25477:139;;25204:419;;;:::o;25629:168::-;25769:20;25765:1;25757:6;25753:14;25746:44;25629:168;:::o;25803:366::-;25945:3;25966:67;26030:2;26025:3;25966:67;:::i;:::-;25959:74;;26042:93;26131:3;26042:93;:::i;:::-;26160:2;26155:3;26151:12;26144:19;;25803:366;;;:::o;26175:419::-;26341:4;26379:2;26368:9;26364:18;26356:26;;26428:9;26422:4;26418:20;26414:1;26403:9;26399:17;26392:47;26456:131;26582:4;26456:131;:::i;:::-;26448:139;;26175:419;;;:::o;26600:305::-;26640:3;26659:20;26677:1;26659:20;:::i;:::-;26654:25;;26693:20;26711:1;26693:20;:::i;:::-;26688:25;;26847:1;26779:66;26775:74;26772:1;26769:81;26766:107;;;26853:18;;:::i;:::-;26766:107;26897:1;26894;26890:9;26883:16;;26600:305;;;;:::o;26911:167::-;27051:19;27047:1;27039:6;27035:14;27028:43;26911:167;:::o;27084:366::-;27226:3;27247:67;27311:2;27306:3;27247:67;:::i;:::-;27240:74;;27323:93;27412:3;27323:93;:::i;:::-;27441:2;27436:3;27432:12;27425:19;;27084:366;;;:::o;27456:419::-;27622:4;27660:2;27649:9;27645:18;27637:26;;27709:9;27703:4;27699:20;27695:1;27684:9;27680:17;27673:47;27737:131;27863:4;27737:131;:::i;:::-;27729:139;;27456:419;;;:::o;27881:167::-;28021:19;28017:1;28009:6;28005:14;27998:43;27881:167;:::o;28054:366::-;28196:3;28217:67;28281:2;28276:3;28217:67;:::i;:::-;28210:74;;28293:93;28382:3;28293:93;:::i;:::-;28411:2;28406:3;28402:12;28395:19;;28054:366;;;:::o;28426:419::-;28592:4;28630:2;28619:9;28615:18;28607:26;;28679:9;28673:4;28669:20;28665:1;28654:9;28650:17;28643:47;28707:131;28833:4;28707:131;:::i;:::-;28699:139;;28426:419;;;:::o;28851:169::-;28991:21;28987:1;28979:6;28975:14;28968:45;28851:169;:::o;29026:366::-;29168:3;29189:67;29253:2;29248:3;29189:67;:::i;:::-;29182:74;;29265:93;29354:3;29265:93;:::i;:::-;29383:2;29378:3;29374:12;29367:19;;29026:366;;;:::o;29398:419::-;29564:4;29602:2;29591:9;29587:18;29579:26;;29651:9;29645:4;29641:20;29637:1;29626:9;29622:17;29615:47;29679:131;29805:4;29679:131;:::i;:::-;29671:139;;29398:419;;;:::o;29823:173::-;29963:25;29959:1;29951:6;29947:14;29940:49;29823:173;:::o;30002:366::-;30144:3;30165:67;30229:2;30224:3;30165:67;:::i;:::-;30158:74;;30241:93;30330:3;30241:93;:::i;:::-;30359:2;30354:3;30350:12;30343:19;;30002:366;;;:::o;30374:419::-;30540:4;30578:2;30567:9;30563:18;30555:26;;30627:9;30621:4;30617:20;30613:1;30602:9;30598:17;30591:47;30655:131;30781:4;30655:131;:::i;:::-;30647:139;;30374:419;;;:::o;30799:176::-;30939:28;30935:1;30927:6;30923:14;30916:52;30799:176;:::o;30981:366::-;31123:3;31144:67;31208:2;31203:3;31144:67;:::i;:::-;31137:74;;31220:93;31309:3;31220:93;:::i;:::-;31338:2;31333:3;31329:12;31322:19;;30981:366;;;:::o;31353:419::-;31519:4;31557:2;31546:9;31542:18;31534:26;;31606:9;31600:4;31596:20;31592:1;31581:9;31577:17;31570:47;31634:131;31760:4;31634:131;:::i;:::-;31626:139;;31353:419;;;:::o;31778:238::-;31918:34;31914:1;31906:6;31902:14;31895:58;31987:21;31982:2;31974:6;31970:15;31963:46;31778:238;:::o;32022:366::-;32164:3;32185:67;32249:2;32244:3;32185:67;:::i;:::-;32178:74;;32261:93;32350:3;32261:93;:::i;:::-;32379:2;32374:3;32370:12;32363:19;;32022:366;;;:::o;32394:419::-;32560:4;32598:2;32587:9;32583:18;32575:26;;32647:9;32641:4;32637:20;32633:1;32622:9;32618:17;32611:47;32675:131;32801:4;32675:131;:::i;:::-;32667:139;;32394:419;;;:::o;32819:234::-;32959:34;32955:1;32947:6;32943:14;32936:58;33028:17;33023:2;33015:6;33011:15;33004:42;32819:234;:::o;33059:366::-;33201:3;33222:67;33286:2;33281:3;33222:67;:::i;:::-;33215:74;;33298:93;33387:3;33298:93;:::i;:::-;33416:2;33411:3;33407:12;33400:19;;33059:366;;;:::o;33431:419::-;33597:4;33635:2;33624:9;33620:18;33612:26;;33684:9;33678:4;33674:20;33670:1;33659:9;33655:17;33648:47;33712:131;33838:4;33712:131;:::i;:::-;33704:139;;33431:419;;;:::o;33856:148::-;33958:11;33995:3;33980:18;;33856:148;;;;:::o;34010:377::-;34116:3;34144:39;34177:5;34144:39;:::i;:::-;34199:89;34281:6;34276:3;34199:89;:::i;:::-;34192:96;;34297:52;34342:6;34337:3;34330:4;34323:5;34319:16;34297:52;:::i;:::-;34374:6;34369:3;34365:16;34358:23;;34120:267;34010:377;;;;:::o;34393:155::-;34533:7;34529:1;34521:6;34517:14;34510:31;34393:155;:::o;34554:400::-;34714:3;34735:84;34817:1;34812:3;34735:84;:::i;:::-;34728:91;;34828:93;34917:3;34828:93;:::i;:::-;34946:1;34941:3;34937:11;34930:18;;34554:400;;;:::o;34960:701::-;35241:3;35263:95;35354:3;35345:6;35263:95;:::i;:::-;35256:102;;35375:95;35466:3;35457:6;35375:95;:::i;:::-;35368:102;;35487:148;35631:3;35487:148;:::i;:::-;35480:155;;35652:3;35645:10;;34960:701;;;;;:::o;35667:162::-;35807:14;35803:1;35795:6;35791:14;35784:38;35667:162;:::o;35835:366::-;35977:3;35998:67;36062:2;36057:3;35998:67;:::i;:::-;35991:74;;36074:93;36163:3;36074:93;:::i;:::-;36192:2;36187:3;36183:12;36176:19;;35835:366;;;:::o;36207:419::-;36373:4;36411:2;36400:9;36396:18;36388:26;;36460:9;36454:4;36450:20;36446:1;36435:9;36431:17;36424:47;36488:131;36614:4;36488:131;:::i;:::-;36480:139;;36207:419;;;:::o;36632:225::-;36772:34;36768:1;36760:6;36756:14;36749:58;36841:8;36836:2;36828:6;36824:15;36817:33;36632:225;:::o;36863:366::-;37005:3;37026:67;37090:2;37085:3;37026:67;:::i;:::-;37019:74;;37102:93;37191:3;37102:93;:::i;:::-;37220:2;37215:3;37211:12;37204:19;;36863:366;;;:::o;37235:419::-;37401:4;37439:2;37428:9;37424:18;37416:26;;37488:9;37482:4;37478:20;37474:1;37463:9;37459:17;37452:47;37516:131;37642:4;37516:131;:::i;:::-;37508:139;;37235:419;;;:::o;37660:237::-;37800:34;37796:1;37788:6;37784:14;37777:58;37869:20;37864:2;37856:6;37852:15;37845:45;37660:237;:::o;37903:366::-;38045:3;38066:67;38130:2;38125:3;38066:67;:::i;:::-;38059:74;;38142:93;38231:3;38142:93;:::i;:::-;38260:2;38255:3;38251:12;38244:19;;37903:366;;;:::o;38275:419::-;38441:4;38479:2;38468:9;38464:18;38456:26;;38528:9;38522:4;38518:20;38514:1;38503:9;38499:17;38492:47;38556:131;38682:4;38556:131;:::i;:::-;38548:139;;38275:419;;;:::o;38700:225::-;38840:34;38836:1;38828:6;38824:14;38817:58;38909:8;38904:2;38896:6;38892:15;38885:33;38700:225;:::o;38931:366::-;39073:3;39094:67;39158:2;39153:3;39094:67;:::i;:::-;39087:74;;39170:93;39259:3;39170:93;:::i;:::-;39288:2;39283:3;39279:12;39272:19;;38931:366;;;:::o;39303:419::-;39469:4;39507:2;39496:9;39492:18;39484:26;;39556:9;39550:4;39546:20;39542:1;39531:9;39527:17;39520:47;39584:131;39710:4;39584:131;:::i;:::-;39576:139;;39303:419;;;:::o;39728:224::-;39868:34;39864:1;39856:6;39852:14;39845:58;39937:7;39932:2;39924:6;39920:15;39913:32;39728:224;:::o;39958:366::-;40100:3;40121:67;40185:2;40180:3;40121:67;:::i;:::-;40114:74;;40197:93;40286:3;40197:93;:::i;:::-;40315:2;40310:3;40306:12;40299:19;;39958:366;;;:::o;40330:419::-;40496:4;40534:2;40523:9;40519:18;40511:26;;40583:9;40577:4;40573:20;40569:1;40558:9;40554:17;40547:47;40611:131;40737:4;40611:131;:::i;:::-;40603:139;;40330:419;;;:::o;40755:229::-;40895:34;40891:1;40883:6;40879:14;40872:58;40964:12;40959:2;40951:6;40947:15;40940:37;40755:229;:::o;40990:366::-;41132:3;41153:67;41217:2;41212:3;41153:67;:::i;:::-;41146:74;;41229:93;41318:3;41229:93;:::i;:::-;41347:2;41342:3;41338:12;41331:19;;40990:366;;;:::o;41362:419::-;41528:4;41566:2;41555:9;41551:18;41543:26;;41615:9;41609:4;41605:20;41601:1;41590:9;41586:17;41579:47;41643:131;41769:4;41643:131;:::i;:::-;41635:139;;41362:419;;;:::o;41787:234::-;41927:34;41923:1;41915:6;41911:14;41904:58;41996:17;41991:2;41983:6;41979:15;41972:42;41787:234;:::o;42027:366::-;42169:3;42190:67;42254:2;42249:3;42190:67;:::i;:::-;42183:74;;42266:93;42355:3;42266:93;:::i;:::-;42384:2;42379:3;42375:12;42368:19;;42027:366;;;:::o;42399:419::-;42565:4;42603:2;42592:9;42588:18;42580:26;;42652:9;42646:4;42642:20;42638:1;42627:9;42623:17;42616:47;42680:131;42806:4;42680:131;:::i;:::-;42672:139;;42399:419;;;:::o;42824:98::-;42875:6;42909:5;42903:12;42893:22;;42824:98;;;:::o;42928:168::-;43011:11;43045:6;43040:3;43033:19;43085:4;43080:3;43076:14;43061:29;;42928:168;;;;:::o;43102:360::-;43188:3;43216:38;43248:5;43216:38;:::i;:::-;43270:70;43333:6;43328:3;43270:70;:::i;:::-;43263:77;;43349:52;43394:6;43389:3;43382:4;43375:5;43371:16;43349:52;:::i;:::-;43426:29;43448:6;43426:29;:::i;:::-;43421:3;43417:39;43410:46;;43192:270;43102:360;;;;:::o;43468:640::-;43663:4;43701:3;43690:9;43686:19;43678:27;;43715:71;43783:1;43772:9;43768:17;43759:6;43715:71;:::i;:::-;43796:72;43864:2;43853:9;43849:18;43840:6;43796:72;:::i;:::-;43878;43946:2;43935:9;43931:18;43922:6;43878:72;:::i;:::-;43997:9;43991:4;43987:20;43982:2;43971:9;43967:18;43960:48;44025:76;44096:4;44087:6;44025:76;:::i;:::-;44017:84;;43468:640;;;;;;;:::o;44114:141::-;44170:5;44201:6;44195:13;44186:22;;44217:32;44243:5;44217:32;:::i;:::-;44114:141;;;;:::o;44261:349::-;44330:6;44379:2;44367:9;44358:7;44354:23;44350:32;44347:119;;;44385:79;;:::i;:::-;44347:119;44505:1;44530:63;44585:7;44576:6;44565:9;44561:22;44530:63;:::i;:::-;44520:73;;44476:127;44261:349;;;;:::o;44616:233::-;44655:3;44678:24;44696:5;44678:24;:::i;:::-;44669:33;;44724:66;44717:5;44714:77;44711:103;;;44794:18;;:::i;:::-;44711:103;44841:1;44834:5;44830:13;44823:20;;44616:233;;;:::o;44855:180::-;44903:77;44900:1;44893:88;45000:4;44997:1;44990:15;45024:4;45021:1;45014:15;45041:185;45081:1;45098:20;45116:1;45098:20;:::i;:::-;45093:25;;45132:20;45150:1;45132:20;:::i;:::-;45127:25;;45171:1;45161:35;;45176:18;;:::i;:::-;45161:35;45218:1;45215;45211:9;45206:14;;45041:185;;;;:::o;45232:176::-;45264:1;45281:20;45299:1;45281:20;:::i;:::-;45276:25;;45315:20;45333:1;45315:20;:::i;:::-;45310:25;;45354:1;45344:35;;45359:18;;:::i;:::-;45344:35;45400:1;45397;45393:9;45388:14;;45232:176;;;;:::o;45414:180::-;45462:77;45459:1;45452:88;45559:4;45556:1;45549:15;45583:4;45580:1;45573:15;45600:220;45740:34;45736:1;45728:6;45724:14;45717:58;45809:3;45804:2;45796:6;45792:15;45785:28;45600:220;:::o;45826:366::-;45968:3;45989:67;46053:2;46048:3;45989:67;:::i;:::-;45982:74;;46065:93;46154:3;46065:93;:::i;:::-;46183:2;46178:3;46174:12;46167:19;;45826:366;;;:::o;46198:419::-;46364:4;46402:2;46391:9;46387:18;46379:26;;46451:9;46445:4;46441:20;46437:1;46426:9;46422:17;46415:47;46479:131;46605:4;46479:131;:::i;:::-;46471:139;;46198:419;;;:::o;46623:227::-;46763:34;46759:1;46751:6;46747:14;46740:58;46832:10;46827:2;46819:6;46815:15;46808:35;46623:227;:::o;46856:366::-;46998:3;47019:67;47083:2;47078:3;47019:67;:::i;:::-;47012:74;;47095:93;47184:3;47095:93;:::i;:::-;47213:2;47208:3;47204:12;47197:19;;46856:366;;;:::o;47228:419::-;47394:4;47432:2;47421:9;47417:18;47409:26;;47481:9;47475:4;47471:20;47467:1;47456:9;47452:17;47445:47;47509:131;47635:4;47509:131;:::i;:::-;47501:139;;47228:419;;;:::o

Swarm Source

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