Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save navedux/a366970a3b76f1c86c5c2ec88cf9ef60 to your computer and use it in GitHub Desktop.

Select an option

Save navedux/a366970a3b76f1c86c5c2ec88cf9ef60 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-721.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.24;
import {IERC721} from "./IERC721.sol";
import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
import {ERC721Utils} from "./utils/ERC721Utils.sol";
import {Context} from "../../utils/Context.sol";
import {Strings} from "../../utils/Strings.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
mapping(uint256 tokenId => address) private _owners;
mapping(address owner => uint256) private _balances;
mapping(uint256 tokenId => address) private _tokenApprovals;
mapping(address owner => mapping(address operator => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/// @inheritdoc IERC165
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/// @inheritdoc IERC721
function balanceOf(address owner) public view virtual returns (uint256) {
if (owner == address(0)) {
revert ERC721InvalidOwner(address(0));
}
return _balances[owner];
}
/// @inheritdoc IERC721
function ownerOf(uint256 tokenId) public view virtual returns (address) {
return _requireOwned(tokenId);
}
/// @inheritdoc IERC721Metadata
function name() public view virtual returns (string memory) {
return _name;
}
/// @inheritdoc IERC721Metadata
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/// @inheritdoc IERC721Metadata
function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
_requireOwned(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string.concat(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 overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/// @inheritdoc IERC721
function approve(address to, uint256 tokenId) public virtual {
_approve(to, tokenId, _msgSender());
}
/// @inheritdoc IERC721
function getApproved(uint256 tokenId) public view virtual returns (address) {
_requireOwned(tokenId);
return _getApproved(tokenId);
}
/// @inheritdoc IERC721
function setApprovalForAll(address operator, bool approved) public virtual {
_setApprovalForAll(_msgSender(), operator, approved);
}
/// @inheritdoc IERC721
function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
return _operatorApprovals[owner][operator];
}
/// @inheritdoc IERC721
function transferFrom(address from, address to, uint256 tokenId) public virtual {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
// Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
// (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
address previousOwner = _update(to, tokenId, _msgSender());
if (previousOwner != from) {
revert ERC721IncorrectOwner(from, tokenId, previousOwner);
}
}
/// @inheritdoc IERC721
function safeTransferFrom(address from, address to, uint256 tokenId) public {
safeTransferFrom(from, to, tokenId, "");
}
/// @inheritdoc IERC721
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
transferFrom(from, to, tokenId);
ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*
* IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
* core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances
* consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
* `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
*/
function _getApproved(uint256 tokenId) internal view virtual returns (address) {
return _tokenApprovals[tokenId];
}
/**
* @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
* particular (ignoring whether it is owned by `owner`).
*
* WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
* assumption.
*/
function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
return
spender != address(0) &&
(owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
}
/**
* @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
* Reverts if:
* - `spender` does not have approval from `owner` for `tokenId`.
* - `spender` does not have approval to manage all of `owner`'s assets.
*
* WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
* assumption.
*/
function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
if (!_isAuthorized(owner, spender, tokenId)) {
if (owner == address(0)) {
revert ERC721NonexistentToken(tokenId);
} else {
revert ERC721InsufficientApproval(spender, tokenId);
}
}
}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
* a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
*
* WARNING: Increasing an account's balance using this function tends to be paired with an override of the
* {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
* remain consistent with one another.
*/
function _increaseBalance(address account, uint128 value) internal virtual {
unchecked {
_balances[account] += value;
}
}
/**
* @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
* (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
*
* The `auth` argument is optional. If the value passed is non 0, then this function will check that
* `auth` is either the owner of the token, or approved to operate on the token (by the owner).
*
* Emits a {Transfer} event.
*
* NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
*/
function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
address from = _ownerOf(tokenId);
// Perform (optional) operator check
if (auth != address(0)) {
_checkAuthorized(from, auth, tokenId);
}
// Execute the update
if (from != address(0)) {
// Clear approval. No need to re-authorize or emit the Approval event
_approve(address(0), tokenId, address(0), false);
unchecked {
_balances[from] -= 1;
}
}
if (to != address(0)) {
unchecked {
_balances[to] += 1;
}
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
return from;
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
address previousOwner = _update(to, tokenId, address(0));
if (previousOwner != address(0)) {
revert ERC721InvalidSender(address(0));
}
}
/**
* @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
_mint(to, tokenId);
ERC721Utils.checkOnERC721Received(_msgSender(), address(0), to, tokenId, data);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal {
address previousOwner = _update(address(0), tokenId, address(0));
if (previousOwner == address(0)) {
revert ERC721NonexistentToken(tokenId);
}
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* 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) internal {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
address previousOwner = _update(to, tokenId, address(0));
if (previousOwner == address(0)) {
revert ERC721NonexistentToken(tokenId);
} else if (previousOwner != from) {
revert ERC721IncorrectOwner(from, tokenId, previousOwner);
}
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
* are aware of the ERC-721 standard to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is like {safeTransferFrom} in the sense that it invokes
* {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `tokenId` token must exist and be owned by `from`.
* - `to` cannot be the zero address.
* - `from` cannot be the zero address.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(address from, address to, uint256 tokenId) internal {
_safeTransfer(from, to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
_transfer(from, to, tokenId);
ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
* either the owner of the token, or approved to operate on all tokens held by this owner.
*
* Emits an {Approval} event.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address to, uint256 tokenId, address auth) internal {
_approve(to, tokenId, auth, true);
}
/**
* @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
* emitted in the context of transfers.
*/
function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
// Avoid reading the owner unless necessary
if (emitEvent || auth != address(0)) {
address owner = _requireOwned(tokenId);
// We do not use _isAuthorized because single-token approvals should not be able to call approve
if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
revert ERC721InvalidApprover(auth);
}
if (emitEvent) {
emit Approval(owner, to, tokenId);
}
}
_tokenApprovals[tokenId] = to;
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Requirements:
* - operator can't be the address zero.
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
if (operator == address(0)) {
revert ERC721InvalidOperator(operator);
}
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
* Returns the owner.
*
* Overrides to ownership logic should be done to {_ownerOf}.
*/
function _requireOwned(uint256 tokenId) internal view returns (address) {
address owner = _ownerOf(tokenId);
if (owner == address(0)) {
revert ERC721NonexistentToken(tokenId);
}
return owner;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity >=0.6.2;
import {IERC721} from "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/IERC721.sol)
pragma solidity >=0.6.2;
import {IERC165} from "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC-721 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 ERC-721 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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* 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 address zero.
*
* 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);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity >=0.5.0;
/**
* @title ERC-721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC-721 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);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC721/utils/ERC721Utils.sol)
pragma solidity ^0.8.20;
import {IERC721Receiver} from "../IERC721Receiver.sol";
import {IERC721Errors} from "../../../interfaces/draft-IERC6093.sol";
/**
* @dev Library that provides common ERC-721 utility functions.
*
* See https://eips.ethereum.org/EIPS/eip-721[ERC-721].
*
* _Available since v5.1._
*/
library ERC721Utils {
/**
* @dev Performs an acceptance check for the provided `operator` by calling {IERC721Receiver-onERC721Received}
* on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).
*
* The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).
* Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept
* the transfer.
*/
function checkOnERC721Received(
address operator,
address from,
address to,
uint256 tokenId,
bytes memory data
) internal {
if (to.code.length > 0) {
try IERC721Receiver(to).onERC721Received(operator, from, tokenId, data) returns (bytes4 retval) {
if (retval != IERC721Receiver.onERC721Received.selector) {
// Token rejected
revert IERC721Errors.ERC721InvalidReceiver(to);
}
} catch (bytes memory reason) {
if (reason.length == 0) {
// non-IERC721Receiver implementer
revert IERC721Errors.ERC721InvalidReceiver(to);
} else {
assembly ("memory-safe") {
revert(add(reason, 0x20), mload(reason))
}
}
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (utils/Bytes.sol)
pragma solidity ^0.8.24;
import {Math} from "./math/Math.sol";
/**
* @dev Bytes operations.
*/
library Bytes {
/**
* @dev Forward search for `s` in `buffer`
* * If `s` is present in the buffer, returns the index of the first instance
* * If `s` is not present in the buffer, returns type(uint256).max
*
* NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]
*/
function indexOf(bytes memory buffer, bytes1 s) internal pure returns (uint256) {
return indexOf(buffer, s, 0);
}
/**
* @dev Forward search for `s` in `buffer` starting at position `pos`
* * If `s` is present in the buffer (at or after `pos`), returns the index of the next instance
* * If `s` is not present in the buffer (at or after `pos`), returns type(uint256).max
*
* NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]
*/
function indexOf(bytes memory buffer, bytes1 s, uint256 pos) internal pure returns (uint256) {
uint256 length = buffer.length;
for (uint256 i = pos; i < length; ++i) {
if (bytes1(_unsafeReadBytesOffset(buffer, i)) == s) {
return i;
}
}
return type(uint256).max;
}
/**
* @dev Backward search for `s` in `buffer`
* * If `s` is present in the buffer, returns the index of the last instance
* * If `s` is not present in the buffer, returns type(uint256).max
*
* NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]
*/
function lastIndexOf(bytes memory buffer, bytes1 s) internal pure returns (uint256) {
return lastIndexOf(buffer, s, type(uint256).max);
}
/**
* @dev Backward search for `s` in `buffer` starting at position `pos`
* * If `s` is present in the buffer (at or before `pos`), returns the index of the previous instance
* * If `s` is not present in the buffer (at or before `pos`), returns type(uint256).max
*
* NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]
*/
function lastIndexOf(bytes memory buffer, bytes1 s, uint256 pos) internal pure returns (uint256) {
unchecked {
uint256 length = buffer.length;
for (uint256 i = Math.min(Math.saturatingAdd(pos, 1), length); i > 0; --i) {
if (bytes1(_unsafeReadBytesOffset(buffer, i - 1)) == s) {
return i - 1;
}
}
return type(uint256).max;
}
}
/**
* @dev Copies the content of `buffer`, from `start` (included) to the end of `buffer` into a new bytes object in
* memory.
*
* NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]
*/
function slice(bytes memory buffer, uint256 start) internal pure returns (bytes memory) {
return slice(buffer, start, buffer.length);
}
/**
* @dev Copies the content of `buffer`, from `start` (included) to `end` (excluded) into a new bytes object in
* memory. The `end` argument is truncated to the length of the `buffer`.
*
* NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]
*/
function slice(bytes memory buffer, uint256 start, uint256 end) internal pure returns (bytes memory) {
// sanitize
end = Math.min(end, buffer.length);
start = Math.min(start, end);
// allocate and copy
bytes memory result = new bytes(end - start);
assembly ("memory-safe") {
mcopy(add(result, 0x20), add(add(buffer, 0x20), start), sub(end, start))
}
return result;
}
/**
* @dev Moves the content of `buffer`, from `start` (included) to the end of `buffer` to the start of that buffer.
*
* NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead
* NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]
*/
function splice(bytes memory buffer, uint256 start) internal pure returns (bytes memory) {
return splice(buffer, start, buffer.length);
}
/**
* @dev Moves the content of `buffer`, from `start` (included) to end (excluded) to the start of that buffer. The
* `end` argument is truncated to the length of the `buffer`.
*
* NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead
* NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]
*/
function splice(bytes memory buffer, uint256 start, uint256 end) internal pure returns (bytes memory) {
// sanitize
end = Math.min(end, buffer.length);
start = Math.min(start, end);
// allocate and copy
assembly ("memory-safe") {
mcopy(add(buffer, 0x20), add(add(buffer, 0x20), start), sub(end, start))
mstore(buffer, sub(end, start))
}
return buffer;
}
/**
* @dev Concatenate an array of bytes into a single bytes object.
*
* For fixed bytes types, we recommend using the solidity built-in `bytes.concat` or (equivalent)
* `abi.encodePacked`.
*
* NOTE: this could be done in assembly with a single loop that expands starting at the FMP, but that would be
* significantly less readable. It might be worth benchmarking the savings of the full-assembly approach.
*/
function concat(bytes[] memory buffers) internal pure returns (bytes memory) {
uint256 length = 0;
for (uint256 i = 0; i < buffers.length; ++i) {
length += buffers[i].length;
}
bytes memory result = new bytes(length);
uint256 offset = 0x20;
for (uint256 i = 0; i < buffers.length; ++i) {
bytes memory input = buffers[i];
assembly ("memory-safe") {
mcopy(add(result, offset), add(input, 0x20), mload(input))
}
unchecked {
offset += input.length;
}
}
return result;
}
/**
* @dev Returns true if the two byte buffers are equal.
*/
function equal(bytes memory a, bytes memory b) internal pure returns (bool) {
return a.length == b.length && keccak256(a) == keccak256(b);
}
/**
* @dev Reverses the byte order of a bytes32 value, converting between little-endian and big-endian.
* Inspired by https://graphics.stanford.edu/~seander/bithacks.html#ReverseParallel[Reverse Parallel]
*/
function reverseBytes32(bytes32 value) internal pure returns (bytes32) {
value = // swap bytes
((value >> 8) & 0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF) |
((value & 0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF) << 8);
value = // swap 2-byte long pairs
((value >> 16) & 0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF) |
((value & 0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF) << 16);
value = // swap 4-byte long pairs
((value >> 32) & 0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF) |
((value & 0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF) << 32);
value = // swap 8-byte long pairs
((value >> 64) & 0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF) |
((value & 0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF) << 64);
return (value >> 128) | (value << 128); // swap 16-byte long pairs
}
/// @dev Same as {reverseBytes32} but optimized for 128-bit values.
function reverseBytes16(bytes16 value) internal pure returns (bytes16) {
value = // swap bytes
((value & 0xFF00FF00FF00FF00FF00FF00FF00FF00) >> 8) |
((value & 0x00FF00FF00FF00FF00FF00FF00FF00FF) << 8);
value = // swap 2-byte long pairs
((value & 0xFFFF0000FFFF0000FFFF0000FFFF0000) >> 16) |
((value & 0x0000FFFF0000FFFF0000FFFF0000FFFF) << 16);
value = // swap 4-byte long pairs
((value & 0xFFFFFFFF00000000FFFFFFFF00000000) >> 32) |
((value & 0x00000000FFFFFFFF00000000FFFFFFFF) << 32);
return (value >> 64) | (value << 64); // swap 8-byte long pairs
}
/// @dev Same as {reverseBytes32} but optimized for 64-bit values.
function reverseBytes8(bytes8 value) internal pure returns (bytes8) {
value = ((value & 0xFF00FF00FF00FF00) >> 8) | ((value & 0x00FF00FF00FF00FF) << 8); // swap bytes
value = ((value & 0xFFFF0000FFFF0000) >> 16) | ((value & 0x0000FFFF0000FFFF) << 16); // swap 2-byte long pairs
return (value >> 32) | (value << 32); // swap 4-byte long pairs
}
/// @dev Same as {reverseBytes32} but optimized for 32-bit values.
function reverseBytes4(bytes4 value) internal pure returns (bytes4) {
value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8); // swap bytes
return (value >> 16) | (value << 16); // swap 2-byte long pairs
}
/// @dev Same as {reverseBytes32} but optimized for 16-bit values.
function reverseBytes2(bytes2 value) internal pure returns (bytes2) {
return (value >> 8) | (value << 8);
}
/**
* @dev Counts the number of leading zero bits a bytes array. Returns `8 * buffer.length`
* if the buffer is all zeros.
*/
function clz(bytes memory buffer) internal pure returns (uint256) {
for (uint256 i = 0; i < buffer.length; i += 0x20) {
bytes32 chunk = _unsafeReadBytesOffset(buffer, i);
if (chunk != bytes32(0)) {
return Math.min(8 * i + Math.clz(uint256(chunk)), 8 * buffer.length);
}
}
return 8 * buffer.length;
}
/**
* @dev Reads a bytes32 from a bytes array without bounds checking.
*
* NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the
* assembly block as such would prevent some optimizations.
*/
function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {
// This is not memory safe in the general case, but all calls to this private function are within bounds.
assembly ("memory-safe") {
value := mload(add(add(buffer, 0x20), offset))
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC-165 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);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/// @inheritdoc IERC165
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* 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[ERC 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);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
import {Panic} from "../Panic.sol";
import {SafeCast} from "./SafeCast.sol";
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Return the 512-bit addition of two uint256.
*
* The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low.
*/
function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {
assembly ("memory-safe") {
low := add(a, b)
high := lt(low, a)
}
}
/**
* @dev Return the 512-bit multiplication of two uint256.
*
* The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low.
*/
function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {
// 512-bit multiply [high low] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use
// the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = high * 2²⁵⁶ + low.
assembly ("memory-safe") {
let mm := mulmod(a, b, not(0))
low := mul(a, b)
high := sub(sub(mm, low), lt(mm, low))
}
}
/**
* @dev Returns the addition of two unsigned integers, with a success flag (no overflow).
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
uint256 c = a + b;
success = c >= a;
result = c * SafeCast.toUint(success);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow).
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
uint256 c = a - b;
success = c <= a;
result = c * SafeCast.toUint(success);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow).
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
uint256 c = a * b;
assembly ("memory-safe") {
// Only true when the multiplication doesn't overflow
// (c / a == b) || (a == 0)
success := or(eq(div(c, a), b), iszero(a))
}
// equivalent to: success ? c : 0
result = c * SafeCast.toUint(success);
}
}
/**
* @dev Returns the division of two unsigned integers, with a success flag (no division by zero).
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
success = b > 0;
assembly ("memory-safe") {
// The `DIV` opcode returns zero when the denominator is 0.
result := div(a, b)
}
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
success = b > 0;
assembly ("memory-safe") {
// The `MOD` opcode returns zero when the denominator is 0.
result := mod(a, b)
}
}
}
/**
* @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing.
*/
function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) {
(bool success, uint256 result) = tryAdd(a, b);
return ternary(success, result, type(uint256).max);
}
/**
* @dev Unsigned saturating subtraction, bounds to zero instead of overflowing.
*/
function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) {
(, uint256 result) = trySub(a, b);
return result;
}
/**
* @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing.
*/
function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) {
(bool success, uint256 result) = tryMul(a, b);
return ternary(success, result, type(uint256).max);
}
/**
* @dev Branchless ternary evaluation for `condition ? a : b`. Gas costs are constant.
*
* IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
* However, the compiler may optimize Solidity ternary operations (i.e. `condition ? a : b`) to only compute
* one branch when needed, making this function more expensive.
*/
function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {
unchecked {
// branchless ternary works because:
// b ^ (a ^ b) == a
// b ^ 0 == b
return b ^ ((a ^ b) * SafeCast.toUint(condition));
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return ternary(a > b, a, b);
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return ternary(a < b, a, b);
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
unchecked {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
Panic.panic(Panic.DIVISION_BY_ZERO);
}
// The following calculation ensures accurate ceiling division without overflow.
// Since a is non-zero, (a - 1) / b will not overflow.
// The largest possible result occurs when (a - 1) / b is type(uint256).max,
// but the largest value we can obtain is type(uint256).max - 1, which happens
// when a = type(uint256).max and b = 1.
unchecked {
return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);
}
}
/**
* @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
*
* Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
(uint256 high, uint256 low) = mul512(x, y);
// Handle non-overflow cases, 256 by 256 division.
if (high == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return low / denominator;
}
// Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.
if (denominator <= high) {
Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [high low].
uint256 remainder;
assembly ("memory-safe") {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
high := sub(high, gt(remainder, low))
low := sub(low, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly ("memory-safe") {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [high low] by twos.
low := div(low, twos)
// Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from high into low.
low |= high * twos;
// Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such
// that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv ≡ 1 mod 2⁴.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2⁸
inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶
inverse *= 2 - denominator * inverse; // inverse mod 2³²
inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴
inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸
inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is
// less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and high
// is no longer required.
result = low * inverse;
return result;
}
}
/**
* @dev Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);
}
/**
* @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256.
*/
function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) {
unchecked {
(uint256 high, uint256 low) = mul512(x, y);
if (high >= 1 << n) {
Panic.panic(Panic.UNDER_OVERFLOW);
}
return (high << (256 - n)) | (low >> n);
}
}
/**
* @dev Calculates x * y >> n with full precision, following the selected rounding direction.
*/
function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) {
return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 0);
}
/**
* @dev Calculate the modular multiplicative inverse of a number in Z/nZ.
*
* If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.
* If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.
*
* If the input value is not inversible, 0 is returned.
*
* NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the
* inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.
*/
function invMod(uint256 a, uint256 n) internal pure returns (uint256) {
unchecked {
if (n == 0) return 0;
// The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)
// Used to compute integers x and y such that: ax + ny = gcd(a, n).
// When the gcd is 1, then the inverse of a modulo n exists and it's x.
// ax + ny = 1
// ax = 1 + (-y)n
// ax ≡ 1 (mod n) # x is the inverse of a modulo n
// If the remainder is 0 the gcd is n right away.
uint256 remainder = a % n;
uint256 gcd = n;
// Therefore the initial coefficients are:
// ax + ny = gcd(a, n) = n
// 0a + 1n = n
int256 x = 0;
int256 y = 1;
while (remainder != 0) {
uint256 quotient = gcd / remainder;
(gcd, remainder) = (
// The old remainder is the next gcd to try.
remainder,
// Compute the next remainder.
// Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd
// where gcd is at most n (capped to type(uint256).max)
gcd - remainder * quotient
);
(x, y) = (
// Increment the coefficient of a.
y,
// Decrement the coefficient of n.
// Can overflow, but the result is casted to uint256 so that the
// next value of y is "wrapped around" to a value between 0 and n - 1.
x - y * int256(quotient)
);
}
if (gcd != 1) return 0; // No inverse exists.
return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.
}
}
/**
* @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.
*
* From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is
* prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that
* `a**(p-2)` is the modular multiplicative inverse of a in Fp.
*
* NOTE: this function does NOT check that `p` is a prime greater than `2`.
*/
function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {
unchecked {
return Math.modExp(a, p - 2, p);
}
}
/**
* @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)
*
* Requirements:
* - modulus can't be zero
* - underlying staticcall to precompile must succeed
*
* IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make
* sure the chain you're using it on supports the precompiled contract for modular exponentiation
* at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,
* the underlying function will succeed given the lack of a revert, but the result may be incorrectly
* interpreted as 0.
*/
function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {
(bool success, uint256 result) = tryModExp(b, e, m);
if (!success) {
Panic.panic(Panic.DIVISION_BY_ZERO);
}
return result;
}
/**
* @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).
* It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying
* to operate modulo 0 or if the underlying precompile reverted.
*
* IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain
* you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in
* https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack
* of a revert, but the result may be incorrectly interpreted as 0.
*/
function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {
if (m == 0) return (false, 0);
assembly ("memory-safe") {
let ptr := mload(0x40)
// | Offset | Content | Content (Hex) |
// |-----------|------------|--------------------------------------------------------------------|
// | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 |
// | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 |
// | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 |
// | 0x60:0x7f | value of b | 0x<.............................................................b> |
// | 0x80:0x9f | value of e | 0x<.............................................................e> |
// | 0xa0:0xbf | value of m | 0x<.............................................................m> |
mstore(ptr, 0x20)
mstore(add(ptr, 0x20), 0x20)
mstore(add(ptr, 0x40), 0x20)
mstore(add(ptr, 0x60), b)
mstore(add(ptr, 0x80), e)
mstore(add(ptr, 0xa0), m)
// Given the result < m, it's guaranteed to fit in 32 bytes,
// so we can use the memory scratch space located at offset 0.
success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)
result := mload(0x00)
}
}
/**
* @dev Variant of {modExp} that supports inputs of arbitrary length.
*/
function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {
(bool success, bytes memory result) = tryModExp(b, e, m);
if (!success) {
Panic.panic(Panic.DIVISION_BY_ZERO);
}
return result;
}
/**
* @dev Variant of {tryModExp} that supports inputs of arbitrary length.
*/
function tryModExp(
bytes memory b,
bytes memory e,
bytes memory m
) internal view returns (bool success, bytes memory result) {
if (_zeroBytes(m)) return (false, new bytes(0));
uint256 mLen = m.length;
// Encode call args in result and move the free memory pointer
result = abi.encodePacked(b.length, e.length, mLen, b, e, m);
assembly ("memory-safe") {
let dataPtr := add(result, 0x20)
// Write result on top of args to avoid allocating extra memory.
success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)
// Overwrite the length.
// result.length > returndatasize() is guaranteed because returndatasize() == m.length
mstore(result, mLen)
// Set the memory pointer after the returned data.
mstore(0x40, add(dataPtr, mLen))
}
}
/**
* @dev Returns whether the provided byte array is zero.
*/
function _zeroBytes(bytes memory byteArray) private pure returns (bool) {
for (uint256 i = 0; i < byteArray.length; ++i) {
if (byteArray[i] != 0) {
return false;
}
}
return true;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* This method is based on Newton's method for computing square roots; the algorithm is restricted to only
* using integer operations.
*/
function sqrt(uint256 a) internal pure returns (uint256) {
unchecked {
// Take care of easy edge cases when a == 0 or a == 1
if (a <= 1) {
return a;
}
// In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a
// sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between
// the current value as `ε_n = | x_n - sqrt(a) |`.
//
// For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root
// of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is
// bigger than any uint256.
//
// By noticing that
// `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`
// we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar
// to the msb function.
uint256 aa = a;
uint256 xn = 1;
if (aa >= (1 << 128)) {
aa >>= 128;
xn <<= 64;
}
if (aa >= (1 << 64)) {
aa >>= 64;
xn <<= 32;
}
if (aa >= (1 << 32)) {
aa >>= 32;
xn <<= 16;
}
if (aa >= (1 << 16)) {
aa >>= 16;
xn <<= 8;
}
if (aa >= (1 << 8)) {
aa >>= 8;
xn <<= 4;
}
if (aa >= (1 << 4)) {
aa >>= 4;
xn <<= 2;
}
if (aa >= (1 << 2)) {
xn <<= 1;
}
// We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).
//
// We can refine our estimation by noticing that the middle of that interval minimizes the error.
// If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).
// This is going to be our x_0 (and ε_0)
xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)
// From here, Newton's method give us:
// x_{n+1} = (x_n + a / x_n) / 2
//
// One should note that:
// x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a
// = ((x_n² + a) / (2 * x_n))² - a
// = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a
// = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)
// = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)
// = (x_n² - a)² / (2 * x_n)²
// = ((x_n² - a) / (2 * x_n))²
// ≥ 0
// Which proves that for all n ≥ 1, sqrt(a) ≤ x_n
//
// This gives us the proof of quadratic convergence of the sequence:
// ε_{n+1} = | x_{n+1} - sqrt(a) |
// = | (x_n + a / x_n) / 2 - sqrt(a) |
// = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |
// = | (x_n - sqrt(a))² / (2 * x_n) |
// = | ε_n² / (2 * x_n) |
// = ε_n² / | (2 * x_n) |
//
// For the first iteration, we have a special case where x_0 is known:
// ε_1 = ε_0² / | (2 * x_0) |
// ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))
// ≤ 2**(2*e-4) / (3 * 2**(e-1))
// ≤ 2**(e-3) / 3
// ≤ 2**(e-3-log2(3))
// ≤ 2**(e-4.5)
//
// For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:
// ε_{n+1} = ε_n² / | (2 * x_n) |
// ≤ (2**(e-k))² / (2 * 2**(e-1))
// ≤ 2**(2*e-2*k) / 2**e
// ≤ 2**(e-2*k)
xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above
xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5
xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9
xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18
xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36
xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72
// Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision
// ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either
// sqrt(a) or sqrt(a) + 1.
return xn - SafeCast.toUint(xn > a / xn);
}
}
/**
* @dev Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 x) internal pure returns (uint256 r) {
// If value has upper 128 bits set, log2 result is at least 128
r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;
// If upper 64 bits of 128-bit half set, add 64 to result
r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;
// If upper 32 bits of 64-bit half set, add 32 to result
r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;
// If upper 16 bits of 32-bit half set, add 16 to result
r |= SafeCast.toUint((x >> r) > 0xffff) << 4;
// If upper 8 bits of 16-bit half set, add 8 to result
r |= SafeCast.toUint((x >> r) > 0xff) << 3;
// If upper 4 bits of 8-bit half set, add 4 to result
r |= SafeCast.toUint((x >> r) > 0xf) << 2;
// Shifts value right by the current result and use it as an index into this lookup table:
//
// | x (4 bits) | index | table[index] = MSB position |
// |------------|---------|-----------------------------|
// | 0000 | 0 | table[0] = 0 |
// | 0001 | 1 | table[1] = 0 |
// | 0010 | 2 | table[2] = 1 |
// | 0011 | 3 | table[3] = 1 |
// | 0100 | 4 | table[4] = 2 |
// | 0101 | 5 | table[5] = 2 |
// | 0110 | 6 | table[6] = 2 |
// | 0111 | 7 | table[7] = 2 |
// | 1000 | 8 | table[8] = 3 |
// | 1001 | 9 | table[9] = 3 |
// | 1010 | 10 | table[10] = 3 |
// | 1011 | 11 | table[11] = 3 |
// | 1100 | 12 | table[12] = 3 |
// | 1101 | 13 | table[13] = 3 |
// | 1110 | 14 | table[14] = 3 |
// | 1111 | 15 | table[15] = 3 |
//
// The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes.
assembly ("memory-safe") {
r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000))
}
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 x) internal pure returns (uint256 r) {
// If value has upper 128 bits set, log2 result is at least 128
r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;
// If upper 64 bits of 128-bit half set, add 64 to result
r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;
// If upper 32 bits of 64-bit half set, add 32 to result
r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;
// If upper 16 bits of 32-bit half set, add 16 to result
r |= SafeCast.toUint((x >> r) > 0xffff) << 4;
// Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8
return (r >> 3) | SafeCast.toUint((x >> r) > 0xff);
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
/**
* @dev Counts the number of leading zero bits in a uint256.
*/
function clz(uint256 x) internal pure returns (uint256) {
return ternary(x == 0, 256, 255 - log2(x));
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.
pragma solidity ^0.8.20;
/**
* @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeCast {
/**
* @dev Value doesn't fit in an uint of `bits` size.
*/
error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);
/**
* @dev An int value doesn't fit in an uint of `bits` size.
*/
error SafeCastOverflowedIntToUint(int256 value);
/**
* @dev Value doesn't fit in an int of `bits` size.
*/
error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);
/**
* @dev An uint value doesn't fit in an int of `bits` size.
*/
error SafeCastOverflowedUintToInt(uint256 value);
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
* Counterpart to Solidity's `uint248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*/
function toUint248(uint256 value) internal pure returns (uint248) {
if (value > type(uint248).max) {
revert SafeCastOverflowedUintDowncast(248, value);
}
return uint248(value);
}
/**
* @dev Returns the downcasted uint240 from uint256, reverting on
* overflow (when the input is greater than largest uint240).
*
* Counterpart to Solidity's `uint240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*/
function toUint240(uint256 value) internal pure returns (uint240) {
if (value > type(uint240).max) {
revert SafeCastOverflowedUintDowncast(240, value);
}
return uint240(value);
}
/**
* @dev Returns the downcasted uint232 from uint256, reverting on
* overflow (when the input is greater than largest uint232).
*
* Counterpart to Solidity's `uint232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*/
function toUint232(uint256 value) internal pure returns (uint232) {
if (value > type(uint232).max) {
revert SafeCastOverflowedUintDowncast(232, value);
}
return uint232(value);
}
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toUint224(uint256 value) internal pure returns (uint224) {
if (value > type(uint224).max) {
revert SafeCastOverflowedUintDowncast(224, value);
}
return uint224(value);
}
/**
* @dev Returns the downcasted uint216 from uint256, reverting on
* overflow (when the input is greater than largest uint216).
*
* Counterpart to Solidity's `uint216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*/
function toUint216(uint256 value) internal pure returns (uint216) {
if (value > type(uint216).max) {
revert SafeCastOverflowedUintDowncast(216, value);
}
return uint216(value);
}
/**
* @dev Returns the downcasted uint208 from uint256, reverting on
* overflow (when the input is greater than largest uint208).
*
* Counterpart to Solidity's `uint208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*/
function toUint208(uint256 value) internal pure returns (uint208) {
if (value > type(uint208).max) {
revert SafeCastOverflowedUintDowncast(208, value);
}
return uint208(value);
}
/**
* @dev Returns the downcasted uint200 from uint256, reverting on
* overflow (when the input is greater than largest uint200).
*
* Counterpart to Solidity's `uint200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*/
function toUint200(uint256 value) internal pure returns (uint200) {
if (value > type(uint200).max) {
revert SafeCastOverflowedUintDowncast(200, value);
}
return uint200(value);
}
/**
* @dev Returns the downcasted uint192 from uint256, reverting on
* overflow (when the input is greater than largest uint192).
*
* Counterpart to Solidity's `uint192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*/
function toUint192(uint256 value) internal pure returns (uint192) {
if (value > type(uint192).max) {
revert SafeCastOverflowedUintDowncast(192, value);
}
return uint192(value);
}
/**
* @dev Returns the downcasted uint184 from uint256, reverting on
* overflow (when the input is greater than largest uint184).
*
* Counterpart to Solidity's `uint184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*/
function toUint184(uint256 value) internal pure returns (uint184) {
if (value > type(uint184).max) {
revert SafeCastOverflowedUintDowncast(184, value);
}
return uint184(value);
}
/**
* @dev Returns the downcasted uint176 from uint256, reverting on
* overflow (when the input is greater than largest uint176).
*
* Counterpart to Solidity's `uint176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*/
function toUint176(uint256 value) internal pure returns (uint176) {
if (value > type(uint176).max) {
revert SafeCastOverflowedUintDowncast(176, value);
}
return uint176(value);
}
/**
* @dev Returns the downcasted uint168 from uint256, reverting on
* overflow (when the input is greater than largest uint168).
*
* Counterpart to Solidity's `uint168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*/
function toUint168(uint256 value) internal pure returns (uint168) {
if (value > type(uint168).max) {
revert SafeCastOverflowedUintDowncast(168, value);
}
return uint168(value);
}
/**
* @dev Returns the downcasted uint160 from uint256, reverting on
* overflow (when the input is greater than largest uint160).
*
* Counterpart to Solidity's `uint160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*/
function toUint160(uint256 value) internal pure returns (uint160) {
if (value > type(uint160).max) {
revert SafeCastOverflowedUintDowncast(160, value);
}
return uint160(value);
}
/**
* @dev Returns the downcasted uint152 from uint256, reverting on
* overflow (when the input is greater than largest uint152).
*
* Counterpart to Solidity's `uint152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*/
function toUint152(uint256 value) internal pure returns (uint152) {
if (value > type(uint152).max) {
revert SafeCastOverflowedUintDowncast(152, value);
}
return uint152(value);
}
/**
* @dev Returns the downcasted uint144 from uint256, reverting on
* overflow (when the input is greater than largest uint144).
*
* Counterpart to Solidity's `uint144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*/
function toUint144(uint256 value) internal pure returns (uint144) {
if (value > type(uint144).max) {
revert SafeCastOverflowedUintDowncast(144, value);
}
return uint144(value);
}
/**
* @dev Returns the downcasted uint136 from uint256, reverting on
* overflow (when the input is greater than largest uint136).
*
* Counterpart to Solidity's `uint136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*/
function toUint136(uint256 value) internal pure returns (uint136) {
if (value > type(uint136).max) {
revert SafeCastOverflowedUintDowncast(136, value);
}
return uint136(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toUint128(uint256 value) internal pure returns (uint128) {
if (value > type(uint128).max) {
revert SafeCastOverflowedUintDowncast(128, value);
}
return uint128(value);
}
/**
* @dev Returns the downcasted uint120 from uint256, reverting on
* overflow (when the input is greater than largest uint120).
*
* Counterpart to Solidity's `uint120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*/
function toUint120(uint256 value) internal pure returns (uint120) {
if (value > type(uint120).max) {
revert SafeCastOverflowedUintDowncast(120, value);
}
return uint120(value);
}
/**
* @dev Returns the downcasted uint112 from uint256, reverting on
* overflow (when the input is greater than largest uint112).
*
* Counterpart to Solidity's `uint112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*/
function toUint112(uint256 value) internal pure returns (uint112) {
if (value > type(uint112).max) {
revert SafeCastOverflowedUintDowncast(112, value);
}
return uint112(value);
}
/**
* @dev Returns the downcasted uint104 from uint256, reverting on
* overflow (when the input is greater than largest uint104).
*
* Counterpart to Solidity's `uint104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*/
function toUint104(uint256 value) internal pure returns (uint104) {
if (value > type(uint104).max) {
revert SafeCastOverflowedUintDowncast(104, value);
}
return uint104(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toUint96(uint256 value) internal pure returns (uint96) {
if (value > type(uint96).max) {
revert SafeCastOverflowedUintDowncast(96, value);
}
return uint96(value);
}
/**
* @dev Returns the downcasted uint88 from uint256, reverting on
* overflow (when the input is greater than largest uint88).
*
* Counterpart to Solidity's `uint88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*/
function toUint88(uint256 value) internal pure returns (uint88) {
if (value > type(uint88).max) {
revert SafeCastOverflowedUintDowncast(88, value);
}
return uint88(value);
}
/**
* @dev Returns the downcasted uint80 from uint256, reverting on
* overflow (when the input is greater than largest uint80).
*
* Counterpart to Solidity's `uint80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*/
function toUint80(uint256 value) internal pure returns (uint80) {
if (value > type(uint80).max) {
revert SafeCastOverflowedUintDowncast(80, value);
}
return uint80(value);
}
/**
* @dev Returns the downcasted uint72 from uint256, reverting on
* overflow (when the input is greater than largest uint72).
*
* Counterpart to Solidity's `uint72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*/
function toUint72(uint256 value) internal pure returns (uint72) {
if (value > type(uint72).max) {
revert SafeCastOverflowedUintDowncast(72, value);
}
return uint72(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toUint64(uint256 value) internal pure returns (uint64) {
if (value > type(uint64).max) {
revert SafeCastOverflowedUintDowncast(64, value);
}
return uint64(value);
}
/**
* @dev Returns the downcasted uint56 from uint256, reverting on
* overflow (when the input is greater than largest uint56).
*
* Counterpart to Solidity's `uint56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*/
function toUint56(uint256 value) internal pure returns (uint56) {
if (value > type(uint56).max) {
revert SafeCastOverflowedUintDowncast(56, value);
}
return uint56(value);
}
/**
* @dev Returns the downcasted uint48 from uint256, reverting on
* overflow (when the input is greater than largest uint48).
*
* Counterpart to Solidity's `uint48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*/
function toUint48(uint256 value) internal pure returns (uint48) {
if (value > type(uint48).max) {
revert SafeCastOverflowedUintDowncast(48, value);
}
return uint48(value);
}
/**
* @dev Returns the downcasted uint40 from uint256, reverting on
* overflow (when the input is greater than largest uint40).
*
* Counterpart to Solidity's `uint40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*/
function toUint40(uint256 value) internal pure returns (uint40) {
if (value > type(uint40).max) {
revert SafeCastOverflowedUintDowncast(40, value);
}
return uint40(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toUint32(uint256 value) internal pure returns (uint32) {
if (value > type(uint32).max) {
revert SafeCastOverflowedUintDowncast(32, value);
}
return uint32(value);
}
/**
* @dev Returns the downcasted uint24 from uint256, reverting on
* overflow (when the input is greater than largest uint24).
*
* Counterpart to Solidity's `uint24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*/
function toUint24(uint256 value) internal pure returns (uint24) {
if (value > type(uint24).max) {
revert SafeCastOverflowedUintDowncast(24, value);
}
return uint24(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toUint16(uint256 value) internal pure returns (uint16) {
if (value > type(uint16).max) {
revert SafeCastOverflowedUintDowncast(16, value);
}
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*/
function toUint8(uint256 value) internal pure returns (uint8) {
if (value > type(uint8).max) {
revert SafeCastOverflowedUintDowncast(8, value);
}
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*/
function toUint256(int256 value) internal pure returns (uint256) {
if (value < 0) {
revert SafeCastOverflowedIntToUint(value);
}
return uint256(value);
}
/**
* @dev Returns the downcasted int248 from int256, reverting on
* overflow (when the input is less than smallest int248 or
* greater than largest int248).
*
* Counterpart to Solidity's `int248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*/
function toInt248(int256 value) internal pure returns (int248 downcasted) {
downcasted = int248(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(248, value);
}
}
/**
* @dev Returns the downcasted int240 from int256, reverting on
* overflow (when the input is less than smallest int240 or
* greater than largest int240).
*
* Counterpart to Solidity's `int240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*/
function toInt240(int256 value) internal pure returns (int240 downcasted) {
downcasted = int240(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(240, value);
}
}
/**
* @dev Returns the downcasted int232 from int256, reverting on
* overflow (when the input is less than smallest int232 or
* greater than largest int232).
*
* Counterpart to Solidity's `int232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*/
function toInt232(int256 value) internal pure returns (int232 downcasted) {
downcasted = int232(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(232, value);
}
}
/**
* @dev Returns the downcasted int224 from int256, reverting on
* overflow (when the input is less than smallest int224 or
* greater than largest int224).
*
* Counterpart to Solidity's `int224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toInt224(int256 value) internal pure returns (int224 downcasted) {
downcasted = int224(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(224, value);
}
}
/**
* @dev Returns the downcasted int216 from int256, reverting on
* overflow (when the input is less than smallest int216 or
* greater than largest int216).
*
* Counterpart to Solidity's `int216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*/
function toInt216(int256 value) internal pure returns (int216 downcasted) {
downcasted = int216(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(216, value);
}
}
/**
* @dev Returns the downcasted int208 from int256, reverting on
* overflow (when the input is less than smallest int208 or
* greater than largest int208).
*
* Counterpart to Solidity's `int208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*/
function toInt208(int256 value) internal pure returns (int208 downcasted) {
downcasted = int208(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(208, value);
}
}
/**
* @dev Returns the downcasted int200 from int256, reverting on
* overflow (when the input is less than smallest int200 or
* greater than largest int200).
*
* Counterpart to Solidity's `int200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*/
function toInt200(int256 value) internal pure returns (int200 downcasted) {
downcasted = int200(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(200, value);
}
}
/**
* @dev Returns the downcasted int192 from int256, reverting on
* overflow (when the input is less than smallest int192 or
* greater than largest int192).
*
* Counterpart to Solidity's `int192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*/
function toInt192(int256 value) internal pure returns (int192 downcasted) {
downcasted = int192(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(192, value);
}
}
/**
* @dev Returns the downcasted int184 from int256, reverting on
* overflow (when the input is less than smallest int184 or
* greater than largest int184).
*
* Counterpart to Solidity's `int184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*/
function toInt184(int256 value) internal pure returns (int184 downcasted) {
downcasted = int184(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(184, value);
}
}
/**
* @dev Returns the downcasted int176 from int256, reverting on
* overflow (when the input is less than smallest int176 or
* greater than largest int176).
*
* Counterpart to Solidity's `int176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*/
function toInt176(int256 value) internal pure returns (int176 downcasted) {
downcasted = int176(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(176, value);
}
}
/**
* @dev Returns the downcasted int168 from int256, reverting on
* overflow (when the input is less than smallest int168 or
* greater than largest int168).
*
* Counterpart to Solidity's `int168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*/
function toInt168(int256 value) internal pure returns (int168 downcasted) {
downcasted = int168(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(168, value);
}
}
/**
* @dev Returns the downcasted int160 from int256, reverting on
* overflow (when the input is less than smallest int160 or
* greater than largest int160).
*
* Counterpart to Solidity's `int160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*/
function toInt160(int256 value) internal pure returns (int160 downcasted) {
downcasted = int160(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(160, value);
}
}
/**
* @dev Returns the downcasted int152 from int256, reverting on
* overflow (when the input is less than smallest int152 or
* greater than largest int152).
*
* Counterpart to Solidity's `int152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*/
function toInt152(int256 value) internal pure returns (int152 downcasted) {
downcasted = int152(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(152, value);
}
}
/**
* @dev Returns the downcasted int144 from int256, reverting on
* overflow (when the input is less than smallest int144 or
* greater than largest int144).
*
* Counterpart to Solidity's `int144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*/
function toInt144(int256 value) internal pure returns (int144 downcasted) {
downcasted = int144(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(144, value);
}
}
/**
* @dev Returns the downcasted int136 from int256, reverting on
* overflow (when the input is less than smallest int136 or
* greater than largest int136).
*
* Counterpart to Solidity's `int136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*/
function toInt136(int256 value) internal pure returns (int136 downcasted) {
downcasted = int136(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(136, value);
}
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toInt128(int256 value) internal pure returns (int128 downcasted) {
downcasted = int128(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(128, value);
}
}
/**
* @dev Returns the downcasted int120 from int256, reverting on
* overflow (when the input is less than smallest int120 or
* greater than largest int120).
*
* Counterpart to Solidity's `int120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*/
function toInt120(int256 value) internal pure returns (int120 downcasted) {
downcasted = int120(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(120, value);
}
}
/**
* @dev Returns the downcasted int112 from int256, reverting on
* overflow (when the input is less than smallest int112 or
* greater than largest int112).
*
* Counterpart to Solidity's `int112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*/
function toInt112(int256 value) internal pure returns (int112 downcasted) {
downcasted = int112(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(112, value);
}
}
/**
* @dev Returns the downcasted int104 from int256, reverting on
* overflow (when the input is less than smallest int104 or
* greater than largest int104).
*
* Counterpart to Solidity's `int104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*/
function toInt104(int256 value) internal pure returns (int104 downcasted) {
downcasted = int104(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(104, value);
}
}
/**
* @dev Returns the downcasted int96 from int256, reverting on
* overflow (when the input is less than smallest int96 or
* greater than largest int96).
*
* Counterpart to Solidity's `int96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toInt96(int256 value) internal pure returns (int96 downcasted) {
downcasted = int96(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(96, value);
}
}
/**
* @dev Returns the downcasted int88 from int256, reverting on
* overflow (when the input is less than smallest int88 or
* greater than largest int88).
*
* Counterpart to Solidity's `int88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*/
function toInt88(int256 value) internal pure returns (int88 downcasted) {
downcasted = int88(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(88, value);
}
}
/**
* @dev Returns the downcasted int80 from int256, reverting on
* overflow (when the input is less than smallest int80 or
* greater than largest int80).
*
* Counterpart to Solidity's `int80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*/
function toInt80(int256 value) internal pure returns (int80 downcasted) {
downcasted = int80(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(80, value);
}
}
/**
* @dev Returns the downcasted int72 from int256, reverting on
* overflow (when the input is less than smallest int72 or
* greater than largest int72).
*
* Counterpart to Solidity's `int72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*/
function toInt72(int256 value) internal pure returns (int72 downcasted) {
downcasted = int72(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(72, value);
}
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toInt64(int256 value) internal pure returns (int64 downcasted) {
downcasted = int64(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(64, value);
}
}
/**
* @dev Returns the downcasted int56 from int256, reverting on
* overflow (when the input is less than smallest int56 or
* greater than largest int56).
*
* Counterpart to Solidity's `int56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*/
function toInt56(int256 value) internal pure returns (int56 downcasted) {
downcasted = int56(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(56, value);
}
}
/**
* @dev Returns the downcasted int48 from int256, reverting on
* overflow (when the input is less than smallest int48 or
* greater than largest int48).
*
* Counterpart to Solidity's `int48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*/
function toInt48(int256 value) internal pure returns (int48 downcasted) {
downcasted = int48(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(48, value);
}
}
/**
* @dev Returns the downcasted int40 from int256, reverting on
* overflow (when the input is less than smallest int40 or
* greater than largest int40).
*
* Counterpart to Solidity's `int40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*/
function toInt40(int256 value) internal pure returns (int40 downcasted) {
downcasted = int40(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(40, value);
}
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toInt32(int256 value) internal pure returns (int32 downcasted) {
downcasted = int32(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(32, value);
}
}
/**
* @dev Returns the downcasted int24 from int256, reverting on
* overflow (when the input is less than smallest int24 or
* greater than largest int24).
*
* Counterpart to Solidity's `int24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*/
function toInt24(int256 value) internal pure returns (int24 downcasted) {
downcasted = int24(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(24, value);
}
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toInt16(int256 value) internal pure returns (int16 downcasted) {
downcasted = int16(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(16, value);
}
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*/
function toInt8(int256 value) internal pure returns (int8 downcasted) {
downcasted = int8(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(8, value);
}
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
if (value > uint256(type(int256).max)) {
revert SafeCastOverflowedUintToInt(value);
}
return int256(value);
}
/**
* @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.
*/
function toUint(bool b) internal pure returns (uint256 u) {
assembly ("memory-safe") {
u := iszero(iszero(b))
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
import {SafeCast} from "./SafeCast.sol";
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
*
* IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
* However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
* one branch when needed, making this function more expensive.
*/
function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
unchecked {
// branchless ternary works because:
// b ^ (a ^ b) == a
// b ^ 0 == b
return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
}
}
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return ternary(a > b, a, b);
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return ternary(a < b, a, b);
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson.
// Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,
// taking advantage of the most significant (or "sign" bit) in two's complement representation.
// This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,
// the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).
int256 mask = n >> 255;
// A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.
return uint256((n + mask) ^ mask);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)
pragma solidity ^0.8.20;
/**
* @dev Helper library for emitting standardized panic codes.
*
* ```solidity
* contract Example {
* using Panic for uint256;
*
* // Use any of the declared internal constants
* function foo() { Panic.GENERIC.panic(); }
*
* // Alternatively
* function foo() { Panic.panic(Panic.GENERIC); }
* }
* ```
*
* Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
*
* _Available since v5.1._
*/
// slither-disable-next-line unused-state
library Panic {
/// @dev generic / unspecified error
uint256 internal constant GENERIC = 0x00;
/// @dev used by the assert() builtin
uint256 internal constant ASSERT = 0x01;
/// @dev arithmetic underflow or overflow
uint256 internal constant UNDER_OVERFLOW = 0x11;
/// @dev division or modulo by zero
uint256 internal constant DIVISION_BY_ZERO = 0x12;
/// @dev enum conversion error
uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;
/// @dev invalid encoding in storage
uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;
/// @dev empty array pop
uint256 internal constant EMPTY_ARRAY_POP = 0x31;
/// @dev array out of bounds access
uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;
/// @dev resource error (too large allocation or too large array)
uint256 internal constant RESOURCE_ERROR = 0x41;
/// @dev calling invalid internal function
uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;
/// @dev Reverts with a panic code. Recommended to use with
/// the internal constants with predefined codes.
function panic(uint256 code) internal pure {
assembly ("memory-safe") {
mstore(0x00, 0x4e487b71)
mstore(0x20, code)
revert(0x1c, 0x24)
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (utils/Strings.sol)
pragma solidity ^0.8.24;
import {Math} from "./math/Math.sol";
import {SafeCast} from "./math/SafeCast.sol";
import {SignedMath} from "./math/SignedMath.sol";
import {Bytes} from "./Bytes.sol";
/**
* @dev String operations.
*/
library Strings {
using SafeCast for *;
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
uint256 private constant SPECIAL_CHARS_LOOKUP =
(1 << 0x08) | // backspace
(1 << 0x09) | // tab
(1 << 0x0a) | // newline
(1 << 0x0c) | // form feed
(1 << 0x0d) | // carriage return
(1 << 0x22) | // double quote
(1 << 0x5c); // backslash
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @dev The string being parsed contains characters that are not in scope of the given base.
*/
error StringsInvalidChar();
/**
* @dev The string being parsed is not a properly formatted address.
*/
error StringsInvalidAddressFormat();
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
assembly ("memory-safe") {
ptr := add(add(buffer, 0x20), length)
}
while (true) {
ptr--;
assembly ("memory-safe") {
mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
uint256 localValue = value;
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_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
* representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal
* representation, according to EIP-55.
*/
function toChecksumHexString(address addr) internal pure returns (string memory) {
bytes memory buffer = bytes(toHexString(addr));
// hash the hex part of buffer (skip length + 2 bytes, length 40)
uint256 hashValue;
assembly ("memory-safe") {
hashValue := shr(96, keccak256(add(buffer, 0x22), 40))
}
for (uint256 i = 41; i > 1; --i) {
// possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)
if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {
// case shift by xoring with 0x20
buffer[i] ^= 0x20;
}
hashValue >>= 4;
}
return string(buffer);
}
/**
* @dev Converts a `bytes` buffer to its ASCII `string` hexadecimal representation.
*/
function toHexString(bytes memory input) internal pure returns (string memory) {
unchecked {
bytes memory buffer = new bytes(2 * input.length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 0; i < input.length; ++i) {
uint8 v = uint8(input[i]);
buffer[2 * i + 2] = HEX_DIGITS[v >> 4];
buffer[2 * i + 3] = HEX_DIGITS[v & 0xf];
}
return string(buffer);
}
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return Bytes.equal(bytes(a), bytes(b));
}
/**
* @dev Parse a decimal string and returns the value as a `uint256`.
*
* Requirements:
* - The string must be formatted as `[0-9]*`
* - The result must fit into an `uint256` type
*/
function parseUint(string memory input) internal pure returns (uint256) {
return parseUint(input, 0, bytes(input).length);
}
/**
* @dev Variant of {parseUint-string} that parses a substring of `input` located between position `begin` (included) and
* `end` (excluded).
*
* Requirements:
* - The substring must be formatted as `[0-9]*`
* - The result must fit into an `uint256` type
*/
function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
(bool success, uint256 value) = tryParseUint(input, begin, end);
if (!success) revert StringsInvalidChar();
return value;
}
/**
* @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.
*
* NOTE: This function will revert if the result does not fit in a `uint256`.
*/
function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {
return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);
}
/**
* @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid
* character.
*
* NOTE: This function will revert if the result does not fit in a `uint256`.
*/
function tryParseUint(
string memory input,
uint256 begin,
uint256 end
) internal pure returns (bool success, uint256 value) {
if (end > bytes(input).length || begin > end) return (false, 0);
return _tryParseUintUncheckedBounds(input, begin, end);
}
/**
* @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that
* `begin <= end <= input.length`. Other inputs would result in undefined behavior.
*/
function _tryParseUintUncheckedBounds(
string memory input,
uint256 begin,
uint256 end
) private pure returns (bool success, uint256 value) {
bytes memory buffer = bytes(input);
uint256 result = 0;
for (uint256 i = begin; i < end; ++i) {
uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
if (chr > 9) return (false, 0);
result *= 10;
result += chr;
}
return (true, result);
}
/**
* @dev Parse a decimal string and returns the value as a `int256`.
*
* Requirements:
* - The string must be formatted as `[-+]?[0-9]*`
* - The result must fit in an `int256` type.
*/
function parseInt(string memory input) internal pure returns (int256) {
return parseInt(input, 0, bytes(input).length);
}
/**
* @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and
* `end` (excluded).
*
* Requirements:
* - The substring must be formatted as `[-+]?[0-9]*`
* - The result must fit in an `int256` type.
*/
function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {
(bool success, int256 value) = tryParseInt(input, begin, end);
if (!success) revert StringsInvalidChar();
return value;
}
/**
* @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if
* the result does not fit in a `int256`.
*
* NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
*/
function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {
return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);
}
uint256 private constant ABS_MIN_INT256 = 2 ** 255;
/**
* @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid
* character or if the result does not fit in a `int256`.
*
* NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
*/
function tryParseInt(
string memory input,
uint256 begin,
uint256 end
) internal pure returns (bool success, int256 value) {
if (end > bytes(input).length || begin > end) return (false, 0);
return _tryParseIntUncheckedBounds(input, begin, end);
}
/**
* @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that
* `begin <= end <= input.length`. Other inputs would result in undefined behavior.
*/
function _tryParseIntUncheckedBounds(
string memory input,
uint256 begin,
uint256 end
) private pure returns (bool success, int256 value) {
bytes memory buffer = bytes(input);
// Check presence of a negative sign.
bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
bool positiveSign = sign == bytes1("+");
bool negativeSign = sign == bytes1("-");
uint256 offset = (positiveSign || negativeSign).toUint();
(bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);
if (absSuccess && absValue < ABS_MIN_INT256) {
return (true, negativeSign ? -int256(absValue) : int256(absValue));
} else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {
return (true, type(int256).min);
} else return (false, 0);
}
/**
* @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as a `uint256`.
*
* Requirements:
* - The string must be formatted as `(0x)?[0-9a-fA-F]*`
* - The result must fit in an `uint256` type.
*/
function parseHexUint(string memory input) internal pure returns (uint256) {
return parseHexUint(input, 0, bytes(input).length);
}
/**
* @dev Variant of {parseHexUint-string} that parses a substring of `input` located between position `begin` (included) and
* `end` (excluded).
*
* Requirements:
* - The substring must be formatted as `(0x)?[0-9a-fA-F]*`
* - The result must fit in an `uint256` type.
*/
function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
(bool success, uint256 value) = tryParseHexUint(input, begin, end);
if (!success) revert StringsInvalidChar();
return value;
}
/**
* @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.
*
* NOTE: This function will revert if the result does not fit in a `uint256`.
*/
function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {
return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);
}
/**
* @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an
* invalid character.
*
* NOTE: This function will revert if the result does not fit in a `uint256`.
*/
function tryParseHexUint(
string memory input,
uint256 begin,
uint256 end
) internal pure returns (bool success, uint256 value) {
if (end > bytes(input).length || begin > end) return (false, 0);
return _tryParseHexUintUncheckedBounds(input, begin, end);
}
/**
* @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that
* `begin <= end <= input.length`. Other inputs would result in undefined behavior.
*/
function _tryParseHexUintUncheckedBounds(
string memory input,
uint256 begin,
uint256 end
) private pure returns (bool success, uint256 value) {
bytes memory buffer = bytes(input);
// skip 0x prefix if present
bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
uint256 offset = hasPrefix.toUint() * 2;
uint256 result = 0;
for (uint256 i = begin + offset; i < end; ++i) {
uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
if (chr > 15) return (false, 0);
result *= 16;
unchecked {
// Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).
// This guarantees that adding a value < 16 will not cause an overflow, hence the unchecked.
result += chr;
}
}
return (true, result);
}
/**
* @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as an `address`.
*
* Requirements:
* - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`
*/
function parseAddress(string memory input) internal pure returns (address) {
return parseAddress(input, 0, bytes(input).length);
}
/**
* @dev Variant of {parseAddress-string} that parses a substring of `input` located between position `begin` (included) and
* `end` (excluded).
*
* Requirements:
* - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`
*/
function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {
(bool success, address value) = tryParseAddress(input, begin, end);
if (!success) revert StringsInvalidAddressFormat();
return value;
}
/**
* @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly
* formatted address. See {parseAddress-string} requirements.
*/
function tryParseAddress(string memory input) internal pure returns (bool success, address value) {
return tryParseAddress(input, 0, bytes(input).length);
}
/**
* @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly
* formatted address. See {parseAddress-string-uint256-uint256} requirements.
*/
function tryParseAddress(
string memory input,
uint256 begin,
uint256 end
) internal pure returns (bool success, address value) {
if (end > bytes(input).length || begin > end) return (false, address(0));
bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
uint256 expectedLength = 40 + hasPrefix.toUint() * 2;
// check that input is the correct length
if (end - begin == expectedLength) {
// length guarantees that this does not overflow, and value is at most type(uint160).max
(bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);
return (s, address(uint160(v)));
} else {
return (false, address(0));
}
}
function _tryParseChr(bytes1 chr) private pure returns (uint8) {
uint8 value = uint8(chr);
// Try to parse `chr`:
// - Case 1: [0-9]
// - Case 2: [a-f]
// - Case 3: [A-F]
// - otherwise not supported
unchecked {
if (value > 47 && value < 58) value -= 48;
else if (value > 96 && value < 103) value -= 87;
else if (value > 64 && value < 71) value -= 55;
else return type(uint8).max;
}
return value;
}
/**
* @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.
*
* WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.
*
* NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of
* RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode
* characters that are not in this range, but other tooling may provide different results.
*/
function escapeJSON(string memory input) internal pure returns (string memory) {
bytes memory buffer = bytes(input);
bytes memory output = new bytes(2 * buffer.length); // worst case scenario
uint256 outputLength = 0;
for (uint256 i = 0; i < buffer.length; ++i) {
bytes1 char = bytes1(_unsafeReadBytesOffset(buffer, i));
if (((SPECIAL_CHARS_LOOKUP & (1 << uint8(char))) != 0)) {
output[outputLength++] = "\\";
if (char == 0x08) output[outputLength++] = "b";
else if (char == 0x09) output[outputLength++] = "t";
else if (char == 0x0a) output[outputLength++] = "n";
else if (char == 0x0c) output[outputLength++] = "f";
else if (char == 0x0d) output[outputLength++] = "r";
else if (char == 0x5c) output[outputLength++] = "\\";
else if (char == 0x22) {
// solhint-disable-next-line quotes
output[outputLength++] = '"';
}
} else {
output[outputLength++] = char;
}
}
// write the actual length and deallocate unused memory
assembly ("memory-safe") {
mstore(output, outputLength)
mstore(0x40, add(output, shl(5, shr(5, add(outputLength, 63)))))
}
return string(output);
}
/**
* @dev Reads a bytes32 from a bytes array without bounds checking.
*
* NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the
* assembly block as such would prevent some optimizations.
*/
function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {
// This is not memory safe in the general case, but all calls to this private function are within bounds.
assembly ("memory-safe") {
value := mload(add(add(buffer, 0x20), offset))
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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 {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_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);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both values are immutable: they can only be set once during construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/// @inheritdoc IERC20
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity >=0.6.2;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (utils/Arrays.sol)
// This file was procedurally generated from scripts/generate/templates/Arrays.js.
pragma solidity ^0.8.20;
import {Comparators} from "./Comparators.sol";
import {SlotDerivation} from "./SlotDerivation.sol";
import {StorageSlot} from "./StorageSlot.sol";
import {Math} from "./math/Math.sol";
/**
* @dev Collection of functions related to array types.
*/
library Arrays {
using SlotDerivation for bytes32;
using StorageSlot for bytes32;
/**
* @dev Sort an array of uint256 (in memory) following the provided comparator function.
*
* This function does the sorting "in place", meaning that it overrides the input. The object is returned for
* convenience, but that returned value can be discarded safely if the caller has a memory pointer to the array.
*
* NOTE: this function's cost is `O(n · log(n))` in average and `O(n²)` in the worst case, with n the length of the
* array. Using it in view functions that are executed through `eth_call` is safe, but one should be very careful
* when executing this as part of a transaction. If the array being sorted is too large, the sort operation may
* consume more gas than is available in a block, leading to potential DoS.
*
* IMPORTANT: Consider memory side-effects when using custom comparator functions that access memory in an unsafe way.
*/
function sort(
uint256[] memory array,
function(uint256, uint256) pure returns (bool) comp
) internal pure returns (uint256[] memory) {
_quickSort(_begin(array), _end(array), comp);
return array;
}
/**
* @dev Variant of {sort} that sorts an array of uint256 in increasing order.
*/
function sort(uint256[] memory array) internal pure returns (uint256[] memory) {
sort(array, Comparators.lt);
return array;
}
/**
* @dev Sort an array of address (in memory) following the provided comparator function.
*
* This function does the sorting "in place", meaning that it overrides the input. The object is returned for
* convenience, but that returned value can be discarded safely if the caller has a memory pointer to the array.
*
* NOTE: this function's cost is `O(n · log(n))` in average and `O(n²)` in the worst case, with n the length of the
* array. Using it in view functions that are executed through `eth_call` is safe, but one should be very careful
* when executing this as part of a transaction. If the array being sorted is too large, the sort operation may
* consume more gas than is available in a block, leading to potential DoS.
*
* IMPORTANT: Consider memory side-effects when using custom comparator functions that access memory in an unsafe way.
*/
function sort(
address[] memory array,
function(address, address) pure returns (bool) comp
) internal pure returns (address[] memory) {
sort(_castToUint256Array(array), _castToUint256Comp(comp));
return array;
}
/**
* @dev Variant of {sort} that sorts an array of address in increasing order.
*/
function sort(address[] memory array) internal pure returns (address[] memory) {
sort(_castToUint256Array(array), Comparators.lt);
return array;
}
/**
* @dev Sort an array of bytes32 (in memory) following the provided comparator function.
*
* This function does the sorting "in place", meaning that it overrides the input. The object is returned for
* convenience, but that returned value can be discarded safely if the caller has a memory pointer to the array.
*
* NOTE: this function's cost is `O(n · log(n))` in average and `O(n²)` in the worst case, with n the length of the
* array. Using it in view functions that are executed through `eth_call` is safe, but one should be very careful
* when executing this as part of a transaction. If the array being sorted is too large, the sort operation may
* consume more gas than is available in a block, leading to potential DoS.
*
* IMPORTANT: Consider memory side-effects when using custom comparator functions that access memory in an unsafe way.
*/
function sort(
bytes32[] memory array,
function(bytes32, bytes32) pure returns (bool) comp
) internal pure returns (bytes32[] memory) {
sort(_castToUint256Array(array), _castToUint256Comp(comp));
return array;
}
/**
* @dev Variant of {sort} that sorts an array of bytes32 in increasing order.
*/
function sort(bytes32[] memory array) internal pure returns (bytes32[] memory) {
sort(_castToUint256Array(array), Comparators.lt);
return array;
}
/**
* @dev Performs a quick sort of a segment of memory. The segment sorted starts at `begin` (inclusive), and stops
* at end (exclusive). Sorting follows the `comp` comparator.
*
* Invariant: `begin <= end`. This is the case when initially called by {sort} and is preserved in subcalls.
*
* IMPORTANT: Memory locations between `begin` and `end` are not validated/zeroed. This function should
* be used only if the limits are within a memory array.
*/
function _quickSort(uint256 begin, uint256 end, function(uint256, uint256) pure returns (bool) comp) private pure {
unchecked {
if (end - begin < 0x40) return;
// Use first element as pivot
uint256 pivot = _mload(begin);
// Position where the pivot should be at the end of the loop
uint256 pos = begin;
for (uint256 it = begin + 0x20; it < end; it += 0x20) {
if (comp(_mload(it), pivot)) {
// If the value stored at the iterator's position comes before the pivot, we increment the
// position of the pivot and move the value there.
pos += 0x20;
_swap(pos, it);
}
}
_swap(begin, pos); // Swap pivot into place
_quickSort(begin, pos, comp); // Sort the left side of the pivot
_quickSort(pos + 0x20, end, comp); // Sort the right side of the pivot
}
}
/**
* @dev Pointer to the memory location of the first element of `array`.
*/
function _begin(uint256[] memory array) private pure returns (uint256 ptr) {
assembly ("memory-safe") {
ptr := add(array, 0x20)
}
}
/**
* @dev Pointer to the memory location of the first memory word (32bytes) after `array`. This is the memory word
* that comes just after the last element of the array.
*/
function _end(uint256[] memory array) private pure returns (uint256 ptr) {
unchecked {
return _begin(array) + array.length * 0x20;
}
}
/**
* @dev Load memory word (as a uint256) at location `ptr`.
*/
function _mload(uint256 ptr) private pure returns (uint256 value) {
assembly {
value := mload(ptr)
}
}
/**
* @dev Swaps the elements memory location `ptr1` and `ptr2`.
*/
function _swap(uint256 ptr1, uint256 ptr2) private pure {
assembly {
let value1 := mload(ptr1)
let value2 := mload(ptr2)
mstore(ptr1, value2)
mstore(ptr2, value1)
}
}
/// @dev Helper: low level cast address memory array to uint256 memory array
function _castToUint256Array(address[] memory input) private pure returns (uint256[] memory output) {
assembly {
output := input
}
}
/// @dev Helper: low level cast bytes32 memory array to uint256 memory array
function _castToUint256Array(bytes32[] memory input) private pure returns (uint256[] memory output) {
assembly {
output := input
}
}
/// @dev Helper: low level cast address comp function to uint256 comp function
function _castToUint256Comp(
function(address, address) pure returns (bool) input
) private pure returns (function(uint256, uint256) pure returns (bool) output) {
assembly {
output := input
}
}
/// @dev Helper: low level cast bytes32 comp function to uint256 comp function
function _castToUint256Comp(
function(bytes32, bytes32) pure returns (bool) input
) private pure returns (function(uint256, uint256) pure returns (bool) output) {
assembly {
output := input
}
}
/**
* @dev Searches a sorted `array` and returns the first index that contains
* a value greater or equal to `element`. If no such index exists (i.e. all
* values in the array are strictly less than `element`), the array length is
* returned. Time complexity O(log n).
*
* NOTE: The `array` is expected to be sorted in ascending order, and to
* contain no repeated elements.
*
* IMPORTANT: Deprecated. This implementation behaves as {lowerBound} but lacks
* support for repeated elements in the array. The {lowerBound} function should
* be used instead.
*/
function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
uint256 low = 0;
uint256 high = array.length;
if (high == 0) {
return 0;
}
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds towards zero (it does integer division with truncation).
if (unsafeAccess(array, mid).value > element) {
high = mid;
} else {
low = mid + 1;
}
}
// At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
if (low > 0 && unsafeAccess(array, low - 1).value == element) {
return low - 1;
} else {
return low;
}
}
/**
* @dev Searches an `array` sorted in ascending order and returns the first
* index that contains a value greater or equal than `element`. If no such index
* exists (i.e. all values in the array are strictly less than `element`), the array
* length is returned. Time complexity O(log n).
*
* See C++'s https://en.cppreference.com/w/cpp/algorithm/lower_bound[lower_bound].
*/
function lowerBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
uint256 low = 0;
uint256 high = array.length;
if (high == 0) {
return 0;
}
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds towards zero (it does integer division with truncation).
if (unsafeAccess(array, mid).value < element) {
// this cannot overflow because mid < high
unchecked {
low = mid + 1;
}
} else {
high = mid;
}
}
return low;
}
/**
* @dev Searches an `array` sorted in ascending order and returns the first
* index that contains a value strictly greater than `element`. If no such index
* exists (i.e. all values in the array are strictly less than `element`), the array
* length is returned. Time complexity O(log n).
*
* See C++'s https://en.cppreference.com/w/cpp/algorithm/upper_bound[upper_bound].
*/
function upperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
uint256 low = 0;
uint256 high = array.length;
if (high == 0) {
return 0;
}
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds towards zero (it does integer division with truncation).
if (unsafeAccess(array, mid).value > element) {
high = mid;
} else {
// this cannot overflow because mid < high
unchecked {
low = mid + 1;
}
}
}
return low;
}
/**
* @dev Same as {lowerBound}, but with an array in memory.
*/
function lowerBoundMemory(uint256[] memory array, uint256 element) internal pure returns (uint256) {
uint256 low = 0;
uint256 high = array.length;
if (high == 0) {
return 0;
}
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds towards zero (it does integer division with truncation).
if (unsafeMemoryAccess(array, mid) < element) {
// this cannot overflow because mid < high
unchecked {
low = mid + 1;
}
} else {
high = mid;
}
}
return low;
}
/**
* @dev Same as {upperBound}, but with an array in memory.
*/
function upperBoundMemory(uint256[] memory array, uint256 element) internal pure returns (uint256) {
uint256 low = 0;
uint256 high = array.length;
if (high == 0) {
return 0;
}
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds towards zero (it does integer division with truncation).
if (unsafeMemoryAccess(array, mid) > element) {
high = mid;
} else {
// this cannot overflow because mid < high
unchecked {
low = mid + 1;
}
}
}
return low;
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
bytes32 slot;
assembly ("memory-safe") {
slot := arr.slot
}
return slot.deriveArray().offset(pos).getAddressSlot();
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
bytes32 slot;
assembly ("memory-safe") {
slot := arr.slot
}
return slot.deriveArray().offset(pos).getBytes32Slot();
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
bytes32 slot;
assembly ("memory-safe") {
slot := arr.slot
}
return slot.deriveArray().offset(pos).getUint256Slot();
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeAccess(bytes[] storage arr, uint256 pos) internal pure returns (StorageSlot.BytesSlot storage) {
bytes32 slot;
assembly ("memory-safe") {
slot := arr.slot
}
return slot.deriveArray().offset(pos).getBytesSlot();
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeAccess(string[] storage arr, uint256 pos) internal pure returns (StorageSlot.StringSlot storage) {
bytes32 slot;
assembly ("memory-safe") {
slot := arr.slot
}
return slot.deriveArray().offset(pos).getStringSlot();
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeMemoryAccess(address[] memory arr, uint256 pos) internal pure returns (address res) {
assembly {
res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
}
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeMemoryAccess(bytes32[] memory arr, uint256 pos) internal pure returns (bytes32 res) {
assembly {
res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
}
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeMemoryAccess(uint256[] memory arr, uint256 pos) internal pure returns (uint256 res) {
assembly {
res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
}
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeMemoryAccess(bytes[] memory arr, uint256 pos) internal pure returns (bytes memory res) {
assembly {
res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
}
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeMemoryAccess(string[] memory arr, uint256 pos) internal pure returns (string memory res) {
assembly {
res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
}
}
/**
* @dev Helper to set the length of a dynamic array. Directly writing to `.length` is forbidden.
*
* WARNING: this does not clear elements if length is reduced, of initialize elements if length is increased.
*/
function unsafeSetLength(address[] storage array, uint256 len) internal {
assembly ("memory-safe") {
sstore(array.slot, len)
}
}
/**
* @dev Helper to set the length of a dynamic array. Directly writing to `.length` is forbidden.
*
* WARNING: this does not clear elements if length is reduced, of initialize elements if length is increased.
*/
function unsafeSetLength(bytes32[] storage array, uint256 len) internal {
assembly ("memory-safe") {
sstore(array.slot, len)
}
}
/**
* @dev Helper to set the length of a dynamic array. Directly writing to `.length` is forbidden.
*
* WARNING: this does not clear elements if length is reduced, of initialize elements if length is increased.
*/
function unsafeSetLength(uint256[] storage array, uint256 len) internal {
assembly ("memory-safe") {
sstore(array.slot, len)
}
}
/**
* @dev Helper to set the length of a dynamic array. Directly writing to `.length` is forbidden.
*
* WARNING: this does not clear elements if length is reduced, of initialize elements if length is increased.
*/
function unsafeSetLength(bytes[] storage array, uint256 len) internal {
assembly ("memory-safe") {
sstore(array.slot, len)
}
}
/**
* @dev Helper to set the length of a dynamic array. Directly writing to `.length` is forbidden.
*
* WARNING: this does not clear elements if length is reduced, of initialize elements if length is increased.
*/
function unsafeSetLength(string[] storage array, uint256 len) internal {
assembly ("memory-safe") {
sstore(array.slot, len)
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Comparators.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides a set of functions to compare values.
*
* _Available since v5.1._
*/
library Comparators {
function lt(uint256 a, uint256 b) internal pure returns (bool) {
return a < b;
}
function gt(uint256 a, uint256 b) internal pure returns (bool) {
return a > b;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
import {Panic} from "../Panic.sol";
import {SafeCast} from "./SafeCast.sol";
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Return the 512-bit addition of two uint256.
*
* The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low.
*/
function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {
assembly ("memory-safe") {
low := add(a, b)
high := lt(low, a)
}
}
/**
* @dev Return the 512-bit multiplication of two uint256.
*
* The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low.
*/
function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {
// 512-bit multiply [high low] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use
// the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = high * 2²⁵⁶ + low.
assembly ("memory-safe") {
let mm := mulmod(a, b, not(0))
low := mul(a, b)
high := sub(sub(mm, low), lt(mm, low))
}
}
/**
* @dev Returns the addition of two unsigned integers, with a success flag (no overflow).
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
uint256 c = a + b;
success = c >= a;
result = c * SafeCast.toUint(success);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow).
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
uint256 c = a - b;
success = c <= a;
result = c * SafeCast.toUint(success);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow).
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
uint256 c = a * b;
assembly ("memory-safe") {
// Only true when the multiplication doesn't overflow
// (c / a == b) || (a == 0)
success := or(eq(div(c, a), b), iszero(a))
}
// equivalent to: success ? c : 0
result = c * SafeCast.toUint(success);
}
}
/**
* @dev Returns the division of two unsigned integers, with a success flag (no division by zero).
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
success = b > 0;
assembly ("memory-safe") {
// The `DIV` opcode returns zero when the denominator is 0.
result := div(a, b)
}
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
unchecked {
success = b > 0;
assembly ("memory-safe") {
// The `MOD` opcode returns zero when the denominator is 0.
result := mod(a, b)
}
}
}
/**
* @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing.
*/
function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) {
(bool success, uint256 result) = tryAdd(a, b);
return ternary(success, result, type(uint256).max);
}
/**
* @dev Unsigned saturating subtraction, bounds to zero instead of overflowing.
*/
function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) {
(, uint256 result) = trySub(a, b);
return result;
}
/**
* @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing.
*/
function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) {
(bool success, uint256 result) = tryMul(a, b);
return ternary(success, result, type(uint256).max);
}
/**
* @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
*
* IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
* However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
* one branch when needed, making this function more expensive.
*/
function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {
unchecked {
// branchless ternary works because:
// b ^ (a ^ b) == a
// b ^ 0 == b
return b ^ ((a ^ b) * SafeCast.toUint(condition));
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return ternary(a > b, a, b);
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return ternary(a < b, a, b);
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
Panic.panic(Panic.DIVISION_BY_ZERO);
}
// The following calculation ensures accurate ceiling division without overflow.
// Since a is non-zero, (a - 1) / b will not overflow.
// The largest possible result occurs when (a - 1) / b is type(uint256).max,
// but the largest value we can obtain is type(uint256).max - 1, which happens
// when a = type(uint256).max and b = 1.
unchecked {
return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);
}
}
/**
* @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
*
* Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
(uint256 high, uint256 low) = mul512(x, y);
// Handle non-overflow cases, 256 by 256 division.
if (high == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return low / denominator;
}
// Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.
if (denominator <= high) {
Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [high low].
uint256 remainder;
assembly ("memory-safe") {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
high := sub(high, gt(remainder, low))
low := sub(low, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly ("memory-safe") {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [high low] by twos.
low := div(low, twos)
// Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from high into low.
low |= high * twos;
// Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such
// that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv ≡ 1 mod 2⁴.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2⁸
inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶
inverse *= 2 - denominator * inverse; // inverse mod 2³²
inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴
inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸
inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is
// less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and high
// is no longer required.
result = low * inverse;
return result;
}
}
/**
* @dev Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);
}
/**
* @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256.
*/
function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) {
unchecked {
(uint256 high, uint256 low) = mul512(x, y);
if (high >= 1 << n) {
Panic.panic(Panic.UNDER_OVERFLOW);
}
return (high << (256 - n)) | (low >> n);
}
}
/**
* @dev Calculates x * y >> n with full precision, following the selected rounding direction.
*/
function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) {
return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 0);
}
/**
* @dev Calculate the modular multiplicative inverse of a number in Z/nZ.
*
* If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.
* If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.
*
* If the input value is not inversible, 0 is returned.
*
* NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the
* inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.
*/
function invMod(uint256 a, uint256 n) internal pure returns (uint256) {
unchecked {
if (n == 0) return 0;
// The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)
// Used to compute integers x and y such that: ax + ny = gcd(a, n).
// When the gcd is 1, then the inverse of a modulo n exists and it's x.
// ax + ny = 1
// ax = 1 + (-y)n
// ax ≡ 1 (mod n) # x is the inverse of a modulo n
// If the remainder is 0 the gcd is n right away.
uint256 remainder = a % n;
uint256 gcd = n;
// Therefore the initial coefficients are:
// ax + ny = gcd(a, n) = n
// 0a + 1n = n
int256 x = 0;
int256 y = 1;
while (remainder != 0) {
uint256 quotient = gcd / remainder;
(gcd, remainder) = (
// The old remainder is the next gcd to try.
remainder,
// Compute the next remainder.
// Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd
// where gcd is at most n (capped to type(uint256).max)
gcd - remainder * quotient
);
(x, y) = (
// Increment the coefficient of a.
y,
// Decrement the coefficient of n.
// Can overflow, but the result is casted to uint256 so that the
// next value of y is "wrapped around" to a value between 0 and n - 1.
x - y * int256(quotient)
);
}
if (gcd != 1) return 0; // No inverse exists.
return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.
}
}
/**
* @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.
*
* From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is
* prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that
* `a**(p-2)` is the modular multiplicative inverse of a in Fp.
*
* NOTE: this function does NOT check that `p` is a prime greater than `2`.
*/
function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {
unchecked {
return Math.modExp(a, p - 2, p);
}
}
/**
* @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)
*
* Requirements:
* - modulus can't be zero
* - underlying staticcall to precompile must succeed
*
* IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make
* sure the chain you're using it on supports the precompiled contract for modular exponentiation
* at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,
* the underlying function will succeed given the lack of a revert, but the result may be incorrectly
* interpreted as 0.
*/
function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {
(bool success, uint256 result) = tryModExp(b, e, m);
if (!success) {
Panic.panic(Panic.DIVISION_BY_ZERO);
}
return result;
}
/**
* @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).
* It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying
* to operate modulo 0 or if the underlying precompile reverted.
*
* IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain
* you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in
* https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack
* of a revert, but the result may be incorrectly interpreted as 0.
*/
function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {
if (m == 0) return (false, 0);
assembly ("memory-safe") {
let ptr := mload(0x40)
// | Offset | Content | Content (Hex) |
// |-----------|------------|--------------------------------------------------------------------|
// | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 |
// | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 |
// | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 |
// | 0x60:0x7f | value of b | 0x<.............................................................b> |
// | 0x80:0x9f | value of e | 0x<.............................................................e> |
// | 0xa0:0xbf | value of m | 0x<.............................................................m> |
mstore(ptr, 0x20)
mstore(add(ptr, 0x20), 0x20)
mstore(add(ptr, 0x40), 0x20)
mstore(add(ptr, 0x60), b)
mstore(add(ptr, 0x80), e)
mstore(add(ptr, 0xa0), m)
// Given the result < m, it's guaranteed to fit in 32 bytes,
// so we can use the memory scratch space located at offset 0.
success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)
result := mload(0x00)
}
}
/**
* @dev Variant of {modExp} that supports inputs of arbitrary length.
*/
function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {
(bool success, bytes memory result) = tryModExp(b, e, m);
if (!success) {
Panic.panic(Panic.DIVISION_BY_ZERO);
}
return result;
}
/**
* @dev Variant of {tryModExp} that supports inputs of arbitrary length.
*/
function tryModExp(
bytes memory b,
bytes memory e,
bytes memory m
) internal view returns (bool success, bytes memory result) {
if (_zeroBytes(m)) return (false, new bytes(0));
uint256 mLen = m.length;
// Encode call args in result and move the free memory pointer
result = abi.encodePacked(b.length, e.length, mLen, b, e, m);
assembly ("memory-safe") {
let dataPtr := add(result, 0x20)
// Write result on top of args to avoid allocating extra memory.
success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)
// Overwrite the length.
// result.length > returndatasize() is guaranteed because returndatasize() == m.length
mstore(result, mLen)
// Set the memory pointer after the returned data.
mstore(0x40, add(dataPtr, mLen))
}
}
/**
* @dev Returns whether the provided byte array is zero.
*/
function _zeroBytes(bytes memory byteArray) private pure returns (bool) {
for (uint256 i = 0; i < byteArray.length; ++i) {
if (byteArray[i] != 0) {
return false;
}
}
return true;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* This method is based on Newton's method for computing square roots; the algorithm is restricted to only
* using integer operations.
*/
function sqrt(uint256 a) internal pure returns (uint256) {
unchecked {
// Take care of easy edge cases when a == 0 or a == 1
if (a <= 1) {
return a;
}
// In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a
// sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between
// the current value as `ε_n = | x_n - sqrt(a) |`.
//
// For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root
// of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is
// bigger than any uint256.
//
// By noticing that
// `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`
// we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar
// to the msb function.
uint256 aa = a;
uint256 xn = 1;
if (aa >= (1 << 128)) {
aa >>= 128;
xn <<= 64;
}
if (aa >= (1 << 64)) {
aa >>= 64;
xn <<= 32;
}
if (aa >= (1 << 32)) {
aa >>= 32;
xn <<= 16;
}
if (aa >= (1 << 16)) {
aa >>= 16;
xn <<= 8;
}
if (aa >= (1 << 8)) {
aa >>= 8;
xn <<= 4;
}
if (aa >= (1 << 4)) {
aa >>= 4;
xn <<= 2;
}
if (aa >= (1 << 2)) {
xn <<= 1;
}
// We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).
//
// We can refine our estimation by noticing that the middle of that interval minimizes the error.
// If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).
// This is going to be our x_0 (and ε_0)
xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)
// From here, Newton's method give us:
// x_{n+1} = (x_n + a / x_n) / 2
//
// One should note that:
// x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a
// = ((x_n² + a) / (2 * x_n))² - a
// = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a
// = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)
// = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)
// = (x_n² - a)² / (2 * x_n)²
// = ((x_n² - a) / (2 * x_n))²
// ≥ 0
// Which proves that for all n ≥ 1, sqrt(a) ≤ x_n
//
// This gives us the proof of quadratic convergence of the sequence:
// ε_{n+1} = | x_{n+1} - sqrt(a) |
// = | (x_n + a / x_n) / 2 - sqrt(a) |
// = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |
// = | (x_n - sqrt(a))² / (2 * x_n) |
// = | ε_n² / (2 * x_n) |
// = ε_n² / | (2 * x_n) |
//
// For the first iteration, we have a special case where x_0 is known:
// ε_1 = ε_0² / | (2 * x_0) |
// ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))
// ≤ 2**(2*e-4) / (3 * 2**(e-1))
// ≤ 2**(e-3) / 3
// ≤ 2**(e-3-log2(3))
// ≤ 2**(e-4.5)
//
// For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:
// ε_{n+1} = ε_n² / | (2 * x_n) |
// ≤ (2**(e-k))² / (2 * 2**(e-1))
// ≤ 2**(2*e-2*k) / 2**e
// ≤ 2**(e-2*k)
xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above
xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5
xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9
xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18
xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36
xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72
// Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision
// ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either
// sqrt(a) or sqrt(a) + 1.
return xn - SafeCast.toUint(xn > a / xn);
}
}
/**
* @dev Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 x) internal pure returns (uint256 r) {
// If value has upper 128 bits set, log2 result is at least 128
r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;
// If upper 64 bits of 128-bit half set, add 64 to result
r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;
// If upper 32 bits of 64-bit half set, add 32 to result
r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;
// If upper 16 bits of 32-bit half set, add 16 to result
r |= SafeCast.toUint((x >> r) > 0xffff) << 4;
// If upper 8 bits of 16-bit half set, add 8 to result
r |= SafeCast.toUint((x >> r) > 0xff) << 3;
// If upper 4 bits of 8-bit half set, add 4 to result
r |= SafeCast.toUint((x >> r) > 0xf) << 2;
// Shifts value right by the current result and use it as an index into this lookup table:
//
// | x (4 bits) | index | table[index] = MSB position |
// |------------|---------|-----------------------------|
// | 0000 | 0 | table[0] = 0 |
// | 0001 | 1 | table[1] = 0 |
// | 0010 | 2 | table[2] = 1 |
// | 0011 | 3 | table[3] = 1 |
// | 0100 | 4 | table[4] = 2 |
// | 0101 | 5 | table[5] = 2 |
// | 0110 | 6 | table[6] = 2 |
// | 0111 | 7 | table[7] = 2 |
// | 1000 | 8 | table[8] = 3 |
// | 1001 | 9 | table[9] = 3 |
// | 1010 | 10 | table[10] = 3 |
// | 1011 | 11 | table[11] = 3 |
// | 1100 | 12 | table[12] = 3 |
// | 1101 | 13 | table[13] = 3 |
// | 1110 | 14 | table[14] = 3 |
// | 1111 | 15 | table[15] = 3 |
//
// The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes.
assembly ("memory-safe") {
r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000))
}
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 x) internal pure returns (uint256 r) {
// If value has upper 128 bits set, log2 result is at least 128
r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;
// If upper 64 bits of 128-bit half set, add 64 to result
r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;
// If upper 32 bits of 64-bit half set, add 32 to result
r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;
// If upper 16 bits of 32-bit half set, add 16 to result
r |= SafeCast.toUint((x >> r) > 0xffff) << 4;
// Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8
return (r >> 3) | SafeCast.toUint((x >> r) > 0xff);
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.
pragma solidity ^0.8.20;
/**
* @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeCast {
/**
* @dev Value doesn't fit in an uint of `bits` size.
*/
error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);
/**
* @dev An int value doesn't fit in an uint of `bits` size.
*/
error SafeCastOverflowedIntToUint(int256 value);
/**
* @dev Value doesn't fit in an int of `bits` size.
*/
error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);
/**
* @dev An uint value doesn't fit in an int of `bits` size.
*/
error SafeCastOverflowedUintToInt(uint256 value);
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
* Counterpart to Solidity's `uint248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*/
function toUint248(uint256 value) internal pure returns (uint248) {
if (value > type(uint248).max) {
revert SafeCastOverflowedUintDowncast(248, value);
}
return uint248(value);
}
/**
* @dev Returns the downcasted uint240 from uint256, reverting on
* overflow (when the input is greater than largest uint240).
*
* Counterpart to Solidity's `uint240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*/
function toUint240(uint256 value) internal pure returns (uint240) {
if (value > type(uint240).max) {
revert SafeCastOverflowedUintDowncast(240, value);
}
return uint240(value);
}
/**
* @dev Returns the downcasted uint232 from uint256, reverting on
* overflow (when the input is greater than largest uint232).
*
* Counterpart to Solidity's `uint232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*/
function toUint232(uint256 value) internal pure returns (uint232) {
if (value > type(uint232).max) {
revert SafeCastOverflowedUintDowncast(232, value);
}
return uint232(value);
}
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toUint224(uint256 value) internal pure returns (uint224) {
if (value > type(uint224).max) {
revert SafeCastOverflowedUintDowncast(224, value);
}
return uint224(value);
}
/**
* @dev Returns the downcasted uint216 from uint256, reverting on
* overflow (when the input is greater than largest uint216).
*
* Counterpart to Solidity's `uint216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*/
function toUint216(uint256 value) internal pure returns (uint216) {
if (value > type(uint216).max) {
revert SafeCastOverflowedUintDowncast(216, value);
}
return uint216(value);
}
/**
* @dev Returns the downcasted uint208 from uint256, reverting on
* overflow (when the input is greater than largest uint208).
*
* Counterpart to Solidity's `uint208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*/
function toUint208(uint256 value) internal pure returns (uint208) {
if (value > type(uint208).max) {
revert SafeCastOverflowedUintDowncast(208, value);
}
return uint208(value);
}
/**
* @dev Returns the downcasted uint200 from uint256, reverting on
* overflow (when the input is greater than largest uint200).
*
* Counterpart to Solidity's `uint200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*/
function toUint200(uint256 value) internal pure returns (uint200) {
if (value > type(uint200).max) {
revert SafeCastOverflowedUintDowncast(200, value);
}
return uint200(value);
}
/**
* @dev Returns the downcasted uint192 from uint256, reverting on
* overflow (when the input is greater than largest uint192).
*
* Counterpart to Solidity's `uint192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*/
function toUint192(uint256 value) internal pure returns (uint192) {
if (value > type(uint192).max) {
revert SafeCastOverflowedUintDowncast(192, value);
}
return uint192(value);
}
/**
* @dev Returns the downcasted uint184 from uint256, reverting on
* overflow (when the input is greater than largest uint184).
*
* Counterpart to Solidity's `uint184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*/
function toUint184(uint256 value) internal pure returns (uint184) {
if (value > type(uint184).max) {
revert SafeCastOverflowedUintDowncast(184, value);
}
return uint184(value);
}
/**
* @dev Returns the downcasted uint176 from uint256, reverting on
* overflow (when the input is greater than largest uint176).
*
* Counterpart to Solidity's `uint176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*/
function toUint176(uint256 value) internal pure returns (uint176) {
if (value > type(uint176).max) {
revert SafeCastOverflowedUintDowncast(176, value);
}
return uint176(value);
}
/**
* @dev Returns the downcasted uint168 from uint256, reverting on
* overflow (when the input is greater than largest uint168).
*
* Counterpart to Solidity's `uint168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*/
function toUint168(uint256 value) internal pure returns (uint168) {
if (value > type(uint168).max) {
revert SafeCastOverflowedUintDowncast(168, value);
}
return uint168(value);
}
/**
* @dev Returns the downcasted uint160 from uint256, reverting on
* overflow (when the input is greater than largest uint160).
*
* Counterpart to Solidity's `uint160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*/
function toUint160(uint256 value) internal pure returns (uint160) {
if (value > type(uint160).max) {
revert SafeCastOverflowedUintDowncast(160, value);
}
return uint160(value);
}
/**
* @dev Returns the downcasted uint152 from uint256, reverting on
* overflow (when the input is greater than largest uint152).
*
* Counterpart to Solidity's `uint152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*/
function toUint152(uint256 value) internal pure returns (uint152) {
if (value > type(uint152).max) {
revert SafeCastOverflowedUintDowncast(152, value);
}
return uint152(value);
}
/**
* @dev Returns the downcasted uint144 from uint256, reverting on
* overflow (when the input is greater than largest uint144).
*
* Counterpart to Solidity's `uint144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*/
function toUint144(uint256 value) internal pure returns (uint144) {
if (value > type(uint144).max) {
revert SafeCastOverflowedUintDowncast(144, value);
}
return uint144(value);
}
/**
* @dev Returns the downcasted uint136 from uint256, reverting on
* overflow (when the input is greater than largest uint136).
*
* Counterpart to Solidity's `uint136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*/
function toUint136(uint256 value) internal pure returns (uint136) {
if (value > type(uint136).max) {
revert SafeCastOverflowedUintDowncast(136, value);
}
return uint136(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toUint128(uint256 value) internal pure returns (uint128) {
if (value > type(uint128).max) {
revert SafeCastOverflowedUintDowncast(128, value);
}
return uint128(value);
}
/**
* @dev Returns the downcasted uint120 from uint256, reverting on
* overflow (when the input is greater than largest uint120).
*
* Counterpart to Solidity's `uint120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*/
function toUint120(uint256 value) internal pure returns (uint120) {
if (value > type(uint120).max) {
revert SafeCastOverflowedUintDowncast(120, value);
}
return uint120(value);
}
/**
* @dev Returns the downcasted uint112 from uint256, reverting on
* overflow (when the input is greater than largest uint112).
*
* Counterpart to Solidity's `uint112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*/
function toUint112(uint256 value) internal pure returns (uint112) {
if (value > type(uint112).max) {
revert SafeCastOverflowedUintDowncast(112, value);
}
return uint112(value);
}
/**
* @dev Returns the downcasted uint104 from uint256, reverting on
* overflow (when the input is greater than largest uint104).
*
* Counterpart to Solidity's `uint104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*/
function toUint104(uint256 value) internal pure returns (uint104) {
if (value > type(uint104).max) {
revert SafeCastOverflowedUintDowncast(104, value);
}
return uint104(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toUint96(uint256 value) internal pure returns (uint96) {
if (value > type(uint96).max) {
revert SafeCastOverflowedUintDowncast(96, value);
}
return uint96(value);
}
/**
* @dev Returns the downcasted uint88 from uint256, reverting on
* overflow (when the input is greater than largest uint88).
*
* Counterpart to Solidity's `uint88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*/
function toUint88(uint256 value) internal pure returns (uint88) {
if (value > type(uint88).max) {
revert SafeCastOverflowedUintDowncast(88, value);
}
return uint88(value);
}
/**
* @dev Returns the downcasted uint80 from uint256, reverting on
* overflow (when the input is greater than largest uint80).
*
* Counterpart to Solidity's `uint80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*/
function toUint80(uint256 value) internal pure returns (uint80) {
if (value > type(uint80).max) {
revert SafeCastOverflowedUintDowncast(80, value);
}
return uint80(value);
}
/**
* @dev Returns the downcasted uint72 from uint256, reverting on
* overflow (when the input is greater than largest uint72).
*
* Counterpart to Solidity's `uint72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*/
function toUint72(uint256 value) internal pure returns (uint72) {
if (value > type(uint72).max) {
revert SafeCastOverflowedUintDowncast(72, value);
}
return uint72(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toUint64(uint256 value) internal pure returns (uint64) {
if (value > type(uint64).max) {
revert SafeCastOverflowedUintDowncast(64, value);
}
return uint64(value);
}
/**
* @dev Returns the downcasted uint56 from uint256, reverting on
* overflow (when the input is greater than largest uint56).
*
* Counterpart to Solidity's `uint56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*/
function toUint56(uint256 value) internal pure returns (uint56) {
if (value > type(uint56).max) {
revert SafeCastOverflowedUintDowncast(56, value);
}
return uint56(value);
}
/**
* @dev Returns the downcasted uint48 from uint256, reverting on
* overflow (when the input is greater than largest uint48).
*
* Counterpart to Solidity's `uint48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*/
function toUint48(uint256 value) internal pure returns (uint48) {
if (value > type(uint48).max) {
revert SafeCastOverflowedUintDowncast(48, value);
}
return uint48(value);
}
/**
* @dev Returns the downcasted uint40 from uint256, reverting on
* overflow (when the input is greater than largest uint40).
*
* Counterpart to Solidity's `uint40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*/
function toUint40(uint256 value) internal pure returns (uint40) {
if (value > type(uint40).max) {
revert SafeCastOverflowedUintDowncast(40, value);
}
return uint40(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toUint32(uint256 value) internal pure returns (uint32) {
if (value > type(uint32).max) {
revert SafeCastOverflowedUintDowncast(32, value);
}
return uint32(value);
}
/**
* @dev Returns the downcasted uint24 from uint256, reverting on
* overflow (when the input is greater than largest uint24).
*
* Counterpart to Solidity's `uint24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*/
function toUint24(uint256 value) internal pure returns (uint24) {
if (value > type(uint24).max) {
revert SafeCastOverflowedUintDowncast(24, value);
}
return uint24(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toUint16(uint256 value) internal pure returns (uint16) {
if (value > type(uint16).max) {
revert SafeCastOverflowedUintDowncast(16, value);
}
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*/
function toUint8(uint256 value) internal pure returns (uint8) {
if (value > type(uint8).max) {
revert SafeCastOverflowedUintDowncast(8, value);
}
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*/
function toUint256(int256 value) internal pure returns (uint256) {
if (value < 0) {
revert SafeCastOverflowedIntToUint(value);
}
return uint256(value);
}
/**
* @dev Returns the downcasted int248 from int256, reverting on
* overflow (when the input is less than smallest int248 or
* greater than largest int248).
*
* Counterpart to Solidity's `int248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*/
function toInt248(int256 value) internal pure returns (int248 downcasted) {
downcasted = int248(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(248, value);
}
}
/**
* @dev Returns the downcasted int240 from int256, reverting on
* overflow (when the input is less than smallest int240 or
* greater than largest int240).
*
* Counterpart to Solidity's `int240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*/
function toInt240(int256 value) internal pure returns (int240 downcasted) {
downcasted = int240(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(240, value);
}
}
/**
* @dev Returns the downcasted int232 from int256, reverting on
* overflow (when the input is less than smallest int232 or
* greater than largest int232).
*
* Counterpart to Solidity's `int232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*/
function toInt232(int256 value) internal pure returns (int232 downcasted) {
downcasted = int232(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(232, value);
}
}
/**
* @dev Returns the downcasted int224 from int256, reverting on
* overflow (when the input is less than smallest int224 or
* greater than largest int224).
*
* Counterpart to Solidity's `int224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toInt224(int256 value) internal pure returns (int224 downcasted) {
downcasted = int224(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(224, value);
}
}
/**
* @dev Returns the downcasted int216 from int256, reverting on
* overflow (when the input is less than smallest int216 or
* greater than largest int216).
*
* Counterpart to Solidity's `int216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*/
function toInt216(int256 value) internal pure returns (int216 downcasted) {
downcasted = int216(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(216, value);
}
}
/**
* @dev Returns the downcasted int208 from int256, reverting on
* overflow (when the input is less than smallest int208 or
* greater than largest int208).
*
* Counterpart to Solidity's `int208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*/
function toInt208(int256 value) internal pure returns (int208 downcasted) {
downcasted = int208(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(208, value);
}
}
/**
* @dev Returns the downcasted int200 from int256, reverting on
* overflow (when the input is less than smallest int200 or
* greater than largest int200).
*
* Counterpart to Solidity's `int200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*/
function toInt200(int256 value) internal pure returns (int200 downcasted) {
downcasted = int200(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(200, value);
}
}
/**
* @dev Returns the downcasted int192 from int256, reverting on
* overflow (when the input is less than smallest int192 or
* greater than largest int192).
*
* Counterpart to Solidity's `int192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*/
function toInt192(int256 value) internal pure returns (int192 downcasted) {
downcasted = int192(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(192, value);
}
}
/**
* @dev Returns the downcasted int184 from int256, reverting on
* overflow (when the input is less than smallest int184 or
* greater than largest int184).
*
* Counterpart to Solidity's `int184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*/
function toInt184(int256 value) internal pure returns (int184 downcasted) {
downcasted = int184(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(184, value);
}
}
/**
* @dev Returns the downcasted int176 from int256, reverting on
* overflow (when the input is less than smallest int176 or
* greater than largest int176).
*
* Counterpart to Solidity's `int176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*/
function toInt176(int256 value) internal pure returns (int176 downcasted) {
downcasted = int176(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(176, value);
}
}
/**
* @dev Returns the downcasted int168 from int256, reverting on
* overflow (when the input is less than smallest int168 or
* greater than largest int168).
*
* Counterpart to Solidity's `int168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*/
function toInt168(int256 value) internal pure returns (int168 downcasted) {
downcasted = int168(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(168, value);
}
}
/**
* @dev Returns the downcasted int160 from int256, reverting on
* overflow (when the input is less than smallest int160 or
* greater than largest int160).
*
* Counterpart to Solidity's `int160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*/
function toInt160(int256 value) internal pure returns (int160 downcasted) {
downcasted = int160(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(160, value);
}
}
/**
* @dev Returns the downcasted int152 from int256, reverting on
* overflow (when the input is less than smallest int152 or
* greater than largest int152).
*
* Counterpart to Solidity's `int152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*/
function toInt152(int256 value) internal pure returns (int152 downcasted) {
downcasted = int152(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(152, value);
}
}
/**
* @dev Returns the downcasted int144 from int256, reverting on
* overflow (when the input is less than smallest int144 or
* greater than largest int144).
*
* Counterpart to Solidity's `int144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*/
function toInt144(int256 value) internal pure returns (int144 downcasted) {
downcasted = int144(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(144, value);
}
}
/**
* @dev Returns the downcasted int136 from int256, reverting on
* overflow (when the input is less than smallest int136 or
* greater than largest int136).
*
* Counterpart to Solidity's `int136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*/
function toInt136(int256 value) internal pure returns (int136 downcasted) {
downcasted = int136(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(136, value);
}
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toInt128(int256 value) internal pure returns (int128 downcasted) {
downcasted = int128(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(128, value);
}
}
/**
* @dev Returns the downcasted int120 from int256, reverting on
* overflow (when the input is less than smallest int120 or
* greater than largest int120).
*
* Counterpart to Solidity's `int120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*/
function toInt120(int256 value) internal pure returns (int120 downcasted) {
downcasted = int120(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(120, value);
}
}
/**
* @dev Returns the downcasted int112 from int256, reverting on
* overflow (when the input is less than smallest int112 or
* greater than largest int112).
*
* Counterpart to Solidity's `int112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*/
function toInt112(int256 value) internal pure returns (int112 downcasted) {
downcasted = int112(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(112, value);
}
}
/**
* @dev Returns the downcasted int104 from int256, reverting on
* overflow (when the input is less than smallest int104 or
* greater than largest int104).
*
* Counterpart to Solidity's `int104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*/
function toInt104(int256 value) internal pure returns (int104 downcasted) {
downcasted = int104(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(104, value);
}
}
/**
* @dev Returns the downcasted int96 from int256, reverting on
* overflow (when the input is less than smallest int96 or
* greater than largest int96).
*
* Counterpart to Solidity's `int96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toInt96(int256 value) internal pure returns (int96 downcasted) {
downcasted = int96(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(96, value);
}
}
/**
* @dev Returns the downcasted int88 from int256, reverting on
* overflow (when the input is less than smallest int88 or
* greater than largest int88).
*
* Counterpart to Solidity's `int88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*/
function toInt88(int256 value) internal pure returns (int88 downcasted) {
downcasted = int88(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(88, value);
}
}
/**
* @dev Returns the downcasted int80 from int256, reverting on
* overflow (when the input is less than smallest int80 or
* greater than largest int80).
*
* Counterpart to Solidity's `int80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*/
function toInt80(int256 value) internal pure returns (int80 downcasted) {
downcasted = int80(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(80, value);
}
}
/**
* @dev Returns the downcasted int72 from int256, reverting on
* overflow (when the input is less than smallest int72 or
* greater than largest int72).
*
* Counterpart to Solidity's `int72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*/
function toInt72(int256 value) internal pure returns (int72 downcasted) {
downcasted = int72(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(72, value);
}
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toInt64(int256 value) internal pure returns (int64 downcasted) {
downcasted = int64(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(64, value);
}
}
/**
* @dev Returns the downcasted int56 from int256, reverting on
* overflow (when the input is less than smallest int56 or
* greater than largest int56).
*
* Counterpart to Solidity's `int56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*/
function toInt56(int256 value) internal pure returns (int56 downcasted) {
downcasted = int56(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(56, value);
}
}
/**
* @dev Returns the downcasted int48 from int256, reverting on
* overflow (when the input is less than smallest int48 or
* greater than largest int48).
*
* Counterpart to Solidity's `int48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*/
function toInt48(int256 value) internal pure returns (int48 downcasted) {
downcasted = int48(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(48, value);
}
}
/**
* @dev Returns the downcasted int40 from int256, reverting on
* overflow (when the input is less than smallest int40 or
* greater than largest int40).
*
* Counterpart to Solidity's `int40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*/
function toInt40(int256 value) internal pure returns (int40 downcasted) {
downcasted = int40(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(40, value);
}
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toInt32(int256 value) internal pure returns (int32 downcasted) {
downcasted = int32(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(32, value);
}
}
/**
* @dev Returns the downcasted int24 from int256, reverting on
* overflow (when the input is less than smallest int24 or
* greater than largest int24).
*
* Counterpart to Solidity's `int24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*/
function toInt24(int256 value) internal pure returns (int24 downcasted) {
downcasted = int24(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(24, value);
}
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toInt16(int256 value) internal pure returns (int16 downcasted) {
downcasted = int16(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(16, value);
}
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*/
function toInt8(int256 value) internal pure returns (int8 downcasted) {
downcasted = int8(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(8, value);
}
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
if (value > uint256(type(int256).max)) {
revert SafeCastOverflowedUintToInt(value);
}
return int256(value);
}
/**
* @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.
*/
function toUint(bool b) internal pure returns (uint256 u) {
assembly ("memory-safe") {
u := iszero(iszero(b))
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)
pragma solidity ^0.8.20;
/**
* @dev Helper library for emitting standardized panic codes.
*
* ```solidity
* contract Example {
* using Panic for uint256;
*
* // Use any of the declared internal constants
* function foo() { Panic.GENERIC.panic(); }
*
* // Alternatively
* function foo() { Panic.panic(Panic.GENERIC); }
* }
* ```
*
* Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
*
* _Available since v5.1._
*/
// slither-disable-next-line unused-state
library Panic {
/// @dev generic / unspecified error
uint256 internal constant GENERIC = 0x00;
/// @dev used by the assert() builtin
uint256 internal constant ASSERT = 0x01;
/// @dev arithmetic underflow or overflow
uint256 internal constant UNDER_OVERFLOW = 0x11;
/// @dev division or modulo by zero
uint256 internal constant DIVISION_BY_ZERO = 0x12;
/// @dev enum conversion error
uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;
/// @dev invalid encoding in storage
uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;
/// @dev empty array pop
uint256 internal constant EMPTY_ARRAY_POP = 0x31;
/// @dev array out of bounds access
uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;
/// @dev resource error (too large allocation or too large array)
uint256 internal constant RESOURCE_ERROR = 0x41;
/// @dev calling invalid internal function
uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;
/// @dev Reverts with a panic code. Recommended to use with
/// the internal constants with predefined codes.
function panic(uint256 code) internal pure {
assembly ("memory-safe") {
mstore(0x00, 0x4e487b71)
mstore(0x20, code)
revert(0x1c, 0x24)
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (utils/SlotDerivation.sol)
// This file was procedurally generated from scripts/generate/templates/SlotDerivation.js.
pragma solidity ^0.8.20;
/**
* @dev Library for computing storage (and transient storage) locations from namespaces and deriving slots
* corresponding to standard patterns. The derivation method for array and mapping matches the storage layout used by
* the solidity language / compiler.
*
* See https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays[Solidity docs for mappings and dynamic arrays.].
*
* Example usage:
* ```solidity
* contract Example {
* // Add the library methods
* using StorageSlot for bytes32;
* using SlotDerivation for bytes32;
*
* // Declare a namespace
* string private constant _NAMESPACE = "<namespace>"; // eg. OpenZeppelin.Slot
*
* function setValueInNamespace(uint256 key, address newValue) internal {
* _NAMESPACE.erc7201Slot().deriveMapping(key).getAddressSlot().value = newValue;
* }
*
* function getValueInNamespace(uint256 key) internal view returns (address) {
* return _NAMESPACE.erc7201Slot().deriveMapping(key).getAddressSlot().value;
* }
* }
* ```
*
* TIP: Consider using this library along with {StorageSlot}.
*
* NOTE: This library provides a way to manipulate storage locations in a non-standard way. Tooling for checking
* upgrade safety will ignore the slots accessed through this library.
*
* _Available since v5.1._
*/
library SlotDerivation {
/**
* @dev Derive an ERC-7201 slot from a string (namespace).
*/
function erc7201Slot(string memory namespace) internal pure returns (bytes32 slot) {
assembly ("memory-safe") {
mstore(0x00, sub(keccak256(add(namespace, 0x20), mload(namespace)), 1))
slot := and(keccak256(0x00, 0x20), not(0xff))
}
}
/**
* @dev Add an offset to a slot to get the n-th element of a structure or an array.
*/
function offset(bytes32 slot, uint256 pos) internal pure returns (bytes32 result) {
unchecked {
return bytes32(uint256(slot) + pos);
}
}
/**
* @dev Derive the location of the first element in an array from the slot where the length is stored.
*/
function deriveArray(bytes32 slot) internal pure returns (bytes32 result) {
assembly ("memory-safe") {
mstore(0x00, slot)
result := keccak256(0x00, 0x20)
}
}
/**
* @dev Derive the location of a mapping element from the key.
*/
function deriveMapping(bytes32 slot, address key) internal pure returns (bytes32 result) {
assembly ("memory-safe") {
mstore(0x00, and(key, shr(96, not(0))))
mstore(0x20, slot)
result := keccak256(0x00, 0x40)
}
}
/**
* @dev Derive the location of a mapping element from the key.
*/
function deriveMapping(bytes32 slot, bool key) internal pure returns (bytes32 result) {
assembly ("memory-safe") {
mstore(0x00, iszero(iszero(key)))
mstore(0x20, slot)
result := keccak256(0x00, 0x40)
}
}
/**
* @dev Derive the location of a mapping element from the key.
*/
function deriveMapping(bytes32 slot, bytes32 key) internal pure returns (bytes32 result) {
assembly ("memory-safe") {
mstore(0x00, key)
mstore(0x20, slot)
result := keccak256(0x00, 0x40)
}
}
/**
* @dev Derive the location of a mapping element from the key.
*/
function deriveMapping(bytes32 slot, uint256 key) internal pure returns (bytes32 result) {
assembly ("memory-safe") {
mstore(0x00, key)
mstore(0x20, slot)
result := keccak256(0x00, 0x40)
}
}
/**
* @dev Derive the location of a mapping element from the key.
*/
function deriveMapping(bytes32 slot, int256 key) internal pure returns (bytes32 result) {
assembly ("memory-safe") {
mstore(0x00, key)
mstore(0x20, slot)
result := keccak256(0x00, 0x40)
}
}
/**
* @dev Derive the location of a mapping element from the key.
*/
function deriveMapping(bytes32 slot, string memory key) internal pure returns (bytes32 result) {
assembly ("memory-safe") {
let length := mload(key)
let begin := add(key, 0x20)
let end := add(begin, length)
let cache := mload(end)
mstore(end, slot)
result := keccak256(begin, add(length, 0x20))
mstore(end, cache)
}
}
/**
* @dev Derive the location of a mapping element from the key.
*/
function deriveMapping(bytes32 slot, bytes memory key) internal pure returns (bytes32 result) {
assembly ("memory-safe") {
let length := mload(key)
let begin := add(key, 0x20)
let end := add(begin, length)
let cache := mload(end)
mstore(end, slot)
result := keccak256(begin, add(length, 0x20))
mstore(end, cache)
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.20;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC-1967 implementation slot:
* ```solidity
* contract ERC1967 {
* // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(newImplementation.code.length > 0);
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* TIP: Consider using this library along with {SlotDerivation}.
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct Int256Slot {
int256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `Int256Slot` with member `value` located at `slot`.
*/
function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
assembly ("memory-safe") {
r.slot := store.slot
}
}
/**
* @dev Returns a `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
assembly ("memory-safe") {
r.slot := store.slot
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.20;
import {Arrays} from "../Arrays.sol";
import {Math} from "../math/Math.sol";
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
* - Set can be cleared (all elements removed) in O(n).
*
* ```solidity
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* The following types are supported:
*
* - `bytes32` (`Bytes32Set`) since v3.3.0
* - `address` (`AddressSet`) since v3.3.0
* - `uint256` (`UintSet`) since v3.3.0
* - `string` (`StringSet`) since v5.4.0
* - `bytes` (`BytesSet`) since v5.4.0
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position is the index of the value in the `values` array plus 1.
// Position 0 is used to mean a value is not in the set.
mapping(bytes32 value => uint256) _positions;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._positions[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We cache the value's position to prevent multiple reads from the same storage slot
uint256 position = set._positions[value];
if (position != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 valueIndex = position - 1;
uint256 lastIndex = set._values.length - 1;
if (valueIndex != lastIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the lastValue to the index where the value to delete is
set._values[valueIndex] = lastValue;
// Update the tracked position of the lastValue (that was just moved)
set._positions[lastValue] = position;
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the tracked position for the deleted slot
delete set._positions[value];
return true;
} else {
return false;
}
}
/**
* @dev Removes all the values from a set. O(n).
*
* WARNING: This function has an unbounded cost that scales with set size. Developers should keep in mind that
* using it may render the function uncallable if the set grows to the point where clearing it consumes too much
* gas to fit in a block.
*/
function _clear(Set storage set) private {
uint256 len = _length(set);
for (uint256 i = 0; i < len; ++i) {
delete set._positions[set._values[i]];
}
Arrays.unsafeSetLength(set._values, 0);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._positions[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
/**
* @dev Return a slice of the set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set, uint256 start, uint256 end) private view returns (bytes32[] memory) {
unchecked {
end = Math.min(end, _length(set));
start = Math.min(start, end);
uint256 len = end - start;
bytes32[] memory result = new bytes32[](len);
for (uint256 i = 0; i < len; ++i) {
result[i] = Arrays.unsafeAccess(set._values, start + i).value;
}
return result;
}
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Removes all the values from a set. O(n).
*
* WARNING: Developers should keep in mind that this function has an unbounded cost and using it may render the
* function uncallable if the set grows to the point where clearing it consumes too much gas to fit in a block.
*/
function clear(Bytes32Set storage set) internal {
_clear(set._inner);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
assembly ("memory-safe") {
result := store
}
return result;
}
/**
* @dev Return a slice of the set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set, uint256 start, uint256 end) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner, start, end);
bytes32[] memory result;
assembly ("memory-safe") {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes all the values from a set. O(n).
*
* WARNING: Developers should keep in mind that this function has an unbounded cost and using it may render the
* function uncallable if the set grows to the point where clearing it consumes too much gas to fit in a block.
*/
function clear(AddressSet storage set) internal {
_clear(set._inner);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
assembly ("memory-safe") {
result := store
}
return result;
}
/**
* @dev Return a slice of the set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set, uint256 start, uint256 end) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner, start, end);
address[] memory result;
assembly ("memory-safe") {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Removes all the values from a set. O(n).
*
* WARNING: Developers should keep in mind that this function has an unbounded cost and using it may render the
* function uncallable if the set grows to the point where clearing it consumes too much gas to fit in a block.
*/
function clear(UintSet storage set) internal {
_clear(set._inner);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
assembly ("memory-safe") {
result := store
}
return result;
}
/**
* @dev Return a slice of the set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set, uint256 start, uint256 end) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner, start, end);
uint256[] memory result;
assembly ("memory-safe") {
result := store
}
return result;
}
struct StringSet {
// Storage of set values
string[] _values;
// Position is the index of the value in the `values` array plus 1.
// Position 0 is used to mean a value is not in the set.
mapping(string value => uint256) _positions;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(StringSet storage set, string memory value) internal returns (bool) {
if (!contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._positions[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(StringSet storage set, string memory value) internal returns (bool) {
// We cache the value's position to prevent multiple reads from the same storage slot
uint256 position = set._positions[value];
if (position != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 valueIndex = position - 1;
uint256 lastIndex = set._values.length - 1;
if (valueIndex != lastIndex) {
string memory lastValue = set._values[lastIndex];
// Move the lastValue to the index where the value to delete is
set._values[valueIndex] = lastValue;
// Update the tracked position of the lastValue (that was just moved)
set._positions[lastValue] = position;
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the tracked position for the deleted slot
delete set._positions[value];
return true;
} else {
return false;
}
}
/**
* @dev Removes all the values from a set. O(n).
*
* WARNING: Developers should keep in mind that this function has an unbounded cost and using it may render the
* function uncallable if the set grows to the point where clearing it consumes too much gas to fit in a block.
*/
function clear(StringSet storage set) internal {
uint256 len = length(set);
for (uint256 i = 0; i < len; ++i) {
delete set._positions[set._values[i]];
}
Arrays.unsafeSetLength(set._values, 0);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(StringSet storage set, string memory value) internal view returns (bool) {
return set._positions[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(StringSet storage set) internal view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(StringSet storage set, uint256 index) internal view returns (string memory) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(StringSet storage set) internal view returns (string[] memory) {
return set._values;
}
/**
* @dev Return a slice of the set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(StringSet storage set, uint256 start, uint256 end) internal view returns (string[] memory) {
unchecked {
end = Math.min(end, length(set));
start = Math.min(start, end);
uint256 len = end - start;
string[] memory result = new string[](len);
for (uint256 i = 0; i < len; ++i) {
result[i] = Arrays.unsafeAccess(set._values, start + i).value;
}
return result;
}
}
struct BytesSet {
// Storage of set values
bytes[] _values;
// Position is the index of the value in the `values` array plus 1.
// Position 0 is used to mean a value is not in the set.
mapping(bytes value => uint256) _positions;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(BytesSet storage set, bytes memory value) internal returns (bool) {
if (!contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._positions[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(BytesSet storage set, bytes memory value) internal returns (bool) {
// We cache the value's position to prevent multiple reads from the same storage slot
uint256 position = set._positions[value];
if (position != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 valueIndex = position - 1;
uint256 lastIndex = set._values.length - 1;
if (valueIndex != lastIndex) {
bytes memory lastValue = set._values[lastIndex];
// Move the lastValue to the index where the value to delete is
set._values[valueIndex] = lastValue;
// Update the tracked position of the lastValue (that was just moved)
set._positions[lastValue] = position;
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the tracked position for the deleted slot
delete set._positions[value];
return true;
} else {
return false;
}
}
/**
* @dev Removes all the values from a set. O(n).
*
* WARNING: Developers should keep in mind that this function has an unbounded cost and using it may render the
* function uncallable if the set grows to the point where clearing it consumes too much gas to fit in a block.
*/
function clear(BytesSet storage set) internal {
uint256 len = length(set);
for (uint256 i = 0; i < len; ++i) {
delete set._positions[set._values[i]];
}
Arrays.unsafeSetLength(set._values, 0);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(BytesSet storage set, bytes memory value) internal view returns (bool) {
return set._positions[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(BytesSet storage set) internal view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(BytesSet storage set, uint256 index) internal view returns (bytes memory) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(BytesSet storage set) internal view returns (bytes[] memory) {
return set._values;
}
/**
* @dev Return a slice of the set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(BytesSet storage set, uint256 start, uint256 end) internal view returns (bytes[] memory) {
unchecked {
end = Math.min(end, length(set));
start = Math.min(start, end);
uint256 len = end - start;
bytes[] memory result = new bytes[](len);
for (uint256 i = 0; i < len; ++i) {
result[i] = Arrays.unsafeAccess(set._values, start + i).value;
}
return result;
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
library console {
address constant CONSOLE_ADDRESS =
0x000000000000000000636F6e736F6c652e6c6f67;
function _sendLogPayloadImplementation(bytes memory payload) internal view {
address consoleAddress = CONSOLE_ADDRESS;
/// @solidity memory-safe-assembly
assembly {
pop(
staticcall(
gas(),
consoleAddress,
add(payload, 32),
mload(payload),
0,
0
)
)
}
}
function _castToPure(
function(bytes memory) internal view fnIn
) internal pure returns (function(bytes memory) pure fnOut) {
assembly {
fnOut := fnIn
}
}
function _sendLogPayload(bytes memory payload) internal pure {
_castToPure(_sendLogPayloadImplementation)(payload);
}
function log() internal pure {
_sendLogPayload(abi.encodeWithSignature("log()"));
}
function logInt(int256 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));
}
function logUint(uint256 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
}
function logString(string memory p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function logBool(bool p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function logAddress(address p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function logBytes(bytes memory p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
}
function logBytes1(bytes1 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
}
function logBytes2(bytes2 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
}
function logBytes3(bytes3 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
}
function logBytes4(bytes4 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
}
function logBytes5(bytes5 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
}
function logBytes6(bytes6 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
}
function logBytes7(bytes7 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
}
function logBytes8(bytes8 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
}
function logBytes9(bytes9 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
}
function logBytes10(bytes10 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
}
function logBytes11(bytes11 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
}
function logBytes12(bytes12 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
}
function logBytes13(bytes13 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
}
function logBytes14(bytes14 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
}
function logBytes15(bytes15 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
}
function logBytes16(bytes16 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
}
function logBytes17(bytes17 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
}
function logBytes18(bytes18 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
}
function logBytes19(bytes19 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
}
function logBytes20(bytes20 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
}
function logBytes21(bytes21 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
}
function logBytes22(bytes22 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
}
function logBytes23(bytes23 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
}
function logBytes24(bytes24 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
}
function logBytes25(bytes25 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
}
function logBytes26(bytes26 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
}
function logBytes27(bytes27 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
}
function logBytes28(bytes28 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
}
function logBytes29(bytes29 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
}
function logBytes30(bytes30 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
}
function logBytes31(bytes31 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
}
function logBytes32(bytes32 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
}
function log(uint256 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
}
function log(string memory p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function log(bool p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function log(address p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function log(uint256 p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1));
}
function log(uint256 p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1));
}
function log(uint256 p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1));
}
function log(uint256 p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1));
}
function log(string memory p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1));
}
function log(string memory p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
}
function log(string memory p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
}
function log(string memory p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
}
function log(bool p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1));
}
function log(bool p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
}
function log(bool p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
}
function log(bool p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
}
function log(address p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1));
}
function log(address p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
}
function log(address p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
}
function log(address p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
}
function log(uint256 p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2));
}
function log(uint256 p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2));
}
function log(uint256 p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2));
}
function log(uint256 p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2));
}
function log(uint256 p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2));
}
function log(uint256 p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2));
}
function log(uint256 p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2));
}
function log(uint256 p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2));
}
function log(uint256 p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2));
}
function log(string memory p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2));
}
function log(string memory p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
}
function log(string memory p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
}
function log(string memory p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
}
function log(string memory p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2));
}
function log(string memory p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
}
function log(string memory p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
}
function log(string memory p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
}
function log(string memory p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2));
}
function log(string memory p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
}
function log(string memory p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
}
function log(string memory p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
}
function log(bool p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2));
}
function log(bool p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2));
}
function log(bool p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2));
}
function log(bool p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2));
}
function log(bool p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2));
}
function log(bool p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
}
function log(bool p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
}
function log(bool p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
}
function log(bool p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2));
}
function log(bool p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
}
function log(bool p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
}
function log(bool p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
}
function log(bool p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2));
}
function log(bool p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
}
function log(bool p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
}
function log(bool p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
}
function log(address p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2));
}
function log(address p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2));
}
function log(address p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2));
}
function log(address p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2));
}
function log(address p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2));
}
function log(address p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
}
function log(address p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
}
function log(address p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
}
function log(address p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2));
}
function log(address p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
}
function log(address p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
}
function log(address p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
}
function log(address p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2));
}
function log(address p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
}
function log(address p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
}
function log(address p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRCqiS9���iS9���������$��!�s%:����*�dPX.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.soliS'�iS'����>��x?*�����)�Xё'�i�R.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/ERC721.soliU)�i@iU)�i@���At� 4C��w�&����qq���S.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721.soliW�e�iW�e�����a���l%�-��V��ے�~[.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721Receiver.soliU���iU����������g^����)�����j�f.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/extensions/IERC721Metadata.soliU��@iU��@����*�{�x
�@��V�.D7�p].deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/utils/ERC721Utils.soliV��iV�����,P���G���1�k2��@��J.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Bytes.soliT0f#iT0f#����NS_�<$?�Eh��C �]��GL.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.soliW,��iW,�������h�M4�� �3�4��O�H�J.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Panic.soliT!`�iT!`����M�/�(mn��G���rE�j0��� L.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Strings.soliT߀iT߀���o�LŦt���I����<[h��VY.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/introspection/ERC165.soliU;N~�iU;N~����g�2�g�ǔ��Jk�2,m' Z.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/introspection/IERC165.soliW�
�iW�
����~�J��dN.j x|�6%��rKN.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/math/Math.soliV4�@�iV4�@������E���J��[���t�,�R.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/math/SafeCast.soliV%�@iV%�@���
5|��L"�egj�Ɣ�Þ6>��T.deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/math/SignedMath.soli w)?i w)?`�� ���f���Ԕ�#�{�K��4.deps/npm/@openzeppelin/contracts/access/Ownable.soli �Аi �Аu������j� ���m6��U�?.deps/npm/@openzeppelin/contracts/interfaces/draft-IERC6093.soli �)�i@i �)�i@p��*.�o��R���Ĕ�jT��b 7.deps/npm/@openzeppelin/contracts/token/ERC20/ERC20.soli ��@i ��@x��
ݴ�t:���M�L����c���8.deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.soli �e��i �e��w�������K�J��tU���{�8K.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.soli �� �i �� �s��Q�QT��|�z��sA+�oA�L2.deps/npm/@openzeppelin/contracts/utils/Arrays.soli �'���i �'���}������=��'\�YUo7XF�2f�7.deps/npm/@openzeppelin/contracts/utils/Comparators.soli �4ދ�i �4ދ�c���NS_�<$?�Eh��C �]��G3.deps/npm/@openzeppelin/contracts/utils/Context.soli �-��@i �-��@z����h�M4�� �3�4��O�H�1.deps/npm/@openzeppelin/contracts/utils/Panic.soli �;�@i �;�@|����#�[F�7��(�� �:.deps/npm/@openzeppelin/contracts/utils/SlotDerivation.soli �xh�i �xh�{��V��RJ,��xθ9N_<Z��7.deps/npm/@openzeppelin/contracts/utils/StorageSlot.soli �,��i �,��r��}����ޠ)^�U�0fYY5.deps/npm/@openzeppelin/contracts/utils/math/Math.soli ��2@i ��2@y����E���J��[���t�,�9.deps/npm/@openzeppelin/contracts/utils/math/SafeCast.soli �'���i �'���m��s���B�}��g���޹�eX bA.deps/npm/@openzeppelin/contracts/utils/structs/EnumerableSet.soli�Ƅ�i�Ƅ�%�� ��p�?�dK���o�<�GG4�a�.deps/npm/hardhat/console.soli�/�A@i�/�A@ �����o#q{K���Sc��X�W�n.prettierrc.jsoni�/q�i�/q���m���8JD� �wP?���M�
README.txti ���@i ���@f��ܱS,�C��_ �4�AsP�!artifacts/AddressBookFactory.jsoni ����i ����e��)����������0�~�S�*artifacts/AddressBookFactory_metadata.jsoni�*��i�*��:��|�n��x�>��k��8��n�artifacts/ArraysExercise.jsoni���i���9������R�J��1o��b f+&artifacts/ArraysExercise_metadata.jsoni�N/�i�N/�.������.U�� ���ze�қjW�artifacts/BasicMath.jsoni�/�@i�/�@-��H��Nt�)[� {'��$�"��!artifacts/BasicMath_metadata.jsoni�0��i�0��2��8�b[�f����2�e� 1�ö artifacts/ControlStructures.jsoni�/͌�i�/͌�1���rN�kq�/ש�e��M�E�)artifacts/ControlStructures_metadata.jsoni
(0���i
(0���L��>À�B�}0�~G�I��;Lartifacts/Employee.jsoni>� @i>� @6���q�S�-t?����>�uݝ�'artifacts/EmployeeStorage.jsoni>Ƅ�i>Ƅ�5�� ���Oξ��MH�h~d���'artifacts/EmployeeStorage_metadata.jsoni
(0���i
(0���E��R'ƶcF���������VӐ� artifacts/Employee_metadata.jsoni
(1 ��i
(1 ��M�����zs�(�3���/�L�UY�!artifacts/EngineeringManager.jsoni
(0���i
(0���F����Б+��>��g�9H���~sY*artifacts/EngineeringManager_metadata.jsoni 2��@i 2��@[��k$�ذ�)�A�s��(�F"artifacts/ErrorTriageExercise.jsoni 2|1�i 2|1�Z��yL:6B�v� }���p `!+artifacts/ErrorTriageExercise_metadata.jsoni ?��@i ?��@>��U^Kk�KkO�N�L(�X��V���artifacts/FavoriteRecords.jsoni ?�8�i ?�8�=�� a�������/� CW�m��q�z'artifacts/FavoriteRecords_metadata.jsoni ��@i ��@B��G2��Oݢ��e$P����M!artifacts/GarageManager.jsoni �Аi �АA���k�_v��~
}����V��!%artifacts/GarageManager_metadata.jsonikˀ�ikˀ���� ��}�L�ȼe35��P�!߇�tartifacts/HaikuNFT.jsonik�w�ik�w����]��B|�������~3\�?�a artifacts/HaikuNFT_metadata.jsoni
(1,�@i
(1,�@N���
�4��D�Q���W��
�2�artifacts/Hourly.jsoni
(0�n@i
(0�n@G�� �]��?��"�f�ϰ���Hartifacts/Hourly_metadata.jsoni`,��@i`,��@���
i� n�����b�ATM��!�artifacts/ISubmission.jsonik��ik����� m�keK۸�2�(T�Djl���~#artifacts/ISubmission_metadata.jsoni �6�i �6�W��=��'d�ؚ܊bMڔ�Z_�1Sartifacts/ImportsExercise.jsoni �6v�i �6v�V�� Z�6�գx��eۮ 7%Gnx��'artifacts/ImportsExercise_metadata.jsoni
(1;€i
(1;€O����r��w�ږHP�q������$artifacts/InheritanceSubmission.jsoni
(0���i
(0���H��1ݧ�b�z1�PxaL�L�-artifacts/InheritanceSubmission_metadata.jsoni
(1K�i
(1K�P��}�UW�:IF����Cd$c4���artifacts/Manager.jsoni
(0���i
(0���I��uk#V��{����ȷ*WF� ��artifacts/Manager_metadata.jsoni�9��@i�9��@*���c.��6��o֣J�N|Ɲ�artifacts/Owner.jsoni�9�?�i�9�?�)�� �iSL˥Q���n3GQ#Χ��artifacts/Owner_metadata.jsoni
(1ZGi
(1ZGQ���i�$$���7��W ���)�?artifacts/Salaried.jsoni
(0���i
(0���J��
�$����ח�.@�_�� ^ artifacts/Salaried_metadata.jsoni
(1� �i
(1� �R���os�C�v#ˆ�jګ��7乃artifacts/Salesperson.jsoni
(0�5i
(0�5K�� D�<*�Jcᢛ�T�n��B�#artifacts/Salesperson_metadata.jsoni d.n��i d.n��j������-6�-�}�X9�Zy��artifacts/UnburnableToken.jsoni d.P@i d.P@i�� ���� �K�g�K/d6y���'artifacts/UnburnableToken_metadata.jsoni �6z��i �6z����� �:/%\&�/;���BuK����artifacts/WeightedVoting.jsoni �6=�i �6=���I]�_4���uG^�&��!&artifacts/WeightedVoting_metadata.jsoni ?&�i ?&�<������P��k�*���9����F|:artifacts/build-info/016e0167270807b2fda3a2402b154e1f.jsoni>�{�i>�{�4�� ю�l��|��ň�x9 N�ը2�:artifacts/build-info/0adb1bce7f782711d82c64d176e1d4e0.jsoni �
2�i �
2�@��
�\0|﷾�R�F���1��&b�d:artifacts/build-info/0d4c4e0edc6c86284d456dd55ea291ce.jsonikxh�ikxh����aP)�<�*���/:�6���V1�:artifacts/build-info/2173bee4aa94323b8acf5d62b03469ac.jsoni��i��,���T�g0h�|�TԽ�ȍ�a{:artifacts/build-info/496626d545cc8e8e3d267591278306e9.jsoni�8bЀi�8bЀ(��?��TX[�)���!���e��8t:artifacts/build-info/5107720255a676e7dc6919607d3929d8.jsoni�/�i�/�0��k2Do9��*3���e+�ȩ�E�:artifacts/build-info/738097134d8855c4e839b879430c26e2.jsoni d-��i d-��h���2�Cٜצ ��%N��W�f�]�:artifacts/build-info/802f9b532edcd5221c21f0a8847fe940.jsoni 2/�i 2/�Y���Z��8��� 9=���~��l:artifacts/build-info/c03e49caf6fbb73ba196c967ae8197e9.jsoni
(0G��i
(0G��D�� ��YZI�/f�wΗ��{A��?p:artifacts/build-info/c4a34d30d7a37149f241c9d13c25f62e.jsoni����i����8�� t�fV�N�Q���C-k01��%�:artifacts/build-info/c64f19ff443132558e40134d8f751fd3.jsoni ��i ��d��1O ��V�KjAe(���A�*Ȓ^:artifacts/build-info/cb01930b3e561d76ff582f83fea54506.jsoni �4�I�i �4�I�~��Rכ� ��')�M����5�L�%:artifacts/build-info/dbd4cbfaa4949f689a411c9556d11608.jsoni �5�+@i �5�+@U�� ,)ɠ��#ޚTl�vTkNɩM�Q�:artifacts/build-info/f10b807e93c9c0ec62c2b9e74dd4ee2e.jsoni�-�;�i�-�;���+��^x;n��G�g�f6�contracts/1_Storage.soli�.�_�i�.�_���tz����¬����a�\i�contracts/2_Owner.soli�.��i�.����HV��Qh��s��#(F��rcontracts/3_Ballot.soli w2]�@i w2]�@\�� [)D�kOE�Jr!����ڎ���contracts/AddressBook.soli��i��7�� �B`y|�MCkķR�|�68m�contracts/Arrays.soli� �(@i� �(@+��J���dž��x�o�9)�On�contracts/BasicMath.soli�J�i�J�/��x�'�#��֖m���(����r� contracts/Control Structures.soli �4�@i �4�@k��@2�X�#�Z;Ҵ��8�jcontracts/ERC20.soliS/���iS/�������Տٜ���(�JCY�)�ůJcontracts/ERC721.soli �;]�i �;]�X�� u[�2�k#�~����˿�g��contracts/Errors.soli F5w"@i F5w"@S�����
��4��͋J-�i�ӯ�9contracts/Imports.soli
"���i
"���C��F��y^xCt4E���%c�� contracts/Inheritance.soli 0��@i 0��@;�� �����<��y:�NJ���y���contracts/Mapping.soli _ ճ@i _ ճ@g�������CX�6�v�_����contracts/Minimal Token.soli �`Āi �`Āa���߽�E:/����Jĩx��contracts/Other Contracts.soli �6��i �6��T��Dw=8�:�w�z�w�:̍�contracts/SillyStringUtils.soli0���i0���3��iY���.�}�u ���X��contracts/Storage.soli �ˀ�i �ˀ�?��
��]b~3%"�˻�S%��w�R�contracts/Structs.soli�/���i�/���!��T�D@�I�g�B� o9 ¡�j �remix.config.jsoni�.��i�.�����Q=Imv8�n{s9'/�:pSB�6scripts/deploy_with_ethers.tsi�//@i�//@���ܠ��ݾ?87G�k�)P�.�scripts/deploy_with_web3.tsi�/q�i�/q�������޶�Z��͂���WZscripts/ethers-lib.tsi�/4�i�/4������e�N��;&��P�]��scripts/web3-lib.tsi�/b��i�/b�����In��ˠ/�ds�9���5��[tests/Ballot_test.soli�/q�i�/q�����7�Ûv�%��1���$�s��tests/storage.test.js�FԼz����jz���e

x�+)JMU0�4f040031Qp r672�+��a�Ra/������#��".NTݐ� U剤�d������3�Z�͜WX�� TeA�ɩ�e�E`���Q]��{s��L�#�'�ԙ(�V���g��3��"kb����I��gm�\�,��E�%�9� G����3���Ƣ8%ݐ��R�L�
x�+)JMU0�4g01000P�KI-(f8�3����S���R�'��ەfC3���Ԓ��Ԣ�d����<�MK� ��g��^ N^�7�X��<�� WG_W����� �-��\�(<-���f�u�]�J2��K��'͞`��rՓU&F�����%=��I��+)� ���!d_��_�M\5�j)�Q�Զ����
������t����8�y�Koq:Νo�ph�,�;���2 J������MbSa�6+㬒��T��:�����b�WW�����qt~:�i��K� �}��:
x�+)JMU07a01000Pp�/HͫJ-(H���c�>����K~���q���`ɥ�� �2�R2KdK&� m�]P{Ey�g.�KO�t�$^
x��VM��6�U�O-�زl�Z߂ �l�l��H��bH�lv)R�o��=�,Y�7A�=4'��|�y�8� #Y1)��8H(7U-Z� IB7h�4�.M��p<�����~X�r��yI���AB�U�F�WFI!��� ||�� �n�$I��$T�:x�v�ͅG�A-wu5H��|�� 4T�şR\�����������ѿNQ���+��X�`��w���I����u<��T�����v�T���� ����}Ћ.vn����ԥq���o�W��+�Hܞ�X�}T�?(���Tug/䛪��i�O���T�F���׃T=�4�[��X�-:�^�q���hj�d�6,�� { �i��"�iO*�k#\�)9���9�΀xC��^��wH�ɫ=�&��:옣5X��dIr2��.��B&<S6Q����!���u Z�H����-)#�/x�iݏ�ڤ� 1�{�i>�v��vğ����<��n�Z)�5O\H'��-Ń�<D;h��V 
�N �'΅*bR�{Y!�{� �XZ�i��H���l� �>X}ڡ�����Ɯ�ѿT�W��WF��~�Z{�c�w���%{��@����Ƿ�Ӯ1�]�]�?$��FWz�Vz��Ψs����^�[�2Z�UQ%�+����|l������I\���mj/+ywط�:~�#%(���mh������bu��������/�r���mlq�����|6�4�%�9�� � Q�ƜO�|�.D:�l³2�aa��9â�猵mS��v�^\-��`U?�)��{la��Ĥ�8�(c�i�� L3(3Q�E9g�"+gE)ϧ�,�I>�B�i���n̊-��(�;zY������Yx~�ׯ���m� �ӷoؒ}�����Z?�_�*����F�7Gj:���'r��
x��}�ܶr/��k�)��*����Ie��J|#[�e�&yNj�3Ñ�z5�����r���V��D�Aή|�=u�]����t7 `u�_-����_�l����??K�������m��������~�>�f�l�Ύ�����E�p�_�ronWϒ���}��W������.�A���)�%|*���l�9q~�����&�|�g���DN��|8���A�68�6�)-~��������>�֧���*[=|�����g�p�+A|�ճlw:|~��ݝ�%����������Y����>=��Svx�?��|s�N�]��<�Y��Yz8��o�����ts�9���7����~�\t0�[d4��8!!�.�}8�\��1��?|��?\�PBf�d}������h���l����$9�'����!����t�p�;1�\U�H�A"���C���ݜ�x��E��c*����_�é��i�!���-���g��M�9N�J4���#�ysJ�z��Fth/�mn��d7��7�ݬ��;�VjfYe�N�t}j�+�Nf�% �lss�N7)���T*��������$��6bĨv�M���M�;ݞ�5r=�F/y|L���c�f�y�~�];��rfn�����&;���9��#j��s횅SmQ:����|���Cf�}6����W���Bgߞ��i:s��un?�|�y�o?��`�#s�R=à?�o�+;xM����p�IOY�f�w�묔���c�t7�bD�"�5�{�F�T�G8^��i�����ps���=��Ј����p���y�!�e���m��������J�㩦�g��t�k����I$�4��^V������`����ݫ�������U�xJO��lw��I�V�M�hؔ(��@��AV'�E�EC%��ql*.����ݱ�t�6��,��Fd�Μԏ������I�٥��cͷ������Bj�������Vs��r�;�T||�ۧ�n�m6t����E�D��z�[��n��jD�������]��c���n�8ܦ�� �e���
��W|Q��9�W�����?�F_ԏ,W Π[e�l%q�b��.W��vw �5?�TmG�MI� �6-"�zh��uc�B뫣�TnH��jc��᧢���t�6C2���8�0o���.�׽g�A�`$ 4)xiO��}�?d�#��I���� �vW��n�+��z��7���v�U�sNՈ֛Ҹ=#];�rVI�h�@<r)�*�<� Id���TG�S-i���T�"&$Қ���:�W,&1�ZFZj��bW�̭�2PI�1 %��i�Z�a[+���Qu���j��/�;��a������b����1�Z��(�p����{�y����L^^ �?����\!�e��ࡌ��� �H�3�]8On���� e��Pf���c(2X ��i(@#�rD��%��PF��H��sR+�R��k2az�M��p�&�v��_�l� >�2t�<�2�B�3�q�w��p��ѫ%��^���v*$_��W�W���4I@�f�!��y�َ|ɉ��"��ʂ�y�r �?���<.R��;�񪃇2V�7��<� 'Γx�� \8q��َ�3.J�CY������2Zu�PF���0���X�3۩�&�v$� Sq�l/�0 ��!c��2cʀI���FR�^��#e��:��J�b�8��,N����~�)�L�j��W�Pb���
�Gm�//�,��j���W+3��b�ɋT�'n��U��KiG�6���W�(��R/%�9Ջ��9�zq�x����(����+E�<��W/Pb�R!y�ղ8�ݾ�K���n����> �pt�؏g>Ms�����@d{\v�H�H�3�]�vq@8}/\��F���DI]NX�:'�+�%B���B8���c��l���š��``@�" ���uڢލ�T��9o�E��>� d@��Y[.Q�iڱ�Z ���~`��M�z��ۡ��u>��p���7<zl���0+$Ҁt�����u�e�(���M>w��1�X]yAd�4A~Z�u7��[0<6ӪO 4“a*av�!�L���i:U�D[&�bz���ҳy �T�v����(��'�m��I��'��PD:�����ZS������~d�������󔊇f��:��B�:�Ӎu$е��q �>t �:�]-G[Ca��]�Z�9�z�F�F7.��'V��ou[�c�jF��?��F��F�X�� 7�*�& �8���d����D4„����wb��7 qb*$_'&�"�V��:1U�S�޿&�>��qsEO���)�c�v�Y��NЉ����0�'ݒ���=i��Miu;����.���̷��.��!+�: �& �\:PK ��|�j�m A{���8m�gYb–;l�"�'d㲰�:B�O���yVQ�8���q�R�=t%6h�=A�b/�N�3-��@�^�@\����%����W������S��ƪc� +��=W� {Γ����/Yf�C�_�����l�N�clzUF�Tϡ2J �%�PH�ʨ���G��:��Py�����6]�!Ma�Lk:�5�b$�L����p�����N#izc�2�;vy�\�B�lj�� QBi�-_n��u��`�CC��aQ6��>���W���~q��+%\�|��z��G_� �W`�%>- ��Vh����|��^%���>_� ���iҊ)a�� �G*$��a�1�Ca*��}�Cv|��?K2��:%��~�}��˓�e��������b-&��"�ѕC�K��XL l�c������r�ĉ��Z:ȗ�4N���6ڗs�̘6��=�Lh$9$�Xa���c��p&�L'�VXg0�ǟ-�m ��dK��М>8K�X 5�9�e� ��p�H��d�4�AD�wYDJ�J(��&Z�K����8�C`���C����V c�� �h��.n�=b��l�c�x�oN��LȄw3�� 9^<Ȓ3ء8�W�{#� oF�nt�+��b�P�Zk&KY��4���L�s��cz�ϲF�0��h�mq�w�̳�QCy���@��w�бϢ���8'�|�:��y�Īq�*rή�<��L�A���:�"�&
����H^+�ۉ?������4!�k���ܠLl�? QnԬ� .�!AO���\@��k�FȆ�ѱ�S(3!�lʬ���J�O�ovG�$�d�ΐ�H�����`�\����X� ��B�b��<˸ ��� �t&IHs+�}lMg�+�oO��3��w���b)���Z� J�����_�u��q�{��yDE��R��]�u>Z��b>�o�D;�B< �
�f���Hc��V >o�K�P��oT� �q�k�*������z�����[:r�B��D�Φ���ͤ�Cƣ�l2Z�Y
�*3��H2��)��h{��\�lqTWڞm��bt>�S�����m5��h&^��,�F(b;�AƧ����x%$�V��/����>_#���׾k�[��V��Ⱦ��$ʈ����B���:��Sn/@�%���|]����ҊB<e
e|��fb��q=��wa�NJ�_���Z<������N�f`�3�v��v6��\X��n]�wY�ˆ�� ����R"�l^ ���ٝFE*ݽ)�)m���T��B�Q�a}��a��:�H�P��
�j��N��`}���w��'�E��"��T��� ���+ ��'V"ͬ�nMͧ�n�$Mԣ�U3�┚z:qV��ןSQ<q�)1Z�U-=M�EQ��`w-��"!��՛� vh�����<E���m��Oǜ]��Ĵ���PFQ�8J��ws��\��e���G�Gf#�0�pg���mrؙ#��%q�G5�
{�h��žP�Ϸ۴�k0K�s�KwY#��NG��:z�6(#�٘YA��;�nlp�
��3K*�������sܜ�>W8`�v�H~J�.����H'�8���C]��݁��A�v�����ŔM��������aW����0�'�1��<~�#�ɏ4y��3y-�fV~���>=d怡�G�i%�H~1JO�z��C!�n.=u.�B�VwUKO�v��z�,��;G�}�g�<o�{;� o�ԛ�x�m�t�-�$�TX���}-�G������%��̒�\Cyأw�'��XcA��_��=�F�o��\��Vk�wHZkG@��ɺ!c��ꌩ��>fp  &��a�mU��7�Ƕ�w��$�b�� gU��'��,S�>�%�3�UCv?�z��n�� �u;W��+��� "~�(R�(�� C&v\7t�13<Ep��v�X�5�%d�8R*3���ꊝ��~�z���v͠Hq ��b Tl��>�x��k�38�G���%� `a�h�4��"� F||�����>�w�������7��il(7p�_�XQ ���O=o��El|w*A�{ �Q�C��Ա�]r��;7�\ bt|��t廰 �����_AK�W�Fvnj�&;P1��,,�"����+ԡ �s+\7#<N�وr��s�ԶRͿ���p�l����������䡮c4��lC�;h˘��!�T*(�X�R�f�N�f�U�R��i�x"S����<��m�G���Q�ѽ�A����k�2� �����&�ׂF�C�N�_H>>���}�:�b��:K��{��[%�`<�F0K�&���0���8��7l.�2 ����{TP#��Q�̐+���Sy������ݢ-�� ��tW�C֚�R&Č#Wv�t�P��L���<!F!F;�u+N�%��{�xqOo�&ΦOQl!~��&�. '��U��_yh �=�’���3;��p/�O�x;���B �
~,�oj���s�Pϭ�����2��2ZG�-`�O�.�U��O�&GHA�$ƙ�.)V��ǂ����f؃�����(���Mn)�q�Q��U�
_��=K�@g9CNt�R��F-v��<��� L*6�9*����s�o ���J)��z�?����;�!k/��pw��wa���]���\d�
���s�ၪ��.d�f�.J�G�.$>�w���]`���]��Zb�v�0.?���A@A�u���Qz��0��P���o���,1w���=��������t�1�V�}d-��x=�ВC�:������c;��� �Z=Z���i���|�"$V�u�����@9�T bt��n��]X�$�t0���1P�,|x�w�:A&8O�a�Y�\�kR�F=�e�n�pA��ΠB����J�s{ޗӻ8�=l~ �~���g��^[�=��
����c��/Y�!g�{N�sɳŚ_���@�C-�"�g��'�9�CO�Y���!�` Q �γ��Ѭ�����n�}ˆ�؏! ��-@ T��Wv�<�5�6�h�;�ݼ�<H%x�@j��?F�#�<6o�Mc~�ٯ��c�Y�����U�
�^j�J��Y��.;e������s�,S��L�h[�rsϭ�������vڣ6��{�NO�Mn�Ӳ���.����
�S]� d� �[���'X���Bz��A��^��n��]y�qxaW �r� ms��(ʃGh��/��ٹ��� ���p�d�+�����nf 5�5�� �B�u]��9y�AFZϳ�� �ЮـuMυ �_A>�$��hZ�G���7%a� �D�bhH �rM��ٳ����q�]V~=N Y���g�1�'�~S�ѓN�?@��k� ��K���gh��HC��Qʆ&���������Д�.���!�����ٮ������皞�un����y�G{PR�.j��P����LI�sQ�d�u� �.�i�`��T�k�35�wi�z¾��� ����Y��> ��E�̔�W"�^���A�� �ǫ�z�B��(J��ʮ�_�X�o�w��ýQ��b�����o��ϫ�D�)[~G%Y�K�]�
;nd�
�d�UU�S�F�!�.IÃ2]�%��3�dctbH���wA�!�ű�������M�9�_n�! .�O�\ݞ���j3��\�V+��x�����.8���`K�?\�9��`�
�ߘ�"�yjƴ��1�a�s첿�4|I�G��"D� �L?���jys������aZ!۔Ǐ9�5g�ُ>ڝn����zb�9�!�(�%V�Jb,���F;�e�e��lac-z�oN����n8�ߤ�Ńl�`$Q�/y��������4�lf�O9�p�Y8k��o�1M֞��ވ�ʺ��%�ȹ�'8�Xb"|X�&�P��6v��X \�)�O�"5E�}.�g�֐�O�v,n�X�b���9֐ ����~��%Գ����G��۾�룚x���E D��vL8-��cup̕#�r\n ��b(���l���pg�,"��bf�+p*��E("�,VP�E�����h��Y��}z�h���:��Q�B 69`f 6A��P�F�wD�����&����F3�a�Ρ>R�D�.#x�F���XFF���"t�s�j(�1� ����yf�rby��,�Fc�&�����p|��8��w\����h{���m�!�%{��%6��=�8�iV��n�'���C��.�=�|]RT$�{��t /]�D4NJ�摍x��q1v|�b�hćLx� Q�Ng�὚� Ni�g٣�aԡ ��-ĨWP�u�7##�c^�#E�8x����-Y��:p�GV�̧:J���cl�|0<�e��bi����G7XOX���{GF]M���[ ���ò;K<��΃ �-4�m��"�J��C1,Mќ��Vw��wЄΓ<X!�0W��,Ƀ5����� M�A��d�
$Os�5���f�N�t}�^n����&�L��ts��>�~��oo�?�y��M7G�:�L���.����XN����',rE�ĄE�3T��[,M=��=?�{e�.l~C@���[�]�f�1�Z������߄��g<��
� �3��.�c���1��?|��? �X�z��PA�0�����)ĴVP�uT�ۑ�r!�e���C.��և<Ψ$b�~�1G�91�v���=j���v}��� �$��� ��{��k��IFʌ��E�v7!S����y�}i�F�d!��iC�G���P�b��4A$�k���i=H��ȧm��)6� "f�oVH�F�An� 0�5T���T�5���W�.�g��u�=��{���{�<����l9H�F:CmK�g��΃)I_w��\�eL8^ ��Uh#��/.VÝAO��:�Qx�� ��턝 �UA�P`P9�5D�UP�z���͠W/(A�8��;�~�wV
&�p&�����7�E��ot &��
$�χd�N�&��:��
�`��Lx"�Q\��e�,�����+=w����l��9��*/X<�Vy�<���ۥ�a���j� �Ǎ7M.�3%$ N4r��؄� ��3,�xdor� ��O̫C�[��T T�N�zK�ɝg�=u�e/b�����Ӏk��@������Z���
9f�Isrρ�Dt�9���ʼ�q�*�ѣ��=�c�@���&��,`{��u��F功��ؼ�I_�+?<F��ž�9E�8����C��?��� ������Y�������������3kP�log�������k?��$��W8=�6����c��=��'�9�����9s���C>��t��5�����o$5�̕��E����ʖ���[�&h�4L�@陏h�AϮ^6��;;WeTP���]z!]�HB]7L�.}�}�e�=BB-~}���^8�{������>�W�}��g��|��� ��6š��yO�[|�� ܊㲈� ?�7ó1�t�K�}�H.�s9��ǞQ�c��v�?�Ģ�A�K���Cȱ�|ؔ���+��EFK�����:�ߺ$����h[��6�{nX��{�'?�����S��k_p0p�]K8�u3z�D�lj����ꧧW ����?׷��}-�jGg+z�a�
O�h|���p�����א��3��l;�H6F�{�[�J֣��ǎ�l�Z'��
�ck��s*\R𿐥BF?s4B�p^E�D-��2�_?q!I���gw��P �*�_@�����}�>�����5\c|�{&�oQ�fP;�)��
M�����'ю=�HW�R�箪
y�j��#=čQ����s%��=b��Qe�\%2�<�S�f�):ZG�x���:zx�ԑDD�|�,ƨ��I�tD���O�Ao5=<BMc׊��/DOG�y��W�A�<AO�] %n����]OdD����)�Z��9�U�� �k a�^�<y�r[��I�/��S ��z�͏v�>O�'G�l��˞�E��̩�C6KL��uM(��*��5+P�!�!����!_�o��{������l""���>�U�>��E�.�}�������+:t"9n�;j���~RQ*� d��>� ���e��/QJq&/�D��%=S���~t/�9�1v��)���;�?�r<�Fι�`sz��&Ǐ��e���̛�A��B P�p���H�D8UKXQ��~�3��~�q�ޔ��LzC��'�����_?N�,~э83�l�i��x1��qo@Wľ�����������1����O[=������]��`L�#���D��SD�
����������xB/9u �ɘ�[d� ��A�i���$���_>5-�g���e��("%�ۛ�ۿV{?g�d߾��ۖ���U�i �e�o��'=� _ٌǤgKLUd\<�&�^ �E���o��y�<LW������[����0�����a�;^�;6��� ���?Z�ZR�or�_]�Ou�!&�G�DǺ��zTZ�>[r��Mn���<�G��z q��2�(�BבǬ�F��a��D���4�%z���N�|���H���KL���d(�
�/&W�^�K�Lh�S4t�i�����W0|h��X;�c�߱�K�wt���{�1,>s�a_khV��DO}l~?��*��zWn6}�`]6��]m?��y��w�]gU�8�t�����_U��3�Kғ�Cqߢ��� �$�9�-
�i�.
g=z)��;�1�|�^��?zi��5��ǝ��^��zF_�m��K%n����B:l�2���8}=��.�ܽ�/��+1�?(�=W��
4���!(lB8L�u�z��.��C��L�ϕ����}ܧŕ30� ��t�/�py�!��qG�A�IJB`�cZe�a�}@����:M��slz��<�F��ʋ��q�M/�s�ͯε2�}�s�=�,�~�/�,I$���Fy��G�#!L'ܙ��=�7�&�:dҺp������$�{N ����yrhί����I��'Ǔ*�؀
B����jx�,}��y`�DnK�R�
�11������#����ֻ����u
�Q
�ٳ��5�j6��J�q��h)�B/��J��-�;�w��
�Ҿ��
I����Bź�c�U��gGg�%�m;�Y�:J�5Fz�^��Z�<BU�P�x�}���ux�[ƼC�5��f��aM�����V��b��r�s�=c�&26ePX{FS|c�5h�9�!hZ �Mմl��!�����Q�0�&ۦw���sZeg����~:.�P���o���i�ф���i�Gt�������@O���I �I�߫E��qȽzT�u�z��D��K�������\�Z�Za4^7�V$ R�����w����m7���c}���������t�oz�Fh��5� �q�tI�*���n;A�g��!����CGO4;��G��S;��/&]J�@b�ͦ�i���2{�z,�Fj�kc�W(�6��S��]%�0�=��_����n�X,JE�h��u��F�X����G�
~�gɟ&�S|]~�U�}��]�d���pC> ����h�����\p)�*�<�ù�1c4�S1N����S���HkN�b��(V\���Tji��za� ^.��ƋC�kv8A��/��g�)�gl<��;���+�f�ys�����Y�]vZ�No����uv�[�7���}���7e}�]��+;�ۥZ�lW`�_�d�m ��쓷�E�����ݩ��U�ݸ�p��P���t0b�/����?-�O�&�u����d�u� ��hj�3�6���n�����n���]c0���ݩIP�h�tS � N_y��9�|�� ��Tn+y��=_.��v�_̶�f}ճ�OM�kw��p�IOYޕ�w�묬���tC�+���rq��;f���}���緧�Qhwϛ�u���n�a�&�N�iT[�0\m�l]��B�f���Oρ�/�~�?��A���Y�ns��������vw��Z��.�4�^>J��S肽5���s�w:�ie�߁����]'��������O��.��v���Cf�F��l1@J��|�������,:C��J?�9x��4:X)j��G�R�w/j�\���#l0=�4�������A��q�,d �����Ԁ ג���Hr���\x����C�{Hw���Ϗ���۴������Ƶ����e�fS��/JK
?�; ����Q��?7�O�eN�7�M��E�ӽ�.>��D�K9}qȌ��
��Fv����Mɕ�/{ޠ���?.��.��-�C��*�d���i�Xe 7^�����-���N�ޔX�ww�s��T0-`̋���׮�v[�C�q��V��v��.��x9(��l���%�|��퇟O7;Ȩ�6�x3Oo�ޜ[x��Y��R�!`�{��F�x��'/p�_����W4/��ĘʼnZ8��M~���f'<��fy�������d�4Է�o����H���<�����C s�9;��?�mL��L�al��@uCs?`(E�p���_9$6Sh�P����Ew6~Z���Z�L��%�o�_����P���{��t�uua^���hGf��ui��m
Z��҆�Y��\��!�q���}^��uz�L+v�KoCP�JC��B�/�DW�Y�C��7�X���6�ƛsb��~A1�Rl�-�eY� �OtۖJY(?i����� w��1�~a,��˒.h���V�s��o]N��������~YK�Eז��Y3Z���ȗ�V(���g�ۓ�����`���)O���_7Â�N����y����r���K%{B�](#�|! ��ܑX�*� "�_NJ��� cS�r�ft8����
m?���!Z�u��><@(=�V_�����p���=}���wy��`�x�����/�g����&U�yH��~��5�'�LMD2�_��Eh� �"���B�-�����X��mL4U��4&�gRɕ$\hB%��\Fr��v�'r+3J�&�iL��P���)��T�S��³h+2��UDH5?rk$C!�HA�-�32c]d�5�1"� EՌ* ���VF�D[xSI�
�E3J4ȁ�e22���+#�US& '�]ӂ"����40��jNhNI �iFW�)3tT������JM�;m�A�1��L+��g��DkAU��w��҂F13T����5y�������������TIG��~3φ0���*�\����Դ�r.SÑZHS��o���A\!foUg�ByS�GSUn���4Y�R�KQ������ۀcbF݊
ż���h�!U���|$oK�'9 $5P�&�hY�η2�%�/�&VZ6Jq���^Ѱj�$��5�)a��[��Mod��GcM4/�RNg��Vb�H�k� F$�����i�~DY)��kZJlMr�����\��u��iu���������K֣2�
02)�ۋBIN�і"�k+d���H�s�m����i#U�**��G<�B��e�zcՇ8_�H C �KsME(H'ooBcQ�^�)NU^��%�Ye*�����S�Ӛ���f$�>j4�&̌�r|��qR���DFs�(�[��o���ն�l[����X! o�T$#t���TSE6���;���:8�2�e��Q�?�o�:��O��i�M�
�5ϟn�H7,��Ӎ�L?74�c�YV�T��y?*,�(z`a�cJxL�</ � W��O��,[�c9�����_���WZ���'�(���|��B���� �0)4-5��mL�6��9���iFD��F��A��5��A=x=�JsJ�\��Ic#�WF��J��0��=r��B�Eږ�m�n����Tn9C�(�V>fL��M���ji�~r ��Q��
�-F�9�[��o,��L���7�5�mJ_��R���rU��*�qm*koF�"�e�mݾ�U�����k��񸟨-c"�� p�ƄE��0�P�F_Q΢T�E��L}�����RQʛe2�[&�������l �/a4�*�SRIrORV�׶�9�[�u1#`���*�JD�ŀ�,LI�K���>��gf��I����
�m�WiNwJ�y��k�Z4=��k.K62/��6�9�ZN�1b���"3����o��<h��ź��-^�mK�9��ƽ�J��'s��+eu�kY�*E>c�BZ�J��3תE�ig3�D*��B�u��Q��(jI���7u���xj��5�5�G[�,�T��c��*�#�)�֊�Lq%]�
j y\��[r�*B����X���_Y>��i�6���/��0�5��C-�5H.���;Wd�Z1#Ù9�E_+�R�^˧ 杚����/�JiӇ�2�%�ҚɪHc���n-��H5�W�*�%N�Z�YʔPq�p���oD�mi�%����v�]+�b�n"� [�V��tCY�]G���H�T1�WJ*q�Uk�7,%��gE��~�ߘ �w?��'� �4Y��
����o��n=y���jq��;�|zqu�k}�����겜-ȧ���v%o�d�x�.���<��Dd���]���׋���������`P./޼���͏O߼�����Ve$7_STf>������h��k߿�הԂf9e9!�۴���.MeE�h������L�}�4��BG���cAB��4z��Ԣ(c��41HS����ꛟ�-_����w�a�\�n�
3^�_�T�OUe1$�go~(�ŏ�*�׬�i��ů:m��{�݂4{!|R [��������⟙T�: �1��ڂ�$���y�Oo:eyC�C霈o|SɕJQw��r+h#��U�丿�T�Zt��[�id��D����T.�~_Ȧ�J)-�<��,�˷��/j�M���:�z)�H���7�2g��T��U�q�v}z���{��C�>a�a���؆�K&�/y�� �yΓ���MW���\\5��@byqr����]��(�hKFTS_��vUgK�3��ڊ�{-;�����6�Ru)eQ�]y�����Ʌ�̬��&Fa2���tj�^Y ��W9`/ �noI�5��@'�5�������}�R��Qh�&���(@ &[�=�}�C��S�AU#VBͽ �<z;^"�����QVO���?i����ᗤ��_�JMu}n��ˋ��[*��9*�d�g��&�]5h�$��Wx'�h����t��Ű�
�P�T�i3,�n����뜏V�0�@�̣��킷��P��"G��A�cNʘ�W5ߦm(i0޲D���5�:*�|+��.��i��׮B��}�ן�No�Ͼ�(<{�Z�ؠ�4$6��Ф1f�Q�ٯF� ���]-|��������&K?���w�o�����7�UAC�3�����8��7�������7�~ mUI�B*?�ZJ_c"*�q��"WWW�a,㺽�/Yt͸���/��R0�Z]^�n~y�yѫ��j��ؗWR\\� ����Ҷ���V������Ta��~�b%5 v��(�㫢|�,��f���l57tGuQR_���]1o��=~�/�y��.9q��Ě���Y��:��.��9^�vC��&b�����E����e!k�a�Z;���C�u� �<�U>W�}��]�~dD��c[F��������
�N�u����k��ⴣ�a�ޘk���]ԅVWL\��ȳ�fD���5>�",�����
/������a\1�F���o�� �ؼ�lWw��K�� �Ӣ����kL#�O[�z�1�n)h�::���v�_�@�W�0����
_jRִ�Gz�1&֨���(�'�݅ {x^����)40>Ǐ��oh�mۜ�W.Y\�k�>�rH Xӝ�j2ئ� ��"8��,Mjh�����)�ħ��#��Z�LA�y����1� ���#"3J+C�ED���?�Q��~l�LJ&A�OB^������R��H1���
׵Cn"�jz����lQv���Asg�#dN�Z��J)..��>��q��-���R]/����a z�j���
�!���4������je%s�a�+�����~��aݙ���^_U�\^�k鹗Yƭ�H��c���N���M'Y�;I;4f�5L�b�\�'Ew�S
9���䍅�<�a��� ����D���f�zD�o� iECzF�+cR��|���{��&�� ?�<,V�V��u��z�����mhk� m�+\]��LgV��PamQ_˶��0�[D#���:%��k�{����G:]Q^b]� �,����u�*�i[� �$i�����s������^W�-˟D�r.���*P�`_���Y��"�ǯ�����/�%߼�Ǽ_KZ�U��`�jG���|��
�/`��:_���b����}�߮�9o_����_�UR�X9"���ć��v��di_Qv��2���E��di�*��_��<K�������b"U�m��u�mz��1O�V$!��\.) �K�O�$��?,�Z�D����,��Z��e�8<+���(��.e�(x(�p6[FQ�X�6�/)e ����$Q��2J�J�1%b����%QB�i
�" �"j�@�\(@��'tɹ!x"�B��.��,�B�P*�p�#K�t��RI�^ƉXJ)�t)��]�KET"��0x�U/㉦˥�PLi����+s��RQ¢e�I$i–���ZF@�XF�FD���?"�b��"�� ��e�T\�]SS��6�C#�4�2&2���^j85Z,c��p��2�[��2�pղ+�c%1�8�ZR��-a���I$�c@a�(�8#"�|Y����H�P�6��$zI������! UKJi��hY�Xֽ�1�ɡ�C�Q��GP���/t�%�&q��\�D�%�$q���, �T�(B�w���w4J$]B��HE�cÁ�*atIE%��W��WR>%H:^R� L2_���D3e�)�\p��y�J�L�H�I��� @�nEղ��*����bhEq—4"�H�-�/����`�D� [J�%�T'\,�fQ��_!���!������$��EUaE�V2���&&(�sAŌ��_Tb�` @ ���KFt�D՟u���(��Q��Ʀ��7��Х�F�P!a���[��D$��%#@f�+�J:c4�LweL���O�ל�@����sXs�3Au�$(@d ��? �.^5>��&(WhI�����&Wj�+(���H�.J�_/�L�\�J�NeJ*��xڨU��d� �E��b�5��%YJG��h"��p *�Ĉ=��De5c������?d�D%,^��A�T7�бJ!f�KNt��%'�� �+@kp�D@�qJa�rKc��7�r��Ɂfcl��^�YW�i���H�.�dL�� �" lq�q)��q��Yl��4�4'�FՒs�kβD�E8�qB���W��8X�1O#hJ.Tl�I�շ �g�TK.)XU.�9I�U��\.�c�-��鑜',6c�+ֈGRB�q�|ɣH4�6j�D�3������~c��_b�iBA#�(���U�5 �5
Kb�)6������,�."̭|�.� ��R}�U&)((G�����q������)h!��\
&@:���qd��Hp���X�7�,�kr��%(����ey�;!��z�_3�,n�3���e~����GtY�W�,n^V�����-i����iMn~]޲�qiY^g�,/LY�� a���N4([
!)4�:���?r�԰*�H�K!�N"�G��<H�z�
<�JQ($�I0,��{��Q"�R(p}�-pR�AS���r)"*A�]�0�a���c ZJ"��eK!E��]��(���h)"��M�` ���
R�B��|� 7Tk�H/EL���1����Ĕ�?j�NK��P�@�N(��^��(Vj)bc.E \�����7'b%z`�~h���h�6q��-�a�q�S�b�����m�����l��æ���l���*=��H��a�ޥp
ߍ�oEz��N�����;8�� �:P�UWݼ�3C�% R�9d��îz�u�֕g���Ko?ި�U_DT�>O��n����7�*'���O;��Y3���?�w��o����U1%�h��&�l*~�p���'�\��%ӪMW�7��nN7�fw�9yf��*�=�ݍ7uW_��}����d �)�6"a�E�,j�]�C��6�����O��7U1�L��M+��3���nD$9_s%Y��F���k.V|��u�]G+*V[��^� �ۍʈ)��Te�V�ΤnU=̦�ʟM��*6��<��$>������3j�n� N�l��gG2g�)��2�o�F��ѝ���-��3�L����sw��3�ov���n㮼Y�p�3שܜn�`~cNX~�?�7i��~>]ɵ�\����60�<��#�Ϩ��+��e<��/2�T��^��}�UN�R9���O�̭<�P�nn9�j/�3�䯨{M9c��&\d�:�Y�u�b�Y)k��:NSx��DG<J���V4���YuIݛ�f�Y�2˵�qL�D���YJ2�c�7��T2�!����v�Ri�i��u�M�aƽ���*����TwS͢[C��P���f����v������<�uB�O�иe3x�_W�<����Cz�6���h}{mIDz<5�Mn��J!D���ͯ����_�GW�cy-y����>�g���s����m�,���ii���� �^�ݦ���}�]*.�p�}{I R�~ݹ���v!����A[�9x���꒸���.���tu��m����۷����V,�.�����i�l_�5�b��j���>j6,\>�E�v��\�,�n1��f����\7�Tt~��ҹ�\X�dG��˨�&.���e�F�R&��4���N�>݃1�ng)����C��v�f��cw(vY��W{h��5�T��o/h����z@�"��Ѿ#9l�X�u?����?,!� ���[�yi3�E�܃�8�ź ���vD�`�K�1J {����t��ӗZvd< �J�����������j[�>oJp�5G��Y7�d�g�[�u��ޗJ w����m��H����f��K��T�~�8�"`����]�е~�2 # ����&�ry�]��m���!�`�~� Ł☢�x ?g��\h;�7@�O<��PB��~���T�����
C�8�2a�ɣ+nZ]8U�ޔ��s��t30w�T,��o�J [f�����B�ea��Szk5�=t�&@�P[�ͿZ��&�y� ����!$�|��_B=�L���,�D�Z�l���f V���f�v��t��k���r깦�#�!
�nF�Nj�&D%ظ��B'eA�
�$��FX�R'bKS"�05R'��gCLM��;m«�6a�M�F���Q�
Ȍ}����;$i��7GAB&S����+�p��C8c���:�D�C42t�!�� �ݲ|4C�7MN��!�CÎ���C� ��Q�-I�,�-'��lK�����~3( �"��` �o������h�����㻓ͱ5f ��@��-ok'¹,� �����p��Ȏm�\���j�J4��7l�a:Py��y�n�^U,F�ec���C�v�v���d���� '��9 G�jԯ��I�@��C�}�s��
�w��W<}���V������}�tJ"ʱ 4I�Fp�C�E �J4��'Γ+Qء<��/Y����Y�h �D͞�Y�h��D񪃕(V����R���y%ZMR���_�@%� #h&e�>dž(3.3��[^x��n,8�P�Ժ�E]��p���O�W��e-a7�\γ]�kg(!�u��\!�h�3&c��%�j˰�� �ذ˥�#8ӥ���ZQ�&fh�O��������"��ʮZz����d��E ��N��ld(�ldc��G�� v�O�`L)<#z������ A2��L��4v:�<B,��fg�=�.;��_�����hfP�'531i5�' a|�p�Г� %p~khf�Ҟv�&ͦ���S&�I� �I&fgz�w& �x�Hy�DA�܈YWK*=p=�o��oH��\��ѹ`��p�w�XyÉC�?l��!�q^Mk� �@�eB���8o�K��؜�$dt�Ѓ����㼬��Mnk'��g�ALι����N��J�,������� ��\��7��@�����s �,�q��&ʱ,���>&!�N9Vu��A�TΚ���'��:�I�9]a�UK�����s��mQ��4��=�Wv����(�fٯZ"��j}�]S��ٱZA��n�*QV��[<S����f㚉R����RnJ%�"��͞(�ؙ[C0��nT�DG�s7�tH��Rs��� � f�(�~�=fC�=)��OrND�um�N��6�)Nӥ��)O!J���5� \�2�֬�z�fX����>K�s�Ԗb��98B��'�F�Xg!^F �Sd�y�x)�ƌw��3^J(o/�<�d ��Q{��#��\o@y�XbM�):1��ٻ�������GSIE ��t��h��
1��;�4�.a�)��LJ�1\ϵN���� ׻0���!N;�K�1����_���~2�5%��`狡���I_5���/� ��5D|�cK��=���P�cAኛϱ��,�;&���P�%mc:����m�Вq�|�L�Vp�1�r` ��M�\�Yv亁���������LI�҈y�)2˦��{��a���rgx�.���ƾ���v{Q���O�s@�8>v?i��!�����w�!�̉:D�0�(���kc�:�fزTE�0��V���%B�%}��KG N0d�3�����t%���$��z�`�Ɇ �����MS���[*�8������Y~����IF";21��a�z4q�=[�f2�g]*/�O�Wʡ(C��W�+�I��dCj2�d��;��>�t� ;���P����C����(~�{�i��>�8��,�I��9o���kǫ��v�>Gg��E*����>��Q87x��d8DH��C]r��K.q�8wߩk����΀B�t��|�VRL�JGK����ʉY�.��YVz��iֈ)[K*=p_\Vz��9yw��β�#�g�J/�T��Y��+������I�j~7��Y�
Y�ť�םJ��9ϣd�G����ynv�Ŝo��lY��{}�F�b��
��$ �̜�^AZ����Y�*—5�&O%�H}�f�J��za�՚3+]�h�[�
���k�T4WVz�c4���)Y�U���)Y�C�"R�������$%b�ܭ̴�[� Y�h頬tM�Y��G�J� ��CrnK�3h�Y�����J��FhM(3SVzգ5ϗ�=t����-��__rV�V��D�ѐD�u��e�P�x<WVz5f��x���
����+�J�(�Jt8"H�����ဪ��b� Y�QM�JG!�2+=B���1��;�4��n�q�Qe�����|jV���ҍp�Y�5`����o^rƬ����@��MȔ�����M��;Q$��Y��<�2/��;�<Y�q͚�^�Y�w�9+=�bƬ�m��2�f�J��:c�������g�Jw=�EQ�Y鱞�^�
iļ��'+����`�&d���v��c����y>UwsA�f�3���Y�n�y�����2��ҳ��M���J�;{V:��̔����e�3�]�A/8W��7��Jg�?t2#&ˆ��1��ՎK�C��+D���rStެ�r���;�`��9'�����tF����p#��Pn�����<�++=7�I�@e�v���ũ��1� �=F&4�*;�ctb��12���9��6!?���$z�c���;���"=����������]��Q]FW���H��Ÿ��8ΓvK�����2V���2r>�)�c��μܮ��zN����2B�]�
�.#*5۲�'�m��k�񸍌�Z�DD�<����x�F�L;ca�K.�;c�����X�2 ��Xj1��)�p*��t0�bK�zgt�������v\�ˬ��x���� �#o�bb�k=*�3z+[t�� Q�,ȘVp#](�n
sU*�N�j��p��x�����3ݷP!����v��nӀ�����o��Qyp�)J�(/+۵�7�}��a���)m���E +4��{_��S���!V�k(,�hg��%�k�m8��K��UT�6/�Q��X!y�c7�`fܨ��u8RD�������Q� W+:Sv�����D�cVk�Im�Da᠈�Xd�*� � ��Zm� b�� b��b�܄d/v4���~�%�m6��ʔ���lrZ�Y3
�����-�#�:e��ܖ����S[�m�3拭 XM�8m*�FΚ�:y �5Up�0(A�8�4gؾ� �SB�1=�%��u�LO �=��+�\aM��!�v��M�o�<�n
�N`���N��m3)m�t�4����E�����Uq�3��-WɚvQ�O�1zY���]�<RS�D��b���*� _Eq�J���]I�]��p�y�`��6̱��NjDj��X�i���"�>� cYAyK��pc�Q��"�%��\̌���\Y�q�5<T�x�ё����5N ��(���e�z0T��LכTHcT�� �e�J��y�ߤ�ls�t~dSd�"��-��_a�%�C���؆7�ܽ���O��}�9�O��c�q�|s:���D����8��e��P;�D!B�qģ���zrqF�5��� �a$k8�hǼ��s�2���w�ҏ옇�1?fߝ�〜Pti{d諒Y����ALNX4[��w��p0�lA�
���@�C�� f 7ң�9��S�0"VY�#��'V\�J�,�(��Z+�2ŕ��(�cnd�RN�c�XǴ��3�fw|�no׷��X�w�n�=�|��&����*$g��wx8�5T���Sy�|��ۉ4Mus�����]�/�Hr��J�l�!�5?[��X�m���v��Xm��z�m7*#B�|�S�e���:p�UD��D�]���}�Z2�|�(OXw_��s�(���\c����̣FC8ӳEC*���kT4��x��^�@6�L��9����8I��pb�*�v ʨY2:k��D ���:K �Bj˰����x( �^w��(��0��@�CT��iԈ�e�Y�뭡�=@��p��wł �=�Om��qm������6��g��N�/7�� <,���WP9_?DTP�������I������`��rǬ�5S-L�}��� ���cMB����Īq3P�+�G�s��0�#b윺��廰9��K,��S�Ń�Ԋ�6��`�`C��ę6�TXg��J�y��� �ڊ�eqJ�V�̳!����jo1�o� !���>� ���+8��6���
���Y�&U��[���},M*����&K��CK�Pl��5�H#:r0}�0��=h�F#;��wiW1�%�c��c_��fs�m�� ?�*p�pgpP���D���W�l2�Q�J�<A�
��G�<<��Q�Z� *§�]83NVP�aG \���SJ�s��_F��`Z;�%`d�X#Ʀ)�g����z����Y y� �F{n��3�z�}�Ν��2�}�!r���q������w����u{����:f ����@/��)��^1�g��� 4�=/Sy��>3�a&�H>�=)�*�<� Id���TG�S-i���T�"&$Қ���:�4V��J-#-�TO��d�-��KE���C_Ay{�x��^8F�#��F�A�2����c�Xw�ͪ�/7�C7��C�tS�8����
i̠�c�*��A]B�j�� �����?�g|�w=����� �o��Y��o;�Ԃ0>Ϡ����)2Ϡ��|����A�R�=e�Ow���bj�䝳V ���MG i�|H��cŁ�!G� A�L�`�]03�? )&��ս��c�uS�F��8��%�r[����F�(�,v��
�G߄E���t�Y�'���l�rW��x����q~���7
�/a
1�(,�ƌB!f�%����H'�iHs���l?
q�G����i�Q����ذ��3�m}6���'X��W��o�
� �)���
�����v�a�� CDX MV�/o�ͨ�t��0z�:�]O���5�]��W�L��2��kRǍ���
��'vNF
��ndO�kO�`&����Sjj:Z�gx���M>��Za�ޒ�-[��
4X�ƕ��\�� ��P�4�>@ٖH#�A�� 1XTO��VN<�����k���w�?g�_����a��>��"8/~�[ ۝�K��V����C��0���P1�P�)!���"����,acSB�|�s2h7��?�
�r"��8`s��g��X�� �il�.d�)�RA�0U�>�y�/�쓫�(��y�/%��U�@�g�8�c�@��m�8Y7�)���Q(�}?!]H`{~F!���i�P��¡(�ΙF!G"]3�ˆ!����yT[��|������B�\�%��ѪΥ1�; �Gʄ��9Pf@CD�EbA
"���E?>J��$Adw۹"����P��JT� �sF@+��'�PSr�h��b(�$dR�A͓E@�����  0���X!*ʦ6���
� �j0*�)Z"��VP����VP==�ceb��A7���7 H��_4�l|��ěڃ��lz��=ʦ@Q�3@�z�
��gd���u���}��˖#r* ų��y���b�X��kaM����ы��>�m���O�(���|���͂m�g.����~ϼ—����E��|g������>�Yˊ�d �N�W�=/s.�l�lh�N��H7�"/��(Ɂ�ђ /]H�DX��ۯ�Sv�[�v�l�ܐ��ޒh�$�����>�<W�)�<��+7��f�^e:�k�㘬�^q��d��To4a�d�S�t����J��H�����y�]s����~M9c��&\d�:�Y�u�b�Y)k��:NSx��DG<J���V4�����ݍ*�=(�ݦ������ǃ��Vo:\�j�5��ݤ����Ue�������_�a�<�ϒ[�/^,�ڒ9T����} ���v{�N/�nc�6�Mb��rzw�IO���y�������}�ns�B��MIG`ǻ�����y���EU��Q���s�5��_���]vZ�R��� ��X�tT!�Z5�onͅ�I�yw��Y�t%�;]���F��}��cz�� z���dP���%f #.a�1u�������3zL>��1�D��6�V�pظ�������f�B�C����<�:��y��h��~ -}��3z՟���� 6zn���x�uJ�O�Uk����x��N�}� ��tg�44���薭��rF 0������P�3T����r'/�4�ªA�&����I}b�9#�R�����g��Z�d�=O1�7*����AM�d:����_n��������'pn��d4DX3t|�8??Z�;������?W�g�����ݥ��2dU}U������������>?��&^�#Q�n?~|8AD��l���ڄ���������~A_�W�7[�^MD2.4�RQB�VFr��v#W�(B ��)� ��d��5Q�j��f��¼�eOY�1.3�?����`|���6��O��nbV �y�t#E�a)-�nd$W%M�DQ�o��J� ��o��4J��MbJxL�</S�I�ה�%�^�e79*%dK�����_������R����5k>�@���tdl�B����PE�L���|�eDnc*IL$)��ۈ��J��l��Th��$��q�9�B�L��1�L��mU�Ն�5 ��$B�R�-[)� ����B��1􏒫���9�����(�ZF��^�(NCЖ#ۜ�-���j�����(ZJq3^c&�$�Ơ�HI�OK�**�T�M���*G�"�C C���n��*cBs:C�Z� ϟ�-c"�� p�ƄE����5i���,J�Y$@ ��ѧ�:��-��Y&ӽe���6.[WS�1о�ј��hN%��Ѩ �8�-2<������Bf����'�IV�!��z5#�{�&/���))s��+K>����ޤ��(�T3�7�ݦ{��t�����MO����9�ȼԊڴ��jA8efĈ-�JDf(��WI�v��fZ/֑�3hMT��dےpN��q/�����ܣ�JF��ZV�J� �RH�V)���iբմ3� _(��B�u��Q��(jI���7u���xj��5�5�G[�K�]�
j ��X�-�I�BsC�*y��2iz�L ��AU�6�k���p<�U$��\gvύ�":ZE��'�7i��@nBn�1u�����\)I ��S&��3��9���>��6}H)�_��}�3J(Q��j��%�Ѭ�%^��)^�6K�*��.5c�1B�Ȳ-��$�"�8ޮ�k�WL�M�8a��J��n(K��H�Ui�*F�JI%"��j���ƀ��p�����C�������?���ɢ�U�ŷ�x������͛�.��x����]|��߯�k�c ��������o��$���럮���<��~�����w5��������7�~�x�C$e ����ۋ���5Y�����Z������������Xq����E׌�k��2��/�����������Y��K�}y%�����/��/kY���(�h���+��M�z��L�����s���B�!CKQ��WE������l�b�hiS���p��;�����P�/q�0Mǣ��Ǐ��e0�p�%'�)Q�7�x�|w����]2�"W������5;���[�/ u�)?��U��Փ�������g&U�wNh��#�����虞?��� ,z�/5g�WHU��B�)�.�\|wy �T�v�?�u���=�Q?Z]1q�����3C��E��GQt���u��r+u�}���;�% FZ��n_�{��]-��ݤ��G�Eh���(#��m�ӈ�Ӗ��2����}KA3%�ѡx׾�{�k���r�"� 2���~|'�V��*¥���W��ɬQ7���QZ������|u=)�70>Ǐ��oh�mk������������7?U�1��5l�W���_��I �����6���"P b�C\�)h;�S��;&s!��|cd~���wo0�T��r���Go��ň+t>4qh�I9�h��O�����gk��OM���mw\�B��Hc���"�jzs�Q[|C�D{^=�r��v�̩r��%к����Ɯ �n�atK����E׋5�q!q)��j���
�!�y%;4����i�n�1��� {^!^7��yr���ú35W#�.�^Y�j��e��Rs�Ǚ�o�����t���m:�:�I���1�a���6�t����~R���'e�je�E�W۰F����C���lX�h���!-��cHϨ|eL�6C��t�}�>�����k�U�kk�ZĺTT]�-b5 "��3���puQ�3"�W-Fl�����e�� W�-"s�F0]+�
~|�m�F3��t���ĺ�/iy�] �
_�+H�t(��.����7{�`Vt����v�*Iڽ/�Kї�v5�i7�?ZZQ�f�,5��A&�@E:�}�Cطz$͟#�ǯ������滟.�|s�x���~- h�6
���T;�����۷W�~km���%�C,D����v��)x��������۫k�XC>1�xQL|8x�]�zK�W�]���$yuizK�������2_j�A}����|���Hk����a�}����k������Hj |&?#'�v%��.�U'9��#�3Q2�q࿣�l�t2��]i�C:�*��ewG���5V ����j�$f��;�z;��F�5��+��ǔYS���J�D���9*�W):M����{E_�~X�C�5Z I3e�)�A"��R�>� ��Ҝ��_�jlO[<�2��������g��-: �r4���JzƧs��kiStEW��o=#�u�j�jFƟM�߉|&�ҳ����@��{Z����V1������Ƈ��PclM���Bq+q�AM�-kB�#b4?M�L��"�ō�q� 7����v�.������YksV)�..ٗŭs�F�?�Y�{;i��/��V�ZB
�l�s#�����OJA\�<'�#P��I�%���cR"���8e%cNڌك�Dn�%Z"�h)fm��],��줟���2:�E�[,�P3�Y����j-V�h"��4[�9Y���m�\|� d6�Z���*<1'�Z�lc�r���w7�P�]Z�/�p�� � ��M�
#)ѥ�~Ȱj�c9�q�ͥ!X�� �
�yG�� ��Q�-R��և+m���ɑ�(S��R�&%$))rU���ܔ׬ *zg{�FnAK[g�B� B3��s �K�BYV�Y�haZ�ɔ�� nbY�=�/ȩ ���b ��p%O���$��H�� R ֑=�8�� �(�4���᣸~2� �@:"U���p�ͺ��-�&M%9�el��$>C@Z+pW��pX�c��|��8 ��Z8�F�-Q�Z�bCI���Fd2��h�1�h� )Q�.��B��gđ!�!�OL+yTj�G�~�L��b<B��E G_2J���p%0%Q�+C��5�.o���r���$·$�BS�Y5�M�#�<%<���6gC��b$��6��j�NF��� ��G��N����J��A�$�U���e4|v�Y5�$W���d��q�S�8Ć���qU�,3�|R�ŏD��E�8�c��1��ݓ�LĊP1����28�př�%���4����l�a��x1UBƃF�k W7cA3Ŋk�i�~g�~.��
?�'
��% ^�� O4���i�һ����TiQq��Wo5o܀n�Y���ֻi��6l�G��v�6ڕڄ����o����������i6��Y�l� ל����˪�zG&}��z��}Nl���ѕœ^t�)wէk8+g@� �r���p%�#ݛ e�(��p��h���f��j#جCZ�-�fgc�t4�� ��~���I/y��us���q�~s셐�����v�����~��9��_�B�3�F]�����ս�� �n�sb��x8n�ψ ������v��>-:��E�
_`*�@S���f���/�Z�n�����f���v�3�Y�����@�S�J�����on�����]�ŕ���?�@O�|ڐQ :�^�2+?��/�2�G��%�htͰ6f�zZ\�9���v��۰��ܯ�`;�취��:\���7��Qv;W�qW�������x�]R��������w�߷��a�#�^S�ZY/�b�w��� �Hz#g��?˽�#޳J�9���:Ο^��pf������*W>��d<S��L�c���fQ�k��7ܹ-��/������G������� �e�/��������H����?I��Q�_���.��.H�
x��X�o�6޳��C�4��k����M�:�]@Kg�(E�$���<R%[N����M}��w 5��G��~a���_������)J���1|�|{qzv9={��5[d �<�v ~��z�!\d�Җ�\�(?c���%�f�50W�>��8&S8�E���N�¼���J2�-G�� �~U9��Aװ�5��+�!i������Q��ra�����k�4���<�|�|����J��
��Fȍ^�� �O�M���0V��\��� c���3��F0¤~�+��s���f�\L����Fc�hIe��MA�`Z X�Ȟ Da���V��"��k�os*�0�3zBz��,'�VA�P>R؂q)��ú�(� L#0���k��42q���7(S���+���(p��R�J��TE��(�.�k����rC�AK�|#,�b��I��2��s�n��v�I�GñR!S�B%�y�
e��HI`��1V4��yq@��F�ҺyP��\���v��b&�ӆ\r�<�T���d�5�����9%F��.1r�N����/C�I��4~+��ԓH�!Myq��^S�d��P��H���f�,=<Wz�$�0g+���N�1v�<�񙱌˭��?� �Xϔ�3c0%�s��e���X�k�z�<.�M����nz�A͙��+6FD�V�ڔ 5��Ḵ��l�?���,sŨɱ����/_�(硸;��ND�����A�p~���3�mz=��l�̳
�Uԥ���[!��|.-j��g�J���P�݄�v:�Ʋ��lM-�S�d3/�/[�����y1< JB� ��H��ԛ` G��y��yVd�q���bK98�T!��⏣_�$��f�nz��$���\�I*�Zh{B�F%}�P���[_*⑍�:0�,C�F�:�)A:�ZA?�0Sz �~�E/�_7=g����5�|�yaʙ�}a�4)Hp}y�L�a��\��Q��ű�0��$z^�u�I�"@틋�=�?CN�l�0C������C����G�5}RSg?��>W������=lu�� ��̴��xõ�����,e��K�OOs��6bm�V�͸����A�Hm�0� gM��id�#�����Ļ��R��� ��Sr�m#e��m���|�{]Mr���Z�h - �H��]�T"5��z[
gL0���<
�>��pؑ�֨�N�w�M����3z�[��@�(t8־%tx'ϟW�|h�[� @%�g�Y�C�`�*.51i}Pe�Q�7`a{�2��V�K+��.�9�v�r�R�� C3�j.�z^V�#�E��|+�w�Ll��`���3�7��/��7�ܲ�or�<��󸌮�;X1Q���l��o�m�3t�L�&��8+h�� /�̆�n�f�&<,v��Y�%�7E�PX���M��*X4 ����]\u3�gh�ws�a6xz���[�pK�}2�:kֶ1ʲo���� �X�u��j:P۽s��Kw�4�x���q��������ѣ;��n*�?�`b����qbP�ھ�soU���6���1h�mO��.x6.#�( n�{~�a��s�w���?�ۅ�i��0G n�7A��
H߄Í�ųݬ�X�ng�F�k8� M����WY�Ĕ\KѢθ$��kt "�'�f���Cx���u�(['�8�V���nU��*��Py
x���ks�F� z�ʿ����{�2덎s�6���ȖV��9gB�n�}�C�\�5W���Y4^�n 4��ьE�P����ze-o�g��j����/������߿y���/?E?d�~������o�u��ޮ�G*��{�!���[�v���/�������/�ח�����pw��Io#~(��ۿ���"q ����-���׻���:��������4�7��$��9㗿m��]�n��?߮6�w��t���EV3��kz�>ě4yw���w���~7.w����6/������`��`��1�����^�2@����0P�e"P&e*P�e&PfeqQ&i �2W
��h��H��Rɥd\�}]KM� ['����2h� J�1�� �eX4��$Jj 4����쫔ڠ��0�Lʬ>8�#x˥�r)�e#��|��#���1�`� 0��<��\�Ҕ[*`�^y������k�N ))��F'�W�p҉�ƥb)�ʍ][�k�o���R*�t�}i��Rǫė�2+MR�˵/�t �t�dV��:À8�G�kmcˠo%֖k�,}i���k���4�t�H-��]������k��"��(C�οf�q��ܷ^4aHQ�)����8����]��<N+ek*[�UL�Uk���X�Cx�㬭"�C��'0��If�e@L�P�1/-D5G= �!�5^v@K��F%�&N"I7������"���%��s ��e]g3�%S?�՚ZZ�L2��J*_Az�Xy}�4F�k�� 6��~1x �hmi�����$����X1�7�W� 2$��5A 脙u�g�O��.̒��,Ic�,�Y�9�;��<vX#����Q8ʐ�?�t?$# 7 !o��\�ۖi����|`�o����}}g�XX�]�-cB�:_���2��{��&q;����Y/�2�d:��#�� �uP��A�V��q혗7 ަ��q5*R��#qO��6\YG�L�/2�\Zo�?I��Ǔ��8 ��a+'�n��$�v~�1�ȅ�ct���A���yn��u��W�~嚵����&��@�t�ȽeM���<)���a*�蠫�,F�S!�o+���f*rDl��mǥ2[cJq�� ��Ӵ��2$�e��}��!hAn�2���s�]. ���OH��џL�"�')���1c�t3��0� A�5gQ�옳(X������6gQ�1 �Y��;�,
ו9��GvM:��E)�3�忣װ�]��5��e�����BkO[o]��Ů������Bfx������"=��2�}0�F����{�&���t6����o��f�칛!�41�C�4��CY%6���V�c�z�<���w�t���m�A'�M�j��k����Z{�j�n�69�>��z�����/s�jHK��+�_�e?��u�_���զ�_�z�j��_���_������2�c.�Hr)���zX���?�����Y�XH��y�������z��?��?���]��v�R�(�ҍ�dq[�s���,>�l�.��C�k�f� :jVF�a�8xlV>~3˵�R���i��.|�ԷM�v��f��H�F9+j$�e�ӻ�YYv\��hǽ�+��"T�%�U���Q��?�Y���2Y �[�Y��V�:ͨTCP��[,�~e�z-Ra�RSL5�O�]9E��Y;�i��AhB�G�x��Q����� 2�1[9���6f[C�ƍ7Z��:�Q e59<. " ��d�*Y �42M�Lb�^ū��Sb��Rel�v%ؒ�{�� (��Z���;a�8�-���j<-��|��ݿ��b�Y�O��~z�����Jɫ������p�xƾ�`g��"�n[���]]��v@��VA�6|@1���F h��1��m�;ۼ~������i^��Vz �O����j��ʳ���7�������ի_�>d����|���w�j�X��U{{�����UH[ f������۽�������U���d�o�������Z9"����(*��J �O^���/���}��`�J?㩎!�/,��̯3�+w��`�y�y�guK\� ���Ȁ����͍�I `,$ؐ�wM!���;�LG��s}Q3��K�^�^\^�~��R������|��Ͽ�_�X�ޭu�Vx�H0���w?���٫b$zр�Wuҕ_��w���� ��y��79<y^Hh�����ּС�s����bQ�y)�5�ϯ*5�A��9\\��/d��yi�%RԄ/��l>��v^�a0ԛ��}��y��<���R��M��yΐ����s�̼$� c[w�[�lv�l��>8ް��γ���7P<?/I�kYKP1�%���m��r�j_޽�w!�&��nM��&��&��^\�GpU��0_] %��<�Eݡ�_��w�0[�VgXK�̞�6�����X5J�~mԃr4P�.G�WM/�s�k-7ja�Uf>{c`�ʂ�_R"�n��b�\�H�k���š��u�_\�iſts.�붲
L�%, ��
�_�q��'��?m�� l���I�>n#���R��­m����AO�ʬj ܑeh�h����o
��b��"�9PhÎo�ޟ ��:���d��f���s}��C>�1ya��j�8�ZH [S׊���%��c����Fz����0v� ݗ\t�n�"dʀ͙~I�p?�l;� ��+ʳ ^Y�K���������_��Vm�e��C��d�q8TUo�Kk�ߐ�f����6p�6 4"U�n�����5��h_�/�'?���J �`d��Jm�.��U,�lM��2=����^�H�*3��'�L�V���ʚYiNR��q;WE�KS���J�U%j%�����$+a�(/?����O�� * S��ش8����du�Zsۓ���<�h�mŦc &4�l�N�+���Ppq�����°[�ױ�8q������_�y���k[+.ӯ���4����1�Z�XW��AI�ϯ�W�110#`�sJ���}��5��vF�睜�?w���s<�α�z�6�\��� seۊ�M��[��Yacg�tp^��8?�n��|�a��t�-4}?]^�%zGp�Yޝ �l����j{ŏ��RWX���I�I����ѱ� 6%��`sk�ۇ�r�V�P��/�j�j�H�
t}�V!���m�؋�BD�Y�0[�N�qh��������U�۹�*Jec��Os"EY�F�}����E۬O��|PI��]\:{dk��,���b{ej���\�Kr���ʐ��G��j�i���E���|g?�'Zͫ��yh"��"i]�HZ�A�Hڄ,�n���E��5��!t��W Y$ ��( ��/jI7�� �t��"�E�"i��"�˚E�v��/&�H��l@&JksΫ�� b���>�0Z5�V��wt�����`���w�T#�nc>�v"���$���/[���5vULiW�4N<UMY`�d��1����%$�r���a.3�Ve���P���Ƙy鈚�����j��OCc^]i��i��E}�œ_�>����S4��z�kqYG�4�1 O�0��r�G��*�2c2��!�ԭ��>T����2 ,`ev�nF����u� �'f-^���T� �vh��_Vq��`�"G�-��~��J�O � �9ˏ�p/�e1���:�n#�n��R}>��U �ZPϋ ��E�]�[L����X����Me(1"Z���Fn
�V0��Iߜ_���5�!��?���S�'����^��˟t�����B��ź��:C[I��ł�rνڱ/�5�ľx�}���P���|uEty�ᢴ�g��W�/.����C�af�|>����=� [l�f��9ի�'��.�\��������Bi"BD,�!b�� 4D�̲?`l�2��(��S+A��(��`��(Qְv�(���~�Ͳ1�F�S�L?��kV����p�y7��S�E������7�ß���m�����7w׷�_��>+�N�w���>~�?���������et��/����m^���'n�^�������ϟ?-ӇǏ�ֹ��9�v���Y��_�MޯRm�ZY�V��C�j��cѯm�g�ұ};f��ߥ� u���g+��e1J��?�������G��:l4�ڻ�{���n;���o�*b��o��w����8���?<Ŀ�������o7(�����v�q��P�ԏ���V�+!���|s�W��� ���<�{h����́�A��'�o/�4N@�����p�PN�7w�D�$yH?n�_ZE�";V9�V{h�L�Uo
���\�Z_���u���O駻��H�3$��Z?�}z��Wm�<\ v�4����h��ze�1�~r�������D���-h��!�[��&�ӊ ��u`��ػ@�A����N乹�[ś�������ۤ��r_�;�s:�|$7�xs��@�V�0�vǭ%D�[ �ەu"�n��_7�yՠ�8�Yo�M��m�esy�~Jo7+z�����K=ͦA�qs���r̽�{�$�z}��8a����Ԏ8 ��8�n����}��И�H'}E@���e��c@�;C�����]=�*�o2%G�K�����c��p��V�[���RwZ��v�[W�P� }t-�G- �kdm��A�˵T���Z�\!��R)cs�K='�^�"N��]�ej&l�� `A��ҮE�b�5O9_Z�c��rmVR�W)P�WF��2�똱X�A'B�G�jJ� p#�bK��:�L!�-��Y&<6l���:FaR&��[�ícl��zO��
8�rmi�Jeʖr���d��5*�)�!��13��B�2M�Pc�,w�{R9I�I�����re��l�̒ �1K �`�0��9��x���R�z%��K؁7���o��xs��1A��-4ݑؽ0����SO�R�D��)Pz���.I��vO�/������n�ח��_V�E�(A��&�8�StP�A�w�o�~�vU��@$X����*]��?>^�zK�����,F�՞</?�U�}D���u$�'���}�s���vs��N�U3L���P��{�׿To7�~��Ԑ�����.N�wG����^C��*��"����-�����ΰ��xy��@��i���>p��j����_� ~(�K��b�w.Z&�"]_�^ӿʕ���F�2�v�s�3�g��R+#������MָD��H%��,�/����p?|�p��o#%�(�=��Dn"͇����=M�H$F1w�w�c;�2�Mc�}G,Š=Ś�=��uS�í
0?�] v�٭A��
ӻ\��^7�� ��ZEh�t�cI�$����h��;��Wכ�!�����3�:�*v��%'�K::9�n���Zh�wŰU�y��x�������*�*,cY�(K����?�f�]���{�88A�D"�#�6Y�5fBxP�#0S�P��Hg�ɭm���;m�xSW��!�X0�0���-�(�����R��;��hт@6�@�w��������-4SD v�ha�#��v���>�� �T��7�Zu�F�� �D׈�����t'������Q|��� �(j�� -������8:�p[�����Ƿͭ�g�P) u�2�ƞ[t�;H݅���Sj����+U6I�����Y{�R/�K�s�U��e��lol�� @�����a��t��U�c#.:��_�� ��� ;��ov��r�y�g�Y��n�eߚ�aK3Ҙ��7mLO�/4�������l ���
m+�s#;.mD�q�a���jO�Y��3v�+�����`������h���7� ��Ɨ��t���$_vҍ�7c�{��4���3���"�:n)M�h�G]Uk��H#x);(|R#�v���F��(��g)G�H�<���Xn�N�cy`9�p�C`��>tkm�a#N����b�Q��a{)�ڣZ����kYs۳��7��|Bs,Rl���w��n⇸&,�^�Ej҉�x���N��d>���9�b0\D��is��u�eGk;����&V�y,�E!�s�������)N�u���S�4���15q�C�=�Y � <l%�f�Bհ�h��N'��>\��%�6ҝ��=�_��՘ɴa�a���)�"��cH=�����/���m�>�5q��𓺦���������0ez�ny�x��l{|X��/������� ���e��bsɠ=����S�����,�2�Ǩ�9��mh;O:���f�8��<����Þ۴}�.�f!�8���C�h��s����J�.~ ��Pת,j�v�NXkC�Z���f�r��B�tf��������p'��Y�hY�ˌ��ö~��$7:�����\G���'��?��4 �{�V���֣�B<2���x=h���G��7�ŘD=��V������d�Ъ�~%���c-�_��&~ga���(�k�!j\�}�U/��T�^7#lc]Xjh��vwj���:ػ�Www�����]%Q�����M��8 !���<��h*�p!����ߞ��bm��U�T�X�����rz��Ql�����g,F4���vg!�J��<��Ch]���!���+6tI�g��OW;kj�􋰞����a��V&��b���f3�bDg1�"�l���i;���Dl aڛ��1�v�Y��ѕގ����c��@���.��Q��d��3�.��ǽ�]̞���_�FEzҫߠ�9V�O0d�I�O��ԓ}��d�$�����I�~����<,��z�q$�yp�-�O� ���I�~����_�]z�zP�� �֧����S\wp�J�>�4�Z�L�28��^��+M酌M����})@�*<e���)%�9p�gQ�HP��aP�����Ђ�y@�]�c%��j�&(���N�(��@�~wX��AG�@6s ��*b�#����:8jF�']�8�+2{���E`p�=Vdt
|ҕaz{>2pG��#U_�:͕aD��zl���F��(;�u�?���1���ݙ�=ܮo�(Q�ӗ�3����b��vܣ��*���s�"hz�MM����<���F���n&{ p��ķ@���O���n�i=1sIr5�����~���n�`.���%g"��ZK��kK��bX���Ȯ��5�����k @z���{Aw�'̯���z�m�yZQ�d)����9�f���g�d�(� �D��p�A<LM�fc_a�mT"x�j��ۉQ��cd�ޣ�=�/Ч.�X� �S��q�H)�<�m�2����1_�^�ҁ͸1ԃr�|�m� GL���a�!)�Q�f����K(�dzK�����n�D6q�mԆ+�6j�L^0E�(u|Gd�|_|����L��)'�v:p�����܂V�4�d�L��Z��-Ћ�&�F���p�5�$��L�c'�ޯ�=GS ��$ ���M���6�!�h�qNnr���H��A���=� '2��}��}n�g!'I���pn�O������%7G>���ξ�OAz��$�v�O77�ܫ��5u���psTp� �9���q�vpn���'L�Ĺ�g���s�=�ܜ�[/����%��\�琀�sk�nN�N/7*����=l#h�؊�19mn�óJ��t�4psa�'��2x.e|�9l�z� Y�6���%�v������S\'���s������US$�vpO#7紉�ܜSb�瘀�s ���M����ľ_en�!��SA��(�W�SN�͑��?� �q�� �9Z��ps����87G��L��%Mx�"7��i�N'�#��p�mYVp�H곃/�X�O�"��V�����S&�F�� �=�(������}������B�m�1���3��w��!0 0U4��c�W�FB44׊'{Z�8 3�L�����]m���� �8��ƺy7��t�� �S-CS��+���Yn�In��i{dj�wG�<�����v�uon4�����v���'�����"iES[���t�bY�9�*^���c�� >�:�x� ��>�I%�F�|��vJ4� �t�6|��%����x�����A�=��Q���A��6�toN�{I`�?�=��j��&� IW�4�H#� ��?Y�(�2�[נ�㳈���#�u�1�{&Q�`:�F�ɣF� 6Q�`zR����F���"jtp�w74j /j��Q����ۀh Y���'�B�� ���7Jz���I�F���F�+S\�/q���M���~�w�Qt�������҇�J� w��.������f�v�v�/*V������9ܰ�~�P���?<i�tךO��@ztQeP�A����{�m7�6<�{�m����th��{�=�Fs���O�v� ,��on�V�&���vy��69���7S��3T�gD2T�.Pk9�� )���tl+#��;%�z� B`�`� �ǰ�.���2��H���y������6̓�c��p��1Y&I�Z��ʕ�ֲ3K.,�,5܂I �XR2���:Y�X�D��| ���/
��
�-�ѭ��f��nM�Q!�mM$=��UZ�'y����̚���&+��˵a\��*�)[ʕF+��b֨866��<���<�ؔie�29ܚ:6�5Q�|u��%�}��DQB��Қ(ȣ1�5!��Y��a��v-bK�y���B3H�ȗk��r�J�Vf�^���T�c�b��5|j�5��NmM���Κh3�Bۚh _�5ѡ��#X�;�5 hMd�\K�J�U�r��!�21g�J�T-���z�����m�j��� ;��ʭa��i� �`�ڬ������B����&�Mr����̚���&���Y�%��z��X�����,�L�j�0)k�銭i�8Ʀ��o�51.����D2.#z�o�998 �dFD��x�ߝ�V�a��?0U��F�N��$3*ҁ��FKe�{�ˠ��v���r��8ܝT$��������1 �) e2*�FJ/�n��>FJ�i���b��|Q��_�����P��@����/����/����R/�<駤�>B�|�;���?�2�{�|j3MӰ��@���Χ:��47F�w����w��{��I֢\^?��;��q�$�}��w�i��U�;��r���8*�کҟ��Jr>�) t�v�Lhp���(�T����e�:t��۱�^K����������W�����ۮ����^�,7�xi!%b�1�#� IDJ���q�u��f��։$��"˥������qB}-eܸ� �p���� \�S������'�v�䡻�#h�m��F�v�%�Q�v�и��4��g��8��s��;�^_t=L��r���4t0c��M=��^tȪgK��{$e沓]�0ƪg�۽�b����p��a���N��I}�W=k��cAr3�"���|���������A^�<��
78�|���z��N�
����қ�;S�� |�{�:0��w�I���F�߃�aa%v��A��g��"�.����f�+jV�H����~:BQ�&�d�#�R�u�2❣6�u r�������䳗�^���\��{�J4_@m�zR��d�J>�D�R��(#E�<�>�*�R8��#w�(Al��€(V�i��~�3[�XE��`�������#5�`�.���G�����k��[
/Z��|�l�]��B�QC���X �%�������L�=� �1�ˮ�&}���x�r$�F���7w>��N��c���Y5Lus��k�=�Tcl�)���&58��6�)�\x�g�4���?�'@��{������l��&Ba���\�� ��F�˔�K_=1�19:`��z�{������̮3� #K#T�xK��4�q��4����es�x4�B��^"�'�@�_J A��?ɺ��*ـ<|�1�b<���GL<�]��^&?��V1�|���Q?H����ֵ�I�z;s��Ѐ���@�i���&�7���v������@j�oi5���PX?|�~�L���O�v)w&>�^���+�o�����z�2lϭ������bY���y��~����`#�nf� KEi;���W�����B)N�PE ZOk?b�3�
e����#�S~���?s
��ؓz�Iq��^U8�9C����8 ������s:̓�31�x�S�I��䮼�;� �A��݁S�^�x./�*�#{o9)!�?� �� ��-'���rr�r"o9ud��~�I!#��t�†BP���#���HQ�7�����e7�,~|Z[Iţ���v#� ���?q���U1V~�`�<j�i����1GN�~؈�%#�m�!U�-��ƻ��s0���gs0���hLE�| �wzۆ1|�ZJ��׫�4��|_?#neKz�"x�jĽl��������=��D5����l��2�)�
�b������j��}%)L���<�[|s�ě���ىȐjM8gh���A��ސ�
"`���A�<2�8;~J�g��H)|�{ ;0nrDE7��H��O�1�� ]����ߎ�w�;�"�L �E;Yٞ�����G�J �示/q��K�pTupn����/p�A����V���tO�pO/�M!>��z2��-#�?�������H6m6�����zy6�.c��6�rj�˲�t�
��dz9T`�Y��Z �'��@!N���(�������Ew�l��$k�l�R�/��>R6e���W6������1^p{�K��*v�KԽ��)kdT� _��g�N3 ��9��w�������z����޹>N��f���]�^Ӡ��Z:59V�D�����D��y�x
ڎ��4�I)�O�֚���ZS�v���x ���㔫I�Q�d��V�N�!a -y���Cš�&�1��:7���4p+8� "h�9����䠬��ic8c
%7�*��2 �Hm���O�k`��;�fϑ��A�G��[D�`�O�_t�v�s3�,����B�������]+B���Vp�|�
v�#L �C+�z�^#g�heh�L+�;OA����U����Љ�6N�A%��表�O��������? ����g(�����*�����B��g�t��?�5 p�p�W�5�8�V�ɜn�3�
��'hO�u腾�60���N�!�CQ(�uX(�RO�
z�޲����*V��y�t {��)f-1pP{����n_ �6�B)jFP7ܸiuJG�T�r���#�ZA�b���$���Wm�ﶱLG�aʫ����[����l���>'�n"t�������9�nP=�z�?S���!�\�v:�����j�M�~�ݺ� �e1d�#XP
NA��ͼ���i�1��hS+x�mm ���^ְ��y�nиC F[��Ӕ��Ճs|�펲����tL��}�5x�Ͱ-�#�S���׷��oRj�����Bj�f���N�� W^ �
<��H��y�E��~�=�V��V^C���V��!��{#��ݏ0"pAe ���p�iE���q�~�2Xߏ���H�-|m2 |������۳�����g.��Ǜ����v�������~��|��-H���E�r����d�������+�����R�^���+!��w��g�;�>�'�&M>��=�9�ްWj�m�9���Wd_�}�{t����nӅ����"�)��~����~�P�i^���<l�iC���Q���&�^��_�\��q��9�Cs�{+�|v��]��pk����9o�w��2
xS������4��MٸM�l.o�i~g�fe���9�t����Y����h�����cg�Ha��&g�ܤ���f�
h��NbK�H/���m�.���u� �������e���뻇���J�����~v�����r�H��?��H
��%b�]�^q�]�h��w��9I{h_|]y�O1�Aj���4Z�/2�w��5�)cq���?7ׂ�i��6�́b��\|�����U+a
<2Btƣm�<pNuo��=w��Ut�z����y�p&���$w���z����n�U��N��w[����������l=pPk���m�;�x���t�M�@j�1���R���~v�O� �nQf��=�m��ϔ����2s\�ľ������[������w��O���}w�x(�=�cś��U�I?~�]�}�M��[��O�'ҏ���%[Uu� 5�߷��A�HH:u���\�E�R���\��d��5*���c*Ocf4O�26eZ�L��v-bK�y���B3H�ȗk��r�JA��+��p��u�X,֠��C���r-�*�V-W��2�T�XĜ�+�R�\*�^�"N��]�ej&,;�{��Ĭؒ�z�NA,SHb le� � [�b��Q�����t���w��tݹ��\?`l{<���OB�=�q� �ɛ� �1�^��\��>�l�1�[�/���!�8�L��M���ag�|W���ͷ�v(�o�y����ɘ���P۸���*t�����7��2��A�~��{��^v Y'R�[�F�&P$I�B�e/�L}�#���˞�2�?��5ϭ��5�v-���,X�W�F�ֿ��Q;s�}LBm��j<���c}ß�k�k��4��?Lk��=O{�P�����琭k�� {��͐l��}��ZF���{�ü� wڰ�e�X�44LB>�Q���� ���z��l��Q�5zd�Z�J��ۃ���u����?��s��eɇtֳM��{a?�O� ����nWܲ^�#�ē2Mtc������yM�G ��&���s�k~(`[+?P��\�\o~���}��G���?����ӧ�:Z�6]���ʝ���?�������w����6/���L1�$raH��Z1� ['r)�bLp�����R����0ō][�k@5�R�J��ҕ��1cK�_�ʬ4I .׾��%��e��Y�R� %��Y���=,���X[�u���qK��Z����e"�\ct�c�$Awq��ƢKc74���a�l�}k�+0aW�`�[��ml][`\�k�K��� Q��i�lMe˴�I��a�U;�u�u���Bdx��f0�l� ���2楅���Ia�d��h)��ܨ�؄�:h@
�A�:.��1Y [.��*Q1t�B�@�,��T�Y0��L�8VkjiQ2�H�W�T�}u#Y�~<�t�>���~���A{�<�-3$eH4@��4>^�2��#|�W�� C��\�N�Y����0�]�%k�Y�� Y2�6~s�w�y�Fn;�p6 �!I?~��~HFn@B��Y-��*�-�*��ɓb �}۬�]��~ZG%�U�Ŗ1�yWO ��*{����[֧� ��(�K����� ��:hР�dj\;��͂�idg\����6�H�S'� W�ц� ����.��Y��$��$��q,#���I���?ɨ�c �1ra����x��8{��oi����U�_�f��<e~��z�,froY�A��U-���a*�蠫�,F�S!�o+���f*rDl��mǥ2[cJq�� ��Ӵ��2$�e��}��!hˤ,I-dR+A�R�\R�#��Y!a�]n1r#�5�x�L�d�L�t���l�,.ʼ�;�NS�6��IC��$���R69J��t3��0� A0HH{v�G�NO$R[��HZ���E�Jj���zj�<d������g�)�[�+�c���y�{:����2��Z��-}=�k��,JiĘ�.����r��Q�P/�LlZ{�z뒷�/vE����|2����M�W�=�y�؀q4�.����5��G��9���|k5Sd�� A��1������x(�)���RC�S湌��3�ܠ�4��n� :�l�T�؍\so������W�u �����a��K�_ <�}��WCZ�^y�j/�!�� ��$�6e����W�v��U���GE��4s4p��@�K�R�T��a�'�L�_��z�gqb!~���_�ӎ� ��������m���팥�Q����ⶂ� ]_Y|�ٶ]��&�.�"tԬ���2�q�6ج|�f�kG�8��Ә�]�&�o�$��:k ̤���rV�H�ˀ�w����l�ю{%.W$�E�XKp�*W�u�B�3~�<u--d��+#�4�����u�Q�2�<�tc�X��ʐ�Z��襦�jПܻr�慳v�w�8ǃЄ��4��-�8��!,��dd7b�r4���m̶4���o��1�u��̗R�K��l)Y�JVB,�L.�جW�*A�┘���T��ilW�-ɸ'�,�܀���Z).�F`���B�=트+So>��W8c_ ;��)��O�޿~{yv1�����g�o���w�v������r���������m�|����\�}�-.߽?{��M��\������o�g��o��EZ^����b[|�����[�� B�^Y�W��<y�� ׼�ۚ:Ts�ع�_,�5/e������U�&0U=�������V=/��D������+m�eC��+Z^��k΃x�+���ܔk�� )���92�bl kC) ٖ�T՚�w����otC��}pJY��Y����?������yI"]ˊX�Ň7x6_,j���0�s@��p�j_޽�w!�&��nM��&��&��^\�GpU��0_] %��<�����B�;� �-��3�� � �oC�U�Ю��4�AFQG�l���x��z�0�:�>��r��.X ���,ò��% ��Db �#��(�y�ҷ?^^\���Ry�:D���*-,(���:�/��w��9��u[Y���[`�/�"W�e�#N�'��?�k`ܶ�[�6�Ƃ�>�A��9O*�����ʿO\u�G��=�+�����G�ë��/>�)����7.!�ۀ��6TH_W���3aqUg��򴙀lq�L8��q�7p��5�"/��Q GQ iak�Zїu�Dyy ��H/����U�t_r��݊�)CF��-vu���6����N���èH�6�`g��3W�ŏ��/,`�����^l���C��d�q8TUoܷF��!Ͱ�#/l�x50l@hD�]���VjkJUѾ�_&O~8,g�K�w�l�R����x��+[,�L�*k�1��� ��IkӫUf&2��)�l��3"n�*��xij���c] ��D�a�Dqј^�d%,XB��&�'��gPa��UŦ������%� ע�۞d4&���Fcm+61�1d#v:_�e����#.��ݢ����ĉ��� 5���ͣ�m�V�ܘ~]f�0w�I�o����bǺ���Hz~������{�S�]U��d��$�3:?�䌪�[� �ˌ7
E�-�|@>���Fh���ژm�6�m*���� IZ�cB.B�m���m�*�f�)͢�����qV��8�v0ιˇF06��Z�� _m(Lv)R�q �C������bD�QT�ӥq6�:U�� p�.�;�KϚ��L�e�p�1��!���Z`m���G�� [����X��$V�$
TF���XI�W � �����CY9~�M�[w�{5sT5�R$B�>I��`���P�Ei!�謍U�-^ '�84�bzQڏ�r\�e�����A���[��9���� Y��
оl���m֧�*�h������#[�elM�+S�vnv.�Ղ�*C
�D)K����R���?��|��h5�J�桉p��u�"iY9�"i�H��bp�I��,���Q_5d�44�4,���Y$�p��,����!���~��/kI�,����"�&��(��}8�� /�%K���"�hu^?�����/�:��Mz�ޅ'R��a�ډ|�J���+O�lY:*��U1�]�8�T5e�ݓ!��ƨ:F�����^���̈Z��B��@e^?c�#j�n�
[��^? �xu����52�M
s~U��J�O����ͯ�e��|�4<i�Л˹i��ʌ�Ⱥ��S�j��P}�s�k�,����eȺ]��m3,���xQb�.S�/�ۡٮ#~Y��B؃ �85[�����+m?-�6T�,?v½@���6b��h�����Ka�����%�kA=/V$D#��v!o11n�Vcբ�7��Ĉ|h]g�g�)p[��&}sV|��z�������zbN������_�~\��z�/�M��$�
����˹t[I��ł�rνڱ/�5�ľx�}���P���|uEty�ᢴ�g��W�/.����C�af�|>����� [l�d��9ի�U��.���x��a�����i"BD,�!b�1��{ ��f�(����-#�DD�V韜��V�K�"��A7���GХ+���(Edl�p;Z0�ܒ��M�X�#�3d�Ej�L�8�è�,M�ӕ�fBQe6`#;C@z�y��mٯ����Y����FP:�ͺy &#�^�1C4&�r�\�Hϐ��w��珃��l���g(�v�-? 0��z6CaQ (���P�?8�鮈���y�-ݕ���H���u/ݕfhGxM�f�����]�Qӫ�f��c$��(�D�V֑�0�%�lG/��4:��Ƹ�4�=���֠�t��v��$���� -*7^+�CĂ�����GEw[ A��3�� ���� 88!'��_�c*+*�f ��� � ��@H�&�+`ˠ}#T��8�P����s�ɌU�Lf3�%Q���w��8*��ɒR�DW3�Y�T�
m1�BS���0���62rf@=O^�~�͌⑞ ��@#ɈI�G�n��'��Aa�v?���3�����Mf��(��43T��Ϋ� �_�i|���9�P�kՀ��/޵8��$�Uf�J�W��=� S����41�RJ) e�Y�O�L�L��$�Q&e�Q�EX)#!���r�?@��?H��k���;�)K�ޞ�f:��x�iA��� �d��7ĮJ^�Yl��l�Cr�$˃�|��q�"1C늈1b�ZEH�η��O��̈H�����`��T�1�3�NW2�V�2$��'��f�b�g!�3IO��Y�5�+9E2N�HR!�y$�_
*`�)�#��V E�T;��� 5�FD|�5����h�(Cf�� 8ʐ�$��R�p"<�V�,�3� ��ZZ� �j� �Q��$TpI10���_ ��� 92Ý?ӆ�e��z`ud��m"�j\ ���Z�I!�9t:(���rdN�w�*| ��L� H�@2��:R��*�H(�����9��@!����@�k���k
r[HHIg���_!���e�9AF�.�9> �I0r�oy��>V���
����"�����y�mSCxM+8�X� �դ`)2�3d@� �Y�R,9`;��"���\�P[
�� �J��p�ºb!����"P��[f)Da#����� �"�H�ٶ�ET�C�\�i#rf����(.��nA �r�Fa��D��俖�'�(4���msPY��(��q8�ȅ���[ �#{VUuT� �ᮚvA*%��� �h���£֒��"j׏��R��_^��H��=ZM�rƐ�Ιd���Z��4��s�$��r�|i���Nﹳ j��� �_K5Q�8R�3㨵��RHv�~�Y���lF9��'��3.�$�B�`rť��5N�� �b3.?�_K5�_�;1&��q��/�Ss��e��8Cͥv�Ij+�%����/ܚ�).�_��籑��� w�nи8�[�˭p���l� ��g�h�>Rd�g�( =��K�,3�w��r^\�%is��Yr��{[N��L�3��v��
F��Q:S����Hl(��~0���)P��͇��h�$B���\�!h��gB���8��I }T��?��� E�;΄{Y�>j
m ���GK����ȿ�LX!#��L���~ ��d�*H����)�
M?e����$U���B�\b�Q����"BK
�9��$�,��OR=�`�\"xl���:���� %��Ɯ�E��͗�t���_�9�tA��c, �Ik��JN�-�I����_���UJ����)'R�I�0™T�[*gե"壏����2@fPgk��_�!�4��K��9=��d��X8e��;��3��9-Mv�UZ�a3ER�g�9�'=Q ��+��[�#�� 5y"�-)
�(F�vV]��3��f
�����f��Q�!PKٙ�܇"߆�~�f
�u�hZ�g�5�g� t��� �P�J�(.E��\7)h�Y���3:�$-8���������}@E>XIZ���j�]%5�(�)Y�1� ���ER!g���v��fJI�(e!�|�4W��Z���*Ƣ��8z��:��L��Lț0 9�tʠ �"'�ʭTDf����i���HrZ���MVX�4Cx���N�J`���X�--�-�Ŵ�,��&/�Eg3 �F�ЬCE�~Ќ[#s�Ws�4'�̗J�v����M�4�c�n��%R+g!�[��d�p=�=�#�|����DK�fMZ"͡�_��jZ�|6Ӓ� 5�䢩&Y=�~bEͤL��ۏ��}�rZр�T:?Y`�й�����z�5:�hdn�Ʃ�6.
І�r��MS�pݹ�?I���^�?^>n�?��
���X=�1=��xI�����������=O �2�e�"�L�����&�|}����ޤy���&�i|�o���M�p����M��g��߅����m����ϟ�����w؂�M7y������K�w�m�����O��&�t�R�1�[���#�jZ)�z�l��)���]�c��n����C��*q���-�ݴɟa�*�I���}nR&��\�B��E�r�:]�w%�M�V���R8�����e��~���7/^xb\���m�={|#�#�R�S��&�����ݏ[/{��wͶ�j���-�4��@�� x��~�E���"��x��D����G��߮��/d �e��uZ $�������^Z�P�2�*�M������>��^T�;���O,��^mPe5}�����!P�����E^�������6�iW����߼��7���>Z
x��]�s�8����_��}q��+� �W+K�nn�I.N�j�v�E�TV7���cnrS�߯|������86 �����6�."�����0V�/Co������Ƿ�����p�\��!\��p=w���k�����z��r6���!���P��{��`K"���n�=ܖ�r�s8�⑖t~���=�Z��� ���G[�v��}s"���0���i�ٗ}8�aLtqX����z��'I΋��� s��p��~y�Y��Co�>�V�Q�2z�\�������>�ޮ6{�(6)�pخ�c���J���\¥��j�QR�0J��̟-�%����a��#�������~��R�DN��4_Uk K9<�R�?Ta��� �,���f��û�z�9��0��HG U�3_������l�T/V)y�n�w�v����!Fh���П�43:w�K�.g��]ߗ�Cp��q7� �4��*1P�w0 �`> �K��.�>��E>9v!8@>EC� ����Μ���g��o�v��/�j����.��d�Cо�#.cF���u���ap�9l�F�o������ G��&?~y��{����f���<�6���\&b<�J����>\��2d��&H ��E�J#��i����2EZ��v��k�Z�XRu<�fK�My��+�m?l䙐y^�e�ׇ�Y��ҷ��f�����/���ʳ)���b��Ð�a6�k��O�7����(���Z?ޯ6~�/5_��A��/ˢL���Ɇ�$~�q�#�*bp���JQusT��[x��g�Pֲ؜�����u�]k�x�P����.� ��Tub�,�\:�]��p�\/�tf�c~���PZ:�D�/R~ T���2c(�d��ޝ<L����(�toJ�ԍZ���!�L/��>l��N��1��6T, �W��ͻ��]�D=�W���Ck�(�Bt\/�N�^{k��}�Ѯ������꼨&�{:=j ���E0�p$�Y�`�O-�!�C�H�}i�fZ��j��A��F���,�$�]捳�U�i�|������*�B'��ڕ ;X�H�8���]��=2�I�b�����hc3����֌59v�j�V ����9� ��6��b���^�JEV�GʷM�GL�֋�Z;��)��*bVk�Ap�&��4筐�C��O~*P8a�6xj)�Lgu�f��j?9���F��t���}ydR�oց� Z����#Mj��m2�Ԣ���&��E-�+�qx�5�jV��5��(ː�0��� ��� <X0y.슮� ˔����s
b:)�XD�?-���D�� �&
�(��q��t��\��/�nڛ���}�4%Y�k�4_/�+��� �#{O�&'��� 9����e�{�eA� �P�<��c?�f��bZ����%�[��:�C��!ǃ'����u^oPoh���W�ץ���]��vK���0���I߫�Tk��M\�0!I��ބTy��F���� O��LS�Wo���U;�>�I�n�!D]��3na���@��wJ�3�V��;ԣ��u�-,N�����V;"���I��2�S���4?]����~;]ﬔ�dvV���t]��7*b�Ӌ�{+���~p�������.�]�����d����6Ag�I�����������0w�N�9�Ŧko&*��N���-8����pd%qzF4�]B<�wC9>!�"[��y&�|�o��-�-����,�+��;����V�E�M��+�����`�v  �\���*���c#�D7(�{I�ǹ�:�_w�l��l2k��&�ͺg~����҆;B�gf=�K���vix�ɷ˓U���׳�:�� ��n�ug"U�UhP�X��ð/�IRg�c�R�m�G<����ɂs�0<��/K�:� �ȃ�xC�,f����|v�6�|1z���>fSB���l��Gl+@N����ۻ� �x|�t�wa+@���E� ւM�6��\���B�� �ol.
:�����d�����75c�;sC���l�+��\���9|ѭ� �x|����0���4$�3� �+i0֡�piy|�5�Nl�4��\V�
����C]/o�4�Z� 㚬8��U���+� �u��c��kr�V ?Q�Ԋ�>s��2�&{4ZM=�;�>2g���}���`0=>(��z1x���c��.�'�ʫ�:�k�h��-W/�\h�W�z����p�� 3�T�Qb�n3�I�G�*_�rJC?Et�h����:����/�e*& ��pbV����� \����4_�A܇t���㕬�Y�Y�*� ��zN����rޭ�W���*z�z{q=pY"��FB\q��[���Y����1�'�JɤS��AZ2Q3%"J��a#+G��qĈ�#�G��׿��L�|[������E�\f����~�Z��ۗ�J�}����P�s3��p�� �(„H�0��ΨN� <�́��1v9�@MA~re�ȍ>��2:�(�e�J�*@�M�QOP���#����������R!�_@CU:�D=�g�ӂT�-��P�ɸLu� )H����3�!�����TW��o��gq(��BQƪN��%�9����7�/��k��Z,�����/�jm fP��: SB�0��u(fP�wF��S%�`��r:8�c���O]�9�O�O����~������ ��J�8�oQ�}�GO}=�a�@?�������/K1��n�:Q�E')�`,�~���]�}wF��;g��y��WyW�&�3������]����,o��i�r�X���>��'����T��<S��� �� ���h���g����n�#��G�Q�:,ݗ]5V)Rc �P�G��+�X���(��F9�#L>w�@*�����G�ފ�F�ITs8Wm�CÃ�{�(���r\��H�Za����F� ��ID�I�dyJ{�0��) XСJ"�k NQZJ�8Fo"� '�mbן�Dd���54�N���Ԕ�\�&��4_�ĺq�t �|�0����9�S%D��^5���a�s0�A��3C~� gs` �����,�����`���/�0�k���3L����7�0�����h�?���� �Goo?��0�Go��8z�i:�|z�o�6��N�C�+��������E��}��8��Q�M���߽��~�n4���1��M����6�~��$ҩ�O��2~����ҿF����8���FiBH=@��.Ql&�N>��e�P���֭.X�2�]f�%�̿Lft"s�_T���������@�H��{ UY�A��tZ�L�3ya\����zMŸ)�O�1��#_�Q���,�j>1�B�/G���7�a4IUT='Rrs%Z�6yont1���+q��Ԏdz��M ��6=\�Gz�Imz����O��&(�^���b��<�0������?�8z�:Q�Rn��d�q��ٛԸ�����6���`p��I��|w�����z�&�gϙ���-'gSO�8�k�u�D��tV�mY_I+{F���F$���Hh�WOG�&M�#[iL�#6��k��d:c��y3�r�ќ��QR7
JTIa�s������g((f�w��Q�G���܈��cU���gan�R̍�27�ga.�Y�~33�#��fZ��vY^ƕg�[�����Շ�v��(?K||gˇ�i��eV�Njx��˙�?>�n�5/���tPȜ��`�{8e=�
I�S�aզ�DL:S4�� ����x<� �,c���m�b�T�q�p��ۊ�h���Sn�L�����1��&l_��(~V�ML���mD8&��
�y�j� ���,Ln3v �ȱ���&�j���^�i�Z(�*kH(F�T����lTl���+�W�ƅ����Ըk��Bp�]� �W���o��œ:#j�T#��S�,�Č%�b,�l���*��W�sf�����3c�[D��o$?;ԑC�=��KV��Ӝ�8I�Y�GY`"ǫY��ez7���ٲ���Ь�޼����+�xWKM��j�F��Db'�����&r��f�'r����W`D��3%hₛ� �L�+��5�w���^����҆�h2y�n"���*[z�am����[�A]�q��x�{�!���aq�����R��
��A��^��{��D���a乂!�q�!Y�P�@0
=Wx�g�1B"Tqd��yP@*c�#�!.�@� �<æ2B � .t�� B*h�P�����-L���F�xm��*��P�'͗�dtM��
'O5VPĄ�Dj"��3�{)T �B� �K�kB��FB��2_��#°mW��B9 ��q�P!�
!T�
�c#}�^D7�:�G��M���-��@�oP
}�U� �"��i�$$��e!�k�B_ ѕ��X}9F�<"� gJ�Eך�0����O��>�B{�
��+"w�8S���{�8�9�X�� �a��Q<����‡�va)�#΁�AX�x����^�խ��_�0--��L����[ ��ὒQ�:��AP��i�ֲ���~��<���w�_�`Y9�d%��?.�Ե���"1�Y��\U����9ܾ�J�Kh�C���6܅{ݏww9���\�&(��J�9���@�3� �Y�C���!�:�B����in����2�(n/�b�������0���v堢�t���$M)��:ψ�mM�SN�'HS�ԀU������b�B�Rt.���X�S�����z��b����<1�B��8���@J=�� �@?lv'/4W� [|Órt�9$���M�
8�n��nj�����E dk�����4��n��v]2KL�@P�p^�]��Zh׺(Yu5�$��5Xi�9u�.��j�AA�p�&2� �}�9J�'D�b b�qZ�Bl2��:h0ak�ij���a �.�%�A�J[�@b1�2�H��Z`�/ �Ԡ�y����@w� 66 nL_v[�1� ,�^x���I(��H�1?�Ȑ�p��(vO������E3��-Fm7ڰ��TSN�����Lօڤ�s�K��ֶ�nd���?���E(�I7�<Z�@nE(��Zs�0���J����U��F�x�W�9‘�R���&.�`1^6v�v��
�.b]��#T:�"u��%ټY҉a������y�}�RӶ� P<ql���'�ljn;�}PB�������Cr�{��c��J�ǻ��wy`��]hF;Pz�c0��h�%�hyW��ڕuW_pj��^|��sgoj���{S#�p(�Y�8�~�jı�ƴW#�l_j�F��i�|�R�0�zV#"���@����d�-�wx��T[���ۊ5���:�dc����ѭE[���U��*���jW[�܁�ם��};K��n�Q�<`�NG�=��H�Ç6!��j�8;g�Z��Wp�i��du��2�,����9M��n�i8F^�P tGۤ=؞:�l{ۓ�^lOI�p���U.�qCS���YNS���(��־����@�%�ǝ�H�[ 0N�N7%� \\n�g:�s��!p���w��,�Հ��@�����Aũk9�H���+]�A��b�t� +iך�'���v��K�����L�wEl�|�w��(�z�������Op���p1m���� �U{�M�\F6�n��;��h�5���z BJ<�o�>��:�����Lt�+)�^�1?]m��,~����d6W:G$E�b���Jo.�bn�9�=h��;XFGC�Oڟ����������f?~��Ugg"��mכ�z�ge;P]y���P,q��\�y�b�� S��(ֱ{�wq��pbY�5W����~�'օ^�2�8���X�3N,��Y�qN�1N,�ݏ��dB��qb �8��O��_w��$OO�Om�a�W��ú�#�o{��..�@��� w�,���̆���:�ݤ�C=�Ӟ�9k\N3p��]�S�U�z��@uV)�����p]%ye(͠�.�����H�(֖��I�/2���g��^k+�l <����Y`e�#��A���!�>:�����a/g4+�ig���`��`��`��`��`��O��g<�g<�g<�g<�g<�g<�g<�g<�g<�g<�g<�g<�g<�'�'����F�K��O��D$�7+eu$"�S%+������t�} (�8��>��˦Kl+��J�E҈2�G��
��a�Gtddf$"]��D2ꅨ�B,?M�R�� B��뛫�"�T31ijZ���5�R:2�V=θ����K�E��N5�&#�b5��<�!�:�
*���\+��BE�7_R�s@�x��K�OVNF*p�'t� ,tj!tHJ�"�
�U��B�5�I��R&��D �N��I�;*HD����+�=h�% (/z }�U�+�~zPp� })�$��ls�A�� Bݚ�������Wk���d����DR�>:�V ��h\hX�}�����{���=�qՔ�H����G���E�"��оWB;����(ΔFT^seP{o���D���n��/���>SQ�v� ���Pn�M‡�n���v�,��K�0�5���M��\+��M0�o�/�x�`������_%����Wщ� �.a�7�ad�J%#BQ�T�!��-��g����3)8�u��g�\j��xuW/���[�>��c$�?I3��o��i�(sfe(�9Ҋ�Yd`���Y1��(1' s���a�TO�T��^F�+���r�pH�e ��Zw㻒�D�� �q�>��e��6�����O��RG��-��<EU��z�~��cը1 ��f��o��f�n�U-}R2)�S.����c��ްҠ�����z�� 2O3�H���e��u��3��M�D�<UI�j�Q��I����W'�r�|}��b�
���˯��#�
x�+)JMU0�d040031QH��+��I�+��a�P��~V���/����|pw7Y�x�,�
x�+)JMU044b040031Qp r62�+��a��}4�{����#Snf����ĨU�P�er����� |'2����mv򔆃&
�%�yř�y� �+�<���U�|3S�����3�'�p0�
x��}is#7��~-�
�v>�ջ����9㙲KS�'�{�$�,k�5�[5������$�y�p���L����8��f=�Q������7��������Q4��W��~�!�C�������_ߥ�t��.�{|����E�]��zo��G�l�yH�y�ʾ=��\�Ft ����~��F0������k���u���6�l �O�tss��`N�����|c�-�m�3~�u�.�˴�z�]l�׷g����YV2��)�M7�6]�_?l\����n\���Lۣhv$�&�p"pM���J���MVK1DR�Z�'a߀��+X����AR[_2��$)� M$�d��d�(�%�P�� (wO�pO%�,��=�gOS��Y�L�t垮OM�t9Ϟ��b�H��)%s�ļ��b��7��o8�����+R�A�%`�
\]���j����� &��rXغ�ЄT�'9|!i;��RR�s,A�{�4�6�<��!k�-��J��H^/�Y= ��+%�-(E��պ������-�!�Pj%��E.Y����|�A�B dM����P��'�存ۊ`2�kF��e���S�t��kϵ��8���4 ? �a�D��Y死�K[CR�j?��}G���)␪��!�h&҅b� T3�u3�L�.��Tf�1�a� ��K�j.~j�%E�1���B �7Ti�Ϩ�:��~���KU*h�ƌ�c���B���!V�p�p�������+�X�~3AL���t���&Ls��aBi�(�L/����ń9\MĄ����a2g�0���p�i��������`�o��dt��Z *�4��v�F�� B��jF��0@y����7E�5ɴ`�tՖ_�<�}_㯓M���e��Q��Zj����Q0�W��Q�, �M
�ۖ�-c-�&�d�������%���bj1fh�� k s�so����� ��e�%dV��8"��֛�z����w�(�4qX*'�N������8j�Rkɫ<�<*���Z���� %~ �@ښ��p �oM�Њe�&\H�E\�od^Xl Ur�4��R�3���N�-�D��ܖ�2P��Җ0*P�i+3�Pl��(�-ꜱ2���9Р��_��-_ꝼ���If��b�3��Pk-�8H���O�CP����<Is*�s��8w�i�lJ�&
��zبA�\ky�(�Ke%}��M+�U8� �Ei#w�
mEN��*�\;Yr+��y!��8�&�H�HЇ1-���p��b��bN<��t�N��d5�6���ז�X��G��~H2�B3-C�`�I҅WB,��S�۬}��)�j�(����R���[����Z� _I�$e��xا��Y���t�Y[����d2��<*�� `�^�=@���v(FPl�����)�-�T�8��#�m'�|�V�oDz� �����F��;���u�&Lri�R�ЌQ�3O �Z�D�Z:3'Kb�j��D� ���aI2���r��N�,Q�+�+����*8%�(������.?��':#_4��r2�������g��o��t�������%�}��O����rlF�P2��?\~_T$�ػ���}������]��,�S�
�񪟾=;?}{��ޣw�>��q���?���l���Z���������|��CM���蛷�%��d���ޕ}����9;>e��-� ^�d>���"T��|����I��9�G/.L��E���炞�%�N�%O������_���hI�=��iqQaƾo�@��v�5{�oǗ��. .�>���Ǔ�~&x �̅'�fED���K6;>;�ab��r8 h;����q��B�Q;R��NOj��x�ę�K�3z���N(]��(]�0J�% �7AR�E�)�6�+�&��}D�lC��{ (k����?4̻9 ����^�$~���S+%��>2�?Pq�㞔Ĕ�n�J�-�t�f�-P��r~zz�/LH'���4�[q�T�ՑT�%�'� ɒ���BeEzw�|��u5+_<i���9g�v�5,��G(��)�F����N$�����j5 �q�ڎ�}����qfd���7�W$�-�S����1�y.�O5`�W���7sy�� �l�V"�[ВU�xV�����K��R��u��t��w�Q]�4��Y�e���iB�Z��ұ�V�ˢ��'��q���L2-̵.#�e�%�OW��_�_�;}(]E�����e� �ҝt�u��d'�;�����հ����*��vѤ+Ըe�ѕ��� ��z¦�k���7a���g�–� \�i0���c�y����Y�2��mս舾��h�oKϒ�;���tx���rV�r��������ԇ���f�a��A�S��j�� A�qˆP�ծ ����}ܼu
�u��l�~�!]s��D� Ă!t�jS�{� (��/���C�^T��`tX�ʄ�h���1�D���I]ț��5�ۀڞA����T��ѡTW�Vb�,h^���.0�>?�ـ�z4����B=�����!NDo����������3 Ʃ����$"g<<�q�dPe.3@�U�8�ORL����1�v�MC������ ��.�-"a K��-��H<gu����ҙQ��!�D�A��p�Ѐ(=�F��9^KO���n���P���v�3��ߩ�J%���n���?�c�1 ֙��@��և �.��J�*���;0��ms���"ȑ^��v%�k2���$0���PckE5�#Dns=9.^‰Ӧj��B��*�\ְ��M�n���-�rd˰j<��?������UUN)
OR�1���FZ��0��a�ٚ���8V�L 8����[�n�I�B�>���_���ԟs�0�礎[c��o���7U�&��rqq�O $9)�Kp�ˁ{A���� ��P�Z����� 8�õ:� �}�D=�4|:�����%�ަ���PT:��+Ae������k���O�I�M����?P�'f���!�31n|<�V�.֊���o�UP���ZqO�k$�J������rw�ޮR� <��wZ�.��ϷT�G�W�;�޼�GWS` Ů1��d�V9��t��m!_NM.h<[�q��.p�қr3�rB���%(>��cyQnC;S������r��Oرۆv!O���,1��h��\���F&bLȈD�H��9*�չ�����a8|����&����fsE�)�:Jo������[<󦀼Ξ_/���&�~�l���6ݼ�Yoq���l����6L�Sw�[������zy��N7W��֦�6Mdk�,�4�6��^���z�ˏ���_��͕m�s*+�+��6����tkI-t[���_�[�$�ڼ[�aw��2WT[�̨jӠ6�I��V+*���v"��Z��d~}��������2�*\�kSi����f�xUZ��<�0a�w7]���>{"(� �L���|0~��_z��}�[����}���v݁��� X谺�^%�M��<��a����s�y��zu��8$��Zm֟�o�ů���S�Cя�h
�բi�vⲟB� 'P;R�z�edG~�ݹڤI7�鲕ڠԄ����U�臠I�͛��"٦W�������q����wrЖ�Wx����zہ���R��;qk C�ݤ���� ���$��n�/���sz;�p��wz���&}c�w�ޜ�"\�~�LS3�,~I��˫d��`�5����?�;�/����&Mn�:��O�I\ʦ�t��;5}�~B˷��Z�����zq�n6��N��ǣ�Q�4<�6 �M+v�e��4kpu�{4�w�Z`�;5m��6k{A���J�i�HEJ�b��˹$F�$�&I�y�� �R��(�%M�r>�sށ�r�\.�T��` Y=nXBR ��&, �2Œ�\-�2Q �� �i+ޔ����In���v���z�ߨ���{q�;���q��7&���l���~[����v�L?|�é���9�Y/~=z����,��$HQ��6��P�l�l ��˯^;{��Z,����*M�8����t��|`eK�'Ym���!��na'�-\��u�e������N5� f-+�DD��w�c��N�7�����Z�=�sM��V���F�tr����M�E���O���� Uq�(�W׷���_�Аm|��`Y�1�s����ʈ�r��j�U�HT��gS��?e��n���!̹�^?�s��/%;��r*D$����_�6��=�DCM�ͧ���Ҕ�[�����)��Xu���u�7K�1Db��nD�"���|UP2�ZϏ����%�UD��I�Vs����੊o2��F�=$)�َ���j*E$�z����y,� [�R5��b��59�yC�;{�C�5_���9��{���$��nÐ�R=���"jUr��X�����%M���f;���9��z}���ۇ���"o���&i7��E��4��R�MN�#`S�d9BD @��}��E�}i��9�&� &��6cQ����|(�mVf�j� k����v���q*j��BX�Q�����&3`v���)�Ѐ-�wrJ��Ha'��X�^�Ӂt*̇���l
):Mp��+8=x�Q�հ�9,Td�E�#ր?#�z�6��Lë8�DTć�،�16a��5�@<J�� �h]�F��G�kѽ�Z�'�@�Y'#D������p�`�a�(������ٛ����ל7i m;{����v�p��́S�J ����3����>I�"��v�xd�"� F�]�K=b~�!����p�2�U�1��B&b�iD��M��`w�]���k���`�(�rJ����%FT�G6#J�ߧQ|�;� ��gFo�hF$��MY�L?3�l�K�~��v��h?��;��{�U�0�x��b�U�[&w�,�Z ̒>b�4��C�'����ӥ�L�AV��A�j1�i�
��E�2+��.�o��qv����v�ՠ��Yl�вq����n�����8��!%��4*�Rt꠭0�v��g��0ACw��U�l�u�&��q�i4���A�L���)3�Ğ����n��cO�&�=lcagw���*jjdC�Ps���GYM��G1`si�c 8邀�&��Q ^@1ɂ@γ�ju������P<3��/��<)9���:� 7��)f����GDž ,n�ߞr��2� v��(B�ɺ�x���溱EҨ�L�gEB��и��Q�T��� S�V�^��$�r����C��մ���t�ػ˹k�"
fB�N�0��='��`QFd��|�r
k����H�H���#�z`'�kjŵ�g8��J[+/frC����Þ|��4O�u�_�l�)�ڄ��� ��hG�BT��jZ�ǹ���(#��_��zF��"|��a��Սp���g
�R;� �v�&��ǒ��d�W���ޱ��jkyt�.n�MR -�����0��� �Xx�g��bl2����e�ctX�Սкֿ�ݪ~�y�^쑄��?nv���:����l�W((�n�I������ .�M�P<-�wi���!?<�҄m�&� �Ǝ���p7^��gv��%���|�P^����#��-g�zR b�;��7-�� �+��(D���v�<b��ŘGN�_��ysSv��O#p���7#"�q� �z�1��:F�6�_� �|�1�t��?B�2�������1�� cޥ��1��0���#�:F����2x!˫g#�Щ���d�*�W�������/8F��L# �G��H԰�y�R�'�$ntx�AQ�;F0�����g#(�f�7#(ټ&��<�A��d���Г��������bbj��?B�cQ���z���ۨ�=���Y_^E)��^R�Cq�r�]�=���p�R�ܰ���/:�x�W'T� T8��`ï���S^�C�V'�r��j�����O�w����t�te5DOqg����J�~�\f����4ŵa�{w;�fs�ȣ��p�P�5�zj�w� �'#�����A��Tw�V��:�9��α�>0"�G�-\���ƾ'����^���h6���d��^�>�'�D6n�}�����/l�{�F���<�9�z�<u���Qb����* b}�og�T�H��(1̰�(�P���龁��Є֜��2�j�CцL��T���IC*̂%g@�M���>x׸���a([�а���/��n!eFI9r0K��x��ɾ~����ƣ����4v`8�2B�p���R>&Q��b���f�)������JgT�G�����C�5d��x���m����� ��v_JzPB���� @O� Ԃ�B��l�� �N�#4|�$�/c��|z��s� h�v��]�4�d��� ����q?���w�v�ˉ �S{��t#�A�y����0��g,C>�W0�Ȃ�<���������WL4�� {�9��Qf�Qhc��8�i�X���aɠ��|�]`���qI�9��5�NІ�S�I�ԔWC2�Wn���PG��^����0����wꈤL�����4��6�2�ewV&�E�o���^�`1��c����Ƙ��JIaJï"IƱ�{O����J��EFۦ� ��Lj�� z`oJ� ��,���w�ݼ�g"=yk^lޢ���m�L� �3�鷁m�͚@�d�5���t`?=�Pn���:����٫~Q�8;�P'�������"�y�Γ�% ZM��-�؟�;�"�8!=\�-`�Q�K�<�Oߥ��� k� ��5u����w-L����A~drT��o���u?�(iI�k��m5x�]s�ఄ���Qb�? 8s�v�C�$��y�D���A˭��^ �;�ir �%� ��� ͍�nBٵ�%us?�\�{ȝ(�8J���Z�澗C��w�xx
�T}���T:���}U�3���s"�]��hQ�r]Ȩ�o!�W�J������ը�/I#�g����j�R�0�{�$4��4j Q�Gw���lt�6ݫ�e��D�{~zj� ;�z3D�Z�ߓ,�uٯDߴ��&�W�Qy��5���g1�EE�r�Q��c�m*h3���v��!vﵺXoެ�w�����~;p$��4�+� ��8 *�#���4����_`����t��,�k[E�be�9�^�ZK��}4� ^���r3���ϰ�N�"����X���Ӕ��n�;�Ѐ )����P�t`��OW;kj�Wa=ݡ����F���"��f#(g-���dDg1-��"�k���qg" L{�>7���shZ�Q�ꉭ��LH��� <�{f��xn�8 >H�){it6Ӵ���a��e\g����(b"5�Q7��G٩
���5�y�\n�l��PQR��{�*H�G��Vuk����V�Qc��.¥z
w�M�|������]��ңgH)���w�|�(�� �D���D��w���7��F�}�{������9�m��Ov�?���ERѦ�v� 5E��Ө�u�0K�d���h�%���?��@�@r�1���-�#�� qDks�4�׌�Ap��䠆&�>xh�i���y�{��A0Ë��W,4?q�h�$G�<�gY+�r�#�K�_mҿ���ԏV&��#���Iw1��0e�ˆ���f�*5�i-и���:������t��{�[��1l��AKiV��W�f��\-���r1O� Ɛ�s��%$�`�^j��(S,Y��r.��I����ʞa��$R��M{#׎�r��N�r��YZy�m}�\#��C!���iG]���O<�Q�!��#��:{���`�?����Q6�A�)B] wO��:���',���w^�YU9Q�8��8YU9���� _�C��Ś������=:��IU9̈́1����V���IU9Q�o-�*��<ߤ�����î��9%U�x�m⤪��g�T�S /7�*'ZL�TՂ����cH����%U}ASI:KV=x*ix�T�
^V�T�Z O-�EfS^��YX��L:p�3 N;/��-��݀�ԏĎ2Sn�2OG�Zb�Ӽ�g�5*/[I�as�]m�X:��(5�LP$���T絈T��O s�4`&�@n�z�v؄���w�w����� Ѷ�hH��OF��m<<|�Xs���F"����Zy1s��&9�Jj�u�9d����X�+L1�%zv��Ev1w}'������c���F�n<�l ��a� 9����n�cD����W,\>�jg�H��sl����z�lכ�l����L�Azź&2e��q�>�0��8/u�Du�}y� 6�����'BW[�0L �� �Ɣ�(sAg߫�������7Yrn�T7Yv1��]�-uĚ�A(�>t���� �^�ۏ�V�@wf�L&�NZrN7��`?�i��t;�<H�J�����0<�3���-���7G�����\r6��H��ԛ#�Zy1.c�����Ɠo����9�K���9�� 6Gr ���Hɟ��H.C5G�-ܑ�3$^�:��H��8�ls���O�9R��}?��͑*�Ih�x�#�Rs�#�&��9R���՟��H<�:��Hl��m���^��H��g�NJ�� �i �h�#G �Mv�T!�V��i�"hmF<��b8\����x�H�{� �g#���͋� N½7F�6�_�`�y�a������`��� �"�,l/j��u~�q��8G�������A^�9
���}� �š��f�����eWS^�*�#)z��k��ȑ� &�<{�[��� N4����\a��P�P-��\��B�֘$� ��H��C�J -�s�mN6�v? W�&��^� �G؁3���=�}�������EA4�n�<�B�����@ 6�V \��H\o��Z!���:T�Z�&YH ���<p��Z���'ӊ�Σ����z�mֱF�����>)=�k�0u47���Z0�Q=+������U�[] ��C��:- '=4�a>���᪆���w��S�n�&�FX��/�RL,�_�c�z_�c��I�X��ĸ��>ݖ��ؘ(����1Ѐ�w� {]:�Kl>�!F0��5 �>�>��,�W�1�ǘq�� �[.���\�|�{�wD�m�ﴺ$�9�)����Ecook��R&���-�鿫Aɪ�d�ɧ1��x��g-\Z�x������z���=���.~M�W��Ǿ��*A���F�iG{-8}�m�3�B]C��W�<_؄цO9!�q{��mm�3�rg)9�_��0���w�����
�~�kc�����5?�V:I~2 w�U��-��_��|Ȋ�3_0͊1N+�{���6&C�i��0���.���ӫ�b$%E��I[�G0/w�P4�:]E�� EQCB��M S]N��nv*������=��Q0d���CQ�3�V �ɴ"�o(:x��x q�PTa��{ E� �T�2���E;�-�1/ZN����@��M�\O�j�.ޡ�ց{UF�
�;�� �Zah�ړ{C� Оy(j�44�;�V��� E��P�ޡ6m(j01W�sb�h�N Hޣ:�zM���`�=�Vk�|O �І�G�j- c/�Ā$<��ي�$LM"��=1`��i�[vN���X�'?1 �"S�R��>b$a��$'�>��mț�$$1��� z���� ���dF2��S�]�i@i��aB�?��Ҧu�šj�=�H���h��9V�� $��:/`d�^��?/`dst��u�;]��)�`�BC'����,�8�H�Y��b7�-]�d��N}���h#9�� ��,�Fƌ�:�
�(��ǣ@���Q$�8�-L����d��ƍ��q{��ɀG2t[v��M��Laۛɑ{�4��$�0�O�� ۋ�H�3�8W�̈́�+�-��qAt|[<h �P�Qn���$�l�N�l�W���7��[�o�C����S�}�̦C�sJ���~���u���������1?��g,�����63G������f�Y�����ѷ�����ܻt9������Q�Ǚ-����o1Oo�yl��k��j���~�,~u ��ݭ��r;���[߿n��.�WoQ���Q��$ߧ�o���g�]/�%�6����ߣ?Β�W�� �w9:�s0%��Y$������z�j�p;_?�.���������BQ�$���3�%�V�V�����
_�o v�S�
��W�O�E*R2 ŌX�q^X&�6I��ӄh)�ڤDI-i"�=�$ͮi��z5����t��6��\�[����o ��v �g����y=Ko������{�q��Ϫ}W)���]��g'h����"�{���>Y� 5��l����x=+�~�zF�.);����W���/�s�ng��HpR�zg D��5�XT�v��h�GFC� ��02���F@G6����Mz�i�����~������������z���n����S�U��0ڹ~�n���7���zs�����Sl<od=�k�b�p�L����n}�槳��K�N�*mA򅵛_�����zۅ�wۍE������gwۍO���Eg�)���L�|tT�\��l�d������c?28 .^��������N��G��#n�Vi���Y��?[�_vqs�>X��5�$ ��r�w-T���lE -׫I����<�Oߥ���C��7��,�p4]�^�7��l�k�[g��l��.��o�����-��)�]B�D��%;[�0��Z>'��W_W�)��K-xz�E�B ��?`,�W :��䣧̀6�C�g " ?�.~ze�6�ǁ���ݱ�!10����I����8��R��(���G� �k��ĺ�Gvc*W}��PtK^�F=t�]���� O����i��E��~y=�� ׫�ߡ/Vuq����"_�"j�G�lS>�W�O�o�������;3�S2ĺ�R��I
z�]�T�S��(De�a������z-��ùχkCm��s��t��a�\A��������d�67������(V֎�qm���n��Oɧ|թ(�/S�χ���������p���
�[L:����a�+^��U�Iov��7�jtts}�k��z���b��x%�p"pM(�F(JB4Y-�\II ��̽!IJ�B 4��,Y0�m %>e���S-�S�3˹pO��ӔjjV+�=]��+�SA��=]γ�s��/ҥ}J�\(1/���� 3B�Nŧja��>���o41��!+pu�
{� H�W��$��aa�RBR����.e���/%%l1���gKjs�sx�6�2��D�ފ��R��"+�R�:ЂRd:pZ����~Zn���/J�dQ��%KB���/3�R�����Z��"�~"����sc[Lf�b�� ^[��j�j�֞kWq0i�i~��
���f����/m IH���h����~��C�r�z�h��`HF�łP���L3i�JS�aLjf�!�5�B�:,�������9�H��o���QGu���ƫ%���TЌ+��'ƴ���"uC�4h�0�����[71Vα��f��P���e'L��ÄҠQҙ^611+� s��4� �1���d�:a�ɕ����' B�������Z���� �T�i&��r�P�?A��[Ռ��7`��f�4�o�Zk�i-���-�t%x�?���_'��9<} ��գT���cm��`�'���Y��YN�0$�-9[�ZPM4X�e=K��KN���b��:4���*��<qu3�A*;�KȬbaqD���7w� �9/,�2�Qi�8�TN^�t�52[A3�q", ��5�֒Wy�yTNM:���3^�J�@�-��59%��ߚh��,M��V�0�<�;/,��*�V�im)ę��p'�̖P"P\ nKh(�\ iK(ᴕa(�hk�u�XAn�hP���/��/�N�R��$�a|�rϙ�n���v$AR�v�'y�!����a��9�9�Z�; �m6�N�j�4��a����tP��¥���>�Ѧ�*�Ѣ���z���"'�[j���c��
�ah^H�0ο �R(�aL��|8\�X�媘O��"ݫS"%YͤM����e?V.��E��̵�Lː&Xm�t�K����6k_�xʵ�+�w���R���[����Z� _<�W��a�f�fY�����IDfm�v�YZ��,��8^/�5{1"��ƃ��9� p@�E�N'K�8�PnP�@ގ��LG�Z ˣL l�6�-�p>�IM���4a�K���
�f�2F@�y�X�Ւ'ڰՒ�9�9Y3W�$rep�� �H���N� �u2g��\�\ɅV�)!G�����f�ˏ����9�Y�''��x��|vz���O�o>���>^�����t��-�p���������+�����w컳��f�o/K���������|��CM���蛷�g��s2{�O�\K��#&�'����������2x�����_R�PI;�pv"��'���8���0������ z~�<; �<ѧ'��g~IJ�%i�P>��E ��� �^P�����;�d�7-���"���x��w����ș O:l͊� ����lv|vV���p@�v�x/�y��p煤�v��l����@���6Љ3ӗ^g<�' -�bgǝP�}Q� a��e J@Bo�,��=�S
%l�W>JMl���"�ن���P�����?~h�ws���׽0 H�,�S)D��VJ��}d����C�=)�)uݬ�"[��P�|[���ݿ���� ҉j�?��$�(��:��D�D�!Y��5W���H�.��3��f�'M��>���n��U��9%Ѩ���ɀ^�|r^R�\��f�0Y�ѳ����"Ό�~�������}J��Q0&:����������&`.�>^�a������-hɪR<+W�����_
)\Xv�K<��U����ZԠE�-˄�Oj�T����bX�|�=�]��n�g�ia�u�-�,�|�r����*��C�*���l�,cѕ�]&;�atG8����t��W�Nwu/%��&]��-s>��l']O�N�6=]�f� ����?���^�İH� ����sM,��������n��EG��^G�[z��I>׍������� �H��� �>�(D�5[��^WK�N�j��F�B�vMh��.o���ը�S >��Vg����K�'�e  ��hW��޳\@�o~A5�j��t���U&tHE��Рe� '*l�N�B�E������ j�%�إpWMU.�����3dA�¬�w�a��q��գi?P��ꁭ�� q"�x�\���X����ŞY0NM�>W&9��1ph�s'�*s�Ҁ���i}��`:�|դ����oͅ��'\��u)m [Xr�Tn)ME�9���%u��<�J�7 r���C�D�A4�p�����Zz
-�w{��� �1���N�>P*YM�w�o���ێY��<���>l�v���PbT��܁)P?n��TA��ʟ�+Q^�A�>'�a�o��X;(��!r���q�N�6U{w�VW�岆�E(pnju3��Р.nY�#[�U�Ʉ7=��$�W=����rJQx�R�q��6��]����S���]ı*fZ�ѽ��=�zu�O���I���z=����˄1�8'u��=}cN���61��O����~b �I�X��^� 2$=�Q���Ժ`UE�MN�y��I�}�C&�q��ӹW/7��,I��6��G���Im� X *����T�]s�%u}2Mjo2������=1{� `�Ը ��q�㉵b�p�V촏X7|x묂�&֊�xb]#�U4�T���C7K��^�U��Zv�t}��b=����:~������t5�PlòkH�m��LM���V���䂆��e,A���,����=;��y�� �;������E���L����uvʵ>>a�n_ׅ<�����6wݯ6����]1&dD�?D$��C5���E�5��C���=ZDB�J}�����  ^}ň1�T�R�hĴ��>U,ҴKW �P�DDyL1;$��!<�8�����e�j���B\GS�!�F�j�J��05��� X�CS�d��? ��ɘ��28�%ϣ(Z�lE8�H,����5�WkL�;����@ű�,b�*�T!���O�}R�m��%b�l�Z�p�IL�ߴЄ��{��"㹾<�b��fCX�!Cm�9�^�ćb2������Y�8X0GH�R��(�#K"��J� �DA;������L��.�~��y�(��U�>� fT���o�jX�2�L�m?�����ʘ*b5N�L�RK�!�B饊���T1�8bP#�b,�{^�* �*�\����A�+�R,Z�U�^��8�8�b�#����On�l{�Q��l�n��UھU�j����%��%C��7y)L�MuF� 5"��
��<J�v�U*��#��"�xdbLG*��c:R4�LF4�TD&�HWs�"���$�/:%0w��(1�H,��%�<+i"�X�9Cܵ$�ȿ�5`�4�����Xk�VS�X+�����m[Q��k8�M��1� #�A�n�����:b��k�):�G0"%��1e:������R�b�z��; ~��J�>P�����@RFt�LE����ᘂ�H@L�h�`��4�
i^��K.ʌA6Ĕ �5�Zx�I�'�Bx�H�'l����+��Y��:�B“�XxRX;(�@xҊ�@,���O��AxBpOQ��( Oi������.B[xY���+Oj��e����j�t�Z�J�&sj t���jc[(�U @D�3���(�������Či�.qOQ�x̬�1qȳ\�(���uu� �-��%�Ǡ�A�$c��C(}���9ШU ��⫧�����h/�9(��LYMb�97ƥ����
krde�ԃ,��a-2�#�q�$��h���E��1���L
ێ`���ng����He���6���Aaﳯ���H�o��eZ��R�D����*�ײ$R�T 6�t �X�y T��zd|,��*^�10@I��o�$(��D������)���$1��G��+ ]IjP�)e,6
1S�b@���
j=(z 4�1p�L�iDe��}�L��R�L< ��F2��FR� IT0�$�9��sEma�yl�E),v�y��4�*��&k)�����y�z�.5ǬDU��3+�5�/�1��0۪��,52ᧈ�bj�`8���-'(�1�lxbN�� =��X�J�*�J0�(a ~��<G���SI#%mijG� b�0����E4'�[��Nq�U��@�}���1gFD��1G�C��,��e�@��K pn�-�c�� �9G?a�s����W�}��q��� �"���s���\hs 2b1� �n.��@�%Z.|�Ze9�%��
����9������k�
�5E�(�����F)皸�\cf��*"��� <#�!q<�^Vȃ��g9���S JG� �}�rX�E��ڈƂ0i
"���}uZĂ
c�b��XPn�S%#jx,E�&0�f$�Z��k��`�>Aı`�������ꗔ•ja�_M�����w`k���X���R�e�{nm�7{Y�^���2�p��?1�(�H]�Xj[��OMۧ�L�#�@��$����ba)h El��P`[P6���Z7�����p��ﵴ��A�*427Z���S'?l �����ˇg��c<�k����0�<2"� ����ײd�Kb�sV�.ur����w��4v)X�,h����{]cY��@=gY�� ��q�/v���0��0��LW�K�g���<�Rg��*��/]�������5q� ).��[��=NG��������d�nw����M�T2��Qҳ�n}�=]��k��hNHv��Q�%]<�d:�ky֘��z��x�4H{ Uv�T�e�nn����d���>�l��.���ZA2������zi����^{��om:�<��޳�o��_~L�?�2_�uZ>�@>�[�*��n}����$2�"��>���B.ǐ��������Sr%H��ګl^x/]� ���Ȓ���`�T�o��^��������$�����7�"G��:K���p}{����-���IQ�~��;�� ��L�Z$�� 7.G��[��g��9YA����H�^�fs(�ox�ZV+o-�����q:�wg���띐���|/�|il��W7�,M^���l p��a�H|I1���Ӏ]Lvy���mS?��� d�P��ϓIN�k�d>���:�;T1��j�����Q�p�����|���o���d~[Y
x��VM��6�U�O-�ڲl�Z߂ �l�l�H��bHmv%R�Ho�����2e���zHN��3of�<��J�H6/&?}$���V%Z� IB7he4]���x�+7U�ܰr��\�Ar�`�����
�� S*�ܖ��]�]�L�y;H�$�O�t�]�;s{��j(�ۺE�J�,�Н���=�[�K_1���;����|u�
4��^��1h��|%���i�v^�q��w�Tx_���a ����F7�z�m�v4��+���l�ix���F��i��k�l�����m��q?b�'�����z~'� b<���%�:Pe����,pG,��N���.��!7kC�"�A ��)i�{:ܥ��J�&p-��M�19�
��΁8C�VNA�n��5�v/(��z�}� U�)IN6݂��� 'F��]��~����^�w����J�Dt��~�Fb��1�}�v8�����Ͽ����V lZ���)#�k�y�[�ϣ��"�YN?�ڣv�KG�r��{��ӿ ƃ�L}��P����c��� _ ����$����
�>I��ft��h��qؘ��}���^�ϙ�hat[-���/.T 쓱�Cn>�fݮ�Z6=��������P���H�P6����vFY��#-VPױ�W �[�|��H8r�a;����lP�)����03�g���9������t�لg2�aa��9â��ř���nZ<�XF��e�X)������b4 qvV0.�0�,��f 3Q���q��Y!���T�r��S(D��y:�v��A�~Gϫ7�_?��'gy���]K��_N_�bK��|�׫KQ��n���?.[%_H�P`w�V���
x��UM��6�U�O-��%ٲ���6�Y��� ����R�B��x����>�&-z�=��<��f4d�2�g���O��r[�J��k�i�$t��Q��5�鴜f�o��*姥��B�N���$��6�c�V+����6�:���k�n�$I|N�L|��W�����٢fL}cO��'���aZ �΀��<(��b������S����l_L�iM����0�=�H�}�+��W�H�w�b��K
� mآ��/q���
� ˻ፏ����3�x�n��@��2[�kH�l��+lA�`��#�:�U�������eD���"��Mv�4M�]�޺!xA�fL �e�W���~�Z"CO�����xT����T� ���>����+����p�2�~�{W~Vge[֥W b4����Ǯ]+��o���К��� �DU��
�GA؁tj�bh`Ӷ�[ОB�m|O�3�ԡ�\������B��=Q��n���.��q g�.����p�#����@��n�{e���������p�`�����)�㴱����������kZnT+��)�E� ��p;x�V�Khv���e3b�ګJ= wUB�ĝM��<)v��P��C��
���7���̃�V����C\<�v��/�b��4��VCy-�e��b���Z�s��<�� �˔��e�b��VM����M N�;�����<�g31� ��%�"�L,�tUb���EY�2���岔B�b!�̋�"M�"]�kP<"[Ϣ��_��^�}^�/�����<��p�x��m�Ǜ��o�D�Ç͡r��k'��l�����A�
x��VMo7�Y�b꓄�R�K�
�Zp�@�mRT�Z�JsI��JV����\r?�r�s��˙7o޼!v#������of3����W�)Gi�*�(��G��>��aے�U�8�#��z�v�v>Q��qp��(�A�Q���J:�rgg,���ه�d�S���|4J�p͹AkV��B �v;�(9� �;��`�I�О9˄�=B� �th$PY 9���~�.B��F`�L�;p
j���,�]��7����?I���+j4 ��{P���Y�!�ֿ�d%�*��&X'�={&�3\�A����ܠ�!��v�=[� BY GZ`��<���F� &D
�!$����a��y�qǴ�]5(�I���#d�.%�. ,���O'g![вF��,�& �U��[
0C����o҇$h�lT���zR� ٟf�] }SY�J@cTm��ek.o~���<�ԑQ�{�n��8�l��V2w����8=nE�`�G�qtP΄�̱ց�pz�\v�Ԝt�4|�매8~8H4���
�������.(���G#a�I�����q7���TWv7N �3��6�6�#>�wY�1���ޥ�T�W����>��U���-C�r�vp�ѩ���`�/�䭌?m5��1�^�O��k��މ���]��u\�-��q������������ �P��=9nv�?x���'\A�ZC eK�G��� S)`\#�������*�����E�����a����o���iZ�އ�W�yKG: ��x���'������[�1T����j�1������u쑆F�_�i���wnY;5��dQ:sl(' S�ha�D��q���0� ��{�E��R� �2�B�t��R�����]��O�J=^�o�j!OK�l�����] ���s�[�Ϗ�C���PŰ�&�/��L�
x���Ks�F �{�>��צ�>�/��v܉�ȩ���]`mF��aY���w����d:9q$�~�>/�H0��6$��WYNur8�6 �{���,��Q��п�r>�� �D0� O���$�ⶃ[����3��eҿ(���ڭ�,9}��<$YQum�?�Z[
��d���\��ֵN�����Z� ȯ���/�E[ChG�kj�IY�6*����v��ϓ��i���Դ��yׂ���QR�EK�9mS�
ŮmOm��Y�$H�X� �A2�
\�y�H��ޕؗ��im�����
� ��_����WhӴ��6+n�mw�݇>�+�o���2m���;�Gl�M��џ�>�Ж�2�eL���9
P��Xe�䙯��h�j�; �� �-�����?�b��.�6�g���$T�=�D�Z�_wEC0��iU�)���-�����^VT<RUQ��=��f�n�
�����3��jib�ȼ$�J�$%9G�2���JZ��(8ө�5g�yƍ����Y��Y����WcW���H���o5,�cK(E�� �JS�� ��RIdUD�Q b�R�# �g� �v�qA�p�_��q�]��ofGG���g����w�F���Y����n���OK����C�=�]��͸�%zh1u�I ��F�Ƌ4��2F�:�)D-Ek�)b���@�`�% ʣ�� ��<8P!�Ni4��a��Q�h4E�x"<���I񱹙��������euvY�x��[{Fw�g|��'���?�؞�ڏ�9��2A'�`�0�!�Ps�Br#IG
Q"ic*'�I��@3��r�q� �IWVh���>�b>��@."� �Q����=�4��Xd� 3�7a���M�������b�>^�˩oO?߅���"8�K���dHEL�9Ô��Y�I#뷗+ F*D�I*
� ��g���F��2���1`��%!D�ѣ5��`�和鯌�%}L_�|�G�׋+p�͗Njb:���+q�Ɵ��~�j'����&|��x�U;#
x��TMo7�y�ԗj �++u��p���A@
� -�hD�Jl��b8R"���Ò%9u!@˙��ސ;wa�oǯ�+
��������GN y��%~�M�������T�䬇���QK���(��
X_� 5�a ��brw�f|^�ĺ�-~O�*�gY͸�bp�X��?#���.��Vu`���v�i�k�-�*8Q�8�$ē��}��qoW��^�K� �X�0���}աd��i����5|�sFހ,Q�氶�"�PU����z�f|IaRP��|T4�D��㻢 [GE�$�U�/����>��_���֏��h�A�^S2�\}���\Gj�S��4���ѿ%.W�jM�`��Kҟ� ��^��Y��Q�`���Y�8�0�'��[���$��a�Q�C��m�ybtn�Tw����[��YJ���0�X��*R0��BE�x���u� 5�׉Υ�>�ҫ��ހ05]0��P�-۞� �GV&P�?��� uD�����#�I��l#�5@L�֖�@����Ui�m?�L����=E.��5�U���� ��[=����Of;�������Qv?���L�L�Q ���z_�n�75��|#��*�
6�� ��ug8=�L��V��B��3���o��́�\:x����ְ�;�# �?���a��W���{�U�i �Ts] xh�8ӿ��̳ULkb�'_5�.�~�Κ}��G�'�-h�����`��˒S������(������N?��#�Ez��H��m`pҪF,��% ;>4��~�/�Q~� ���Y���&�=}�f��?��4�
x��\�w۶����+��CK�zP�����u�F�y���޳��D��)B@[�����@�/ɒ�$����1� 0�f@p�t��G� ��~�G��i,is�X��Qq�[�6�����tJ#��� ���DD*H�Q4��^���\p�"�>W�ŗ�%y�nmM���<bS��/�u���om�ɔ �&j|���n�'D����og��IHψT����rovӠ��4��[E弳��v�j��l��=��`f|JQ�Dz�;������YŸ[�ľ��r;�[�i� :�0�(
>��"�����������s�ö��>���?=8$#?����!�buP{��/�z��ͯ/�]o޿۫�v������է�����?�z���~{}=�<{��;p�3��0"����f]
�m7EF���ӛ�� ���S��BJ��n���!�� �JD\۹۵���"
$\�s���q6ӈȱї���vp1�0�&QB� �M���G!S�bPc
rJ}����/�xزT��7���h�L����%����Tu�W#Ӥ!�/��J5���)��wEX,�te*$�1Q@��k��ϧx�'pɮi #"�R��IĂ�1κ1���
���Vk�( ,$��~Χ�� =r�g<��BI 0��8Ł) ��g� ��C��&$A��J+��EA�$��)(n�)��+*b�4�qJp�*L脋[�F
���?�� r���kT}��+�ϱ�v�s\S`�$ ��>��mr2�c5U��@���Qt ζ�ٔ$��nIT��*G}T���� �A�m�v[uW��f�"
�8�Z���q����D*.�3U��c�3�c}������VH�U����Cǫ
�B0���υ����x�c�z�w4���7�/`�f�tg�v^�����'ʮ�3��'�nn�lo7�^�۲�HZ�w�᮰�����Ț �ξ���e�s����~����}�&��e���� �7��P�]l��K�s�D��2��+�Vm�-NvҐ� �������mW:�a�k@`�M�!�������l�r@�4Ҝ������,�X��擓>����\����S�34����j��]��;�����g C���v� ��YEZ3E���F&� ��m�qm��i���Wc��wg�� \�Q��_l��\ ��E�sU��5{��kxf9mj-�]ظoYcn
���aL�XC�1�!�T�4��#��4���dj�繕H��~/�!G6Q� �p�W���E #u��ws~�8��- -�6L�� ���RS�G�{�x.���CH��Sp�~����E��e>)����?����8�p��uL�m���P��f\ۀ6h���s����=�᧹x ��c� �� S{�Ȣ`�,�&js�b��Q�l�l��e�d�{h��
�aw�bΐ�=��o-MBC�bn+�� N���^�� �}�wܓʸ����י���[�b����L�pKLj��$$Z`C��h@�|p�-�8�jv3S3����a�et��>�,밢`�I��$M@
�4�cJ�=�#a�Nh��Q����-L�`D�E �^���ΰ8BP�Dʌ0%���:GƷSZ�ʺx��Ui��;�%\��sz�B�tu �V~-X�߉`X��!��l�L�G?�%���J�CL��jT�K6���w��;�K�a�% �6�2�8�Cg�m�eb�7�K�|��8XG�ڋ@&�O��S��Z��}WV�刜�wڿY:n��n%���B��t�!�d��/.\HX$aD}�H].$10#Ӽ�X6�7o/��ŘɹJnX�s�<���������D���_�u\s��*��)��t���'q ��7�P��G�(���PU��u^Y���W*�� I�U2z�8�S |�l�É �$��xU_\�Z*��B�i�#�)Š��/��LIZi ZpF��
�c�DL��eA��,ƛ9?룈�+׆-x��T��n4!k,�$h�b����5�b�M,]� �Hz� Y��s�%�)� �x�tZn��i�a��1��V�l, 2�8������� CIU�d��x�7x$w�K��ش��N��m[v�(ڒ�KW���ơ㦑cs��O+��A�d����>Xs�ZF���8~e�=:ދ��_ 7Vl����l�Ì�"|!#ɣD�1�oԬ���Ծ}>�r����׃7�o.�]�f�@��[p���"�4h5��Zȷ@�_�.6� `�{-����5�� �Fo� �$L��7^ 1�$�]S��2-�go��)���$p���xBq��[M�5�p��
8�D5y���Ǟ�܂���L����9�{It2U�s1q� ����FX#s?�l{w;���9/��H5����������@�m)�s���m��</�0d$�����yꕅ�0'�G=)AxV�0���y�_X���i�F��A�Q�t��%i
d����k���/�e� �����{2��Y��0G�uq�ϼx�`ۛm�˄l�6�j}��f�Fˤ�6_����UA�K:�t�<%�ɬ����3�o�˯]?/���O�j ����?�mXH���d-��� e&)˿�ξEn��+���f �JF��$ ��$�)��۠_��f8���7m�@|L�;ӣ�٢�����]1��0|�AԶ�l�� d�g�v���S� ���No����]�o7Y�x�D�M�[}��:�z��H�5�h��-b_?�!����2���q$~ME���n���� $V��j��$����ξ��:N� ����u��[@6�*�G,P8f�ā�&ӕ���_*_�sϻև>����Ak+��#%�I�bi���?���5z+m=�;ɕ|��Ӈ���h%�y@bQkk`Ulѳ�޷KW���9� ���}�H�{K�U}վ^}_�%�4lN UY��o�%,T磲K��
�6�r�|}HgS�+�J/�y�{?���u2� 4�:4L� A}e/;TV��+�x�\/��)c��(K��1��LQ0�R�����&dV`bm'�/�y�f�W
����9�nM���b\gy��|���as��HnQƤ�w��ہ]��x_T���Et�c ��四p�7/:G�ߏ�i��� 뚞��ՋM��&�r�L�
�k�����^� �� $)Z�����>�՗��c��c;ޓ����� ���~�ɍ�#���t�I��@[m^��o�ϥO��s$���g1����7���-�m�$F�H&�V6"�X��,�75�bx��&T��(R�y�}����ͯ应�X�8��\���tBP��ŗi�̾&@���Uja��E�����-��H��:1����$���J~��N�����"y�⬹��}
�o���y�j��΋����j��ޙۂ�g�O�}���G C�mK{��D6A} l�S�SnK��������D��y�w`r�����)4���n�vu#���zе��Sۗ'
7��]"C"`3n���^�iL��ڇ��m|^.�-�DT�T[�Ȣ.��J �Z�p��o��`?$�g"\�5�o�.4�9~�OuwWߛ��?K� +���}�U��F5���#r���Z�YF$^����H�"�`���RIj5SC�9S�� ,[�h���I2�h3�3��O��Z;n�L?n�X�x)��,%�3��Ȅ�,�29&�UB�b< (�L��X�$&Vd�W�Ek>��)����u�f{��f�9��^C����[ ��?q�g�>n/��a�I %X���I�|W�� Dr����q����U���rB���ž��us00�xx�����.���l�\���gB����]�FF����#l��@C� >Ul��7�ԝ=,ɪ�{L�T�^x�`״�@��X�^[�z��{L�4��v�E��(ҷ���L��ލ����hg]�N�O"N�gqj>�cg햜�n�n��A‡k
x��UM��6�U��MmI�d�oE�&i��k$H�E1$�^v)R%)o���{AY���H��ԓ�!��{oF#�-#yZd?|�$�ۺQ]�/�$�[t^YCW���j�-䶮U�VB.
YH:I��& �`6-l0޼�Z v4�64m��)�"�&I���$��4m�Cpw���5*���z�`����ѿA�Oý�C|��?WA�Q�)�9t�X�{\nQ �y�)�Yj�i`Lcu����Z����X6`$��ط�|�n�[�������'�_�|�����I�On���G_(����<i�h�SfC�� GO�$�Q��'`��Aק�FQn�H���
?�N���!x��p�K�QA�VwH�5�����]��V>� �{��Tڀ�z,�$�~P+B>�uF����ȣ)ӱu_�o��Z8œ6z?$ *讝���We6�3i�ѝ6z�G�?l��Q�~�z A��`a��!��ñ�`���Нz��Vp$���ݸ�5��G�b�‘i�+�]@n��U#��m��juw��$M�}� ��A�kM����1�a Mӫ�t58b[��Đ�e��#�p�e�;���UQ. ͹Ģ�e�P����8_,����t����(��P�lɰ��%c}��h|7��}�uz\F������v5����X�U�� 2���e�i2UQ�,˳*�e%���B�̋T"M�"] �E�"[͢����Ǘ^/�WgE��O��H�{{�������7�/D��_�]�^�v�����\�N��o�E3
x�+)JMU06c01000PH��+)JL.)fX������o�����jQ�t�KY��
x��{s#7�'���?���WD�i����'V�{��n{�n����P$�d�k��!)����@>�Dd`R*�YutY"�<888/ˇ��B&����ś����a�����_�y��ǿ,�����ۇ����W�j_=������������1���.�..����7o̷o?���>d�{:��=g��s���`'�����|\0r"̇]��.��0�χ��c>����<���/?��n]u�����q�{����n�o޼�?�Rݟo�V�����v����������������+���T�ˏձ���;jBI�;:>�ۏ����~��XD�O?|� ���~m�q_�Rn��Cu�P=~8�t�?�������������~��}���3D$&���t�Ia"q��\�
OS�qa���@�2��4��bI�؇�ݪ<V !�7c*�ߌ��Ծ��q�{~\W���Kx9�z�~_~�oH�����f��s3�Ф���aw����}��
Q°: !���Ȅ�E��*�b�ɪ���?�hI�0R���d=?��Gƒj�3v�������Zl5{8D���Z�c���j� �?�"�!����=}2������X��)h �q�����g�ӧ���������F�†
��x��e���)�_Uۇ���b恫~;�����Z߄H��떖��C��*���R����j������n���b������|�6�ڨ�yT  JL����=������cy��Vc��O����*����>P��O��vu_����=���� ���7���58Q ���}�T�+���]$t=j���� u��ذ�\JZQ�,pY"�^�ܨ�U��Xȕ�DQ^�M�P�6X���E��b\��BI"ؒ.񚫲Xɍ"�W�^I�Vb-HQ \�(��H��˒VHT� �D”N�{�)!ˍB�U��Z�$_/*�(KU����*���bB�B \��r���G�z�^�W�J|�hQ�RK�
R�J���B��RL$)Wb�^�R�XY�t�G�� .�n�h�U���mMhP�`$�v�?m7ڔm�S
���"J����o?�t�~<l?<V�I�.�6��'�M�qw��j�
v�u� ���ZG�Ɖ8<lWUˉ�8���2*O�Ѳ���J��JP�Q������nxz�cF(A\Ǔ_tļ�P=V��X��=�����cji(GKћ���q�K��^��[�PL�fo�w�����>=i ���=?\=�V?�o�v�cy�>V�GK�%B?�ܭ�lH� �\�Ij���0I=�TH� ��qyкAC{�FQ���y`Fh��"ӧ�&��!��z?���KA|@Л��Ӽ�V�ᣇ>T���{�{�q���kM�ו�'v��q�#J���Gۍ��������p$��k�z]><��<$���}�ou�Z�l( !6�( �\�YX��Y����_�_؏�Nw}�L��ڸ[E�c����6�ǭ H��;����e�Ȭ�Ê�����_�fN��:� ���-c�i��)�� ;�.�b(8i]��t�s���������t�62��f���i_�|H�]��y�����������������l�վ�u��� P7��oZs��v���}h!�,� #E��r��[�i�(e�,�XIB���S,
V $�� ©������\q����,���L���h&C�!�[�D�Y���1�1/��}�M��y�� =>�@8�G?��"f����U?.l�>��bt�Β�Ҥ&l.�C��Ժ ���Im�b'u��ٓ�೛�R�4��@�n��3M� PԤ&g�����Ĥ�x�I�"%Lj�g��T���_�?�!
�#��RX(R�:�W^�*-X= �N��(��C��s<D�G5��^]5R&f��F��W��(3i�)^��&3�C*V�^��eA
>7׉��S' ���ct�) �:�ךԌҙ&u�?�u��\' ;�/Ϟ� �ݤ3%9�@�n��r�<�:���C�ϕ��&5�-�a��'5���I Q���H�f�����!N��o91>
4�)C���Q������B�M�q�)���:�2��c0�@��,��z�˸�/�,j�C�W���L�jD����Bϼy�Q��g��W��"�|� �bA�û���Z=���S�.���U5��TM�uNU#��Ρj�@��,+S��DY�@d&U�!ū�d&Uc�"TM���=��|�P�����n�}�0�r�d�"�uܹD�v2���� ���C�M#���W�*$*�r�\��`��P��Ӧ 裂��^��R��
Zdz(�@&�*Ѕ�י�\{��U�� �}���Lh� �;䌔��Mێ5-���pd��`P�S԰GI �=1�d��epz E`��Y@y @������{_zFj�{\o�'g��-��1�N� O��ց�����&� ��̵v�!%�7D,�������t��Vw�� K������p��|� F�/1�̳�L�H".�#�xN�eS-�i *�L�`'-C$!���j�8�Z�X�Dhj �c*�u�O7������A���t��t�}��������V���F�_���f^�@<�t���T %
t e$�@6h����Q��4�JͥC�9���;7K��;�Z�x�F7��9΍��un$f 5�X��6w�����Z�������b JNZfK�#7��zY* �щ�@�W�$G�ɻ�@��mr�`��e��*�ʏ̣B��9�J��$��AC0�ʼn΃>�JˣN� �hؑ����,KUВɐÐI��\̀�����T h���0�9��²:� ���u��v_��Os-�vH�އn�q9�tP��G����> ���VP�)U=�`fX;NST̤�@�^(X��b��>���
ݜCw�\�V����Q�Q��� L��)^}�&P�$C}X�W�����s�"=��`i�`�PȤ���� |Ɛɷ�5�vZpC�1b�T�ڥ����`�O��0Bx��+G�s"&�0^С��j��83�ܴ-|�Ր8D�BT�����#o��%nG��2�~qج��r �+ �3�d�n-���D�ִ�1{�����ÈR�ɧㄑbv��N93F0}Y^�����L�#�9��b�������p�,3� �A��� O��x������7ur\�ةG��gt���:U�S��0D��g�4/�b�}���ͳ�<����%{y!������a�Hag�sr�,Ѯ������^s��j��`"? L���h.�A%�Hs��<�j��&���GH0��S���jf# �����|�F����@Y��(@Q���dS�OP;e�1*-�J.�qF�J�����'v �H�����f� � :�G�7��Y���͓�{����g4�F�\�p��'�z�沞-���D�t��RD �β��<�$9�f= ��$�63-�8XNB��P�?���v��4�M/�4�6=�t}7���B�]/ED!�"��YZ�;�R� /X����F��Vt7'��'�quA~�2���w����t�����,֬�N_y7�F ���H��q Kh�prf%����15�b��[K�q���8�i@4�#�<�9K���a��M�X�%�Q@ r��ŊP2i)���3v.n�Ps+�Ez�+�� �,���H�ө�~N)��2�~ ��Q�`��*��d������N(̊�������{bj9]���Iq�����I6�)1Wt�A��s%$⤔(}�aͮ�A�h�y.{�P3+s���3�y祕9�K�(s�J�M���a7�nN���p���N�F�l�Z�3Z#�0�c֜�֨�K�F���Y�3أ�P��3.��P�T�9�m/5�Y���QTѓV�s]���S\��� �ch=w����<�öϧ
$N^*�1rVvkY>͘�X�D� 9T��Ч��Wna��,5Ä��;��� �L��˼i���_W
7�Z��'25:�.ogb#6���R��1AM[[�����*��PR�:/��tP3ӑ�'������B �zM+� ~���1Ψ� ����$� �HVv�O�~�.�oe��<O�ie~�i�A�ӵ�D`>6]�u@g�\m͞��h�̚ok^}�Vx��x��v&�'�I�8��7�� Y��#6�����p��줔 ����ͳ��T*IVv!�W�?:~^6t��T��b�W`�M93�2�>48788:��8�.�i<�9�Ӷ�$p�3xT8@�L����'��;W
X�@�
�������T�T��3x�'fI�N���9�`��pE,V���t#>ӶQ�5�O��=��&cZm �9o�B���5]�"r���Ҍ-�|>Ɂ�D��8g�
��3HQj�@�d�������S�\�y��W�B�d�/�sz�[����An�Q�P���3S��Aͬ
���S���1IU�T�/$�|T�*��*�x���@���HV~v�O�}iM�/A�+�P��G% 1}jR�Ɩ ���=�p��]S\P�)�`���c]0���9�P�V��^7�������P����� 愀�I��15�6��N �J�bZ�E��s�V�ͭ��d: d
����ΆY��C�g���Jm�ё�_^�B������I� 9��/�&��q����1$:@܃�RG �E�)�eJ��/·0�0u��ULg�;�D��B�ǥe��v��̙OB,��`C�Dϧs ��'���ơKI�r����D��4,��\�J2;xgp_��������*�I�m0�H��x�؈�G@���*R�g�#���*5 \0}C����12��|z���W`�T��ߏ4p�C���S�<c���"�T�A��l�#{�y�"�p�4>7�J���I�D�`��s7J���#7�`��i�"^&qm�9O��B�-��WV�Z_��h��nxz�#�7!/�I[!�N�"�mQ�
�HU0wN�/T/BS_E�+�@�, C]��"��to0&ݛ�oFK;�� ���l�<Q�(�B�G�bE��x�h<�$��K��s�A�?v�� 2_���?}�L 5 9���#�>E� K�d oS�#YB牒��-���֠�<����t#1S,m�FTX���#i���S��=TG=�Fl#|/����g:
]k��x�� �);=t�1�Eg(O��^p8�S ����� )\ݟ��%3$�#6}¬ë΄.�c5�����?"S��� c�a�ΥA'�@Dv"|�Ӄ1��{�FVj� 5��4�;�2}2xdF�B�E��;@ T}�f�}b�5�aR�Ms =�W6�>�v���x������W�"�<��v`��t�G��8�:�^��y�詃Kd�3`,T�s���tI���s��L�u����=y=��)�K ]Z��A�\��bA�n| e�������8� s;�9\~>��1��t /{���/|0F��0_�<�0ٱ�-q�e���E�t,��r�˭B3 �s^�j��>��/F��c��@F�W�d��ts����= ���}�q+�.c�/?茙��9�pb�|��g[ΙXț?&���+#���Y�}�A
X�L%�HN�8�~��V���L���ϘV�Y0��>:q�('xUJ-��1�h��:{����K`����<M �o�{�A����]����T����p�o?��s�"*��.��3�$Z�d��4����~X�h�#���̿�We�q�����^�F��e��d:��뒤`V�TE�=���A� �y��h!sC���}�j�se�~\W�ATP�7�6� 8\���câ}�j?�l���۳ýG"|L�~�:|
���Pn:�n�O��~� Y�Te��*�te�����+�Ju��R�Cu�~� ��>�0�)��Tc�g3U�>�-E��y�N?G����}���� �d;��amm������K������s2�4i2�'<r!�?�f:��63B�Oj����iNظ�sT+����9���XjN�"f��^D�����r├����e��d�{ �j�MK���\s� NN6��`qWn�����hO�V|3�O}#�HcW�"��|� lԈ wEfp��o� 1!ԥ)Fڹ
���3.'
���>�� �4�`\�4.(MK�2�K��i'�Xt��s�`@���� mS!�G����p�
LQ�lG���ԭcO���8�g�"�C��������91٣�M�fz1ѣ�rJ�^��W+߃L��������:�Dk"���`/96vp� !�'d��hf���0U�'��毃�}?^��@nhN͟����\��]�~$`�i��ӮŹ~2*�^����z�0���+���Ʀ3n ׄ}�2��.���)���րؓ�`d]#gp|�9���J4 �\n�_�eV� %E1,m��6 4���M)* ?/�@� Όgz.��`��ݡl��,�,��0L)��x v {�i�jUJ�\�`X�xk�@��e�Xk���'�X����e�fBA!H3��9�Ls��~�����Vպ=J-h�)ѻ���m�@m��H@e��F�K��*@_�� b��oP�6X�K���j�]=��3�u �� }�}��g-���Q��� �XM/� 8(�{HR��"�-�9�����f*����CL���Eٹ����O`�� �(���d3W�:��3�g�����6�g�:��3g;�7c�)6��E��s���%�>O|�!��+��!to�$U��#����ȩ�� gG���>SZ/�9����J��|�C��3��x�3ׅ@*!��m�L�Ŋ(�ɏ�aPa8����H�)la��Na�H/�L�4��
�̘��%S�>�̛���)Hr��9 � �s��rxz�ߕ@�G�*�`�Ǹ*�m�<�9X�$�������f6�sN���T_C�)-��j�t>��b�_�����Q��K̃�9��a\�[��u9�q� �r� 9����H�F9�~����-�����lT�}V6J29˺S�M���P�b,e�iڧ�W� �Y����,�}T��=�J̴pb�L�n���1�kvSI50Gc"�N2��;=B�z Ր��j$���jD��H��FR��I=��8���O��^���$�l*o��%��6��|��`�y^=i8�������(t,�|�J|up�Sy/���ܼ��;�I�M�Q(�g*U�P ̴��T���݀=���_k�� X i��>�"���\�uo�����u�����z�p��~��?�������~A��f�e���]7>�����GR����3F��Y0���g�0��XG8�/���B�r)ʾ=���K~]EpF_T�j¤3np�`g0�u5y�-�R��������q������ ��`nM#`�U���X�6�d񛡛���� ���LA��֙"N�cHpbʁ{a��]dpҾ���q��������Ʀ��1�=}�;���� "f���,w��)�� ��j{�`�0����ͱ&�c�Tb#i�C�D��~�1�� s跍���bsE�*�L�6Э|f���'�멂jAb��9�� T���"g>d~��|���� ��ΐ�Z�p`l�N).{ؕ�A~�X�`ٜ\��K4\�݌�4� Z�M���H L(3]TTei3����t#���uf�f��w�I��a��������w|2€� ġϧK�|Ƈt@2��&��$9ο$(��&�;����v��I�Y�%��yRV�Ox}r|5NC���w�^~�� 8i��Ok!�UӸ��@ 5��'[��~�-x{�`��:/�X��T
�(RЉ]��A�d���9Q�B(�2����U�X��|��U�A�,B�������~%Y���>���oi��c0z��D�Բ�+\�ǠG�>>�ǀ�u����v?��G <�"=Fl�ں�=�u�Ǎ)�� ����~&��9�y��-����әDZ`豘�! B����<��4�
�3� ܹ
��)u7rǵ>4}:�i<�3�tHu���t�r�������m�i��wx=�~O�1�W�{��O"�{�Ie`���fs�|f3�L���1���FSA�b��YTI��^CNp���=ӡ�)�|�chԳ+����ݰ�*�a�-Sόc�����a8QόB���[ׯ��Ȉ[���naN��[��1"��?�#R��1_@�C� {������Eɽ���M����D�3ӱZ(X�R|o����|���# �^������.F�'�:���D%����g����m�y���w����!��I�7�����^�D�]�S{/�Qd������DE�M&����؃�W�;Mr�c����w?#���'�3=0���fh,�#=�v#\>�<�g��mM��1t8<���� �$������Iƴ>�q`�"��j'w�� `�|�F����Xh��P��u,9�ԣ��.d��N��Sl�@cB�&$>�0~A�+��c�4���'D�8�)�_>���1�
�0P'#��M!O-G8Q�/G�sVM9��\��L�wY�Ԥ0ս�Q�;AM�\\:}���d�ڙ,Y �����S���#����� ���P��Dp�K�)*�U�-1^�
v1ZeO#'�l��U���l��gӾ9M!t�'�l��.����-����� 趱�|��Vcɐx�=� ��Hy�^?}�*#�D(t$�������j�Wć=R���Sz��FJ�������@gIXa�.�v�Ç"VE��d>���E��ZI�-��3�n��f�{��|��q�-L��Ԁ/�Xl��\k�)�t7ۅ��}2���P8i��Uב��)ϡ.F���� ��\��|&�#��\�c}��1����;��� i�3�N �JN��>T,�ۼ�zY�C���n���h����Ѕ �����(K%���#D�U%�:1�3Z�S��j <�����7y6�a�+ 3����ɺ�A��?3����8�ŌkУ�>CpG�����>�d�
���8m�⿂�5Z30`p��Ly}���1�*Nq�,v����d=��#x l��@I���ʞy�B��<����Y��x���|~�ځ���e�'����ӭa��Y���5�c{6��=�c[7�6�&v/ ?�]��*y3�z��6�tm�R&o�~ǽa2u��M��M��r���}�\_�F�vMN���^|6��Sc�d6ArS+<�;^ѻ���ר�#�G�0O��;�S�m��%�Dw��w;��S��LF�������L�L;��N"���Q?ӕ��[��9Vo;�Ӽ���/�h i~�F�G_o9Z25�rt:|(b9Z�&R���-j���I� ,4M����A�E�ϧ�ٗ��^���R0ObgI{ڴ�?&&r����b6��>��mp������\��Fh~G�_�O��l/�������������c����C}�_�>)�T��j� q��=�M��.e�8��P� o���{4�$n��P���;*��3��ъ��s�:���@#%��m�����
���~�����\w��ruk[�Z� wp����1������}��c�_���l��C����P�A�=4�����#Eܒ��>�=fg���j�0iG`�"�v&G8l�O;cgz�3v8"���`'"����l���%��6c^��;gg�3:g�#��S���OV�M��QdƑ(4\a�[�=�����#5y@�Ik���G_����b��9z\��<�{��uj�8R�I� ��x�<cm������_���#9bV�F��N�$䝩���Ni�)�{�q:��� ٌ�;��Zs�N���
]c��'�#�2Ø���{�d�q���R�����qpL��8,,$�/�Ƒ3�q!�5�;��;շ��s��yB�:��5G
���N��~�T�����:�w[�6���v{�����-77&�T�N�:� &nH\0�:%k� Gڔ��rL�z���ZP F�6m���͹�fm� �6F�iY��N��Y�ڴ��L��ZW����8vKP������Gٌ� v`�rjF�S��&=�D��h�����y� >�"�&+�r1~� e��9w
Z,���;)� ��/Z����q��2k�kA���J�!���{���h{ܵ�8�o����v���������q������I�(]`Zx�a��7�f����>���cu����p�.��{�M�Kd�L`�kw�aj���O,��S�1 b�_������~k�g;$�}�Z�a*y2�n�f�y0y>r�!'p�,��� � W�'�N�b��d)œ���g ��-����-����(� ���0(jĞ��3���lF�F�e�1�TP��d2�v��Uy������u��!N([ȓ�о:>���\A��٧J5i�=�������b �׀�+w�y�r�+�HӹL��5�� #E�\�h`�@�3}��L� !��rò�~���
gx6��A%X�:*ǴX��X%�����8 Ѫ���j�������z�ZV��+E���ZRV�U�X�"%'�b"I���R�r�ʪ�K� [ ����B���au���D��`�柵��l.�Fz}�O����!��Z��@yq���`Q��m�R�+Z�^��`A��
SB��(��U�+��+I
�^
T(Q��(K�yU"%iń**$����˨�K�:P�)X�+��,���V�B̥z�H��`�\��#H��� ]��`��n��n3���X�
6��| Ґ�`�ذ�\JZQ�,pY"�^�ܨ�U��Xȕ�DQ^�M�P�6X���{�s|gR��i
VJz�����
V�|6�� #�������!��Z�J�ۖ�`;���̥`-V�� �>_��4�)�BI"ؒ.񚫲Xɍ"�W�^I�Vb-HQ \�(��H��˒VHT� �or��~�Q��i
Vq����d����g-�)�t�#0y�-�3��h�$�n�>��
x�T|eY�ǜFU�Nn���/ˀ�Zݥ}mdk�H�
PD5� Suu�C|��Ё�)�i9"��� ��L������0�"�N�t,f�0�g ��P���!|Vl�R����^����wέ�&���[���6��&�q�X#�[^���:<,�L>p�g��WV��^ �??�B����؝�����\`DN��
؆��O��%V ��U������b�9W��1��!�!?�ׇk�����g��P >�O�`� �����* zVę��`gv��
��?���
�6�
#,�ݙ)E v��
]����X�D�4��DZx�pr����_j�a�;�'G�a�6�'�bE89��c��ݾ���# I8f�M�@ە |J��q���x܉�`0���f1��tJ%2v��@�����+��F��mt�x?���U�!D�1<��1-8�p�8=l�xBQ�M�S��6�����5�P�#��l����Ә#J �-�E��a��x�`M�o�;�i�:=U#PA����j�ᢒ5跍�sNog��m�!)����%�VݎΗ<t�^�gN�VXk�Y��E̚V�Ͱ$x�s&�$p��:`~00� �y���K5]�]Ԟ���`�����&<S�$�iG���w�M1���5b���ㅚNq���8�l��9֯RM"�N��Qg1����oJ�G��AW����H�8hg���9��X�gL�*az�61A^���X��3���
���u����|����o6zI{/��z]�KK�q`z�`��/�1�6��i�A&����>����w���2+�/�Cs��4��� ��8�%��&����M\����*(f(Q���Eu#2O&��Ѣ���m|&�D��es�s���$(&��"Y�L \� � e ����Z�kD�~�3ms��J��YP`�$k�wXўR����HC�I �)@A/I�hN��&�A�<��`��Tb����z�v �Hu��?͙2'?0�7ޛ
��t�b��8*N_" ��GY"�ϼDf�g&��L�Y��,���T�1L�IKd!z^|�����d�|�����.X����vc*v�s2�6��ijY�EoL·�f�hT����@ǖ�xh+�Cc�/�P��SͶ}\L�)�t����x?�3c _�>�rF}Ё�aZDմ F��+�2���J�+��<��9X#s%/c���C1o'1���+�$
�^���&�fgƹ�eP���r�O-�Y-��4��ICF����,{�'K=� t�RO ��nt lz�Q7�5ԍ��3��*R�|| �f̹�6�v������P}�(���3fm���H��$�qƼ�T2����(#9k�x�e^�Fb:�(>i7�<��[�8��. \I�c ;�Dc8v����f�<z������E�ͷ�ǂ�� �g�O�I�:��B%b�p!� ��1�Q��_�ix����:UH� �$d�ɼ|i�?�T���C�e`�4�| .���IB
؉N�3*�#=�7���|z^}��;k &�L�b� ��aPQ�~��k����JQ�\���T����ן��!Ү�iB!����u{��~�P���O��Hp�0�^jM{�J!��?�#��Ϸp���� `�;wJ�^�L/���9bwZ��
����&�h��Yu�ƒk8b&s�!�W<,�_*%���R���/e$��'b1��H��}���W����y~��;��.���79�vZ��C7���8k���K���k.V�P}N��R�,|��ω��'�$f:�� $-�T�|���"�B�u���J�Ԋ���Y��Ê�(�Ϗ(@bWy%ҫ��N�iJA��{c��D�6�-X�4O�5HD#���r #H��z�Dd��},T�f0m�U�fp�"�}��2�� �|�O�EO������+W�|����:�;�b2\� �9*�s��DdU7��Zg1-�!�Z� =�〠�!��u=�N���� ���>�|(����A��:]N��¥�-.�\r�2C�jx������y>%x����K��:_�B�xZ��<�uVl &��IG���zw���3�53���<��,srM�$I�Ɍ��`��F�e$��U��$C�=Σ�� ��bI��2��J�����+Zc^����i�/�]n���j����_��"�k��V3�7��ǿL�y��X0�_o}X v�+�q�%W%�m2�F��3�+ېJ,�qƺ�a����^(�H^�v&S�e֪��D��k��U�P����K*���� � ?3㭗A���3q�Nŏ�����C�I9)?���ό>�pDz��*��w�u���&U]�sp��P"]�<��
� %ԕ�YϽ~�!���_���#���" U��&�EC&�`aw�p[.�@i74�9�E�!r�P��G��B�/�E�|].���y��郐%es�[�T���ם8x�� /0��Q�w�7��8ʋ�;���㡷nCgJ�Y���^_�{B���"�α
&ؼ!�+$���NMY�����0K>>�ʩ�}��<n*a��6x�-j��$I��s�i�;�y�| �4_�@�t�ТF�E�A�W,�:�> f��f���ěW$Wѷ�M_�2�y�ʠ��Wk�Ps:U\�S���Nw�Se�<s�~b�-�p5�M�Ir�3]��E/|%�<�|s,@�@tg��X �\7*�9����0���C6�K�AE��/��'�2׭$�hA���3�[�؏X� K[�`̿$)�<���0^q)HR,O]
`�.���~��$ _�� ���3.I}�ЩKAA�?�R�z�^�W�J|�hQ�RK�
R�J���B��RL$)Wb�^�R�XY�t���.���IC6ǹ�q�LJ��u)�"&:�aRNZ
���/u�W屼�IKK&��U �:���T����>"���/`a��A x��� L���*��b�.u�1�”Z�Ā*mW�>Fh�k�F�����#�e��S8��tP �i3Sݞ�ѷ���7�D/8_�9���h���� xD A��h(/=�d��1A�䢆KfN��p}Ø!0�@4dJ�K:��Cg,q(0�����U�0�[����7���1(����<3]ߠ��]�`1��ʀ�t@�(�/;ϙ���ݎ�ww��7�̌��S~r���KX�s�F����� �|^�6
�0 ��``z .�઱0�X�4L�ن�|C�Z �V���(DYU�*^�%_IR��R�B��TEY�ϫ)I+&TQ!)��%_C9��"�u8� v�q"*d�5�Gl��u�I9y�(�*|B�3/�B]j�����h:�
��h8pW��(\���%J����R`�)$���.Ѿ�vеJ����M�.� ���77���݁���%J�W1;�B�1���?\��4c��,� �^ra��$x$� ]!�c_+^S��s�5 �n�M[�&L���x��̲j�����5�o�h�rj��#��<���K�Z���/*u�"�R�e,25M�X�6 �qX�ۅ���/_Ŧs|a���O�1rӹ
+���Cd%�sG@�x6� 6���@O����\E��s�s'#ӹ�|>��Zp(�?� 3��66d��,��kT>W��(S�wp��S��Nʵ�/�r�#��ph�NN>w ���1K>w ���������:�q&"j�|�����GH:-�;B�)���� ��&�sab�|�8�2�� ��Y���K��݌�\obv�d���.H�=�SB�-�����z ��z� �^z>����'u��W��y�x������x��̰�����\��eՒ���s;�3���T�Y�/�j�s�s-^dT�����,��Fqn���/_em?|~z/w_��x����θ/��>Q
X�L�cdݺ�3��B 5Y*� ��'k"~]:L{b�`��q���^ �K��H�O�̫/��do��#�c�s����x���=��/ oZ�Ұ��ſ�����C�4�-�|a�����^�T>nWM�����4^�Vߜ�%zA9C� �i�(e�,�XIB���S,
V ��4�S% A)P���Rq�Ż��� �v�:��_�~#�]���&����_�vܗ����ӱ�w��K���a�z��y������x�{>~���\U����z��A?_>���]^o7��__[������ҝ��wW&������/�%��n� 0Gk&�NvG;��@��/��{�V���B����OǽK�!�p����jU�L�h��L�������_~���~Um�ɼ��G���f��u3��_P���+���O�������ןˏ�՗�����¾����G�����ş]~z�5w��i�o�4�|xخ������Ү>��������C�?����~|{<�����^y��<�������!�SY�?�k�.L���m�K�l3��<�_�~�{��n�>�����/��ai�ҿ?�?o�ZR��蝹����şk
C�[�A?�d���$�j�hV:��M ����݇�?��H � ̴�}�T�+�5*����6��D���Pϵ�zQ�e��w����c����,�G��jW�ql�K��{gI q�'m����4���������C��#�FA���Pu��`�xj�5���˶���m��w�����W��yЁ����q���f�����ڸ��0��^�_�w�%�?���`b��b������O���BW��{͊��D��kO�}M�׏��w}Ow���`�c�^�ј��}e���W`�`Tձ���\ ����؟�t�������W��j�̼�⸻XV��v��f�EÀ_��_�ǣ�޴��=>|�=�"�����|Q��?�_��t�`H3���?��u����|T����y�߽��Đ��~��x����
��<��>қ�F��e���s6��8-��m�h7�C�Z����w��~����P,�|���O��x_�9V�pr��7B�D ��#���ϟ��
����e�z�+.�?�G#��}����F|/�ͱ��>l��}������-��k#��y��0C;8�jGj?`�oY���%��
p��@�^�]'�z^�_��=�Q���~�ΏƏZ��� �5@�O)�.����M�=\���ׅ�� W�v ��ݧu��nh ǥ���m��?]<�tbc[><|�8�W�2��y�ц�1���� '��D��o�1mg��������u{\���1�<T2+����㺝�mk3}Û>W�F����>�������Ca,��}K��mk��MLz�ߓ ��մ�o2F�9د�[��m����CZ�7x�7
����C����=��jz�I�32���*���L3b�p:���A�|�=�Zӣ�R @�i� ](��jSz���i;��}��T֌u$�شQn=�Qٜ���V#�Ϗ����Z�����?7�W�uO��n�����8:i��ןZXw��O�&��ןz�t��i�o|~�bڦ�&�pz��y8��)Ƕ��c���Gu�H�v��e-��/�T�����n_U�rm�I7 }��i�;V��E���>��_���a�k�a����m_�6�o0)Z����wa�������ӣ ��i^{Cu���9��(x��AZ������Ӡ�Vk:C�~�s����ku�*m'/j� }���90<�Nn=ǟ3-����tρ+�����Z~fl���d�{�n������-{��G ���<�Q�IX�~tԓ?8��GD�PѤT��?7~�3���t6"�,V@W��H����P�X3B}��~ǭ&94�ZvTA�,x���?]�|
��������E��Cͧ��q��N�`?�����d)! ˗�~�zח�ٓY��eW���)�0�Q'4Y썋����˦������ ��2�K�S���"�]�Xw����z�Y�C:}n��w��͞�DȊӱF����\��E�ϕk��\3���?�b��[�k��χ���s��-l�k f�����a{���>=?�U(��.Wy��}���jS��Ǖ��g]��v����Q��@ qb���_ן�WXK�r�K��D`�����A-����H`D��/9ma�)Ź@� �
�[�B�R(��d�G]�²��(|
)Ss�]ɹ��6kC��P`B��
Q�=\��(-V����d�ͩ���)�u�ڷ��1}f����{�?���XXa�VH�t��Z7o���o|CP�x�?MM�6X�9���_��ܰ�)������2M3�g|��72!>2����)]Լ��`�GaUp)�vw�0�Yj�(��ˆ�'���K�/�3K�'�O�w�}������E�)�!E��|J�j[!]��g�T��R��2H+���]UBQ�Y����B1,
�W Ű,H-ms�>�F���2�J�/QL����Rt��Ϧ0���� %�'�0�b�K�M�S�3�Í��p��z�]t�jm���߅һUkZ��ίZ�\ŵ& ˥��D��1QFR��� ���P̷XK6�c����eׯuih�KVk �IR�}{UpYs�~~c��ѥk�E _�uGò7�ZW� bD�Lk���h��"�?\(�h3w�vT)jF�b�U���3�����6�$�����J �^�c�4�B�;Ƶ4�)R��l�H�顪�kcge���č�ĺ%]"��Y����R%Q�k�R)n���pU -]#�6�׳� VJؑ�-�� ъs��*���֚
a͝z�.X�)�B��m�"I?��L�
,jZ�P��#�FC*DV���n�8�H�83j����/�ߚ���b0�+ U��V�����+��Pf왐�ط�L�f��,��X��E����CA�s\��ۼY[}�_�I++�'�\ٱ��z�uh�7zv <�wm����{��-�$n�5Fmm ǘ�jg�Țƍ�7FV�ŚY���Z t:��K���ʠq�6h-�k��҈���'lU�s�� ��(�8��Z9[���B0�hWn���������f�3�l/��󲡇���Cx;"��E�?^��r�S��N��X/�/K���l�Lle���h��#�*S���7� T!�Ѵ���K\{�Zg A )�cZ*����`eUZ����t�|���Z�F���ӵ ՚V�����4U��5KMm�E�J �׊��S�R�h����S�~�תX����{�(��� Y�l��Vݧf ���x]�u��rU*/���UC�D%R�������z]��w�hT�i��R.�O �?5��zݼ�7��T���
=��^4���v��NԱ¸� 0-��F���g�к--��(D���xS޴eu4`����Z|V�0>WƎT����_�p[� �t�n[��U��-~�ch+͜d��v��s�
�]}ʌ�F� ���]/[<�zy�v��� ��}~���7!�n[�~[��i�+�6^��mڱ�U��Q�
�W-��-�X gLH��@��ΒG� ��䏬Z��ygQx��_�F�s�o�`��>>E1�M��XnD�-���L�Q��~U��Un�z��i|$�| 2�5K�|����Dx�D&�CMV��� ��
�'6w�H�[�>n��X{��Oˢ��u@��n�t����+p���[�p��ϵ�4��
nմ U[R����H3o��l�q�3������㷔��k��Pu<���!5!D8�2m8}TR_Ġ�ժ��o2��H�����ľ����|�ѓ5^c����oQi��B{pf��f��ӡH�O-��r�I��Ч�!*il���g�4�����d Xm��"&�nS���Cn8���� �8����n�ָ���N˗zFi� ��`�g�ձ>o�H�y�����>�\�R
򹶽z6���������T��0J�7�CA�V2��@�3I�0oo�k�
�rds]Is�?N��]�yg�G�w01-�#I�w�ec+���rױ��D��T5�/T3N��rմ[ɕ� 4 ��rk,�X׹<�.u���Q��j���� I� !�b�d噤A2I�"|c"�uQFz��nt��K:�K���6٫(2��f[g���i��rE_f�4�m�/�u(�\���ɘ(����Y)�)C�Bk���Zg����
�ݬ%��]��d����ǢJ�_4B���~Jsէ�lb���}��j��:�^���֝��n�%J�*���J�2h���r�Q�����κ���`�1�l��ݼ��PWt���6�ެ��I�o�����Y����ş.�� U���B�Z�:ş.�:ޟ6�J`L�e@W˚�b�buu��l�7�J2F�ZXY�Բ��K-W��,�Uj��V)po�trz�t�SF�4������S���g ��� �3 |ff]��b>|~�.�-x��V ��� �*�e� c,w=�DT��(�/��kx��3��[J{3|Y�b,���
�kc���eI�u�&o�1fX o��VDK�]�]a��U���,Ն�%���h�V�m��C�ڋ[Z��(���Eˡ�-ᛤK��G��R�D��(�.���<�(Z�h]gf!o-�$�k��_�b�lt�2C��h�&���L�hS�ȳ�7����WQ�/x������eU[�4�����l�ƠJa]-O@&D־]=_5n�Uশ��Cj�PW[�؞��N�(f�+Ez�-Y�5ޕ,f��������W0��Ẓ��j�u�oT�%����k��t��(iz(�/����
W�ZV+���5f��k\)���^�]��\R��k�]��J��%u5S���Y��Տ����Ջ@���������hĎ�f�dI_A
j��zR�u�R�l֓�Gk�Vs�E��8Ɠ2��T��5fd�A�亠��D��k�� z���� ��#��7��f��N�5^Vd���(Vd��ڬ�T�,8Y�r�]�cAԆ�7��%�6�kV���%��T�:Ʃ#���搟� ��z3�3)��5� )�L4�y�c`?�^�Һ��9�Ak�r�n���1�uu٦���}#]-]�E�y��|Imk0Y�|���Gs-�mƣ�u`��� ���FuO:�E�/����dؿ�u�Au~3��Z�&���}��p�R�H ��S�T�c*6:b>3�������*S�n�(��'M���V�m/:�m��mK�ӵUԶ���J�x=av��X���}�SɊ�����u1�u _[�׎��<ahS��j�~u���1�3̝�0�1�����U�eP��75����1mr�L,m $���^u��L��'(�*IM���a/���W�ZrYH�~f�H��V`��FC��F��KoY@ӭ�^��gU�l#<㈛zc��uxƱ�h���D�O �j����bS' 8œ|�|�������:7���KS���ދ��@ɺ���C�J8TS�L&�T:����?�&�ϋvgi�>X����o�Z��m�oSl�)Ц�}ش���U�i��B�ձgO>��C O>t(�V^�$F�,eC-ƺ���/V�\�dK0'9�~:l��rT��4�$X�FJ�}�{ <��QDɝ'_�5�@&Ŋ�o^���ؕ�>g��8�ڶڻ��;%Z��E.���ߓ��wl�s�VzVKR�# �u�3JV46[Ṯْ3�6�aml�ך�XN*�%7��K� ���х�1��)&�;��.(,y-�H���}�MpV��K��K��K��׊}���}�\��� �V�g4�K��AK��fD�����I�Mʭڽ
u��u�j۔�m��� �G�oQ���r]Ԝ7��{J�� �)�<%��x�t�҅o%���yJ����S��TY��=U�{����%o><�F? ��Z�Ƴ��n�ФvS��6|�c
D'��3� @���.Y\2�K��O�d�7쒝�r<�9\�xYυf~�=s�ӵ�F���ԎuU[m�.� �kC��6���p���/���b�=Ÿ��.e����l�=�mi0���[Ծ9��[��n�'w�r���,���JKM��-[���r���tb1.7�Juo�ĸ�wX;��xI���%���h�s�g;���[�I�;��R�֒��u����x�j�Vp1^�=KݾV��|�2ִm�� ��z_G�;��R��b���;��q;�������;��rY4m�u�s2�Y/� �ךcE�;�z�^5y��GV�v1^��'�0^af���=f���{6X+����e}�{��J�vl۽�xE��1���+V�;~)��;�W��v{��J�d�&���v���\)��U�A=M�Մz�V���īR���\:�,�l�w������'f��5i�Z"֨�^k�Z��Hh��0딼� {9 f�o0���4o���T%L !��LZn6�Ri��� GTI�hI9[S�*eL.+$�j�ڬ(��
U�‚��9�ER�+A5�=%B��m�y҇񘻔�����/�o
]��2t�������O���������a��˛�Y�)��$>"�m)�O]�v(N�%�~������;\�?�oc�|J��ڏ)S�����������uH��v���p��� ��Z�ߝ�?�?���)G��w �(�w}��7?^~���__���o���ks���_�P����?�~���(�X������ۛ����?��ʲ������1��������+� ������`�9�^�-~Ǵz NޤHb_z ��$�n��Jp��S�����f�!�����V����[T=���J!�����^__��E��KYC]�!n�>�C��=&|����v˔��7Epט;H~�Y�f �祉�L���#���|��;R��Ћ˿���V�3�����>j%���F>�c�4�I�SZ\;��'η�{�ݓ�i�hd�>�M�4)�y�dXyW�+3�z̎$�6S�߾��Ro���j"���o,c�n��ޝ�S��A_S�����D�䄟�=VK��[#7�3f�3p���o�ox�*�����aɐ�XA1�`���������> (�RR��ۜ�_楂��PzT��/C��2a�a����2��ᓝ-� �ѺO"�㜨�S��|�����f��o���X���ӗ�
��’�N�p�"�4��6@p����:��"�Sz�8�2(7�}F�+�f��W�1���\�T�{� ��Gi`�尾�7'�`����T�f:��iQk\�@�/.M�t�g�H���)��Ye;��.�&�|�m:G̫��e0����7X�Zn���Sa�ƾ�>�I�f��ZM�&m}��+���W��p��_����ڗ^�S�r䳢Q_w�)33|w~أKU��76��sȘ��Q�q����o=��v�F�Cȳ)�Lo����9=�#�þ��)O���r�ې��׾ѷ�֐r����ݭ'.���zJo8��[� Q/)� o�i�p8�P�]����2���y����Z��1V�G�Q@8H�p�q�)Ac��~ IByz� gz����D� <�!�����ɛ��`J8��r
r�c��Q6�<���OX ���S:�ﰾ��vu�h2m�3+���us��.�SW!A���Ѕ����+���G ϝ����VF|?~@&G6�,3��-=0����~�ơ�z]������,$������M���s� ������*hEM��ǡ�����P�A�;|�]����w\?F�Pa(/R8~π�]lu$�7$'���%�"�'�4�'���Eḛ�������W�͠v �5Yп����^|��/���F�����Ɲ�O,m��˿]�� g������Ǻ�ӭo� ��>2M�9X�����ڍ�y�' )��!��>�����z�R��{}u�{�|�_^�^!܋ �� �7���(�3�w~�3ƥ��u���y�Q���[]��{T�U\�^I�'?�;A1���B�cv���uO:o��]v+�MAnz�^]C��G_����A&Jti� �=z'��+�nnnQO���̽��W�' ��4�����{��G �R�x������{M�u@�0�Z��^���Na8�sv]�QtC�襣�LӞbj�X�5RL9L#�@v�p<X���u����->0}"��k��'ЧT�)��6��Ia!�=B���1X� �w��g��9��i��%��-�՛�@�����K0�no^fT ��A�.[�Lp�3�lBn-}��z�kF���>~�=B���.�y�-�R s@�T>T�b���|�Ɵ��z9���}��v��s��:�b����P�p����M�j�?�w�� ��Wuy����"ڝbk�/�|��GB��yfS&rG�2���P��]��K� p�TZ�K��}BĕOB��4e/'����� ]�Ԯ'{E����x�&�� �#ճm�i��BFvs��7�G&8�z���aÖz����7u6�&�I��;a?t)����~���Xm��V�Y����G��M'���v2Rm&�-�ke�]9��� ��E/�uD8y�+�����������)���rw\lx��;FpZ��D�M�:�+�`�4��Í^�k�gs�X���a�5g��F9����{Ɲ�&0�7߄��������Q�? ��)����=��P�1X���0qeJw�k�x�}�'�P j *�[�hqGׇ7I�J�;���7�u|����q �㯅����1�ҷ�\f�fr�!5��Kw8�Yq�Ó�?�d�r�[=G�������X�F@��臺�3��%4�"� A�ά�x�j5K�MGG�J���GjȒ�Wo�sc�=frݱތsN��A�&5Is���g�Ju�L�3P�"��d�oN�m�,���g�k�жΊr���-���t�DH\" ��T��0��+��dW%6P}C "�@l葊�k��k�ѧ;�͆A_�;1���+��ͥCԀE��=���TO��>��dr�
q%����g5Q �L�z�tkjS���9F�0�?�>��+(��K|}��Y���̐�T���M�v�c�d�A�gɼ��P퓼� 䍳���&X��yL���~�Hު(|wj#Mkw���.��k���+Hi�ܾv k|+C�i<�E��EЌ�W�����s�� �y �Y�֝�y`�G��!/�ҖGސ�݋T��v�rOm_�<��������������:��'����Bԝom����o�����D�W����w~�,ع� �=a��M�-�0hš�t O�V
z���R�KW�:Lp�C!|�0��JK�ha���b +������z[�i�Vq�lq�����`��vu�DC���;�F��2��tr�͹���T�%y��R J�����{�fT-- �r��ϤZb%��ڰ�6<���h#3ڸ���I��?�/�+����]�q�}�卭��Y�������I ��k��jtp-��7;�����|�s�(�|��a�\���\� ������[<�����W�Љ3�Z�����'�,�k�ؒ�6׸W%dw<K�c�*��‰���
]�V����`�6�FƦ�� ��'ׇ5���IB܊�\�w�hׅ�W8���B\��|{�q.�Л�ގ��=��t�ߠX��^3F���9�`�M(�<'����[�?�;��5af?�9��z��+��[D�����O�q���d�b�X��ygu��>���%��Tb���c��@��мaF@�t��?au�bδ�u��i{�H��ܜw����������X���2��w}��u �o��p�$�S���u]�.��G�t�F'x '&�b�k~u�o�������W7�ݙ{�o�bw��F�~��䕾'�����Z]�kzU'�̵����[����_�(�ї�Cihb�\��י��X�;�`�~��w
�ɜ��FW��#�J>�2�n��>����
�\��2���q�T1���+�v�>��Ўb�l�p�#�F�?@�ǥ*�B��^�Lt*���pry��nɵ*�DqM��Pw�T���˂��Ky��f���[u��%���^�ۻ�U A�Sl�ٵ��K�a�^ ���o�k���CoL��: �m )}o�Y_����f�!����l��`qё���y5^��%�/7�S{�K��H�DQ�lϝ��~t�c���BG�Uq�`r�W6T�@�(}Yrf�_��I�ǍV"�u�����j W8�"���蒃�ǧ����
�: ���ԕ�(�q����
��N�vl�.����Sq��L�-�u�؇���2�,�J��_)�xe��苻UW��/�����#��vi L� #��$�;%�''O�OsH{Ww���-��kp�u
t q�|)Ԝ��ݣ;�w�n�xޠz�� ��� ��[����~��N�y0�N2` ��܌ad@T�u��1����qW�\�
/$�L\]��a���M�y�P�F^�cR�����c�®��M���M���3���־���t�)q�&��S�Ԅ�C�fͬ��CWЁ�Iĩ���� O��Aɳ�� c�pԼ����4a�ӄc��9�z�Ŭ�e3q����$#ר�$3�*�`1�|���ݸ�򁻖�juUm�|r�ߥ��s=`�|*y�]�!K��U�~?P?�r縻߸�2�B������}�1�)�F`~=0���ƥc��+�s齬R-��^�K���o�"t[��o?I6��f1:X��(Ew�0�2"i��!‚0��P����jW^@5Ȭ��=������Vvw� ޯ���o��������,�� J$�mV� w�o�|Sp�*���I�J\��
`qM�w��-U��GF��E� �~�A#\'��c�ѮS �o.�%!�Bz�7fy�u�2¥��Wr p�n�p}M������y�?�}�;����^���N��SL��oaS�zӻ����M��ȕ����ٰv�2K>8G��b�o����9��%�Nb�e���E��/(�~ۜ ���������-�s� j�;����R*�rT�j��[�j,K/�-�\���5G������{����= �\�$\��k��s9��+��F�� �~���v�A�: ϙ�X:���{,�r^^z���_����t���K�=��*^ző#�W�.�Ё�/�L�nT��錼 ߕ{��C n����]<�v� 4z�dV����LT�(.�05`�)y%����ǰ[��v�N�iy���:�����K$
�+)�t(���T��=��Q� ]QH掚5�f��|ơ������w��
x#��fn�b�mU
��f��DRq3�wd�W9� ����8�,@�;����YF a����guZ"@�&̏lUMD[g��R��A��\�h��4�\JuѦ�X �;a炮ҩ#�F���<�v�Ns��pc�iU�Ҹ�r�py��Qx��P/؇ �$I�2j .���+�[��n]��~�˖+ CԞ���/��ƭ���{��?���/�� �I��-������Y���"�O抸��KW%84���ϛ\�����⻠1�������.�G�t3�stp���F�4�� �����Z0�ݵ�_�`@r5�*p��eZ�t��?�&)�t�ZI�4��=p%|�iZ4��}�1����H�^IhS]����UD�Ε�]WDBqU�'-�]� �����s ��I�xzox�mr+i�K���z#�:���DZ���,���v/ w�
�o�~\#�D�`�Ip����(f��=�6!��� k�~��.S��
�c0��g��`��/��[�-� ��kHm5��!"��<N<qҏ�u�S�>��f9ҋ��������5�'��Q��E�x�����B��&���rp����s|��!�c5��9gn&7~4ܾ����i��6e,�!P-���nP������\�p�Ű���!IՔ<��60��;�&@ɐ�I��_�������N�Ǣ�HI���x:�j�跫;�\�T�q��������7�f��4���^�햴��6UC�K�� eח�2&�n�����wהpF�-��XPv�L�� �+����M
_"D{w7]�}�ś7o�v��U�������-�j�� L��@_}��rA��?��b������"� ��/(��+"YЯ��tA�W_�Ă�$E�?��nǑI��|�A�.���?���s���������b (BU�� �Q(k*{��0W��r���t�B�g���Br~2�I�όF�k�qԣQ �k�Fx���F�F7|Ír�����q�{��M�m��v���Px���� Cľ��fc��6�7f�e�7�6\l�m�8}8l8 w ��5�n��� ��6B�Fm�V �e�7�q��:����#�d#��d�7R@PJ6j�k�FI �+�����r���m4t|/�o����h�At�t'�y7��Fm ��j�6F�����8hcm6�Zicl#���ռ�dc6S+`Xn ��Ʃ������Kz�FK��{���q���w&����|���"7��8��w��Ǽ4 �xa��<w�0� ��k�x �ޫ�l8S� �$�����:P�o��p�y#��m�ʙ6 g�{眱�m8�n��\�F�?��f�9������&��y� � 3� �¿0�6\r�x��R�Ƙ ��5��8�,W 7\i)���O��q�h˅�D����A��@9�����F2xJ3xJ���F�o�>���t�F��B�F�ڼ�p���k�}_)�%/����fsy�o`4o��Ҳ��nY'��&�剾L?�D�š�[Z� w܁~�N�F��J�����yp��b��u�E���������H���8K|~�o����ЩC�$�os4���}ɹm<�nL��_�M����'5L)�u�j�Ұ~.���0�p�7���^�r]�B��v�Uc�@�?y�Z2X��nH�9�J�+��AK�'�߿<,;;fzЋ
V�3�3g��@�v�
�����k0g�<�ƀN���?�����kp����]��X��F���X��H�:� ���Q�l:[#@?
�a�_�����z0`�F�����i��F��d�7b#(j�*��Y�(x}�sX��y *��Fr)09�ڄ�H�l#�?�JnA�Hn5�2�a�y�~ ��$߄_�2����; ���
���4����FJv֜���R���W�T L�TҀF�`M�X���W)��݇`e��J�F�������9�:�*A7
��H����<Z�F�n�K��I�5�4 @n��j�������N:ލ�����Y��1YZ/;Jw�� �.�e�u��w���g�U�tgXS`�A�6�Ið٨�9t������F��((0w��x3v���7���%������v�F�2R����)Pb���!U����g&dtcxG65�^�;��C�����o4s��5��ڎhJo�zc�F ��po���\:�U\r CPN���q���]8��9�A�b]O�P�QJsx5J�3�;�9ͻ�j���Fi� ���cy��כ�2���P���@ŸL@���x���6Jl�1�7�1�Z(FޑJq�,�0��)���.�(Xаĕ6��Һ�@p�Fi���n �=��F�QV���`�,�#� � �����Nj?�6ʳn�������)�X����`����i�!\�a_~W��<��l��̥�� ������)/m#aZ�ࡃW-=PF�@����}]j!�;��X�S`��F ���yF^|o%���H�� �?�\���t�F�Zu�^+ ��sP4���K�uO�����K�_�*���h0V����?T�B8�E�x[���9p���g��Y���@j����x�D�#��{N�at������&���㒆w����Æs /�0ߩ/������'����1���6��#�H�]�4`�:P���p�[�<��r�wÈ�Q�l��d6���в��Fxn��]O��kq�t�� {-#a�1�}'}�)�����;����0�곲6��q'߿4���m���Ԫ�8����#�zc ?��T����ah�?�%8fƂhV>��88��v�6����M7ޱzl�M��객Ng<g�� xw�o�7ݴx�sЛ���0�qm���t��x���Z&A9[&��Xޣ�X<gQ!�n���_�eßZ� �>��̉��+���@A��
�ߊN/[�l��@ZPiR�~��dq�i+�}�Xٱp+;7�J��6V��]�@�/(�.b!�Ky��mG�v��j��6V�n �\��������?;@Ռu�+�l���7���3<n��?nca�@�E��o��X�#`:Y+x������q�.�Z�Q) F�o,�2��R �~�wk�z�-\�|v\�zc�ؗo(�6�K���YO�ι�:5uy(�w0����3��o��L���u�lb��sBu� w8k����]H'�]����I��;�AH%a���~J�.tyh�^� ��*��f�U��=���~�&ܷ_^����vj����_��.`������|x�c����?�N��7?��lw�� Y��?���㷿�_O?6���Tx��y�c�/���/���s{j�?�No?6�".�������c�}��?�?�����[��JP�+��׿����YF��a��J������~V�������{~}�j�=Σ���������VyN�V�뗫<���qo?���s��o�[n��x��݅�ɟfi�}�Ҿ��������vk49��{��5=؉��tܽ�=�ǭt�s~=������_��w�v��#�3��5k��W۽|m߶�JM���׃ ��˓�1�+�8��R 3Z���ʹe��g��� ǯ'���'����⌍�ӄ�J�Շ� ��<m�$�/W�]�Vҫ7��>��?��������2oȟ��zV�ù��!���\K�W9�׿ʵ\���`�� �r|4���W�xlw����޾�[���Psy�i���L(��o����ϻ����1g��w��N� ���K9���b�_EO��i�y���_�|y����^�13��K����s��|�ΰ���~�~������a�Fz�e��я�k_��;��v�L}��2m���t8�^�_�$��l�/M���N7��x���r�յ�����5�3aH�#��C�M-G?�N9 �dg��#m�5�۴����n�4���# ^F�w��}��mO�۷7��5�}~���l��~�}�����_a~��J[�ה��t|~�e��{y��N��ӑEK�XA�����$4��4�����_^R����fB�Jc�q+�B��7%��9+�Ś�7~�i�. ���%3|�d��9!���~"G�U�C�[k_A���9�����<ڞ �ߏe��:K�+���-Tl 'e�>�>��FIe���Ju<��4����������� ݻ�3O��W�a�{������_�Z炭9��R̿S-��8!ϻ����cr��(�]����7?���5��Pү����?����������?��2��==�/���z7g�g ��l�يɒ����R� �K�H�冟�蚥m��H�n{lk�o�4(����Gb^o�_ע�OdtG� �N��v����!�n��0֝�N���L�d���d3:j�\��^s�����y��I�m��/G�qp���//�G�;���p����|�[�?����<з��i v6c�%��"�����p��Ғ��X��$/��/�_��Θ�%�eD���I0*���(�3D�����ӟ^���뢩��:��Dn�� ׿�5�d���
tZ� �����L�w��^����k�]�׼+�+�g����0��VT}�~��ݽn�~�>|;��7־���U��Q�I�3�\_�$��;��V������� ? �r�V3��� ~{2��S+�m2{H�����_>^����{��s����7r��x����f�����xʍ��u�6�/ߺ�m�q��8��r�fT�e.#J��*@�w3r:\��?�O�n�'mOr&T�0��ߞ�����V��c�L�M�.Ozy�����4|g�Gʠl�u���[��~�O����tᝇ��ۯ��PJz�T�K�����|"�8V���{��Y�l��^w����Vؐ���/����m{<�[(>K3�A���~�Z�?m�� U%?MnJ%3�v�OK�� ̪?��wmr����>�_v��L�S ���������\�����q�yxR?�x��N�$�=֚���ӓ}ة�^>q��C��LѹqZ� ʗ4r�r?�'�c;m�l�|�|�c|� �Ó{����sn죳�I�ڧc;���^:*�sw�r;.�޻G� ���S��C��;�٣{�˝c�z|� �Z���h�Ӯ�I.�εOr�V Wr?r)�ÓcR���V��A?Z����0��n��n��;�l�q�e�8�wz�@�s�Ar���?���LJ�y���쑹��ر�I���1��BJ(Ӳ{4O����
���O�][)!d
�%0��/`�i����Mh�~}~��t����VO�9�����_Oۯ�oϿ���yP=�~a���N����c�sQ!�p=���t��������=#�͉�&%�Kq�._6���q�����v/����pܾ���G�����]|9q��f64Q!�-D�X�s��pܾ}yyNĸ
��}�~�����=B���]u=x�����{;�~��uwz������G��������}�������ח��rx�[���n�vڝ��}�!�<�'+�JB�!�8��ƸHWRERt�F@�����GϽM�t��z �wt��+&�Xҳ��;!�P����FB ����~zn��o�P�_������nܟ��?�"�������a���uG�&ґ�~\�q���#��?��7��������^^Ə������c<A�ϻ���,� ���t&��Z(/Ya/@�C8��?>�_�����0�y�fرs�˫��w�������k�p�{G�=�Uw-���D�������So��փA;Xv����(�G�ܹ�T]�%!�Koׯ��E�C&F05 m �:�ȴ�������rx���B�f,-����c�����5�X`��QK� ���iM�[�]%}�#��,h�}��&�Vʏ��O�z����p*�Jp%����4b^�9:G�T�s ��T\Ϧl=���|�_�~~����Q)����w�)8���H���������� iP���
� e�����Y�
衪�s�e�E&���l\���Va�E�M��J������{I�a�QA��u��r��WbE2N��Q�<�2��c���]D̥�Ph����?����N3v�+�Xɐ�X��`f���+��b���!�d{5��znd)M�=iX��W��N!��@�|�P�^���^*��QK+L<?=�E�`���̚���o��x}NJN��Xx�A.s�������:M��y�=�Nrz��� ����B�$8�v������-B�y��g{�4P���Q#�E��Q����hĘ@��*Y��?^��1 �����a�[��#o筍��hX%�����[����!��Xű쮵Z(-
��| ��"� n���XQ��.�z���ঈ��Z
�B�������Ns�~}!%���܌񎄇�i�S| �ićf\�恚��<�G��� ����s�M�ԃ�;�M� �;�z��/cEG#i�]�2��` B(Kg�mr�{��ǁ�A����H����ؘ�0�5����q���חhb�ֽ���#]�� <1�b�p g�fl6�� �~��G(Ċ�ȼu�ʥ\���ڃ���k)�ƃ���7/a�F�F�GX/������M�hލs^�.�ZI�=�f'=��%ܴ�є|m�ҭRצN�Q�J�JuSb�����뗫�O!Zf�R �O�3���2sӬ&�p���b���dm/Z�$ �W�^�������F#��$���JW=��"������ل&K�
� �蘏��L��9�F�z��kD�\�Y+T1��@R#o's�ȅ)
V�h�f���H�Z�"�ڡy��^,0B=֚V�)�H��~5�������•�آ,P�=T�u��1�v,��=ԄuL���\T�T� |�x��rd
���z �=V�j/5��@p�q�t�oE�6/D;�o��Rf�z�L������pkx2s'-���t���r�&ub!��C���r8�tQ��g�*��Xxa�׊5r�>���|��q��l���j��Xq�a��=r�{�A�n8 f�廢 �o�/�q�ڗl9p�y#��2�"+����>�s�983�I2� �,�e���L[�,�㐛j;���k+Ň��4���o�T:_���:[����{�^<�����*�4�o�V��y���B�'F^�
�LΙ��K���hi��er�k���<Ϯk���^ �2�R�
�42�xr(=m��E��`�sA0���=T]o_f��������e.h'�E�P1�B�[������ժ��r�����sLh�5�\�~�8��ː`�\��Upf(�ډSl�-�^fC�4�F`,�Pif�����T ]a��5oL%�&`e�h�$酀� ��JM���|B>� �V�j���z!�G�jŸ(Μ�6�#�)�� �QE��X^��
��b�4Z(�NI���N��Q���|W%N4�<H�7/��
/R����
��ȋ6J�*Ei��h�����\2Q��K�ʰ�Ц��d��n�?���2���M�J���$,������}�B���%�5_�#�<�
�o�T�8Fvq�0@˔��">D�����7./��s� ���:�F*��2��e�έ��%��Q5c�\�(D%�)�*ò@�J��X�%����A� ��G���DZ e����<��C-S�Z�%
o~�
V�Z��F�x����K
��VxH�@��P
��R�+Y�?_�`Q����H���U�j��5\5n�~�,޼(<a�JI� OP87>.΍�w^<����ḱ�Q��J*�����)�����2�7��*�j�5���B/ݹ�vv,�B �����z,��^�h���� �u����� ����ڛ�I�Ɗ���Of�i��/#;�4x�ˌ�U����o^d�-Ϩ`�)�[c�t=c܃�`{�T �1c���2l4�lQ�� [ӵ�`^�V�E�;{I[do��"+�2��*��XSd�[l�p�lS^�2K�i�xo/���-Q,\,���
+̊8��!���D�pƤ��� ���`p"З�]���D��d�<��\��D���x�eJϧJυ�eB$^f��%�&_bo�8�Q��,q�1!}�%;�"ψNP�����l��Lw�l�N�p~R!�O+XL���8�WT�3{=��4~(R��HPi���5�y��N�>��)�50y��ȵ@���Cݳ-��´�hU�<x�і.S7B;�a��+9�Z�������aƧs�-�e>]u��M���Fչ�l�5aD�?o����OD'�/qV۽<�w��q��Ŗ�:`��~�_s�m�d�w8F�{7�e��w�q��b͋"���i�8#�����v�l�`;������e�;���cx>V�`�kѮv�@��&�hY��Ȅ����C]����6� � ��k��V�F�$��R���C���)[7=Vκ���갏V*��~�8��!�۾}?-9KD��7�u1/c��� ���3j����7H1�la1����d�[�� ��dp0?�A���|H&�D�2(8ti��w� �SVk,�B�\%�� �B\�n���:[�*������p� ������J���ť ���P�d�V'��}Gix�˴�`b�V'Ѽ�V��s;g�����:�0��f�4޽mu
���������)�k�Iڕ
��G�:��U�:��Gf���,��$��'��Bi�œJ���w��)�&��)�� ��C+nuƴ��480u�:�)��V�3�}�V��B��[�.W7
��J�_��[����V���U֦��Ц�V�kˆ�^,���/qV���ʁ���V��r��V#۽��2�NJ�`��h^ݒ����$qn��)-��K6pz��g�V��{#+mu� -
�jmu� -��Vg7Q�lu���u�[����%+�[a�$�1����j[�+g�8[m�3`%���˷:Qʶ:g�� wO[�Br� u&�1�ou
)���¢��)�\���cd����\F5׍��Gl�������%���p? �Z��B��~�+r�e�YH sZX/ ��� wM��
��q��\@�eQ���� ���&2�?>\>�$v�85\�s��:J5o �QF�{s���ɳ0����.1�&ݸ�s x�������UHhm�TZ�@��J�o/3�ڄ�.^,smz� ϦkS�X�+ٳ�B7<�p8X|"~s*lf�<�9���zH� Bϗ+���KJp�����>�쎻��4��c{� �+���i�
�%��f�iC@D-�A�ԕ�i��h h4��9w���+�3��Y�]� -TPy���|��j������J���M�4~�Н� 5U��(E%�,���J����x�ø��;5�����C����wh;ޙ��I����|�;b5�h�w!����+���3DO�gRJ�^&����"�x��ę2��n���7�=\�i�D|��%-�E�H��$F1��P�)e�$�KҠ���㬒SH#]�}S2��H&'��'�N����$����Igx}2كޔL:��뱬+���ܕ�!�N��d��, �ж6� ��!����Ŋ�dx+2If�{*MU2�2�$4�I&޺d��1X��#|��C&?!��X�_���$�\��Pʎ2�WL�H�U(k�^�J`�d]`�i,�[\z��X;�b�rW�1��-��2Z>-/�fˋad�� ���˲T�U����"�� {�����a
�B���簼�[r2�H>�#H�(J^d {�L���wr�b����7"W�y�cw�f k��? m�CV�k���߰Z��J�"z��l,�{8�#9�
�g7�]�i�^.������R^-�������/����g�L ��7������m�qw�£(����aF�u���,�\�,��̂Tux�����q��!f 9�o����t8Μp��"G ��b�J�]Y����H���3/� Y���=�+c{:\���x���iw��ǽa���v�`昁dz�i\�$
06�mDls�E1r���E.��p=��M7�D�� ���!���� �S��0��6�DB�X�RF�I0�6��P�Φ�RѦw ��l�EoLVʄP�� �E�.`Mػ2���{�^<��1JV2������G��Ԣ�Px���2-�+�s3����y��gk`�jD���V��/���t�7�}m���TṚ��X��x<~(�Щ��2}*h�W�*��&��c��s�N,r��c��0`B �$#�c%;]�ϗ;]� EN��&x�:o6��sQ�����8 #d#���)�Ⓕ���F�~�����I͕�X1����c1e�����a&���2SA�plE�L���F����E�z�Q�Ĉ�R�#�=���'�ff�*����O��$@���YF��
()� ��*�{� ~m0�U�oV2�!~��ߠ2���Ǚ�\�H-C�(���e�k,2m)��BhY��7�ن�"�~�U���t�O�/
-k��R�Z�p>"��q��i�`�L#/����Z���8��-~����PV��
-� ��Zh�a��ru=�ÿ�:�lt���F�FFh�U7��F>��ecu�����Z6�� -�p����Zxk�"��v�Y��}� X��:���d���r �aI���F��oV�Yو��O
3k�jM���c�f��~K��8����6���8F��9���/˼M�y��n��&Ѿ^�[�]\����������eo��4�f��b&͡EYR���矮�t\T- ����� ��GaQ��eo�����
�T�]Ų���ڪ�sRV���H 9o>��t ?�S��PnPצN��V��_T�v���ͩ���li�[��T��JW/{;Z�T��p�X��L#�{�[��g[R�l
m�Je�[U�R��wW�L1�W* ��C�U*SLP��t��t%����cȵ?E��/]Z��k[�R�s�OuG��;W$�%eo�w�f��^&���+� � �Zeo�֡�[����eo�vi�[��K*fE����u��b��q
'���b6��_��B[�L*��{�K����G&9u:�T��S�?�K&����/��K�������^�vJ��$2 mk�ɀy2ɵ�K&{�;#��sQ�L���dװ"��K&g�ޞ�C�fD��u�$wXU�<2Ib�I�X}2I�V"��W���@*�X�dR�T'+�LN��O&�d��$����IaȋE�XzS2)HgeIW,^����dw6�.��! �$��M&�mȤp�.��oE&O�*�XU2�2�$4�I&޺dR��L�x(m�%�5�w($_� ����t6�����L$�1ֹLAZ��b/��)Hk_N@`�r����ȕ�(�WL����+/���0=��/����>>��/M4/9������;�K�T<������1
���ic��I�?P���H)�C�?=�rr*���;�ϣ�'�k1�<�y,
S�8�~���uX�zY���ɮ��8�v)�M���X�\U %_ZՂ��Ы����{��B1r-���/3���F�)� ,��n _)�L��W,��[�Jif��
��GV+|�bq�/�s<U���x�G�����6�
#��R�(.��=Tˀ6�NY���H���S׸ �e�\8l�J^)ud��Xϒ���iDq��%��2�ћ\aQ�l�?x��L��nN��D�"��HV����%��QD}��уer�<���J�&���2?�Y`�z� �m*��`MX��J^u˰Nɫu=�ÿ�䕲�؝.�=؍<��#��r�S���F�F�hy�+e�df���%�&Ѿ��W�r�T�[��ezUЮbɫ�&��c]6�4[I%ʳ��1C�4�N��V��E�|��ʰ�ܕ��mN�+��������W�#d5���1V)u� �T�)/��q�����%T��B1����$�|Y�eB�eM�{�D�z����nq�+�J]��V���q�b��,u5@̤7�(KJ]���ӕ�RPǧy~���D�=�#E�.u����z=\��f���hmՍ�9]�
��a���RW� ��,��z� �kS���+�r������S�x[��J]��'ʼ1�K]M�V:Q�
�^�4ҽ��Rަ�Ƨ(�@[�@���ځ2�;P��d�������i��[*uE��U��a�4DTv/C'� �r��k[�@�s�OuG4Ӭ�;W$�%� tWD�ށ�^��V<P6�K4�k��:[�zT�e?_U8PFGȭ2��u|LY�<B�c�s|LY��FrF1>���rl�%Fv�|0O/_�5���̏�9�����Yn��۷��EHܢ������ ��^^�Y�9o!L�q4w���� PS����W���8���Sq�狷�q�M�զ�Oj�v�Z�J���n���Aȇ'����c����Gg����O;�v�۽2���f���Y�j��^.Q�x�V���R=4��+X�e�^RHw�`%��l��`�M-��,���
��P���Ó6\<�7�B�o�ީ�d�G�Z��`z�;���'n��yhݞ)�h �*)��2��Y�`��w�`���zh��W�J�j����Z�*��o(�*C�B�Z
6`%+X���,*C��u\:�w��A򧧧�����w��G���;�Z���ʵL=)�>�'HY�R�\�D+X �9�(��2��o�-װD�zytZ��yt4�w�GWѥ���WΣ ���ˣ;7��G7@=2� @��$�����������jc�����C�[����X$k��
}h؏IĉC@�%������a�M�r�2zf~���g��7��:�0 m�f�v��B]~�d}�$�3N݋;�kf~�\���
k���J��ٱ緿��Ì/�5^����2|hS�"�+���7�I͊|"~s"+R(��<��( q*�( l��C���M`+,���� lx�v3G�����O� X�a�1%�$`M,��C�/��/�_�����w�%�OqE���]Q�{pE���!֕]р��vM���1�uТ,rE)yn�N+�h4��Vdb��V9�m!�Ta)yO@%֗��������=?T`z� {
m�TdOV2�*$)GaH�9(!�N�f� YB:)���Ng����Ѓ����u�MO %���6�l],���t/@e�h�zJT@��N�w����_�ڳȊ�lB�`^�nB�����C�|���#5IJ��N@�&�]Ӫ�: f�jZ�E������w�T�u�D�N�����U� *��@:��
T=h�ЊT+�Cu%i�j1y���[lP}���&z��7�z��� *h[{�*`F�n����sU7yz�L�е�Wv}���RLm�ED���%.P��g0p�Ԋ �P9��3�Br
��k�܏���/^&c�!M��~�r�v:>����l�l���c=N�3���S�+�DB��=�Lnީ>��t�x��勫�+��D��cB�,1�c(F�[@�^��l��ʋb�.�˗E��� �h[|վ^���V,� �A `����[U70@�w�0aj�ytoB�%�R��&�Z��pe�V( ��ӪJ�Dõ�Z01��Q%L4\Q�k�G�r���5 &�2=��MÍ�S0q)a�Ƭ��L4\��x�'��=�s�:ǔX����p�lA��!�'�7'vi�0����`"�QZ0��U�`��wW��HΫ׬ ��C�Ň���֚������ݜ^0������d��lp�k[98<�\��L%��*�+<����LV e�A�4V�YͪuU�p� h��N��QW 5�너������
9�j:�0xH�oD��K!����=��e��
���ygv;�w;���1ge���-����{,�� :~X`�n1�(s��2GB��:A�O�T�H�+��3�M,8��D�#�(�R���Ѱ��2��3R "�7�U���.��K
�j�� @�s�[.3�=\�}�vX�p�}x3�k$\��Һ9Wt��$Ǟ^K����]~�� �����B���z�>_��{�%U xIW$^&��7-Xmǭ�,��жr��f�U���J���W4F�x���D�P��
x��
,�Vh�^�3�V���RԫY��xFp>/��RE��x�ha���8��p��|F�T��(�Ck�Мr�8'M�ֹ��F�� %����F����B)�0M��~s�1�ֺ�g��c�F�7���������Ţ����Lj�r�qY���mmF0oÈ�uqx+F 7� mf5����=�L +��3�[���!�U�dW�L~B>N��񺰉7&dc�}]xo�C��K&0ֹ��0ϗ^�C`|�u>�cE�2��c���[��
�+/�Q,����ȳ��0rS�z��eY�<��c��3�����o�� O��� ���Χ&��;2�(#1)���TZ�dV�r���1^���x�R��<�d4��s���>"Jb�R����I�iQq���n�8�������AC�œ�8?�*$X���]�o0���n �t_�K ku��.wMZ��&�\Հ7�G��b)ac��T�3@]}?}^�T��:��P^�׍�/�K�_';ֿ�^�����}O�;m�ׯ����pj�?Y憌~,:�`����X�R���t0p�lc06� g]�� �y��1�Ĺ��H�[��3��5�K�_��hz�i���N�:� u
�j�Ӏ5�N�*���)g�R��a̭d��� s�\v�R���l�J����R���UaЛJ�z��X@�HU:�������ߴ e�eҩ���U��ڴ�Ue�Ӌ�����gW�!0��O��"Z,�W(F6=��E��2+���6�R��E�-$p--�B��W�Q�V�q��\��ܴf���葙XɄ(K◤<�M�25�2/�����iU�D���(+\��&�m�˪� p�K �U,�2���?̬���Z˹��Q;�t�%Z,s�R�������qqX�.x�J� >�9H���<&R�i���x+�:��%Z&@��[��* �F*�>��z��VH"�Y�?��zf�Z�ʌ����2��H~56���4~h��x+�kQޕ�J��-2�p�rf|����͌��VΌ`.����䬮;��H�K2�mW��^f�/��CÊ���D����гu�8�?���1K�h@����$F1����+����%����B��YZ�SO���� ��ɤt��)�� d����Ȥ�>��AoJ&�ēǖuEbid�| �T�=-�dR᷵$�Ih[�L�ېIU��x����l����X�Un��N��2Y%44��Xx��������*{�:���q�y�w�%' �C}f?z�|��2���K 0�9li��K[y��2��v �X尥eqs�E1��G���eY���Q�4=y�h_1yD{�<y����ntD�䑀8��0a�&��L�B��(y���/yD���#�8�.�����m���=�Dq�'�h�k&��p�K���#o� X'��U��qB�(Nx�BFƮZ�����#=Ե�2����WJ X�v��jY����SLfa��Q�7P �v� Z)�o9q�L�B���>y�2��QtR��h�����VVq����[S��b�Z1�om����J��M��V�.� �g���жv�?`.����uu�*��|Q�U�*�2�=4��<� �j�#�u�8��^�*�UP�ʺF�7�>:�7�/ ��+��X��1>4����>��$��˗eAr�l\�%=F�7/)�a�G�pn�b����sU��@���? c"�� oX�j�PS���Xݏ��H�~_���K����י���Y� T��m9��ݷ��7�Ӷ��'�����?���n?���o��`�}���]A�C��Y���<���eB�U�őC-��B1�-���/�Lp�fc�wo�扖�v�/��s�&6-
�E��$HyqE���(٬Va����p����q�f�^P�&�k��KL�k��%�|qa\��}�;*Tc#q*�����k�m_���6�Q)"�mL �l�.����S���� P9�n�B��H�X���/�ݩ�o�E��h�m"� h��
���ş;�o��^{��c �R6��7s����e0��f_$0J"J��ֱ�wA+�vjm��&����9$����2�ΝnLq\�h^Wr�kL�dS
���J��K�'z�%Y-��@յ<�|g�;�f� �{���S9�����@����%���b��S�`�rJ!e%NI#�5�)Y�Hz� N mjqʀ���`%m�C�B%�/o/����8���I�k�Ǒ��c�b�c�HƢI�Ϩ�N��l���q0�L��������A��)��(��óq�Kw�T��;p�H�4�Ǘv���KP}�@ѫt ������ۼ�������$Β��3�[��$��%ǃ������ �F"o���� ����anT�����=�� Nt��)��wu=��wȴ�8FILi&�Ֆr#��^�2s��n�x�#����?�����;�T��)�˴� Ey|O�L^��*Tre3��Q�Y�� Xf���aS�L�J63�ϗ�T��ȗ�nV����s��T]3�o���"_4�]G�t�ȗ.�|銑/�^��}��/����9v�d<{���U�6"���W6͕F7|\�`m�;��G�73�#���Ub�F/�����x��&�r���d���4]F�Ѝ��t�7/�75RW�.�pn�]fTE�݃�J��H�tפ�(<�[`�z� �mj���U�4����Դ�`����6Y�ˠ/z�Tբ3�Y�m��ǎ���w�p��p4�"K�|� �ȶ��׽�������/Ѿ��:!3�ϖ ��7>�����5,T�1(���6
��*��+ÞA#]ɞ�{V��s����.�A ��\���y��j����mq�V<�Ѓer�#K�V<�ԃ��{jd����K %袀�������Xչ���X���a>�r�59��Ӊxc"�@r-"�V[�e��hǙmV�*� �җo�H�Y���T�a���_�����-���%H�����6V\�$��|���:tt�9���������UGp��B#՛+ ��=7�Xv[N�� ���#ѬidR�3���@V��{8W�p�>�������_YA�=�[T����PO����W�Q{=_��k9� ��Ua ���K���N����_�nQ���S�t��)@��i�D���]�!�V�K��:X 4��`�F��S�u�d0c���� @��|�:�re�V��@��d�J\�i�/ f�����/ &�?�t�
���#�4u�\]��m�� ��9� ��
��\[!,۠���F'�N��1[3t�9�*�&j����f ��Ȉ�W8� ��+�O��\�s�繘O�VL��V�1}ϩj�e"��������\p�”��^u��tT�`��$��&&���h�������?_F}9��fR7<�όwP K���Tf�'�ְ��NA:����ԗ����:�;A��]�`���������!$7 ����0��@˚7��U ��0Qu�/����/Gt��Z雤$�i�L�,Q�p$3�!ˋ@Ӱ�n��Tc�95S��T��Ƣ5}�Sňhʒ��* �N��@�W�[̓>O�J�c���$g�Z�ɧjL�
{��1-K i�y�A�������dz"���l�}c��?�Z��bq�c�S\�#q�la1���Njd��ɐS��}�1������eQ���L.(YO4�ۂK^ <��(�҃��c�X�*T-VԃMZ��XQJ-�9�6P`ez�k+3i��M���� k����Ep�y�V�F�z禹�^��k۔����.P�r^r��Kz���څ����t�+��z���=�d}�+��`զ���NG�������v��I�Wq��"��J�z����D`|x�z�<�r;������<]F׍Q��c.���KN{zcv�ly67x�CV�z�4z�5���i�)ʼn��8�����X�kT����[�x�76�~��4{i�#V��#۳.�s[�[�\�,��sﭯ�
҃��l�X�o%��$�(����|��A�r�� Xչ�<燥Wɇ�k�Z��u��{��x��ɒ�p�H��H?����q�?'�c ;�6��1G�Z����"Jm�ap�'f��w�x�^O��>�+�F ��\���lU��,rCZ�������˷�q<.���ϧ_��w �hy�Ӄ�,P�+�^B#���{�&�e�ϗ��Q�y�s6�\�,o�pn˛�V�z+ߗ�'.5����:驍�R[��ʹ�&�x�����M$���/���V�Y#�����v5����4�]C4��� �5<���
�kՄP9*�T����.�|���vSq�JtY>!��E��9�(c�B;�H=�'��D�(��]fxǨ�M��ҍ�ò�����s��bdoO &��ˢ� �c �o���m>g��+�<@�uJ��p��& �ȝ�%n_�_OB�9��Yw)u�[܆�y��ܲ�=nC��SJ��od������ ԹQ��܆`*M�b7�����/�3���̘�+}W׹y��bJ�c�@i<�n�+,��m�/r��=>`�a���wl���M������?�x~v?�z���+����;06�d��B�sm?���7��?~����B����ʱ�������n� �~T�2�k�l�G�%b0�G�n~���y��<KJ�Է�`�rO��� ���2Z~�Y�]4�3l?�P��șbI�G&''҈7ݩ�L�z���LƑú3%�i��9LA%t`���:�X��i%���1���I(2�l���[�v��ۏ׶J�j6�rj�|KΔt�0��z�@l
d�zD<��rY�|,�1�D�JGd;3�U��2:�P<<��.P�4�5~
���e�&P�N\��uf�,а'��S����s�?��B�%��#��9qYL�+�q����c�Ie���X",���/N�܎���VY����u���H�Y�x�fZ��e&Ʒ��OUj�u�oƕ-��M�jy�*23�\�%fF�26]����t�r�{A�.5����V5�U7��ߩ���K�0��G��S�|������U^|���w�Nl_��.� V_�1�~ò�t��5��ׇ�ţ�/Mu3e�h����A��^hxS�ȏ-#_=^.���э��}-��χ��+U��}�43�g,ܥ�T�.�;�F�槧Qը�N��,7?�,2Y3�'�K>��*�# OͣV���#�J{���;T�y�f� ���jz��D���K�5|Jb���>w����}"�J�Z����N�RI��P��k�Ri��,�j��Ա!J��U���}a(P���L������ [W?��c��yh\=�@פ�i�Tk�R{�\K
��R`�]3�ju�P���Ra�}]���;��5NT�NC~���������|8�B(5���7 �:�F(�G]�����Z#�ڣ�`�$�R��J�1��\!�@��^��T��R{�\� ��R� �JdQ(��&/��l\�H* �сT�VQ9� � Vf �Ӧ�T~��H-�#@ �*Bj���`����:���T�T�&:xkJa1� ��xY�'��@��:Gf�Z�d��)�‘���� ��+Pʙ$��3ԀzSO�wT�tg �=]uG�.g�*_XL�fY���@�$�I�Re*J^��� ��芁R����z��I����qx`ܕ9����� ��9'.������=�m� ��E=Xg���4��i�~��v��,��ԅ��@�v0����)�Bt�i�Ȋ��0�Jjט�V������,�hQ�,w9���l�� �n '�F�Μ@��p{��?��;�Ӑ���ܓ��%��(�����A��N`�x'P��N`��kޠaU'0ށ�]]'p
�� �� �� ~ '�G���՝�i�����N`�Yd�
N`�o'P��N`̶����@R�EN !M'PB����&�@�� ����Ҩߙ���;�=�m������L6~�\���%�Ww��;��Q��̾�x�� Vu�8�Ҩ�N��?���Lv]'0@ޭ� +��=�m���TvY����>��2��[�(�����B��N`�o'�+[� ��VZVu`�H
�� $���*��lc��� �N�Vk�Ҩߙ��;�=�m����w�!����� <��O�t'��A��N`�x'P��;�=^�y��U��xN�Vuw���i�@#��Ȼu�^c'�G��4��N�4��i�� �1K�Q+���v���������@R�EN !M'��)�N R�Z�Vpi��� �Z�����5~����o2��=ޓ�����Y��$?h\� ��ZE��2����7hX� �w�Z8Z� ����u'�?K��y�N���ej�ݾ�ĮU#z^�:Y=#f����n���n��x��Y���v�cu���m%���<'�d�HHS� ��4�,<H��;����J�~gN��k�����5~���L6~�=?/�G@{����;���@/ꦃ�x�� Vu�8���M����u����{uTz��ԛ�A�Xm;8���A_� �1��_� ��r��������iD|9��D��f�Gm��Rj{�<��d��GH��� �m����)v���Q�Z��M�~_��l�/����qf�R��fo2�2a~O� �;����u�9Z[��� @?��<u[d�^���
T�27�xP0[����gu�d�k�8��[�[�l�Kh��a�ZB�[�I���B�ږ��,��]E�ʡ�蝺�� W��ZHh 7�U��0��Y�R�Tp� r�w��7AD
���.�D�
�b%O��������;u�H츞�ѾF� �-Mz�\vΆ�'��A���j�>�~����w/�o��������d�u�6iO?�>��
� K�z;z��R�c����<r���;�>���8z��W8�|�E����@? w�� )NJT�1C�ĵ���-.
�������xlO_���]�W�e��!W�e�
I��6I/_������a��Z�u���j�=g�pA!dn�&(�1[мM���0�1Dn�e�����?�v��xƽ�Ib\eе �4=��� "��mP�.�HLB�~@��w�����S|?~k�_��챮��4��FX�+�W^KG��0�F3lac;UE��.U�H'�'Y*�4�B�d5ǕHq��G���� �l�!� v=eV�a ��Dxa\Xջ�� ш(���:�=��Y�ۘ�L#U���.�
6��.� b�"*R�` ��2�� �1:V�FS�0�&���0�q^���@f��E�Јl� �`e���h�2>ӃM�4��c3R���l9���� ��T��� �w�p�G����-ӐL�HdA/,Y�w���[>(L���|W�rN�)���5 Q�$�2@�?ɛz~�+�O��|<����%k&fN�0�������iu疬Ql�\1t���(�f��9$@J·��$�.���� +Fp��u�!U�����d�p�s��ma
�H� �K$Fpc1-k���=��R(��13�L�1�8�`>������:m���p������C�~t�{��܃T^�X��n��i!%��ݣy�?��}T�v'8�<!�,�o��z�r޽E��ռ̄�8��:�����'H4"{\���?�� A�w�ݟ�-dl�n*Ϯ ���;�jCuc'=bԇ�k�N��Uc'=^�RS���`����e!FSgNj�J��2�x�o/q��xd�<�+Ǘ�!�V��� � ��c ��� |"~u2$ԕ4@b�YcH��1κ�W?C��c2���6Q�����x��R�����E,_4 N�E��pk乏:��M����î�`wq6k�� #��o2��]P㧒���&,�-ӳ��;sAE:}t��r/�,��C Y��X$�H�*���~��⍨��+�}������n�gt^�{n� �B�s�?��5�L4�xX~ʌ[[��9��,c���*�ez���e�L��eJєM��9�Z�eJ�}%�q�(Y�4S2F��*��Sp��Lɤ�F3'��?�)��Au�PoJ3%s�>� �wC3%#���if�,��]��4sz�)�D{U��fJ�tU�9̤�]˚4s�.�� � Ƣ�(_����O��T��e��'���4l�EIY�7��Ҳ9���́��ds`j*��XAe�����Α��b1z��1�8��OK��1[b$?e��.ߖ��H�|��ؒ���P�)(���d:}ܘJ[ P����y%%%�R�[��S�r镔J3��L��;+$w�{�4���Y�$cFh�7��<�N[��6��/���ڂ}րum�G�#�J' `�&�Y)�3�q)np�/s- ��YJ4T�JZ9�B
��1���Jэ��U��-t�M���c�,th���-���� ,tT�;\��V[�$�����$���*iS�$�م� XY ݱ� ��X�K:&Er�������=��3d�Ar��FQ��@���Ч��5Œ�>PT�EJ�fdT$�*�S��ȬޒN�;���U�neKC%(�U(����95 g�*%��5 ��Z�Ej6�M�ٲ��/��/�_g�� G�J��u=�ÿ�R������lB�@T��*H �(Y��zգ����ԵT ����*��gk)J%�n�k���QAШ�
` *(]������_^v�������/���$^�=9od�) O)QR)�%�U�� �:�H�d�z�eؓb�tr�PF�Jo��W�Jx���O8�O%w��<���CH�֍�
�Q78�V3�u���s=n�� ���EGh���d�*waF�8~f��k���Uz�u9z&N���M�Jy!W�<k�'�w��������M�p�i�Ғ2����J��緿��ì�V���z�,.�<V嵐 �`�(�4n��9y\pP�wh��@�y�r��&~�8y�|yB���! ,�'x���C�Z�daL %��4�V�c����hH�\�ҚɆ^|�r��0�.�Z5g��
?L�C��*��K�9�Ϩ�����^�$�P�Z��e+��4D����!j��Ҋ�[B�z�2���f
`�dHK۸�+=i2�d(���_���{<m�����x�}�F�.
.�m&��s���p$�B���Qd�\]Ġ�ۙ�)�쎡 ٙ���~��p���,����Wc��C�Pw��b���:���O櫱�Y�#�c�IhT-�5��IB�y2���gm��C�2_�u��h���8��i�B�S ,�Z0�СQ������ ,tT�;\��W[�$���3���IC�}��x%���~��Z�P���B��2:.����IQ��ʇ#2"e����B���^�ӑ�Se����� �'_�|�+T1���y���,&E�{����K�{��e{�~}~= m�4QWKs�JTQ��E�
+�P��؄.*K�� 6�iR6��$2C�xV��IU\��fW��������aezH1��2X�ʄV�Vf��2�y�M�Z+�Ǫ�2�>�
���@7��^'�N[��L�$C���HK��z5M2 ���ޑ�+Ks(��:+S��z�������/(I�r�����h����&�{Hh�H�(d��'4��C� M]ۺ Mr��l�-̲�&J�KhJ0h�/4(�O7h��B$&JJ�-�b�~���y[/Q��ʲh�5���&f�Xc9O�D�042ῧd����k�P��a"g��ߏ�b�����ш���H���=�6#,�i��@VLgk��W>�F���@�sY���mY�U1'Y~� Ѿ(�� �?ۃ$�r��i�k 9��IJ��A���W�t ��J[8+�1H���|���ϯ�lw//�Rw��
\1noo���SkB�(fX�3R��Ǔ=�,_\ �C��H��쎡 ي|0K��n�kAN"p�9��U)�`���7�VN���69��k�N���c]��&�m�����H�<����R�����:K�����D%����4����>.'Q �ׂ(Y�=V�B�F�R�`� �`�BG��Å�j%O@�9�V��Խ�$*a�%���N\k[��mv�1%����IQ���&rUwyr���!�B�JBy��D�}YlLBQ����1
h&6vlA%��E���ib��ư}�Hc:�D��X׊d�W���P�kU���ZÆ��6JI�l4�㼒(�T4��"M3�a���LaK7�� L!*Err�R\bE���7T!9.S5(Y͏���^+Y͏����u��:�o����o��J �^Z�Vz����:��J�����YF*�?�Ao�^��Fh��� E�._V�˞[�H������ +nf�QR#�$�[(H�V���/���7�*��h_�wifY#'��`�KK��{��o:�㐖`�ϬR ��*V��K�6�׽��:~�T�ܢ�`o��\�nװfI�ຼPK�ς|^HC���~��Js<?����X9|���S `���}����,M-��Ǫ��Ͽ=���÷����y8��ע��fp>KY�< Y�"�'�[~%2�O�k_� S�� ��/c���F�93�,��x�����6k���x M@˴��D4�Yi����|A[�x��Y��T�R&`�Oh�+2����|m������h�]2Iz��l>�~}~:m_ڧ�v��u���q�~j����.�9��@��f)I`�7��!
#[`dE��N��k^dz=�k(H���ԅ6�B�jD��'ʬ�լ�� �Б���c�۷S;O����B��2i@��m]���'�o����Y�`�C����ʡШ�>LK���e�P�x���]-\��V7U�
���^5�ſ�DEQ��uT���F��LC�h�*('McЊ �j+i��i���q�&h0>���F�D������ 1 ��^���>��ƕP������;
j5}E��k1��0Ї(9�dE%ףe*��ܧÿ��! ױ��� �֘��Q
� UO����d�"T������ �v����������KT�`��
&-j��E޸����r)MQ�,�I������#����Q�z���Ky/�n��x�Gf7�a��Jܧ��VP��w�+( Wˋ�;T�K�(<M��`��;�f0��i��Ѽ`UV�qި
ʝ��r׌��*Q��Fʝd�HG%����Ug/����Z-�O�)]�>��z{�fp=Zh�^�}��j���:�
0Z�x�a�J X�k�P�"5�n��ҫ:�])�*`%Z�O������/�ݩ=_f�����^�U9��:��6���S��e|��+R�SLl��R;d;,_l�Dn�>FR �|'�ج6+�
u�CA�k��m��f^7b<��;�D�� n���Flc� 14s�#����,��,Ь����n�������7��hfdcnwu���-75Ȫ�oR�i�R��+$[� ��B�ǝo\y�B�}����W-P}���|k1o�FNhK���f��أ�O�=ZħM�c!�u�.#�۰}��M�����=h�T�@E�a��F"��# ��!��0S��i�o��lxʊ���׏|�u]ZT��kv�P���ҕ�s ������+$k�:�P�`B�����;&��tH� As�;���,?�E��H����"S)�o(H>!����P
���ۗ1B ʸ�3LUp��B�"g�G���a�Z�p�UY1~9�_vǶ+v�&iDamc�)Dɗ�8@�|�o,��ٽBA�Uax� 5!���� ~�*$�t�R�1�UO���I��[�[���Q�o�j�'m��hk��Tr���8t��H��Jߵ���8K�Yt�����׆��[�Ϡ����B]�rh�������I ��Y���Fk�3"�2�� :4������z� :D?�?{{9������Ґ�&� 3h�?FJ����CY�D�����:c��xy��A��bE^S;�d��)_t 䍷 �P����w/��k�вG�N��?:�=eJ�f\(}]��Ѵ}� ��rCu[�F�{e��8zf6< -�ו���(�:rR�Xk(�U+e��ʡ�ШKm��_h6Q��Rք�Ij�E`�g�+;|,�k��+FK"z�z��^V�AJr�6K��a�/1R\�ed�#���]�l�Q����`
^�- �'�،� ޾,tc<v�.?�M�������v8~(!C���*��*�m��\%�̠���������pܾ}yy>%�s#ec� ���q�|eh���F7\�Uv��!ʴ���Q�iT�b
1%P\�F�g=>�� ���ڵBΊ����%�5d7ȳ�Uk�*���v4���<��l�}$I������jD�*�1�2��J��������Bc�
���|2�Ӓ5�O `9� Z�Z^w�Pgi,�Q)�놾�׷�ﲛ�)��B��#'��
N6���m����%Nu��I��}.d��,��H �E��28��� �K9�F!E�,DŽ��1���`i����hW{/-`F!1��7��ݰ�M���q�'nc��A�{�w{��79h�5=�^��7�?�zL,�#�DG�Ĺ �d��$�F|m�T<^�g{Z�9@5E��-��^�Y{�B��"$"�� Z(���A���"ުj5z�� �jݼ:K������";�v8��p�2z����4� �w�5��(Y�`,��H��
�_�H���[qF^W�Eq%܊\���s�)�4.� W�����!o����p��b'� ��Vc(�o���|czCh:��ZQ�ިz�b@��{��|��z��|9"����5�255r���D}C������r/���Gَ��_ ��Co|" ��n 7�5k�a�YI�]����AJ�0c�G+���lqQ�� ��m^�- � n�<o���L5���ˢ04��ew�o�t����Ҹk����"��λz̵yG�e�d��_b�i") ����k�V� ���dV��H��뱍��:(���ɺ7�� �)��W�Cםr /V4�*c�5F]��Q�^�5z�Rom��zj`�p��u����� �T�7]���8���s���@ʱ������w��p�U�����6~ ��XT\;���H,<��!��dD���l���V �*��Y��
��Y���=�?�y�F�i"QH�\S���.��#��L�C�X�UO����:i�F����K!ґ�S���M5�q'h�@�����t6,5kD����U�Ȋ�D+���gu�=���Ms��µ�$3)eg�����5�˕c�H
�O�ӥX��[��;6TO
@��O�)z�U9���.F6*�곧 �+�dZ���zftk�x`�5u+*U Џq�&�j<��Vu�m��b�k�wjn(�vCU������X�)�������G��>�[�iMs[�Wd,�p] �b0=4� :9P��-zT�9'v,�@��J�ܝE���/�F{�N�v���)*����M�%ؕ�D��"�}�\ @�>�d�|�mNkKYF��e�0�R)�>,E31Ѧ��/"(J� h��+�Fm#�t�g1܉���Ӗ���*y�����E��€u��t^a�#�%y����1��F%�4� �_ ��r?^�_�t*���پ��6��%3y�����A���hh5�͗�]A��$���X$�Y~7Rt��v���FQ��X����ma��<Ε��a���F7.��9`v� �b�҇���UĽ�EƺG�4�Yw���` e��e��������XU�hG��1���uWdx؄�-+�����_.
�VV�[�����*�����=>���i��tE����������C+Z�H�D9D{���@Դ�Q�� +,G�~4��i��5$��f�B�� @m'd����;)3_�*� �����5�����ϰ�l� qrj+o�z�ĸ�d��!����Sy��GE�}�����xhs�QKsKw�z���Z�]c�Oq-�����J��=o���I�ĵ���?__������������!q�z�Z�;}�^0��:�`A��D�K�Z9j�����p��lxZꊥ��+8��4�;T�z����tB#]�� ` Ng���y�%2�|��W����U� �o�|��`T1����!_�N��6Z���,l� "��"{T�jeWڈ:Cd����f�̨h�+�u�%���b�o_gk}t˪Ru����D>!c�,����������7,�)�H ����
R�����ް�Ǫ �U/܋�{�1�W�#@�W�yz��,ze�0����G�(�����Wٽ"�nl�-�B�X�R�g@+4� �1�S�e�ĸ[Y��Ojv�oP�����,�t���~%`V�`�[�)�E�hj�.�!���\��
��*E�*�G�T)����P`�MAF��À�~N�M�C0>G�u���w��z/�` �������0{�5*hY, x�G�be]C��IY�l���;��gX�e��Ȁ�cҺF�#`�M�׷v.@�)�Z&��J4i���1����t�=��П����Af{ھ����~���o������8�1r�!������9��2f���
ɘ�q�8�Y��C�.�SO�����9z���ߕP��5;�B��+�nt�| �"O�ߚ3��*�QDS^�A�
%F�W�Hw�{��������� (���,i��7��� `9�ZaeX�hCK� Y)��gN��k��DC��cK�yh�w�ά��4�jO,:�e����m���q�~W g��"�Uo"@F.۬�յ�Z�`��h��,:sHJ�agq-�)���2��_X_�ءU�%���s�SX ��O��}�AD� �Z�r�X9�a�-�6�^"�ܘ�s��4�5V,�5:~ 83��9Γ!"ca�hp���hD�n���a�Z�;Lj 䲘a��m�,�3 �+�K�(��}�9զ��Ҥ�t[�Qn���g�m�����Ϟ_��͇$�!�^D��v}�g����=��D�uS]�-�<����H�$H��Tݞ���D�D"��SG
On��z����@ y.���o�;�F�t�u�ETBi�/ki g4�Jh�h{j��+�"���:��z�@z�Xnx.�V#а�N�3I�U��[k����`1�|3,y�� �[���ja��_���������z��dݵZ��^uk���c '��NP�S_�l?�� ��n`��v��Ä�����?K8��Ѵ��)'�����s����%vh���-KEi >-���h�"�%xk.E�������w���8�� �F�A���r�.v�S��`�ku8�F®���H �>06��F.��� ��� jr���������ߠ#�{�Y���X���Z�^��������v��ˁK`���dF�!Иk?��/ $_�m�X�W_R�;ޝ<]��¾���&oy�p?A�p_J����V��u~\��S��(r���Ou��^\�l����% ��ʎYj�C%N?З�8�<8U����8�?w`���s~;���$�i877�bd�b�f�~�/��]��I�� 2C����M�����0O���-�m�{r]�� �Y�zN���S��) ��i��g���{h�>GJ cJ[��;��hjS���u�?1�td�ټ>.z�ʲө�/F��t��0(�p���]�A:?]��B��=:>fW����pdI�� C�v�g�j^�*U
^��Q�:}�ݟ��l�zF�)�h۹�)TE/�MZ�:����ҋر��X蜥M��J��W%�_�H!�� ;�+�`�CNi,U����0�����1X���7���s><J��������ďbZ��w�I�a�L��LF{����IM�H.#��Q�Dz����F��R��|i3KoB��Y�>Ad���!=���"s�'E��S��ۅ4[;�L���/��$��� ��"��~�}��jR:*!:�1J|��?�������$����G��ԧQ�ߧ"������)��uW�������G7vJ����D�닝 ��{�oH'b��>9U����}�g�M�S�pOUzǓ�9��D�Is
pr������S��ݓ��%�v�!�UG&�ٓ��A[���3P:��o!�{�r�{�j�~�? ��H�<�%9�dM/����ζ﫸�-ˣ�_��쐊)*(3�W�)*�T��8�zK�[�@��(�/<����>��8�8h����0j������O ���_ܦ���I�v�*`$[��SW�IK�$�}�����Md����V筨���K}>�x-m�X�U�1�ܩ>�##\P]�Z�0�h�IR<��HFzRB�"i9BW��t���-Th�Y��2�S�\��9�gLh��&�٠?�j������,6��9*�92�] �l�!E-�`�c_�xQ�3�����ګ�O0æ�`����Bk��Qa��:Ά�:����B��O��򋦼��S��2 ��j�RG��gP���詆�9�?�� ����&��g�Ϧ.&]9Jw��%��*��&����i\x��� q4���g�^%�/WM��/�5x��դ"}Vj�oD5)t� M"<����#��?'R�T���J�$BO7��N�ƍ��^TO���>�5>�����V�(1� W�3r
" ��ȥ
�*�#��q�^Sڏ�'�����.�����L8��B��~”z����ٶ���3��v��m��u��َ��g-�`�1v^�6�h���l5(�~��}�w�P�OUtSe�n)�&�d3į;n���Z�4��E=N1�J�c-�����S�~a:=գ�[<ϣ���l}��
�:L�.�~�a��u��Q���;O:�k*���5��쫚�d�ױ쮛���YYa���u�p�aV�?̪��˝d՝jsHo�����*��]�y���c�q��e �w���G�l2�H,�N3����j��X��b$�!5͡�Y�t���&ޭ����k1�7پ��n8]� c?�`t�b�E�nP>����h|�Q�V��y� y�g/���w��O�}�����'��dN��3O�"���$(4�T�#@?�S�,~�� -�P���<l��n� ��࿻�5Ŏ��sb~�����)�tN��s�>V�:�=-@���?���E ת:"���pM�#g眒1��� <�P�X�Z|��{�������i��L�Ꮑ�� K�X��xܸE-e:]�q���T���K%�v�W���$�I��'�$Q�^$IR�M��K$I&�o �b���=F
�]�5=��i��ǻ?�p��m�Q6��������m��5��w�w۷��vO�g��{~Nq�+s#��
/�^� H؍ �V�j� �*Փ���-�&����ۡ!���
�uׇԩ�n�N �Z�Ԝ'�e��Sư6�6{~8�}&����_���9#;����̕����p8x�px'��p������L��1�y%�:�6PO �
PO�B^,n���<#�ܱ�_������u�#�����A�����Щ�����[���o�O�w�'-
���������Es��>_��q�o����}#�����){�����۾ob$x¬�(��|�l�Ʒ�l�+����&�LA��!���s���B��3�U������ ��%� -��aЬ�;�?���4�΄A��,�a.��䡉�
�.@g�
y�1�S��`��\:��v�F_�}~���������>�鬁�wY&���]G�xⰂ)�.֣����]�m�I��Sl2����6V�o�L)δ3;�qg����l�>��,�};��ȭI�T�3�=��,��}g��$��gۙ���LcR >agvzY�iVT ۙ6%�~�$qg���r:~��:�����s�{k��*��&8
Xg���m+S�ڕ�$�$R���'SDG�������*RTT!� �������fuԎH�G�k�>{�_�͟�vOo�/��i�Nx,�������J��F��o������ tR����̔(�q��g�w�'i��,H쨎�1')��D�v\ �w�ϧ�JhPjGc��2s��lk�N�N���$�V�a�2���c���}���؟��_�����*�Ŵ"R�Zlc�\0�Z�-l�jo��q� S”� �8�t<�) ���O�����t xrN-ڎQʓ#�@F�^c�,�N �⇽�Ul0"��``��\��q9Bkݹ^��5 G�|��̹P���d������� U�Y� '���)�9)X��=;-���c�X+�\ k��;�@Ye��J_B��KV��'�m�I�ܥ��tL�;>� �v�"/��P�iF[�G���?��pn�=:`+u���.\?a�s���!��5D6����� ntg�GIM��%�1;��2i�W��o�N��I,>����xIq������>�F�5h���O����1��1�����:�k�G�o�.�o�4�}�zT�7ݢdY�qn�>�4��1mO�|�>�c��Bj��I'�OAlZ{.���?�O�I��<I�ԩ��$��g�"`#$p�S$p
�O��;0q}|+u���>���eju�fj]�*}�F�ζ�KXc6:v:��U��;8a�'���6:g�
�����ʙ6z7�Oާw��Ik�Fw� �D�Fl�4�l�}*W���<��<>U �D��;��fY��*���=�r5v���Dt�3����6R����S����{k��g]M�^� 6۴�mQ�X�V�:�l�3��&�!��K�c&ͳ�hs�,�z�AJ��D��
O��i)X���)��5F�`��[��4Nl���@����b���V�o���n�W�Ŀ�X��� �=d5���\ϡY�w�:���jad\[b���2���JZ����EG��2�l%^��<i��B&#���t
_�j���o?t:��?����C�6�۳��4�d���.�)������u�����T��W-��)�P%?{Db�T��$MX�ф�^�8d���Om�3�@Q��3�5��s�#Ĵ���rg< ���BI��k�T3�u��D�����JZ�s8zrsk�(�MO�����p=�6��|Fo,yXi{I�>�0��*����c���}U/�p&Y�ɉ+���l��6J5)67gz "6�I�@�'-��K���j-��H�L�:���Dt�������u}�n���7Hw��@?��]'\OT6}��q�a��K;Uy��whϯ<�;W^y?+-�|ʣ6Fy`/3���Aʣ6\yt p��Hb��ʃU��<�I�äOr�$��1��ʣ��2������G�A�C_44Hy��<�T%��ʃN:��~��À8�򨀍Q��lʣ6\yt p��Hb1)=�����^V�]�U�9�-JvxKE*�<ޛ�l��͏�\0��VM��N���ɚ4�)���znal�C��8 d2�Џ�M|�q4�I �1fG0N�G��8�/Է��i�^=�$���HO'f&-���*����0-3�>Of� �G�L:舱LrJh#���I�;!�3�ݠ��5r��jd&��(S���# ;�-3Y�1�.����x��d �N��ק��tV�1@PB)^"@�oԟ7@PBl��D��3�_� ���L:�>�rj|���hr4>�Ϛ��^B�/3�$?_|�6J5I~��d�G5 C���@�s��<��7��y�DЏ��[��gǺBi �I�9��4���Z���i �}҈W���N��x��!X���?��q6��
A:�� ��+?/�.�{��_�yE �z���s��J�/ܛ���~[6�.Z��1��I]�vOK��8jb�j�z�ۿ �:��7�����#NF���Z��a�g�ϳl�� �/���™��P:슿�z��mx����i�f��*kTz� ^�sj��+ ���P��X-�vϏ��������������z=���CL�pg���Ѩ�����of���+�;�PӪ핊?O�\�0��ݞ��71n�!⦁lYu/V�<�U�����h� P8����� Z���ڳ�Z��B|U��ٛ���<(������˛��k�^1r�i�^�Bof�ׯ���d��'�v�쐿}~\�:�W4�w���O5���"N�ε�o��W)7��f�^�֩�α5�+!�Xn����g� ��l������Zfy&V�z���u�+�E€�� 8_m-2�ֹ��J� wj���Y�e�e��3f�ȥ�.gF[ ��L��%�,�E�,�m��V�F���7�`ƣk]#��=�o����m }k�h����~�?���U���l�P}�z���q�ny���Ϋ�v��oP�д j����S�� ���5��0^�J^j7�� �� ^�7��� �����>Q!�Ȉ�2ƕ�
��Pt���~3Ӳ"���ޯ�B��Q�`'x�!5Y�L�IZ����+zT��`!x h�Q��4���j�{��ž����l>�k`�+m�u��Id�94d4��M�SG{�e����W�Ѷ!�F��^L�S8qA"��Rw��i2\�A���/(G �ˢ�e �R��ک��0YMCT;ɞ"Q�Dyb����,����H��#%��G�VX���X���+Y�`��b��k���$h���[�r�����F�͉^3�l�U�z�^��P� r�2� ��5��j�l�f��l#�`�J�r�aұ�� ���5[ �n�9�U��[��Fd��r��f\ڜɭ���mq�A��������3E�sn!o9:p���w�0d{䕢7���=�˟�~M�������C���m4O�͂����U�+,�AE�w�� ^�6>o ��Aɘy^����i��R&��׳Z�\w��ޯi���KI��/l�%B.���߿�aw����0�{�K�2�25���ᤎ���ف� P���Xr��ho�֒�e�t3�?��{V��Ht���G%,��|x�h����|���G)���zx"�O��������)�dq��9<�� r�S%g���F:����{*~����Ϫ��s�#Fg�<��*~=~�_�*���-F�~'l�p{���/�^���y�@�A;7���\1P.TІ�C���uTW�>�&�V��ٌMl��i��t�x�{���ݓ���:{8����m�\��73��V� u��{v����^Zz &zA�;���Q�_5�I[��g4�Pd�~��(�ۥ6O�O��$ˌ~��E�t���Q�L��R�>���>��=���C��aw���͟���7_���9�̠�Gx�y}���F4ɍM����~�.���a�1�l��l��g?�z9e(���5��̬�'�B荕������$�1Y v&5O�M�Jl����Ǖ�����(ħQh��<����{z~7��;.s��Ft�;��aw��3�������1�����&"nω���Տ����0���g�_����D���D~=���~�o&�����Pѝ�c^?�#̀��&����By9Ĕ�!���Hk�W��6ѐ���A�ȁ��~P{��׿p�_�| �fv֏f�_�d���A�+��w�W��rx�և����m��5��� /ws�35|3�Ǧ�y>|���![��Z��P�=��W���v��t�7Qz�l��~;��;� �z
��n �^�V`�G|L�����_� n��t����q���]<�_�/7P�h��&�&4( ��z?����J�}�'AR����ɏ��q�0�u�儥oE[�l�c>6�QM�}-�X4�K�^gA^`G� ����7��Շ���]��qQz�ۈ(��o#
�I��O���ۇ|{x��𘽻_�Z��A/���_h���{�� ���ֽ{z>�����~���]��]8��7����}�t�>ż������X��� a�.���%�_��Ց��_1��Ö��:�5
Q+�c��x�:��r�c��Yܣ�,�t���C���v8�j�z�X�&��ź�a�\����%���u����}���`s� � �D�[j�5s�2����[����%~� �H�6.o�{Y�G��m{��yء)X��E�&j=�F�&Pc�{z��p���Cn�)�����O#��ۢ)�%Jë�7}e�h�o�=�p���ɯFQ���:�e�2���\]���~�Dxԛ�;B��3`��ļb�Ui��y��طu)5 ��G���M�K����t�4W*߈���)ϒ��Ԑ�0���S��&�x#l�������_�Y���UE����v�U>���{:̐@�@��泿f�|N=f�LJ�D��z� =Ȟ���C�oK^ Ԋ����Jr�Z��˂�7G��fd2��el<a*���#��o�cv< 4;P��Y��z���X���J�why��W��uZEW�!)��Y�_}�c�7{:��p�����m��Em�Z��5���3�>�9�<r�����@,���v������l{ȟp��SV����O��9��aC���(aڶp�J ֑ �{;`�T������:(F��Ƚ?�J>�}�v�j�B~x�^3��"������5���S�ڟ�����SA��y��g��1oJF?`Wys������aPD&A�3�X����>�OϏx��id��R AqVoA_7��?��JG���?��I#b?p�������n�~�X�V����oT�R��8��Z�I��!��G�M��W�e8�fy��_�3�U����M�h�������MY���C� Ѳ��W���ѡ�s��
,�:5%Z�l(���I%KBޔ#����_���Ԭk��R��Fڥk�6�6k��b¥��Zd r&A�t��q
��g��)�R�����w�?�Rq���v{��AE�y�y�&of����[��B�u��G���)Ѽ�GU^���r�Zh�%y��QiJ��_�B��W[ ��Jm���8 &o��r�c�ż��ا/ M���,O����Y�|�|�~,�`,�G;�χ���Ç�����K������߿{�|�S"�ɷ�S����"���O�����/�������!f�f�).�e�40ƶʨ�eۍZ)��B�'���Y�`m�V0�D���N)�w��+ �]-w�Ƴ���Sn�Z���pw��U�b@w+�n4�7"�w�Z���V�6�k��jP���+ l��-����X��~\�Xsb�+m��6�{�w����� l��������� V~\X ˘� [����f�3O;`��bN�Y�����`A��&���].V���ƕ\�L03��Z��8C��1 ���X� Ƕ��r�eB3a����WJK}���_�eƺ�+��I������v��6�)��9�$�:|����i�+U�婢�亻�ZR� �`���Y
�ͪ��U�WY���o��!��|W�7��zs�c�\���Ր�*O�\�۶X+��:|=�M·|m
�z��5���1Y3S�_���� ���6��\���o�=�M�ߊ���6u�� �o���V��r1��B�nBB1���m�rA�����)�zE�\��`�@3Ψ�d��;�1��k>�wtǂ
�,/�:S�K:R�^3ؒf+G�̢�.��xxB/��Q@m�hj˙cjeAI���<�<.�zM*֨_�cHP؂��PK��������g��2���)IRa��`+$A���_= �W�U��lB�U�{��RU8��y�K80���ҌY%5�$'=����R���x��F��2~��v�ʹ���I�<G0Y�MɁ��!a���4�1m+nt���Em�U��2ǘ� ���
7��/@`�gB�k��r�?&u
����a��Ý�@1�1�T�g��!�yړ�*#�&��u/���c�~O�)��HzT{Tm��gd��U�V
�4�\�34����awj��xs�S��ǀd�2��J�,�Ja;�:ض.��� �*S�J+-�')k9b�]�V^s+f9� p �U��� �=W��omH�uI@���|K�EoV�Y�&þa�U/����+'���Zh����.� F!,W���m�sĽZT�N2��2��2k��z�.�#@�h�Ў�Z��b��e��״�.1����U߬��[Qo�{���6nE�[�A ��W�̰�r�іA]oz,y�52���x��g9���
�[!U�XQ�c��X��Q��������.��do[Y'��u�qٰR�n�7F!�,�J��vK܌6e�/�k(��K���Jo7uȣ4�*�uiO�`�:����&�ig��=�4 ����)��ӛ��4yhk �7Y��v+��[�����>~SQ�ltū[��=�^*��gY� 9��Z���je�X-�u�je��]�}�n�ߓ�{*qO'��=�u�ZT�}�^�=T�P* /Xu�&oy^Y�*�����sޣ*�DM����B��6sͿ���W�[��dt�k��B��8چU�a��(v�C)~ �ӡ� ��[@��-�]٭�?�-l��h����T��[qk.�*�V2A�((T�%j;j�F��k�a&�������硆+죍�̦��Q���a���k)��3�oÎΏ<yv����O^� ���4�PJ��_Ȁ�*��y��-�~�Y!7�6`�|udI�h����p�U�ko�hoɢ�<�X��Z�Q��;���ޚ�͹�;7���y��ʷ��9�-���H�<?:?Q[;J��M׫���ʼ�be�i��Ϋr���٨��ր�f��[��`�vͶfŹ�\����vm�]I+���v����xYm�I o�3^�Ô���؁m�Q��#p���*K
M7e�g�,�\*�v}��lC,)��'�>Ǝ,�"�� ���D�S�[��'�#y$7hF�,\nw��f��gX�|m�J�5_1m�ka�&˜��lA���4�[<�}�U\�D�-�i����3K �����`� *e����G�5���A9K� w>���{���4���O1��b/�:��{�Yy�ɦY5m# �(��&�K����x�8�(�/"E�8ʩV*��tD��LJ�u�.��]�dT���0(p͈�)�cC�+���hU��lF�j��-8�/>�8T6�]h�Y\�z���G���������&I-Ħ�c��;!�%�2��,J�MXc� e:jE��I�>�ӕ��r��R�ϥ�������~^>^i�� ���+����*�ɶ�W����Q$7�^��F�h1�"y�'F���V1���T����s@:H������+m\3�g�q !���u�f��ݞ��<�V{� ��� l�
�A� 4gH�ר� o���\�b�Kc�RW4�ZO��i�L1e����h&"�)Љ���Zp�hS��f��b���D%�(��FtP~���(Ʀ �Ɉʸ6 ����U�&v~s�VWK�h��;Q��?(��� W��o������o��PO�{�|��G^�Y��uV����rG�l�84��y߳��y�Ь�8�z��\���$��l���� ��_�xKK9�s���r+�U�+Q�^'i9L�hk��nq�v2!/b��3��j�-QZ<��ҏ��7�d�2uI<V�һ�<ދ��k��� l��gX�w �٫+Zˈ-i-�)lF#]��:���6J�hz+ �sͥ/g,E���5ze-�5>팇a�ǘ�x �&-�Q��U�����;BY�����Y�0/� ��Zu�"f��E�]ީ?��z�ٌd�x��8��� gL��*,ֻ�Q�����Oq�`I�*��-7�S�tW�
k�t���ZiC�����e�V먕���D�<j���e�܆V>�Y�[�p�ղ�~FX�vc�ei��˲lI7�� �U-�8b/9�� �f�2�֬�����Q���j��p��H󁶄���%�-
��K"�W�3^?9#i6y�}$�΅9���n��B؟�%�ݐ4*�r�+���9p������kS��&'�kN21����'[���=�_c2�� ��` �WDje:?C� �B
g�Z��=���Jd�!�S�=5yM��V8[�,��:o��*F-2��Z7��ֿ�z��t���#�d�ٲ����J��fb���G�˱�-��m��`�\C��2�귊�+ΉW�6�^��Sӝ+�J(��%����V��י��xGz��q��!T��btzg�ӆ�kIwפM�^"Hו/#�3Y]k�:��W֨-�UdM�G1��Ӏ�w 6���bg�Zʹ�n�� }܆vr�e���o�b.W�e�ڬC�=������V\� w ��W��� �v�4ƚ�#��[�k��G�9z���]Q���5x�s��Ú�e�K�YK�зr8�g�\Ȗ�+����w�M밲 �=$�+H����Ƣ�U���jˊEK�Q��Q$���k�rz� )�E�M�Ψ�֙���ɢ�!Ϧ{[Ҟ2��@K���7��O GlX!�6�#qh�\P�Rva-�!+�;�hE�H��yƵ��0� 2��j�]g�:��b�cE&���δ�Ҭrf�z�ޮW�C�r��r�4����k-��tOƘ��i����j��_����1?+��l��o��������/���������a�ŷ�{��WԎ��/w����?}��f��7���|G�o��~7����+���껫o����ٗ�U��5HE�/���-{/����Ə��$�L��^]�����T�Uk錾�wx�Z��\�[ْ_-SM������Z��d�[uu��f7,��V��X֚�B�*J� c�uj8|���*Uk*Ӥ�b��k��I7U��]��|�c�&!@�,�6��Bj��e4�$u����㷵��7�������t�&IDî�5�Z�;=j����v�j|�����2�����Z�;$���٪dS.��፦��a��{�z��UŸ�1�XȔ����}��W_s�/T���`>�����7����� ��U$��kM0!���泫��.*���6�#Q`9���򊝗ʖK���n�t��oR�??k'��8.�c�$��p]8�
]�
?��w�1{%�r�8�nd��m���}��3,��U��N�)�Z�4Ֆ�/��&S���p�w6�.
�ygs���[��e7�1��㧖�WH����<j�S@��t
�
h�E�c���Jc9&S��C^�ۦ�7�5����ꮃj� ��m�͙e��t
�u��N���v0{!�-���WwM��Əw���;[H=u���.Z�h�)0���(���Oz���M���rڀ�<�V���/~����/�q�r~Ȓ��s�)a��D=�?�]c���NOә��l|IJ�"D�q�~/�@��ᅱ��6t+���֘Du3Ơ���V�b ����kyss���ҡu ��Ed�`�l��N�0�(d!n����Wc��ms"�b��0z�W{��j���J6]��]X���BQ����)��.w���KѸ�´�b����I�fǗ��Dcv.� R'�"j�:��$��0�����P7����5��T����z��廫�4���B��h󷤽 j]/O:�()�dZ�v��v�
{�@xԊ�o������m<�W��d}�AS���A��*����`%���LcM,���5�t5����,)�ί��L�[�޼���䃦֋�5�����)G��� 6�ꛂ�"I�V�2 �7I�-�:�bo/V'�8M�W�0?���R�4i�Gҋ�b>8�v՝��d̩�t����G%I8����%Z��I�D[j}stƷ�&v� W�G�3B]<@,8b�WB ����=��&zŠ(m"�+�_������ʘ.К\��3U���v��"��Ťy[��5����E��o��ܘ�}�A��hk��ȇӷ�F�w�"�Z$j��\ܪ��q5���1�ݧZ_�ky�ImTB^�B��^i/b\A���HIa���$�9n
�w7w����<#����j4�k2s#~��,�� ~[g��fႹU��mJ�X ����Y�A�����4+�S ��$*�h���u�4�nn]�vK|k��p�2�C�2��3R�
ل5�)�l'����]w*�)�6zfz]��i�iYd]$�eJl��ib�Ԝ���!�w��i�OXL���D�?��{��6� 5큦���g[��f����x׌�uN�e]��6"�i٦[u u�r Z��w�Xq�nZb�٫����ጉ���Pb���x�ĊϿ�Tk�oS��1ޖ�n.������y[i���j{�5x����Thw ݻ�*���ƞ[^�#��+��D˕n�L�E˕��-�!�r��I� ��4����GM�'�1�Ķ��A�p?���L)ʘ|�z�#����mUK9$�}��.��I ��9�8ݙK���̇p����[���L )�>�0��������E��Khq̀�6���*Pr~���;(\7���Q�u |�#]�;[A�J�hZQ�_���w�'��z$�HX��Z�!���Uz�p� �ZN'��п��OF��l������(ڍ+\��4l���7����\g� �m��1}mO �8�o�P�/o��wӏq@�ۮ��9 �[TJޒ�h�u� s������ٗZ?�b�b������e�=?�l�7���HwMcr�MQ"�m��!�[�_c��⟑fb��#
z��0
����v���0y�N5��m��|�Ռ�^v�.M�J���;�a��Jp:��v�q�C��0�%I��4�Y7�����N�3�>B�,4:�J81p��5n���jy��1����}��Vމ�[� � �3����B����ޘq�x�p����'O�8}�տ�ߐ���bH��y���t4~�����R/W6��[���=��ҏrP�a)��悺�5�\��"Pg(r�]eұ ��Xd��{#�U���5_S��s�; >רT�\�T�R/�&J�r{{�����%���Z�~ʹ����^]9ů��hq#��"wJ]��;�ŵX���,���|������*�XY��2,u����B�Ow��C)��C½�zӴ��Z9�8/;���s���Bn%#�h�M�+�iL�]��rk}�݃v
�i� �t�I�QяRt�S��*�Hy$�o�U���ZHrD���]ԬZ^�q��u�p�����@1st���V���K�6?��;�m��Hh�Uc�J������W_�?�XAy �?���c/)���F?KHUi�(��������: (4�+g������I� Za�}+"WU辩H���#k#���T\u5�����wxE�-q��
L�F�j�<�(�<p���x�ԓ��Z�&]�Ͼ�q'�\Ъ9���ѝ�q�n���v o–�쮉�25ׁ��<�ba$7 $4'iF
�4a$o��*�����-d��fo"�#U���V,n��������ՎIi.�R���%��C����)��O��Z]t�j;�б��]5W�6��)��¶�ZT���b�Ҕ?�O��m�gbלuB�-�ј�u�$��$���|-ӽM�Z%���L�&���
��C����&
����'c�^Zv������8c�R�(K�`U%����cU���YU�̵��VYՖ�Oe������ğ�̪�H����4�أz8�.2w����
���
���G�ۄ�8�x��MK������ky�<⼊荨�g��] l�Bf�f����i�=�d��m�`9Dk֒�����%3�>1j�4W-<���h
�UZ@�tU.U�,K��-��n(�Ǭ��Z����o7k}ݐ�Z��ݬ�i1��#�������n�W��V)�4�n���M�T�7b�n�_S ����'=Kz�ǁ0� �4l:y�p;K�� �#Me6>u
!b��]#0������ҥz�b�F�Ϩ&u�]�[�/�{���-fl��Fb�x��4��#]�@���b�+֔NQ�&!ˍj�����v���%�`��b��k�b�tϛ�r��;%Bln��m~��ey���wMp'�T�tT)j\��
���6�X��Z$F�Ӯ�/%��Fo.w ~�D��]k=
dٴ�L�5X?�m���
�4x%�ƃ�=�i4����j4����m4~���5�%�/[/����ת�n��!_>Meom�!���kj��i�Q^�m}%�]�<l<;&��� �zG<�A��a^Հɥ��z��AQ��A���l=+��pZ��w�ۆz�DŽB��HY7��4�p(/����ڂ5��PM+\ጌW��5�v�q���Kp�R��]7NtMX#V��:��n�)�CԄ�N��m{en�i�_M l�ђ� *�/h� 7���,�n`�YPR����6�t��z$��8b�+��mh�BEC[t�2W�Ί��끳��^�*�a�&k��T����/0=�xt�@$4��c2\-��a
��Bո�H8"MF�Ԅ����抹�W���eLo�d�ND����v��h�?W�6���t��9%��� ��ɪ]Uf�8��nZ�މR<���d�y���-0�H�p���U�䚵X����:�ѵn��E���}�J�XB��<ɪ�����T�z񇇛��Z˸�M#���C&ܐ���[���9��or3*�tm N)%f�j
�Z7y'��к�8 w7Kr�Mꥺ2�WVD5�*~�k�B�ݦ*�G��o���6�ʗ�=���6_r�}�^�ei"n�s�5O}�m��KKN�>>q�%�?����?�
;�o�yܰ�D+b�Ħ3�׭nZG1G�� U�g՛vݒ�1�Ҕ-*HWQ�4�6j:����� �V<U�����&%��������5� v��n����'<&��(R󂫃C�GB�'������m�� �1���E�բI �rs�����Ut|��.�}515r���T���} ���iY�*d�Y v�S����e�����>���"e�.����!��)UG����K����Lڴ��_����/��ŷ*�r*\ g��F(��xB����;4 n0TOFԟ����|u���PP��|���nɋ�ۆ���ŕP�Vț+-�4�Kf����ݍ�JrX��Z��Ni����A�*��%�M��o7�>��>������i��){��|��;WV�9���l�����ln���|>����!<k�^����A�Z�-sg��%�es.�����s�͋ 9�F�A�sb.�t�sM�: !悷P똉Rn��ON:`s�� ��A���xGr��;?�i� .��=��J��h�tǀR�9Hv€a�-�2���f���tN���7���b��|W�l-�Qs��",3���b�Ā�s�XH��\�B2a�j!�Ts��LI����.�ʎ�3�xas��X!l�����*�ƭ"��M]%J�C!,���X1���A
}z.�b!-sa�
���G�z��!��\���5l��BZ˨��s���1�`��-�\W�
��tL���D����U4aC����9_p���U��/V%�p@6 ��i��6)�sS硹p `�%�$��3I�Xp|(s�;�Ԥ{\�x����� BR1�XHF !$sV"�8|��g�IȚRV�H��{ml�7oE�I�E|���S�q\!���,�4H2��4)���!�
(ժ���7Hp��V��
Z!��(�����k�͈�v�l �
�X�I��Y̹Xdl�i�
�^��X2���}�M����B���l!���G/s^�H�I�w#0S�F�h�<��F�C��%
o.��� �B��Mj�f᜜�b ������I�_�)�b��N@1 s��S�����c�΅\(�����92������9 Mťj�� �Nqg�{�`���u4���Z@^�P˜������ �c��J���
��&��䃅RL�9��RYP�����1K��J33� �� ��>���<UD��Z �K���s���B���(�g9eA�6PV��� �a�D��5�D5���H+w�����rFT����vspr�Ќ��f\��q{��if\9YM�\�L��f���N�܅���.%.�iT��֌S����R�1�-9��E2�*�c�W� k*���`�o�JP iH���/��������k�5���>5#�J�0%ՐQ{�X)�kp>�!�JF�c�*��=�–�W`Uɢ�F�ڒ�N_i9;�F
��R���)�|�ɠ�d
�#!P�' n|�[[m�$j!��s�K��!�n"� ���d0����)���)�����Bi�&�]e�>�V�,+�p�h�
Y�R+�)�Jϝ�����d�Bb�ź��ZM~�'�5 Q�X�3K�^��z.}[3� ��xD��KC�0 M`R*��!�t�|n�$�*A�^����60iɘ@��`���4AxJ�n��)��H{�`i � 6���@9��m{�%(`���BH40d_3
�o�G ���&�չ2����$�saME���
���Ȥ`�,s��L���d�()ѱLj[�4�*�(I�+%�
�`x<L���#���a�.Ji��Wʠ�R��h�X��!�2����9�����HsX)8=������,FaP`a����+���\��Q���a�BI@�b.*F,�)X�{����K�>,p�{Y����YG{o" ��\:E��n1W�s�Q�-�a�= �1���0W���尠�a����5_�r1W�S��D����F�97�
��� U#��P�����7�E��U�P��A8���(�#�3j��vh���]�A��� U'��Ї��3`H ���B��Y8c-�P��]��0-�:�9 0w �@��*
��� ]���pd�y���孔�w���-�?'�y�rs��]M�))�e=n�mU�� kw����K�P�П��a��5��Fo�.�hiQ'iP�K4EW�d+ݗ�q:-4�hr ��#�Ds��Kw��t� P�q��T4,<� �G �/Z��BRc�=Q%�P ,�D�9��"4�)-�@B��&a��5�W3�h@�B+�x�(���I�~h��j�Q�� ���[h'����'��N�9�w����ۀ c�:Y}����76�4Nq#���]J�!/-5NN�W��� � �w���gB�k�����h+0K&�ҙ�dd�p��g���Q� � �t���sE�0hv�C<kB��n��M�[Ɗ�assct<7nP������{�Ar���D���*�r1�f[��n�I�3��h�tjd[W�E��M���b�b�?�<��t���;7�,��y{�k�)��rD�D�GAb.й�\�R#�n� ���[�"I\R���_�q$A��T˜ ��z!P�$�'���+����ᦀP��p�qst�G�Cq����Y����Ab� =���~��^n!�����^'�^���hm��N��
,�A/�d�p+j�$�<�)�ZX�D�R���-raI�X�q��U����c8��#zJ�o G��Vs�Q�9���LI{����(q�$0���Ⱥ�� q�`�M"�r?,�Q����Ķf. �A8_�\��H���<2�� C8`���"�k���,@r���Ȥ %�Y�B� /|�;��04��4C{4zV|�- Q#xrE>�����:x8���`�]cɯ ?���
�����0 �8p��u�2l�g�j��j�V�F�������s ���&2Dة�}sF��m���'9�3������ڵ Cy>�\`Hr^��e@V���Q��@F/~V�q&�c�xN��ܠ�¹��ʕ��p�X�B�D�(X� eq�\H�'/���K2Պ�16��)4��>%����S�.8z6|���=��R���+4 �n�J��q�&/�r� �v��ֈȘNјw�m� ��\�(����J���-[Tq��Y
�sz��F�̭��"x(�F�lI�J�p�>�L�I��#!ɝ%�c�U���� =�c�"�:��K��
#�,
L��Y!˾(�S�W�q$��'.0�$���@N��.��m6��،ӈ(��Fa��
B��,N�ZHI�?��?������eLK�9�[F(��Y`�c�
�_(�Bpˋg�9 �� F�I7�5�Ih��h���&�Q�@��-ie���r!�����3�ƕ�e������L6q�@����S�|��a�B�<��)\)1J��+�Fg$q�p����hd <P�2r�l�����W���rFb\Brt�����ז� ���� ��(�G����q�a�]#`|ȇ�Q%b$}/)(�#)�Av��E��?�E�S�R:��w���BҢu �q(W��(�� �0A��&�µ�Z�n��5Rc��oRc Š��e'�-�A�w�)4��UD�p'F��b������T�##�a�
<�W��H���cȣ�e�S鐆h�)\ �|� �/�=X����F�_E�#Ṃ[�IE�S���֦��ř��
�-�,b�L��^(��R|(�1$�PV�C��\!ҊsJ
�JY>ǛT���6tSS�Va��SR�kD��5�S>T� I�C��4�J1A�%�2�C�� 󆎰���C-�*4_$^�ƨX�.F�1iK6:������r>��0�e�Z�")��K���o���1r�X�:>1�յ�� H ohШ4`�~�1Co�B1D�����2>m�Nt}���YkAq-MZs'1���"?�6!)v�n*"�m��S-�Aգ1�jS�gR]�F��Q�_j7�D ��;�Кa���� � Jp�5QF+�pZ���E5�ZNB��oDq�)��e�f2,�1*B��BtM0dE�`�����`P�~���-T�:�Gjk-��v��|�iMU��&`U����{�L!;�:o(� j�C���WC��B �M�,�
j- �� #�Q���1�6��P�(ÕC��r�=��X�IF�0�x�HJ-�Q��I��"xŠ�A�X���Q`@[�e�QE��5�rp ��4 �
>��QduA��M�O��X��P�Xc��!��M$ǼN 4���ѐ�� �V�[�^���#wժq����Xg}�#4-�R���"䰰 �,���f���>�(Vg��w�Y���/�J�,�K ��,PY��ְ���,Z�x�"gɁx��PB䨘�v��S�
�1��g $z-��~ } Pc��V�J_�a1�(1DAC��,]ލ +���X��5���E �"������D���jI�hI%a]t�vh_���͍7},ڟba�`U.�%߼�ሪ��ud�Y��*���1��+J�^8FY��g�ҡ�i(J�PPp+�;�B��P�X>�(i"��V|lE�Q�-����h<�YPL��
j�ph��g�R`�[��8"�J/80YV�rrQC �M9���p�QJ�Mb�j���U(��t�>͡� �p�L��I,/�[8�/���c)I��P�l/�����jI��3����h�F���L��U0�&������R�H��t����.>�$�B�#�I_]�����19�'~F P� <4��ia`Ρ�ƍ*'Y��a���i`T���9F���F�a�t� _ ���X��� �jހA�͇1<��.0tf�,��0x�'�����ѣ��ʑ��g1�N�E�"S5�����dT�* �%�ZP���7�� �M�ec���>ø,>��Ψ�SS�0�s�-���� a=F�DMB�W�
?�A�=�T��W�sL"[|�B_J��I���bn ;������L�t3�ċ���gEA@2��{/��0J��E�xL��Y#@~$��f�#qF�"�ĝ m�m�H܄�B�8� �`pN��(��jt��� }^ ��F�H>6���Hh��HX@#���H�x�c���I����aNJ�9)椕�VV�o�At)4�E�1!a�!��ckC%�xe~$���H�2?����H�E4��YDzi<�F���\���z��9�����Ғt�#a��F
���#!�f�'� �4G����ψw��I9��*,��9���s��p��i4gh!iD�te��d{�ؓ�)N��%S��[���#!G8�r�.֔Q�c =2�� i�A�.�=�hScf�K�(��)k���kN<�5H�s�$��DR���k���P���c�B14�A��J�T7��^��z�BP Q���!æ�]=n������;_Ɲ4�#��d�-cp�Su �"+8DV`Q=���A0*M��=Lk_�ZF�*v��`�@�(D����9���9����1Ҕ��
�ApE/�@QE����?@o] �<ւ�Y�J�AC.���B
J�ɉ�� R]H巈���r�@6�t��,�<bd�l B�,��.j��A5b���t%t�,��`�i�T OqR��\4ђ��=��(_�����k�5ÁЁ�t�sƸ0Q�2?1��|FP :�E�;x5�{�
&�`�F��5���]�i*ޭnĭ�Ck����I�E
'}:
� Y$ ɩ�&�� ��A�Qm���tJ�I�&�%�|A�r 1T��J�*�(\�6Dp ��� \rM�˔�D�Y�� ���������o ��b��A���T-�/��݆M��]���ѫM���,/���_�D*�i��x�$���������9�`_$D ��J�9,�U95G,B������f��'O�~�Ѽ�����^ �����2Z)��Cc�ͮz�t�ly�NI��Iʍjmі"����r��[������P�u���d�(����@��y�*�OA1�3�>ҠX�F�{$<f���;��X�H&��K.[U���H���B�8p�<�j ճ�‘��8y�午E�ڭf`� ��…37^�+An%( ��xX_�g�[U�����Ȅ�)��f�1�;,`�P���y?��SkM�A��%U!��R��Cm��$�hS�ʼn
o�̡T�<形E�l�����xXK�qK/��9�R)X�8��W@�W/�AY޻�bP:+G�XP����6/�,��Bx�k�ՇƷ�T� �@#;S���^��|B��@�@S3��' ��h � �R(��QJ�� I�T�٠�1Rx�h��~Vݩ5b��Lb�-:@�S�7�?�a��vY�٦}j�֑J����������eEu#]]�� X�fM6��cJJbIjE��t%R�(�цy<�/y��%����1C���W�M�6�Am} �ƈ�B�=��F��/=�J�WCQ��G<,�R��y+L;�/ڡ�E_`BA�������s����0*����� �G��=i�sZ"���]=� �J�
��3�+��2�EI��ؠG�2�y����v��q�Fz�d$0�� B!�d|� ��1P�>n�E����O <�{�b�����7-X�)3Y>�{���l��J�0�R� ~�����c+)yVRr���^�~R�VQ ���qH�w$��|QuÒ)Ix[���+��ƒ�K)2�,���$Ơ��1�V� Ɔu�TD�n��!V�rj�(F�zߢ�����:�� ���7t���+����г <1����u�H ��40y���g��6,C'X�)e\�wH�Y�)a�)Yl��"�1�J�8e<v���`�'���'��|�^�X�X���w��+��8���� ��VP�(^}���$��ו�j�?X��]aVxs�
����k�i$�v�P�#�KI��M�X��&��E�������-�V;R���Zk|�cq#��)Ĝ5҆��-.n�Z��@�����1~Ѭ�RX�c3��7��OMqR<.gT�6���d�@ t�����E��u��u^9X,'Í��7�� a-$��@}阵�1�$9f,Au@� ���BJ����h8Ǚ�\��8r��� �q���JI/��uq�e�EQ���1{�I?G��:Vtbi���Z9|��/��/��a]<]���:����0]����7�1l�0qCWk}g+�@�;�E˸�A��0 Ω��d�#�žƋdz���3�5*6g(��o�� ������iZ�'���cx�V��_v�j딟?J4]��M�Z����>��W<�����r�����������S��w�ō�>_�6�m�~��?���< �c����>�<�%_?c���������� �C��z��~��o����5{x��5{\篲��)��߄������O��������t��*{@�_m_��[�X?d��^%;ӣ�w��ǃo����!��/�������t��c/"�|}�.{�{@BC��������~�������
<\��1{����x��=��v��78�|ӠM�ִ���U��){�o�A�P4�{ڽk.roǟw��4�оn�U�����O�����p��ϟ*V�g��F�|#¨�Ɯ�3��i�� �0K)�1��8����,fsJd��y?�Y jc�
�Lb�+m��$�9�W��M��6*[�+VL�b5���MΊn1�9��n%�>݌��� V�l��5���fSP���2ǔ[�V��G����5���ٜ9V��4����������?~��g����?��V�I�������A�5 ��)������C�1���s4\�2������?=������6}�=��>d��bs0ֻ����y}�=�j�I����\=<|�Cb��4�S�m>��;���K��$-B��珛��EȢ��5
�Ղ]�����)��|SP�t�E��77�}��n�����᪎�E�}9by�i��:F�����q�9{��\ՠ\ߧ|�ߟ��75(���`�m�㋸cȾ�mܟw^G�k�p���������v����S�Me��;�?�x����=�?��=#�m�����/�&�%�|>����7#���������bĊ#������1���n/ܲ����?>�m�v�^p����R}��Ku����].,�V���à)v��p�'�����6Va����X�o�.�ȅ��� �]�u����^�e�![�1�1�k���o�k�xN{.�X���>��[�e/�]�{�i����)�.��o2"� �(n�)��ٸ��0N��6%�qث���������#�Z�޽�=�ѣ�a����*���!�����)<���с��-���:�ܠQd����.Ÿ8�1����9¥���^b�������E�Z����Y��-�h���~_Ւ��)�ב7� �_��ˏ�q�ٿ��?�t�7����o������M$������C�R���7�T�`�����
�^�Ѥ�d��
A��j^��F\��{ %XF���E�G���y��x'yL���������o'cq(ǭܻ�,~)����Լ�\�� �͌i[�(�Nr;��&\��\����
x�+)JMU06f01000Pp r672d`ȉ:*?�х �b�� ��f���� �
x�ՔMo�0��&�b�HE�6�U� �*���zǓ`�G��(���#;Z�)\�d>��wƱ4V�η���C� ����(Wy���}�r|τ�t��5:�
}4ϒ�]�{��(W��Y���M��B���g��X��t@ٗ� 9{T^^,�4���f!�:x���!y� ��e�XY�3�T���C��9r$t��>�������~ߋ�_�bQ�� ]��O,>���%۬v8���<Q��m�4��>����[ϺN����/V�($ֵF�ge �k���z~�"�6�B\W뱔V�C+� ΢�*
9:[ h�ݨ�[o�^m` �d� uI�eCEM]��)�q�?�2)<E��� ���|껔4��f;d�0g������� ���.m4�kJ������� 2�y�P6��_u���B9���=yv���:�o
x�}�kPW@��8�DDРQ@ I �U;P������Mr K�.�nP�:"TiE|��*
"j5��S�*V�P$(�Ba@Eb[;�lڲ��?�;�w��K`�|Xl����ٴ�8�EQ9�(�����������_���������7��H
�����r^w����P�yN5�M�gr1 Jŗ�L���ϰG��S��~G��E�>�ډ�;��)��czu�+���b�7�mœc��a�"⌤��;�Z�Հ�K]�z�@���� ��2���\[5m����az��v����
!�)%�����ݙ�g�O8J�f=��iG3(1,�1G���h.�l��.���{R]���@SyT~�oj���ә�v��sӖ���O��A2��.���E�;�~��g٬�k���)O�]�>��UWC� ع"�F%-��C)�{�V�k�`����]���э��� F�`D&�H0��R���y|�u>����,ju��
%7tw��� ~�/�*ה��W�\ C�H �d`���Zʞ�|�`�5�;<��Fw(A�b��M��t˓���$N�ڍ�yP2��X $(&%�!D��� ���=��j쏮s�zg���v4|�/��e�(�Oؼ?�r)A�gh��?���,����;M-}*ps1GS"�k3c�g<ڭ��n�Ώ�hQ��&���P^��O�^��r�2����r�K��Y������Nٔy����Q��w]�� �d�JLA^0����ꥷ#*��?]TU4i��vF[��f��g����c5. eo�f��r�R��8�"F��̉�����c5✀H�S�U���YJ���<���t{D�[��+�?�V���D#(�V����aKA�v��uw뚘[��<O ur� M�)û��3V �!)U�&�L@�P� s�{���uτ��2�� ���?�e鋝o���X}�)�ߺ����G�S��z�r޾���j�t ��ɭڑu��D�7���ߪ�/��N �n� �i����fNy.z�pE�˦ZM���R����?��xDٯ"�As�;\}K�BHa0��tz��ƅ�N��io\^���򧀔����O�:ܼW���r(���� �' 7�9�5P�<�.�z|ki�C�B�'�|�RK/~1߶r�����:��������C �D�r@F�����ũ��k�nsr�"��w5�yJ��y�U}H��77�!�vdt�~Q"�� �F ��Ō���3�l+y�UZ���r����)�+�1�kO���Z��g�p�&ˍ�d2�4�VH�`$�(T:��X��5thy��钶���Se�
x�+)JMU064d040031Qp,*J�,�+��aY���oբ�bG�����@U9��$%��A��8����R�����|���FiB{�J�JR+J�����بط�f����#~(v�mw���ļ�d���M�&�?��~l,��d�s��۠��s�K\R�2�K2�����+�_Բ4�MZ���;O��+,��.�/JLOi+]�[ �K�iUŹ�~�6�|Q�^�(�&�d0�t�n~2�}��
��9����!��%E��%� �ۗM�(<�9c�Q�f疏f��1{:
x��V[o�6޳�y�����6��M��� �P���p Z:�H�@R��!�}�E%[^ަG�\�s���hU��M��� �}���ͯ4E&��}�L�5E�~�U�lJ�4�j������j>��)AR�B����C�R���`6�;L "�"
aK%�%(Rq�@�#�5��\��(Z�T��d�e �e(� YS���n`qA���Ep�eW\G�>��x9� � PF%�3x�*�-)j�dhA�w{FJ�Z�-�����,(�b�`>�kM�#�>����3�S�<� �wy'�ql"~n.V�f�m@�2�kQ�� s�G" ��x��K�RE9�x*Aq�Ɣ��e֍����|<�)������ԂI��Xr���Ypi? ԃ@�mۓ���� �p�e](M<�gw7v.��F�����W�00�/́�I�@��|�5�&�7���n�9г��J�9� ��H���.��襃�Ӻa��MT�e�J��S���*?��{j�kKnU�
�u��͝�G�
Yf�k��w�v�Y�Gހs#���Ȉ"�C�[cr�l�
�fZ�כ<�r�a�.<f!���М��6�)�g3�Z���9`�%2���P���{]�V���Â.'�0 7\��~n�$����U=��
�,�v^{?6��%?jFw��x�Mt� ��6���
={��n��ࣵ
�Z�M�6�)��*�fj&�_K#|>K�q����;���)yh�ˡ&�^��`E��{�� �5�鍆� ��䡣�veX=�= �Y(
f"OE<�&N���qk���7ӟ�{v6�\� �dКP$e�=N�x�a�Vi=o���1�c6�>�M�^o�(�� w���If�;�ҭx��������@�|7qg�|��kByY��V턘���h���Q'c��yl��k��-��aQQ��V��;�Y�����e�a��Gx]��ҁ�^�O% ~�]ޗ S�
x�����6�(����+�i��g�s'�jz�+�2�'v�Ifi��P�[%�h������E\��@��l��J �^\���t�����T���?</��`4�X�!&s!(��H`9\ f�Eh��O����m�W���������r5��r����&��j�c��-7k� |!��<{�r�~_y��g����� 1_�� �z��;(@���ɓ�*\�?��#�͛�j9_�?�V���v풆OƳ�z� g�ݗ���j�f�=���m��b�Y� ��Z���/Go^_��_.g�z���y��/�h�������m��6�У�����u
p��;���v=�F_~9���u4�v���(�n7��h�َ�h�������h�s4J;�?��F�}��js����=�l�_�F�&�F�������4N ԛ�z�_n֣�f4����V!��l���f��F�p�G��&�h}��F۸�E��b��/�����.n�ltw������a��������n�]�ߏn����c�YJ��˟���F˅�7Z�F��/��r��Fӏ��f�����|D�/�� ��5£?�iF����3�� �1����d@o���w��
H T~9� ��V��8�z�MX0�'�Ik�l"����ک��b�ެ��&F4�n~�B2_*�܍�m4���%Dm(��[��2N�C�TT���_?YԔ�m��v��Z�����(lZ�[��a�/ ��z��)V󝨞_��r>�n��n�t�v����z�ώ=��]��?�،�)~��c͗�E��� �m�~���$���m7w�e�?Rh7�lG��h�׈%z�$���!���g�"#��u_92a�#��^VP���o7
�g#F��Q�M��f��zr�i��#��T�*�c�Hi�5��p�F������KEb��?QF�K���v�\���bt|^A.�W� �t!.c���S��l���o���Q�*�S�ɧӎ��/��|���X~jAen3]��X�5���ɓ�c�(����G�hs�_�.��G(Z��U���E��E����Z}��=>��>���7�*Ҋ���?f�>���_�_����~������?�O������>�����d�2�̎vѶ�`��l�������?>�~��b�g/v��v��X|7���f�yT|:��V�������m��y3?z�������z�_ކ���&LQH���{����6��K��/�����z�p��vpt+�in��$�$y�$�w�W������p���;�'�*�j�o�;%���G٫���~ʚg������'��~~^3Sϱ�=�ۓ������Cn@1/��4�)������ZDw�p}s؇��J�p�h���S�h ��~��3�J�Q_�J�I�'�9S%O�[�u&a�RP�?o�Z�d38�%��?&W)�|��� Fc�`���m��{;(db4��ο���?~��筲%�S����#�A�N�,\�~ W���wP�w��5�n�o���;�诇ۻ��| �6��ޮu�@=�����>|��5z�;L����oԫW��.��^�+�4��}�?�]����^��v��
F)�
�@?�S��T�
TT�ґj�>����QT�˨����-�R8�:H�$��zz�^������H�y��5R��,�v���)��磴�jΟ*��Fy �B�L��O��ʏ�S�!b�N�tj�zЃ \��2����{���F�'���FDL#�O]6e�i�i6 �|�����؅���o���S����/G��uV@]Զ�Y�ۄ��QBT�#j��:0y:� X�jW��H�@Xi�2���$@8A䃃 *b��[�&&�� Ar/�h@-$w�0�`42C��F���� �!h4��@��0 �"$.v�;t�TWx�eڏ�w�k�|4�'���j~l��a������S�PYm8�x4׎�2S��U�"�뜧�ʼ��/�!�1�����P>�bW��T��|�Ip���m�s��.�G*|R���/�Nb�u9tZ�+FUnG���XqI����ئ���!�8����{��_���1�Cĩ�/p�� :�;
_��tx�3�F�
��a0|h8�I�0�aaR]A.��YX�ҝm�pu����� �s-]:5�U�/z�h�&ec��Z?�6�G=]����G��i��)���\��K�Csp�.�߈ ��9�I�o�h~>�k�e4z��7�98�F&�x&z,?��C@$*h�����#��4��w�YII ��nJn�� �L1l� 'g��{�B�G fׄ%f�jps萡2�
�XH ܐ;��'g� <�H‘ކV���[�J �̝��S����C�b~�\��U���<�$2o�+�%��e���`�1����U�i� @�@<���&LHѩG�~0ow�P,�2<���˄Ž*�^�wђ�ӴG�9�!A4AF�'�.RC W"�w(F�t�9��ޅɱ�K��^զ�>5��!���u�*2*������B2]p��<ļ �sZ4)[.�a�'yU �^�<ߙ�b���ה�RF�n�� �.z�*��rz#�P�X�ym�Eas"yHy{w�\��OT�T���뇝�*��!�͒��H�*�ޟa���$ WEѾ�Q��� 0���x��I5bF�\5�U��0s�Lua������_�ß��b�����Y>c�`���V�ļ�M�r"�J8(&�z��7G��#����D]')��NB��I-璚T(1� u��)�x�遬 �ق#1�"����]�Ht�Ǟ�1taE!���<(\V�vXB���ß��;������ �|���6��T� ����8�]�+���/��;��J/*�y���$�(��㙍Jڴ�ݍ��+���NM���i�'�jU�` ������O���:�#�8��ߖ4@�d2H�n�/ �tH`^8}{� *�@����i�:v��7@I����?����Y�;#+�N����D'�@�(��S�zڜ�rA�+P�`�3�ę��1����S�"�Nk��-R#�m���{}6����1G��hT�Ge ���<�R�>3n�|�:Z�*�Ȗ��R����ʘ+}�1 ����J�T���sס*C+�B�a Y��a[H� �s�Z��X��XY@,&A@!)`�����w���Ej'Jڠ���V�r�DWl�¦8��c �o8(�Uz�����C2�82/E,��;�%�
t���@�a6�D� ;�3%4`����7�?���s$-C2ޝ��? ���"���톯�|��U�"QI��M��(`��HM��@��2�y��ll�D�t��?��(�؊I�5��d��Q�xN�#[��ʷ)~UYb)%X����X���<�%2�w�ܕ����Vv+�?b2�d�*;b*�@�⨪�>7o3�8E�BTu1�������&�RE<F��3�H �+�H�������-��6P������RV�j�5�I E�����@ eqh�Ǒ ���:�dt�cC�6Uc�?I�.A6c�Z��� P�� �X�&A�yAi�[�B��9��B��m�!�@>t3�&*yw�!� �[>JSQ9wR�A@�M ""��V�B�|CD��Q����0S��x� �/�H6;�J��Z��ۢ��6����g��f��^VrEi%Į��*
�~pW��R���)v���2� ��v���@�V��wM��ix&WF� ���t���7e]TD ����&�'jn����BfHJ)�6:�����9耄�;�կU��w�u|L�O�+0��6gL\A�DB)І0z})fm1@�bY��Q� K �45 A��Sej()ӭQ�P��p�
ݚC�^ ���;�E t�7�B}��"b��������ِn�R@F+NLS �d�y��
XiD�,~G�wř^o���Ծ6FʞH38����j2^*�q�Dң+}�n� >s����Sk��i�l��Dp�v�R� �B��AE��uX�-�;���� �B��B�|l+�RP(?\^K7&����7 Y�����SZ
F4��B�U�gŘ�=�K���J�&s!��(�l֥��)y�<5�Q�SV����������*x6,�@�aI��?Z JY�t7�������T5�.�tSq1���֗�M���N�TG�@iM�ŤHP��-9�eu��3���3F��aV��a��� ��kA)�@�yi�KՊ?��x��� (���eE���gnnR�&��k��Aꇫ�AkxE�Ӹx�V��3�V�U4s�EE*pJ���
u�DRs�iu�]�7����D�/]W�&@���`���cJ� �&'!&�=;�AW���T��(�%�D�v� i�H%wJ""��;�+��BE���"@c���*��}�ĞT����ߢIr)��xL1SSYY�m�����"#�5��mvy J�*PS��aS4����k���"*C�=ِ�D�P)b�u���aבlڃ����=�9N�)Va�pU�obk�663Z�(��dV�M�hZ�F �j��ق��� :H{�T�iY[��ҍPL&��\$)��~S�l�NM���6}�T?*nH}8�k�qH����4�/\���g�ؠ�z5��IX������+��� 0W��E9�h��kl��Y
��Ԥ���Ge�n��ҧzʛ�Za*Q?� �T��eW���Bjx�۟�D0���q�5E��>4҆� ��/+��i�b��hr&0X�pV�R�t�% d?]�`u�#Vv�qS�
C, +�M|�U܎aE��� 2��s��UC^$[c0�!�����C!m ^6|�(W?\ `D������*��ˡ{3���G�B7D�v�0Pa�X6�&v>��O���I:P%�#Lr��T�� 6C3���x.%&�ᅐ�XH�9�|�8!�s��b�0���3DD��l�f  �
���v}�.���x�ۓ쾹�hzx���_�d�>ZG�p��d7��os\-��.җ'����L���M� �a"�L���3�,X�� C�� Po�T?x�����c�Ô��� ��A�[L)WO�K��lJ9�{U�(U= ��B�c�(��ox>�,n)��7�'Խ�� ���F �`�㯄�Q�F�ؿl�0MI�8 ���D��f��Q�iښƭg�ܚNuk��p O��x~�_@HU
מzY�� 4���#͍ BV��T�`HLvu[k0��7a���X�ٌ�2�C>���2�*P�f
ɀ@Zb�bJ��o��Ԓ��^H!�Z/ 0�<
U�&�e�D��x �/N-z�u�4�;JMRk 2���Jx1F %�R������l����`9LMX%T:b��H�(b-Z��En
��e��($\1� �����\��'Vz��ʁ(�Je�k­G\�5]O<�lµ(s�UӭebÒ����q���M�3R��Y_�ڜ�_N�[e�h��@� QL��Ҏ1<�H�j �HP-x��^�c�giy�)(��@ ~_��NVN�Ɔ�|ՖBɬ��8�$��I�B�W%\��p!��I�T?l*��L�N8Ph< �#�1D?Wx0M �h���5� =S@3}�4P@�d���)V��x�3W�/NM�hj#��S��D{u�#MT�$�;]��g�)�@����S�z��PsX�+���l.� J��@՚E)�5�) �򲈆��Weߩ�@����?��
꫄G���y����G�/_�x���������7�y��+��e)0��?|����C7�������ﮮ�|?z��u� �����}~���������=������v���?^���j4 ��o�����o��������0���6}����5����I|����ht��c/��
-��/����,myĸa@)�in\�eapo~x��������Ϳ]�&����K �
J�0�H'+�� 2v�v�7��G�|�Ë���]*��c�c�׼��e��������a��`^\�Q��(�r�g�t]�Tr�s�F��.q{h��y�%,R'�T�jU]Z�x��W�St���� ~�� ~�j]�@^�NǟӐ�Y&�:w�(b;r*^ɾ��#����ZgO�+q#d� �.�����w^�w��h�����e��C���S����Uej%�t�8o��͋���O.����_�Iw�/ߗ��˒"��q��CD��.2M� ��x퇉2�Mg2ƅ%�Ү���ҐG�$�0'Đ����O:�V�J��gd'�v�ڝFyީ��ŕ�F��5��o���W�#v�$��Ci���9z��S �b� �倷%,&�#a/���H�f7�]��$�r Z�Ja󚵉����g���XG�WGf��4�G��h�� Vj�_��K�>f� *���]�n/@������iԢ?���|͊W?����~Ye��c�$f^�:W�N�V�4�
F_���h\Fsa��ܕXު��ǹ(��<+%.u�䄤Y3S2}�Q?3a�Jf#Q7hZ�6N[��7�o_}��S�S�x�m���0g/b:y���7�f4bǧ����#�_I� �J�A�EI%䦪Eh6A�ػ�!�1�,̦���&�Rq���$7��� �5�E��w���\Q����n(����"{Uun�Y��t�G8��cﴐ����M�5<�i�W�*���8a:�� �0������H�]�$� �T�,6z��/_�K<���l�D��������ˋUe�����RA��N7Ī�֝0�Hq���V���*��Y�kq#���ߨU�k �� �j���KDąZ��������jLe�s�3;����N-Шc�����I��8�,ۇ5�Gw���h����������W�~.�~2�����כ�Zm�"�?Ͻ[���"�vn��hm߬6{���o���٫��qOٓ��I��~Ga2��
2��%�.��5M���%e��p��J��a���
����n�7!�-Z'����������o��7�Nj����>���v�!C� �k�w�G;l1%^���&�P%���Ǒ��;�wѼ~�P�]RJ��<������j3 �ѻ�z�9���H��C
8#�݆߭�����&V����Ew]�Q�'^j<o6�k�
��J�bhF~����ᮥ&�Pr��ls�1%�~��������l��Ơ;��U}�n��h�|݅���]��n���1�z}:���5���D�T�f���X�� b�� 0��YD#0�3�$�O�����a��G!G� ��!�OՎ-�3�����4���̀�b"Q"�%sPH�q��b>e!��0
�֎G��}8��S�h����z�Y���l���p������]B�vڲ���-G�����0�y�ݾ����z3���x���V/V������-vۙz �8`��>�G��z_Z����l�K�[��a@x�i �z*h@^�v��k�y��#dUiOV!��q���}��V&��7[���ׇ�i���3��r������6�_56���쓮�o��W��^y�S��,��6�5���x���&Lʣ�z�����L�t܌�a* ~7`Yp� }�L��A�U�_��2��"E3K�&�}�7��e(��2�'?���A�ui������L��h�\/�o�b��cBTA��l"e��\�l�e����a�u&Q�Eʕ%�Ԁ�9�HT�j�������6���\�w}��V;Q!�>4|2�x?���c_ʟ:S�ޙ��7M�o�C�t} �u&oR���68��� �T���P�1��Z�i9 {�g�rX�����o-�@ ��lpN�r'�v<i9��_\�qU��,A������(9�øI3�J��3���{X��ҕh���<��K`V]8�����KHf�|�� 32DC��!��-:��C�^�Lu2Z3�;}�!�檙̨��&�Q�٨�p��; �a ���sK_�ѝʓ1�G��T5�U��|��=����J��&�9��� ��VZ'�ѹ,�2��6X���v �~ �a�Y�c��-�k�
la󝞜��2wc���,�u�M�a�1���(-�l喲���:ax��k ����Rv�<DlLcxh$e+Bfd��ˢq�v�{���ɕ�ͼ�=ߋ�/L!���P ԥ�2_/�Q*� `�n;�O5�tE(�G��*M�ʢ�wء.�j��<@�lH��X�"�?��1 �o�]G���J����@�xF}�qTW� �o��A�l$�O*٦r�ì�4��]��#���[��ɆC��=s�*K��@;-��tۉb:s[m���ƚr��yK ��� &8�� '��7��g�9�T]���;����8UW&�l9YP L�2TN�c���]6ʶ��`H���|��40�ɾ�}5M�O9��ݜ6���s�ңk�/���(��ه��\0��'�e�v� vM3��LΓ�4��g� ��y�'�K�h�}�򸍇3i�z���mO]�3@h��`;O ���"{hZ�nt��X���W�lnC�O_@F��J&��>�ӟ�H4���,ca3W���&%��|G�1�) ߤY��*>��-X�.!�C���p?i䤮N��շ&C~�
���j̭kT�8��݉ j].�y�0�ۼ� %6O��5B��
P�<�������e��NuU6(u��)U���T�h{��Eb���h� <� [�ƴ3&�'~��ً�%�i7��5����{:Ӧ&:����M�'�4� �a@D�?�Ȥ:2>tNAR>��!��a�Ic�6؊���0�ʸ ����7���}�[�h{@洵޸�G�(���wS����*_�@$��m,l�eD��� ���B,�V����p��y�܈�Rʭ�ͺ���P;���=jN�Y��� Sj���r �n+�12�.8�r%N����= !rj"��4�%y�U$y�(4mg�����~�; �v�#�:�<��ש�Y|A�;�MP
�Nm3�\;�G׮��Z��]���B ��Y1�u~b��j� �9Ȑ?��׍��y;b"l�R�L[�
g��v���6��vI37Rh[ϭY���I���=H�-m����-�E�k����ξ��e�1GM�r�e�8�� Ʊ��06?�,��]m�4z�b/$��L�m:��A�ݶ��0z��k������Lԍ��$�5k�O���5B�wZ'8Vѱ O{�i)@�x�`��c��.�Tl����u��88'�$�%��q������%�S/����.4̩YK5���k`��u�N�_��섯W�]�up�B�ypb+��?��s�2$���"xL�)�ۑ›���fsg�Z�6����.�C�����!���Ⱦ�~�)!S�/�} "$IM&o�ţ ��zf�1�����B�����`E��v��(�qn��m���i���O!���qk�/~����U!ƜwE��*K�I孛�z7'��X�?���5=ԝuT�:7yk@���9 OL�޵�ō��{ڦ޺n��Ԯ��n�֐��-<�"3Ue�B�m��>(��Y���*�t�����n���/�;˒�)��aa�ϒ��$t������i{�!4@�,��/�2�����l� T �n���^�!� {*D�*0t� �HP6E�����{L��z��$��,��+���I�r�z��w{N"C��
�����=��c��Sf O<��
2-�x���v�ke8<�b���,^��C.T�{q���]F$En)U7Ă�k�BN�Ս���u�1��I(c2��z� u���\\�agF@s �Bq���Ӑ��\rmEdz�r�%H|���C4����=�&�`���It�q60 �q+�� S1 �i�˻���،�Ű��*����Hj9���6�!�:�h�r��en$��8�o+H��u�e���6��0Sܶ���6��;� �sy͑�Z�
z�B� PO��� ����#�`S=�gr����=��2�ICuWn�X�,���T�m�'��^O�Ki99�S�)��w7�t�)�����^^�N�*V#���>�N�����1���%��Nq�d���If?��@N}^x�-f0��/mFPU���3�m<9�o1̳��t�տ�BXJ�{o�Ҿ�|�J�{5�H�Y��8k��rލ�>\�+q8 ��X�u~� ��n*Aa�U%�$ ��_'��{�0��@{�4$˽̃E�6�q�d�]O'�(��f��%Ba1�ba+���#Q���5 2�>~+�~ҋ1�A��:�]=pL�뻮i}��쎛��L�>��<H�Q��3�5�~E��x��Cs���ut��P�Mz,�N��6�8�G|��.*�e��|^B� ��B���)�5���e< ��Oʛ!@D�+g�{ϛa�3����}(@�W2�����n�����ܓ�d�A�X� T"9�
�0JF(�L �łK��@B*(TP� �pl���|C���'��6@gJ����ȓe��G��о�}�t8H�ۻ$R�@�`���X=6I�=�a8�$b�����-�:��xH Q���"�0�h�)*� ��ٻh��l�iE{jT����z9��{H@ �t��Q�d,�W��$�V���5��ZkGig�T~<��bL�{O{縫"����g:s����G�"Cɣu]U�"��@"c��Τ������!��r+�@7Cx)����ب�~A�)�d���14K1�^
R�A�w�=kbn���]/w�FۍO�z/��at����E�W[f;��8H
=P�+���F�W|8���m��L9����1��u)bQn}�v3���-NWE��
)�� �N^���k'��+��
�2A=&�U���CW�D\�������3]���]CĶ6���[c��h�G�&8���BK`�a��ܲ9ף$*�,��=2I��zc�ö��Ow1ZHK}��(�@�h�a1����b4W����`ƚ��!"�� ���L/��0@�^i����Q�V+~��a�턤�m��w�I���)x��m6@��|I�4>Ò��H� U��wAR@�Q�T���ľ '��2,t��`0��1D���{Z�3�^A�N_��V�a<Ă(Z�TA���Rc�-y���ފB`u��}/ׂ�gA?�r-X�����d+��]�wv[��l��� H��_����O�#��|�Og�8/�� <�����"���cU{��Ax  �\Q��#'�YT�,�����v�v=�F�J���f�w��T���O����ϣ����~;�-n��%O�?�nW�p���g���+�ƙ�$�:�����4���̀�b"Q"�%sPHV���[̧,�3F!����gy,⮟��#�� b�� 0��YD#0�3�$�O�����a��G!G� ��!�w_I�=�¢ɪ�E�|���O#����/�j9����d|��s�.�x/�����ϭx={6��00܌�Ҧ�hޞn�]�>��s=F�k��A��,\���>����Ь~�m�*����2}>R���(��v����a�4i�|�}����#��1v6�����*ڏb*)���d��������'�>���Y���� �]�X;nTE�,��<փ�r��ӻ��yO�s����h��n�+h1�y���e�E��<n����{�U Ow����|�?"�[�F��2����b��6�}��?]�>��)��1G�^��<s$�Tm5�����G��gE&�}���U����9�o,jR�D�g#��) �=�7��>��Ja���6;�^�����Ⱥ-e��y�>~�9g)�9-GGʹz���Ԁ�n���V����Q_��'�MO�r����N�ϩ8���O��s�M��W}�U�3C�>� <�;��z�IE�#x>���YQ<ѳ��fN�dw�
��~x>��|~���x r�>��|�59�5�:4.��b_u3�1jG|�I|݉�q(h=�M�:�:�u��Wޝ)�D���r���BP?^�� �?Y�����} Z�������r�񋏇�1~˂�c�7^���*r�.ZD�h=�!�oǀn�Z��f}���5��H`��0R��r`1�S
3�;��w�28�aB�L�A�[L)WO#F�O��S6��N���g���� `�2� �g��-�T�����7��!R� !�,p��0�/��È�����?����"g�7Q���=g�r���q�.��S��(�S�0��Ru���1�Cĩ�/p����@
4 P<�ܘ dE,�~�ԓCb����t���0 ek ;ҮC d��L1l� '�B�SE
b�La"HK,\L)�� jI�\/�*<!@`�y��� 7"Q.�1@��t��N���u�4�;JMRk 2��@�Hb(��B���4�Uf��@��!<`j�*���p�`E�E�h�Z��l���d�v�9�E,S�F!)��Np�pń��p��q¨�w�,r�ׂ+��+� � �q���t��1ꗮE�ˬ�n-���O�P�C���m"�����������,�r��*�DsP�`�b�,��v����D�U[��$�@�j��3m���= H��PO�@1]���wt*��0�=B��T[
$�[�X^��z'q �_a�p��)��I�T?l*��L�N8Ph< �#�1D?Wx0M �h���4� Y�"�铧��*'��XL���+��R|A""��;sc�OS1���t%�Yʇ
��j�$|��+}���=E�VT�}��B� �j��%���M��A _�Z�(���:%aQ^Q�a��8�B��G`�f(�b�j��\JL8� !#��,s�?'$�`�P�fx��r���-،a���(��s����3�����|G����WF߼���wףˋ�/�x������p�������n�T� F���o^�}�f�]�x���������G�_�>�����������y=z�}�f��Ҧ/_]\e�����W�Ő�3�z%�R�k4���I��׌��ŋ|K��<b�0��CJs��- �{�� ��.��Fo��"AC �Tz��.5�*(���"���>z4��5���=���^$�w���}[EHt�p;��m/��������a��`^\�Q��(�r�g�t]�Tr�s�F��.q{h��y�%,R'�T�jU]Z�x��W�St�kU(v�/t�s�/\�uȫ������,�o�;YKr*^ɾ��#�����;O�+q#d� �.�����w^�w��h���h��{4_3���':yaU�ZI3�/�[x�"7�񓋣��e�W�GRĝ���GB!M�˒"��q��CD��.2M� ��x퇉2�Mg2ƅ%�Ү���ҐG�$�0'Đ���l����VY��*.Nʕ4P�;��SG��+���Mk]� o��� G�Iv�%)�Bbis�($m�6�ޖ��P���hG�cf�ݰv�FܓˁhEX* ��k�&���sl�F�c�_M������k�ʣe�.X��~��/I���f,��Hv�J��e���.^�Q���dn�5+^��ƚ�e� oPn��\�y�\�#8�[1{� (+e|YL��qa̅%j:pWby�¢�pG�򬔸�U��jd�L�L�QLF�̄!*a�u�Dݠi��d8m
ތ�}�}�O=N��ŷ]�"Ü���p�%����p�ш�Bb`.R$�(y$)/�*A�]\%������uc�z�Lǀ�x0�bRf��K�9�:�ܤb\X>6(�D��3�9�K�sADEH�;����zC��U����fYGP����tN���B�7��&7��,��^������鈃/���n�&#Pvm���$PRɳ�����?^���j��տ��*X�$:H[������WD�|�Q?.�k�tC��i� ��N��`5�[PШbm���7�]�+��Zָ����@q��5�n��DD\�e�x�
<�,.oT�=�ޱ�����N�xP�� ���?�Q�-< �`�~���k�U�BUqP޹��T1� !0��ل �Ia��I����0ݘ� !�ƪ�
��+uum��_ڈa� �d��u��N!��,���aچK��x��L�;�\���D��J��6R]BA�g4��q��@$x@&q�I��U]nR�"H�T��I�i�A�h�'�@�_�� ��%8úC�@Ba��U6J?��/�@��~�d���!�X�$}��a���*�(.�$�^C��š#� g��1�D������!�� B�nŤ�w�fP���2 �~%aE5ScP��P��2C�����j
@� J�+B�W�V_�Z|��6��YA�5?�j��̮�&u��J=VEM�I��s� ��XH��髤�6!�D�� j�G� ���N��g�'��tR�&J7y����DɐT�PMm�d�& � I& p=��� �Q�?�Г>��3 �t��]�k4�r�9�D Ex��� g,�z& �y�O�IE�$2�x"�R7RЀMT�9�j�Q�����RC� q!Oq;�=@4�W8�\BE��:�8I[V�e�_"UxN "B��������J��ED�TթV2-6YGG�0����zƂ)��RQAk� �y����J������x���O}����#��&2�'�H0
�RZR7R��_URrR�B�i� ��(l�)��>PB�8}��� ��
@�5�R���@+���?@��[CŒ�b �� d�XL�~�~�� <V��:L��(��2�G�����X�0�r��N���!pTB0��Z�]2=vɐ�cI�.�R�r��=v�`jֵ�aٟ�zj��o)A�(�rZ���KvŴ�Z_b=AP*j"(D ���|�k˰�)6��?
g��P��V���%�*\mG �����~��6E��iuw�P@��x��ީV�Ɠ���Ir��$�u_�:I.֜�4N� ('�%����$��>I���W�e�0�L�ۖ&� Uٟ����[�%���7y��c1*���ŷDL�-��R�Ir#��jF���� ��=� �O�Rʓ�$�$.9<IʺN�򠓸��$)19IkQM�Zr��"_��۸�$�tv�0F+;��Z�S����$��4I*�L�BP�IR�`����K&I��I\�%k�G#�$=R��w׻��6��G2?~���ʝ;c���*������n�TR �}�f]("i�q���x�ه����u�6wD!�����pU�`��v��Z�����ir\��h������Nj寿�8����a�B�U�>�}������PJl��"A�X@�N�x�_*�Q�?��12a:�¬�a�8�#���s�z.���C�A�A#�-��0��������)�*^�e��Ʌ�`/ �si��e�����������R)�!����������Nb�5y��{ �+�G@����._]]_�z����S���N˝�BUo)�ΠX�n�Ex�����l�ћ.��2S�F����͠ͳ.U8;R�o�����zn���_� ��z�7{�m��̎}`��ңo�<#�V����<��šeH�,���\.Hϓ�?w&��<'t����T{���> �\�M�7_}��y|��hr޺�����Se���Ƥ�Q��LZ�L�^�9����>��qN�z �%~D��C��7�t5)�8y�Og���4CĘ�Hyg�=��8���Ź@�� �}q�+Xs��:�����[�y�ϓb��2)��I����.���/�u���{@ֿw~��_|�$r��,�N�}!��o<fY.��v���e�޸�q��ޙ���3auV�w����:�|a�Y�iu;� ��Y^x�\3D�Hy�K��`�\7�tC��͙G������;�4X'���������:ݣ�TO�.�u#����N�k��=n�)��p�C�\�??�S�Խ��_w�|F��
Y���gc:H����D���گ�������jV�ɿ!�$z[��I9a$L�1f�]TsUM�@R� H9ㄙ'�K7��A��U�O|c�Q�u��+j>u{ؾ��S�j���>�+Ѻx�}3�g�`oӾ�N��3 `��+h�u\�� ���+j>�9���Qu���G݄��P35��cN��u !!��?l��;�]F��y�?:���C��g��%jg�?����蛁}��6�{6���\ a������4���9B?�F��=v�ͫkčY"�?g�9�슔�t�+l���c� ;�9��'|��l�����;~Hl�e.ܭ����I~�/�T��{u�Ϝ���D�#d���� ��sF�5��|G��K)�A�����wF<.�҄ab� {���+� Yp�L��L��wiF��]Q���ۗjnJ�3�mQ>��J�.�o��}-�m���>/�� r/�3w]눛��3/�1&�t�==ኔ�̙+l�ىG1�"�GA���c�͞��c~�A�� ��G�'������}�l����\!{ �̨̜���5rstȻ�n�D c7.��L.=jYW5�%6�D���ʷ\Xp�ĸ3gV�5���z��5���.�}����9s���3g�D�~�f`�����x˜qn\1�%s�z0�7��3� �( 4=ኔ�̙+l�ىG1�"�GA���c�͞��c~�A�� ��G�':�5�9������!�B�^=�Q�9sE�g���w ��<�n�w=H�7���IW�|
��=:c�b.�9��^��#�MW[ҁ�ܩ��
�[OP��d��A�Ϝ��?����@�|��Ȟs�p�*{즙�ޞ5<'V�6���)��_i���Bf��B�̑s=J������YtEKv���#aY����5�5WV�6����&6�F�{�4�Z=�9���C�w���s�%�5rg���L��b���m.� �@
�'Y�ٌC-��:�����? ƺ��{�wo��
�F��8�,ǻ?A�:�t䌜W[�No� $ȸjU?-��� 4���J�Ȩ��(�\Jg^�ba����K� �,���t��r������% S�(��=dt!��<�J�;Z^���(�� �z��E�:+�y]:��{����v�HG}�?a���� �?/��q]}i��2+΄�������S� ��^������Y��4�w�?^w���~&��(7��Tx�lH^8+(jY���p�+pQ��O�A��X������ ��c?��s=t펜��;i�%x��XC��8o"t��A�{2I���l�mD�� ��R�Ŏ#�^�83J�P�eg�'�N��Rg��N[��Y��-�� D�!���:��g��}:�fx�a��g�c�������3�p�5���_����Gw��g���a�'��0����ɬpl�C6оn��y���VY�ۈ�/�� گo_s�7 � ��c���lg�/����ļ��vZ�'���yF��N�x��d�4� ��(�?Π�,���@��Վ����?��OН�'Q���;�%�S�=�늖���W?�̈�4�c!��t���R瀵 I�%O; R���W�#v�$�f��3��y���H������ ��W�>�;��]½a"
��0��ga
���7���\ܢ�����(�ҶΠ���6�� �xS����<�RλÜ��zp'�?�&�9MX;-��-Q.��J��h� ��(�ҶΠ�,�]��0��Վ�m����;;��L�J�v�Ϻq�-�i[g�>���2#�/��$~s��K/z��)���äm�ހ�q¨N�ްv햺���=�������}P#2m댜ϴ����%�&��Y��R+;A���9p����R�ʻ�{H�؁ۈ�-m��k�mO�/����c?!��z�;r>SH��?0�tQ?-λN�k�"P�U��eQ�^5���(�Ҷ��,�]��0��Վ�����u��t]`qGί�4g��y��sF�-�i[w�^��G2#��/��$^s���{=H�힫����m?�A9ct�ݶ�y���H���{���Lۺ#�1m��w ���(�^�7��� ���.芀�J*��{[vr��q٩5�3��)l�gA�A!��9��$%�q�̥}��O���}�ܲ��^��*8��\�);r��q�ZLkgI\q�̞��c~F�$���&�u�+9�U[@�ڔ�a�X���֎��aOq�5˥qԶm���t���'�J�H�B��� #e�kpD�ѻ��[8=����lTۢ�ႜ���A��y�'��e>�J�~{,\�N!���^��`�N4j�ou�Fq�+��V�|�HZ��®Y�����x5
E��p%����x �\�����7}j*G7ğ����Ejޡ���C��/��t��3�P�Y[j;b<���YNH���4jPf+i{y������u[`\QF����3�t��Ok0��%w�yܙ�x��u�m��R�9�m���q�+�:hywr�ɷ�w42J�X�$ۗ�������?�3�_��CPNMW�t�ɳhZj�sjK�����_��(/v����v�J ��P5+��T/���M��~xM��6f���?�����������Y7g�ƙ�2��'z~�#��r���3�%�e�R�޳��5�5��-Q�Iv%ZK��D��Ď�Յ$C��G�H�vF���H�%+X��>A�ۗ��J�f4=z
���\��M��I�F`iܫ^3o��f�9��
y8>tN*��mx��L�.j�Yn]��gˋ#M�}&I����U�r�߽�v��}��:��Tv~F����b��9X��NY�t�A䌕�����w��.��}G:,�|L�R^;�aA��� �e5��t��X�����Iw�����,���ݠ���+�s��j�7{%�!��.j�:�'W�|�mTލ�"pδDĸ�Q��T2D�|
"J�;/o��Fn�������ͧ� ���,'Ad���\��oJʗ�d4�x6��1�x�`{5&��=g��3��ݟ��
��t?�s8���S��k�:w�|;ؼ�q�+ü9��枒�|���̥sig�|O�f#5�0�ܼa��Y�>bqb^����)po;$�g�� w���>D�r�s�$�$���˛se9�͹�����&�=����q��jWxM�n�[�!1�E���(�Ú3$̢m�}�y��R6��p��� )��6�%��3��&z�EK��؎��d�%V�^�Zg�C���@���(��e�A��SK6���˙,�\hRb�\� ��87�e-�pK�m��ãڤМ��#�NJb�a�5�ԛ�y�ϰ��}�t�ffd��z��5��Xy7��@�u�ۛ�`�={�����7�h��Q�!�����beK��&W�:��\�"E ۓt�2��b��}�l+��uFm����\� ��p��G�/���u������A�s�v�,�S�Tc��;c�۴�<&s���@.�)MQN�xX^p=Z�ew���a��c�2���[#7��w�u�9�3V��_X����Is�'i.� %`���h���(y<�6䴸�/m���ܙp]���2gW����%�"��Ro!�3t�N�4t���y=(8gI�������݇����P�˝���$3/�J�$�,���� -��po4)'�2���PL��#�F� Ǚp] ��bq�ʳ�A�좥��u9����w'�m�G�;$e���#7��������+V�%�h5�-��\�������i��{����y��{�i�9�j�z�휱�z��tos� ��t?�3$�0�D��s���M��X�6 � (A��r��>�ܝ�`�l�� ��ܻX����>��*�Mz/a��y����Jw��t��G�l[��PYq��kN��^�u��ܒ��WR!�O�ꂟ޵B�EP�j�~�J�"d�8U�� ��\f+c�!NP d�l��pB���rsl�^��m�O��\�(_Aݐ��c�=rg�P8�K��?���"f�mxu2��{t2����r7�����I�s�>G�l9m�(�<N]���c�[C�nUD|V("�D����\�J,��ݷ;��]�"<#�+�.'��ڊUt�!�Z�UN�ehy�q�u�
��8<��Vk��\�w� �y�N�"w��O3����A��r�+�!�z+��}Ĉ������u^�t�ʷa�����j� �+�"� y�\/]�CG�|�1��=CR�����ȝ!�u&\���K�Xy�����!�3t�aP���v����:���b��?C�~�����c�"w�J�.:Ɲ�\��c6��Z�dr��S�p�w���^\˦^wIfG�z��9�%�3cC�vt��8�o"� k��9ԯ+Ẩ���ӻ�u�.dF�$ /�kY�m_S��������E�|>��.�,k��ۂ>�����.�9C�� 8�z�zA�����\�����}��6^�Ҕ '�kM'���9c��.�o�@�v��!,�q�R9�?h��ru<�Up��7�BQ��z�R�+Q��J9$l�Yi�[l���g�S%ͅ쑴U�f�MZ�6ɺv{+a��I[�V�+m��XcP����œ�⌕g��A�U3��i��Cb`^�Š�<�a/鐔q�7�Gn���;�D��䊕I3��r���Z�KgcPޔѓ�tUs��� �披��ft��\K0�c�[N����>���:
�r� C���� @\9������rV��%���ahΡ�a���C���0�l%Fu�����B�CL���Dx+�3���7�-�&����G)A�=��l���XC2�s���38�΄���;��3V�xW���RI7���aW� ΃��݁?���*��'_�\���`����x�Y��l���R��Y��췇����v_�6��;엫����L,S���m��y3�z����2����(��x��v��Z������a��#ʞ�!G��)�N�Nj寿�8��k�!`&q��$KF��W��y�U��ގg�ۻ�*ھ���mw����8x;_�/ �߳���r���/]������ߎW���!|�o6��|���v���xs���qo�t�v�巷�����e��:\���$���� ������������� /�h�����G��f��-�/~�yX�~n�]k�ߵF<?�9�Y������}�6�V�"�����ۇ���>�j�� �����z���y����T�Q���|{ �6�]�s��y��|3�y�o��<����Q,�
�ߔ%�?�h[�V=m�X��������.�<�P!�}�}�����HCL^����r�cN�W��\��$y9݆�e������>�m��W��g���n�����/o����#Z��U�ƽW�������V�"T�mt��%���Oz�Z��ZO�6��¿i�R*��F�Y�\��"sNfh.%�`��|F9F���S)�cN愂h��(�"�N���7_���+������_�� �;���iH9��h�hNt
�EtA$fs )��ȐϢ)�L"1�
4 �����G��KE�/�|���Kľ��~�}������˿���c��ǻ�����ׯ���+�����o�?�^f���w��6|� ?n��AI_(��Sf��(��>�V%�0r� ���Z�W����h�܎V8�>����[���h6�)2�p��8��6��>z�V�5�����f���o>�N7���
P�����`�3�-�`v�N�R:�u�;�כy��7o4~X/���y�G� ��h�W�}� W����K,q�+_���_�α�t�/���m��6�Zn��~�K�s8vۙNG�� ֲ�?�Nwz&��(�ٛi��.�y*p��,\o��Y��6q󪓑k�tr�E�y��-�JI�M8�;�BV��_�ޭ��h��T�����7�X�'�:
��_����X22�@��Rm^nfZ�똘�`l��ˌ��z��)6,��s�c7�M��f��V������x�y�����ܮq�uHQA~�!\+<L�?y2� ��m�/��^��h����G_hV��/�7��Es�n��<����f��B���ƥFY���5�+��À�W��v��\E�U� �D�r;�趴�<�g�pQ�v���-dH O�y��}�7et���l��S-�S�69F�F���[���v��mJZ�n� Q-e�z6QF:S6
|��p���L�y�ܼB�6r�P+�#d�~Y�G~N��B�~*HZ6\@�s{y0Y3� ��r�j!fD����F�}�ZK���RZ�t�e&��j��@d-�<��?��:����ocr��� Zb�X�(�i����drʢ��u�C+��n
��\ˣ��6%Q) l�4H����t�/LR����[�ە�����.vY�͢�����6�팄k����i�l*$L�+Q}�D�F*6��-[�����lI�*1Sj2ËFr6ӳ���)چ��X�ҕ��I��D��Z���r�K�]m�y4�9PU5���F�h�g���`$ m�G3���ߝ{ڲO�����ޗ�p���]dt25-���*�/�����ύ��s���l� 6�-� jz���-�<��`��>M����(I�2�M�܄Y�sS<���~7�����z�NGH#l�,v��LmYNv�q��Fۓ�m�j.bS��?��������D�Xf�I�{� F�i�������d�C�YXN��LT�MT���p�y��qAJ�a�����En�#�e��3;HFA0��*�����x��3��=ܓ<��~��伧��u|`.����s�p���-��K�<~����Rw�:z���5.���z�pQ9���=\�ix���x�9�P���5k]�����y�E5���>�~�<k\��Ϟuw�W}��Y�ʪƒ�"�=�zs��D���Y3L>�ܱ��Ϟ�7���s�W�5��S𬵔<Ϻ�Y��VE���@��|�Y�&�ϻY�5ho�[7Qu+G+���u�b���L�pa��������M�٩��9�ɛmtg���-R�)�TWv[�~�otj[x��֯=�����4�j�4v���6ol�ĜL������.ѡ�n�,}��!�����������a+9/=&�������q}[ąu�o�Xv~�o�.�DHs�cߩ����!j�mEy��6c�����g� ��̵�s͆�(��yc3��M]k[w�%m�Tkkgf�xD���w�,f3��!���@0
#!�P�(Z�h.<�a$fL�"�����cYR`1����U�;6�N���I�����MO~������
X٪s�?Þ������*���q���uB�U��+z��7��V��Tr Z=��k{h�:U��h`��y�A��u:�����t�@(0K�:�,$S>�J���p�0�X�()Ƌ�/3ħ 4  �l*�g����i7�ע�rԇ=k��~g�# �q��O@�rڥ��9� A@L�L��I|��Fn�z2��5O��1x�Mj��u�6�� ��Ç�v��c8��i�������2��P0���
�DG�(�I,�c�)�($a�A�1�0��υ]֨���E��g�g�!G5����U%�M�ڴg�1eS�0��Sb�R
�[j��>0 �����%Y$.�U͚�+���M�땪{ՠU�J�ƥI�uNY�J�J��H����(�6�-��"9g���!�x:GD.�qc 0��� ��<�C �����J�y0����6Y7��0ZC6¦T��"�}R�5J�e�6������td��Y �|���;,<����z
����f�U�+��d�;i��q�e�P05�
n��j@�Y��*����S��Y���R��<\�"+��"fg$A�%>�*+�h��*+�ܟP�$dYY�ܶ�� ��.��"�ie�&����f�����J���f�ѓ���û��ww��RS����$ɇ�TZ6ofw���+���x��*���k�P]���_a�fM�A8
8+�r!U�P�Q-��e��•��Kú;LW�Y��C�x��e�!� $/��Շ�°q�}h�ݫ}h�����h ���TR l���Lʦ�ˠ�>91@���9���v� 5�:اy�"� $���TٮD@���+�d����-L�����������e%R��ˌ��I!�6K=���\-�j�p����5�J�E%[2A�HƑ���8r�y����4!�.��;�P���x6��}����ݻ�o�E��4z��}6ҮY=����X��i�U �ٱ�pUaŶ��ᝑt �C�̈K��!�<�o?�-Hv ?���Ud�3�O�9�����L5��)S�Z
�N]O^v>��t>��*+�lv<���hSd�:�p�+\ŠcYe�Q�#=����· F�`"a��
�>
�� ��YH��!�=�@�c�`��z(R �1z���"�V������~H�X%�� m��"��-�R����r�-�ֲTO�>r˂h`�������E8�C������=4+yS�|.�?�:V�In�d�s�B�.j��U�`�Z�p���-jQfq���?�9� m�h� �c��ª��U-X��]h�I�W���Ԭj)i����^O-w�����9����G�Â?�T�O���?c$��#�n���k���b��t6F�Oꌑ ���(6���q��E�N���V�V<H#x��݉A� Y�N��5��(vgr3���#���)��3ž���YR���=~:5� �؜:�U��&}�@o:�n�����0��Γ|.��ke�z�� �pK���-i�i��4D>�n� �-S���nA -�r�/��R���"��D�,�5!sM� M1s��2Tk������x�/�T��q}��� ���<m2l�c �j:�ۧ-��fc�T�����mC�t\�к���⤸z)�n�Q n��O,GX�]���૘Y��[if��W* ���)��b�sU��{-�V��B�2�����u�uQw�qwSK�gFf�K��9���vV����� ��X^��[;L��5w�r��S2w�輫���<��T��l�Nл��u�z����X��ޙ?��w>`{����5�{�u��ݛ���v�ԙ�[\K��lqIܯ����`�'-no⢢[Q<�1�o��8�9�~���s,A��z:�-N~s`8��c�BG�M|��㩸<���#;c����N^Z�=��'�j���8��&�ΉG�v����1��[�0��X>4�o^,mЉ���Ҷ4������u�q�c��j���GhL<h�H�g�X��h�?���ɘ�T�#%��Ǻ� O�L�P�I �h���>���c��[� ۑH��Xd�;�
�P+櫈j/�;bb����v�< ئ��<�-ym��+_/C9���;��A( ��h�����e����;��l�;�.��Q,9�DQ�L��(�����s|�СE��{{d��$�3^+#�2F-��y�z� ��f4��dI�Iw�1��r�m[��E�5Ǣ��QVKŵ(�3L��*�Ò���� 56�S�i_��hn��n�� �����@������FyR$]�R<�h�ްm�W��&�x�ً˄ve&�7���A6��-!�\ĵ$l}��<� B��0�Y5r� K�X�QKT���t>U럙����%A�����ڷ�k��W2Qh�]mma���pS�R�,*ge�H�LV�.����H恂��i ���'f!/�r�xG�,e}l�J+d�Ve9XR��26S��B�N��G���A��PI�� ��:N:h�|����56Ϛ��ĺ���Ko[K��x���M��P�B0�aLՠ�j� wF����TM�eaJ�
@�*�4\:K���:��p\�\�����߀bL�S�o�M�3�U_��Wa���N|N��B�+K���Q�� cP����S��Q�����dN��xCn>
�ٌ_@��:� �8�O����x�W���\�0ݷT˺&���UZt�
<7`����� h�@��S:�5�늇�@�6 ���O-�7=�M��|���� ��D��㈦di�<C����ƣ;��$�A䀛 ��O �i�jV��� �ZO+(R R�`�AL�T/���4�\��p��ɏ��W"�x�x�s>�����0�ț�~��%E���݋i'�����W��4�H��C�Hri�����^?�0��n��4")G�EؐE�bB�!D�ذY��xс���\���/)��¤��Y��l��w�T��Q�7-btmK�}}�u��vw�8�K23CkH�y�7$ګQ�^�p=� �H{���((��k���H�5rkħcګ>o��s�"�=@;GQ+�����u:=���Gw"�ż� H��z���r��|����މ�;��� 朿�l�������l����'S .� �t�a ���pr�m;�K� ���Wv�������9?�d� *��l�}�i�=������
x��Q[k�0ݳ��O6$��<l��A�` ��X e��k�%O��4�����d��窣\��7/�׫���+U��4�\�a�Q�����j�i4Nnk o�*��~���"ŻT\�4 T�X����ɳ��0C��+�10��l�֒U!��C�T0���Xwjq4��++�Ia���z�#*D���dq�Ajmy�#���W� �|���q��^�/�&��h�G��l'���5+k���:��Q��͵*�t�t߉�hZ_EC`Ҕ��L/�8Ύ�i�0�ZD'f��98�STT��Q�(�] ������F�=Ϊ�?t�)J'���XЯV�脺;���Ze8J���Z� eJzD
_�V�� \�q��C�ucuygg�ar<JF��{��j7��5q��7�[�L��hw�<��ZO����հ\"�<�>�5�
x��=ێ�F���_q&�$R[����v{։�I��N�� �JdI*4ɢYŖ4i?�e�y�?X`�����k>`>�_�8��H��n�� �����s�έέ�Q Gp08����ۅ_<��������s�GZ�ON���˽n��<���1D��H'��
S��g��py�9����H�T7dz�}����d��ۋ6 (_�|��t��{{"�e��/X$�70Nd�u:]�g�w7���L�lX�}b�u���`����B��g���u -��P(%� ���� ���E��Mxg��{�%,Yn~��Q�s�F>N7���q e҂n^�"���iq�ADc �Ȇ~�EPK%�G�L��+�Od���y�"�}0c C�l��=��h�/K��\����Q� ���29=���H��;v���r�!�* 4J˄�D�����1\�D�Q��ԛ��2 * � �b2�}����~����r��w��qy���G�A�.X˭FM��I���W�{Q� FD��@Κ1�x8
�x/�Lm�����|r�g��k����%��� ��,��͎T�@�8{G��駞ޕ�a��w��/�[ZZ g���a�T�q�9��!�~a�(�˟���� ��1"�O�"��s2�<Arʄ��%$ܓ�� b��\��vg勸n��ēkC��0 Bi���ԍ^�Y'�a��d����0l�Z(��[�*�$Rb�4��D�`&���J�8`hD�%Oƈv�d�d���w�̑��Ô�7 -�6��)�.�_"����0���K_�=���π-k��܇���K醝ڼ�;�U:������E:�-��^G�{��WX�[���4�-)�_���V��{ �I�a����h��*�Pg����� ��p�WWР��fe�#��Ȥ�_7|q���F�����i��|�WB�_��<Ҡ�i���)�~��ťPד�l�hA���z(.]��u��w�ƒw����!�ؓ~�H�s.o>�d("�e�t�S�eYxz���9 ��ν$�$��A������+{���'��"��s->~�8��N��s�ii�;���pɻ�����G�;c&��
��w�X�"57���yFD��W� :K�hd�ͼ�E�3t�����W�D��#�^�`;�u[A$�]O$3l��/�v�@|v��)>O\����瓄E�4@�bA�dAj���L`����0v��L�'�V���H����'_<{���ӗ��r*T!�e H��zF ��)�'N1$BKC�� S��
yLi�@Fܡ���_��L�d��'�@�Z�4�"�ʘ'�A �᝺=6Q\$zR��|Bq���"�}� dt�,oT&�<��|�QbyI��$��Jتc�۵Xb�L&
F�c�⧕ �=z���
�΀�}�#g�䨑��l7��e{n^�i X2�J;�-J�OԪ<
��XsK*��>��=�&X Yl�j������jv�6��E��1 �[�r���Y�]4po��5ߠ<A�0�E�����k��8�N&�]\C4=.4
H����t�l�/�c�(�>V.]�A �u��L9Ӏ�1w�ٳ��;�266#�Zٱkx�{�9b��CcdB�*w����E����b!���K!`�`��I�$7��,4ʼn��a�?<��������>��W�<z�l���V�b<��q�c��� �J��y�9g�"S]#WX��ǁ�rD2j#�[(Zm�h�`&�����_�\,�� �7�+�gd�PUW�U:J����S�Ì�i&�Z &�;�
o
S��VK a�T&��>�3�w6*����A����'H���;�������c�'eҠ�6t��N�(�8 �����D�����e��i�L�b�B_V�g��T/���f�= �����P$���%����ֱ:�v�Q�=h���ɰ;�w�4��e��DOyV�h�0~ 5c1|�F
X�d���C��s ���.QpCEb��w]��UE�-X4��g,�N�xS\��:3Z�?�V�%�� ��jg�H{tC5N,��i� ��r��CrU�j��*M2[��hHxd3�)�&�z��ӵ�^pN~|驎��bi�#�I�G]� ����,��)����Lu���oˤ�-����!�«K�#�Tl9s�¹'���m^�y�a��(/�t��r�䏴Z�w�G�3�:��4U9[¸Ͽ|����WϾz����Ͼ.z�����U���։���k���w|�<��d?�,�.y-qy5�)��o��r��w�l" �~�\�qy��HkɊ���ݮ1!B['�l֕)�gU���1h��S���$*ogʙ�2�3%5�3�$��INʲ�2Q�!a�g�L"��eR�W/x��Baɭ�Y28hn4�.���*:�^w�'GG�ݏ���Z��3����j?�F�K����<�D�r�s� �U���u�ͪ��PY_�IJ��W}��P(/m 2�y��k���،�ٷuy�1�!W�'U
/�b�.pA(�=����&9|1c�N��;������J ����*�z��Gt����zЁ�rfRJa�s��VC[H�)�O�Tᤁ,Pi[�_������_���;'���%d4]%�c�L,��Z�pOc��z,ӄ�.)�n�_���Voz�bΠq��6�{�w˨�TfO�L˨���SEN�M��+�8���O��=��R����|� c��Ð����ni�IL��p�%�{-�e:
���Fb&"�̛��<.9v��g0X6$�x��]�\ $����_���� 8���O�������o��/�[��U���}bR�˙��g����ol�h�u4ejF�p+F�C��1��O�0UK�f}Ӳ��ؐ�i�Kp*�2�D�2�h�A�2��*�0�S麢���K��GdKdv��P���6e���?~W�M��@F�@������l�-ã��YZ�+9�C�^�ׅ�Bކ2H<���fѓ/�_�S|���w�:���Z�U��T���Mx՗q#�����XJ����H�ܿ� r!���b���� b�M�K������½{���1bm�W�j4à�w��6D�&\�~������Te# oM=���J�ظ�>,Ţ�%/��ŀ"�o��7�2��b'"���Ƒ�ӱ��߁s���� `"��X >�����=�<��a�lP=� aj��Wx�dB1�j4*��ى�b��%�-���zT"f'F�鳗�N�B�p�g7�m��i���HL��N�7�-piޔ��'x��+�'!��Kj���78�t�:��_&10�����c��GІ����?�����@�oV��RW�h���\h�"�~��Ы��/ A�uB0|p���"��5��ܣ� ��Y��$g։��@��Q���K��T�^*0��E�����p�:`�fű��5M<�zŋqi����D>���3�ۯ�
M�h�ͨ�[25� ���{�;'�v1Րt\Ja�Tq$�el�ra��>Dwk�!�3��F>���5�X`�|<�p��Rۯa�/�a�U�r���[�ܩ��/�v6�<��[�gw�~�J�[0��n1qX�Ԙx~1O�!nePN4����8�_��pi��8��3��U���?�̦�C�)�؜Kq�=(ϧѡ���t���W���x8id�(�� �xf���ZX�] �~Ɲ��rY��C��:��G^B'���2&���b%�5�jj/92��ri^��҆lNF�̂�U@I��)ǰ@8���F��{��1#�g�G�#���T�~�X�]�1�+i8~T�����r�wgX\͎\�S�Bc�k;'\�d��<�+��i����l̛M��u��%���iw��r$k�߯�a�=��t� 5_9fRG��(�a��P�jĝ���3��F������<�,��o�3"�`TKÿ��;y�ze��W�?�v���] S��D��,+���� ��~#n���L_<��t(����Ny�q�8e��x���,�r���3�[a�a��Cg��E��z�o�;�*�O���̞-K6���#w��!� ٥�k9dV�K�cl<��ZWY,1�<���ͯ�``so��0b��~3�]�K�=e���C�,Q���ِ��>lg3=:dF�py����1S�i�y�hi�X�^ a���\�~ �R�g�Z��]�@�(ָ�&�a��� ��Zj��<��>�M�We!��� �tPi���U����S��)�M᠆  ��� &�z��v#�QnD�:/x� xt�� �������G�_��u��� �[E��PS��R%s�B�]E3-����J"�I� k!%������+����+W$�� wѩ��� �Q ��}�C�w�VOI)w��*�����P_���g/H}�0[��""�l,ʴA�5/;��~�`?$�qYra�<f$�8=A��NZXY����U����F�Q�j��=E�6�|I��[V�M����@寣��n*����w]u��V�q���h�Y�T��t�ױ6 �d~�7?�UrW�l<V\�W� Tȥ?��y�����k����?����C1����1\� r #�_��5���z��;(����!�;*� �%�cD���B�}q�s���~=�D��:~ ��
t э�Ѕ��.,� �y �X'-��fݷ�Q���n���{��E���7�b8*lV�m̌���� l��5��Rv`,���`@w�T� HIW�v�mc�@y ���3�C =J�2�rɦ�z ��sϽ1a�AT���n����:b�sZ���m���bn\�7�y3�P���Y2���h���=Q"�#˨K���kN�°5����.j���"oL�|�ْJl�����<����"jY��J�¸����"�3��R�Af���3�a�Р0�ۅG�gSTʒ ��%B��4Nx������g{#�Ht8�; ����l���r�1V��� �L�/�G���]��8�݄ί�`�+6�1�-v)��5Hic>� �[���؅��E��,~�9����]�dF�$G�(�� ��b���V
0� �&klo7V���Pw8Z�.�)4����xV
� w�����2M�K4��I?�)E#�M��K�p��+��Pˊ����obN����c ��VM* ����S:�sG�%�����ߊ�V��“��j��XS 6����:��{"�.��;����Yݝ'c� 3�L������<��^�s�Q�Y��TR�� >*�i��0��l�����W��ۚYu���J'³ �:>�jn�n��[���Xo�v�K �=\?��L-��nn�dW��L����+Bð��_#)lӭj�X�=�8�de�kI�,��1o� ����� ;&�s)�K�`���Za*צ]��\���T���{��ެف�21�y����Y$����XD�Z�$�6vS<*�4J�$��d
�����W����
Wò�-��eaK�X$JWZ�,�V"��|�|�9�_0���t1��\I�Xm�M�m�q���� n�"��m� ����I��yqe�iTp2�΅a�5�6� ���aMsfq�,Z���V��� �T��l�&���
7׈c�*7~��?��6���y����氌��̚�18ʘ�c(r2@�] ������=���E �=aNY�E�*m�Xm�CS�2}�o�`x���wḄ��2 �����4���������w���;���u |eDLJ��a� vAs0X�� ���� ���Z��Ds� ���Y͘����-���S�y������S;�iQ���<%��� �]��ӆ�:�0�a�d�q����4Y�N�A�F=7��N�d���
�ؒ5Ƃ5��,�VгWT~U|��1
�����8�{�c����=��1�!�ey��j��K�2?���+���_���!�?~~U
�ȴн�9��އ>�+�@<�hn�\Z@�&u p�
�΄�UP�ʚ��!����@���aD�x#�E�T���<3f}� �<M�my������'���V�[Ξ�����7d7�[�\헟ޡ��ySpІ��%�[�no��-@� �
4+]�YM�v��kg������H=��zэ-��AA�="��oe��=U�&k5 EZ��2q"��Zcx�2�V/�q��u�S�W��?gzp��DA�V����.S g����WѾ��D�-�gK�^?m����Wk��9��:�YP�w 1S��RlI7�h�\�T��f9����V,���f�@��C�Y�S�좿{H�A�������N8�0�M>��&X�����.`dTWY�I=���V��ouq��l%��.�|XK�2���c��|�p3����g
[:u�����8u�����ж�Z-���� 8d��>��q� �$��msgp�9�݁Cw�]����ǻ ;t�W ;8^��� �#��h��k����a;^E����l V�:Ͳ�`�t.�
�r~�� � �S�x3o�$��`�x���5>./�>S��g�^l��.�k�et��S�̹>���
LW2Q�ZxǾ�Sn6���9j�X��;��~e͢��ݴ��� o�mzZwV��_s�u�kv�~^]f��������R�2 L;�Y��+=�o)!�e�{�U}DtHfy��78K�Aq>����1�1��B]��ʊ��/��1 ���r{��f*r����� �&���-�Ȭ��0�6���/eLY06�b���'+pm��\U����NneM����5 �5�,�`p�%�z��� ���u��ڨ �a=ړ���5XO���Pԣ��\��k2�����<��.���`
y�B��9 �����sS�THy�Ơ�NN (�خ`��)� C �̬o�O���'/>��AFO���Vhe[�Զ ���+��;�#{�/��.���Z�l^�B3�~�yPa�]\ !�|P�`#�~��5����Z��j m�P��q ��- �k���G� ��pR�!������o��ӡ_'����Z���2��� �:��6C��P'����
t�����f��d��B=�`�L�:N���efta_�}h�{�Kф)Je���#�kr��xx�aw��?��8ILwRCM��ܴ�� ei`�;(���[�Gյ��qnչ�7��ʯ�nf�x�.7r2w� �:|��޵���-�`'z��Z����fX��e��úҗ��U�l�M��YK8[�+��87]K8��[ଫ��87W`K8O�@YS%�1n,Ɩn�˵�ܕ��0r-wfc}�PƢ�{ɶ�<Vc~#{]������ޅ�&�ުɦ�xߦ�vc��I�q��b�m�e��B9�� ���)��Z�#(�K#& �� iuC��`���<8������g�f�5i��}s�&����B�X"+"����j#A���̹ؔ���V�rA�~u���]y� g�!Ӯe���u�7�g��2=�4��Kc
�*?� ��lπr���=�@��a@���0'�H�m~���~��=�v����Oۛ�5?4�ϳ'�a����y3S�7{�I|�4
x��k�#7� x_�EZ�~h��l��ڜmV>fu+��T꾝�i��`��,2�dV��M��́x�x13��֭ʌ@���p��+��@����޼�$���o����͛��>����7ov�_~L��1ٯ�<��y?����v��������������x����N����9�Gtl?��/��k�F����K���ͧCr|�E|d77O�����N�`�y���q���d}�$y�ۧ���;�o��ӧۢ�7o��R������d>~�p���o�����û��n�6�4��1>Ɵ�sr��p8�({sL�O�}��<�Sx�6^��@[����q���<���S�<�g��χ����������&�,w�LJx�,�����x��l����]�Gp�{z|H�����dӜ�om�X�/��l�"�L=��1���9=΍y�Q�T8$8��d���� u^Pų�(H�3���w���Tĉ��x-�I�_>=.�����f {
_Y){0 �v����|��τ �ؔ����>�\y�� a �N؏�F/M ����x.P`�C>��ǯf�KK �C� Y'u�EY�h�� �mv_v�d����d�Nv~A�zPn��_��x}.#�
(?WON� O�d�|���e L��3Yy�.O?�e(�˃�/O��&ٟwg���ϐA�����s�?�H>����/V�,7_�����;��\]?���z�������"���.A6[uhB|C�G���y�=`d�G7c=V:l�c�k����� ���n Bf{�$t��Ąn?�>�|^>�O�O�d��o|j{?Ӎ nχ�'��-�x��R���&>'VŸv�$Å�0�=Lt�!�]PdH�?<%�MуN��K�(���<=>�B4�D��T��?�м���c|N6OG��O�(">� �޼�6�O_��z��O��_޾�ޞ�@�oQ$��.�8�g���1���)���J�QaNJ����i���cr:����֫����� ��e��5y���J�eH�s�nwN��C�]:%�NuB��9����Г������]tI9v�RLHL5��q�5!X2J�4�Xq�� �4BR)�� �*�D#���Rq�E�?�V"4�9��4(��۽}����n��Q��11��&63$1�W!�-T���›����R�Jպ��Z��.'���T�n����*��`�b��V ��P�6� �����b>?��~� !��3X� A�<C�x�y�b�b>�p�]����_K��xk8��6�i�&��~�����+T��s����39 U�V�����*��9�
t;�������Y
�+�;)Uc�싶;)Qs0t;��u��
�wĞ[�P1�{�v'�8b��l ��{��IF۝Xә-OFQD�fy��>�6EK̇���:���<B�d�7�_] �'�Rt��|^��,�fѓ�ݗ)B�(�s�*Q�I�L�w��!�i6��7�4�a��r��_+�Ѣ�k#�5��m�~��qM���8����G��Gr0�5`�����f2�r��2���y��t�a�
���.���G��a#���U͠M}��˔�Tě����N� ���a��3��b�T�\u��"1��KG��Cnx��=H(Ŝ�}����r�S����tH���w�U M��\�B��?���wh{'t��0���XĿ���u�eM�����!&Q��Rw�R�PC=�7�fܝ f�r�d��&tK���;��n�F�*R88`3Z �#�p�z����Q�FG �܋��G����53@�9b�o`�{�ߙ��=�.�Ւ����Cv��N&܂��a"j������V�D8�^c%���}��{���:���K��2w�s�pg�P|����&�ɏWz�-����Sz�H��AY�����<;�&*ʋ䏉�y�������U-�Q��4[��n�� �C���P#���E᥎(�3𭰎(�H�[�8��n�)s8�+���k�b��Dm�fلq��1����P����EDE��OjlV����u�1ZH-F���2�G���V��zK.�@٫%��4R�"�K�DI��:7R_ɥ)�Gr�v(��,�Kà)~���ϗʧ�� �O��{ayB��9�L�m�Ϙ(-��w�e����ǂ��s2��y�܉FZ�ʼk�?G�����/pJq<SI��J:�I/I �G�3��eq.c�4B?{N#fOd��t�5j�go�SA"$�3Z�SI1�����1��s�خ&0@0�(�g'N$/O�x��k�8�� �w�,Au-O���9�d4i��pW<�$��H܋�AdN�C�N�����@�������h�&o��w�+݈��J�]6?&�Ez��BF�pH��R�:�� �A�P���&�p�piϩ��q$�8�
��ܚĠ�$nآ��9���)xg�HX�H�.�ܡX�E�����"�)������r{�a��>s���S}�u���]�z8��S����9K?��3�~���6 O�L?��*ܕ��m��i�R�d��ߴ?�,N��L�J;�L�J�e�?8�#�F}���!/��ɡgf�cH?�����Î�X�l:�W�� �l&A��s����n:X� i!(눑;gс�b
�Q��N�mO\U�i�����2VP�WxfyH%�z����7��%j[���sQm�?�0dz� r�9����\�6���f�:� �u����Q�~e�n;���N�4KGzzy���P�� �Ha,�ِ���[�c�fl1�9l�8�M�!g3f>?�`n�p�7'7f�`4f���l�h�Aִ���s��e�t��r��R���1IJ���x�����#U����RE"S����g?M^����G��7�k��'L��h=�6m�7L�w��
d����p c�[��=F�|��a��c����"�ϭ�amd۩M)/�8������b������Ԁ�4r��~�ƻ�c� L8�}��k���M�rX 8d2���4���z��r֛ Q�G����\$�S�S����݈@?�������7В6�vJ���.�����yF�E��)؞ވ@p@�Ӂ<�br�Dn[�A��ʨͳ:���N�mz5k:����E'� ��3�k��J�se��������?��Ʃ��� ٦���Q�+�RX�%���|!��L��E�=��}�1��+8�����f-v�Xm*o�$�-���� �/�]^�K�ׂ|�e8�ުi�Ϭ��EG����B}���Q�}���_�FX/��!&~Np��� AN��ډ}?.�{ǁ$�>k��Hذ"v���)T�*2"%�p��:�`��HC�?�;]є�C�ⵖN<m�"� � t�������{�c�Iq�����I��m�f��a��
-IZ<�9<���>�D���Fa���`~���@���Ny�� -�j����GϗL���ŷϦO&Sҷ��b�&��9?�!�Ay��Nl5�0���"���E�<p.#����R�x�<Uث�j*�LV�e���T ���w�L��"���y��1��0��3�Q���>�ǿ���F)�c:�F�V�e���F����Hk������1V)���q��0&���)�
�/���7�Q)Y6T'�G1a*&)N�u�� �"=M
4�� �u�L��\��&pe�Lչfh='[Ї��l��MpA&t�g��h�#̆1&9�ܗ#���l� TZ%P�e����&�AL�bC<=>$��x�K�i��8pin!<%����4:A��dY8d~oP�E˯�I�/�TO`\h�]d8�qA`[��vK7��/|�P��twKBUc&�C���n�vu��*�J���y �hD�P�����_`����ނ�n'vv�����޽��{����yjS�~��
G�/���u��n������n°��@K��S� �6�N_�Q��n5����>�[�~H�}2�k �i$)�w� �O����i�?W+d��;�:0ž�:��t-dO�R���P�aR���pŲF��z���62<^d�e©���4z�� {�[����S�X�t\1L\:�j��QS�?��DPd���߿��M�3�O�I �ę�n6�#�}��o�g��tB�ƹK�]��1�X�]��=ۑ?�����L��,�g�~e�l����d� 6�k,�#2k����IH���Wx��r�����AG�� ��m���Ĵq�r���D�x/p�_��{u~ S��~� '�Uf�2�"B�N��$b����e�u)�\>��i.�!R�9.�1��^��O6Nu銡�fTy�x,_ ��/y%�RR~QY9��_"�7���٤�����-eCA��k�<SL�G�F����sl�A���l�:��Ӛ O�z�� ���i��S6���� ���ms���k�
ᮍ�*�NvK�0�x�)��y��������� 6>eC��YS6(de3}ǝ"�fڼm=�߲�|=hӊ"O�렂��P�k�A��]���Iɰu̥���}ع{�~���K�w�����k�*���(yimA�P�� rQ��b��2^QP�f Λ~�L���S��א�S��@�P�ݗ�&Y��.)Y����`MtшE_8:�XǾ�W��8i�"=g|���c�.��1m�R��ϯv�I��R,q4@�O�O@�td M#�O?7t�I�]��'��o#�g!�O��,m2d�LD�ӣ�������|H�����>��[_FN7ا���7���J�A"/�0�4�f" 1�R)8S>gb/%P#�^�r����U���ͦ= ۽�zN��!�����=����Y��{��^��9&P<�o#3ӣx•��-�y&$�� "�����o&�cΣ�/Ѭ5f��ƣ\���d�
�{KVm�a�X
�y
מ�P��t�;�W�3����Y����=�����NG�1�Jy�\�$��0�÷��c�c,��2�`�cPp���i}U&q�|�5d���q�c1�XD_G�:����b��{3.���2���ښ�=���?8������Q�l�� ��!%��L�:������D�/�mI��4��bo1�9�E 9wYgC^�`�(�a��şE8J9�ptH����U3p:��g���&���q���K�Q���Y
Bj��ҧ�M|���s�<=��IfUS�J�M�l�$�=�Ѿ��&�+�A�8eo_h8n�=e"&8�@��k�MeAdD�e6�M�
�P&-�Ck�e/琧A��<��篯D
��NvRA&8�I�摘5?T�˔��p�\3<���B5��)�i���\�H�8,t�MK-��?�bp/���Ԑ+$ۯ\� �(6�B�g�!`�Y�C8�G�SG�S�ϗS��J(�8C*�1�%t}�Ù�)����?'��gA,Vʖ�U��D�Mu�k_�1nl��W�P�32��W\\̚W��ɚW�z/Ț��`�?������/�W�����d�+x�F+�+�#��dy l��3�������r����YHw"�)T)����fPw[�v��?����{����h8<�H��0�f�+9�!\·�m����k��V�]s~3��|r�_�{��ɟ�96c`׵�����y���G�q�$���7��T���� �''�n�n�t���5VΫ�'�N�9���`D�&l�o�
����(�4�ӽn"i��‰
�08y;C��/F3�~p��w9�ZК��ni(מN��dϠ]\��� ���������2P����l$|�x#�56ٽ]멊�3���uc��8����� �L�����xHe��p\�vS�td���GV<�s�F0�L&��;8��(���:�d�+����<O�tX�6\|�\0��u%�7�[0$��d�x�� �.�47- ��u)�4F�0���L
�$b3$����\�����*)fO��i��u�����
0�]�V�@�����f��P `�=R NI47Yf�G���{+�D�<Q14>%
����,�|ֻ
����ž�V(uEG]�*�|h �r�"�<U1�m^f�ƆTHԭ�m^�Q��6/7 108r�Sj�$��=�����i�)��0���oL������������X�X��H�ApD��G?�?�����ᄒ,ĩ����* !\�f4�r��f�� �ZA��C����>����ǵ�6T�=��^���N�� %��A2�1��������Sx^ɻ���X����������>� �bDi�ZJ��I�r7I�;i���Q���e�.�@�Q�.�m1��5cM�uez���:��絉�1R��RY1�������3P���Κ�C��� �t}L��x��Uu�,�&�Xx�j��jF0���w���Z�=��C����lGF�3%����o�_]@�N�*M njmV�3k>sdd��d��`<�b6y�ҹ��oFVug��{p�׬^ �Y�
��!9'�� 9�����O�:-�@#�<GTڜ:G�K�'<��U�M�l��EB��* 8��u��):��N �N�#D���3;�#�dR'���ė�zl�j�pل[�=g��#�e(4�Ը�frӌ��/aՌO�_��R�{�n�v)G��{�z��ٶ;��@�Hwʐ����"~�dĄz��S�{�욚�2%M�g��ʳ��i��������0����>`f���;���Y�ޖzm4�L3y8n�}�%���п�~B���B2�� '�Z!�eZ�k>e$e�6Ǥ�Q�mc�%��gK�(�u�{��d�́����b7^6�n<��0"�w��W�/1&F�I�O�Fn�0t��,! }j�CϸIՌ���JL�IUgҾp��
l]px|���������M3Aq�ٜg8a�Rw rei_�]��HW����%ȉrT��� js"]g�F�m��K�K�P�lw w�~>/���U��U�*� V/�VAg�^٭����>io���e�x�[9Ձ��3|2�S�"|B������ �Xa؛��m�:���ao�%���1��M`ؓ�9}� �=��!/G�0�t�6��<��j��F��I��C���v��D�!hZ"!�]���`D5�@�e�
���3B6M9�=����d؛T��I�7��_hl_�*E�l���9c8"��j [O���lXݸ֛��!� �)8k�{�8s�[M�Y�/��B�4W�r��*��ErY׵�;=�/J�4�k�� I� ���g��S&�����Y�)q�UD���B�㞓� �G�='�j��iOs�}�X� pi���O�>��F��$��E2�f�P�0�$���zk�tL�1U�`T�[��s�K���x3�WuZw�Ұ�
)ܙI����� ON��v1��ݑX�b.���9�l����t���#�z��P[<��|���%@�|���e � �<��t�yy�.O?�6�iYO x��:�zk}\猏8%��Vo�[_xy`�VK�(=�\�#`<���1�,8�y#Ma]hwZ���&)�""�P��|>�.�SHz�Y�r���t\O ��'��i��j*�f. 9�@�@X����WulT��c�߭���x8.ѯl��\aNp��i0,-W >#�'-�7ʳ��Yi�T�����Z��� a[��_������˵��:�~���L��Z�ƎVx�!�Np���n�\��{x
?͜w�L�o�{g��,�r���m6���6gZ��v�x~H�_91Ú�HF�X���6�@��oZv[�=�c�n;W` $zL���A�����Г=�R �Ɉ���б�p��ڠ��ϡ�!�i�]�A،�� ��q���p~J�j\x<� ���#X[��������D������pCM�"��i�{�����OS�T� +$�M����
NG��ܿHX����MK1��� <��9����2��6?)N�Z��3o�N4S{��Zs�k<���y�3_�O���.a�����L�H+����Yl���:��B4��i������]����Z�������x�$��P��ƅzy#oi2g�~�IX��8A��c�Ƕ�O�{/N.�ql#۟Y8�wM�\������l�K�L̆���Cs/� }(*�|�F/� �����i�6.�� �`�+3��/��nJ�aPZ���Wh2�C(υ��8g �n?�+���4m�n�g �7C��2^�k�,�q[~-���u��m=t�UT�Fۛ
긻$m��C_�)�}�i'���O����������t���vCfZZ1�U"�O˂�ww�c�6,�p��p0~��T��o�!�-��|G���B�W^+����|��h > ��֭B!�$���)�y�h���<5�����A{D������vo�����W��y۟�J=,�7W���&$�~����U�h�b���WP�^ �x����� �<�]����HR��a9���i���E�xs\�5��8�65GI$�ZL̗'���?� {H$Wt��E�T(y3�Hb̙�2�D"���`���[�R���qy�#��z;�� �;5"�-mj�\���"��"�Qv���L:����OG�a��EHy#׽����r\g'�QB��=8a�p�I�4u���.`xXyl�C�DS�#W�O�aS��T��Bc�iuQc��=��^F�=�g�������)MI'^�6��~����
v�̻G�{vR'R a���(����j���<a[4���vZ2�޴����ܘ �p�b�����p��u3f�f��mmf�,�Q[�`fU��[/#Ԉdҿ�2���.Jx�U���,��R{�CU�2Wb{ޮ%�a��� �@j�����Y�d4Zj+�ڥ��3eRD[�x�v\:������gp^D���E��W���Nߛ ��͛�Lq�s� _�+k7*�BQ_nt�3c������ͅR,:�
���˄R��C���P0,��:.d�6� F��s�ut�E۠/t/a�h���� ̄0��+�O�x
B�Kl(�0nw.`C�q�r�k�#,]}���,��wND)WeRόg8�b�v+�.�v��Ո���^}�;Ԛ�m�0��6;6��m���x�*�YjUu�œ6� �1�*Cz��|C>�!Y��^ބ�NgR�|'d����'dM�K����.y�w�i=�
Pʗ�<��P�8V@��=V�
V��:$u0n⓿�E:�jr� ���� �!������03O�̀��We_�@���w����F-]Ujl�s��}��kʁ�� ��T��vH�ƣ�?ը5����ۖ�W�ӈ����n�D�����ލ��z+vX�=/^�n�D�� �)�jF���FKD�%w��xCw�ǥ����H bڂA���"i�xnw���� M��<E,� KW���ʓH�g ���!���2� ����(`[�+��y�˨ɗ1���C8����K�����EL$��3�r�O1�5g�DS�(T8��d�����B��o'��<e=c5����A"����dH���R�y�;Q��QTX�~��?�}w^����I)U��\��~/�����\r�|�j�-���gם?Ц���'\�0��"A���͋�]V�C�W�e�H0ni��?T�<�X��TN��ǿ��muuu�1�U��J����?l��l��ѻ+�RLHL5��q�5!X2J���bű�S,4�I�(B�p��T�4�K��4F`�`�ҋc�%9�ah�+a��:�'�
?���?BA�o���������>���j��b��*�����O���ur�_6��'h�7i{\j��^�N��l~U�gup������R��D���������9oC5�2���fY�3}��وN��?�?ěM�Y�����~����?>N����xz��g0��2����?_=N��y�e���|4A���o��|,�� p�����d��!\����ɾ�A�ӟ�, 0����j�L�Iފ>ĩ1���L�ɹJ��+@�Iن)�b�G5/(��EyW�o�U��P��NFyF����L�Bu‡5O�
&d�6H�݌Z�}8�����o���aڛ�����C�})�������[ f�����V ��C�~F�/x��>F������W��8�����K���:�%d��}�.���:&3˦��[V��7�"4H�/�J\����,��/ɦɒ>�l�ߥQW��@u���`�L����eN�>3H��t�My8�]�V���i`��0�<=.�˧�� ��?`߼K6� e������v�_����&v�d��L]��R�yq]�`T�
�VFc�3_�ԧ_����0P�U.��sE턑{V�cHo����$���%%�u�{�P���B$���,��� �7�����sv@⏫����3�>��U����g�?����C�s��X�̚���:Ɇ�$݀��n��:�ݟ���3}c��滳��A�߫���B� Ӝ~��$,T �M�{�|�!&ŗœ�y|�Ǭ|�u����C2����_�,�*�և=�x!���q�P۰&E�N���蓇��=����X�2D��L6��L������A���`�RY�oꔜ#௶��CJ��l�Z�cGl�6kOA�o
�|���ւl�WSll����aW�w-�F^a��vN·����NM[��.��㐕����Ǽ�c���S�<�c��d��L�X�Ɛ�4�2eJ8}�+J�fWw ���B��^����40f�; ���M��7U-��^}2�����\�8�S1���&yH���2�n�9o �Zg��շ۫��W��Uo� {u>\�����Z�=ޟ�����j�f ����">&�����`@3Z������y;�$X��]'v�}�m76��O?��O{HdK6Ә�@��y4 ��g-�Ef0��m�X*�/���q��"�g�r�+ �g�8�VƄ�NU��?���I, &6?���s|6$ �]�W�S򽊷��s��{�J�<�N�'�������� ���@]��'k����Hl+�&�<IE������~a!�Z�蠂���_����1Ci���NW�x��e��e�6�3��gUX��������������6)v���׫��i��ωYŚ��RUi�z�b�:�yej�����WR}i�z%��FL�3K{�5c��k���*V��lɎMd0;(df��3K ? ۻ�[6��q���^#i���H���z଱
i�?��Oe��i��+�YN����ɪ���k6݈h
���w�E� �>��y ��\�: ���!�4��E�����J�E_���m"��M��e����[���v�8��!�z��j�I���vu�ϧ��aw����>=�-U��j�^�>�����l�c�_�����շ������o���H �8�L!�A!��!����VH`� B�~���U�"�0'A[��L(I�k�\���@_=zGݔGeD`AŊ �EB#bm��9*�Up3�� )���6��X;Gef�A�
-<[׈g-6b+�"8�9�ВĤ$p9�d�K*AL -��E1�TRL6�o����ʺ*��QĚ Fk��[ID"�����2*[�1�j�Jч��G� ��Fl%�D�б�+��JaaL�� b�Y)�YW�w�܋QAr ���H°&���֚ +_�+h�g��8�FdM�4��ʴ�
s-�{�p���1�ҕ0������ ~+p`�+��¶
��li��N{ ��-m��`��F�b�9"Xj�9G
$�e��18���#��c<�����K��"�pޜ@��&����Xp����(���c���\*±"�}�X>s� C��v�0��)�->9���J�u�ȶSH�b|�I� �Fg����0Jߓ��|����za�L��s+�R�#38u�o���F�y��}S�O�l�H67��]��L�*�DnY”\�N)����D �� <==]���{�}@a�C ',R*gĬ���3C�+��" ��mM9�1b��0����� do<����^���b�T)�ec~WLa%RX �jV������T�OV*�G��#n�X+���U$��������5�����xN�|�-�{,�\Z9�42R ��HIJ�Y�k#�U
a� ֐�Z�4BB��H�L251?]a즫t��
ZAr��eʱO[ER��j��$Wve8��h�c�E[���a�y0dioE��_ &�+�k�"�E�'���T�szd�������@��x@!%�P ��*i�[��t �6�W��ҔrS��OY���8V���|�V)�%��8}��t�BZ.c���'���<�|$]��=��gk�0��B�꺬�}�K�lSJ �+�����+�@�7y��+�-I3� ���$2Oq�ߍYM����C$ �d�~E�I*ݲ�)�R
�:�kU[}�ᵓ�M���(
h:�h�(��Z�f5��{�(����4Q WAV[˭��i�uF�� *Y[r�3̮R �$�(��+�馒F����Mli��V�Y�7��D
���`��[ 2SI�J����F�tR��)a�ӏ�dTb9�>}��R�D��!.3
f�Z�#lukMc)�-���Ro� _��k,2���(j8n�zD)DV��t_��03?]��j#e�6iDB0�q�8�q9� @\�w� � �VHP��"E�
3�b�%<UTn���>��}��|M)]ۧ�eO��������F�8Vkf�&�˔c�~� ��gbW�x80���1���M��l��V�vcV��a!��\���2��:�/�����uu�x���[�\;�_����Y�W�߬B�u����Ot�?��y#�2T!�O�=A�#d^��cAF����+#�,� �3ϫ��#̨�ie�c=�T�¬X?(����m�_ ��R�����Sii$(g0��M� �_-�{�u�{e-UNJ�c:K#���$�F�(x �lF/�i1�R/sd%�h�}T�#azD�RICm,��-�U]o�j ��61��<Lό��g0"+a苬7+M:#3��&�ӵ`}�2�s��Ȁ�[���=�X)���ψ�t���̅��)����Y�~B�5Rg�8
�VL�?X^�6�����������Ps�O���`�����q�D���S63�g�͌n����"���f�j�lfb3P6�-i�暿��5[e�wC6!|��F��C�+�Jn�m�k�����p �N�2����њ���x��$l�S.�d8"�#��9;R�nC��.<>��:�Yksf8�D�S�d��Y��$�!`����صY=��j�dʓY��F��XyK�C$$�@پ@-��RD���7+R��C/[G,Z&e ؈�c$�v6:ZdQ��>|�d���5�V��=�|�ٌ�eq�T�f�BgܺҢ#��o)b���-5m9��Ji.��1�<�{g�E=jecY���P��FRo��(�*��d �,312��H��s�C�J.�o֖r��.O�#��&zc�<�׈u�0 �m��m��p���̊������� Ye6��<�1���D-�J��fd���D\`��|����<6MRʈ�:��Қ)�r�"Zr�d�zk��gf�j�HI�+�d�ǣ�f*�_D���¥��r��Z�#eck�6� 14�V��!M Dm6��L�I�gxK��K������|f��c�iJ*����#�J�إ��P�v�I1ke�x#mr ��6���bY��z?�Up�oF�܎�Yyt�$)�&�o��}� *J�jQK�M���_e(S�,���6��x��<ny���h g� �q�Z���Fߝ;$�x0�ۨHl4���,"O��~�$�����ߤ4X+EGo�����_mx��d�S���HڷJP&'RSp��������pɱ�u�g�]��6�W�XL �����U��^I��!L$Od�Ǭm�Jo�� �ahC�6؅��U�`ȭ;=o�Wo�z�w+fWxc�]�u �+�K�0;�^j�=z�VR���c�2����-�9v:] ���q;����Pif_b��*���j��o��5���~��D���hL�^��5���j�v�lkN���/��w�1ZKC�����}��m�Yǹ�hg�������bb��gO<L$k6�g�aF1v}7�mZ�Zm� �銬 ���N�����S�7v/<�X�^+|�d��[��X����6 }dF��f�,�6�L�%H� ���d� %����5��-ę�����8�;g��'ڄd;Y��%"63K��Vl��j���0J�4��i�f(�xi��#?�$��'qfMA?��^�f�,#����Q�]�^�k+���.`�ᖲl�C-��D�\�I��"� �W6 `�9 �9m1�*�30��=׎���4�_�h��~[�F[^�o�]����
U�ӷ��|��&��,�V.�x3 0ڮp)����˫d`��u��nS_�f��l����s�j�n$9MmM�[����k��y�V*�
�oT�)�W�oF�6�!CZK$��\� A��F����� ��t�� bo�ó�6���t�l8�8���m�7 &!�|-(��(������#T�1E�>����W�W���_����O?�xwus��w���/wW�������?�~������������?|��l���z��O����ǟ�>����w?\�ږ�@O]]��: ț�?N�|��O��ʞ�ƥH~��F� 9cR�]����mЬ�3,���;s���>yͳ*���rF�ҳºߴ�!���C8��C8��^܋�g��}�i�:�s[>�s�i�0�R��D�o�cD7�ѽ$�.�ѥ�u6+*�ŭ��{#0��S���d �1�[q?���I��M�y���9��i�t7����^��ӹ%@�}G�I��y{��1�P�q>���G���� ��~��!���\��g�Џي���~�]���6����I�T���U��ow77���pᦒ|d%��d���}ߛ����>�����:c�!tu��?4p�������/�]�������|[@IJ�J��F?����X�7\P���{]�8g׎�KI)5YJ�Z��J�����-S[�7����U�5��a��/�"%�t>E��.� ���\�K�(�ig���ŌJ��s��Tw 6�˦Ej����r����7��%� %.Ib�xȈ����n] �!�����A��2��:|�� �"(����Ꟗ'�p�X+I<*i6�2�c|_�(et��_�����Z���Bx_W!�*�PSjyZ��w�sc�)�~x�܏tZL�5���kx���F��VU�$�V����?�VU #uޗ�E�B�4�%){}�S�����R��II��յ�C�3ha�r��ݕi��Ok$އe�\gL���uK3�F�\(�^��ྥ�s��]7��F�����w�����CȘ?)�ɒuOj6�U�V��\��@vf��[@�_)�%!���N&D���j�F'�o�lS喊t/��nTg��� Q�x?�um��>,��H�/.�"��廙�(.����cZ!L��K���RG~K=���ȟ��)�^�nj<�U�-��2 ⾯����Ll<u8�� �1����큭����� Te�o�"4[l�;!��tt�4�̠7V�p�� �f̑TW���`�Xf:�g�3mH>�x��v���Bܗ~ץ�kr�)�̧�݂c��ч$���j�5\���uA B_W�CH�6��?U���({l�l��׫X�_��~�ku#s�Ϋ+(Tc� �gA|��H��oKOh](��d��� qs����z<BI��@��&���2Mq�n��O�j( �$ɜ�u7ǥ�K���i�!����ܴః�2��2��E� %��
(K��`E���0ʫ�I��j!8$��>9��˚G�~�3��5�Ԉ���P���|��4����RG�cB��7�Us������+J�\�}}�F���O͓iȌ�G��(M5�X�@�=.x�@�� T3��3���󩬑�u�0:�U2��$+�W1�/���ȁ� �Il�*�os��9���ro_P�o��O�+\w�
c��h�<o�ojd��\�M�6��͡�
F7�,p{*i�K�;Ek���;3��R�����ۻ�>�k����/?����?����o ��3���b�������O���wY,��b�FoY�|���2
%�4Hn�!�}�ᦿ������{��Rn)�]-o$���ޔ[*�nik��[�w��U��Zݰr˻��[�:Й~(Xi%|�Rec�LW��lf�eHvo���N���FH�:�@;]�[�`R�1��K��us�%}CY����������i�u3x�7�ɿwM�L^w��5�uO~jb�<�{���ۄ�v�M���%���K��g�~{m��)fsdU��
g�}c��Vt:�iFˍ%�ȮJ��Ew�� ��J3���x� ���d�ʈ�Kω�zz@>Kq6�:��7�Ru[�4����L�LJ�)jl��HV����!���o;�߮Pս-m|�J���
T�+f���}���ʲpFJ��VL�նjY�v`m�r�®u_��|bӑUvxA��hGE=B��{���N�ɥ�<B���z�F��
��5� �/�5�^��y� �������kِ���3֔�st0*&ͯ�Nٙ`WN�� ��>���YU��q� ��>ɵ��];�B4b1n1^��+m�{I��I7�o/Qm=D�+�R�,�Ahȃ��g�O�C���$����!J����⫓u��?�Id%�ϗ܍뒁^�D`��*O��w��6���0������`��8a�S��V��`����'�52^����m����k���(l�5�w˽6{ܒ�:��F�=��<O�w&��'�ܣ��x(ґ���@�t ,�mw�6��Cj�ĝߙ��N�\4��_#�
q]�Ÿ���{[Pڲ������;�����Խ*�T͏2"��z`���� �b�X� �-�Z��B���n�U9i��5�0�����5�/��ӟB+y�ʽ�#��<�ߡ��u=�W?]e[5�z����N�B*@n$ȇ�����Նo���i1�E��R���Ɂ ����ܹ�04��D�݄�`Ķ�Uĝ�Z��]ZjDŕ.>�,Nw�3��>�2�8Ϟ:��㫥L�� �k���gP��C�c���'͛�f��X���<�V�}� 五�D�O�ֶ�.ryE��s�?V��6��_(���ܕch�ܔx�<P��g� Ⱦ4��ʫj��EV]r #�iX1��^֖�4�I�@ص��u�=?'��QY:�i�[R���.����b�=�,��&l�j�j�+��������0}�� �/�ז���Ϗ�y�j��XA�E�(�2��ؐ���F�?V>�T9,U
��D���|_��9���[>�x�% R��0F����N��0�V7�J���zݧs��m�,V��]�S��'�����V{��g� ���l�z.=�A ���ʙ,DZ��. �o��d>���s���RW��V��O���@t��b�"��1#���H�n�7�GK^�,��e���Vt�q�yW���h~׵�>3��M��X$P��e-���{<k��ܖ~WU}��/iVs���u���D�k�c�����jݩ�j� �d���U�^�xt�ܰ#�E��l�,��׸��w�K
��[�)��.M��J���k%���%��Q��1��Ax�3g��+W*��P���"��:Mu�:lUZ�
��50z>��#Q}j�yXk����ܴMH߻l���UW0 P C��L������V�S��.��ٴ��Eu�� `.oo�m�;..��%�u��I�եS7I���gx_�����7�|5G��{|[�=���b�nCp�u!�w\��P�u0_�tZ��a����֠s��zɕ�������)�d�� ��$�ͽ�mYY<�q��=�6AG7��h7�U#����6�3o(�Z��g����ox�F�|e�,��|⋔m2C˲:+��EV�Q����K�m̃��a��Mf����ps_^�: 5�4�lS6�-��n��,���w˵�<�%�/÷Y� ��6Pn�v��M�u4N}͵���G��׎�m�%r,�����VѪ�m�l�����B��r��A�ѻm9O��
cf�����i�b����,?1��U�˜����Za�L�S����߯k�����ط���q3W3 ���5 Ygod!��u�8�c϶Qa̒E�g��˜�E����Ф$;*+x� ~�ʳpV36�]�� �doV��{���ǡ�˜���}ڛ��w�t L��2o�T��Low�r%�
chU��t� �Z�1�C�^��M��c*���JO[*��ƍr+SW3�PW��=r�@O^a� Ńl�>�{Q�ݹ�ݝν�{�-y5.� C�Kg�1+.�Ya%�q�ͺ*����;oG� �T��U3^�fͽ+��Qa����FM��%����ᜰ���Ę�\n�K�Xn�1H_�1�>��@/����"cn�~�"cYe��~�����u��Nh�Ӱ�P�M� �m̶ ��v�w��'(Af��|H+���������~�����?]��������?��3Qgvs�o�%��w��VQu}Moѝ�����M/9�v�������C[�'=F�^zx:<����#\{���(�:B�?Eh�X(&#��"��XE�����'"hQ�KE;��?-�b��HG�����DBKL���"��h�X`Fp��Ja��T3�3�#��I����C���1��i`�uD���@[d�� =no�(:�Z6{��l��p�!d��p�O �#)�Dx�x��s��4,
#f���G��#!�#M��a�'TExA(�(U[P
�J�Yl*�SX���tJ��(A Fh$L �؂qa�` E�,�/8�aZ�+���*Rx��
>�RDb�%��\pA 1�MY�"�[ ;��DT-ґb���i ��.tv�H�)h�N�P�Et��6���s�+@��^#@��8� M(|��>�Gx�8�2�`SK�2"b�u���E�� :ǘ҈.0�(� ��aC�b� ���,&� Ǒ����08Q�K��܎�H Õ�p�@�!������"f�aE�s.#j`^`�tę^ 1�Ԙ ��@�LF�ÿ`a�Âa��`������1"���4i1�S���Ҁ@Xf:\��?Ks��@����PV�HD�� ,��$�� �R
�PŠc) �`)��TQ�V �( x��Yj,)�<h�-��,���ʨJaKI�(��Sp#^1,��UЏ����~R��kl�@AJ���& 2��?(��_qi�X Bh(h��"�3�`�n��W�R#Q�@� Sh� &� @�F`j�P�x*�PbHE��_JI,���� t`P�.�""lA8e�e�gij �(],P� ��ܴ�Č�A|"h (� ��%(�I�[!�^���Fڮ�dp.��/%Hf� RP#1Ӗ���#E�b�@�HsT�Ռ"53H��PAOAz,���>U,�tAB�H���?���E �ق"���(�ʢ+�4�"!0���Ԃb �E�qO10�XP�DD�"�"'����6�G��Pj
J�!7J��Ԓ� J��%���H珋���C�
�B-(� +���v�E/@��� ���pL#��l(ʥ4���'f��c�ShE9��&�DX;�a��)�<f9� @�T( *� Y�� )��������]P)HDق�T"����,�6mX~b�(?�P�����$7m1N��0�s �-�t.v�^f�<CG2���у c1��2����RK�@d3�9Hi�����m�T�_P `ͧpep2,x$ �1�AʥO�נ&��ӠG��%�H�cD(c�� ��*5&`�P�w���(з0m�:U �(XR��pK=�c�z�`\Z�
c]1��i(��FN0N�y� �%VҔ{L���G�1t")�Ȃ�֢�3h��0���-I��?K`(�"�L��D��� Ej�@�1���҈,8�(��z�#�<��ࠝ��F/fo8�2Rh���"d�1u��Y �1h��X�h�p���K�I��E1� 9qc�c#9�0���9��1$� � kך/r������)�`
S�@@q�2�Ng��3L�C�^h޶4?*Eġ�Q���@�¿ �M�ࠀ1 6���Imx��tc .��E�@t�%V������v�R�Kn��f���|:���Z�# H � 43� f�F�Z�[�?$2׊ ��P��R �y`��@�=.9VF.�:vpE����N����+����Bnm=��,Q� ���/8��Chc� ;!2f�D4�D$�D@�'1��D��A� a6B.$�9��ϟ�J��ɓHr�r��B*u�@�'��)aU�C�2XP��4���H���Y� FƧSAj!�"�7�`�"${�X���0�Z
���������-�G�,x�x!n �7��:��/��.���  ,.82������]�P2@s^h ��$�i`� !�A��� $3ΟP0�Z�@��P��P�s+B[$kTԆ�F�` > 
���ґ�h!�Q�B�,` m|,��K*�Ѡ�nXD���Rs%@�� \�a�SA�4(��o��񶷛����5ټ�zNևM�6�����m����MVO�n�s��y���ě͏��p�,1��7o������a�?���0��]�b�1D��c|�?'�����p>����19?��cd���.�Sr�~|<�$������� ��%���ܣ���9%�����;'�%��7�Ƶ�S�w�яɩ1���dm|��3�Cs�Ȋ���|���j���\�_��C�zH�������yy:w�O���������|�RӨ�����  Y�d�e�����;<�$|x�{�p<�[L ���C6$S�r�J� �ppdM�N��d���q��͇����|�)֚�),���ON@����x�������s��Ż
��A���V�Ã���� �D�9�)csx���_��uc�2<��t��7�d����u;%���·c�)�p������I6N�}3i���|I��d�_ 9'!9甭�<³�+� ��ҽ�z����T^�d�p/��>J2;�����d�; ��:>')D^�Q��G�������~�FR���A�e
��_�v��Ϛd�����&>ǧ�ù�z�E{0�0(�ԯ�H��I�N�-$�1��S�����>��|��|N��PAx
zJ�3��?�@���z#X�ɭ�v�{P���h� Z�ݬ'��r�Ռz(� ��I�_>=.W_ω�C��,AF�…���=a5Ԅ��1$�F��8��`���D����s�����7�K��fMul½}JX���2�x����_�� �i���Y�_��@�5}��!�Ԛd}x�j�o���!dDgP��]5�I�Q��u����XR���;��LI�o�� �N
B?`��c���}�m���뒒�:�y%
d-MLIɯ�c�>���u�Ũ�YM��)�,��y��IΙ}y�.O?�e(�(Rj��v����*�*�7����U��m��yw�OXLn����cfHw�z>����~��}����?�����S��c�߭���x8.���?��g'#h�:4!^S��i:`h�Z�1� ͼ'�X밡��c|L�I����&� �����޲�\J�P��8�ެ]m՚��:� c,�ZI�(O�6F(f[,7L��L���`�*pk%�`+���b��[E8O4M^K�Qb#���5��I���i�DBb�B������{�)!��B�%�:� Z�$�oVi%�X�8��I��� J'H
%p�7�ӻ����f��l֫Di�VTk�FjE�&1J�Xm"1'r�I���J�r��$�+����� �O���zz=�.X� _���������S��>Q� Ub?�>�|^>�O�O�dӭ���`�~�S���ߓc��"'w�L"���N�u���O���+('�"Cʗ��)��Ή��/��n��e��A 6^U�0�a�=��LJ]��+͠} �94o?%���'�9_h�?M� ��t.@z�v�$?}}e��_��?ֿ�}��=��ޢN���ޜ�1u��A���)���c���8�s;�W��*C:��>����ʝ#�� 8rV{k�
�A��ӓ �:����v���
��W��c�i*V������*���q�c�g L ����xS8�B҄�H�^�So⇇Z��n��~�/�q��0��������'iō������/�ǥ��� ��*w���m���w�#/5��N �e�Pv}0�uch��*Śd�Z*����%T�*Qw*��.{�����b� o6��a��y���HN��$:�_AqV�4ٻ!���p�B��#ڔ{��p�� @jr�D�x������K`��v \��.'����5���Jף�;�"�����������_v{0��>�\���nwN�q}�KP�:�*r��&C�[�+4oě L�q����l�ĺ[�����8 ��2P�M˸��R�j?C*9�K�]�MB���� �ʞP��G�RP��9�)�5�%���@I�Q��S9��,,�l�I�V��\���|m\�� P�i޸@s�� PX���uU~�v�j����n���8��v��a�̗� jL�O�A�� �`"m�X��b�`��Z��fdF-��T4�^��h0���G���sD��ۗ *�?��A_N���r*LJ}��P�n>!)����}��ߋ��B)��J���n�������P=�5�}%D��o*��7I��t�
����}&�d\Pꟽ�����u�`u�*�sZJ
C�x6�?�a�6Y?�ǸF��A��3
UG��=L��C�`����P�l�Rm�%�ܴU�vL�I`#�M�
!�2�ZD�.B�h˥�[��K��[��o�!�ӹ����i1uR,��}ık�FOx � ��p�gs��a�T�wX8C�/�&�[9)�.Hí��(M��3�t�����~�����6򑳇����80������&�0� �S�gB��n|�%��XnR�G8��9�J�A�7SK��B9%B�IE�����N!�\�|.���K�Z�����A�����r��~�;O�k��!�r�����%|>4ִ�w��:��c�-�H ��z8~w8<ּ��C変��V�:K cP��J�A]�0��6�.o����}�vk�@ˬ#��#�XJ�����6�F+�(%sk��2H�(g��tj�7��N��t�@+QDr�d}������m
������1����1m�C�V���Sm��
��v;��,)鈱;I���
RzV���\�%4�eF` �9%F���*/ʝc� s��% ׅ �_z��z�7�-����xu���P��"{=�`Nϓ�ZO��S��=�Mz/b� .���瘘q��5v|������e�#�`��v'T�n�t���v���)��TNO��Q(� �C�c䶗�Q���FjB���K��P�~��?8L�a�g4�L�u�a����e"��❠N�K��I�r���i���Q*3���E]����.�Kf;ֲ/�L���0��jќ''0��5%�l� ��@y#��"OQ`��\�(z��������<�$5w$���
;`љ
� � ���eN�b��[��+L�n�)y!�T0������O�9����Xc|
V�p�F�$)Ɔ�����{����5U��o��]SM�)����#�����T9S '��!���vE�C�3��l�D��
7��@�I&"�<�>^tCǢ.&��;;�ТaP �ad�D��Q�O�g�C%��w*���/!_Dı�?��5�w� 4�8_�q$]O ;L��X?�/�$�����c�ɲA%��@����w��;����-SR'������E�0�W�r�h�*��2��\�H(cC�hh���/o1� E��0�.)�zΩ�"6�:����E}ͦ<��a���A3rJ5��ܗ�����y3�����|��4���B-�z�k&&!�}ִ�He�K3I9w ��*'b�\�%/���'0��ko`��M&PN��<�7�*�)&.�|�_�}�4��"��\T4�/��Y0��
`�:�
G�� �h�#9��d� W>���x�缊i!�F:�wB@�"P
_>G@�feto^&G� `4k^�T7�`מ�\���l{K�^^�s��(��&ӱ�ţ��
`�I��*+�!�<8��}���!c.��������i�v
S��5j�ÞQ��/��x�
wu��}JB��De����_v>��'�)�{���k M��jz�s�"�@�k���v��/v�������!q��T�U5���Q渑tJ�q�]=gV,�"o$FL�*|�'�)V�)�1�N�G�e��.��W8�1�߄�)b&]��q���\�W����G�$�Ɉ�&��\���
�k̕&+�֛�JA㊊�T��'$e3��R�^�i,��F��po\�&�'xzZ9�  ɮZ�o<8�Wߨ6 q�8z�� K�\��4���q�T����7�cr�8�@稸��j�IJSNݾ����):�\9Q�T�+ Ш#�$W�a��H�.�_ݙj= �
�P�Y��^q� �1O@�B�9���X�,<Ӆꡬ#���K�˦
�n{b�ƒ�� �oAL�����IA"���u =T0)�9i��]p�H�}5
RRr 9Y~̠������d&A�^�K��u�I��� �������iZ�]
���E~�� ��W�u�Ǽ�:�D�Ъ��p����9%���',�����\U��#Y�a��}1�� ܏=C���˨XO�X$n$<�^��0H��Xeš���{�,}� 5J��o�N�̜��'�]�|�Ъ���^r�zB5v1�(A�+fK��wO���W�9�$���O[��_Z|��d-�#��I4<L�9pT��=:an4��j\ڹw����8�Z೜%�&-03GZl�(Lz\Y:e6��M���T�0����E��s�����fh�^D� -�k������j��2�3\�L����ij�v 5�0�ȬU���#<z�s�͗>�L�κ�!G��w���b��E�F$L��1'Qa!��!Ǥ�e�U��E;�2��~q���z���W��9�w~'�EV��p��l�L�S]�t(]N�M�h�s#:�$g��RN���3�qyIW���K2W�⋺��f�L�혊�L��9;��˥�e��Z��R���*��J�ࠎ�&3TR���A����6k����f"Kh�R7%2xz|�I ��� ��1��OI٬�1<����|}�e�x����rD+1�j��Q���W���{��,bx��=�@� EI(T)��L�ԁ ��ƅ&��Zs%���;�M�Q��Y�JN>� �9�s\�?<��9Y>�WP}���/���'�(%X�^8�$�SN1B�|��T���� c�̠۫/�e�]�m � ��(�.A1^DB����6�?��<��G��er<���j�٬W��|���h�Ԋ2Mb�(���(DbN(��?{o��q$
~n�
��}`��<�}d٬Y7���^�Ҿ};c���,O
T�L�}�#�NϬ<"
��0#����q��L�t�v۵J�F�Y��t=����b�h̔�\
��Q��SS �!>Kj"�$�� ��FM0��Ɇr��;C���M&3��ͬܮ�F���i
ϳ��3��͈VF�Tn�SI*�R�d'sM,Jq��3ŵ+1�)I�,9��-J�D���ȯ��?Q��!"��*�;��(1n�[d�)Z�\�˫��n?�=�"���I�����'��a 9e�;���k�ҥŽY �k�y"6�!j앰mU�diC�p"���O9Bbk��9��}�\��-Ƞ��\jn_��� ���$j�n�N��G-ge�]R�(wθe�a`P԰_�� �,Q�ɢ[t��`m�W,B#�E:�Aǜ: X_/'��}�ܹ1�~<2��H�D�0�ā���e��H���G�3�Q[��s��n�Ikvґ��Z���r���7��w��7tI7�{�k�� M�Xp���^�VB�
�ҝD[������mz�?����&�9�.נ�k@&d,��k�HL�bY�L��k�G3�w��,ȅ$A��t`���C:�04�Pċ�8��X� ����:H�P���� n�D�X��QTv"��"��|W
�M��͈�ʻ͊��S�+��MdXV�0�����֐�^>^��18�w �9�����0Ծ��Ja�&��(&n�����;��Tj�3�ז�)��5���H��dTPJ��� ��ޥ��bG�V���%3�#L����&�<���&pA��&� �tP���`��Qk4Sb��t+Mj7zg���噡��Fm��P��R����)ψ�X�-�& �#ť&P6�J���pۿZrbh���c�2�HA�P�r+8�Hˠ�1��hƩ��*!9UVXB�1��$7�*��%�J#��F�s�i.�Yڤib�܆�O��'���ޢ���ܡ�q�>_B�i��E���ο ��Z�Spi��T`�_㩰��S�
I�R��N�r�5�+,��<ĩ����N|���>�mr1����(۬!1EQ(���LͶ��蒪Bj��N6���1���,���X�h����,�E(6��Qg��#����-ă�o�t���r&�A(��si�����s�t!m�D������|�~�yʲ����
MC~N���4aݛM�X�D�я�2�hbFG��
b��Ⱦ^^Mtd����@��V����f
~�n%�7�r���˜��$y/44^ ��Α�o���[UC���zDp��TO�Ā;�[�i��4b���~4�|�����H(�A�������L���s�ej2��15���� ���9/ۤ�q�0�s�CYa0࣭0�������m��e[���8��y"���9Qi�TD�Z�=QHH�gb�FhO�[���sÅI>�pΐ�6چ0����7�JN����O�JA�pB
���5����8�I���Yx��� �q��Oĸ��Xv�އ8V� �ƀOϝ�S&��O.eN����r|
#����@5\3hZ2f�PYlN��k���TI�Ӝ�{�mN����ʂ���-��s�l`=Z�q[��j1xu��9�5KbX ӌ�ˏ��#M3�h��h�T%2�Ő.�ǃj�x��O���3��q5�cp��온>g�)�r�J���}�}�-���H�˜/L��V�x3�ܳ(�:H��p��h�=}pb�ف95����J�F�Cx�D�ڑ7vQj�ַPK���&T+h‰����M*��wQ�I�>�f!�@JyO��=m����hȸ���A�{l������!��Bp<Q�m�C���|<7�;gs�\[�紨���>'���g�\�u��:bL:���C�.A�B��%�s����D'#X��ل����t�)�^������m��D����(�qBǥ_yw�6A���
��b9[rJ��*$���"f�b),D,�&ݻ����j�MsYx`�)1"�c�PIg��S��vyă�IcS���N��
[�T�Pw�V�����K��z�Y���R�es
�DP4�E�����&1�]��`dׅJ`À��ŏ��)�^0�f���?��VR}�VyŢ�rp;J��뇈Uc�C����="�K];�ʐ�t�<�8�X���n��� �:�Q�sd���+ ������Y�l���Tѳ3E*�S8$�b� ��"�Sd_�݉ì�@ ���������N˜�����^'���t�P.:C0���-�a ���Shh4n��x����1C���ʭ���0�sR��?�w� 7��M�r1 m�B�s�� e�![�Z�4[|WS����˳�KA�~���L�r�LϼH�\����V�.`�ᄅ'h[%#+t���
]O/g��-���S�����P�F�'�@+�����9!M5IP{�A�ᛖݐv��D(���SW�97����ɴC��-!8�
�隳)�U�4<�J#-�4�P&�+�^�z��2��r��v�-�Կ�v5����RDJ�*�?(\;��^E;u�b��:�c�0�w�����EdW��� Ns Ik:D^6��W��}��A���)�pw���}��y���#{tD�y���zV����}E z�#��oa�8�j0`��,o�;
�9El9�<!b�w��#V�3�..])�؋p������t�bc�%JWJ#Y�E̜��Y�H�RYX���#���v�Yg�ʍ�֒ 1k.,KIf��fkK%�2�ҍ�m�*��f)_�u0��s��{�m����썑�6=���L9�S�,�-�����i���|�M����� 9��b��O*�l�+=pP���-�R܆a� ٌ�>@*up�dIVp���S��� ܱ-xQ����9v�c�)�޻��G�n������Wok�.��ӣ���֩����^ U����й8��lUu�@��“{7�)�xC�m�'OIbQ�6���Ϩ$#}~�Σs��)IP�TH_����?Q^
-�Ifq!.���05��-H܁�'aD��N~���t�B4D��"�f�<�ʿ�yFD�R' q)�FD��zs�|�B��CD��P�
T x3(3�i�M��B�b�0A� �~E�؆$�Cnߙ$K��~�p�Q��R؆��Q��8�h�<+�G��GQ::l"=n$u�{ ��[� �"K7���Zn4�r��JSc��g)1�gB������b���[i�X������'F�1f�1}uhӑc�o@=��}V!J���Jq��X0��;��-{�L׀Hsk�J>�l�K�?���}�fC�|Cg/�£ �����M �'5�D� ����xWq/��g͆B�I�4��y|,���}�J�b�98�c�������Y ��;%���*f�bכ�1�Κ=�LE%� ;o��P;kո�<X°�i* *K�7-4_�`���:��\"���r8���L�m*Dbd�F
� uWGYFc��qp��r�$�����cWwZ̛�L ����~��=��1lAp�tf���T�-[��K(�$6f8�&�'���0�Ӿ<�n�74�dN���`S�H,�aX�G ��xm�!)t,~��w+x�W�QM���\)7
|���=�:=�&����k����C� <g�e4�S /VP�tl2f�݋R~̈́�,(�)\ch[�#�'�j���C1�U�~K�&D �p�HeM-�0&���p>�k5�
� ��vD58�w�u�5p�X�9$<���sv��U�w��ʆf ����T3�Gv�v���;ٚɈ�Mt�Nv�8Q��8G�����CN���?/�b�gɨ�;�Mkm��)�u�4� ������@~��F~Ms�}*KM��N�W��<�K�B��i��ϓ�_�����p�ԍ
��|m����p_/��׆5��xmXs�z� k�XOps�_�ڰ�2�祌�6���rm�� smXs�ڰ�� k����׆����a WT��ڰ���ڰ�ꌯ ki^�a-U�kî����Ҽ�k�Z��׆��sm��3�z}E��"��bS��W����q�\�+��Ȅ���[eU"��Y��`��&�N�8����lMr=D�&���kMҴ�"��Z�4S�ǚ�)z�+�4�������,�I�������&i�bY� D:���&(_3ɚ��� ��R��f4���q� �>;��xQ��v�/%���O0���8���>?���]e˷8�3���?�,�޶O
�`��s�3�}}� f4��<�3ڂy�/�����K0�M0���� �y���l�q�6C, ���[C v51�`��8;��D| f 6b�� f��i< W�+�+��Rg�tSZ�2��2���N7�H"�^�4εd�n�nk6BjH�د Ͻ�8˄.1Biʭ�\H"-cT ΩьS#�UBr����hc8!�C�h��b�X*��F���Z��:ʵv��k9��
��!CoQ�s��:��b���`G�_YU�S�4��T\�"
��
W�r(���TD)�ͻ!N�E�y!N�O|�2�>�mrø#Zs��sA&�6��+K�J�Qtb�� ����뀙;@�9z.G$0ܪnr��SAp��
�in�~@�E*x� �� ����>g�I��T��ЎjOALT�n�9�B!�Y�B1�ZS�]s쌭(x��*w�)����>ާ��R8�=�pl
zcjGA������9�tq���K������H��uU�J"��D��]��WC���b��t�Ⱦ���C�x ׄ8�
+�M3Q��� ���D�z��#�e�B����,:�u��ou�0�\%C^���9sVHO�C�A;��w�/�Ï���<X!����*��*���6�ya�F(�:ڜ��+I�� :?ӛ;�y�T�:NJ脎�Y�I�\H�à�o�z��� mņyL�� �k�\'�9# ~�dl|R�4`H�����u�x8I�� f��J�ԛ �.����e�R���M^��zxJ7���o��6}zJ��܈�#{ɴ��宛��P���%�K(�&�E��+-?�P �s��U8͔�� �8N��Ac�l�-T�
���̷�x���l�S:�u�`�B�ޗ��FsJc�_�0Pe�rCq��g�a��r*n�S������j(�c�jX�}y����H +1�X����l���X����A<����!��"��f7A���.48�ӱ����u�*,`��ۇ���t�Ͷ�w�`/;u��e5���v\��wG�X��Z�$i�t5�oGNE��ڌu�2m �0)�%�&�|&�(�%�2�G)X�v�d
f��U�`XX�t��f����,���:,�{�3<�$4(Kt-����ɋ(���u�鍕��҅>��a�.��:��8W�6��/L�G��X`��p�T� ŕ��•��Ӏ����PI�@
���0���� �<Kؒ2���҅�(Kx�RJƂ�(hLy�)�hF m�� k���ס�#�0k�ԁRD"��ffY��M�K0�Z�3�<���-Ӷ�,�礝����H-��[�wgms.��!���Ђ�xWh3��{�#������q���j,�_��T��[t6jIj�j9k� �0�r����6 E�Ҿ!�\$#�ġ�v�Mt }�6�
"�1��cѽ`4�<n�����i%�%�c�����M�6L�!ɦV���J�g{���بz���g��1ƾ�Q}�����H{��+�7�(����3 T-SG�&�l���a����n��qR^�+v��O�f�f��P���c��.�7 ���qsx�R6���W;K=e�z�n��5:늻yg�g�3��rt#�UZ�]%����8W�n:��}�̹72��qI&G�K�u��H�1�E�޻�g�m�=='��wo� �>@����c��1_|?z���cG�I�H4V�����3���6N����aV�h��j����1���1rۦ�8� sd^��2J ~�j`1d�M1컌&������Œ���`pa�uvBa�'{�lIF�ݛ�� t#�i�$����$(
��� *=��y���'S+<�p�L��M����*̈z�Z�VB�n�0�Ɵ�(�b�o���M�����Y��h�}MޓJø��hyX�x�O�8:6`�ت�I�USz�^�~Fk~C����J���=*�h�N yA;)��F}��F����sh Ħ���m��a�DC���zqc ��Cw!w�!x��7'�==|e4ki����l�c ��t�F�ԓ{5�Q:�ͳ�В7[�v�伫����cT�hh["�{�h����6U f���&�F�%�eh�ڽ�s�����Mm%���)~N���Яe㫝,b�]���
����9�ё�9�M��zkLO�7�9c���DF`��.�v:�?ŏ��8� ��fr�Rn=��,1HZ)h�d;�_>�]^��D�����[���-~�����X�g�C��ε����X�F8Ž��%s(H�I���#� ������mA=r�l;��OڝB�G8��(�L|�LUX&��(Ñ�n���(��.r��z�Ĭ)���C0M[���Jf*�s�1�}����1�H;����`��l8A @�?�P0r@S��Hٽ�3�_ I�� ,�=� ���O}��D3�����P+�*$1=:^0��<a'w�&���>g�HM�co��+z��BDB
N�4���{�#u�a�_� D�;]؃����_�j^�i@ ��%��Ka v���dB/���c�'+ ��>���+��Z����i1�
�։�}0�|��+��9n��L�֍���i� ���s��-KAf��'�P�fXS�Ut�eJi���j��PM�U� �n1SB Kl��$Ӡ�)�=5>aW�Ք@a�H������o��N|�rn�!�(�;�\f��#�m���Y�D�� +tm�$3�B�6~j&,�i���}v��n��m������[���9۞F�X��)��k�%d �:.�)Zۻt2�J/�4(!��U��N/��*�P¥y��)�����.�%�K&�P�cU;����|��9�*�K�;�͂����S�R"�%�88Vq��<��E{���yW=�������x4�3 ����NSA*&>Q+�P"�H�L�t�� U)��d~C�!g��R�N�z}{s��Y�&�˸\�v~z�=�~�{84�i����FZ��.SJ����3W���3Sp�i��C�jɉ��2�h��L�L�RH��0\v�0ND���@<�A8.@fG*G̣��r�<�R�Y�c����
-����n0������I�g��s<�g���7�Q��)Ѫ'̦e3-���r!�h��1W��vӢ������S9�1*wre"w��)#���Ÿ(��T��"1��{�zZ�I_}xJ@"|�Ia��UYԤ��!�,U_҆���ꆌ�9�"y�C� ܹSD�A�@g�� �k�w�'�_�~�(=�~�,:
4��Q�H��yT��r�0F9]ބ+(�r�LI�5�j���`a!� �!�Q� yd���W9�M&ϫ� �@��Q�RbШ�cN�B'���e� +�PJ(�R��C>�Z'�l  ����6`n���8��B��hB�Q7��^�ɷ���+�1t��ȝ�ε�=8f���6e�듏��:j|�n5�#����`S��%/B�!�n$j��?�V�þ��/w�os{}BF�Ix�k�U,�8
=��C�>�*��^�|��`�[A�� �JQ�E�����*�/<O'�h��x�U�����ƣ�Rv��{��xK��- &o�pe��"Q(K�=M8向�t<�gz%�
���:�8(B��]� E�&��M4ML'�L�m���@j7����G:^�V�+ߝ�`S�����>��y�sv.�(��5]̣\,��J0��iU����8B�} ơ�'z&��� 6���PE�J�!<�G���m2��<Xq���+��x4���#n(��\p�g����Zr�@|~A�����A�O����moI�p�E-H^S��'��,��RaD)�1M�Eӓ�R}[p2�&�{ e*aMB�&;�ZɄy�!��|5qC԰h�KN7D]b��!�lㆨ���� ���u�b���8^F1��B�7�\i�Hd�$b�n�?�d�����(��X�]�y�(!��?J���hQ�PQB�,��,���Eh��z�(!�D�(!�/J�RԱ�$�U�H3H�?�8���� F8f� Jc�����p ~�ӧ���@T�*|�8d��GҪ���!H=�4��-�Cj���/z����>����'>_���!2�S�4Oxܼ/��2�6���(�f��kH��c�n�;���e�7�� jfPƈN��DFf(eg̛�łc�&�I��7һ�R���dF2��5R����R'�9w/h�`L����# ��J�ô�`�2��&���a�u����{d�n˘�Ebl*�{�����p� �3�D�z�B�cHi���i�|�vP� ;�i���b�H|Ʊ���M�(q����az�P���,ƌHT) w
휕�b���;�� �I��/ˍ�Ή�9��s��v��� ʛ�2 ��-'#�l�a7ݶ��T od�
o��&�DwȘ`6RJ���3qn&��5��U�xT�9�N&��p�;q�/a�Ҟ��k{�s&.x���0������}�T��2v5������mv��햳�M�`k��Va������#+9e�H)���eb��|ɠ��x��0�Nᰐ����( A*�i�cU�p�L�h�� �sI����k'W�C� Z)~��N�q�� ��w���}�;�n{H�ۜ�bw��T�'I�>�|}q!*椼�V���&i����\�$�;\)�p�O|c�9O{]�2w�>�v��e�O���:�&jvjs�E�)�:Qx����B���Wk���6�y�f�I�@HԻнS9�ja�"�EK����h�is�5��Ƹ�� �#���G������gĩ׌b7A^�B3PL��\���5+\�t�zxF�~�DF#j�9<��( � ��[�Y��r���Y��WRԇY��/���n��NC��<�xS������l���������c]�r��Y��� @�p�Z�Y�rtD!H)����r��WC�P�l���>a>I��&U���Ħ���M%%B$RI��. D&�!��0+D�҈0o[��̽
�*�{��+�]�v�n���6Y!i7�f���U1��Z��t2>�vS��B%“�|�Y�E�АU/�ZBժ��hN�I�9�#��it��!!d4�u���>�R�nrb��t]~{%Ԑ2�;��:����/�2kT��+���İu�bF�8����#bS'J썉1X��7�Ԏ��#$��y��F�́�ơvCU�����^Xd��3榆�䘢H�q໹ve :�c�06
!��@�q�e��������鐅��9Z�QL�s��j��=��U�C=�S�{|e�b exF�����H�P���}&��$|&��I�L����ar"H��O�c������@U��$�3�$�O��$n��m��Y,dv��J�k�q��a.Gs�X�dz"N�����͵�]�o��A�׺�Ɨpz@��d4n��Ѕs�����+�k��jKtht�����&�
�|�O�|�Y���!�f�[�c��r��=w��c�ae�z�#�Z���郪K2�%4~c;�f��6B�W5�h�P�E�;��`�]g�kp�tն�d C�`�l=�v�)Lpb�An����S+�3~��f1�!��2�K�b:�v�fùs� ��qd� �.��0�����Q� MX�ZF\� 槰�(*;��^Eo�Ƹ{�����F_z�s2),�t�q���>�M��������!a:��E�Ɋ����O�x�I(W�6����fJ��:�1�BSɼ� ����7܌�0jh��d�b��Mx̦qDm���!��:|;�D��X5b�I��R[_�㶀��X
}|V�|r��L���M?P�|�eF�� �W$7`��+t{�y��y��� `���vq�<7ha�I1=ۀe-ma�;�p���Z�'1�`����]c׾xܼ8�F���H;�U+E�-�4�b����j�]�(;�M�)0���a�z,XEn �-� ����V� !����Q.�8���̷���[����a) � )�3���4/�: Csm�z���"�'�}i^�x6���MK;��041mH�.�Q�����پ�9wZh7^� 惛�����$�c,�;�Ew�P�A" m��k{��O����>�2������ޖ��F�L�wL}[Xw�-C�r X����
~j5ӟ�\w��Dp�ӱ��5*7Q����7���]-��,X�v����
�ݦ��,U9��d#ڂB�؞���w1�K��|���<�����k,omR����&�l��T1b0�L�S50߳Ծ��a��m�Dt�!]-v���6��rr8W}\P���2��� ���5.A���ԆaV�==l��Ft�:B�:g���2��)� �hՀ�4����R}��)�K<��H�&���4Rdj`/��ayH�������[4���R)�Ôa�j�'B ���J��GI���\D�a��@�Z=�4=��6�Ƨ^�6�KCI ���� J�Wi� �SI'8����3Al�L��@ݴ�#|_��TA�/N6��G��&�� X�QJrqv��/ ���b�R�,�����Qʺ����5�'��������>N`�,��Zmdċ��=K7Ytow�0�I����R��H�~P-����= �{F�g�[��<�WD��Lb$�+���s�co�\P��;}]A�_�0�����{A���w�;Ű��-�Ձ�D��{�p����o����`�~2UGtgu���H�hƝ�>��1#3�C�G�������'�_��D��w%���du��4����P
K��u��H~�P�1B�UJaW��p|�uݶ�V������le��UQ(2��1ʼ8ˑ��}��"�P��U��H$dh�Q+"
-@�
��l��;��L��+�����mw�q�6-���w������ k��$6�іCzb:ç�@j4NG��y��$`f�  /�K�] �$�b��F�}��2Z�O�rF�� �x6�փ `FJ03f��4E-h�2�8�2Rd�̑?���Z��)~����:��UR��<3���h�f^��:J�� C$��
S\M���|`)an��AnOG(��{SN��v�T�L3F��J��Qy����K����ƅ�*7����&���4*�a�M��X��d�i4�gNRTL�9��D�k� W�bv�;��A8 �mf�� l�R���ڮp�G��:ZSmUG5���z wѧ��ꕦ� '��-�p��!���*Ǩmi�,��M�ž<�w>�=%dw�C�G)��9HmG�&�ձ�y���)�n�����p�B�Bv���~8�x���>���!Q��h�s��-'a$��q ���p���-7a12�԰�����ZzC2���ɩkoHV� � �UY��m!��q�)E��S������C�ό�&� B��v��b��C���]e��S2-#��\~o^
���1�r�-
�}L�6�������*��Jw)d\х��r���I�}ݼX�/~�f�B�$�?}���F'�
�dD�/�u��9۠_�u$�w� ��\��k�eb�����}1�X� �K�D ��5ㅂ�)�B�9KB)�>�B](n�Z��a!����;8��[��Iy�X���o��\B��t�R�(8�3Q�dI:�"��&V:�E&�6n�XduD��*�C�Ÿ!x�+���ЊT<b�����i� ��1U�vj7�%��}D
�ٌv��]`��8� �+�PLg�:��+0�����&}1���5��TXk����9�����(k��(� d�Y� ��M�#� Aj��n�s�L#��'�����n\P��`�r�`Ӷ���K���<c�+����]2(����g�( ֱ!��� u� �6
�@���g����s���q��?^���^���=��J�e���hh��ɸh��]3�=��#���sC����r�&�w]r��S�?����$�Y�>>v�n(����V�Mķ:��h�"P��~�h�(���& (�����EwA7�d���x�/��X��1 7.ф���^>��m�K�}"�(��f� ؘ��֊\@y�p�����#�͆���Ms����雿)c���#�B��#�}�k8��QjN>�#���vs�Z_3��I�3�d���s:4�}��;ǣg�
l�=q}c3�����~xcIب�mv����gNG�huBA��y�鬓f�nW9�q����P�d9i�2�� ���Fe�(;�kLE���������}��n����W
�7��� W�r?Q���ZD ,H��Xڭ�7��d�Ǔ��E�h�"�Ř��ݔ�'!J
��!u��v' J�%�%tIn$�3�K��%d�-'�%,5��y��Iޓ �M��:�j: D���E��T��� ��؝�6,6q㖩%�m�S ��W�"$yғ�<��ǰ��nR��c�����Ƙ�JXM_�-�a@4����퇳UcS�;�t�s��j+��c}�R�4���� t"���W(Hc�i�N�^�� zò��G!�<��&F�4�v*޹I[6�/U܋[X�*E�̦�ä(.d��5��Dm��h"z&?.�X�
�ƙ��M�@ԛAo�8̏:o��/��:�=/:6�� �
1�:�� ��7MTn<�Y�_Rn�]31�t��)s�/���>���}c�h�R�EƗ �""�?�E vU��9y�荴�x3*����2�b(Լl�,�@1�x������a�8���`��7�T�7o�ř����c��Ŋv��1c}q��O�x �yo�7'��8�˰��)�� �1�)0����:�3�%Ɛ��É��������!�5_�z���]Qnq)���
<�~
���W�Fx�z�M�$�>�&uL�?��&�i,+jϐ#\#����d�e��Y>$����~��
��%�
iN�`,��v(�l��#d��XcE�ce��F 4W6���]�9�T��ް��>_�ҭ���̛1��h$_���F��7n��\x����S�,�g L��@���v4B 'U�謓o��w�6���@ZMH���u�>�� �tA�?o8�Okn��P�ÑB�|�8���"�H��ߏT\ayp|����W���<��wj�tǍP�Σ��#��Q>_S<��hAD�����~k�������Z��t ����o-�b��
�~v~kA�i����\���8�~��t��CT��4����̽�M0�_cih�� v>He�1{��j�����/�)��M�4ǐ�*.�v qC<����3�F_ߋyF� 4z�)���I-zC��9�R�R'1�@? \�`J��,�)Eq�Ƒ�D�6��v)T�l�o��l|<�t�d������|��A�`�1�(��Ô[P�h"�3�8 ��;���a��F_Hc�9��W-���g�?�q����OX)"h3�M�oV2�P�lD�\1ѭ�>��Yې0)2+�Peʛ��~�X�b$ �rz������<\\\\G�U~�������o��j�N�ۋ�?/��%p�ɟ%�z�Ѽu���=x8V����f�t���o�)x����!���������mzIi� ����zm��^ֿI��"�n}C� �vx0� �����䐅��X����x<<��x�;<�� ��_n�����������þ��/w�o]��O�_<?m�]l��������#ճ����o��?|qW�ȷ���]p��)>�A��ں��޾�g9��޾����9*���w�? O�O[(�3����j[—5�#�?��<x�\�w��}w�?|���������`;dG�M{���x�?;���m{!�m:r�W��f�ƭ���U�9s� ì�f|���F����)���<����O%��Ԟ��W9�i��<d��2���:��o��6���� ������������ܤ��z��Q���c2��zp3��@~���w���-���������7��O�����i �:}ξ�v�8����������@�;i�����t�p�}�����]5M��e���5�b��V�rF��F���VO�|-<��8D��&�[�Z\n�a����~��|���r����==g�/�����SG���vM����8��.�Մ�Z#�VGvYwǜ��w���]����&=d����S��n�~�~�X�:���(�/I�*�:���v�ݬ3c��pkɆ�5��$3�R�5���qN�f�F��k��H�������M� @A�z��[� �"K7���Zn4�r�V���Ʀ)<�Rb4τ26#ZES���}.��n?�=�"5ҽ�"[�(�"Ki�]���g�v &��x􍠯�����mz�?��S��������������쿊�����}� �ӜmV��������֑�`���=�;���go͆8j+ҵ݉��Rk�q��4M ݮ_��F��&��R���hf���.%$;��Bm�k4Sb��t+Mj7zg���噡��Fm��P��R����)ψ�X�M�].� !�������4�Vp.$�T�T ΩьS#�UBr����hc8!�A\ _�XH���4R��� �8 �E�W�O�vw���_�ۜJ����d�����_�����r�e��n��������ˋǧ�!�.�һ�������iw���q��O_�p��� �o߁ Uo�qqg
Y���Ļڈ�����xF�u��`|�&��a����Z�BX��m�X~���ҿdϟ���_��MZ �ƒ�-v��gy~8��κ�N�a��밚[���/a�� �]`�hr��쨙���A�e*>H���w��V��ON��!�e��Q��n�����2�̓72:ѣ�m�K];o���n*�]����-8���y���N0ĭ�s��۝�����{?=�'p[=���`�o�_eK ��5q�6��,d��<F*40/�`�Ԕ�u]Z"��D[���O�A]zw�Dg�� ٰ���g*7D7_�\j��������棡�Ƣ�)�:fK/�g�Zm�s��m������3'�ؐ�����G+(�����(;;t��j�/�r��kA��m~]��ޣ.& lǐ᠗� ��)d�C�=5�i���!*IΗHvwA$"��{I5���jt�Y ��2�ې-w{�E
�j{��k������7����&+�,�ͷ�MA:gݯ޶ 5�ö���]� p���� ����vW��m�0fG��|Ǝ��`�}�?|L��l{{���;=ҥ1��!:5J�Z�dž+�h��l�I�¤ʧ Q�K5�r� 9M|{�P�sڊ2x�mSL͟ ��s#�ެ:I�T��<a�F��G\��;�%"M�U�/H��š@x� �#�lP[�!4X��6w{�*�{�g�z sCO��Ù"8��~�Eٙ$�C��>�����=�@#Á���{닦��M ��]��۞��}�������m���-3�h�����/ٶ{$������t8 � ���T�Ruw�%��X�E]t�+��b=VWu����=l�
�~p��VΪd���d_b���c��-�A���ܤ��ߦ�������"�������"�+�.�G�&/�9bϚ�3?T/x��Ɯ�s����l���F�)m�~��f���n9��dw� 6�� ƃv`v��v�y��nHw�"���s>�y��/n���ϒm�q�o|�?<��n�|�Ɋ��w������a���s�t����\�;f�FԿ7-- R�:=�;�N9����!�," �"�@��q�}��}9� �]Կ@�3wg��[�L��=�B�f�� ��?� ��D��!*��(� ���{|�ӧ̓�1���;��2\۾��VYE�3rK:A5���7p�0bJo�~t�9�q�y�ڽ�P뛩6j� J{>�������]]��n�K��9�;������Μ��n&���B欬�mP�z*�>�?8w�*�ųgI>ޡBƙ�5���⹈�w!��`���I,���@�s/�d���~x��N���w��ٯo��pK�8W�J��5t��ƽG�5��>;d��g��a�5l[�����DL�O�_U0Y�؇��b�u,f��/��޻/.���yۨ� ����q/ҧ,��ͮ�v�^p�~�����j�|�` ƻ��s�=�mr�����?n?=@>�lF�x)vtS���l@�(`������r��[�EW~ǔK�/0_Ҕ�9TX��=7�_�7�s�s��`~M����czp[����.?���"��'��_K�|s�1{z���~��~�:
�u��`]���^�?S��� �[��X���9I~ڴhT��u�0J�y�B-���J����s���i��in\�s�os\=���|�Å�������ӧ
k�2��f9�tX��g�m�2^'(���W�|�}�y��F�I�4{_��8����oAw�Y������9���.�~���A.�y�:�����xb���#T�����
9�or�� ��<��GV�l,ne�jP�Ml4�'�KpJ����|x ��Ž�/��0i��*OO���R�#���� 2E?O�����b6�:ꗱGp����@~�ih��}���'�-�Sj����ǧ�������ۧ{������2~��O�S�m�˞���K�7����wA_���;�@���C�E�� C�T�J�V�Cv[��D"���I��q�HF����fG 'k*\�����p�3F�T���F� �|�Q<5�S��]�O������4R�u�<S��T�FI]_�R �E�7�XJ�%;�5 ��ZhA�f3�!\n(�P��9���%\l�}��M:����)�7|K���1cڡ�w%����EZ����j��!����>,H~�b�uO �e+B,�k� �~�-��p�,@&�%����@�Nk?��#nTb�pծ �c����Н���R���1ĀRg�zx��_ F��j�ō�JX��~��QN ��f�����\�W�����^���ʟ�_�N"�|�=��)m�x5��H
�p�ל�2G�����3��^p�����_l s��̭�;�g�m~N7ʭ|���y�_��KR� �v��ƵDJtVEy�k��Nr't�����Y>
.�|�Jm^~����Z̚�g����wT�a��oxNI$��5wTCVg΍b���n.��"`6�n�̋��@�Y��(m�F�͂o�,Lڠ�B�F�f�j)mj;�6���f
�-賩εX�w˶c�u�nT�����N��n��k2���A<%)���d���-��Q�jN����T��q.�£c��l���f���SI%aTWxizo���6��$2�U9_r���0. k���g�P�z&������\�s(�t��I�шRFV������9�5`H��S*�r����SY|�f%7��,)��Olh��)`�[��)���V�η)h/���QdY�QN��qh�.Ƒ� Y�|���v�"����&�g~��[�Z���W� /�N�%PDh+��F�|��Yq3�eZB�EI���n�-�d'C��8v�F�׹�Sm�qx�N*�=��s�C�y�R�l���^�|����6[�����<%@���0|��g���7p�<�4-p6<��@f�V��6l]�n�e9�F�f�ɍ)��.É��Ǎ��
7#���8���jmq�kkfh~� �Z�������,�5�(1z {��6��襙��/�^�_㩡a=;�l��#cu�MՆ�en���{o������i��N�że;����yn���x�Nd�赦se�R6j"��s47��X��|�S��@K��lQ���ܵ��v�nWP1/e��.%VYhgx1��LK�gٲ�k?�U��w�[�{��޻{��GS�7�>}� ��jq��Xo����L� 뒕���*Kz� �E�gf=��qx��;h�� ��:��ܶp�#�x0��z�H�8���|�)����4�M���*�; ��p# ��ᛊ�p��6���F*v@9r�&#������j�l��x�j�N+g#՛d��Աv�7�HL��ڵ;W�Q~}��D菳䩂���Ms�R-��� m�Öb3�����yG��kU�.kC�gLh�{Ӛ�5�5�Z3[a��0�P��F�-8 ��Y@��ўFk?7�bp�����7"^JN���ß��o$���Q�n���u��]Zȗ��w�Pz�zCK~��P���� �^ *�f��ʦ���v�N�Q���8iA��<EKJ6������6�K�uc���80�����re�1��2��G
�d�ݾwsA��؝�p+J1�W�h��o�;�A6iI;;o�an'ov��nv~&�������L���|X���[Fq�֐Av�m�"��>�����?�S���Js��B�1�i����8J
�,���%˭�Cz�i=���<��K�j��i� �SҦ�j�F9�<' �T9�N�� ��"� �����S��B��h��'�i.���a��“�iQ�R7�LxmE���v�͹u�=��m �h��̂�&��_��K��J:��V�,-�)��k� m&������������f�i���f[�w֚���j��O�ϒo�3�ğ��+�AfV�8�[+�o�s�v��nO�nt{q�}��:[��=�;^�;�-�>�{��*�����l��~�d����S�%��47�sĒ�t�4~�J�����?���<p����%|ޗg4�-njs�w����YT`��b���r0w97��FV�]��Vm�=�I�ፒP��|r�a�o�=$
\�����c�`�V�pw6օ��#[���1�,eJ(��R�K�e�l�[B.��bk��;���X-��l�)L ��l+���)ߒ���t�������(.�J�F��<\�.�����ݿ� �!�?���w��������������t}q����������߸v �Z�����?|�����f�^�����ݻ��﾿����
��y�����}���/����&uZ���o�_�����w���� � ���ȇ�����w��k�4\�@E��~�����s~Yoi��[�[~@[^�������E�j��Lg�����KхkYN�,����y�����jd����ɿ�Ӈ��o���ӷ�"gX�ܕm����o>v?�׵]�:kl���O������֢cz��#c�7\\����p��������_� �6D7x{���>�Л�f��oz��r����f<TEi>�j\�F.�������#��r�xc4� ���]OG$o_��O�����w���(������U����������r(�f��@��j|�l��,қ�h�o������s\Leg��f�(����Ö�9��B��Я�}�-ߊ�ԸG9�~h�1T���K�p�n�nAVVǯ6�։n�{>����M5y�.�P�J�j�)���7����:��hә��}�/�l��#ޒ������z#�d���贌�K����jJ�.�b7�-Q�}^����1��YcT��������NGŢg�^Ɇ]vɝ��T�D���a٧���Aݯ�����5�|s�(����-\N�j��d&�����>`�b�*����X��>���].ޣ�B�+dkviv��Vr�ߺߺ�TBk����X%�����yҿ�N�c�]A˟�nע#8)��7�m��hg[��}�|_�����%��&������5���I�����b���]C����k�1luu !oZL9��Q`�
u �����5�M����w���`NI|��+W��#�H �G�PR����x�� �����z�����Å�r畹�iR��?C�ix�J�?�����-����]P>��W��t@;klGT9s�$���/h�ͷM��3V��t_�y[m"��74ڮ��?��r�@yhk[������A�������|Ғ�J�\��A��w� ��Q]V���)w:D��#���m;���U+����wR�� ���v'�wv��+b� 3 Z���R�������I�1b���5>�As�F���:�K[ }��.t��?�L�$d>`Q��y����8*|W�<Z�?������3�k-�z��*��,\��!kaX�X$@9h��R��>�]���?Ks[%LY�s{U�J�������u9G�z*"2���|hYM�n�?-;̭xsY;��Al�n$���c�Q �J�;I�&�M��m�0G���F���`�V�-!m��j �����-5��t��X��I ^�<����Q���)ؠM#xS�7��pkSs�� �*����e�jϧ_�.U�5�
A��b(&֕�!S���~[y�}X�Ru�T��_#�n�C����w�v�,;3-+�(��o�8�z���grQ6���m�mo�)����Xl>�A���`ī�Byl��� �8Kd�_ߴp��QM�{f-�7�] �?̿d�/B��e�#]��w}񘖷�<�K�+)*�7�.��o�mS]+ۮt+�3mn�'��b���zR��ɴ�����Z�$��)kk�SN��t�����\Y1f������O�os��1V������o��w��������4���}A�Vbl��E��@T���%n#���n�V���V��]�qQ���}ߑ��5u��8��LuuI�������C������u�Fk���L`�'q� F�����u���3rQ��B)z6�{qS�;�4�����"6�ȯQgf�( C��{M�CS75!��nR����d���5Wp�9�i��*�������ik� ��"����j�BT�B ����֥�m�+�^�+:sK_�6u:����ʣGxӎxs=m��j.:b�U ��r������;b�&8�(�j��ɢhk��y�L�m��ޟ��[�y0u6����ZN��V����S�\�W����A��qRyI��%i�{���c
}�m�M?ɇ��&3��$�͍)eY]=��Dgٷ-[�Դ�K�[{�v�0��r����^\��zV��n���\�ng�%k�U���N���˾ i#M痲�������y��^ۅ��闼O\�f�/�&��i^b���uvV�Kl[��L=w�� ]bl�%'SlX�n�J��������V�a�[�-\޴Յ˛�j��PgH�m<o6�H�v��f�����kMzp��_�w��P�+n�ct9 -c_����x���=��W�"�Z@��r�����&��' �9�z_��j�\ɶc���<�5�JSt�����߿^������n�7���0D�}���g.��;���궯����X#K�]T����c�Y��iM3� ���t-��]�ڿ߷hU�_�Mi��qs��F�ky�\�k�wC�ZW��ړ*^��g[x]�W�/�:{=j���C��s�9\��!ݻ��hGc�;���(*�IK��\0�~��M*�{㰆D�kkz���뗸������]�j�kz՚̫m2й�R\�B&������ޘڿI��b8�����wܥ�j����h8��=-If������n%��V��r�c1.7 �.E��c�POyu<ו%SM1�ݨ�w�Fս;G}q7�X�]�� q��k��]�;nT(A�f�x�o�Q3>�|�+6�X���4���*�m�(޼���,�G�#+��k�}Q��)5Tc�i�s��-xɾ����e�XQX0*�5�n�ʷy�G�o.�6�J�B�"�P��k ���-��=���]�n��κ3���ω��8=J];���?����_]]|�ͿyN$!�LO����C�l�.S�6�--�������k�����κ�?�h������p������������&�9gu����g9����W������67��_^�Y�n��wW�';�i}�kyֳ����M����QkN�MH�/ YM��R��R�Z��$����K�����iK�d�0$Q����8P�MB�|P3"���P�*�*WT �0�I�����`���rHI�������&Q��'���T$ԬNV�r�P����I�� f)I�*��Zq"tB�*arʼn��=so�?�h^tȉe����9%"��K�?k�E�^mH��Kɬ� �~SԊSmK\�5Wx���|�*p�����`��R���AW�mW��vX2�bʪ��G̴ 0�I�� r�ۗ��5rড8���L�Sk��v����ÉZFJ��Z��� WC�*?b��b�3��g�]�(g�[>9�•0cV+�$OĊ1 Py�i�u�cܖo������0�iI��C�g��ϸ��[1�Z�0)YRl���B����p͑Y쎶�r�7��օN( �nD�V��D�(e ���V�M���N���Z��i%@�a+��2 �+�H"V��#NiBŊY�0�*�/��`OP����:�+�,�^ ��b�L�$$qh�_�����Gr����4�+�$ EJ��O�% ������Qȭ2
Ƣ�I�Jsx�+��T����W� �� W ]7C|eL���I�x�ZY!���$|e��R� lh��e�P��P�p�2�%le�䯌����dVu����na-p�� �VV�:@Q�]�0!pHܒ@9:���6����_��e8l�ݤ@r��(�p�*�p)��\ꦘ2�]Q&�����0eZ%��(�0��3�>�O��MtʅJ�\QA�~� ^�/��T��n��0 E���.���T�g�,L;�lt����iY��T;�nSP��$�N�ZQ�u|E�T�[��֛4&��RAU�$�q�J+8m��|E���C��nM����h_1%�k�gJZ��%D�̈�e-��I�Z1�aj����?��d �N�$sA�� �@��`��fd̸�3.t��Y�5M� ��b
��� p��\�|�Z1axbWLh�$Lh�2�@�BQؘ�7Ɍ�dR#@l��b������"� �eMVLs�N�g���֭%�

N�ҝ�%Kt�N8�q�F��?L�10�����Wm� b*�1�-������5419�+���O�p����f�.�℉��/G�8�,a
�T�k�k�� P�'Һ�R�Rs�"B+�bV�^�8c�����lyyD���a�|�����q�s
ԉs
�9�@�����٤��p�(�"+.@�`+.�8�R��R��R��ҝ���D���: ~�D��*�b��@O��ʚ�ē��Z����V����h����[�2�1G��1���Z�g �1?�,n�N_��g,�2���1�/���` �Erk@8���Z B�A�xf(�`p�Q�5�ְ�a�+)��Ś �~�ơ$�oT�,0�_j%8t�ΐ�j����EcVB��)�����N%��=����Oa�@��yÉ"�����@'p~AVŸv��<-4�@nh6Ԭ�2�=W�&�i�(x�%�Z -��Y�") �v���Ich�B���1�RPJ Ђ%e�d���ʭ��#�]�ʧ�<�r�@s��89����r�A'P��A� WOl�x)��{$�����ZC*�S
$�@�$�t%�>!W���U�U)�1 <^�\�It~�����Œ; Ir'"I�d$ɽ�$���
X%lAta��� RR�JJ�aWR*�?k��֟
Dj%����D#�H�G�8q�,�[��� �R)X4�������K)@ɒJ��.&�a���(�J�WR�$� �@$�ҥ��W��F��$T��4�%\85WZ�BZ��J�O$���� �r�6 Л��J��,^Bé�0��"�TQ�k+�%E���@���<�)�VP��? �#�M�|9�Hh�͕bF�P�R��Į�,�+�q�-o �-�Źm��|����F$���d��dpv�$�A�$N�+��3_����J*�Y)E���:{��F9��p�P)�)ŝ�L)Н)�J)�Ƶx�`+(Љ0@e�ӓ �D��y���Z�D�Rj�9[me�I��7�X7��éR� c
 ��>lU|Q��QG��Z�JǙ�?+�4�gi�8P���B�s��:d�^#(~�첕�N�Թ�MSM��A�Ur�A�+�5�%`�i&����h��*Ց�pO�5w����@�������ю*q������kt����o�tTKᶑ����Nu�R�^�":��E�'��J ��Z�n��b$��"(P���VZ3е������&�ᯁ�x��m���v]i�����$Е� ��������h C~okۅ]�5DX�����f�˷�gm(U�G&��&3���rR��$�(�9l J7Ȇ�{s�APB>+ô� 0���$~Q��
��cF���P����V���Ym 7�lc�p��v����&#���Q҃q\je�;�FR�s�$�<�� � ~� 0�� �k�zw�A�X��C�x~���Nf�V�)� |�t)05h��ƨ���v����[>��ߌ�nL�+�Dx
�0+�ҕ�`�^�q��XH�ӊ-�ӂ&��uj�u���:��r
��KP�ܙo`'�(��X*Mb��.�9�m��i�_D����V�K ;ş�dZV�]A!W0�����?m����"��~B��J�O �P�� V��t��Y��N�����AX�/�v�� xX��)K��kV�[7�NѵJ��i�Ӹ-H6\��r��M�IE"Y��
! �2���?kcv:����� �Y J/<��W�C��oE�[���vd�u��c�V��VJ� l x
�7@�(ء�8�n�t�Gk�3z�{��u�5P���M�y w �Z��\ �` %�{��E���(���r�@�Ƃ���1��)o��_��MP���G)���[���Zw�p���U�K 3���1J��&�o�^�t1�-2��&���������5� 3�mE� T�{�Q�dJ�4bJ�b���A}Ƞ��ˎ��`�#*7l��̡�V�5c[��U���v#1��Qg8�j�Np��07��Ϣe~�`w���x��|P�J�S����7�/mA(t�JJ�3�R���&�R '�R*��PPMU�E����o�z����8-�� �Xmʨ��zX\8-��B���O���u����ҏw�Q0��Z��Z@��'��� (�
���'@Q?
�=̧r���_��(U�y'F�ևׯέ�:�SXvXFj�ۀŃ�X �&���~��/m�N�q�f&�2Z����M�v�`j��R+�ɿ�͉wdP��
@��6�-����Xkr�����j��t0 ��3 0� ���~;��BnG=)cҿbNi� �)��X��7��s2 ���q�2fLe�d�o�w^/��θsDk����{�2e��1� D�3$��"(���&9�
*�k��:� l�`(��L����f��~�ss�s���8���������S�rm�qS���ϋޱ�@Ć���둿h�5������T��^����/ʀ��ى2�ߔY�g�)`�|NAR�00��I����Ǿ�M�#�'��8�u�kp�P!٪lUy1�d�ߑr�vY� ���`���0�`ms�p���Am�ƍGP�s���
FHnѦ� w�9S�#��0��U�+CKf�� ���E��u �d�_؜�����?i����ra1�d��h+�6Γh�[n�f�7յ߽\G'�gE �Ԧ|d`���ޟ��y�!i��r��Ww-���@����§؃F|�rNE@�Cў�`!�J*�� �N7(���7����t����29����� ����<��C`<a|d'0֪�9�h�ݘ��+�j�P�0��$�OZǞ(,�ԩa�A�p"����̏C�������j����(�N�%�*|��X�X��ȏ�hfnE㝹ӌ����,U����6�|��ؒX��x���:�<E�`h��� ��)�Xgy�ӷ�BXf��ڲPa�0Sb�Fn&�Uw��"5 ��l(��T�%�g��^׆��ȭx�7��r�Mk��@��`0tA���б�Z�zL%A�DZ����6��6�q أ�7�ТR����ވc�����eVN�h^w!��+1Q!0/|0�[,gE�K^`� �0&q�"7�N�b�B����g�y@8S 0�K�eGm? �h=8�}C-�^FKN]\�J���]j���S������F�yB&(��༂&⊌7!Wd�� ��s�����.�x����6���-&+��yfZ� �npZKJ����:4Ld@�.x��{�=� 0����"�3�+��I�'�
���U��Rl/��jW�<ð�0 vbYXT�@.J��ڕ �d�W\i
*Õ��������`���J�qGn�x�$5%U��`RF����B���5<�d� �^qD�Y��#]�F�(wI/�wċ��b����6�V0�3 %u�<��s��ʩ]%p{ �d|�y�~…x��� ���σ��x�I���E� F��k{9Mr\� �˓�;��j6��,��C��q��*���13|��Ul�v����}��m�k���."c<�e������z�G���i��@�XmN��I��돱��jsxi�^�Z��~}��}�>|{n܇:~����S��wח�~���O�S�7��]W�u_�vg��zwL~�nn�w縥�����G��y]���o�����2��TUXٔ�IdY�����e�W�#݉������>x"{U�U�VƘ'���W�f����j6S�v�����.�#B�b��>V�f��g��v��z�����y|��|A��b�_Ů'�񰴍�!T��- ��&��m���j��?�Ǐ�%���ZXp��z��Fk�Z��W�����'����}�3���w�K���tʞ��/r{w�� ���;U��������Lk���Q���;^��_� v���7S�M�{�n�޲�?{ �`,�n�:������]}�"�D
x��Wmo�6�W�W��b�#E�e؀n�K�nF�,�#y��J�@Rv�"�}�^,;�]�l�d�w�����N���$J���/#�g��D��_�/#��W��P�_?��a�-Se)�x��I�Ʃ?�F�_��j��Y��
�����U۪�=P�/����<w�y��UmM�7X���jPk!�Q<u������㣬����0oϯ��Ek��Η�֝w�k�Loj,X<�-PQ8J �K%+�-���c��d��厯��%���<x�^�Rq�
Է#|��UUl��v�|*g������q�{��Q����m��_�^xAl����i�)iz*l�E�S��;���Խ)�_�to�䙡�{���V����R�+��C��S��?]�>�o��h��3�0��W\�n�z�g!y����K��⦷�����N����zk�-��9�?� 34��H�""t��^��LT���;dL~t&�(ְ1��I���A a EBѮ%��V����Db�M�|���h(�����}Zm>V9�.>�bXs�SkO7d� ��L���뻽�vV��ߗ��e{k�m�s�����,$o��Q�d��,'Ο��͉���.y�|��+; h��uS��0����M���5��-��f�w���Y��Bfz�R��%�4"��{��r��� S�?h�z[� ��)�f�jm�۶_� �nԅ5���bJZR�l_�A-�_'����mn��0�v^��Qw���]���ߞwu���2�Iv�
�F�t�v�q���9|���flT�6wK- ÷���0�o3�Uy2|mJr�n �T�8��r�!��"S�7o�UjlUYQ���w��t#�I�Ba��름GA���XBUu��/z)T��(q'�Nqd >�-�>�.��q��$��C��a4�(b$ �|��a��y0 �M&I�AO�+Z!�v��[v��.�M�ӫ��4���N�49���'�lB'f4��(fa�&�lʢY�X�4��4�q��s:gG�&�k��C'�ᇒ}��/;6����z����Ku�$�h��gUz:?�:�5�}�鯦e/vzi�î��k�]
x���Mk�@ �{���q7��۔����K ��zh�g��XvG'�俗�7!І�mF��WS������T\_��n/ّ(m/<�q�?—������@򝆁 |��":SXT�4x4�0�����V�8h�eto��a]C�}��}`�6��]��<ޝEutT�|�4�U�G������C�^�>XK�R�$tO.�1��l�Ņ�Y�Y�yJ�)B�̙Q��l
 K��r��Q�{��8"�Ì��}y�fF�f�&gO�m��� jt�T� hr- x��,�:��eqw- x��ck�#����u�����Y��� pʷ�������Xɒj ��LV��`T@��nuƱ�:�B~]0/�]��gI/a�H�G�7�Q��3m p1N����)Q3�*�օ�<|�S4I�E��t=��Z/|�#���"Y���B�#���|�س��͡��_�s4|ݣ�������U�`t��שi���do�릉ŎON��{�y(�@�H�
x�+)JMU0�d040031Q�/�KL�I�+��a�;�[���L�P^�W��{��F��
x��[ms��g��}Hx6EJ�˴���cwZ��/�M��T��H�8��H1��~������W%Y�+5&��t,��> ��BM�p�O�_�a<��WO����Q�{���<娏������^�(��y��Kx���,�� E�0� ,�}9ڏ`PX.����leFF��D�͹�� �%3�kcRh&�
f(Q;�V�X�ܚqy{l1��X��ٌvvr�f�O�]���G����,W���'*˙fVis�E�ƍ����q��T(�5_0˕�{��w;Y�� �M�G}���9��]��|L�B���;�����(!0�!A���]�(VV#8��r4�x0�|��^�� �����g��0]Y4_7[՚���6N=�OiNL=T
���a�%d�)�� UB�% �s$�/x� ĕ�����r �2�!$
�a��$n�K��qw2�`��@�yzp�vgs5�c �p����tJ�#�J.Pr�1aZX/�j�`�@���)B�M�4M�
x����a� ��K��lFM^�پxy��#��9n V�i;y9���@��@F���@20�����ߧ!�J 138�%�s�ʙ����ˑ�:��y�$b�q��9�x�q�o�U1������<!- ��f�
�V �+��ƴ��9� �[� f`ڒ~ �f�0��,���)R�LhX��g8�TN�A���Uþ��2�f�ML��`\��@�+L��� A K�n
re�����k�g�_�����#"G�ԥ��=LS$�tS��ƪ�/
J���)ŐV
Iòv���[��|�QH�h��R�CoX=/� B�a�#������`������oΛ%�v���@�;����b���g\�6��Q&�?4Ht\�����e?��iΤ󜷄¥G�.M/Eq \��3�� �@���VH8y���F��f�k̒D��l9x��[�k�x=��ò�m9�;�����3��3�[)�T�zF�4p��Q�$�wd�~d?.����zK�[������t���i:4�=nK���?M����4ݏ�����i��T����WB�P��e��y�,o�3�9�,L�.gB���FC�?ƪ�T�be�(�\� l}:�<!OA�Xr�-yF�G'$z2�Ɂ�@�}pq�)H���p�U��%�"� " ��R;sE@?�*f>:�h����±/��R*Ki�����W�
�Q'�y^,ǚ"P��!�g�����qR��6�fc;Z�������f�A�l�[��[�x��L���S��A��_|�١�V��cxmRN9 :ߣ\�ʶZ��pO��3�X2pc4B#}� w�,�ѯ?\�:31�n��*`�T�?�2p��џ���ܖ��!�_�ӭG4��zx��F�J��A����k�5� ��/N�U�rZܢ��� iﱈU��ũjB2�%z
t�W����*A/�(EA��P��^1e�ḷ��Y�|�+3n��6�;��v�;�ϕ��I��%˃�\RF��c�_>u�z�Do�eTj]jo��I������`�D�g�D^^I���e֦�R`;�T
�%�Md� Z�jD->薈 ����̦b�]/e�2�]�έ���;��$)��p�t�/]~���ԿD��a�A݊��υ������ym��E�j��Ml�
�%< J�=��N8^ �w�%m�v��#���Or�7:�'��t����^�jO�s�� �H�ͦF<�Lh�|�ft2n����9"jL����ocV�0'����5�����a��a�U�2��+�ojplBp<��� EN/X�Z��
Z�٪�tl
�����}��n����q���*�k~-ؾ!A������Ň��ڶ�>O��:%�zZ���\5y��mq���&��q9|7��P��������pd:�#���� Y�qv�J��2��2�K˸���!��42J�J�R0A6�� 1q�)���<� n�4 ����^N�)�t�h�g��+4�.U�����!]�Jò<9�3��s�tz��@�Ȩ��H�n/r���)V�5 ��(��.���V5jjM_c��G�9��W?�\cL�˕�M�|���-Е�
�D��*dr銋��o��"w�Ph��@ g_�hI�fOΥ�Ȓ �=�2y��AX�o�?p�m���+�(�2k��[ �ЕX��������p�Z�56����-N`m���%_u��ө���� ��]e0�� ��>�M�����>�����:.��Ē��L{c�i[ߞv���"�\�i�1+ �TM�������g`���@f����/�qe*�[]H��ڛY�Wd�Zm�g�x�<i|S�|}�L�񤽿�{:x' ��A�O� �cxl}aݽ���P�I����sP�Ô���Q��_���l9�� ��g�A$�xJXNN6�F ��هI�����:-Ȋ�6�\�(��d�+RE��דE)��3�;Y����q�dq�O>��������(Gq�kLQӛ�Q���r�������γ�#�s�)?6��@�5'oitK�]}t��Ǟ�b&��No~S»T��دu�T.)W.�!7��F��s�.��-�U�TR�'�d.�&k\ob�b� �2��hAxo��}��e����#$��e}u����c���~U���϶���|���!�]Fl�:k�*������_o�m3_7�<H� cv=�����ṩ?�u��S��S�fr����]������^��^ұ"����R�[tǨ]�v�+��A.yz/��7E|k�S��k,t�̓3��U�c/�}�5��|b���]nx��:��Z��S0j�������[�h��Ԡ;��fhz�O������2�^̽7qC�O�Ľ��w7qx�x�M���1�����7o��'c\Z2���Z��I������۷����B�fV.�h:�x�� ��>>�Nd�S��L��B����膧�~o����f�(Cik�h������Q�ٚ�CG�mc�쵵��H�HxW�����&��$�S3X~�Q~�� YI��<���kt����6|�9 �Ak���' �}~\Y�U�\Y�jM�@����;ɤ�1�&�S4�+nh>8�M�˼�N�~��WY�EU��a�w�����7Z� �ĭM��IoYdk�;�ɵ�ݷ6��8�Z�Y��Zp&���/�
(
x�M��J�@E}�W\�Є���RhA�i|��f���솝 ZJ�]����0Ý3�Ni}����&����`z�V%a`� ��!-!.��P ��׀����'Ú2�p̢<dz%ńN<i�w���8˯ ���gp��ƨGAI��087^�?���U�C�M�
�5����~p1���"} :r|=���G���@����I�]��eYD��z����"�/�W֔�(J�F�b��)$��� �`[�/ed�%�9���o��[ʬo�UU��7�=]�<9��3��"��߱�6e1��&itN����3
x����$������+:����� �Qr|sJ�)�撲�-�D��6g��==�)��;�G��zf��epw�
��L$�BX>�3�)F����o.������E6��o�\��ٿ?��x��~�.��|�ʟ���̋��qc�}�]^d���9�������b����@�ǧc���p����姌���ϋ]�ȉ`>����6�'��~~:�?��s�^��/?��~�W@7ϻ�q������7uK{8,>�C劉���x�t<lw���C�͛�|w<|�v��/���]�|���f�燇�����������H��C~|>���%�D�!�}8�X��1��?|�<b�(=1"��|��~�6Z�������NH:Z4���z~�?�?owG�E��T�3p�PR|X�>��GÞ'Â)��Ib�~�s~8� �?�������?~2��[�8�+�l��!ٵ��I��:�q����u~��tO��*�>D'5��*��xX��Mv�CO>�K�������p�_�lΏ���o�~��HFdž�Ց�ic�]����"���ď�����ܽ_�->nWQj�����n�������BHT
؀/��9��2��-=@��>|������_]1<���~�q�Y��ƛH4�x�o�~<�?v�� ���c�v�9���{~H�L�.�mIx~\/���2O�U^r�F�Q�{8�Dɒ���@����"ɵ1#bQ���O��c� ��\-��E��Ň|��|�~�|���6�JO��7��q�s���|�2N(��Ż��~�����ſ=?\=�W?�o�bݞ��c�1����(@��~ݰ>&Bd 5 ���@'�7�P ')3B�p|,.�@-d��S#,m�m ��9����E�����z�nP�i�]�|e��f���O-H����~�K�o���"�R���a�X��m��d��t*J"
8���:X��� z�+�^<<�M�ڀ�/uE�],r`�/1�^i'�����+�����/__ԏ$W��ϭ>M�2�[d���&�lw[��ٸR�����lm\��$��~\���j�p,:78^s�1�
��B�R� �M� �=�FP@2AO�.���3��`�2��H��hT�_����I���������eHE���2� :���1?,\}ՠ<�D�Mi�.�k'�MJ�@��S��@#� )&$��Q�8�,�XIB��X �)�i��R!A8UR *�Fsť⊋��U�u[��4���nZ��RS��
R�qM�����j��/�{�� }����@+�&�
Q8 3��'�
�ˌMBaN�ރ�+Me�&��J@�Sz`�A1�+H�S9���S9���n*K5�T��yuO�f*��$Mer�h���ZP�T�x��\0�%�j*����r���r���1��u�Š� +tB��:)ڡD��{��ete���ʐ21M��%ڡTL�WK@�zzL�T�R�j�ӣ�j������ k3����y�h�1:�����"�ךʌ�i�r (}*C�i\�
R�Tz�T}����b��EΫx&�I\D�|���%.J@�2�*qQAJ���O��ʁv�F;D�i���I��<#B��v½� p�'��@��d��Zwk#�u�6J((A�Syr�'1Q8 ��,N�z�s���gt
�YJW��c���
R��<_]L�I,O ����o�ʈ���FO���n��M�zX��m"���E 1�z)A�S���M�^�p��YV����+��4���^��4ꥂ��^�U������ۇ�*�ݭ����C��Q(�~�'���9�c�u5#��q���i�}a�u������Z�U6*3��%�9aM좰º�G]p�7T
UpQ(Dc��l���Co*4B@�" �,���qhQ��ļr �}�H���Q�>_� iڡ�Z1��6�G�G��~��u�0�=^P��g��“g�E ���|����1J��nmc�I�~��� 2�K3�O+a����>��O�L��S�����c<�R��8����L�G�&+T�'�$�w꺼��A^CGۛ]'����Z�CexB%U�j L���i *x�� ��I�~\�~4�$�\I��,�}!t��{���,��7z��
_pP�ur]-�3_C�P��������pp%n^2��x�ѧ����7�(���Q���B`�>%�ԩȚ8�@�i
G&���N��2��{�
@�N ���c��
R�#1˔7~�NLջ���?w����h5n��)�Qr��ؠi^��I:a?>��+�U��uꞴ�����q._�Z�T�eʉ���.��Ǭ\*�2�&��\F�D�*��j)7JA'��
9�'�'Yb
-w�� ��1����1&��*5<M���s������WbG��G��ؗ��Sz��P��=�ژ��%�T/#��ѥ8��.�j� ���8e���aӞ�i�} Ϋ��i�V,�OaNZ�G���|�Z���t� MD��P%�t�=��*���
>L�I|�P������ ��h�T8�i�==,tB8c4�ީ@��P�N ��A>)�ግ�� � a�qF=_n�������M�����'�14a$�^+xn�s�^1�b��k���[�5i�u��xcKF�_+hN����6]�wN�#μ>_&
(e���cD|C7�� �{t� ����
S��ܧ;�O���G��Ls�N ib��?\9��i.3M_ʑ�;iM+v�QkAgt��␤ى�� ���\5Χ�r錳��\��(_c�Q��m�/3a��r{|�3I�3�cr���6tȹ��Ě���
���ӏ����&2�%��М>8I�X jrs������H�cB|
# H��y�1��F�l��!\t����0��y׃k���H��a(�!g��A����{ YAC�xC6O�����<�}�%'�C�w�t�F�� M��%WpWE��$Fk"KYhڇ��DMs]PBx�βF���9Ѷ�
�w�L��Q�Jp�]+�w֛�:eѨwC\�t�ĵ� B�NEN��b JQ���4Q 묊�2��P��`M����9��yB�w6�M����&�
��}���l�r�@M�����>��iZ��Z й��2�!wp�$�5�cj2eV���J����vO�c�<�y0B�2�ȯ�X�S)�
��}�/
cK*A� K��d$0O'�dijE���pf�" �y�ۓ0 ���A�f1�������� �(|B������b¥�ݾw�f:��~��w �iз� �R,P��w �
��,̔�(�-! ��Jd����$�]��\�I@7Nr�Yib�ͱ�����ʛGj��(o�c:��z�>��O&�Ih�S�^��mG�ڞ�mO�8�,ԕ#mO m��nx:�S�;����jΝ��J�j��4��@�e|*P����$��]��C�D���ǡ�׮k�[�[�n"�Ϧ8 $N]� ��Y�r1��_��r�����Ř�SWZ� ^� z���0������*ߍ[>�ft����ޣ��(#��f�Sӳ�9䨺�Q�q�Z�,�Ln]V�b��������q#�K ib�b�x~l\�5*\(���״)\�SmJ��]Hf\�A���TA Vx�h���͈��B���;M���wa0��;�B9�����so�ϕ�L�+!M�����Oq'8�ċ�Uӫ�8���0���t�������a��[5ҧ�7)e�F�s�ޣԛT2P�1X�E����C'/��A\S̷�u�!�G�,,a�m�3��('���EI&�󌇒\SL�G���C�ҝݧj��!g�x,I�>�‰�Qi��Ӡ/� ��t�M+p���={E�% ��8�p:*Pm���k�>|�����=��~׍�ƪ��'9���4��VR ��q�����9"�5�:��ρNP�9#נ �t _���1ع��4�NcrB��=ʻ�$t��`�.���Uה��:���B�+�f�ൄ4��{<䏋Cn�S��<���QzJ�S�^��Ų�Sc� ���铴A��E�tu�>F�DI&z�J�N�7u��=
x�m” -�)��`�� Ou��4�`m�UZ�Jw�m�I�kP �h�;����xsA��{"i��S��[��?�Za.�3�JXΜz׃�K&��, ���j�G�*�~��s[O�E�0��x
o\:���5��f�����Ad�Y5H�ɠ���f���!��k%��'V�F!�,�S�A�u������\7t�9�"DI"t���k�K�c��AL<�J��(:N�
���EHƑ�5Ge�kpN��T��SN1HJ����>%��N0�O狖�������H�/Z��pF�>?��0C Y���m�44��\��_*��9[.:���� �Ԉl�J ��a؆A�>ɱ�.�د��n���J-t�q "��ؙ�_ ��^!*�;fh69%�S�<��COοI;���]H�܊��/�|6��$�\Aj[��o���p�l��7���������� !8��lC�:iK���! T*AC�J͚�t
�4�T�U*�
� ko Rz�6/%i;ңL�� �����&qj��i��_$��jV�4a�4��Kv�����s�1@ߩN&�d��V�}��-����p8�4�P.)��y��v�q����ib�q�T�`87fߣ5@mA1M�\��P[)�0H?g�˧��g�5�âP��>������]ݫ ��Ĕ�A v�Q<��Z0� wO�}�|�-��c�D2#�f�*tX�^yhL�E��
�����Fb½��5 ��C��+� h���`���\��B���X�%����::�08h!t����
����*�*�a��Eū�HXp�"2� '`��^��j�[[K9�s�
����1�g k���Ntq� �<�С��x�}�.�4�T����e��}kP��/�<ä�`��������i��:�Y{.e���a�>c��w��I��,�o�NT��w�5�ػ(!��w���鼋.piޅs���E��B�-ʯs%ͅ(� � �#N:�+у��z��0ݕP����Y����<������C )��{�tôqD[w���ٞ��A�����a���/��y��T ��x�T�'i�xPz⎈0�1�����
��PTC 'J�1,ߍK�H(�����'L�HM2F�W�;gk� Γ�c�R� z���ơ�Ë2w�'� ��Π
R��E���I$_N����`�ٿ
�`?��L�B��gT����>0��/��Sϩ�.y�H�� /|&x �)�A�������(�s�������"�����86��)�V�;>�W�u�KI�|MX���h�h�͇��S���q�s�v$����-P��?�R$�<�n��R0��ѯ���h��C����Up{�X�T<�U��c�>-�UR��dJ�L��f����G+E�&n�y� *� u��Q{�ƒ'o��H\��������%G��������.{G��{�G-"�'X�l��L�ݽz'�$v����s��=�8�y\5ȱ.���6E*�E Ґ�����ڦ����_� �-��1ʸW��w�1t3�X�^�d."8cI��m��S d��<[�L�u��k&.%��
��Y�F�#_�o?A�2tb�1�����T ���m�| (rwY�z'�(!��i8�L 9��<(;G��p�YP(B��ƒ���j$��ϔ����ɣ"9ڡ-`���m�ij]S���=��5���?(>By��P�=@OtQGz���C�SJ�bؼZi]Ȅ��i*x0��R��@gj� �D*�S���@ ��S��e�z�}�xR����JH����x�%�l��ǫ@uL��p�F�J�ׯ�X�o�v���Q�v1߭�a�kѭ�U2��-���,��\��̯�X�1���UU��ލ1꒴pR�Ř����1�0����ݨ�J��*��B½�즦�/7���� O�\n�OC�&����W��!w�R�&�༂u[��c�%��҉�� �S�%p��cZ��0������S�%�f‹1�D����'t�[-��?�w��uy�X�ZSG������.:����I���:�U���l��
�g�e��d�@ �� �<͢3 ���S�#�G�tFP&z^J>!%��䶦�e3�"��c��Y��]���a�J��uf��u�1��ƞ�9�f��щ'�~|'�q�&VG����&�g����}.c�"�A�M�v,���s� `�\ l�^Fw��=�=�{Re4ttۛ4U(���d- z�<8��D�5B1�|���rkpN��;���[�;C�k������ � �&X�@%����œW���w�4���ˢ��;��A\ˌ��ԛl���0��}�>�},g>�&�B2�+'DW�НB},�!\B�#�Udt��'9G���>����w��D��X^AJT_�2M �v]�?�D��������ϵ��� �1�%?�s�էn�8�i���ҍ�'��A �.ՒY��]�e�=�%=��>*�$��b�(慍� �qC�X��H#�_`Be$�m0 �Ćwj� ]pJ�4��F����1��ɍzH�33!.H�" 8x����-y��:�`^Xu(4��(a TC���9�D˥���j��:�ruR��;2�j�p �Gp��{\ug ���ypBz+���Ȋ$G%�JhN��������9�
� ؾ��A!<M�`i��2]&)�AMn����@��D檀�h��<E��/��bu�Z����*���C��p��~���q����n���:�Jo�be�ŨP9-B
���`�
�O,X �8c�ꉿGҩ症A �Ok�,ߍ�O5��F4�V�X�Q���������߄/��O=��
�L���.�cU��1��?|�<�V�Q�z�1F�5���>�Φ1���`Z�~�;�.,�L;|}(h����3��$��o�uQg;���=j���vu���=����Kcf���7*����*�jg#w��9e_Z �Wۗ�/X�~�1֣��0�/Y1hkC�� ^�޴H ���/��klVc�MoV�ҍ���qn�Q�Au���T�5R������Q��p1��>ڏ��{�:����|>p�t��-%<ϴ8N)�z�/��]�X���1y�
�@3ݦˋ��Π�ʄH��(<��u�~��(�U����O�h�1
�5�W�X�z� ������(���;+a~:$ğ��5���Na���6��H��|H"�����Π��n0� �iWj��>b�tD *��
|p�ԉA�+;�|'~�+�w�����o����V�t��tX}�����n�b��T��(R�S��$��L M����JSH�4�B�j��`�PS�*A���N���)���q�.y�d"���\S�}p0.l��D윯1��7q��q ��"Fܜ� ��� ��!VP�^�8Ą�yVD6T��7�x��s�������+���T������ve��(VpC�RNQ4"g���{���?���DC���c�&�g�`�m��P4�c�X�=C�� ���<�g#��~�x��z�Q�zE�Cl�� 2z�p��$���5�T�7g�l&� ��LF���U��+Lz��T�b.��,
d�V>8��bu�v)��S/�{�#Zk�gW/��~�H�P����H�� �ŵ G8v��ڥ r�vz�P��&� �t�K�� p����M^�x����� ��7v�O;���l-9n�� ��V��E�.��m���X8����8�õu�g�7بC��p`�A`s�S�wA話t6�,p�
�f���~��v��x��� �:�ms��i��ذ�r*�2'�ѻ��-��8������]�9(v3z���ԬA�ҫ?R@w��X��w�dl���<��&�p�G�]�)��͊��ǯ���1g�Ot�H�!j>i�ZX�M|���u�Va?&`�T��/d� �E�)��^E2f�Zر�e$i�n����c8 ��=IN*t_@��n�]����'D줵0#��x%�|��E�@�SB�,+4��ܷ�Јݛ)�?gՎވ�C.�sWU�� �G:��+�Tcʕ����uO�*;��*!��'�Կ���d<�y����:�?Xr8!Q�^%ʋ!j����jZb��3H`���<@M��5>=-Q� �7�)�� z@��k���+�/��{'r@�u��ST��Hs��j�Y��@
��2�W
�In/����e�ꩆ�=ۧGEW�O��BM�S�=�%H%Q-=va���IXׄ�1�r��f4iJ9��v#�����~�j��:�-�0:�%���U�.h#M\|���+��}_1����"�A�5�W���#0�G�<�G�j��?����9;��XB>�K�L���{��)�a���+y���X��k�K^#lN���I#�ɳ�n�i $$W�dG7�Il�T"cQ�2���EB7�3�S� �jv�Β�7�Lz������M��o������8�؞Ӥ7�b����
�ȿ��i��q =�0u��t����z\���s��c�0}X�� >��X�?ŧ�@����S��c���FC�n��-�����L (�g%����u��i {��t*K�+�.�Ni:���'��SVNv훬۶X�;�OV]N+ ,�o;�x21��'\��-1U�a��7M��>Лy�&m���ru��|ծ-c�-}U���0�/D���a�x�2���:����G��������]�'��%�Sk�Iv�y�c]��zPY�:[q��,nI��yj�*�<�!ȝ^�م�g��<d�Ur|����i^���&dW��xr�%����,��|1���IXL�α$����
hҼr��a���<u�(!�m���}��K�0�,|�R�#����z�d KJl��k�Ee.+y���f�ܫ�P�*Nfj �)D�j��諦�t��u�U�'�Ǽ�T'��¨�Q[f:��O��E���(2匷0����0���%-�;�Cԥ��6�����_��$���v��K%���?��3F`[���9���.�$�����_ s���i�
~��W��u 4. ���;l�����{����H���z�?�3%V30� �t�/��J�C�U�m�;�u�$G�~H� ;L� �i�Ir�����sl:!Oy� G$t*o���sl:�}6���]+��WE��ǝe� �3:ˆ#�C�ti��6EAGBg4Z1�(��?XG�� ��օ+���/\Ƒ�81t
zu��PKo���ԁq����*�� �����G���㗯�H�-ɨ��9P@�# w�:��pu�����6Gg��,Eb���x�����r]NE��̥�C���R�V��ɴ��;+j@����d��c�j굊
jH,_b�b�|�Z�i>���h�>ʺ�Q��<{��J�T� ���`��/}�Xr
�<�����"�Sr�5�D+�b9X�i�9ɉ9�
f �7e�Y%fSRs�5����r�q�N��jM2��uX6�J3�������uN�������OG�tꕰ����4����������4�NO��Fcʂ'K��݉Γ�W�2�c�ի@5_wޫG)ϔ�t��_�Ǖs�j��
F�uc�jE�@��!q���y��q_�vp�9�?�w |�?����h�q5B�D�(�0�m0�ݛ|��m�$�������'���|4�ˈ�r�%�� 9��ЇquR�.��_��jD����$��4�� �C!]%�� �~�?�����f�RQ̚��D�K�������l�Y�ϲ��L§h]������b�]����p�~a�˷����8L_�w3�RLHL5���ׄ`�(�J��Z0N��L#$�� ©�ZPA4Ҙ+.W\������������p�O�_{��?!��?!����%ܱ� �?���Ϧ�Y���q�>~���a��ow��z����uѾ���f�}���������g����D�M�M��nf�� �~7{8V(y�}�������������Z4?h~�~;{<���"��?���'�E1Ԩc���?o�����=%��|�И̇�����D�xR��b]L�w3��~�>���v��Xn+�r�=>���_��5���߫�e�m2��LJV�8yϏ��1�����]���))Q7�]���w�����S~8F�!�ͷ�'�О�l�W���nh ��C�9�O�% �����;�\0�̣�?���K���ې�e;�R�|7k��������x��� ���w�����Q�[�a �����O-v�� e�߁�����SS����z��6@g�b�q�=���!7Z#"4��b��ޣi��׻��,:S��u'Hŀ?�� ,�G �i��]��ɸ��m�Z�S.j��Spc�?�?=>l���nՁ�!5w�ߛ/����Դ5��ë�7~d��:'{X�>\�g�t\���w���a��_�����oF���+�����DZ�=L�P�Qt�����;�4�Y��ڭ�_޶=��f���� �^�ј��Cn�t�W`޿ ���c��ɹ컀=o`���of_mf�g�CnG\2���q?[�3�7��f��������1��>Y��| @Z�1/�|��Oo7�,Ԍ�0��K[Ů_��;E��]/w��۷!/1���~<�?&_O���sn�9�gNK釀-�$U³�� [��o7���y�%�,NPad�"�ڤ�7�i
������`�`��f�G#���~3;�X��l�9��a���݇���������6������]��H� �d����d��×Ķ�pl��N�ҟ��n4~��ll��:B{���?峧�C��"��>͞��Յ�K!f{ ����u��.p�ǥ '�m��o~3{�Cbc�xx�4;�w��17��x�Ɇ�0��w'ߺHW�Y�CИ�7���K�1l�6cb��~�Cf��~[N˲�����M�+e'{�L�%2��l�N�������w%^0���Vm��t��Kɬv�,n�q�w5�޺��LΚ ��h���7��C����=�t�U�ŌLyZM��
Q��_�T�ߵ�x7 -���T o�i� eXl�B2XŎ��W�o,�y(k�el�(�c�q���Uj�b �C���a��� �t�حZ�����|�>l������MÚ���^<lw?}�o�C�[�R��ٔ��~���'}!�B1ĉ������7���!,7R,V� � 0���o4RX`���X#�є ��2�0�w�r�7
m��\`D1m6
s�G�� ���Lɥ���B�o �@�z�����L� �oBDĀ
�V ��5�R ��'sė0�`���\ri��6\>�<>��
 �!��7�� ��FQ�-&-D�4O���� aLF�iyj�i� $�t��S%��iΑBX+����X(��&+�i�S�v�-�1�Z�����Z1�W,K<$+���`B�%���u�de�.W�Jm(RL1n����p^�_��ĵ2PV��9U��� i�M�o�����!����1ci`Y� m� 23 纂b�b�<la���A���ټ��np@����R�˯Sƥ�m�� �^���*���\d#"�|R�h��طX+�h1w���L{�Ux�`���X�_3ʎ�W�z�K�-����pGX�f`,7��QGˊ��P��x-�Yi��L��xa�I6K���V��TDIT�D sC7�i��H�P�(G��&x����� Hc%C�".S�Rj5��;�kV�\�EK�eEKHl]C2�kC����j�BQ3�� �AX�j~,�yR�Α՜Tl��j���M^[�ڪ�M˪ �@ � ���r�r�W
*%_Q�V��4�h��j 2�-��4��¦a��7
i��Fja���6�QN��|���K�%ᒮ�?��_K���H�Tm����Y�T-)-�Hm�,��G <yIׂ�RjqUQ�2J*D�5�+��5_lp�n-C����z3o��]A�B�R��� �i6�4�"P����[Z �oJ�[٨�Y#V�ak��mA���H5�3]�Ҵ�� Ժ[��������i<�
���X%��a��~qɛ_��[���{I��E�W�BV�zi�J�M� S7��!��CZ[�met�����m���Y����;,�Bg��7���
a�Q�c/�3;�B ���K�SU�l���(:���~��8h�������z5\c�)c�5ެтm�bX�g�%! �^,69]2��F,�2/-@k������G9�z�B6֓"���_-�!O���*=�e���吵�{a��^;Y�����&F9d�,�+^<�he�f��\��"J��r(1����e�k�"Qe���h�@y��P��Q�����GB+���
��(��U+ʡ��(e=��W�7=4ʡK�D9T��(���E�C,1ʡ�?��=Qݬ-�6�SZ,�(�!YD9�\d�TQ���r��(�Q�r]Q]�V��ċr�&�)F։r�T���g��0�[QӸ�c1<�9��\���d�E� d��;٪��d����֞�)0�ET���L.ݨl��ج�>\���W�>�G<ǹ}��O7x-��y�Q񴌈�Sb���@�� �+ K�$�s(�>�K�T�|��Zp7r�hT�
����ېf���T�0 +�hat�f�z�6���墀�.�5^j8��.���R/P���&���y�8�-�0E��&��I`$m>��K
��@�\���M=�p�c�Jk�[4�٪�E4���j�. ��2zQ��H4���a�xo�hd톅V\�g 8��B�(Fa&`Őy�Z*� ��m\�e�\CJ|f1�,F����;�'(�b��-�e��F�6���#M|EOp���|�� !/�#<XU,J䦐<���X�5ے���~[�lKM[�9��z�$����E�T�b"9��ɪXs������mɵn�p�x8��f��%?�7�����al
o�A�'��<��sc�vNO}־%���4���H���2Z�8g=�cT .ቍllTk�/��+��Y�(.Ss��|i}���%�����u��9���Ÿs��s]j=Obh��Ӥx� /�P�q�a۟��Ŭc���^�3��%��j�(ԝq�偖�jY�7��^�2n�H�r�Wh�&}��O%�WP�? �ydK��%�E��Ph4Ц���f[���W\��Z�%��|ὥ�ۍ.��U�S|�o�mt�9J����������ι˅2s�x��)Ϳ|����(g��|�S殱�=K��:mf�ގ��;Җ�j��Y���`F0.<�!~�o�IW�E���x�`��JAWv���|OQN4.��L<� �LQ�π�R�� �b$D�f���("�e�۩4MA�<A�l�����9�?�a��%|�
z�Y���a���TZ�{I���o���Pu�l��J���趥��X�5ɹT87�K}��9H�2kĵ�)$�N�\�h�S�������?J��r�����:�?�a��nVj,N���� �ɔ�1j������y�O/6g[�Ӌ2�����^*�ݖ1UŇ5���� `�s\癆�59�CF���T�j�^,��Ђ�>�s�3���W8������� ��q�����ݲd��BO�x���q���<�ï�iKS,I��h#�%�e��q� �4h��{���*����ܤpqӛ0n��K��M��oy���,��XX�u�.bmH|�.�z�|��$���;�ޛ��ws6���&�T���~�x������
biSE���-Ε+ �*c;!߈a�d%��c+��+VH�"��񊯗���/Wf l�Ve�Nl���h��xR�[�oa()�?!éIc��ô��V� �tm+>Wf�8���w�0�X�f�ݘ���єJ#��,Zc�?[�����U�X����5�5�k�LOV�F�VZ���`�`-8�����^��̿ԅ.Q:��/2��Ћ�絩BnAכ&�kl��bŗ���f�p��f�p�ȃ���\�b�Z���PR��mV��R�.ȱ�_rd��pNH����]�3�:Ѣ�����K�J��j g붬�3S�@`��|��b��[/�ź�i�~�]�ڬ�R"X EynrdoMC��A��g��]�eYݑ/a��Pl+ҡ�~[�瀉�t��&9_��v���Y�� �����6,���\�Z�R��s�P��|�K>l-��7��a���]U���Ue�FB�nW7�+e�n���vu#m����r��Nu����'�kZE)=v������QT�)�gڀ�"Z�"7�-������(W��Ӈ5��I��p��F�|U�ِMݧ�ލ�č6l!����b��}�5���2�ې<�mlm� nC`3���eQ������0=ʎL�����SBS̟�`t%��mCic6�r6a\�&`�*͉�W��V�@hXZP�|e)XU��|o�����)�����n�A�H�V"�� qڈe�+E�]V
�����V�u[) uX���\+��"���v��/ �XU���]5� 5�+&t|�YQ�p�(&z=M�(.�'ᧅ�U��)�FZn��^����ƅWO����Y�(&���s��'m����d���QLD�;kD1%��}�����dS�5��r;�(�FS\V�45���T C��K<$�8ՀN�(��Z��\�T:���ʲWQ#�)��5��.E�FS�u׈b�� +A�N��QLs��1�� fY�m��Z�2�� -l�h���g��5����5��1Q׈bfv:5��Ѽ�,tUTj�Q���FC��G�]#��"�5ͭQ̴jֈb�Y�F���5�Sid��z#-��.u����AO H�/�e-���U!�d�owz{�0����Z��δ����8T#y��Գo��Z�#�v����Q4��S�(����|Y�';��4YOZ��0�=Ģ��|mg _��r�<�-'�3��Fysj1sۛӂ�Ɯ8��4�� *2���v�bAs%�9 Yx�t�L�������pd� ��y�B�{^ }JO0ӗ�J�3�7��&�DBH�!�X �4W��d�)�s�^2�[�Q$E��x��f��f�m]��\�5%8LR�+A5K6 �( } nˆ�-��9� ض�K)Wˍԫ%_�_�R�@T3P�+��x)W�/]G_<��ks�ŷ?��=��_��?24���������o.of7?|��O/on�Z�8�J\���K # ���o~l�o d4{�?.���<�/1i���]��h:��?��[������ ��˯�����?4}���~�MՇ�._3M�����w߷���� �7ʎ�`p��7߶����@G�8v˔�/�
�7F�:V��H=/N��ĩ�l�������`l�ۗ�l�9Ps�� �]�ҎR9>�' 7;�����*����<Տ9cݒ�~�(�nR���Ғ�������. r6�03�یND�ڿ���k�/mp�!e���_W|�L�"zw��c��1o�!GZt��2Q����#4��1V�3�
)�o�+xSr�� <O��*(�r-?�Z���ꁸ��T���ϙ�2�B��ʛX��F��kG��+����6T-�ߒ��7�_Ϙ[�"Hި�ױV�Բ�F�zu)�4�N�b���{��$m�ﮚ��F�U�-�N�Nj+~K�� V������+S�����mL8q�xw�2iy\�ˆ�hi���?�T��`
�fo��Vu0�G|���H�oH�dT*�6 Mk@�++E\�2�PQԂji��)UC��j}@�<�f8G�K��������JM@���+�W5i���}�����VhW�9q}ِ��h�*A�# �x�o�;O3����]s#+D.#
��U��2��u�}��
:ZC�;����gL�Cd������Z�B�1��bJQM��W5o�!ǭ�i�'G��oy�mLmS�Z���
`�n�0��iGZ����Ob���x,P+�fv�T�lwPuv�Q���h�/T�C|�����7��[+}��w�}��?]~�UmU����@�.=���������W���VY-He�j���-26���AH&�5E�5���MM�j~U?���ʆT-I0��EH������WE�b\BhGQ����m(�������^~��аKRp�b\ h���#x��!QiE�Uh@�V�@��;rwsKՕ����ukD%t_SY��ɀ'��aY� �~£b��W�������~3�p�ct�yڬ���{Ø.X7�l#���!�M�+�\c��uET�jUWێ��6H�Z��� �i�>r��Y��[�[�ZF�^��(2�D؍G��L]Oip�.h;"��P ��C�$���-� /�u-U�Ԉ�=�nh�����4�6ᄭX��kb&]�n&y��(������m<��W6�GZ�PA�Co<g���e�S�=�vӢ��ao�����&#�6���.�GQ�?�����ѻ�\�밻��4T��veo.��S;8����_���o]�*]F���f�[Y4����%�%���Z�h[��K�ؖ#>�A4]�N� F�U)�F�w�h�е�tuu �ڮ��ڮo�� �dw徶;��vIo./�n��k�W��62�����o~G;-�?�CSpz��P�h�ש�C i���z^߸N�+�sIt̒(Ѹ�T-�.N�LD��W3I�o�eI���5~�l��,�+�D�z[������(�S����@� ]7~f� ݺ2[%^e͔K��ԣEql���"_�/�?4?mI��[G_RF���F�[�KY�����%Q����`mǔШt' $��+ X���\}��T7\�Y{�)�C`U�\+ ��EWE�U)=��T��2��(�������ҝUg[�������y?dY��ݸ2~���]����CrX%(61& �h�'�ݙ�� ��y����(+���QF�f��(�v�Pla��] ���C�J\e���2ʸk��VF��]��Ͱ#.��Q"+�/���u㤮�e(�;įb�N�]�7u��S��f\�ڦ�݅j��~�e;���P}�oo���e�i[��pˆ�����p��-�m��� ���7�����`�jʹٔ�vNJ0j��;q��0d�k���K�l��B-��%���-�.K�O���֍a6-[c]��6fFٓ��w�"`o����!x�}��*�H�F�
�U?z�W�A
n��A�
 ���,� /c��P��:�ނc�_w�G�.<�q�8����H���MWAB�e�j"z5Lq�H�v��`Z��;<8V����҉2�yc�_Ū�H����JXSd�u��ʢq�ʿp�;� ��%�!�X{�Je �Ʋb�̈́Z��u�"�>��•Oͫ�n�:�b�Q�}�~}�'����\T����Ш�X%��������y����{�>+�:h�]0���j ����Z�[�l�f��\�y:��K.��V~�\kn ��s�G#��C{E��{�X{KQmy�9Ly6?���
�F��H�s������m��6mao�\�����M�V�)��<�SLЈJ�ux /��њ�o�u�f���x�OSfIe'?e�ؘ��ۮQ�k��r�EN� ��ѝ��/uXvrl��'M⹀�D�k�t.�л��'>���LfB"�1��c��_]��ys������4���^�O59w�znk�nXh���%�Շܜ�uk1'��em�on���^$t��� �{JF�G~΢c$+Kz�R�e�|�aW>�� �G�$3�b��Kc�̩&��u�4g�Q���.�O"߉z�E63t�F����.&x���lJk�ȷͭ"!�_��GEGy��^^t�y礥CZV�]����Q..;�|�A@AM<�S��eD'Zۉa7Wa��� �%�m8�E�������6VX��l�K�ӝ>&Ǎt0[t�:��_�����:�>CŹ{���M!����/K�E꫸\�GL��.WCi��ʭ��W7/<�#�Ύ��,�)�;.�=緷���Fc��A�ݣ!2�L$әNB4�.ZLh��׎paT[�*�Q�����K\"�M Zx6 R�h4�h�]���^�X+L5uP�Z4e�,J� '��s�a���C�/�J�]��_�S����$��U$�%���-��g�d��AL���s{�A IAp�%-�ڧ�d��'�o�#v�� �ތ3���O䌾&���a����k�+���H $o�8 ����,�BZ ����-������!�J����I���P��g.闯"���������҈���F!Q�1ٵ���Q��ϧ��%�W;uC_� �=�����З�"��Uϑ��+��_�D"�"��u �
��u⃁}ۨ��ݬ�g�1*�����o./�) �4\C4�0���?OKIA���� ;-�8c��b�x�����ҍs����W�<��s[��hh��kyi�����(_��CFڕ5W<�uM�
�ɨh��ԩ����ҭ���{� -� �7Z:\��>ZU��sx��]��m��i�M����*�kp�L~�[��%����Dv�9>Ѵ"�@�.\���_>����A��M��UD�۹�ș׭EG�� <�ܞ�5���:b�����𪵃�n��E����עy�}R_�p͢�İ��]�����;q���k�H��<�&�����A���-�@�4��%q1�lL8ﮅ���&�:9�yQ��xE׍�����:����NӌO�a�o��܌���8����=�YG�_���n=�Mc��5�_�U~�;���2|7Խ�↲Ѻ��9�����I�6�++vKo� ��8�\�D�Dc��q�#�MF�w��M㮩��]q�ޖ~g�4Syvڈ�ߧI��xp��MqQ��2t[ِ�Knne;%vs�:��\r[��>����&�>��f�r2���I ޢ��v�ÖnI;F {-]Hv1�J]�B��9a��Ӆ�4��wr�-k��^u�W��4�8�9=o=�MEe��I�$ѵ���sm����1@`�W��vm���Փơ�O�;�-��������ѭ���y{uW�%�C�&Y{6\�=k�ʶh��mU�7�,ׁ�q��ͥ���$AAe�4u��lHb=Cgo��q'�N�7Վ���d��ѐ�z���ޱ[�/�aA ������k�;٨�"��y)�t(�C���TS�܍yG��8��`��w<��Mf9���NJnH��E8��l��^1�Xo�4���Y|��B��k�k��Is�މ�m���v?��r"с��u�;�ej�VL�,�E~�򄧍:F���h����o����3U1��u�*F��u'+FJ��l��08�t�_�
<��W���F7�������6�B`4��q���a;��莻�i�\ِ�!b~��������(���Օ��Ε0�o�[��vG���i�6V�0?��н�U��*U�tP��W0Mp)�o�0��Y,��W���?�ʇ`,�3��X�6V{�
�#%��ȿj>��BrR���YGVc��1J�����t�E;���"��L��(� �l��m<;���v�Cșw�&��G��?��/@�_]�GV�����.ܩ�m(l��v����z�ۺ�U��T��`��`��zg��C7��W�5��lx Ʈ��D��"���/ ����^SҼ�ջ#����}�]r�����&b>)���L4B���ݞ ���r�}:�j��S�,�a��c ����u���`�<ѽ�V wտ�+'���XS/ir�G&|=��:�^���s���j��w�`z}�q�e�6�ܮ�魣~«5CV�1C��L�*_���x1t9kԡ�B�մ]0o�I[V���<��[v0c� �f3��Y7���m(��^D�i�������v0�lֺk'��/��L6.�x��v0�.�n3�ySP��[��p'0�?�w���Ab��z����G����k��p/Zk�*9��T���s$�s�M�8_`-8vUu& \Z!)gn1-�L%�ݟ���tl��ү�ۻǖ�|�d"Z�_�
�J�0W����K��+�{�lr��9N���l�F׼���l���s��o�/����~�L�%�2�N �ej�� �e��A�NZ�m�Qg�p[\�@ԉn�б��n���RC�n���N�����ގ�� vΉ�����5MqgG��.���#o���S�̗�'��򦼯���U��e�DBHʕMj�JD�w�;��Ҵw3U���HY�2��~���S�X2������q5# ��,K �CR���_~gҪW_s�����7,�ڿ )���^~�@���d�jA7n(���I*�ĵ��"��D��K"XM,!����8aNL�Ko��]�3尳�]������o� E�z9��cv�\�I}}�o�5��e��KD5c��kr)�c�����o޼�x�?V����k�q)3��K���9Q8#z��e��������|+3�36�:sM3>W2�d.eF�}kA��� +��@��s�e�瘣L�9�2cs�Y��� s�������VdN��� �)�1��9c(�sF)4g�2@7@�b%hΉ�Ĝ ��9��uθ�]�s�D��x%�� B3��s���P8s!e��\�9/�H�32��fb.16� �eF��)6�Ki�6�]��gD�
0 �A^)�ѹ�,�x>׈gt�����)4�Tdx����i�2"�%���2�@k�21LjQ����?(Fg�Ρ�(�t^���q�a$͘c�25�0�|�1c�P��c�3*�U�y-5BgԢ� �1�D�D`"�)� �5��L�9� gB�1�(��㚳�9njk��1튧�vXf�ABA1��4Ԇ�DF�3�IZq�83trഞcnƉ�V�c�1hM�(�
�5�\�L�b��Lα� ��Xa1/[TǙ(����c� �BSܲE��3bzHa�RЃα�*�l���Hů � �O,���$�E��
%x&�i����e�&�bl[T40�!�zN����~�?K0���s���������7[r)��Q5�q�?e�D�� #>'�Դ«ē�3iĕ!2Z>)^SݒAArHs��U&8(@h1��/�.^5SN3LE�D���W´�J �zA@�q�����^��D�T!@��4,�6�ʵ��\�"���h�&��-�dƙe�T*#���B��Rʌ1aL!��� �� 44`��&0"��J� h�16�H��)E��_Z�"�3�G1��K��Ҫ7S��Ɂa#dN ��~�?H�}B���(�3 (Q<�).�S�%�>���h�e0�)��9)h7,�"�9����� �CD��(X�2O% %eB��`iնA�$�bN9�J9Ǒ��t#��9e`L����k|8��f�S��Q�9 �s*%k<m|Y2i�T��^a��1\�/2� �����3�kpZ�92㤍���_e���3�� R4g�*`�|�
j��/�� ����a\=nt 02rΈ�b��9# �S�j6��87��H��1g�ȜQ�efn3*�'$x&���#��%�Aƈp�i��)���t��������j��s� �eƫ�5�S~��!��D)ϔ2��1fd�1 �0� % �����1e=<�k�/R9aAj�8U���yL-C���9���P�L#�WD�`ƍ�ø�#s&�L�- #6N��8gs�D @J��� &4Lqƅ,� .�3δ�R�~�F9g�Y�$�$ ��W��2��i�5X+���3� ��Ç�R�����S��b" �P .�˴�#-Ĝic.�*���i��1MeFA%������\F�@�U�2�U@R�_�y�+�.���a�)__}:��:��f3!��y�:n���|���fq\�o�\����=U�z��"����owNjl&����v}�ͨb���c~���ǧ�l��7���|ؕ��y��}y�Xn�� x�_�ׇ�����o��9�?�?.V?�Pb��p�=?<D�"a�P��~w<,V��|i1�����ϔ��xR&Έ���C��m�j������)_G����XƇ�������O���!_�kt��VF���vw��>M���������.�Q���Vp% L^����S�c��w���S��h�/~Q}��C���c�~o�c���F%��c�ћ����9XA e2H��]�z�ο����ߞ�����O�nO��1�����k��r�n0�DŽ� �d�^\���j��� H&x�������� ;ힺ���xx�����9|x!��iQ�hp������H�y8h��H�f���O-H���������$�b��q�BV���l�����!�jα��)����I�㲢��_�_���?ڱs�T �b�vqsƓfԧ,}8�ѴpZ/���>̙�e��w�׋wx_6��/u��a�X>��,B�xgls��?A29�
8m�5������mZ�E�Qs82LD���P���n ?5Wf��o����� $s�����k#��VOq�\��|lL��.����zB�Ҧ�1OL�Q�L�S{���� 0�X�e����`�1+�aO%��(��e&]�T�J&+�=��I4�!?vk5`�$f�4�^��:�TÂ�g��`!�4��pF��J�C���x �'a�>��$�F��Ђ��(4"y&ĩ
-e����ߺ�}�Go��R F� H�4����W��_|@=ny��.�,F0��s��aW���&n$D��|�/�E������=����r��C"S!��"���X�@C ��&�g�$Qf�(;���'��*Hm���7�.��mF�����"��{��ד��4��֓>��nqS{�8oP�t���p�p4(>Uܗ��T� u��>ɇ�eq��I�ႝ��p�Ќ�S}����Be�D���9 O�� QH��p
�YAJ�B��oGX�
�kY!��I�P �e�P���B�x�3J�j?�� Axe+ew�Y� ��V�듬l�
vc��dX���B����P �嬐�aB �4V���n�L�I�P鵬��$V�t6+�Zm3LL���?��٩�uA�l�� �4��0�0�c}�a�=U��4L�Ή�)��d�o���ԩWV�/,��M)P)@9�]�C3�}Yo�>�V��t�LW4��f\O�|a@� ����f+hN���,t��J�0��F���x'����'X�AY��1e@P�bz��9�����$|���m��ޗJ/�2�����X�slzrh|EgA"ߟfV�Bf�]��)q���� �������&*Ì�t½DŽ��†�SC�� C�����qq�d\z8
c���@gcP9�8��6
'�������{�C؅<IAS (��A�/%�0p�7.�>.��p�S7�=���6�����&���FD�" �� Q��L�
� q��SQl#��
�fx}���8y�3��|L�51��j�V��9C�����|ゥ
ڰ`�t .���jp�0%S9�>h�2��#�h i��Ħ�ic�JH��V�ӣ���GZS�R�E^
㌼\ rX�;À|�>,� B}���+&���k��ʞ��`�s��04��Ų|5n&$�c�U�{���)���[+c`^x�c��Z�`��F��Đ=����n�L�@���W��<K�mh�t"F�3�8�[��pҔ�l
l0]v�&� �W�w�1>u�a��:�h�fw,��d�{�k����6�Q栄嘃s%�V31Q��Lc����b��� !RD��q1x�i��C����qAx� Fʚ%��p'Y�� �)��4�S5��"���� �V.{N���p4$v��� �Y 4�AӯTbB���q� [�z O3�p�!vU��w\2,�\F��‚%���(���/Y��Z��Y�}����a^��p%��L�nY��p�Z�4�o���
R����>�K��dK�%��&,]r,Q����3��%���S-]v��X��M�tYB5A� �.+p�0(�<�ь�̭���ZS����&3��(�S�J��\�08e�2���h�E�Dl�b;�S�&1��n �8��$����<�z�p��� �a�Ou��� �}1W���›��۟w��f�Y�,g�*՗f\����̊���o��)e��-vk���,��ηԯ�3���c���k�ۙy�ҽսIZ���E\�0�m�1�1���R׽�q^)$��X�3jmP1�N+)*%�q�����͑~��z7��$�'����2�wV̑a<�&M�w���F�w3JޖŸ)����ܯ���W��f���IlJ%IK��$ć }��q�qN�D ���ʏ�g�W�Z<,v�JSW�*��z>n��O�����Z&c����~��|S�]���Ξ����(����������+8E�B ��;u��!��Y��oڬ��#��*R"�P.P��J!A��+��
3�~�%_�}� 5ْ �4���w���X���B#�цZu{�Mk��5�l`^b/ �t �i�Z*4�H!IS�*�n�f�S����"��x�Tp�B <yI��`�7%��"�0�(�]�خx��|����� Qb���_� G0^A?��r�(��7|�N�"X��^�V�}ߠ@-&+�Tf���a�?�BQ��2ւSۂ*���� �H�"��?"H����E6�b�0��`�E�2_ b ���~Q��/.y󋚶����yWJ���}�!ne� ��F
��
�5�FY�e�2��g�*d����oA�9�u�M��t�<a��ֈ���/Z�� ��f��ȱ7����;,�Bg��C9���{U�6s[!�ш3;�B �B��J����{�p ����8M�Ԉs����Sn�2GH��Xp�����x�F �!�aʹ�hIȂ��MN� +�K���K ��� ���$7,gJ.�߽�7fNڙ�Y�;dB\� �(���4 F&^q)������j�6� ���dhm���x�I��o�t."H l��Ť�(��Nl�M����&�X�
G���0���%z����3 2��V .Q����B1,���H�� �4��/����m��%�U� Y,&��(���O(Z����27)�7_�]ᥕ��K�(1��������@�X U��w[=NYn��2�-�)VV"�pe�(����a CS C0� ��k�3��)����K�!����o�ki0���a�I��U@1�K�7  �F�6�a �W1w�VKE�(х�*�W0C �H�%[��en�/ ��'�
�۬-�6�SZX; 0���QG%&@�� ��hg�����2�6c��ff��(�R%Q�-L�T�rue�W� �,H9�v6�3���G�o@+bRq�����R����=ێ�F���W~�6@����DId�]'�q;���%���f� � ��.,R�Zm;�4�N��˩S�~�4v�~#P��hJ��hf�ď�X�|�>��j�B� g�`)�"�r���{�8kW�r�v'mۢH;kw��y�����IO#��d%=C=�b}Ob�p�W&�WvP݉����p�Sc��}�q�X�}z���N�t:����S�٧�R��_cqBz�{�I;�p����[��>U�T�Zv<0;jY�9*��(��sB�nC�: ��{/�y�R<j���Oɳ��x(�B��ԝ�^��ȩ��[�Q^.���������6}?�[ω���n|Z�}_}��6�^9���N%k�ܪΛG��"S߅j+�{/R����i E�{;�BVo�1�W�Y4�D"�%%�@Rd���j*Φ��6 v����H\�� "*���k��� ��'Hk��H�-0c>�`�Gs��H�_a�RѰ� 13'�c�H�����k�E���S�}Q�š�b�<nKL[�9�C������� �Ҡ]�'g�6>
7���zTc�&t���Ә0����&�.`?'�����3�Na� v"��L�nj-O��� �%�Üf��R$ӫe�[0g-im�� ��z6֫5ڊh+��_hl0jm�i�B�(P`�`m���%}|�g����Ȳ�9��L���<y�7�ҡ�b���@�d�#�Q��),�︎��VZ�s�(����G� �9�ҮВ -=����e�Z��~eV����x}ҭO.\�[�y.4;d���B��8K�I4-Mg�i�����V<���=��];���o{����p��z�%�� �}s����38��]ƥ�]<�D�����]Ż�m���$��ZX»Fo�9X��N�8sl�(��)M<g��u�� 8K��c���C��k��93���z���*�Ϩ�O�8����3��1�9y��륈����;Ě����y����3H��D�i���3��$~N��x�,� '0��+�A������5��^a���Zd> <dc� ��bȍl;�H��^� I4�n̕⠞��D�
T' J�N"��ꤍ�]Mu��\)���G�"~�~�"����2�܎+�Gs�B�̕�^�2E#F���R����|��,˧Z?)�ul|I��n�O5��H��h,����B�钾&�Rd(�E4@0`��Զ��PK�9 ���\���3����s��X�dria�xZkj�r�� ''�?b���52����4M$��<��p |���"���V��0�M�,���f �`<�M�eؘ�Km�m�֠mZ�رN'���NS|q]��1��I;��g�w�Ꮉ1����Ҡo8:�i��A���G� ����K#��'����Fw�x�>��2r�ȥ�M%IL�ٯ�|�QZ��hr`Gz�^:�K��#Ί�����bۯ5+��O�T8�ю u��Q��Az:؞&_< ��w&��֪9�|R��즐
�\t?;�����te�f`>f{jz�!y� �IJ��`�`���\>���Z����|t�
�S��?�=;��=��GW}<z�l�M��e|Y��6Y��I�,��Y�S'�uq:��f ;]2d O6��f� �X��C����;��zB��ѳ�:׫�b�t���U t��Қ~f*����ys��Q�����
����c)Qk IXgbd9�7�a�w�����;،x'|uGw���ba���b�h�kH�]�<�>'�e���r}^cp���n'ߧ+�A�����Z/w
�9ӣe��y<��x<t1z���lVUK&��*z�}t��9�Ҍ�##�ի�@f�ϡ��)T
��U�H���d��+�1v�V�w�##���SD�.2�AJ[��٪ ��Y�9�r���Q������}���ɽ�~��ۑt�WZ ��� s���F�d��E����K� Vg\�m��\�mtp�?��x �h�#�θL���L ���0�R��mCH�M�s��Q-��b�����<�5��<?��2���&�cXs�*�A^@��ZK�ڜ)aO��D-�������Y�����R�밄�?ʵ@�- dYK���Fc9_5
��0i5^::xT�j�:ݦj\�����j�?�Eը�3�N�4��Y5����ឝ��,�G�ԛ�®�֩�Q��c�5�@����*���׈�}��P#
�Y>"��Q �+}b BF�jD���v n�_�<Y\5`V#
�T� ��@�Y�<Y�{�Q Vv&U�gjD�xZ#
��n�5�@����lQ�(�N$6�g!���ȫ�� P��Q��π�Q .�>S#
��P#�#׈%��,��*5m�(Ж��5��+`x�ٴF��E��F�T4'5�@��kD�*׈����F�VF��P u��^�]_�[ �=Ś����5��f�B�������@F� D>�-��� �* �1 �N>��d��4���S/XK� �ݩ���u��|�����Z:��� 3ۃ����r ����f]g1ٝ2�f���,����9AOs���Os,'x��v�ӜtR��Q���N� �Iǜ�`�ӹ}4�t.Oa$�Y݀�7�Ό���Ŝr%�0�1`����t�W'�������EL�Ñc�#�;8������������Jɉ`�8���� %&e�"DHi&mpc���Z�:BZ�Zv�!��^�そ䑵%���(����X��{9�G��9�����a�~�h���h����W��ծz�����w�j���^���~�ʴ�+�K���ᄍ{a>#��u�}���y���߬�^݅a�p��Mu��/���a ���|�����лF���_�Y�3�B��v�ݪ�Sk��
0̀�:6�I��봍���i�W��Y���0<�΍``q}�ۺ���7߽���$Le������_�՛t�K�.�ð�x�����ݫ��*7,�����]X7F�����o�u4���Dn =կ�� �u>�@t/uC�Y"Ps�Q�eZ�J��&ve��5�b��)������^�k����ٱe\�Uuo37�^<�N��"��,Ǩ3H���C?��,�4� zo��@WЕ!M�B��~uW��l�e]�5�h}x�-��A`���P=�ͨ˕ Rx�<q���&�[�L[Y�s1mf�\��p�y1rd���b_�Xa�l���$���,��.�ң�Ռ�v�d.�n��-�G�"K����𧻓/��.�3e�=�2=햴bEu�C_b��>�aw�a�$���>QYT?d?2f���.�_b��L�T-���F�j1VwqW�@e�M .�Qf����v�\]{��Dؕ�EZ_k.�M�}��F��f���'��7*[/; ˽33}Z���|���k�36 qA<�U�cא�7߽\}��M4�K��{��c(0�#H�]J��ZW���j���=�h��]�V�}U55��j��ou�G=�D���嫯ȬưS�"�E,Q)�ׇ9��2��tʸ}Z�0��H X��Y2��V) �n�dv�(�-Ef�a�)� ��o�F��8�`�ԁ����7�/��# 2V���Ի]���+L�h ��&�jd/��Zf�}�Z���@hi4 YA ӥRdR�$&�F\ٶ����"���ze<��Z�Г ߙ��2/k���آ��7r����}�]E�������&�)��O�.3i#��u��B� ���iFCuN��}�¼�ܧ��ܞ���E�N�r�dX��5�'^��^�� pB�L^Jby��Eg"��;F��� ���C��RNS��I����iW��^B��+���*�p)퀳0 .k�z�fpx�
Ƣ����߀���1HѠb�@TN.��3�S(��*�ʹ*�8 ՚,\����1Sՙ�������-�h���4�Dq�*��G0Q$�6�R M1GB���G�1��=�P�ɇ(�Bi����Q�
�Nj2i8#7��+"[����v9U�FCL�b�ݭ-����re:eB"S!��mTE+O�Qfa���Ę�����ޔ�J?�[���<4��\t�os�7bd��VPD�?� �;i�J*�(>ω�˝�+#���Y�V�8�%v���5�=m�6�k��.tm�∧�%C��m��x/�$Dv?R�Z���ʼn꭪���U^�&��r�H�H�e�_ܩ��[�b��|���-�9Ӹ)����U[2iox-�1Dq6{j\��j[j)��mYW���|��*m�i����}�8��������ʲ�3L�oJ:��\gR��4���9U-���+�����,���עx_NcԤ"���(�X�Ws��7�]��Aɜ(� ^�inWA�]Zv`DV������so �nL���hy��B���v�*O�=�V r�4�[�3��,� �M���סG��e���(�8qP������ 65v:R�!�b���|�v}j�ZKf�.��#2i:��I�����lܳࢤ����n�o�C�UJԫ(�� �7[��
�]�3+/\�r �-��Ź�hk�{8"��4#l7�~�T{���y��h���GVa�`�O�'�S����t$�ҨMJ��x� 3��(wJ,��b��+�;Q^�� +�K�>Ϋ���>1�FA�,>eg�8�>5��X� ����+����M���l��Vu�I「L��@��(�M��̂ш|���͔H|���c=!���y�����YYL� C�2<ݱ<��ǰn"�
|�������.I�}��fl_ﮭ�XT�Eve֧�^��c���XX�-�s��@N ������)�R�ؐ�1�6G�XflP�&�m;����<�V�/3��C&��i��r6gC�Q4%yM�.~U���C^~�t�t��'��j>�q�ȐD��m���ۨ*�Wy���� N@�n�l %V�$��F �o�D7Z^�����rluz(29TSf�m=UXP\��/%L�ژ �t1Z^4�f��?����`5���)*�
�^DO�B>?��U��L��IL.V��j��� ��Fn�Z,��䍼"�����2�Rc�%�笮����{c�2�zqt���ɡZ�̌�8��.$D���.#.@A� a �[���c8ゔktҝH�d����9��
�ELC�(%,�x:s.��#��^]K��J�=%�7�=J�J'EJ�d��ȳx2��s�T�So{�@-QAq���/�����٧`Ȗ�"�9ȟ��~Fʿ�}�l���И~�������.5���uH�Z�Y $�x: $Go|�H��l-I�)(]�k)}����SRz�f�3���P����R����B�Z[�* 5&�^L��x�Z���d�n�*-����G<vCU�"�뫞'
˷2�_�Db:D�v�|����^u������●W�S�)�
�3�� ��}U=%1T�\Ct+b(����,���R.;-ŝ�4�1
zܿX��O˕sR���l�-�N&� ��BZz�vK+m�b�qz^)o��CF�ʚ-+��vx�R�3��#I�th|�v��U��3���ȏ�8�[�\��|��
��S�V�yO�.D}��w�\�d�)�4vp��x4E(��bp��#ݖ�#��rUGy˗h}����<e$s���� �4v0qf�.I:�؂��I�G����23oj~���78����j��x|�}"��tR��'� ���s'v2/!�I���6�n���)���q ݴI�sH���X�l �/�����iDK�gT����2>���9��N����ʹ j�߮�O�A�Ae��F��gp��ף�WWwt�aB{����K�oOX��u=Cs
n������Qm�F��-F/���-��|q�\�8��Y�F��7[��Щ��-N5gW�^��%�Y��g?�&��ȃK�{w���K5/�FUD��rc����é��K������cW//^ YH�F���Öj��he�e�%f& $��tj�%'L��.lJ�ף��j+�3�}�Ķ+_���ٳ���*��̌�� �n�Z���sm�c��>@� �/.��6����L�d�:G�7��H�ˣz�RyT��s0�m3,�G�KoMҔvyπ_���,���}��p<ˬ����9QPQ�t�7 "J �X:{�d(_wB� �&*��z�VJJ�:�?�i��u���aA��?s���r#��)�͗�0`���T��
�B���5�%8{8i�&Bs<FV�M��䈚2+"�L�"d�gv�&�A�������`s��Is����t���}:�?�>@�+���-(Zqa�,���������:۴�%�]!���"V�w�Z^ěOˬ���O˭�*R�����μ-<�/�4���~��Ԭ�Ls‚T�L}�� 1;L](@ �&�seKv��3�e����G��7�!΢�6��eu5>�6w��r]�]��;$-����2;P3:|ݿ'l%�
�ҿO����dc�h7��£_�GWNƃ�x�Xx���S��պ!$��� E�z5���.�\�� �G^��I��M;�I��L��F������,v!W��v���G�dzp|J��
GVҹ��� w�:�H`�X�a��.H�nC�����NS�� ��6߯]�&�AM�A�1�Xp��<ϋĵ9�]RZ��L�:��:�#6jWG�Gj��TM])�&�lR�F�P ����-AB�����Qy������=(�h麈����Ot��U�]@��f�E���:@F~H��341��Y��Sʙ�u�����[Ȯ.���*���$���3�S��\����7 �4�ȃm��1\U��5]�V�v�IJ�d|Yn�,�%���1����Jh�K��J�#MF��M;@���������*�kgBB-�l��.��ķ�]]8w�P5{SP�./s+]�S`���Ɲ't��Z'1��>��l��l��&��^$H�!8Z��D����y/�d3_�-�� n�$.)�y1-0*-z��?�;�ɵa�~9���ڲ��,*0!�X�8*�&s�}Y�g*�ƶ#�u�����8�i�g E\�/��g{���`����m}*ZN�u�[`˰F^j�p�].�e��-��Fڄ��!�3�̖�8
��f WS��O�-��J�(�-��Nw�F�M�.� d��^f��#�N 5M����9Уv*�����8��� �S��W_Y��tZV Ĺ Lڠ��D����C�M{7�p?�� ���<��N��NuŒ9@׼����W���56�� 7H�zu_�6a���Wۯ���M�#A��,e����� ��'3�!���'jN� �qB BHB�!�4,c��]�0����z�i�pϠ.�]}U�߽~���D��^N��c�: l�v[��;VՔR!�(U��p%`+ve�Z=��/�={�����:vߴ?>_���bk&Ě��\���dM��l6��������&���P��*�� ӟ�D��Gw�|����n�o6���yFi��숣A�ZP��-l�^��| k�_4���X�k��rC�Zl$]S�b�6���p��lc��>@Ԛ# p�&�r�6 a x��m1bk�X7ƌ����dC_�!�֘n!k�?���F��=l���O�g%��u�e!�VJ��� �ze�C�b�fh��Q�ԃ2݂1�V&���A��}�0A�(�����t �3�o����C�/�F� h͕��ƐklQ�0YӍ����Zm�k�E��ɍt���5l�6�t#�DĚ�6an7�@��X+�@Д@��z���0�k�6��0�3Ҵ���A��z�1s�����}�Cd���&�]Ӎݬ��� PP@�z6�T�l���`H�#0� 6��5E`��<>����?��y������ۿ�݇�����s��k޾�<{~|��ݏ�?�}ؽ��`D##d�ճ��/��g����]���ۇ�7xx���0�R�+�_��޵?�YOݏ?���_�u�c�������?�8u���o���"��B�#A�h������=�}�^���g�l���~��Aw���,<�ڿw���I��??�fF ��m��돦��������ê:�~�>|ؾ��a��������f�f��,ڇ����>��۾{����������0H���=�ؿ}��X���
x�+)JMU071a040031Q0�.�/JLO�+��a�+'z)��:o��&����43��P�F���y�E`eU�g-�zhͼ7Rw$6ǰf΀*3�wJ���/� �$:50cA[qG����˚��EPu�))E���N���`��.ײ�]{)�z*�0�V����aJ��+�����+k>�:g��H�檙E�c�*����d�Ē �­ b���I_�P�1��%��A���P���y%E�9
�%E��%�E���տ(��pmZ��K5~z~�hT�k���X���Ѻ�Eʷ��/mY�e!,֚�PdndVu������fi\�r�l��{t�LUQQ~����V��ʭuӿ��qz�����MPU���E%e �r���4u����=��J����0ey�E�%�yɐ����{%{\�s� ���E/T�w��*�M,(��K+[?o�_�%O*���U���k~”e�e�&�(��g��7
�xs�9b���2��l>��x U�_��Z ��d�k��������~C�=�K^GVVLl�*��ɩ .)��K-�́�/�e��8i%9�����K�1�3��a��edc��=2����r����r?��u�2P4BL��Tg��t���/M���?�� ��?,�
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment