ETH Price: $3,102.97 (+1.05%)
Gas: 7 Gwei

Token

PleaseKeepSmiling (PKS)
 

Overview

Max Total Supply

1,626 PKS

Holders

1,454

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PKS
0x0f2c94635d484d23c579aae6b2fd47852f596c08
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:
PleaseKeepSmiling

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

/** : )
    ____  __                   __ __                   _____           _ ___                ______                          __           
   / __ \/ /__  ____ ______   / //_/__  ___  ____     / ___/____ ___  (_) (_)___  ____ _   / ____/   _____  _______  ______/ /___ ___  __
  / /_/ / / _ \/ __ `/ ___/  / ,< / _ \/ _ \/ __ \    \__ \/ __ `__ \/ / / / __ \/ __ `/  / __/ | | / / _ \/ ___/ / / / __  / __ `/ / / /
 / ____/ /  __/ /_/ (__  )  / /| /  __/  __/ /_/ /   ___/ / / / / / / / / / / / / /_/ /  / /___ | |/ /  __/ /  / /_/ / /_/ / /_/ / /_/ / 
/_/   /_/\___/\__,_/____/  /_/ |_\___/\___/ .___/   /____/_/ /_/ /_/_/_/_/_/ /_/\__, /  /_____/ |___/\___/_/   \__, /\__,_/\__,_/\__, /  
                                         /_/                                   /____/                         /____/            /____/   
*/







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

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

