ETH Price: $2,389.63 (-1.02%)

Token

BloodyApeFromHell (BAFH)
 

Overview

Max Total Supply

5,116 BAFH

Holders

618

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BAFH
0xe6c873f585d4666845ad23f728a590c59f8dedf1
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:
BloodyApeFromHell

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: CESHI1.sol


pragma solidity ^0.8.0;










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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        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 BloodyApeFromHell is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "ipfs://.../";
    uint   public price             = 0.003 ether;
    uint   public maxPerTx          = 10;
    uint   public maxPerFree        = 1;
    uint   public totalFree         = 5000;
    uint   public maxSupply         = 5000;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("BloodyApeFromHell", "BAFH"){}

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json"))
            : "";
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 2) &&
            (_mintedFreeAmount[msg.sender] + count <= maxPerFree));

        if (isFree) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += count;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count <= maxSupply, "No more");
        require(count <= maxPerTx, "Max per TX reached.");

        _safeMint(msg.sender, count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function setmaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040526040518060400160405280600b81526020017f697066733a2f2f2e2e2e2f00000000000000000000000000000000000000000081525060099080519060200190620000519291906200021d565b50660aa87bee538000600a55600a600b556001600c55611388600d55611388600e553480156200008057600080fd5b506040518060400160405280601181526020017f426c6f6f647941706546726f6d48656c6c0000000000000000000000000000008152506040518060400160405280600481526020017f42414648000000000000000000000000000000000000000000000000000000008152508160019080519060200190620001059291906200021d565b5080600290805190602001906200011e9291906200021d565b50505062000141620001356200014f60201b60201c565b6200015760201b60201c565b600160088190555062000332565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b90620002cd565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc62000303565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61422480620003426000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610667578063e985e9c514610692578063f2fde38b146106cf578063f968adbe146106f8576101cd565b8063a22cb465146105ad578063b88d4fde146105d6578063c7c39ffc146105ff578063c87b56dd1461062a576101cd565b806395d89b41116100d157806395d89b4114610512578063a035b1fe1461053d578063a0712d6814610568578063a0bcfc7f14610584576101cd565b8063715018a6146104a75780638da5cb5b146104be57806391b7f5ed146104e9576101cd565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103c55780636352211e146104025780636c0360eb1461043f57806370a082311461046a576101cd565b80632f745c591461031d578063333e44e61461035a5780633ccfd60b1461038557806342842e0e1461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a0578063228025e8146102cb57806323b872dd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d4a565b610723565b6040516102069190613323565b60405180910390f35b34801561021b57600080fd5b5061022461086d565b604051610231919061333e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ded565b6108ff565b60405161026e91906132bc565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d0a565b610984565b005b3480156102ac57600080fd5b506102b5610a9d565b6040516102c29190613660565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612ded565b610aa6565b005b34801561030057600080fd5b5061031b60048036038101906103169190612bf4565b610b2c565b005b34801561032957600080fd5b50610344600480360381019061033f9190612d0a565b610b3c565b6040516103519190613660565b60405180910390f35b34801561036657600080fd5b5061036f610d2e565b60405161037c9190613660565b60405180910390f35b34801561039157600080fd5b5061039a610d34565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612bf4565b610eb5565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612ded565b610ed5565b6040516103f99190613660565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612ded565b610f28565b60405161043691906132bc565b60405180910390f35b34801561044b57600080fd5b50610454610f3e565b604051610461919061333e565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190612b87565b610fcc565b60405161049e9190613660565b60405180910390f35b3480156104b357600080fd5b506104bc6110b5565b005b3480156104ca57600080fd5b506104d361113d565b6040516104e091906132bc565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612ded565b611167565b005b34801561051e57600080fd5b506105276111ed565b604051610534919061333e565b60405180910390f35b34801561054957600080fd5b5061055261127f565b60405161055f9190613660565b60405180910390f35b610582600480360381019061057d9190612ded565b611285565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612da4565b611465565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612cca565b6114fb565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612c47565b61167c565b005b34801561060b57600080fd5b506106146116d8565b6040516106219190613660565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612ded565b6116de565b60405161065e919061333e565b60405180910390f35b34801561067357600080fd5b5061067c611791565b6040516106899190613660565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612bb4565b611797565b6040516106c69190613323565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612b87565b61182b565b005b34801561070457600080fd5b5061070d611923565b60405161071a9190613660565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610866575061086582611929565b5b9050919050565b60606001805461087c9061391b565b80601f01602080910402602001604051908101604052809291908181526020018280546108a89061391b565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a82611993565b610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094090613640565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82610f28565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790613520565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1f6119a0565b73ffffffffffffffffffffffffffffffffffffffff161480610a4e5750610a4d81610a486119a0565b611797565b5b610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490613420565b60405180910390fd5b610a988383836119a8565b505050565b60008054905090565b610aae6119a0565b73ffffffffffffffffffffffffffffffffffffffff16610acc61113d565b73ffffffffffffffffffffffffffffffffffffffff1614610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990613480565b60405180910390fd5b80600e8190555050565b610b37838383611a5a565b505050565b6000610b4783610fcc565b8210610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613360565b60405180910390fd5b6000610b92610a9d565b905060008060005b83811015610cec576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c8c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cde5786841415610cd5578195505050505050610d28565b83806001019450505b508080600101915050610b9a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f906135e0565b60405180910390fd5b92915050565b600d5481565b610d3c6119a0565b73ffffffffffffffffffffffffffffffffffffffff16610d5a61113d565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790613480565b60405180910390fd5b60026008541415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613600565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610e24906132a7565b60006040518083038185875af1925050503d8060008114610e61576040519150601f19603f3d011682016040523d82523d6000602084013e610e66565b606091505b5050905080610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190613540565b60405180910390fd5b506001600881905550565b610ed08383836040518060200160405280600081525061167c565b505050565b6000610edf610a9d565b8210610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906133e0565b60405180910390fd5b819050919050565b6000610f3382611f9a565b600001519050919050565b60098054610f4b9061391b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f779061391b565b8015610fc45780601f10610f9957610100808354040283529160200191610fc4565b820191906000526020600020905b815481529060010190602001808311610fa757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103490613440565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110bd6119a0565b73ffffffffffffffffffffffffffffffffffffffff166110db61113d565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890613480565b60405180910390fd5b61113b6000612134565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61116f6119a0565b73ffffffffffffffffffffffffffffffffffffffff1661118d61113d565b73ffffffffffffffffffffffffffffffffffffffff16146111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90613480565b60405180910390fd5b80600a8190555050565b6060600280546111fc9061391b565b80601f01602080910402602001604051908101604052809291908181526020018280546112289061391b565b80156112755780601f1061124a57610100808354040283529160200191611275565b820191906000526020600020905b81548152906001019060200180831161125857829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006002600d5461129d9190613750565b836112a6610a9d565b6112b09190613750565b1080156113095750600c5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113069190613750565b11155b9050801561136c576000915082600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113649190613750565b925050819055505b818361137891906137d7565b3410156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190613500565b60405180910390fd5b600e54836113c6610a9d565b6113d09190613750565b1115611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613380565b60405180910390fd5b600b54831115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d906135c0565b60405180910390fd5b61146033846121fa565b505050565b61146d6119a0565b73ffffffffffffffffffffffffffffffffffffffff1661148b61113d565b73ffffffffffffffffffffffffffffffffffffffff16146114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613480565b60405180910390fd5b80600990805190602001906114f7929190612961565b5050565b6115036119a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611571576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611568906134c0565b60405180910390fd5b806006600061157e6119a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661162b6119a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116709190613323565b60405180910390a35050565b611687848484611a5a565b61169384848484612218565b6116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990613560565b60405180910390fd5b50505050565b600c5481565b60606116e982611993565b611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906134a0565b60405180910390fd5b60006117326123af565b905060008151116117525760405180602001604052806000815250611789565b806117686001856117639190613750565b612441565b604051602001611779929190613278565b6040516020818303038152906040525b915050919050565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118336119a0565b73ffffffffffffffffffffffffffffffffffffffff1661185161113d565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613480565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906133a0565b60405180910390fd5b61192081612134565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a6582611f9a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a8c6119a0565b73ffffffffffffffffffffffffffffffffffffffff161480611ae85750611ab16119a0565b73ffffffffffffffffffffffffffffffffffffffff16611ad0846108ff565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b045750611b038260000151611afe6119a0565b611797565b5b905080611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d906134e0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf90613460565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f90613400565b60405180910390fd5b611c3585858560016125a2565b611c4560008484600001516119a8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f2a57611e8981611993565b15611f295782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f9385858560016125a8565b5050505050565b611fa26129e7565b611fab82611993565b611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe1906133c0565b60405180910390fd5b60008290505b600081106120f3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120e457809250505061212f565b50808060019003915050611ff0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690613620565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122148282604051806020016040528060008152506125ae565b5050565b60006122398473ffffffffffffffffffffffffffffffffffffffff166125c0565b156123a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122626119a0565b8786866040518563ffffffff1660e01b815260040161228494939291906132d7565b602060405180830381600087803b15801561229e57600080fd5b505af19250505080156122cf57506040513d601f19601f820116820180604052508101906122cc9190612d77565b60015b612352573d80600081146122ff576040519150601f19603f3d011682016040523d82523d6000602084013e612304565b606091505b5060008151141561234a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234190613560565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123a7565b600190505b949350505050565b6060600980546123be9061391b565b80601f01602080910402602001604051908101604052809291908181526020018280546123ea9061391b565b80156124375780601f1061240c57610100808354040283529160200191612437565b820191906000526020600020905b81548152906001019060200180831161241a57829003601f168201915b5050505050905090565b60606000821415612489576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061259d565b600082905060005b600082146124bb5780806124a49061397e565b915050600a826124b491906137a6565b9150612491565b60008167ffffffffffffffff8111156124d7576124d6613ab4565b5b6040519080825280601f01601f1916602001820160405280156125095781602001600182028036833780820191505090505b5090505b60008514612596576001826125229190613831565b9150600a8561253191906139c7565b603061253d9190613750565b60f81b81838151811061255357612552613a85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561258f91906137a6565b945061250d565b8093505050505b919050565b50505050565b50505050565b6125bb83838360016125e3565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265090613580565b60405180910390fd5b600084141561269d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612694906135a0565b60405180910390fd5b6126aa60008683876125a2565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561294457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561292f576128ef6000888488612218565b61292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590613560565b60405180910390fd5b5b81806001019250508080600101915050612878565b50806000819055505061295a60008683876125a8565b5050505050565b82805461296d9061391b565b90600052602060002090601f01602090048101928261298f57600085556129d6565b82601f106129a857805160ff19168380011785556129d6565b828001600101855582156129d6579182015b828111156129d55782518255916020019190600101906129ba565b5b5090506129e39190612a21565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a3a576000816000905550600101612a22565b5090565b6000612a51612a4c846136a0565b61367b565b905082815260208101848484011115612a6d57612a6c613ae8565b5b612a788482856138d9565b509392505050565b6000612a93612a8e846136d1565b61367b565b905082815260208101848484011115612aaf57612aae613ae8565b5b612aba8482856138d9565b509392505050565b600081359050612ad181614192565b92915050565b600081359050612ae6816141a9565b92915050565b600081359050612afb816141c0565b92915050565b600081519050612b10816141c0565b92915050565b600082601f830112612b2b57612b2a613ae3565b5b8135612b3b848260208601612a3e565b91505092915050565b600082601f830112612b5957612b58613ae3565b5b8135612b69848260208601612a80565b91505092915050565b600081359050612b81816141d7565b92915050565b600060208284031215612b9d57612b9c613af2565b5b6000612bab84828501612ac2565b91505092915050565b60008060408385031215612bcb57612bca613af2565b5b6000612bd985828601612ac2565b9250506020612bea85828601612ac2565b9150509250929050565b600080600060608486031215612c0d57612c0c613af2565b5b6000612c1b86828701612ac2565b9350506020612c2c86828701612ac2565b9250506040612c3d86828701612b72565b9150509250925092565b60008060008060808587031215612c6157612c60613af2565b5b6000612c6f87828801612ac2565b9450506020612c8087828801612ac2565b9350506040612c9187828801612b72565b925050606085013567ffffffffffffffff811115612cb257612cb1613aed565b5b612cbe87828801612b16565b91505092959194509250565b60008060408385031215612ce157612ce0613af2565b5b6000612cef85828601612ac2565b9250506020612d0085828601612ad7565b9150509250929050565b60008060408385031215612d2157612d20613af2565b5b6000612d2f85828601612ac2565b9250506020612d4085828601612b72565b9150509250929050565b600060208284031215612d6057612d5f613af2565b5b6000612d6e84828501612aec565b91505092915050565b600060208284031215612d8d57612d8c613af2565b5b6000612d9b84828501612b01565b91505092915050565b600060208284031215612dba57612db9613af2565b5b600082013567ffffffffffffffff811115612dd857612dd7613aed565b5b612de484828501612b44565b91505092915050565b600060208284031215612e0357612e02613af2565b5b6000612e1184828501612b72565b91505092915050565b612e2381613865565b82525050565b612e3281613877565b82525050565b6000612e4382613702565b612e4d8185613718565b9350612e5d8185602086016138e8565b612e6681613af7565b840191505092915050565b6000612e7c8261370d565b612e868185613734565b9350612e968185602086016138e8565b612e9f81613af7565b840191505092915050565b6000612eb58261370d565b612ebf8185613745565b9350612ecf8185602086016138e8565b80840191505092915050565b6000612ee8602283613734565b9150612ef382613b08565b604082019050919050565b6000612f0b600783613734565b9150612f1682613b57565b602082019050919050565b6000612f2e602683613734565b9150612f3982613b80565b604082019050919050565b6000612f51602a83613734565b9150612f5c82613bcf565b604082019050919050565b6000612f74602383613734565b9150612f7f82613c1e565b604082019050919050565b6000612f97602583613734565b9150612fa282613c6d565b604082019050919050565b6000612fba603983613734565b9150612fc582613cbc565b604082019050919050565b6000612fdd602b83613734565b9150612fe882613d0b565b604082019050919050565b6000613000602683613734565b915061300b82613d5a565b604082019050919050565b6000613023600583613745565b915061302e82613da9565b600582019050919050565b6000613046602083613734565b915061305182613dd2565b602082019050919050565b6000613069602f83613734565b915061307482613dfb565b604082019050919050565b600061308c601a83613734565b915061309782613e4a565b602082019050919050565b60006130af603283613734565b91506130ba82613e73565b604082019050919050565b60006130d2601d83613734565b91506130dd82613ec2565b602082019050919050565b60006130f5602283613734565b915061310082613eeb565b604082019050919050565b6000613118600083613729565b915061312382613f3a565b600082019050919050565b600061313b601083613734565b915061314682613f3d565b602082019050919050565b600061315e603383613734565b915061316982613f66565b604082019050919050565b6000613181602183613734565b915061318c82613fb5565b604082019050919050565b60006131a4602883613734565b91506131af82614004565b604082019050919050565b60006131c7601383613734565b91506131d282614053565b602082019050919050565b60006131ea602e83613734565b91506131f58261407c565b604082019050919050565b600061320d601f83613734565b9150613218826140cb565b602082019050919050565b6000613230602f83613734565b915061323b826140f4565b604082019050919050565b6000613253602d83613734565b915061325e82614143565b604082019050919050565b613272816138cf565b82525050565b60006132848285612eaa565b91506132908284612eaa565b915061329b82613016565b91508190509392505050565b60006132b28261310b565b9150819050919050565b60006020820190506132d16000830184612e1a565b92915050565b60006080820190506132ec6000830187612e1a565b6132f96020830186612e1a565b6133066040830185613269565b81810360608301526133188184612e38565b905095945050505050565b60006020820190506133386000830184612e29565b92915050565b600060208201905081810360008301526133588184612e71565b905092915050565b6000602082019050818103600083015261337981612edb565b9050919050565b6000602082019050818103600083015261339981612efe565b9050919050565b600060208201905081810360008301526133b981612f21565b9050919050565b600060208201905081810360008301526133d981612f44565b9050919050565b600060208201905081810360008301526133f981612f67565b9050919050565b6000602082019050818103600083015261341981612f8a565b9050919050565b6000602082019050818103600083015261343981612fad565b9050919050565b6000602082019050818103600083015261345981612fd0565b9050919050565b6000602082019050818103600083015261347981612ff3565b9050919050565b6000602082019050818103600083015261349981613039565b9050919050565b600060208201905081810360008301526134b98161305c565b9050919050565b600060208201905081810360008301526134d98161307f565b9050919050565b600060208201905081810360008301526134f9816130a2565b9050919050565b60006020820190508181036000830152613519816130c5565b9050919050565b60006020820190508181036000830152613539816130e8565b9050919050565b600060208201905081810360008301526135598161312e565b9050919050565b6000602082019050818103600083015261357981613151565b9050919050565b6000602082019050818103600083015261359981613174565b9050919050565b600060208201905081810360008301526135b981613197565b9050919050565b600060208201905081810360008301526135d9816131ba565b9050919050565b600060208201905081810360008301526135f9816131dd565b9050919050565b6000602082019050818103600083015261361981613200565b9050919050565b6000602082019050818103600083015261363981613223565b9050919050565b6000602082019050818103600083015261365981613246565b9050919050565b60006020820190506136756000830184613269565b92915050565b6000613685613696565b9050613691828261394d565b919050565b6000604051905090565b600067ffffffffffffffff8211156136bb576136ba613ab4565b5b6136c482613af7565b9050602081019050919050565b600067ffffffffffffffff8211156136ec576136eb613ab4565b5b6136f582613af7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061375b826138cf565b9150613766836138cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561379b5761379a6139f8565b5b828201905092915050565b60006137b1826138cf565b91506137bc836138cf565b9250826137cc576137cb613a27565b5b828204905092915050565b60006137e2826138cf565b91506137ed836138cf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613826576138256139f8565b5b828202905092915050565b600061383c826138cf565b9150613847836138cf565b92508282101561385a576138596139f8565b5b828203905092915050565b6000613870826138af565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139065780820151818401526020810190506138eb565b83811115613915576000848401525b50505050565b6000600282049050600182168061393357607f821691505b6020821081141561394757613946613a56565b5b50919050565b61395682613af7565b810181811067ffffffffffffffff8211171561397557613974613ab4565b5b80604052505050565b6000613989826138cf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139bc576139bb6139f8565b5b600182019050919050565b60006139d2826138cf565b91506139dd836138cf565b9250826139ed576139ec613a27565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61419b81613865565b81146141a657600080fd5b50565b6141b281613877565b81146141bd57600080fd5b50565b6141c981613883565b81146141d457600080fd5b50565b6141e0816138cf565b81146141eb57600080fd5b5056fea26469706673582212203005f226c0b630e7094d6c2823f9da933d1fc6d26e4b364ecf2f0210db22491664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610667578063e985e9c514610692578063f2fde38b146106cf578063f968adbe146106f8576101cd565b8063a22cb465146105ad578063b88d4fde146105d6578063c7c39ffc146105ff578063c87b56dd1461062a576101cd565b806395d89b41116100d157806395d89b4114610512578063a035b1fe1461053d578063a0712d6814610568578063a0bcfc7f14610584576101cd565b8063715018a6146104a75780638da5cb5b146104be57806391b7f5ed146104e9576101cd565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103c55780636352211e146104025780636c0360eb1461043f57806370a082311461046a576101cd565b80632f745c591461031d578063333e44e61461035a5780633ccfd60b1461038557806342842e0e1461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a0578063228025e8146102cb57806323b872dd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d4a565b610723565b6040516102069190613323565b60405180910390f35b34801561021b57600080fd5b5061022461086d565b604051610231919061333e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ded565b6108ff565b60405161026e91906132bc565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d0a565b610984565b005b3480156102ac57600080fd5b506102b5610a9d565b6040516102c29190613660565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612ded565b610aa6565b005b34801561030057600080fd5b5061031b60048036038101906103169190612bf4565b610b2c565b005b34801561032957600080fd5b50610344600480360381019061033f9190612d0a565b610b3c565b6040516103519190613660565b60405180910390f35b34801561036657600080fd5b5061036f610d2e565b60405161037c9190613660565b60405180910390f35b34801561039157600080fd5b5061039a610d34565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612bf4565b610eb5565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612ded565b610ed5565b6040516103f99190613660565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612ded565b610f28565b60405161043691906132bc565b60405180910390f35b34801561044b57600080fd5b50610454610f3e565b604051610461919061333e565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190612b87565b610fcc565b60405161049e9190613660565b60405180910390f35b3480156104b357600080fd5b506104bc6110b5565b005b3480156104ca57600080fd5b506104d361113d565b6040516104e091906132bc565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612ded565b611167565b005b34801561051e57600080fd5b506105276111ed565b604051610534919061333e565b60405180910390f35b34801561054957600080fd5b5061055261127f565b60405161055f9190613660565b60405180910390f35b610582600480360381019061057d9190612ded565b611285565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612da4565b611465565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612cca565b6114fb565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612c47565b61167c565b005b34801561060b57600080fd5b506106146116d8565b6040516106219190613660565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612ded565b6116de565b60405161065e919061333e565b60405180910390f35b34801561067357600080fd5b5061067c611791565b6040516106899190613660565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612bb4565b611797565b6040516106c69190613323565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612b87565b61182b565b005b34801561070457600080fd5b5061070d611923565b60405161071a9190613660565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610866575061086582611929565b5b9050919050565b60606001805461087c9061391b565b80601f01602080910402602001604051908101604052809291908181526020018280546108a89061391b565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a82611993565b610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094090613640565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82610f28565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790613520565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1f6119a0565b73ffffffffffffffffffffffffffffffffffffffff161480610a4e5750610a4d81610a486119a0565b611797565b5b610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490613420565b60405180910390fd5b610a988383836119a8565b505050565b60008054905090565b610aae6119a0565b73ffffffffffffffffffffffffffffffffffffffff16610acc61113d565b73ffffffffffffffffffffffffffffffffffffffff1614610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990613480565b60405180910390fd5b80600e8190555050565b610b37838383611a5a565b505050565b6000610b4783610fcc565b8210610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613360565b60405180910390fd5b6000610b92610a9d565b905060008060005b83811015610cec576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c8c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cde5786841415610cd5578195505050505050610d28565b83806001019450505b508080600101915050610b9a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f906135e0565b60405180910390fd5b92915050565b600d5481565b610d3c6119a0565b73ffffffffffffffffffffffffffffffffffffffff16610d5a61113d565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790613480565b60405180910390fd5b60026008541415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613600565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610e24906132a7565b60006040518083038185875af1925050503d8060008114610e61576040519150601f19603f3d011682016040523d82523d6000602084013e610e66565b606091505b5050905080610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190613540565b60405180910390fd5b506001600881905550565b610ed08383836040518060200160405280600081525061167c565b505050565b6000610edf610a9d565b8210610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906133e0565b60405180910390fd5b819050919050565b6000610f3382611f9a565b600001519050919050565b60098054610f4b9061391b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f779061391b565b8015610fc45780601f10610f9957610100808354040283529160200191610fc4565b820191906000526020600020905b815481529060010190602001808311610fa757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103490613440565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110bd6119a0565b73ffffffffffffffffffffffffffffffffffffffff166110db61113d565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890613480565b60405180910390fd5b61113b6000612134565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61116f6119a0565b73ffffffffffffffffffffffffffffffffffffffff1661118d61113d565b73ffffffffffffffffffffffffffffffffffffffff16146111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90613480565b60405180910390fd5b80600a8190555050565b6060600280546111fc9061391b565b80601f01602080910402602001604051908101604052809291908181526020018280546112289061391b565b80156112755780601f1061124a57610100808354040283529160200191611275565b820191906000526020600020905b81548152906001019060200180831161125857829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006002600d5461129d9190613750565b836112a6610a9d565b6112b09190613750565b1080156113095750600c5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113069190613750565b11155b9050801561136c576000915082600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113649190613750565b925050819055505b818361137891906137d7565b3410156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190613500565b60405180910390fd5b600e54836113c6610a9d565b6113d09190613750565b1115611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613380565b60405180910390fd5b600b54831115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d906135c0565b60405180910390fd5b61146033846121fa565b505050565b61146d6119a0565b73ffffffffffffffffffffffffffffffffffffffff1661148b61113d565b73ffffffffffffffffffffffffffffffffffffffff16146114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613480565b60405180910390fd5b80600990805190602001906114f7929190612961565b5050565b6115036119a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611571576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611568906134c0565b60405180910390fd5b806006600061157e6119a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661162b6119a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116709190613323565b60405180910390a35050565b611687848484611a5a565b61169384848484612218565b6116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990613560565b60405180910390fd5b50505050565b600c5481565b60606116e982611993565b611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906134a0565b60405180910390fd5b60006117326123af565b905060008151116117525760405180602001604052806000815250611789565b806117686001856117639190613750565b612441565b604051602001611779929190613278565b6040516020818303038152906040525b915050919050565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118336119a0565b73ffffffffffffffffffffffffffffffffffffffff1661185161113d565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613480565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906133a0565b60405180910390fd5b61192081612134565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a6582611f9a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a8c6119a0565b73ffffffffffffffffffffffffffffffffffffffff161480611ae85750611ab16119a0565b73ffffffffffffffffffffffffffffffffffffffff16611ad0846108ff565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b045750611b038260000151611afe6119a0565b611797565b5b905080611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d906134e0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf90613460565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f90613400565b60405180910390fd5b611c3585858560016125a2565b611c4560008484600001516119a8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f2a57611e8981611993565b15611f295782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f9385858560016125a8565b5050505050565b611fa26129e7565b611fab82611993565b611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe1906133c0565b60405180910390fd5b60008290505b600081106120f3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120e457809250505061212f565b50808060019003915050611ff0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690613620565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122148282604051806020016040528060008152506125ae565b5050565b60006122398473ffffffffffffffffffffffffffffffffffffffff166125c0565b156123a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122626119a0565b8786866040518563ffffffff1660e01b815260040161228494939291906132d7565b602060405180830381600087803b15801561229e57600080fd5b505af19250505080156122cf57506040513d601f19601f820116820180604052508101906122cc9190612d77565b60015b612352573d80600081146122ff576040519150601f19603f3d011682016040523d82523d6000602084013e612304565b606091505b5060008151141561234a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234190613560565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123a7565b600190505b949350505050565b6060600980546123be9061391b565b80601f01602080910402602001604051908101604052809291908181526020018280546123ea9061391b565b80156124375780601f1061240c57610100808354040283529160200191612437565b820191906000526020600020905b81548152906001019060200180831161241a57829003601f168201915b5050505050905090565b60606000821415612489576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061259d565b600082905060005b600082146124bb5780806124a49061397e565b915050600a826124b491906137a6565b9150612491565b60008167ffffffffffffffff8111156124d7576124d6613ab4565b5b6040519080825280601f01601f1916602001820160405280156125095781602001600182028036833780820191505090505b5090505b60008514612596576001826125229190613831565b9150600a8561253191906139c7565b603061253d9190613750565b60f81b81838151811061255357612552613a85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561258f91906137a6565b945061250d565b8093505050505b919050565b50505050565b50505050565b6125bb83838360016125e3565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265090613580565b60405180910390fd5b600084141561269d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612694906135a0565b60405180910390fd5b6126aa60008683876125a2565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561294457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561292f576128ef6000888488612218565b61292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590613560565b60405180910390fd5b5b81806001019250508080600101915050612878565b50806000819055505061295a60008683876125a8565b5050505050565b82805461296d9061391b565b90600052602060002090601f01602090048101928261298f57600085556129d6565b82601f106129a857805160ff19168380011785556129d6565b828001600101855582156129d6579182015b828111156129d55782518255916020019190600101906129ba565b5b5090506129e39190612a21565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a3a576000816000905550600101612a22565b5090565b6000612a51612a4c846136a0565b61367b565b905082815260208101848484011115612a6d57612a6c613ae8565b5b612a788482856138d9565b509392505050565b6000612a93612a8e846136d1565b61367b565b905082815260208101848484011115612aaf57612aae613ae8565b5b612aba8482856138d9565b509392505050565b600081359050612ad181614192565b92915050565b600081359050612ae6816141a9565b92915050565b600081359050612afb816141c0565b92915050565b600081519050612b10816141c0565b92915050565b600082601f830112612b2b57612b2a613ae3565b5b8135612b3b848260208601612a3e565b91505092915050565b600082601f830112612b5957612b58613ae3565b5b8135612b69848260208601612a80565b91505092915050565b600081359050612b81816141d7565b92915050565b600060208284031215612b9d57612b9c613af2565b5b6000612bab84828501612ac2565b91505092915050565b60008060408385031215612bcb57612bca613af2565b5b6000612bd985828601612ac2565b9250506020612bea85828601612ac2565b9150509250929050565b600080600060608486031215612c0d57612c0c613af2565b5b6000612c1b86828701612ac2565b9350506020612c2c86828701612ac2565b9250506040612c3d86828701612b72565b9150509250925092565b60008060008060808587031215612c6157612c60613af2565b5b6000612c6f87828801612ac2565b9450506020612c8087828801612ac2565b9350506040612c9187828801612b72565b925050606085013567ffffffffffffffff811115612cb257612cb1613aed565b5b612cbe87828801612b16565b91505092959194509250565b60008060408385031215612ce157612ce0613af2565b5b6000612cef85828601612ac2565b9250506020612d0085828601612ad7565b9150509250929050565b60008060408385031215612d2157612d20613af2565b5b6000612d2f85828601612ac2565b9250506020612d4085828601612b72565b9150509250929050565b600060208284031215612d6057612d5f613af2565b5b6000612d6e84828501612aec565b91505092915050565b600060208284031215612d8d57612d8c613af2565b5b6000612d9b84828501612b01565b91505092915050565b600060208284031215612dba57612db9613af2565b5b600082013567ffffffffffffffff811115612dd857612dd7613aed565b5b612de484828501612b44565b91505092915050565b600060208284031215612e0357612e02613af2565b5b6000612e1184828501612b72565b91505092915050565b612e2381613865565b82525050565b612e3281613877565b82525050565b6000612e4382613702565b612e4d8185613718565b9350612e5d8185602086016138e8565b612e6681613af7565b840191505092915050565b6000612e7c8261370d565b612e868185613734565b9350612e968185602086016138e8565b612e9f81613af7565b840191505092915050565b6000612eb58261370d565b612ebf8185613745565b9350612ecf8185602086016138e8565b80840191505092915050565b6000612ee8602283613734565b9150612ef382613b08565b604082019050919050565b6000612f0b600783613734565b9150612f1682613b57565b602082019050919050565b6000612f2e602683613734565b9150612f3982613b80565b604082019050919050565b6000612f51602a83613734565b9150612f5c82613bcf565b604082019050919050565b6000612f74602383613734565b9150612f7f82613c1e565b604082019050919050565b6000612f97602583613734565b9150612fa282613c6d565b604082019050919050565b6000612fba603983613734565b9150612fc582613cbc565b604082019050919050565b6000612fdd602b83613734565b9150612fe882613d0b565b604082019050919050565b6000613000602683613734565b915061300b82613d5a565b604082019050919050565b6000613023600583613745565b915061302e82613da9565b600582019050919050565b6000613046602083613734565b915061305182613dd2565b602082019050919050565b6000613069602f83613734565b915061307482613dfb565b604082019050919050565b600061308c601a83613734565b915061309782613e4a565b602082019050919050565b60006130af603283613734565b91506130ba82613e73565b604082019050919050565b60006130d2601d83613734565b91506130dd82613ec2565b602082019050919050565b60006130f5602283613734565b915061310082613eeb565b604082019050919050565b6000613118600083613729565b915061312382613f3a565b600082019050919050565b600061313b601083613734565b915061314682613f3d565b602082019050919050565b600061315e603383613734565b915061316982613f66565b604082019050919050565b6000613181602183613734565b915061318c82613fb5565b604082019050919050565b60006131a4602883613734565b91506131af82614004565b604082019050919050565b60006131c7601383613734565b91506131d282614053565b602082019050919050565b60006131ea602e83613734565b91506131f58261407c565b604082019050919050565b600061320d601f83613734565b9150613218826140cb565b602082019050919050565b6000613230602f83613734565b915061323b826140f4565b604082019050919050565b6000613253602d83613734565b915061325e82614143565b604082019050919050565b613272816138cf565b82525050565b60006132848285612eaa565b91506132908284612eaa565b915061329b82613016565b91508190509392505050565b60006132b28261310b565b9150819050919050565b60006020820190506132d16000830184612e1a565b92915050565b60006080820190506132ec6000830187612e1a565b6132f96020830186612e1a565b6133066040830185613269565b81810360608301526133188184612e38565b905095945050505050565b60006020820190506133386000830184612e29565b92915050565b600060208201905081810360008301526133588184612e71565b905092915050565b6000602082019050818103600083015261337981612edb565b9050919050565b6000602082019050818103600083015261339981612efe565b9050919050565b600060208201905081810360008301526133b981612f21565b9050919050565b600060208201905081810360008301526133d981612f44565b9050919050565b600060208201905081810360008301526133f981612f67565b9050919050565b6000602082019050818103600083015261341981612f8a565b9050919050565b6000602082019050818103600083015261343981612fad565b9050919050565b6000602082019050818103600083015261345981612fd0565b9050919050565b6000602082019050818103600083015261347981612ff3565b9050919050565b6000602082019050818103600083015261349981613039565b9050919050565b600060208201905081810360008301526134b98161305c565b9050919050565b600060208201905081810360008301526134d98161307f565b9050919050565b600060208201905081810360008301526134f9816130a2565b9050919050565b60006020820190508181036000830152613519816130c5565b9050919050565b60006020820190508181036000830152613539816130e8565b9050919050565b600060208201905081810360008301526135598161312e565b9050919050565b6000602082019050818103600083015261357981613151565b9050919050565b6000602082019050818103600083015261359981613174565b9050919050565b600060208201905081810360008301526135b981613197565b9050919050565b600060208201905081810360008301526135d9816131ba565b9050919050565b600060208201905081810360008301526135f9816131dd565b9050919050565b6000602082019050818103600083015261361981613200565b9050919050565b6000602082019050818103600083015261363981613223565b9050919050565b6000602082019050818103600083015261365981613246565b9050919050565b60006020820190506136756000830184613269565b92915050565b6000613685613696565b9050613691828261394d565b919050565b6000604051905090565b600067ffffffffffffffff8211156136bb576136ba613ab4565b5b6136c482613af7565b9050602081019050919050565b600067ffffffffffffffff8211156136ec576136eb613ab4565b5b6136f582613af7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061375b826138cf565b9150613766836138cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561379b5761379a6139f8565b5b828201905092915050565b60006137b1826138cf565b91506137bc836138cf565b9250826137cc576137cb613a27565b5b828204905092915050565b60006137e2826138cf565b91506137ed836138cf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613826576138256139f8565b5b828202905092915050565b600061383c826138cf565b9150613847836138cf565b92508282101561385a576138596139f8565b5b828203905092915050565b6000613870826138af565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139065780820151818401526020810190506138eb565b83811115613915576000848401525b50505050565b6000600282049050600182168061393357607f821691505b6020821081141561394757613946613a56565b5b50919050565b61395682613af7565b810181811067ffffffffffffffff8211171561397557613974613ab4565b5b80604052505050565b6000613989826138cf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139bc576139bb6139f8565b5b600182019050919050565b60006139d2826138cf565b91506139dd836138cf565b9250826139ed576139ec613a27565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61419b81613865565b81146141a657600080fd5b50565b6141b281613877565b81146141bd57600080fd5b50565b6141c981613883565b81146141d457600080fd5b50565b6141e0816138cf565b81146141eb57600080fd5b5056fea26469706673582212203005f226c0b630e7094d6c2823f9da933d1fc6d26e4b364ecf2f0210db22491664736f6c63430008070033

Deployed Bytecode Sourcemap

43240:2067:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30100:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31986:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33548:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33069:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28357:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45014:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34424:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29021:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43492:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45118:186;;;;;;;;;;;;;:::i;:::-;;34665:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28534:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31795:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43311:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30536:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25762:103;;;;;;;;;;;;;:::i;:::-;;25111:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44920:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32155:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43355:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44111:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44814:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33834:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34921:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43450:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43706:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43537:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34193:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26020:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43407:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30100:372;30202:4;30254:25;30239:40;;;:11;:40;;;;:105;;;;30311:33;30296:48;;;:11;:48;;;;30239:105;:172;;;;30376:35;30361:50;;;:11;:50;;;;30239:172;:225;;;;30428:36;30452:11;30428:23;:36::i;:::-;30239:225;30219:245;;30100:372;;;:::o;31986:100::-;32040:13;32073:5;32066:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31986:100;:::o;33548:214::-;33616:7;33644:16;33652:7;33644;:16::i;:::-;33636:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33730:15;:24;33746:7;33730:24;;;;;;;;;;;;;;;;;;;;;33723:31;;33548:214;;;:::o;33069:413::-;33142:13;33158:24;33174:7;33158:15;:24::i;:::-;33142:40;;33207:5;33201:11;;:2;:11;;;;33193:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33302:5;33286:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33311:37;33328:5;33335:12;:10;:12::i;:::-;33311:16;:37::i;:::-;33286:62;33264:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33446:28;33455:2;33459:7;33468:5;33446:8;:28::i;:::-;33131:351;33069:413;;:::o;28357:100::-;28410:7;28437:12;;28430:19;;28357:100;:::o;45014:96::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45092:10:::1;45080:9;:22;;;;45014:96:::0;:::o;34424:170::-;34558:28;34568:4;34574:2;34578:7;34558:9;:28::i;:::-;34424:170;;;:::o;29021:1007::-;29110:7;29146:16;29156:5;29146:9;:16::i;:::-;29138:5;:24;29130:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29212:22;29237:13;:11;:13::i;:::-;29212:38;;29261:19;29291:25;29480:9;29475:466;29495:14;29491:1;:18;29475:466;;;29535:31;29569:11;:14;29581:1;29569:14;;;;;;;;;;;29535:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29632:1;29606:28;;:9;:14;;;:28;;;29602:111;;29679:9;:14;;;29659:34;;29602:111;29756:5;29735:26;;:17;:26;;;29731:195;;;29805:5;29790:11;:20;29786:85;;;29846:1;29839:8;;;;;;;;;29786:85;29893:13;;;;;;;29731:195;29516:425;29511:3;;;;;;;29475:466;;;;29964:56;;;;;;;;;;:::i;:::-;;;;;;;;29021:1007;;;;;:::o;43492:38::-;;;;:::o;45118:186::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22209:1:::1;22807:7;;:19;;22799:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22209:1;22940:7;:18;;;;45182:12:::2;45200:10;:15;;45223:21;45200:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45181:68;;;45268:7;45260:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45170:134;22165:1:::1;23119:7;:22;;;;45118:186::o:0;34665:185::-;34803:39;34820:4;34826:2;34830:7;34803:39;;;;;;;;;;;;:16;:39::i;:::-;34665:185;;;:::o;28534:187::-;28601:7;28637:13;:11;:13::i;:::-;28629:5;:21;28621:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28708:5;28701:12;;28534:187;;;:::o;31795:124::-;31859:7;31886:20;31898:7;31886:11;:20::i;:::-;:25;;;31879:32;;31795:124;;;:::o;43311:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30536:221::-;30600:7;30645:1;30628:19;;:5;:19;;;;30620:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30721:12;:19;30734:5;30721:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30713:36;;30706:43;;30536:221;;;:::o;25762:103::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25827:30:::1;25854:1;25827:18;:30::i;:::-;25762:103::o:0;25111:87::-;25157:7;25184:6;;;;;;;;;;;25177:13;;25111:87;:::o;44920:86::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44992:6:::1;44984:5;:14;;;;44920:86:::0;:::o;32155:104::-;32211:13;32244:7;32237:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32155:104;:::o;43355:45::-;;;;:::o;44111:579::-;44168:12;44183:5;;44168:20;;44199:11;44251:1;44239:9;;:13;;;;:::i;:::-;44231:5;44215:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44214:109;;;;;44312:10;;44303:5;44271:17;:29;44289:10;44271:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:51;;44214:109;44199:125;;44341:6;44337:100;;;44371:1;44364:8;;44420:5;44387:17;:29;44405:10;44387:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;44337:100;44478:4;44470:5;:12;;;;:::i;:::-;44457:9;:25;;44449:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44560:9;;44551:5;44535:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;44527:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44609:8;;44600:5;:17;;44592:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44654:28;44664:10;44676:5;44654:9;:28::i;:::-;44157:533;;44111:579;:::o;44814:98::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44896:8:::1;44886:7;:18;;;;;;;;;;;;:::i;:::-;;44814:98:::0;:::o;33834:288::-;33941:12;:10;:12::i;:::-;33929:24;;:8;:24;;;;33921:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34042:8;33997:18;:32;34016:12;:10;:12::i;:::-;33997:32;;;;;;;;;;;;;;;:42;34030:8;33997:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34095:8;34066:48;;34081:12;:10;:12::i;:::-;34066:48;;;34105:8;34066:48;;;;;;:::i;:::-;;;;;;;;33834:288;;:::o;34921:355::-;35080:28;35090:4;35096:2;35100:7;35080:9;:28::i;:::-;35141:48;35164:4;35170:2;35174:7;35183:5;35141:22;:48::i;:::-;35119:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;34921:355;;;;:::o;43450:35::-;;;;:::o;43706:397::-;43780:13;43814:17;43822:8;43814:7;:17::i;:::-;43806:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43893:28;43924:10;:8;:10::i;:::-;43893:41;;43983:1;43958:14;43952:28;:32;:143;;;;;;;;;;;;;;;;;44024:14;44039:28;44065:1;44056:8;:10;;;;:::i;:::-;44039:16;:28::i;:::-;44007:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43952:143;43945:150;;;43706:397;;;:::o;43537:38::-;;;;:::o;34193:164::-;34290:4;34314:18;:25;34333:5;34314:25;;;;;;;;;;;;;;;:35;34340:8;34314:35;;;;;;;;;;;;;;;;;;;;;;;;;34307:42;;34193:164;;;;:::o;26020:201::-;25342:12;:10;:12::i;:::-;25331:23;;:7;:5;:7::i;:::-;:23;;;25323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26129:1:::1;26109:22;;:8;:22;;;;26101:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26185:28;26204:8;26185:18;:28::i;:::-;26020:201:::0;:::o;43407:36::-;;;;:::o;13463:157::-;13548:4;13587:25;13572:40;;;:11;:40;;;;13565:47;;13463:157;;;:::o;35531:111::-;35588:4;35622:12;;35612:7;:22;35605:29;;35531:111;;;:::o;23835:98::-;23888:7;23915:10;23908:17;;23835:98;:::o;40451:196::-;40593:2;40566:15;:24;40582:7;40566:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40631:7;40627:2;40611:28;;40620:5;40611:28;;;;;;;;;;;;40451:196;;;:::o;38331:2002::-;38446:35;38484:20;38496:7;38484:11;:20::i;:::-;38446:58;;38517:22;38559:13;:18;;;38543:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38618:12;:10;:12::i;:::-;38594:36;;:20;38606:7;38594:11;:20::i;:::-;:36;;;38543:87;:154;;;;38647:50;38664:13;:18;;;38684:12;:10;:12::i;:::-;38647:16;:50::i;:::-;38543:154;38517:181;;38719:17;38711:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;38834:4;38812:26;;:13;:18;;;:26;;;38804:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;38914:1;38900:16;;:2;:16;;;;38892:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38971:43;38993:4;38999:2;39003:7;39012:1;38971:21;:43::i;:::-;39079:49;39096:1;39100:7;39109:13;:18;;;39079:8;:49::i;:::-;39454:1;39424:12;:18;39437:4;39424:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39498:1;39470:12;:16;39483:2;39470:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39544:2;39516:11;:20;39528:7;39516:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39606:15;39561:11;:20;39573:7;39561:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39874:19;39906:1;39896:7;:11;39874:33;;39967:1;39926:43;;:11;:24;39938:11;39926:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39922:295;;;39994:20;40002:11;39994:7;:20::i;:::-;39990:212;;;40071:13;:18;;;40039:11;:24;40051:11;40039:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40154:13;:28;;;40112:11;:24;40124:11;40112:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;39990:212;39922:295;39399:829;40264:7;40260:2;40245:27;;40254:4;40245:27;;;;;;;;;;;;40283:42;40304:4;40310:2;40314:7;40323:1;40283:20;:42::i;:::-;38435:1898;;38331:2002;;;:::o;31196:537::-;31257:21;;:::i;:::-;31299:16;31307:7;31299;:16::i;:::-;31291:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31405:12;31420:7;31405:22;;31400:245;31437:1;31429:4;:9;31400:245;;31467:31;31501:11;:17;31513:4;31501:17;;;;;;;;;;;31467:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31567:1;31541:28;;:9;:14;;;:28;;;31537:93;;31601:9;31594:16;;;;;;31537:93;31448:197;31440:6;;;;;;;;31400:245;;;;31668:57;;;;;;;;;;:::i;:::-;;;;;;;;31196:537;;;;:::o;26381:191::-;26455:16;26474:6;;;;;;;;;;;26455:25;;26500:8;26491:6;;:17;;;;;;;;;;;;;;;;;;26555:8;26524:40;;26545:8;26524:40;;;;;;;;;;;;26444:128;26381:191;:::o;35650:104::-;35719:27;35729:2;35733:8;35719:27;;;;;;;;;;;;:9;:27::i;:::-;35650:104;;:::o;41212:804::-;41367:4;41388:15;:2;:13;;;:15::i;:::-;41384:625;;;41440:2;41424:36;;;41461:12;:10;:12::i;:::-;41475:4;41481:7;41490:5;41424:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41420:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41687:1;41670:6;:13;:18;41666:273;;;41713:61;;;;;;;;;;:::i;:::-;;;;;;;;41666:273;41889:6;41883:13;41874:6;41870:2;41866:15;41859:38;41420:534;41557:45;;;41547:55;;;:6;:55;;;;41540:62;;;;;41384:625;41993:4;41986:11;;41212:804;;;;;;;:::o;44698:108::-;44758:13;44791:7;44784:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44698:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;42504:159::-;;;;;:::o;43075:158::-;;;;;:::o;36117:163::-;36240:32;36246:2;36250:8;36260:5;36267:4;36240:5;:32::i;:::-;36117:163;;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;36539:1538::-;36678:20;36701:12;;36678:35;;36746:1;36732:16;;:2;:16;;;;36724:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36817:1;36805:8;:13;;36797:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36876:61;36906:1;36910:2;36914:12;36928:8;36876:21;:61::i;:::-;37251:8;37215:12;:16;37228:2;37215:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37316:8;37275:12;:16;37288:2;37275:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37375:2;37342:11;:25;37354:12;37342:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37442:15;37392:11;:25;37404:12;37392:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37475:20;37498:12;37475:35;;37532:9;37527:415;37547:8;37543:1;:12;37527:415;;;37611:12;37607:2;37586:38;;37603:1;37586:38;;;;;;;;;;;;37647:4;37643:249;;;37710:59;37741:1;37745:2;37749:12;37763:5;37710:22;:59::i;:::-;37676:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37643:249;37912:14;;;;;;;37557:3;;;;;;;37527:415;;;;37973:12;37958;:27;;;;37190:807;38009:60;38038:1;38042:2;38046:12;38060:8;38009:20;:60::i;:::-;36667:1410;36539:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:365::-;9030:3;9051:66;9115:1;9110:3;9051:66;:::i;:::-;9044:73;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8888:365;;;:::o;9259:366::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:400::-;12023:3;12044:84;12126:1;12121:3;12044:84;:::i;:::-;12037:91;;12137:93;12226:3;12137:93;:::i;:::-;12255:1;12250:3;12246:11;12239:18;;11863:400;;;:::o;12269:366::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:398::-;14660:3;14681:83;14762:1;14757:3;14681:83;:::i;:::-;14674:90;;14773:93;14862:3;14773:93;:::i;:::-;14891:1;14886:3;14882:11;14875:18;;14501:398;;;:::o;14905:366::-;15047:3;15068:67;15132:2;15127:3;15068:67;:::i;:::-;15061:74;;15144:93;15233:3;15144:93;:::i;:::-;15262:2;15257:3;15253:12;15246:19;;14905:366;;;:::o;15277:::-;15419:3;15440:67;15504:2;15499:3;15440:67;:::i;:::-;15433:74;;15516:93;15605:3;15516:93;:::i;:::-;15634:2;15629:3;15625:12;15618:19;;15277:366;;;:::o;15649:::-;15791:3;15812:67;15876:2;15871:3;15812:67;:::i;:::-;15805:74;;15888:93;15977:3;15888:93;:::i;:::-;16006:2;16001:3;15997:12;15990:19;;15649:366;;;:::o;16021:::-;16163:3;16184:67;16248:2;16243:3;16184:67;:::i;:::-;16177:74;;16260:93;16349:3;16260:93;:::i;:::-;16378:2;16373:3;16369:12;16362:19;;16021:366;;;:::o;16393:::-;16535:3;16556:67;16620:2;16615:3;16556:67;:::i;:::-;16549:74;;16632:93;16721:3;16632:93;:::i;:::-;16750:2;16745:3;16741:12;16734:19;;16393:366;;;:::o;16765:::-;16907:3;16928:67;16992:2;16987:3;16928:67;:::i;:::-;16921:74;;17004:93;17093:3;17004:93;:::i;:::-;17122:2;17117:3;17113:12;17106:19;;16765:366;;;:::o;17137:::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:::-;17651:3;17672:67;17736:2;17731:3;17672:67;:::i;:::-;17665:74;;17748:93;17837:3;17748:93;:::i;:::-;17866:2;17861:3;17857:12;17850:19;;17509:366;;;:::o;17881:::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:118::-;18340:24;18358:5;18340:24;:::i;:::-;18335:3;18328:37;18253:118;;:::o;18377:701::-;18658:3;18680:95;18771:3;18762:6;18680:95;:::i;:::-;18673:102;;18792:95;18883:3;18874:6;18792:95;:::i;:::-;18785:102;;18904:148;19048:3;18904:148;:::i;:::-;18897:155;;19069:3;19062:10;;18377:701;;;;;:::o;19084:379::-;19268:3;19290:147;19433:3;19290:147;:::i;:::-;19283:154;;19454:3;19447:10;;19084:379;;;:::o;19469:222::-;19562:4;19600:2;19589:9;19585:18;19577:26;;19613:71;19681:1;19670:9;19666:17;19657:6;19613:71;:::i;:::-;19469:222;;;;:::o;19697:640::-;19892:4;19930:3;19919:9;19915:19;19907:27;;19944:71;20012:1;20001:9;19997:17;19988:6;19944:71;:::i;:::-;20025:72;20093:2;20082:9;20078:18;20069:6;20025:72;:::i;:::-;20107;20175:2;20164:9;20160:18;20151:6;20107:72;:::i;:::-;20226:9;20220:4;20216:20;20211:2;20200:9;20196:18;20189:48;20254:76;20325:4;20316:6;20254:76;:::i;:::-;20246:84;;19697:640;;;;;;;:::o;20343:210::-;20430:4;20468:2;20457:9;20453:18;20445:26;;20481:65;20543:1;20532:9;20528:17;20519:6;20481:65;:::i;:::-;20343:210;;;;:::o;20559:313::-;20672:4;20710:2;20699:9;20695:18;20687:26;;20759:9;20753:4;20749:20;20745:1;20734:9;20730:17;20723:47;20787:78;20860:4;20851:6;20787:78;:::i;:::-;20779:86;;20559:313;;;;:::o;20878:419::-;21044:4;21082:2;21071:9;21067:18;21059:26;;21131:9;21125:4;21121:20;21117:1;21106:9;21102:17;21095:47;21159:131;21285:4;21159:131;:::i;:::-;21151:139;;20878:419;;;:::o;21303:::-;21469:4;21507:2;21496:9;21492:18;21484:26;;21556:9;21550:4;21546:20;21542:1;21531:9;21527:17;21520:47;21584:131;21710:4;21584:131;:::i;:::-;21576:139;;21303:419;;;:::o;21728:::-;21894:4;21932:2;21921:9;21917:18;21909:26;;21981:9;21975:4;21971:20;21967:1;21956:9;21952:17;21945:47;22009:131;22135:4;22009:131;:::i;:::-;22001:139;;21728:419;;;:::o;22153:::-;22319:4;22357:2;22346:9;22342:18;22334:26;;22406:9;22400:4;22396:20;22392:1;22381:9;22377:17;22370:47;22434:131;22560:4;22434:131;:::i;:::-;22426:139;;22153:419;;;:::o;22578:::-;22744:4;22782:2;22771:9;22767:18;22759:26;;22831:9;22825:4;22821:20;22817:1;22806:9;22802:17;22795:47;22859:131;22985:4;22859:131;:::i;:::-;22851:139;;22578:419;;;:::o;23003:::-;23169:4;23207:2;23196:9;23192:18;23184:26;;23256:9;23250:4;23246:20;23242:1;23231:9;23227:17;23220:47;23284:131;23410:4;23284:131;:::i;:::-;23276:139;;23003:419;;;:::o;23428:::-;23594:4;23632:2;23621:9;23617:18;23609:26;;23681:9;23675:4;23671:20;23667:1;23656:9;23652:17;23645:47;23709:131;23835:4;23709:131;:::i;:::-;23701:139;;23428:419;;;:::o;23853:::-;24019:4;24057:2;24046:9;24042:18;24034:26;;24106:9;24100:4;24096:20;24092:1;24081:9;24077:17;24070:47;24134:131;24260:4;24134:131;:::i;:::-;24126:139;;23853:419;;;:::o;24278:::-;24444:4;24482:2;24471:9;24467:18;24459:26;;24531:9;24525:4;24521:20;24517:1;24506:9;24502:17;24495:47;24559:131;24685:4;24559:131;:::i;:::-;24551:139;;24278:419;;;:::o;24703:::-;24869:4;24907:2;24896:9;24892:18;24884:26;;24956:9;24950:4;24946:20;24942:1;24931:9;24927:17;24920:47;24984:131;25110:4;24984:131;:::i;:::-;24976:139;;24703:419;;;:::o;25128:::-;25294:4;25332:2;25321:9;25317:18;25309:26;;25381:9;25375:4;25371:20;25367:1;25356:9;25352:17;25345:47;25409:131;25535:4;25409:131;:::i;:::-;25401:139;;25128:419;;;:::o;25553:::-;25719:4;25757:2;25746:9;25742:18;25734:26;;25806:9;25800:4;25796:20;25792:1;25781:9;25777:17;25770:47;25834:131;25960:4;25834:131;:::i;:::-;25826:139;;25553:419;;;:::o;25978:::-;26144:4;26182:2;26171:9;26167:18;26159:26;;26231:9;26225:4;26221:20;26217:1;26206:9;26202:17;26195:47;26259:131;26385:4;26259:131;:::i;:::-;26251:139;;25978:419;;;:::o;26403:::-;26569:4;26607:2;26596:9;26592:18;26584:26;;26656:9;26650:4;26646:20;26642:1;26631:9;26627:17;26620:47;26684:131;26810:4;26684:131;:::i;:::-;26676:139;;26403:419;;;:::o;26828:::-;26994:4;27032:2;27021:9;27017:18;27009:26;;27081:9;27075:4;27071:20;27067:1;27056:9;27052:17;27045:47;27109:131;27235:4;27109:131;:::i;:::-;27101:139;;26828:419;;;:::o;27253:::-;27419:4;27457:2;27446:9;27442:18;27434:26;;27506:9;27500:4;27496:20;27492:1;27481:9;27477:17;27470:47;27534:131;27660:4;27534:131;:::i;:::-;27526:139;;27253:419;;;:::o;27678:::-;27844:4;27882:2;27871:9;27867:18;27859:26;;27931:9;27925:4;27921:20;27917:1;27906:9;27902:17;27895:47;27959:131;28085:4;27959:131;:::i;:::-;27951:139;;27678:419;;;:::o;28103:::-;28269:4;28307:2;28296:9;28292:18;28284:26;;28356:9;28350:4;28346:20;28342:1;28331:9;28327:17;28320:47;28384:131;28510:4;28384:131;:::i;:::-;28376:139;;28103:419;;;:::o;28528:::-;28694:4;28732:2;28721:9;28717:18;28709:26;;28781:9;28775:4;28771:20;28767:1;28756:9;28752:17;28745:47;28809:131;28935:4;28809:131;:::i;:::-;28801:139;;28528:419;;;:::o;28953:::-;29119:4;29157:2;29146:9;29142:18;29134:26;;29206:9;29200:4;29196:20;29192:1;29181:9;29177:17;29170:47;29234:131;29360:4;29234:131;:::i;:::-;29226:139;;28953:419;;;:::o;29378:::-;29544:4;29582:2;29571:9;29567:18;29559:26;;29631:9;29625:4;29621:20;29617:1;29606:9;29602:17;29595:47;29659:131;29785:4;29659:131;:::i;:::-;29651:139;;29378:419;;;:::o;29803:::-;29969:4;30007:2;29996:9;29992:18;29984:26;;30056:9;30050:4;30046:20;30042:1;30031:9;30027:17;30020:47;30084:131;30210:4;30084:131;:::i;:::-;30076:139;;29803:419;;;:::o;30228:::-;30394:4;30432:2;30421:9;30417:18;30409:26;;30481:9;30475:4;30471:20;30467:1;30456:9;30452:17;30445:47;30509:131;30635:4;30509:131;:::i;:::-;30501:139;;30228:419;;;:::o;30653:::-;30819:4;30857:2;30846:9;30842:18;30834:26;;30906:9;30900:4;30896:20;30892:1;30881:9;30877:17;30870:47;30934:131;31060:4;30934:131;:::i;:::-;30926:139;;30653:419;;;:::o;31078:222::-;31171:4;31209:2;31198:9;31194:18;31186:26;;31222:71;31290:1;31279:9;31275:17;31266:6;31222:71;:::i;:::-;31078:222;;;;:::o;31306:129::-;31340:6;31367:20;;:::i;:::-;31357:30;;31396:33;31424:4;31416:6;31396:33;:::i;:::-;31306:129;;;:::o;31441:75::-;31474:6;31507:2;31501:9;31491:19;;31441:75;:::o;31522:307::-;31583:4;31673:18;31665:6;31662:30;31659:56;;;31695:18;;:::i;:::-;31659:56;31733:29;31755:6;31733:29;:::i;:::-;31725:37;;31817:4;31811;31807:15;31799:23;;31522:307;;;:::o;31835:308::-;31897:4;31987:18;31979:6;31976:30;31973:56;;;32009:18;;:::i;:::-;31973:56;32047:29;32069:6;32047:29;:::i;:::-;32039:37;;32131:4;32125;32121:15;32113:23;;31835:308;;;:::o;32149:98::-;32200:6;32234:5;32228:12;32218:22;;32149:98;;;:::o;32253:99::-;32305:6;32339:5;32333:12;32323:22;;32253:99;;;:::o;32358:168::-;32441:11;32475:6;32470:3;32463:19;32515:4;32510:3;32506:14;32491:29;;32358:168;;;;:::o;32532:147::-;32633:11;32670:3;32655:18;;32532:147;;;;:::o;32685:169::-;32769:11;32803:6;32798:3;32791:19;32843:4;32838:3;32834:14;32819:29;;32685:169;;;;:::o;32860:148::-;32962:11;32999:3;32984:18;;32860:148;;;;:::o;33014:305::-;33054:3;33073:20;33091:1;33073:20;:::i;:::-;33068:25;;33107:20;33125:1;33107:20;:::i;:::-;33102:25;;33261:1;33193:66;33189:74;33186:1;33183:81;33180:107;;;33267:18;;:::i;:::-;33180:107;33311:1;33308;33304:9;33297:16;;33014:305;;;;:::o;33325:185::-;33365:1;33382:20;33400:1;33382:20;:::i;:::-;33377:25;;33416:20;33434:1;33416:20;:::i;:::-;33411:25;;33455:1;33445:35;;33460:18;;:::i;:::-;33445:35;33502:1;33499;33495:9;33490:14;;33325:185;;;;:::o;33516:348::-;33556:7;33579:20;33597:1;33579:20;:::i;:::-;33574:25;;33613:20;33631:1;33613:20;:::i;:::-;33608:25;;33801:1;33733:66;33729:74;33726:1;33723:81;33718:1;33711:9;33704:17;33700:105;33697:131;;;33808:18;;:::i;:::-;33697:131;33856:1;33853;33849:9;33838:20;;33516:348;;;;:::o;33870:191::-;33910:4;33930:20;33948:1;33930:20;:::i;:::-;33925:25;;33964:20;33982:1;33964:20;:::i;:::-;33959:25;;34003:1;34000;33997:8;33994:34;;;34008:18;;:::i;:::-;33994:34;34053:1;34050;34046:9;34038:17;;33870:191;;;;:::o;34067:96::-;34104:7;34133:24;34151:5;34133:24;:::i;:::-;34122:35;;34067:96;;;:::o;34169:90::-;34203:7;34246:5;34239:13;34232:21;34221:32;;34169:90;;;:::o;34265:149::-;34301:7;34341:66;34334:5;34330:78;34319:89;;34265:149;;;:::o;34420:126::-;34457:7;34497:42;34490:5;34486:54;34475:65;;34420:126;;;:::o;34552:77::-;34589:7;34618:5;34607:16;;34552:77;;;:::o;34635:154::-;34719:6;34714:3;34709;34696:30;34781:1;34772:6;34767:3;34763:16;34756:27;34635:154;;;:::o;34795:307::-;34863:1;34873:113;34887:6;34884:1;34881:13;34873:113;;;34972:1;34967:3;34963:11;34957:18;34953:1;34948:3;34944:11;34937:39;34909:2;34906:1;34902:10;34897:15;;34873:113;;;35004:6;35001:1;34998:13;34995:101;;;35084:1;35075:6;35070:3;35066:16;35059:27;34995:101;34844:258;34795:307;;;:::o;35108:320::-;35152:6;35189:1;35183:4;35179:12;35169:22;;35236:1;35230:4;35226:12;35257:18;35247:81;;35313:4;35305:6;35301:17;35291:27;;35247:81;35375:2;35367:6;35364:14;35344:18;35341:38;35338:84;;;35394:18;;:::i;:::-;35338:84;35159:269;35108:320;;;:::o;35434:281::-;35517:27;35539:4;35517:27;:::i;:::-;35509:6;35505:40;35647:6;35635:10;35632:22;35611:18;35599:10;35596:34;35593:62;35590:88;;;35658:18;;:::i;:::-;35590:88;35698:10;35694:2;35687:22;35477:238;35434:281;;:::o;35721:233::-;35760:3;35783:24;35801:5;35783:24;:::i;:::-;35774:33;;35829:66;35822:5;35819:77;35816:103;;;35899:18;;:::i;:::-;35816:103;35946:1;35939:5;35935:13;35928:20;;35721:233;;;:::o;35960:176::-;35992:1;36009:20;36027:1;36009:20;:::i;:::-;36004:25;;36043:20;36061:1;36043:20;:::i;:::-;36038:25;;36082:1;36072:35;;36087:18;;:::i;:::-;36072:35;36128:1;36125;36121:9;36116:14;;35960:176;;;;:::o;36142:180::-;36190:77;36187:1;36180:88;36287:4;36284:1;36277:15;36311:4;36308:1;36301:15;36328:180;36376:77;36373:1;36366:88;36473:4;36470:1;36463:15;36497:4;36494:1;36487:15;36514:180;36562:77;36559:1;36552:88;36659:4;36656:1;36649:15;36683:4;36680:1;36673:15;36700:180;36748:77;36745:1;36738:88;36845:4;36842:1;36835:15;36869:4;36866:1;36859:15;36886:180;36934:77;36931:1;36924:88;37031:4;37028:1;37021:15;37055:4;37052:1;37045:15;37072:117;37181:1;37178;37171:12;37195:117;37304:1;37301;37294:12;37318:117;37427:1;37424;37417:12;37441:117;37550:1;37547;37540:12;37564:102;37605:6;37656:2;37652:7;37647:2;37640:5;37636:14;37632:28;37622:38;;37564:102;;;:::o;37672:221::-;37812:34;37808:1;37800:6;37796:14;37789:58;37881:4;37876:2;37868:6;37864:15;37857:29;37672:221;:::o;37899:157::-;38039:9;38035:1;38027:6;38023:14;38016:33;37899:157;:::o;38062:225::-;38202:34;38198:1;38190:6;38186:14;38179:58;38271:8;38266:2;38258:6;38254:15;38247:33;38062:225;:::o;38293:229::-;38433:34;38429:1;38421:6;38417:14;38410:58;38502:12;38497:2;38489:6;38485:15;38478:37;38293:229;:::o;38528:222::-;38668:34;38664:1;38656:6;38652:14;38645:58;38737:5;38732:2;38724:6;38720:15;38713:30;38528:222;:::o;38756:224::-;38896:34;38892:1;38884:6;38880:14;38873:58;38965:7;38960:2;38952:6;38948:15;38941:32;38756:224;:::o;38986:244::-;39126:34;39122:1;39114:6;39110:14;39103:58;39195:27;39190:2;39182:6;39178:15;39171:52;38986:244;:::o;39236:230::-;39376:34;39372:1;39364:6;39360:14;39353:58;39445:13;39440:2;39432:6;39428:15;39421:38;39236:230;:::o;39472:225::-;39612:34;39608:1;39600:6;39596:14;39589:58;39681:8;39676:2;39668:6;39664:15;39657:33;39472:225;:::o;39703:155::-;39843:7;39839:1;39831:6;39827:14;39820:31;39703:155;:::o;39864:182::-;40004:34;40000:1;39992:6;39988:14;39981:58;39864:182;:::o;40052:234::-;40192:34;40188:1;40180:6;40176:14;40169:58;40261:17;40256:2;40248:6;40244:15;40237:42;40052:234;:::o;40292:176::-;40432:28;40428:1;40420:6;40416:14;40409:52;40292:176;:::o;40474:237::-;40614:34;40610:1;40602:6;40598:14;40591:58;40683:20;40678:2;40670:6;40666:15;40659:45;40474:237;:::o;40717:179::-;40857:31;40853:1;40845:6;40841:14;40834:55;40717:179;:::o;40902:221::-;41042:34;41038:1;41030:6;41026:14;41019:58;41111:4;41106:2;41098:6;41094:15;41087:29;40902:221;:::o;41129:114::-;;:::o;41249:166::-;41389:18;41385:1;41377:6;41373:14;41366:42;41249:166;:::o;41421:238::-;41561:34;41557:1;41549:6;41545:14;41538:58;41630:21;41625:2;41617:6;41613:15;41606:46;41421:238;:::o;41665:220::-;41805:34;41801:1;41793:6;41789:14;41782:58;41874:3;41869:2;41861:6;41857:15;41850:28;41665:220;:::o;41891:227::-;42031:34;42027:1;42019:6;42015:14;42008:58;42100:10;42095:2;42087:6;42083:15;42076:35;41891:227;:::o;42124:169::-;42264:21;42260:1;42252:6;42248:14;42241:45;42124:169;:::o;42299:233::-;42439:34;42435:1;42427:6;42423:14;42416:58;42508:16;42503:2;42495:6;42491:15;42484:41;42299:233;:::o;42538:181::-;42678:33;42674:1;42666:6;42662:14;42655:57;42538:181;:::o;42725:234::-;42865:34;42861:1;42853:6;42849:14;42842:58;42934:17;42929:2;42921:6;42917:15;42910:42;42725:234;:::o;42965:232::-;43105:34;43101:1;43093:6;43089:14;43082:58;43174:15;43169:2;43161:6;43157:15;43150:40;42965:232;:::o;43203:122::-;43276:24;43294:5;43276:24;:::i;:::-;43269:5;43266:35;43256:63;;43315:1;43312;43305:12;43256:63;43203:122;:::o;43331:116::-;43401:21;43416:5;43401:21;:::i;:::-;43394:5;43391:32;43381:60;;43437:1;43434;43427:12;43381:60;43331:116;:::o;43453:120::-;43525:23;43542:5;43525:23;:::i;:::-;43518:5;43515:34;43505:62;;43563:1;43560;43553:12;43505:62;43453:120;:::o;43579:122::-;43652:24;43670:5;43652:24;:::i;:::-;43645:5;43642:35;43632:63;;43691:1;43688;43681:12;43632:63;43579:122;:::o

Swarm Source

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