/**
 *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 PleaseKeepSmiling is ERC721A, Ownable {

    constructor() ERC721A("PleaseKeepSmiling", "PKS") {}

    uint public maxSupply = 5000;
    bool public saleStatus;
    uint public price;   
    uint public maxPerTx = 5;    
    uint public maxPerWallet = 20;
    uint public freeMintPrice = 0;
    uint public maxFreePerTx = 1;    
    uint public maxFreePerWallet = 1;  

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

    mapping(address => uint) public _minted; 

    mapping(address => uint) public _freeminted; 

    // ---------------------------------------------------------------------------------------------
    // 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 setMaxFreePerTx(uint amount) external onlyOwner {
        maxFreePerTx = amount;
    }
    
    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = 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 devmint(uint256 amount) external onlyOwner {
        require(currentIndex <= maxSupply, "NOT_ALLOWED!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        _safeMint(msg.sender, amount);
    }

    function freemint(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(amount * freeMintPrice == msg.value, "NOT_ENOUGH_MONEY!");
        require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        require(_freeminted[msg.sender] + amount <= maxFreePerWallet, "EXCEEDS_MAX_PER_WALLET!");
        _safeMint(msg.sender, amount);
        _freeminted[msg.sender] += amount;
    }

    function mint(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        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":"_freeminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"amount","type":"uint256"}],"name":"devmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","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":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

60806040526001600055611388600a556005600d556014600e556000600f55600160105560016011553480156200003557600080fd5b506040518060400160405280601181526020017f506c656173654b656570536d696c696e670000000000000000000000000000008152506040518060400160405280600381526020017f504b5300000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000ba929190620001ca565b508060029080519060200190620000d3929190620001ca565b505050620000f6620000ea620000fc60201b60201c565b6200010460201b60201c565b620002df565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d890620002a9565b90600052602060002090601f016020900481019282620001fc576000855562000248565b82601f106200021757805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002475782518255916020019190600101906200022a565b5b5090506200025791906200025b565b5090565b5b80821115620002765760008160009055506001016200025c565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c257607f821691505b60208210811415620002d957620002d86200027a565b5b50919050565b614dd980620002ef6000396000f3fe6080604052600436106102725760003560e01c80636f8b44b01161014f578063a7027357116100c1578063e268e4d31161007a578063e268e4d314610948578063e985e9c514610971578063f2fde38b146109ae578063f737c47a146109d7578063f9020e3314610a02578063f968adbe14610a2d57610272565b8063a702735714610838578063b88d4fde14610863578063c4e41b221461088c578063c6f6f216146108b7578063c87b56dd146108e0578063d5abeb011461091d57610272565b80638da5cb5b116101135780638da5cb5b1461074957806391b7f5ed1461077457806395d89b411461079d578063a035b1fe146107c8578063a0712d68146107f3578063a22cb4651461080f57610272565b80636f8b44b01461066457806370a082311461068d578063715018a6146106ca5780637dc949b2146106e15780637de77ecc1461070c57610272565b80632f745c59116101e85780634c0f38c2116101ac5780634c0f38c2146105565780634f6ccce714610581578063502b33af146105be57806355f804b3146105d55780636352211e146105fe5780636d7c4a4b1461063b57610272565b80632f745c59146104855780633ccfd60b146104c257806340f070a8146104d957806342842e0e14610502578063453c23101461052b57610272565b80630fbe4fe21161023a5780630fbe4fe21461036e5780631491c2e51461038a57806318160ddd146103c7578063204f490c146103f257806323b872dd1461043157806326987b601461045a57610272565b806301ffc9a71461027757806302fb4791146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613567565b610a58565b6040516102ab91906135af565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613600565b610ba2565b005b3480156102e957600080fd5b506102f2610cd0565b6040516102ff91906136c6565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613600565b610d62565b60405161033c9190613729565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190613770565b610de7565b005b61038860048036038101906103839190613600565b610f00565b005b34801561039657600080fd5b506103b160048036038101906103ac91906137b0565b61117a565b6040516103be91906137ec565b60405180910390f35b3480156103d357600080fd5b506103dc611192565b6040516103e991906137ec565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190613600565b6111a8565b60405161042893929190613807565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061383e565b6111ec565b005b34801561046657600080fd5b5061046f611260565b60405161047c91906137ec565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613770565b611266565b6040516104b991906137ec565b60405180910390f35b3480156104ce57600080fd5b506104d7611458565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613600565b61151d565b005b34801561050e57600080fd5b506105296004803603810190610524919061383e565b6115a3565b005b34801561053757600080fd5b50610540611627565b60405161054d91906137ec565b60405180910390f35b34801561056257600080fd5b5061056b61162d565b60405161057891906137ec565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613600565b611637565b6040516105b591906137ec565b60405180910390f35b3480156105ca57600080fd5b506105d361168a565b005b3480156105e157600080fd5b506105fc60048036038101906105f791906138f6565b611732565b005b34801561060a57600080fd5b5061062560048036038101906106209190613600565b6117c4565b6040516106329190613729565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613600565b6117da565b005b34801561067057600080fd5b5061068b60048036038101906106869190613600565b611860565b005b34801561069957600080fd5b506106b460048036038101906106af91906137b0565b6118e6565b6040516106c191906137ec565b60405180910390f35b3480156106d657600080fd5b506106df6119cf565b005b3480156106ed57600080fd5b506106f6611a57565b60405161070391906137ec565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e91906137b0565b611a5d565b60405161074091906137ec565b60405180910390f35b34801561075557600080fd5b5061075e611a75565b60405161076b9190613729565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613600565b611a9f565b005b3480156107a957600080fd5b506107b2611b25565b6040516107bf91906136c6565b60405180910390f35b3480156107d457600080fd5b506107dd611bb7565b6040516107ea91906137ec565b60405180910390f35b61080d60048036038101906108089190613600565b611bbd565b005b34801561081b57600080fd5b506108366004803603810190610831919061396f565b611e37565b005b34801561084457600080fd5b5061084d611fb8565b60405161085a91906137ec565b60405180910390f35b34801561086f57600080fd5b5061088a60048036038101906108859190613adf565b611fbe565b005b34801561089857600080fd5b506108a161207e565b6040516108ae91906137ec565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d99190613600565b612094565b005b3480156108ec57600080fd5b5061090760048036038101906109029190613600565b61211a565b60405161091491906136c6565b60405180910390f35b34801561092957600080fd5b506109326121c2565b60405161093f91906137ec565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613600565b6121c8565b005b34801561097d57600080fd5b5061099860048036038101906109939190613b62565b61224e565b6040516109a591906135af565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d091906137b0565b6122e2565b005b3480156109e357600080fd5b506109ec6123da565b6040516109f991906137ec565b60405180910390f35b348015610a0e57600080fd5b50610a176123e0565b604051610a2491906135af565b60405180910390f35b348015610a3957600080fd5b50610a426123f3565b604051610a4f91906137ec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9b5750610b9a826123f9565b5b9050919050565b610baa612463565b73ffffffffffffffffffffffffffffffffffffffff16610bc8611a75565b73ffffffffffffffffffffffffffffffffffffffff1614610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590613bee565b60405180910390fd5b600a546000541115610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613c5a565b60405180910390fd5b600a54600182600054610c789190613ca9565b610c829190613cff565b1115610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613d7f565b60405180910390fd5b610ccd338261246b565b50565b606060018054610cdf90613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b90613dce565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b5050505050905090565b6000610d6d82612489565b610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613e72565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610df2826117c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90613f04565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e82612463565b73ffffffffffffffffffffffffffffffffffffffff161480610eb15750610eb081610eab612463565b61224e565b5b610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790613f96565b60405180910390fd5b610efb8383836124a2565b505050565b600b60009054906101000a900460ff16610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690614002565b60405180910390fd5b34600f5482610f5e9190614022565b14610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f95906140c8565b60405180910390fd5b601054811115610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90614134565b60405180910390fd5b600a54600054111561102a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611021906141a0565b60405180910390fd5b600a5460018260005461103d9190613ca9565b6110479190613cff565b1115611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613d7f565b60405180910390fd5b60115481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110d69190613ca9565b1115611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e9061420c565b60405180910390fd5b611121338261246b565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111709190613ca9565b9250508190555050565b60136020528060005260406000206000915090505481565b600060016000546111a39190613cff565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790614278565b60405180910390fd5b61125b838383612554565b505050565b60005481565b6000611271836118e6565b82106112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a99061430a565b60405180910390fd5b60006112bc611192565b905060008060005b83811015611416576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146113b657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561140857868414156113ff578195505050505050611452565b83806001019450505b5080806001019150506112c4565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114499061439c565b60405180910390fd5b92915050565b611460612463565b73ffffffffffffffffffffffffffffffffffffffff1661147e611a75565b73ffffffffffffffffffffffffffffffffffffffff16146114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90613bee565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561151a573d6000803e3d6000fd5b50565b611525612463565b73ffffffffffffffffffffffffffffffffffffffff16611543611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613bee565b60405180910390fd5b8060108190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90614278565b60405180910390fd5b61162283838360405180602001604052806000815250611fbe565b505050565b600e5481565b6000600a54905090565b6000611641611192565b8210611682576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116799061442e565b60405180910390fd5b819050919050565b611692612463565b73ffffffffffffffffffffffffffffffffffffffff166116b0611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90613bee565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61173a612463565b73ffffffffffffffffffffffffffffffffffffffff16611758611a75565b73ffffffffffffffffffffffffffffffffffffffff16146117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613bee565b60405180910390fd5b8181600391906117bf92919061341e565b505050565b60006117cf82612a94565b600001519050919050565b6117e2612463565b73ffffffffffffffffffffffffffffffffffffffff16611800611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613bee565b60405180910390fd5b8060118190555050565b611868612463565b73ffffffffffffffffffffffffffffffffffffffff16611886611a75565b73ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613bee565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e906144c0565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119d7612463565b73ffffffffffffffffffffffffffffffffffffffff166119f5611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290613bee565b60405180910390fd5b611a556000612c2e565b565b60105481565b60126020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611aa7612463565b73ffffffffffffffffffffffffffffffffffffffff16611ac5611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613bee565b60405180910390fd5b80600c8190555050565b606060028054611b3490613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6090613dce565b8015611bad5780601f10611b8257610100808354040283529160200191611bad565b820191906000526020600020905b815481529060010190602001808311611b9057829003601f168201915b5050505050905090565b600c5481565b600b60009054906101000a900460ff16611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0390614002565b60405180910390fd5b34600c5482611c1b9190614022565b14611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c52906140c8565b60405180910390fd5b600d54811115611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790614134565b60405180910390fd5b600a546000541115611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde906141a0565b60405180910390fd5b600a54600182600054611cfa9190613ca9565b611d049190613cff565b1115611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90613d7f565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d939190613ca9565b1115611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb9061420c565b60405180910390fd5b611dde338261246b565b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e2d9190613ca9565b9250508190555050565b611e3f612463565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea49061452c565b60405180910390fd5b8060076000611eba612463565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f67612463565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fac91906135af565b60405180910390a35050565b60115481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990614278565b60405180910390fd5b61202d848484612554565b61203984848484612cf4565b612078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206f906145be565b60405180910390fd5b50505050565b6000600160005461208f9190613cff565b905090565b61209c612463565b73ffffffffffffffffffffffffffffffffffffffff166120ba611a75565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613bee565b60405180910390fd5b80600d8190555050565b606061212582612489565b612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90614650565b60405180910390fd5b600061216e612e7c565b905060008151141561218f57604051806020016040528060008152506121ba565b8061219984612f0e565b6040516020016121aa9291906146f8565b6040516020818303038152906040525b915050919050565b600a5481565b6121d0612463565b73ffffffffffffffffffffffffffffffffffffffff166121ee611a75565b73ffffffffffffffffffffffffffffffffffffffff1614612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90613bee565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ea612463565b73ffffffffffffffffffffffffffffffffffffffff16612308611a75565b73ffffffffffffffffffffffffffffffffffffffff161461235e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235590613bee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c590614799565b60405180910390fd5b6123d781612c2e565b50565b600f5481565b600b60009054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61248582826040518060200160405280600081525061306f565b5050565b600080548210801561249b5750600082115b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061255f82612a94565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612586612463565b73ffffffffffffffffffffffffffffffffffffffff1614806125e257506125ab612463565b73ffffffffffffffffffffffffffffffffffffffff166125ca84610d62565b73ffffffffffffffffffffffffffffffffffffffff16145b806125fe57506125fd82600001516125f8612463565b61224e565b5b905080612640576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126379061482b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a9906148bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127199061494f565b60405180910390fd5b61272f8585856001613081565b61273f60008484600001516124a2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a245761298381612489565b15612a235782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8d8585856001613087565b5050505050565b612a9c6134a4565b612aa582612489565b612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb906149e1565b60405180910390fd5b60008290505b60008110612bed576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bde578092505050612c29565b50808060019003915050612aea565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2090614a73565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d158473ffffffffffffffffffffffffffffffffffffffff1661308d565b15612e6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d3e612463565b8786866040518563ffffffff1660e01b8152600401612d609493929190614ae8565b6020604051808303816000875af1925050508015612d9c57506040513d601f19601f82011682018060405250810190612d999190614b49565b60015b612e1f573d8060008114612dcc576040519150601f19603f3d011682016040523d82523d6000602084013e612dd1565b606091505b50600081511415612e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0e906145be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e74565b600190505b949350505050565b606060038054612e8b90613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054612eb790613dce565b8015612f045780601f10612ed957610100808354040283529160200191612f04565b820191906000526020600020905b815481529060010190602001808311612ee757829003601f168201915b5050505050905090565b60606000821415612f56576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061306a565b600082905060005b60008214612f88578080612f7190614b76565b915050600a82612f819190614bee565b9150612f5e565b60008167ffffffffffffffff811115612fa457612fa36139b4565b5b6040519080825280601f01601f191660200182016040528015612fd65781602001600182028036833780820191505090505b5090505b6000851461306357600182612fef9190613cff565b9150600a85612ffe9190614c1f565b603061300a9190613ca9565b60f81b8183815181106130205761301f614c50565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561305c9190614bee565b9450612fda565b8093505050505b919050565b61307c83838360016130a0565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310d90614cf1565b60405180910390fd5b600084141561315a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315190614d83565b60405180910390fd5b6131676000868387613081565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561340157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156133ec576133ac6000888488612cf4565b6133eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e2906145be565b60405180910390fd5b5b81806001019250508080600101915050613335565b5080600081905550506134176000868387613087565b5050505050565b82805461342a90613dce565b90600052602060002090601f01602090048101928261344c5760008555613493565b82601f1061346557803560ff1916838001178555613493565b82800160010185558215613493579182015b82811115613492578235825591602001919060010190613477565b5b5090506134a091906134de565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134f75760008160009055506001016134df565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135448161350f565b811461354f57600080fd5b50565b6000813590506135618161353b565b92915050565b60006020828403121561357d5761357c613505565b5b600061358b84828501613552565b91505092915050565b60008115159050919050565b6135a981613594565b82525050565b60006020820190506135c460008301846135a0565b92915050565b6000819050919050565b6135dd816135ca565b81146135e857600080fd5b50565b6000813590506135fa816135d4565b92915050565b60006020828403121561361657613615613505565b5b6000613624848285016135eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561366757808201518184015260208101905061364c565b83811115613676576000848401525b50505050565b6000601f19601f8301169050919050565b60006136988261362d565b6136a28185613638565b93506136b2818560208601613649565b6136bb8161367c565b840191505092915050565b600060208201905081810360008301526136e0818461368d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613713826136e8565b9050919050565b61372381613708565b82525050565b600060208201905061373e600083018461371a565b92915050565b61374d81613708565b811461375857600080fd5b50565b60008135905061376a81613744565b92915050565b6000806040838503121561378757613786613505565b5b60006137958582860161375b565b92505060206137a6858286016135eb565b9150509250929050565b6000602082840312156137c6576137c5613505565b5b60006137d48482850161375b565b91505092915050565b6137e6816135ca565b82525050565b600060208201905061380160008301846137dd565b92915050565b600060608201905061381c60008301866135a0565b61382960208301856135a0565b61383660408301846137dd565b949350505050565b60008060006060848603121561385757613856613505565b5b60006138658682870161375b565b93505060206138768682870161375b565b9250506040613887868287016135eb565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126138b6576138b5613891565b5b8235905067ffffffffffffffff8111156138d3576138d2613896565b5b6020830191508360018202830111156138ef576138ee61389b565b5b9250929050565b6000806020838503121561390d5761390c613505565b5b600083013567ffffffffffffffff81111561392b5761392a61350a565b5b613937858286016138a0565b92509250509250929050565b61394c81613594565b811461395757600080fd5b50565b60008135905061396981613943565b92915050565b6000806040838503121561398657613985613505565b5b60006139948582860161375b565b92505060206139a58582860161395a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139ec8261367c565b810181811067ffffffffffffffff82111715613a0b57613a0a6139b4565b5b80604052505050565b6000613a1e6134fb565b9050613a2a82826139e3565b919050565b600067ffffffffffffffff821115613a4a57613a496139b4565b5b613a538261367c565b9050602081019050919050565b82818337600083830152505050565b6000613a82613a7d84613a2f565b613a14565b905082815260208101848484011115613a9e57613a9d6139af565b5b613aa9848285613a60565b509392505050565b600082601f830112613ac657613ac5613891565b5b8135613ad6848260208601613a6f565b91505092915050565b60008060008060808587031215613af957613af8613505565b5b6000613b078782880161375b565b9450506020613b188782880161375b565b9350506040613b29878288016135eb565b925050606085013567ffffffffffffffff811115613b4a57613b4961350a565b5b613b5687828801613ab1565b91505092959194509250565b60008060408385031215613b7957613b78613505565b5b6000613b878582860161375b565b9250506020613b988582860161375b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bd8602083613638565b9150613be382613ba2565b602082019050919050565b60006020820190508181036000830152613c0781613bcb565b9050919050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b6000613c44600c83613638565b9150613c4f82613c0e565b602082019050919050565b60006020820190508181036000830152613c7381613c37565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cb4826135ca565b9150613cbf836135ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf457613cf3613c7a565b5b828201905092915050565b6000613d0a826135ca565b9150613d15836135ca565b925082821015613d2857613d27613c7a565b5b828203905092915050565b7f4e4f545f454e4f5547485f544f4b454e53000000000000000000000000000000600082015250565b6000613d69601183613638565b9150613d7482613d33565b602082019050919050565b60006020820190508181036000830152613d9881613d5c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613de657607f821691505b60208210811415613dfa57613df9613d9f565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613e5c602d83613638565b9150613e6782613e00565b604082019050919050565b60006020820190508181036000830152613e8b81613e4f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613eee602283613638565b9150613ef982613e92565b604082019050919050565b60006020820190508181036000830152613f1d81613ee1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613f80603983613638565b9150613f8b82613f24565b604082019050919050565b60006020820190508181036000830152613faf81613f73565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613fec601083613638565b9150613ff782613fb6565b602082019050919050565b6000602082019050818103600083015261401b81613fdf565b9050919050565b600061402d826135ca565b9150614038836135ca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407157614070613c7a565b5b828202905092915050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b60006140b2601183613638565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b600061411e601383613638565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b600061418a601283613638565b915061419582614154565b602082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b60006141f6601783613638565b9150614201826141c0565b602082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000614262600d83613638565b915061426d8261422c565b602082019050919050565b6000602082019050818103600083015261429181614255565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006142f4602283613638565b91506142ff82614298565b604082019050919050565b60006020820190508181036000830152614323816142e7565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614386602e83613638565b91506143918261432a565b604082019050919050565b600060208201905081810360008301526143b581614379565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614418602383613638565b9150614423826143bc565b604082019050919050565b600060208201905081810360008301526144478161440b565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006144aa602b83613638565b91506144b58261444e565b604082019050919050565b600060208201905081810360008301526144d98161449d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614516601a83613638565b9150614521826144e0565b602082019050919050565b6000602082019050818103600083015261454581614509565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006145a8603383613638565b91506145b38261454c565b604082019050919050565b600060208201905081810360008301526145d78161459b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061463a602f83613638565b9150614645826145de565b604082019050919050565b600060208201905081810360008301526146698161462d565b9050919050565b600081905092915050565b60006146868261362d565b6146908185614670565b93506146a0818560208601613649565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006146e2600583614670565b91506146ed826146ac565b600582019050919050565b6000614704828561467b565b9150614710828461467b565b915061471b826146d5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614783602683613638565b915061478e82614727565b604082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614815603283613638565b9150614820826147b9565b604082019050919050565b6000602082019050818103600083015261484481614808565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006148a7602683613638565b91506148b28261484b565b604082019050919050565b600060208201905081810360008301526148d68161489a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614939602583613638565b9150614944826148dd565b604082019050919050565b600060208201905081810360008301526149688161492c565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006149cb602a83613638565b91506149d68261496f565b604082019050919050565b600060208201905081810360008301526149fa816149be565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614a5d602f83613638565b9150614a6882614a01565b604082019050919050565b60006020820190508181036000830152614a8c81614a50565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614aba82614a93565b614ac48185614a9e565b9350614ad4818560208601613649565b614add8161367c565b840191505092915050565b6000608082019050614afd600083018761371a565b614b0a602083018661371a565b614b1760408301856137dd565b8181036060830152614b298184614aaf565b905095945050505050565b600081519050614b438161353b565b92915050565b600060208284031215614b5f57614b5e613505565b5b6000614b6d84828501614b34565b91505092915050565b6000614b81826135ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bb457614bb3613c7a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bf9826135ca565b9150614c04836135ca565b925082614c1457614c13614bbf565b5b828204905092915050565b6000614c2a826135ca565b9150614c35836135ca565b925082614c4557614c44614bbf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cdb602183613638565b9150614ce682614c7f565b604082019050919050565b60006020820190508181036000830152614d0a81614cce565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614d6d602883613638565b9150614d7882614d11565b604082019050919050565b60006020820190508181036000830152614d9c81614d60565b905091905056fea2646970667358221220d55a93f13ff794f51295075f8300b290c5f5770e819f020e99d98f1a501932ed64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636f8b44b01161014f578063a7027357116100c1578063e268e4d31161007a578063e268e4d314610948578063e985e9c514610971578063f2fde38b146109ae578063f737c47a146109d7578063f9020e3314610a02578063f968adbe14610a2d57610272565b8063a702735714610838578063b88d4fde14610863578063c4e41b221461088c578063c6f6f216146108b7578063c87b56dd146108e0578063d5abeb011461091d57610272565b80638da5cb5b116101135780638da5cb5b1461074957806391b7f5ed1461077457806395d89b411461079d578063a035b1fe146107c8578063a0712d68146107f3578063a22cb4651461080f57610272565b80636f8b44b01461066457806370a082311461068d578063715018a6146106ca5780637dc949b2146106e15780637de77ecc1461070c57610272565b80632f745c59116101e85780634c0f38c2116101ac5780634c0f38c2146105565780634f6ccce714610581578063502b33af146105be57806355f804b3146105d55780636352211e146105fe5780636d7c4a4b1461063b57610272565b80632f745c59146104855780633ccfd60b146104c257806340f070a8146104d957806342842e0e14610502578063453c23101461052b57610272565b80630fbe4fe21161023a5780630fbe4fe21461036e5780631491c2e51461038a57806318160ddd146103c7578063204f490c146103f257806323b872dd1461043157806326987b601461045a57610272565b806301ffc9a71461027757806302fb4791146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613567565b610a58565b6040516102ab91906135af565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613600565b610ba2565b005b3480156102e957600080fd5b506102f2610cd0565b6040516102ff91906136c6565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613600565b610d62565b60405161033c9190613729565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190613770565b610de7565b005b61038860048036038101906103839190613600565b610f00565b005b34801561039657600080fd5b506103b160048036038101906103ac91906137b0565b61117a565b6040516103be91906137ec565b60405180910390f35b3480156103d357600080fd5b506103dc611192565b6040516103e991906137ec565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190613600565b6111a8565b60405161042893929190613807565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061383e565b6111ec565b005b34801561046657600080fd5b5061046f611260565b60405161047c91906137ec565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613770565b611266565b6040516104b991906137ec565b60405180910390f35b3480156104ce57600080fd5b506104d7611458565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613600565b61151d565b005b34801561050e57600080fd5b506105296004803603810190610524919061383e565b6115a3565b005b34801561053757600080fd5b50610540611627565b60405161054d91906137ec565b60405180910390f35b34801561056257600080fd5b5061056b61162d565b60405161057891906137ec565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613600565b611637565b6040516105b591906137ec565b60405180910390f35b3480156105ca57600080fd5b506105d361168a565b005b3480156105e157600080fd5b506105fc60048036038101906105f791906138f6565b611732565b005b34801561060a57600080fd5b5061062560048036038101906106209190613600565b6117c4565b6040516106329190613729565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613600565b6117da565b005b34801561067057600080fd5b5061068b60048036038101906106869190613600565b611860565b005b34801561069957600080fd5b506106b460048036038101906106af91906137b0565b6118e6565b6040516106c191906137ec565b60405180910390f35b3480156106d657600080fd5b506106df6119cf565b005b3480156106ed57600080fd5b506106f6611a57565b60405161070391906137ec565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e91906137b0565b611a5d565b60405161074091906137ec565b60405180910390f35b34801561075557600080fd5b5061075e611a75565b60405161076b9190613729565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613600565b611a9f565b005b3480156107a957600080fd5b506107b2611b25565b6040516107bf91906136c6565b60405180910390f35b3480156107d457600080fd5b506107dd611bb7565b6040516107ea91906137ec565b60405180910390f35b61080d60048036038101906108089190613600565b611bbd565b005b34801561081b57600080fd5b506108366004803603810190610831919061396f565b611e37565b005b34801561084457600080fd5b5061084d611fb8565b60405161085a91906137ec565b60405180910390f35b34801561086f57600080fd5b5061088a60048036038101906108859190613adf565b611fbe565b005b34801561089857600080fd5b506108a161207e565b6040516108ae91906137ec565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d99190613600565b612094565b005b3480156108ec57600080fd5b5061090760048036038101906109029190613600565b61211a565b60405161091491906136c6565b60405180910390f35b34801561092957600080fd5b506109326121c2565b60405161093f91906137ec565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613600565b6121c8565b005b34801561097d57600080fd5b5061099860048036038101906109939190613b62565b61224e565b6040516109a591906135af565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d091906137b0565b6122e2565b005b3480156109e357600080fd5b506109ec6123da565b6040516109f991906137ec565b60405180910390f35b348015610a0e57600080fd5b50610a176123e0565b604051610a2491906135af565b60405180910390f35b348015610a3957600080fd5b50610a426123f3565b604051610a4f91906137ec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9b5750610b9a826123f9565b5b9050919050565b610baa612463565b73ffffffffffffffffffffffffffffffffffffffff16610bc8611a75565b73ffffffffffffffffffffffffffffffffffffffff1614610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590613bee565b60405180910390fd5b600a546000541115610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613c5a565b60405180910390fd5b600a54600182600054610c789190613ca9565b610c829190613cff565b1115610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613d7f565b60405180910390fd5b610ccd338261246b565b50565b606060018054610cdf90613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b90613dce565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b5050505050905090565b6000610d6d82612489565b610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613e72565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610df2826117c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90613f04565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e82612463565b73ffffffffffffffffffffffffffffffffffffffff161480610eb15750610eb081610eab612463565b61224e565b5b610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790613f96565b60405180910390fd5b610efb8383836124a2565b505050565b600b60009054906101000a900460ff16610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690614002565b60405180910390fd5b34600f5482610f5e9190614022565b14610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f95906140c8565b60405180910390fd5b601054811115610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90614134565b60405180910390fd5b600a54600054111561102a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611021906141a0565b60405180910390fd5b600a5460018260005461103d9190613ca9565b6110479190613cff565b1115611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613d7f565b60405180910390fd5b60115481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110d69190613ca9565b1115611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e9061420c565b60405180910390fd5b611121338261246b565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111709190613ca9565b9250508190555050565b60136020528060005260406000206000915090505481565b600060016000546111a39190613cff565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790614278565b60405180910390fd5b61125b838383612554565b505050565b60005481565b6000611271836118e6565b82106112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a99061430a565b60405180910390fd5b60006112bc611192565b905060008060005b83811015611416576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146113b657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561140857868414156113ff578195505050505050611452565b83806001019450505b5080806001019150506112c4565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114499061439c565b60405180910390fd5b92915050565b611460612463565b73ffffffffffffffffffffffffffffffffffffffff1661147e611a75565b73ffffffffffffffffffffffffffffffffffffffff16146114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90613bee565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561151a573d6000803e3d6000fd5b50565b611525612463565b73ffffffffffffffffffffffffffffffffffffffff16611543611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613bee565b60405180910390fd5b8060108190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90614278565b60405180910390fd5b61162283838360405180602001604052806000815250611fbe565b505050565b600e5481565b6000600a54905090565b6000611641611192565b8210611682576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116799061442e565b60405180910390fd5b819050919050565b611692612463565b73ffffffffffffffffffffffffffffffffffffffff166116b0611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90613bee565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61173a612463565b73ffffffffffffffffffffffffffffffffffffffff16611758611a75565b73ffffffffffffffffffffffffffffffffffffffff16146117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613bee565b60405180910390fd5b8181600391906117bf92919061341e565b505050565b60006117cf82612a94565b600001519050919050565b6117e2612463565b73ffffffffffffffffffffffffffffffffffffffff16611800611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613bee565b60405180910390fd5b8060118190555050565b611868612463565b73ffffffffffffffffffffffffffffffffffffffff16611886611a75565b73ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613bee565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e906144c0565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119d7612463565b73ffffffffffffffffffffffffffffffffffffffff166119f5611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290613bee565b60405180910390fd5b611a556000612c2e565b565b60105481565b60126020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611aa7612463565b73ffffffffffffffffffffffffffffffffffffffff16611ac5611a75565b73ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613bee565b60405180910390fd5b80600c8190555050565b606060028054611b3490613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6090613dce565b8015611bad5780601f10611b8257610100808354040283529160200191611bad565b820191906000526020600020905b815481529060010190602001808311611b9057829003601f168201915b5050505050905090565b600c5481565b600b60009054906101000a900460ff16611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0390614002565b60405180910390fd5b34600c5482611c1b9190614022565b14611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c52906140c8565b60405180910390fd5b600d54811115611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790614134565b60405180910390fd5b600a546000541115611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde906141a0565b60405180910390fd5b600a54600182600054611cfa9190613ca9565b611d049190613cff565b1115611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90613d7f565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d939190613ca9565b1115611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb9061420c565b60405180910390fd5b611dde338261246b565b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e2d9190613ca9565b9250508190555050565b611e3f612463565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea49061452c565b60405180910390fd5b8060076000611eba612463565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f67612463565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fac91906135af565b60405180910390a35050565b60115481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990614278565b60405180910390fd5b61202d848484612554565b61203984848484612cf4565b612078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206f906145be565b60405180910390fd5b50505050565b6000600160005461208f9190613cff565b905090565b61209c612463565b73ffffffffffffffffffffffffffffffffffffffff166120ba611a75565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613bee565b60405180910390fd5b80600d8190555050565b606061212582612489565b612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90614650565b60405180910390fd5b600061216e612e7c565b905060008151141561218f57604051806020016040528060008152506121ba565b8061219984612f0e565b6040516020016121aa9291906146f8565b6040516020818303038152906040525b915050919050565b600a5481565b6121d0612463565b73ffffffffffffffffffffffffffffffffffffffff166121ee611a75565b73ffffffffffffffffffffffffffffffffffffffff1614612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90613bee565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ea612463565b73ffffffffffffffffffffffffffffffffffffffff16612308611a75565b73ffffffffffffffffffffffffffffffffffffffff161461235e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235590613bee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c590614799565b60405180910390fd5b6123d781612c2e565b50565b600f5481565b600b60009054906101000a900460ff1681565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61248582826040518060200160405280600081525061306f565b5050565b600080548210801561249b5750600082115b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061255f82612a94565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612586612463565b73ffffffffffffffffffffffffffffffffffffffff1614806125e257506125ab612463565b73ffffffffffffffffffffffffffffffffffffffff166125ca84610d62565b73ffffffffffffffffffffffffffffffffffffffff16145b806125fe57506125fd82600001516125f8612463565b61224e565b5b905080612640576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126379061482b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a9906148bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127199061494f565b60405180910390fd5b61272f8585856001613081565b61273f60008484600001516124a2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a245761298381612489565b15612a235782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8d8585856001613087565b5050505050565b612a9c6134a4565b612aa582612489565b612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb906149e1565b60405180910390fd5b60008290505b60008110612bed576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bde578092505050612c29565b50808060019003915050612aea565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2090614a73565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d158473ffffffffffffffffffffffffffffffffffffffff1661308d565b15612e6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d3e612463565b8786866040518563ffffffff1660e01b8152600401612d609493929190614ae8565b6020604051808303816000875af1925050508015612d9c57506040513d601f19601f82011682018060405250810190612d999190614b49565b60015b612e1f573d8060008114612dcc576040519150601f19603f3d011682016040523d82523d6000602084013e612dd1565b606091505b50600081511415612e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0e906145be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e74565b600190505b949350505050565b606060038054612e8b90613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054612eb790613dce565b8015612f045780601f10612ed957610100808354040283529160200191612f04565b820191906000526020600020905b815481529060010190602001808311612ee757829003601f168201915b5050505050905090565b60606000821415612f56576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061306a565b600082905060005b60008214612f88578080612f7190614b76565b915050600a82612f819190614bee565b9150612f5e565b60008167ffffffffffffffff811115612fa457612fa36139b4565b5b6040519080825280601f01601f191660200182016040528015612fd65781602001600182028036833780820191505090505b5090505b6000851461306357600182612fef9190613cff565b9150600a85612ffe9190614c1f565b603061300a9190613ca9565b60f81b8183815181106130205761301f614c50565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561305c9190614bee565b9450612fda565b8093505050505b919050565b61307c83838360016130a0565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310d90614cf1565b60405180910390fd5b600084141561315a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315190614d83565b60405180910390fd5b6131676000868387613081565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561340157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156133ec576133ac6000888488612cf4565b6133eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e2906145be565b60405180910390fd5b5b81806001019250508080600101915050613335565b5080600081905550506134176000868387613087565b5050505050565b82805461342a90613dce565b90600052602060002090601f01602090048101928261344c5760008555613493565b82601f1061346557803560ff1916838001178555613493565b82800160010185558215613493579182015b82811115613492578235825591602001919060010190613477565b5b5090506134a091906134de565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134f75760008160009055506001016134df565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135448161350f565b811461354f57600080fd5b50565b6000813590506135618161353b565b92915050565b60006020828403121561357d5761357c613505565b5b600061358b84828501613552565b91505092915050565b60008115159050919050565b6135a981613594565b82525050565b60006020820190506135c460008301846135a0565b92915050565b6000819050919050565b6135dd816135ca565b81146135e857600080fd5b50565b6000813590506135fa816135d4565b92915050565b60006020828403121561361657613615613505565b5b6000613624848285016135eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561366757808201518184015260208101905061364c565b83811115613676576000848401525b50505050565b6000601f19601f8301169050919050565b60006136988261362d565b6136a28185613638565b93506136b2818560208601613649565b6136bb8161367c565b840191505092915050565b600060208201905081810360008301526136e0818461368d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613713826136e8565b9050919050565b61372381613708565b82525050565b600060208201905061373e600083018461371a565b92915050565b61374d81613708565b811461375857600080fd5b50565b60008135905061376a81613744565b92915050565b6000806040838503121561378757613786613505565b5b60006137958582860161375b565b92505060206137a6858286016135eb565b9150509250929050565b6000602082840312156137c6576137c5613505565b5b60006137d48482850161375b565b91505092915050565b6137e6816135ca565b82525050565b600060208201905061380160008301846137dd565b92915050565b600060608201905061381c60008301866135a0565b61382960208301856135a0565b61383660408301846137dd565b949350505050565b60008060006060848603121561385757613856613505565b5b60006138658682870161375b565b93505060206138768682870161375b565b9250506040613887868287016135eb565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126138b6576138b5613891565b5b8235905067ffffffffffffffff8111156138d3576138d2613896565b5b6020830191508360018202830111156138ef576138ee61389b565b5b9250929050565b6000806020838503121561390d5761390c613505565b5b600083013567ffffffffffffffff81111561392b5761392a61350a565b5b613937858286016138a0565b92509250509250929050565b61394c81613594565b811461395757600080fd5b50565b60008135905061396981613943565b92915050565b6000806040838503121561398657613985613505565b5b60006139948582860161375b565b92505060206139a58582860161395a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139ec8261367c565b810181811067ffffffffffffffff82111715613a0b57613a0a6139b4565b5b80604052505050565b6000613a1e6134fb565b9050613a2a82826139e3565b919050565b600067ffffffffffffffff821115613a4a57613a496139b4565b5b613a538261367c565b9050602081019050919050565b82818337600083830152505050565b6000613a82613a7d84613a2f565b613a14565b905082815260208101848484011115613a9e57613a9d6139af565b5b613aa9848285613a60565b509392505050565b600082601f830112613ac657613ac5613891565b5b8135613ad6848260208601613a6f565b91505092915050565b60008060008060808587031215613af957613af8613505565b5b6000613b078782880161375b565b9450506020613b188782880161375b565b9350506040613b29878288016135eb565b925050606085013567ffffffffffffffff811115613b4a57613b4961350a565b5b613b5687828801613ab1565b91505092959194509250565b60008060408385031215613b7957613b78613505565b5b6000613b878582860161375b565b9250506020613b988582860161375b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bd8602083613638565b9150613be382613ba2565b602082019050919050565b60006020820190508181036000830152613c0781613bcb565b9050919050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b6000613c44600c83613638565b9150613c4f82613c0e565b602082019050919050565b60006020820190508181036000830152613c7381613c37565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cb4826135ca565b9150613cbf836135ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf457613cf3613c7a565b5b828201905092915050565b6000613d0a826135ca565b9150613d15836135ca565b925082821015613d2857613d27613c7a565b5b828203905092915050565b7f4e4f545f454e4f5547485f544f4b454e53000000000000000000000000000000600082015250565b6000613d69601183613638565b9150613d7482613d33565b602082019050919050565b60006020820190508181036000830152613d9881613d5c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613de657607f821691505b60208210811415613dfa57613df9613d9f565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613e5c602d83613638565b9150613e6782613e00565b604082019050919050565b60006020820190508181036000830152613e8b81613e4f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613eee602283613638565b9150613ef982613e92565b604082019050919050565b60006020820190508181036000830152613f1d81613ee1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613f80603983613638565b9150613f8b82613f24565b604082019050919050565b60006020820190508181036000830152613faf81613f73565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613fec601083613638565b9150613ff782613fb6565b602082019050919050565b6000602082019050818103600083015261401b81613fdf565b9050919050565b600061402d826135ca565b9150614038836135ca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407157614070613c7a565b5b828202905092915050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b60006140b2601183613638565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b600061411e601383613638565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b600061418a601283613638565b915061419582614154565b602082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b60006141f6601783613638565b9150614201826141c0565b602082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000614262600d83613638565b915061426d8261422c565b602082019050919050565b6000602082019050818103600083015261429181614255565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006142f4602283613638565b91506142ff82614298565b604082019050919050565b60006020820190508181036000830152614323816142e7565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614386602e83613638565b91506143918261432a565b604082019050919050565b600060208201905081810360008301526143b581614379565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614418602383613638565b9150614423826143bc565b604082019050919050565b600060208201905081810360008301526144478161440b565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006144aa602b83613638565b91506144b58261444e565b604082019050919050565b600060208201905081810360008301526144d98161449d565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614516601a83613638565b9150614521826144e0565b602082019050919050565b6000602082019050818103600083015261454581614509565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006145a8603383613638565b91506145b38261454c565b604082019050919050565b600060208201905081810360008301526145d78161459b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061463a602f83613638565b9150614645826145de565b604082019050919050565b600060208201905081810360008301526146698161462d565b9050919050565b600081905092915050565b60006146868261362d565b6146908185614670565b93506146a0818560208601613649565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006146e2600583614670565b91506146ed826146ac565b600582019050919050565b6000614704828561467b565b9150614710828461467b565b915061471b826146d5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614783602683613638565b915061478e82614727565b604082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614815603283613638565b9150614820826147b9565b604082019050919050565b6000602082019050818103600083015261484481614808565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006148a7602683613638565b91506148b28261484b565b604082019050919050565b600060208201905081810360008301526148d68161489a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614939602583613638565b9150614944826148dd565b604082019050919050565b600060208201905081810360008301526149688161492c565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006149cb602a83613638565b91506149d68261496f565b604082019050919050565b600060208201905081810360008301526149fa816149be565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614a5d602f83613638565b9150614a6882614a01565b604082019050919050565b60006020820190508181036000830152614a8c81614a50565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614aba82614a93565b614ac48185614a9e565b9350614ad4818560208601613649565b614add8161367c565b840191505092915050565b6000608082019050614afd600083018761371a565b614b0a602083018661371a565b614b1760408301856137dd565b8181036060830152614b298184614aaf565b905095945050505050565b600081519050614b438161353b565b92915050565b600060208284031215614b5f57614b5e613505565b5b6000614b6d84828501614b34565b91505092915050565b6000614b81826135ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bb457614bb3613c7a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bf9826135ca565b9150614c04836135ca565b925082614c1457614c13614bbf565b5b828204905092915050565b6000614c2a826135ca565b9150614c35836135ca565b925082614c4557614c44614bbf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cdb602183613638565b9150614ce682614c7f565b604082019050919050565b60006020820190508181036000830152614d0a81614cce565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614d6d602883613638565b9150614d7882614d11565b604082019050919050565b60006020820190508181036000830152614d9c81614d60565b905091905056fea2646970667358221220d55a93f13ff794f51295075f8300b290c5f5770e819f020e99d98f1a501932ed64736f6c634300080c0033

Deployed Bytecode Sourcemap

39760:3707:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26410:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42072:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28296:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29868:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29389:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42322:581;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40431:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24663:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24413:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;30744:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23662:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25331:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40712:109;;;;;;;;;;;;;:::i;:::-;;41324:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31044:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40002:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41750:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24844:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40829:87;;;;;;;;;;;;;:::i;:::-;;41550:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28105:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41433:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40924:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26846:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5439:94;;;;;;;;;;;;;:::i;:::-;;40074:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40382:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4788:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41023:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28465:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39940:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42911:553;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30154:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40113:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31359:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41648:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41118:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28640:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39876:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41219:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30513:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5688:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40038:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39911:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39967:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26410:372;26512:4;26564:25;26549:40;;;:11;:40;;;;:105;;;;26621:33;26606:48;;;:11;:48;;;;26549:105;:172;;;;26686:35;26671:50;;;:11;:50;;;;26549:172;:225;;;;26738:36;26762:11;26738:23;:36::i;:::-;26549:225;26529:245;;26410:372;;;:::o;42072:242::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42159:9:::1;;42143:12;;:25;;42135:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;42235:9;;42229:1;42221:6;42206:12;;:21;;;;:::i;:::-;42205:25;;;;:::i;:::-;42204:40;;42196:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;42277:29;42287:10;42299:6;42277:9;:29::i;:::-;42072:242:::0;:::o;28296:100::-;28350:13;28383:5;28376:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28296:100;:::o;29868:214::-;29936:7;29964:16;29972:7;29964;:16::i;:::-;29956:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30050:15;:24;30066:7;30050:24;;;;;;;;;;;;;;;;;;;;;30043:31;;29868:214;;;:::o;29389:413::-;29462:13;29478:24;29494:7;29478:15;:24::i;:::-;29462:40;;29527:5;29521:11;;:2;:11;;;;29513:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29622:5;29606:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29631:37;29648:5;29655:12;:10;:12::i;:::-;29631:16;:37::i;:::-;29606:62;29584:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;29766:28;29775:2;29779:7;29788:5;29766:8;:28::i;:::-;29451:351;29389:413;;:::o;42322:581::-;42392:10;;;;;;;;;;;42384:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;42468:9;42451:13;;42442:6;:22;;;;:::i;:::-;:35;42434:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42528:12;;42518:6;:22;;42510:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;42599:9;;42583:12;;:25;;42575:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;42681:9;;42675:1;42667:6;42652:12;;:21;;;;:::i;:::-;42651:25;;;;:::i;:::-;42650:40;;42642:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;42767:16;;42757:6;42731:11;:23;42743:10;42731:23;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:52;;42723:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;42822:29;42832:10;42844:6;42822:9;:29::i;:::-;42889:6;42862:11;:23;42874:10;42862:23;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;42322:581;:::o;40431:43::-;;;;;;;;;;;;;;;;;:::o;24663:104::-;24716:7;24758:1;24743:12;;:16;;;;:::i;:::-;24736:23;;24663:104;:::o;24413:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30744:229::-;30879:13;:22;30893:7;30879:22;;;;;;;;;;;:29;;;;;;;;;;;;30878:30;30870:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30937:28;30947:4;30953:2;30957:7;30937:9;:28::i;:::-;30744:229;;;:::o;23662:31::-;;;;:::o;25331:1007::-;25420:7;25456:16;25466:5;25456:9;:16::i;:::-;25448:5;:24;25440:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25522:22;25547:13;:11;:13::i;:::-;25522:38;;25571:19;25601:25;25790:9;25785:466;25805:14;25801:1;:18;25785:466;;;25845:31;25879:11;:14;25891:1;25879:14;;;;;;;;;;;25845:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25942:1;25916:28;;:9;:14;;;:28;;;25912:111;;25989:9;:14;;;25969:34;;25912:111;26066:5;26045:26;;:17;:26;;;26041:195;;;26115:5;26100:11;:20;26096:85;;;26156:1;26149:8;;;;;;;;;26096:85;26203:13;;;;;;;26041:195;25826:425;25821:3;;;;;;;25785:466;;;;26274:56;;;;;;;;;;:::i;:::-;;;;;;;;25331:1007;;;;;:::o;40712:109::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40770:10:::1;40762:28;;:51;40791:21;40762:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40712:109::o:0;41324:97::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41407:6:::1;41392:12;:21;;;;41324:97:::0;:::o;31044:244::-;31183:13;:22;31197:7;31183:22;;;;;;;;;;;:29;;;;;;;;;;;;31182:30;31174:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;31241:39;31258:4;31264:2;31268:7;31241:39;;;;;;;;;;;;:16;:39::i;:::-;31044:244;;;:::o;40002:29::-;;;;:::o;41750:85::-;41794:4;41818:9;;41811:16;;41750:85;:::o;24844:187::-;24911:7;24947:13;:11;:13::i;:::-;24939:5;:21;24931:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;25018:5;25011:12;;24844:187;;;:::o;40829:87::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40898:10:::1;;;;;;;;;;;40897:11;40884:10;;:24;;;;;;;;;;;;;;;;;;40829:87::o:0;41550:90::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41628:4:::1;;41622:3;:10;;;;;;;:::i;:::-;;41550:90:::0;;:::o;28105:124::-;28169:7;28196:20;28208:7;28196:11;:20::i;:::-;:25;;;28189:32;;28105:124;;;:::o;41433:105::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41524:6:::1;41505:16;:25;;;;41433:105:::0;:::o;40924:91::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41001:6:::1;40989:9;:18;;;;40924:91:::0;:::o;26846:221::-;26910:7;26955:1;26938:19;;:5;:19;;;;26930:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27031:12;:19;27044:5;27031:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27023:36;;27016:43;;26846:221;;;:::o;5439:94::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5504:21:::1;5522:1;5504:9;:21::i;:::-;5439:94::o:0;40074:28::-;;;;:::o;40382:39::-;;;;;;;;;;;;;;;;;:::o;4788:87::-;4834:7;4861:6;;;;;;;;;;;4854:13;;4788:87;:::o;41023:83::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41092:6:::1;41084:5;:14;;;;41023:83:::0;:::o;28465:104::-;28521:13;28554:7;28547:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28465:104;:::o;39940:17::-;;;;:::o;42911:553::-;42977:10;;;;;;;;;;;42969:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;43045:9;43036:5;;43027:6;:14;;;;:::i;:::-;:27;43019:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43105:8;;43095:6;:18;;43087:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;43172:9;;43156:12;;:25;;43148:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;43254:9;;43248:1;43240:6;43225:12;;:21;;;;:::i;:::-;43224:25;;;;:::i;:::-;43223:40;;43215:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;43336:12;;43326:6;43304:7;:19;43312:10;43304:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;43296:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;43387:29;43397:10;43409:6;43387:9;:29::i;:::-;43450:6;43427:7;:19;43435:10;43427:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;42911:553;:::o;30154:288::-;30261:12;:10;:12::i;:::-;30249:24;;:8;:24;;;;30241:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30362:8;30317:18;:32;30336:12;:10;:12::i;:::-;30317:32;;;;;;;;;;;;;;;:42;30350:8;30317:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30415:8;30386:48;;30401:12;:10;:12::i;:::-;30386:48;;;30425:8;30386:48;;;;;;:::i;:::-;;;;;;;;30154:288;;:::o;40113:32::-;;;;:::o;31359:422::-;31527:13;:22;31541:7;31527:22;;;;;;;;;;;:29;;;;;;;;;;;;31526:30;31518:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;31585:28;31595:4;31601:2;31605:7;31585:9;:28::i;:::-;31646:48;31669:4;31675:2;31679:7;31688:5;31646:22;:48::i;:::-;31624:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;31359:422;;;;:::o;41648:94::-;41694:4;41733:1;41718:12;;:16;;;;:::i;:::-;41711:23;;41648:94;:::o;41118:89::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41193:6:::1;41182:8;:17;;;;41118:89:::0;:::o;28640:344::-;28713:13;28747:16;28755:7;28747;:16::i;:::-;28739:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28828:21;28852:10;:8;:10::i;:::-;28828:34;;28905:1;28886:7;28880:21;:26;;:96;;;;;;;;;;;;;;;;;28933:7;28942:18;:7;:16;:18::i;:::-;28916:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28880:96;28873:103;;;28640:344;;;:::o;39876:28::-;;;;:::o;41219:97::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41302:6:::1;41287:12;:21;;;;41219:97:::0;:::o;30513:164::-;30610:4;30634:18;:25;30653:5;30634:25;;;;;;;;;;;;;;;:35;30660:8;30634:35;;;;;;;;;;;;;;;;;;;;;;;;;30627:42;;30513:164;;;;:::o;5688:192::-;5019:12;:10;:12::i;:::-;5008:23;;:7;:5;:7::i;:::-;:23;;;5000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5797:1:::1;5777:22;;:8;:22;;;;5769:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5853:19;5863:8;5853:9;:19::i;:::-;5688:192:::0;:::o;40038:29::-;;;;:::o;39911:22::-;;;;;;;;;;;;;:::o;39967:24::-;;;;:::o;16390:157::-;16475:4;16514:25;16499:40;;;:11;:40;;;;16492:47;;16390:157;;;:::o;3664:98::-;3717:7;3744:10;3737:17;;3664:98;:::o;32170:104::-;32239:27;32249:2;32253:8;32239:27;;;;;;;;;;;;:9;:27::i;:::-;32170:104;;:::o;32036:126::-;32093:4;32127:12;;32117:7;:22;:37;;;;;32153:1;32143:7;:11;32117:37;32110:44;;32036:126;;;:::o;36971:196::-;37113:2;37086:15;:24;37102:7;37086:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37151:7;37147:2;37131:28;;37140:5;37131:28;;;;;;;;;;;;36971:196;;;:::o;34851:2002::-;34966:35;35004:20;35016:7;35004:11;:20::i;:::-;34966:58;;35037:22;35079:13;:18;;;35063:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;35138:12;:10;:12::i;:::-;35114:36;;:20;35126:7;35114:11;:20::i;:::-;:36;;;35063:87;:154;;;;35167:50;35184:13;:18;;;35204:12;:10;:12::i;:::-;35167:16;:50::i;:::-;35063:154;35037:181;;35239:17;35231:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;35354:4;35332:26;;:13;:18;;;:26;;;35324:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;35434:1;35420:16;;:2;:16;;;;35412:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35491:43;35513:4;35519:2;35523:7;35532:1;35491:21;:43::i;:::-;35599:49;35616:1;35620:7;35629:13;:18;;;35599:8;:49::i;:::-;35974:1;35944:12;:18;35957:4;35944:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36018:1;35990:12;:16;36003:2;35990:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36064:2;36036:11;:20;36048:7;36036:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36126:15;36081:11;:20;36093:7;36081:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;36394:19;36426:1;36416:7;:11;36394:33;;36487:1;36446:43;;:11;:24;36458:11;36446:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36442:295;;;36514:20;36522:11;36514:7;:20::i;:::-;36510:212;;;36591:13;:18;;;36559:11;:24;36571:11;36559:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;36674:13;:28;;;36632:11;:24;36644:11;36632:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;36510:212;36442:295;35919:829;36784:7;36780:2;36765:27;;36774:4;36765:27;;;;;;;;;;;;36803:42;36824:4;36830:2;36834:7;36843:1;36803:20;:42::i;:::-;34955:1898;;34851:2002;;;:::o;27506:537::-;27567:21;;:::i;:::-;27609:16;27617:7;27609;:16::i;:::-;27601:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27715:12;27730:7;27715:22;;27710:245;27747:1;27739:4;:9;27710:245;;27777:31;27811:11;:17;27823:4;27811:17;;;;;;;;;;;27777:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27877:1;27851:28;;:9;:14;;;:28;;;27847:93;;27911:9;27904:16;;;;;;27847:93;27758:197;27750:6;;;;;;;;27710:245;;;;27978:57;;;;;;;;;;:::i;:::-;;;;;;;;27506:537;;;;:::o;5888:173::-;5944:16;5963:6;;;;;;;;;;;5944:25;;5989:8;5980:6;;:17;;;;;;;;;;;;;;;;;;6044:8;6013:40;;6034:8;6013:40;;;;;;;;;;;;5933:128;5888:173;:::o;37732:804::-;37887:4;37908:15;:2;:13;;;:15::i;:::-;37904:625;;;37960:2;37944:36;;;37981:12;:10;:12::i;:::-;37995:4;38001:7;38010:5;37944:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37940:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38207:1;38190:6;:13;:18;38186:273;;;38233:61;;;;;;;;;;:::i;:::-;;;;;;;;38186:273;38409:6;38403:13;38394:6;38390:2;38386:15;38379:38;37940:534;38077:45;;;38067:55;;;:6;:55;;;;38060:62;;;;;37904:625;38513:4;38506:11;;37732:804;;;;;;;:::o;29232:95::-;29283:13;29316:3;29309:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29232:95;:::o;1363:723::-;1419:13;1649:1;1640:5;:10;1636:53;;;1667:10;;;;;;;;;;;;;;;;;;;;;1636:53;1699:12;1714:5;1699:20;;1730:14;1755:78;1770:1;1762:4;:9;1755:78;;1788:8;;;;;:::i;:::-;;;;1819:2;1811:10;;;;;:::i;:::-;;;1755:78;;;1843:19;1875:6;1865:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1843:39;;1893:154;1909:1;1900:5;:10;1893:154;;1937:1;1927:11;;;;;:::i;:::-;;;2004:2;1996:5;:10;;;;:::i;:::-;1983:2;:24;;;;:::i;:::-;1970:39;;1953:6;1960;1953:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2033:2;2024:11;;;;;:::i;:::-;;;1893:154;;;2071:6;2057:21;;;;;1363:723;;;;:::o;32637:163::-;32760:32;32766:2;32770:8;32780:5;32787:4;32760:5;:32::i;:::-;32637:163;;;:::o;39024:159::-;;;;;:::o;39595:158::-;;;;;:::o;6749:387::-;6809:4;7017:12;7084:7;7072:20;7064:28;;7127:1;7120:4;:8;7113:15;;;6749:387;;;:::o;33059:1538::-;33198:20;33221:12;;33198:35;;33266:1;33252:16;;:2;:16;;;;33244:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33337:1;33325:8;:13;;33317:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33396:61;33426:1;33430:2;33434:12;33448:8;33396:21;:61::i;:::-;33771:8;33735:12;:16;33748:2;33735:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33836:8;33795:12;:16;33808:2;33795:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33895:2;33862:11;:25;33874:12;33862:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33962:15;33912:11;:25;33924:12;33912:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33995:20;34018:12;33995:35;;34052:9;34047:415;34067:8;34063:1;:12;34047:415;;;34131:12;34127:2;34106:38;;34123:1;34106:38;;;;;;;;;;;;34167:4;34163:249;;;34230:59;34261:1;34265:2;34269:12;34283:5;34230:22;:59::i;:::-;34196:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;34163:249;34432:14;;;;;;;34077:3;;;;;;;34047:415;;;;34493:12;34478;:27;;;;33710:807;34529:60;34558:1;34562:2;34566:12;34580:8;34529:20;:60::i;:::-;33187:1410;33059: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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:307::-;2557:1;2567:113;2581:6;2578:1;2575:13;2567:113;;;2666:1;2661:3;2657:11;2651:18;2647:1;2642:3;2638:11;2631:39;2603:2;2600:1;2596:10;2591:15;;2567:113;;;2698:6;2695:1;2692:13;2689:101;;;2778:1;2769:6;2764:3;2760:16;2753:27;2689:101;2538:258;2489:307;;;:::o;2802:102::-;2843:6;2894:2;2890:7;2885:2;2878:5;2874:14;2870:28;2860:38;;2802:102;;;:::o;2910:364::-;2998:3;3026:39;3059:5;3026:39;:::i;:::-;3081:71;3145:6;3140:3;3081:71;:::i;:::-;3074:78;;3161:52;3206:6;3201:3;3194:4;3187:5;3183:16;3161:52;:::i;:::-;3238:29;3260:6;3238:29;:::i;:::-;3233:3;3229:39;3222:46;;3002:272;2910:364;;;;:::o;3280:313::-;3393:4;3431:2;3420:9;3416:18;3408:26;;3480:9;3474:4;3470:20;3466:1;3455:9;3451:17;3444:47;3508:78;3581:4;3572:6;3508:78;:::i;:::-;3500:86;;3280:313;;;;:::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:329::-;4997:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:119;;;5052:79;;:::i;:::-;5014:119;5172:1;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5143:117;4938:329;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:418::-;5762:4;5800:2;5789:9;5785:18;5777:26;;5813:65;5875:1;5864:9;5860:17;5851:6;5813:65;:::i;:::-;5888:66;5950:2;5939:9;5935:18;5926:6;5888:66;:::i;:::-;5964:72;6032:2;6021:9;6017:18;6008:6;5964:72;:::i;:::-;5625:418;;;;;;:::o;6049:619::-;6126:6;6134;6142;6191:2;6179:9;6170:7;6166:23;6162:32;6159:119;;;6197:79;;:::i;:::-;6159:119;6317:1;6342:53;6387:7;6378:6;6367:9;6363:22;6342:53;:::i;:::-;6332:63;;6288:117;6444:2;6470:53;6515:7;6506:6;6495:9;6491:22;6470:53;:::i;:::-;6460:63;;6415:118;6572:2;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6543:118;6049:619;;;;;:::o;6674:117::-;6783:1;6780;6773:12;6797:117;6906:1;6903;6896:12;6920:117;7029:1;7026;7019:12;7057:553;7115:8;7125:6;7175:3;7168:4;7160:6;7156:17;7152:27;7142:122;;7183:79;;:::i;:::-;7142:122;7296:6;7283:20;7273:30;;7326:18;7318:6;7315:30;7312:117;;;7348:79;;:::i;:::-;7312:117;7462:4;7454:6;7450:17;7438:29;;7516:3;7508:4;7500:6;7496:17;7486:8;7482:32;7479:41;7476:128;;;7523:79;;:::i;:::-;7476:128;7057:553;;;;;:::o;7616:529::-;7687:6;7695;7744:2;7732:9;7723:7;7719:23;7715:32;7712:119;;;7750:79;;:::i;:::-;7712:119;7898:1;7887:9;7883:17;7870:31;7928:18;7920:6;7917:30;7914:117;;;7950:79;;:::i;:::-;7914:117;8063:65;8120:7;8111:6;8100:9;8096:22;8063:65;:::i;:::-;8045:83;;;;7841:297;7616:529;;;;;:::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:182::-;12432:34;12428:1;12420:6;12416:14;12409:58;12292:182;:::o;12480:366::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:419::-;13018:4;13056:2;13045:9;13041:18;13033:26;;13105:9;13099:4;13095:20;13091:1;13080:9;13076:17;13069:47;13133:131;13259:4;13133:131;:::i;:::-;13125:139;;12852:419;;;:::o;13277:162::-;13417:14;13413:1;13405:6;13401:14;13394:38;13277:162;:::o;13445:366::-;13587:3;13608:67;13672:2;13667:3;13608:67;:::i;:::-;13601:74;;13684:93;13773:3;13684:93;:::i;:::-;13802:2;13797:3;13793:12;13786:19;;13445:366;;;:::o;13817:419::-;13983:4;14021:2;14010:9;14006:18;13998:26;;14070:9;14064:4;14060:20;14056:1;14045:9;14041:17;14034:47;14098:131;14224:4;14098:131;:::i;:::-;14090:139;;13817:419;;;:::o;14242:180::-;14290:77;14287:1;14280:88;14387:4;14384:1;14377:15;14411:4;14408:1;14401:15;14428:305;14468:3;14487:20;14505:1;14487:20;:::i;:::-;14482:25;;14521:20;14539:1;14521:20;:::i;:::-;14516:25;;14675:1;14607:66;14603:74;14600:1;14597:81;14594:107;;;14681:18;;:::i;:::-;14594:107;14725:1;14722;14718:9;14711:16;;14428:305;;;;:::o;14739:191::-;14779:4;14799:20;14817:1;14799:20;:::i;:::-;14794:25;;14833:20;14851:1;14833:20;:::i;:::-;14828:25;;14872:1;14869;14866:8;14863:34;;;14877:18;;:::i;:::-;14863:34;14922:1;14919;14915:9;14907:17;;14739:191;;;;:::o;14936:167::-;15076:19;15072:1;15064:6;15060:14;15053:43;14936:167;:::o;15109:366::-;15251:3;15272:67;15336:2;15331:3;15272:67;:::i;:::-;15265:74;;15348:93;15437:3;15348:93;:::i;:::-;15466:2;15461:3;15457:12;15450:19;;15109:366;;;:::o;15481:419::-;15647:4;15685:2;15674:9;15670:18;15662:26;;15734:9;15728:4;15724:20;15720:1;15709:9;15705:17;15698:47;15762:131;15888:4;15762:131;:::i;:::-;15754:139;;15481:419;;;:::o;15906:180::-;15954:77;15951:1;15944:88;16051:4;16048:1;16041:15;16075:4;16072:1;16065:15;16092:320;16136:6;16173:1;16167:4;16163:12;16153:22;;16220:1;16214:4;16210:12;16241:18;16231:81;;16297:4;16289:6;16285:17;16275:27;;16231:81;16359:2;16351:6;16348:14;16328:18;16325:38;16322:84;;;16378:18;;:::i;:::-;16322:84;16143:269;16092:320;;;:::o;16418:232::-;16558:34;16554:1;16546:6;16542:14;16535:58;16627:15;16622:2;16614:6;16610:15;16603:40;16418:232;:::o;16656:366::-;16798:3;16819:67;16883:2;16878:3;16819:67;:::i;:::-;16812:74;;16895:93;16984:3;16895:93;:::i;:::-;17013:2;17008:3;17004:12;16997:19;;16656:366;;;:::o;17028:419::-;17194:4;17232:2;17221:9;17217:18;17209:26;;17281:9;17275:4;17271:20;17267:1;17256:9;17252:17;17245:47;17309:131;17435:4;17309:131;:::i;:::-;17301:139;;17028:419;;;:::o;17453:221::-;17593:34;17589:1;17581:6;17577:14;17570:58;17662:4;17657:2;17649:6;17645:15;17638:29;17453:221;:::o;17680:366::-;17822:3;17843:67;17907:2;17902:3;17843:67;:::i;:::-;17836:74;;17919:93;18008:3;17919:93;:::i;:::-;18037:2;18032:3;18028:12;18021:19;;17680:366;;;:::o;18052:419::-;18218:4;18256:2;18245:9;18241:18;18233:26;;18305:9;18299:4;18295:20;18291:1;18280:9;18276:17;18269:47;18333:131;18459:4;18333:131;:::i;:::-;18325:139;;18052:419;;;:::o;18477:244::-;18617:34;18613:1;18605:6;18601:14;18594:58;18686:27;18681:2;18673:6;18669:15;18662:52;18477:244;:::o;18727:366::-;18869:3;18890:67;18954:2;18949:3;18890:67;:::i;:::-;18883:74;;18966:93;19055:3;18966:93;:::i;:::-;19084:2;19079:3;19075:12;19068:19;;18727:366;;;:::o;19099:419::-;19265:4;19303:2;19292:9;19288:18;19280:26;;19352:9;19346:4;19342:20;19338:1;19327:9;19323:17;19316:47;19380:131;19506:4;19380:131;:::i;:::-;19372:139;;19099:419;;;:::o;19524:166::-;19664:18;19660:1;19652:6;19648:14;19641:42;19524:166;:::o;19696:366::-;19838:3;19859:67;19923:2;19918:3;19859:67;:::i;:::-;19852:74;;19935:93;20024:3;19935:93;:::i;:::-;20053:2;20048:3;20044:12;20037:19;;19696:366;;;:::o;20068:419::-;20234:4;20272:2;20261:9;20257:18;20249:26;;20321:9;20315:4;20311:20;20307:1;20296:9;20292:17;20285:47;20349:131;20475:4;20349:131;:::i;:::-;20341:139;;20068:419;;;:::o;20493:348::-;20533:7;20556:20;20574:1;20556:20;:::i;:::-;20551:25;;20590:20;20608:1;20590:20;:::i;:::-;20585:25;;20778:1;20710:66;20706:74;20703:1;20700:81;20695:1;20688:9;20681:17;20677:105;20674:131;;;20785:18;;:::i;:::-;20674:131;20833:1;20830;20826:9;20815:20;;20493:348;;;;:::o;20847:167::-;20987:19;20983:1;20975:6;20971:14;20964:43;20847:167;:::o;21020:366::-;21162:3;21183:67;21247:2;21242:3;21183:67;:::i;:::-;21176:74;;21259:93;21348:3;21259:93;:::i;:::-;21377:2;21372:3;21368:12;21361:19;;21020:366;;;:::o;21392:419::-;21558:4;21596:2;21585:9;21581:18;21573:26;;21645:9;21639:4;21635:20;21631:1;21620:9;21616:17;21609:47;21673:131;21799:4;21673:131;:::i;:::-;21665:139;;21392:419;;;:::o;21817:169::-;21957:21;21953:1;21945:6;21941:14;21934:45;21817:169;:::o;21992:366::-;22134:3;22155:67;22219:2;22214:3;22155:67;:::i;:::-;22148:74;;22231:93;22320:3;22231:93;:::i;:::-;22349:2;22344:3;22340:12;22333:19;;21992:366;;;:::o;22364:419::-;22530:4;22568:2;22557:9;22553:18;22545:26;;22617:9;22611:4;22607:20;22603:1;22592:9;22588:17;22581:47;22645:131;22771:4;22645:131;:::i;:::-;22637:139;;22364:419;;;:::o;22789:168::-;22929:20;22925:1;22917:6;22913:14;22906:44;22789:168;:::o;22963:366::-;23105:3;23126:67;23190:2;23185:3;23126:67;:::i;:::-;23119:74;;23202:93;23291:3;23202:93;:::i;:::-;23320:2;23315:3;23311:12;23304:19;;22963:366;;;:::o;23335:419::-;23501:4;23539:2;23528:9;23524:18;23516:26;;23588:9;23582:4;23578:20;23574:1;23563:9;23559:17;23552:47;23616:131;23742:4;23616:131;:::i;:::-;23608:139;;23335:419;;;:::o;23760:173::-;23900:25;23896:1;23888:6;23884:14;23877:49;23760:173;:::o;23939:366::-;24081:3;24102:67;24166:2;24161:3;24102:67;:::i;:::-;24095:74;;24178:93;24267:3;24178:93;:::i;:::-;24296:2;24291:3;24287:12;24280:19;;23939:366;;;:::o;24311:419::-;24477:4;24515:2;24504:9;24500:18;24492:26;;24564:9;24558:4;24554:20;24550:1;24539:9;24535:17;24528:47;24592:131;24718:4;24592:131;:::i;:::-;24584:139;;24311:419;;;:::o;24736:163::-;24876:15;24872:1;24864:6;24860:14;24853:39;24736:163;:::o;24905:366::-;25047:3;25068:67;25132:2;25127:3;25068:67;:::i;:::-;25061:74;;25144:93;25233:3;25144:93;:::i;:::-;25262:2;25257:3;25253:12;25246:19;;24905:366;;;:::o;25277:419::-;25443:4;25481:2;25470:9;25466:18;25458:26;;25530:9;25524:4;25520:20;25516:1;25505:9;25501:17;25494:47;25558:131;25684:4;25558:131;:::i;:::-;25550:139;;25277:419;;;:::o;25702:221::-;25842:34;25838:1;25830:6;25826:14;25819:58;25911:4;25906:2;25898:6;25894:15;25887:29;25702:221;:::o;25929:366::-;26071:3;26092:67;26156:2;26151:3;26092:67;:::i;:::-;26085:74;;26168:93;26257:3;26168:93;:::i;:::-;26286:2;26281:3;26277:12;26270:19;;25929:366;;;:::o;26301:419::-;26467:4;26505:2;26494:9;26490:18;26482:26;;26554:9;26548:4;26544:20;26540:1;26529:9;26525:17;26518:47;26582:131;26708:4;26582:131;:::i;:::-;26574:139;;26301:419;;;:::o;26726:233::-;26866:34;26862:1;26854:6;26850:14;26843:58;26935:16;26930:2;26922:6;26918:15;26911:41;26726:233;:::o;26965:366::-;27107:3;27128:67;27192:2;27187:3;27128:67;:::i;:::-;27121:74;;27204:93;27293:3;27204:93;:::i;:::-;27322:2;27317:3;27313:12;27306:19;;26965:366;;;:::o;27337:419::-;27503:4;27541:2;27530:9;27526:18;27518:26;;27590:9;27584:4;27580:20;27576:1;27565:9;27561:17;27554:47;27618:131;27744:4;27618:131;:::i;:::-;27610:139;;27337:419;;;:::o;27762:222::-;27902:34;27898:1;27890:6;27886:14;27879:58;27971:5;27966:2;27958:6;27954:15;27947:30;27762:222;:::o;27990:366::-;28132:3;28153:67;28217:2;28212:3;28153:67;:::i;:::-;28146:74;;28229:93;28318:3;28229:93;:::i;:::-;28347:2;28342:3;28338:12;28331:19;;27990:366;;;:::o;28362:419::-;28528:4;28566:2;28555:9;28551:18;28543:26;;28615:9;28609:4;28605:20;28601:1;28590:9;28586:17;28579:47;28643:131;28769:4;28643:131;:::i;:::-;28635:139;;28362:419;;;:::o;28787:230::-;28927:34;28923:1;28915:6;28911:14;28904:58;28996:13;28991:2;28983:6;28979:15;28972:38;28787:230;:::o;29023:366::-;29165:3;29186:67;29250:2;29245:3;29186:67;:::i;:::-;29179:74;;29262:93;29351:3;29262:93;:::i;:::-;29380:2;29375:3;29371:12;29364:19;;29023:366;;;:::o;29395:419::-;29561:4;29599:2;29588:9;29584:18;29576:26;;29648:9;29642:4;29638:20;29634:1;29623:9;29619:17;29612:47;29676:131;29802:4;29676:131;:::i;:::-;29668:139;;29395:419;;;:::o;29820:176::-;29960:28;29956:1;29948:6;29944:14;29937:52;29820:176;:::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:238::-;30939:34;30935:1;30927:6;30923:14;30916:58;31008:21;31003:2;30995:6;30991:15;30984:46;30799:238;:::o;31043:366::-;31185:3;31206:67;31270:2;31265:3;31206:67;:::i;:::-;31199:74;;31282:93;31371:3;31282:93;:::i;:::-;31400:2;31395:3;31391:12;31384:19;;31043:366;;;:::o;31415:419::-;31581:4;31619:2;31608:9;31604:18;31596:26;;31668:9;31662:4;31658:20;31654:1;31643:9;31639:17;31632:47;31696:131;31822:4;31696:131;:::i;:::-;31688:139;;31415:419;;;:::o;31840:234::-;31980:34;31976:1;31968:6;31964:14;31957:58;32049:17;32044:2;32036:6;32032:15;32025:42;31840:234;:::o;32080:366::-;32222:3;32243:67;32307:2;32302:3;32243:67;:::i;:::-;32236:74;;32319:93;32408:3;32319:93;:::i;:::-;32437:2;32432:3;32428:12;32421:19;;32080:366;;;:::o;32452:419::-;32618:4;32656:2;32645:9;32641:18;32633:26;;32705:9;32699:4;32695:20;32691:1;32680:9;32676:17;32669:47;32733:131;32859:4;32733:131;:::i;:::-;32725:139;;32452:419;;;:::o;32877:148::-;32979:11;33016:3;33001:18;;32877:148;;;;:::o;33031:377::-;33137:3;33165:39;33198:5;33165:39;:::i;:::-;33220:89;33302:6;33297:3;33220:89;:::i;:::-;33213:96;;33318:52;33363:6;33358:3;33351:4;33344:5;33340:16;33318:52;:::i;:::-;33395:6;33390:3;33386:16;33379:23;;33141:267;33031:377;;;;:::o;33414:155::-;33554:7;33550:1;33542:6;33538:14;33531:31;33414:155;:::o;33575:400::-;33735:3;33756:84;33838:1;33833:3;33756:84;:::i;:::-;33749:91;;33849:93;33938:3;33849:93;:::i;:::-;33967:1;33962:3;33958:11;33951:18;;33575:400;;;:::o;33981:701::-;34262:3;34284:95;34375:3;34366:6;34284:95;:::i;:::-;34277:102;;34396:95;34487:3;34478:6;34396:95;:::i;:::-;34389:102;;34508:148;34652:3;34508:148;:::i;:::-;34501:155;;34673:3;34666:10;;33981:701;;;;;:::o;34688:225::-;34828:34;34824:1;34816:6;34812:14;34805:58;34897:8;34892:2;34884:6;34880:15;34873:33;34688:225;:::o;34919:366::-;35061:3;35082:67;35146:2;35141:3;35082:67;:::i;:::-;35075:74;;35158:93;35247:3;35158:93;:::i;:::-;35276:2;35271:3;35267:12;35260:19;;34919:366;;;:::o;35291:419::-;35457:4;35495:2;35484:9;35480:18;35472:26;;35544:9;35538:4;35534:20;35530:1;35519:9;35515:17;35508:47;35572:131;35698:4;35572:131;:::i;:::-;35564:139;;35291:419;;;:::o;35716:237::-;35856:34;35852:1;35844:6;35840:14;35833:58;35925:20;35920:2;35912:6;35908:15;35901:45;35716:237;:::o;35959:366::-;36101:3;36122:67;36186:2;36181:3;36122:67;:::i;:::-;36115:74;;36198:93;36287:3;36198:93;:::i;:::-;36316:2;36311:3;36307:12;36300:19;;35959:366;;;:::o;36331:419::-;36497:4;36535:2;36524:9;36520:18;36512:26;;36584:9;36578:4;36574:20;36570:1;36559:9;36555:17;36548:47;36612:131;36738:4;36612:131;:::i;:::-;36604:139;;36331:419;;;:::o;36756:225::-;36896:34;36892:1;36884:6;36880:14;36873:58;36965:8;36960:2;36952:6;36948:15;36941:33;36756:225;:::o;36987:366::-;37129:3;37150:67;37214:2;37209:3;37150:67;:::i;:::-;37143:74;;37226:93;37315:3;37226:93;:::i;:::-;37344:2;37339:3;37335:12;37328:19;;36987:366;;;:::o;37359:419::-;37525:4;37563:2;37552:9;37548:18;37540:26;;37612:9;37606:4;37602:20;37598:1;37587:9;37583:17;37576:47;37640:131;37766:4;37640:131;:::i;:::-;37632:139;;37359:419;;;:::o;37784:224::-;37924:34;37920:1;37912:6;37908:14;37901:58;37993:7;37988:2;37980:6;37976:15;37969:32;37784:224;:::o;38014:366::-;38156:3;38177:67;38241:2;38236:3;38177:67;:::i;:::-;38170:74;;38253:93;38342:3;38253:93;:::i;:::-;38371:2;38366:3;38362:12;38355:19;;38014:366;;;:::o;38386:419::-;38552:4;38590:2;38579:9;38575:18;38567:26;;38639:9;38633:4;38629:20;38625:1;38614:9;38610:17;38603:47;38667:131;38793:4;38667:131;:::i;:::-;38659:139;;38386:419;;;:::o;38811:229::-;38951:34;38947:1;38939:6;38935:14;38928:58;39020:12;39015:2;39007:6;39003:15;38996:37;38811:229;:::o;39046:366::-;39188:3;39209:67;39273:2;39268:3;39209:67;:::i;:::-;39202:74;;39285:93;39374:3;39285:93;:::i;:::-;39403:2;39398:3;39394:12;39387:19;;39046:366;;;:::o;39418:419::-;39584:4;39622:2;39611:9;39607:18;39599:26;;39671:9;39665:4;39661:20;39657:1;39646:9;39642:17;39635:47;39699:131;39825:4;39699:131;:::i;:::-;39691:139;;39418:419;;;:::o;39843:234::-;39983:34;39979:1;39971:6;39967:14;39960:58;40052:17;40047:2;40039:6;40035:15;40028:42;39843:234;:::o;40083:366::-;40225:3;40246:67;40310:2;40305:3;40246:67;:::i;:::-;40239:74;;40322:93;40411:3;40322:93;:::i;:::-;40440:2;40435:3;40431:12;40424:19;;40083:366;;;:::o;40455:419::-;40621:4;40659:2;40648:9;40644:18;40636:26;;40708:9;40702:4;40698:20;40694:1;40683:9;40679:17;40672:47;40736:131;40862:4;40736:131;:::i;:::-;40728:139;;40455:419;;;:::o;40880:98::-;40931:6;40965:5;40959:12;40949:22;;40880:98;;;:::o;40984:168::-;41067:11;41101:6;41096:3;41089:19;41141:4;41136:3;41132:14;41117:29;;40984:168;;;;:::o;41158:360::-;41244:3;41272:38;41304:5;41272:38;:::i;:::-;41326:70;41389:6;41384:3;41326:70;:::i;:::-;41319:77;;41405:52;41450:6;41445:3;41438:4;41431:5;41427:16;41405:52;:::i;:::-;41482:29;41504:6;41482:29;:::i;:::-;41477:3;41473:39;41466:46;;41248:270;41158:360;;;;:::o;41524:640::-;41719:4;41757:3;41746:9;41742:19;41734:27;;41771:71;41839:1;41828:9;41824:17;41815:6;41771:71;:::i;:::-;41852:72;41920:2;41909:9;41905:18;41896:6;41852:72;:::i;:::-;41934;42002:2;41991:9;41987:18;41978:6;41934:72;:::i;:::-;42053:9;42047:4;42043:20;42038:2;42027:9;42023:18;42016:48;42081:76;42152:4;42143:6;42081:76;:::i;:::-;42073:84;;41524:640;;;;;;;:::o;42170:141::-;42226:5;42257:6;42251:13;42242:22;;42273:32;42299:5;42273:32;:::i;:::-;42170:141;;;;:::o;42317:349::-;42386:6;42435:2;42423:9;42414:7;42410:23;42406:32;42403:119;;;42441:79;;:::i;:::-;42403:119;42561:1;42586:63;42641:7;42632:6;42621:9;42617:22;42586:63;:::i;:::-;42576:73;;42532:127;42317:349;;;;:::o;42672:233::-;42711:3;42734:24;42752:5;42734:24;:::i;:::-;42725:33;;42780:66;42773:5;42770:77;42767:103;;;42850:18;;:::i;:::-;42767:103;42897:1;42890:5;42886:13;42879:20;;42672:233;;;:::o;42911:180::-;42959:77;42956:1;42949:88;43056:4;43053:1;43046:15;43080:4;43077:1;43070:15;43097:185;43137:1;43154:20;43172:1;43154:20;:::i;:::-;43149:25;;43188:20;43206:1;43188:20;:::i;:::-;43183:25;;43227:1;43217:35;;43232:18;;:::i;:::-;43217:35;43274:1;43271;43267:9;43262:14;;43097:185;;;;:::o;43288:176::-;43320:1;43337:20;43355:1;43337:20;:::i;:::-;43332:25;;43371:20;43389:1;43371:20;:::i;:::-;43366:25;;43410:1;43400:35;;43415:18;;:::i;:::-;43400:35;43456:1;43453;43449:9;43444:14;;43288:176;;;;:::o;43470:180::-;43518:77;43515:1;43508:88;43615:4;43612:1;43605:15;43639:4;43636:1;43629:15;43656:220;43796:34;43792:1;43784:6;43780:14;43773:58;43865:3;43860:2;43852:6;43848:15;43841:28;43656:220;:::o;43882:366::-;44024:3;44045:67;44109:2;44104:3;44045:67;:::i;:::-;44038:74;;44121:93;44210:3;44121:93;:::i;:::-;44239:2;44234:3;44230:12;44223:19;;43882:366;;;:::o;44254:419::-;44420:4;44458:2;44447:9;44443:18;44435:26;;44507:9;44501:4;44497:20;44493:1;44482:9;44478:17;44471:47;44535:131;44661:4;44535:131;:::i;:::-;44527:139;;44254:419;;;:::o;44679:227::-;44819:34;44815:1;44807:6;44803:14;44796:58;44888:10;44883:2;44875:6;44871:15;44864:35;44679:227;:::o;44912:366::-;45054:3;45075:67;45139:2;45134:3;45075:67;:::i;:::-;45068:74;;45151:93;45240:3;45151:93;:::i;:::-;45269:2;45264:3;45260:12;45253:19;;44912:366;;;:::o;45284:419::-;45450:4;45488:2;45477:9;45473:18;45465:26;;45537:9;45531:4;45527:20;45523:1;45512:9;45508:17;45501:47;45565:131;45691:4;45565:131;:::i;:::-;45557:139;;45284:419;;;:::o

Swarm Source

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