ETH Price: $1,919.73 (+1.41%)

Token

zkSync Era TiUSD (zk-TiUSD)

Overview

Max Total Supply

12,124.913253245049898749 zk-TiUSD

Holders

10,521

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
TiUSDToken

Compiler Version
v0.8.9+commit.e5eed63a

ZkSolc Version
v1.3.10

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license
File 1 of 19 : TiUSDToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";

/// @title The core control module of TiTi Protocol
/// @author TiTi Protocol
/// @notice The module is used to update the key parameters in the protocol.
/// @dev Only the owner can call the params' update function, the owner will be transferred to Timelock in the future.
contract TiUSDToken is ERC20Burnable, ERC20Snapshot, ERC20Permit, AccessControl {
    /// @notice Snapshot role's flag.
    bytes32 public constant SNAPSHOT_ROLE = keccak256("SNAPSHOT_ROLE");

    /// @notice Minter role's flag.
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    /// @notice Emitted when reorders is triggered.
    event ReOrders(address mamm, bool isPositive, uint256 amount);

    /// @notice Emitted when new admin is set.
    event NewAdmin(address indexed oldAdmin, address indexed newAdmin);

    constructor() ERC20("zkSync Era TiUSD", "zk-TiUSD") ERC20Permit("zkSync Era TiUSD") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(SNAPSHOT_ROLE, msg.sender);
        _setRoleAdmin(MINTER_ROLE, DEFAULT_ADMIN_ROLE);
        _setRoleAdmin(SNAPSHOT_ROLE, DEFAULT_ADMIN_ROLE);
    }

    /// @notice Set new admin and the old one's role will be revoked.
    /// @param _newAdmin New admin address.
    function setNewAdmin(address _newAdmin) external onlyRole(DEFAULT_ADMIN_ROLE) {
        address _oldAdmin = msg.sender;
        _setupRole(DEFAULT_ADMIN_ROLE, _newAdmin);
        revokeRole(DEFAULT_ADMIN_ROLE, _oldAdmin);
        emit NewAdmin(_oldAdmin, _newAdmin);
    }

    /// @notice Creates a new snapshot and returns its snapshot id.
    /// @return snapshot_id New snapshot id. 
    function snapshot() external onlyRole(SNAPSHOT_ROLE) returns (uint256) {
        return _snapshot();
    }

    /// @notice Mint more TiUSD token.
    /// @param to Received address.
    /// @param amount Received amount.
    function mint(address to, uint256 amount) external onlyRole(MINTER_ROLE) {
        _mint(to, amount);
    }

    /// @notice ReOrdersController can call this function to complete the mamm's TiUSD balance adjustment during the reorders process.
    /// @param mamm MAMMSwapPair contract address.
    /// @param isPositive Whether it needs to mint or burn TiUSD.
    /// @param amount TiUSD amount to be adjusted.
    function reorders(address mamm, bool isPositive, uint256 amount) external onlyRole(MINTER_ROLE) {
        if (isPositive) {
            _mint(mamm, amount);
        } else {
            _burn(mamm, amount);
        }
        emit ReOrders(mamm, isPositive, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override(ERC20, ERC20Snapshot)
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 2 of 19 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 3 of 19 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 4 of 19 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 value {ERC20} uses, unless this function is
     * 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 5 of 19 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

File 6 of 19 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 7 of 19 : ERC20Snapshot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Snapshot.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Arrays.sol";
import "../../../utils/Counters.sol";

/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
 * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this
 * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
 *
 * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
 * alternative consider {ERC20Votes}.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */

abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping(address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }

    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to);
            _updateTotalSupplySnapshot();
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from);
            _updateTotalSupplySnapshot();
        } else {
            // transfer
            _updateAccountSnapshot(from);
            _updateAccountSnapshot(to);
        }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

File 8 of 19 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

File 9 of 19 : draft-ERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol)

pragma solidity ^0.8.0;

import "./draft-IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/draft-EIP712.sol";
import "../../../utils/cryptography/ECDSA.sol";
import "../../../utils/Counters.sol";

/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

File 10 of 19 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 11 of 19 : Arrays.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @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).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        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 down (it does integer division with truncation).
            if (array[mid] > 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 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

File 12 of 19 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 13 of 19 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 14 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 15 of 19 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 16 of 19 : draft-EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 17 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 18 of 19 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 19 of 19 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return 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 up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

Settings
{
  "compilerPath": "",
  "experimental": {
    "dockerImage": "matterlabs/zksolc",
    "tag": "latest"
  },
  "forceEvmla": false,
  "isSystem": false,
  "libraries": {},
  "optimizer": {
    "enabled": true,
    "mode": "3"
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mamm","type":"address"},{"indexed":false,"internalType":"bool","name":"isPositive","type":"bool"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReOrders","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SNAPSHOT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mamm","type":"address"},{"internalType":"bool","name":"isPositive","type":"bool"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reorders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAdmin","type":"address"}],"name":"setNewAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000823a90021981f42a41e0c05e8d085b41caa45e31397c3749566bc390b5000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0003000000000002000b00000000000200020000000103550000006001100270000007950010019d000100000000001f0000000101200190000000280000c13d0000008001000039000000400010043f0000000001000031000000040110008c0000036d0000413d0000000201000367000000000101043b000000e001100270000007a30210009c0000005a0000a13d000007a40210009c0000007e0000213d000007b00210009c000000ac0000213d000007b60210009c000001390000213d000007b90210009c000001c10000613d000007ba0110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06170000040f1e4e10270000040f0000079501000041000000400200043d000007950320009c0000000001024019000000400110021000001e4f0001042e0000016001000039000000400010043f0000000001000416000000000110004c0000036d0000c13d000000400400043d000007960140009c000000540000813d0000004001400039000000400010043f0000001001000039000000000514043600000797020000410000000000250435000000400900043d000007980290009c000000540000213d0000004002900039000000400020043f000000000d190436000007970100004100000000001d0435000000400600043d000007980160009c000000540000213d0000004001600039000000400010043f00000020016000390000079902000041000000000021043500000008010000390000000000160435000000400700043d000007980170009c000000540000213d0000004001700039000000400010043f000000010c0000390000000008c704360000079a010000410000000000180435000000000b0904330000079b01b0009c000001cf0000a13d000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000007bb0210009c000000950000a13d000007bc0210009c000000d30000213d000007c20210009c000001490000213d000007c50210009c000001e10000613d000007c60110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000000310004c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d1e4e16f00000040f000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e000007a50210009c000000f40000213d000007ab0210009c0000015c0000213d000007ae0210009c000001fb0000613d000007af0110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06170000040f1e4e0e6c0000040f0000000101000039000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e000007c70210009c000001140000a13d000007c80210009c000001290000213d000007cb0210009c000002140000613d000007cc0110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e062e0000040f1e4e0bbb0000040f0000000101000039000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e000007b10210009c0000016c0000213d000007b40210009c0000022f0000613d000007b50110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000000310004c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d1e4e09720000040f0000000002010019000000400100043d000b00000001001d1e4e05ff0000040f0000000b0400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e4f0001042e000007bd0210009c0000018d0000213d000007c00210009c000002440000613d000007c10110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000200310008c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d00000004010000390000000201100367000000000101043b1e4e0f110000040f0000079501000041000000400200043d000007950320009c0000000001024019000000400110021000001e4f0001042e000007a60210009c000001ab0000213d000007a90210009c000002500000613d000007aa0110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000000310004c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d000000400100043d000007d20200004100000000002104350000079502000041000007950310009c00000000010280190000004001100210000007d0011001c700001e4f0001042e000007cd0210009c0000025c0000613d000007ce0210009c0000026d0000613d000007cf0110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06170000040f1e4e0b520000040f0000000101000039000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e000007c90210009c0000028e0000613d000007ca0110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06490000040f1e4e07180000040f0000079501000041000000400200043d000007950320009c0000000001024019000000400110021000001e4f0001042e000007b70210009c000002ab0000613d000007b80110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06600000040f1e4e17b30000040f0000079501000041000000400200043d000007950320009c0000000001024019000000400110021000001e4f0001042e000007c30210009c000002b90000613d000007c40110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06170000040f1e4e0dd40000040f0000000101000039000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e000007ac0210009c000002c50000613d000007ad0110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06750000040f1e4e1b5e0000040f0000079501000041000000400200043d000007950320009c0000000001024019000000400110021000001e4f0001042e000007b20210009c000002d40000613d000007b30110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000200310008c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d00000004010000390000000201100367000000000101043b1e4e12870000040f000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e000007be0210009c000002ee0000613d000007bf0110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000000310004c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d000000400100043d000007d30200004100000000002104350000079502000041000007950310009c00000000010280190000004001100210000007d0011001c700001e4f0001042e000007a70210009c000002fc0000613d000007a80110009c0000036d0000c13d0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06b80000040f000b00000002001d1e4e06e20000040f0000000b020000291e4e06f40000040f000000000101041a000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06600000040f1e4e09ae0000040f000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e000000030a00003900000000010a041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000003080000613d000007a10100004100000000001004350000002201000039000000040010043f000007a20100004100001e50000104300000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000000310004c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d000000400100043d000000120200003900000000002104350000079502000041000007950310009c00000000010280190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000000310004c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d000000400100043d00000000000104350000079502000041000007950310009c00000000010280190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000000310004c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d0000000201000039000000000101041a000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06490000040f000b00000002001d1e4e06d10000040f0000000b020000291e4e06f40000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06170000040f1e4e19960000040f0000079501000041000000400200043d000007950320009c0000000001024019000000400110021000001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06930000040f1e4e12f00000040f0000079501000041000000400200043d000007950320009c0000000001024019000000400110021000001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e05da0000040f000007d401100197000007d50210009c00000000020000190000000102006039000007d60110009c00000000010000190000000101006039000000000121019f000000010110018f000000800010043f000007d70100004100001e4f0001042e0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000000310004c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d1e4e09360000040f0000000002010019000000400100043d000b00000001001d1e4e05ff0000040f0000000b0400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e4f0001042e0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000200310008c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d00000004010000390000000201100367000000000101043b1e4e07050000040f000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06600000040f1e4e15690000040f000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06490000040f1e4e08c10000040f0000079501000041000000400200043d000007950320009c0000000001024019000000400110021000001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06170000040f1e4e09c00000040f0000000101000039000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d000000040100008a0000000001100031000007d102000041000000000310004c00000000030000190000000003024019000007d101100197000000000410004c000000000200a019000007d10110009c00000000010300190000000001026019000000000110004c0000036d0000c13d1e4e19280000040f000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06170000040f1e4e11c60000040f000000400200043d00000000001204350000079501000041000007950320009c00000000010240190000004001100210000007d0011001c700001e4f0001042e0000000001000416000000000110004c0000036d0000c13d00000000010000311e4e06490000040f1e4e07ff0000040f0000079501000041000000400200043d000007950320009c0000000001024019000000400110021000001e4f0001042e000000200130008c000b00000004001d000a00000005001d000900000007001d000800000008001d0000033a0000413d000100000003001d00020000000d001d00030000000c001d00040000000b001d000600000009001d000700000006001d00050000000a001d0000000000a0043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f00000001022001900000036d0000613d000000040b0000290000001f02b0003900000005022002700000002003b0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000b040000290000000a050000290000000706000029000000090700002900000008080000290000000609000029000000050a000029000000030c000029000000020d0000290000033a0000813d000000000002041b0000000102200039000000000312004b000003360000413d0000001f01b0008c0000036f0000a13d00030000000c001d00040000000b001d000600000009001d000700000006001d00050000000a001d0000000000a0043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f00000001022001900000036d0000613d000000200200008a000000040800002900000000032801700000002002000039000000000101043b0000000706000029000000060700002900000003090000290000035f0000613d0000002002000039000000000400001900000000057200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000003570000413d000000000383004b000000050a0000290000036b0000813d0000000303800210000000f80330018f000000010400008a000000000334022f000000000343013f00000000027200190000000002020433000000000232016f000000000021041b0000000101800210000003790000013d000000000100001900001e50000104300000000001b0004c0000000001000019000003730000613d00000000010d04330000000302b00210000000010300008a000000000223022f000000000232013f000000000121016f0000000109b00210000000000191019f00000000001a041b00000000010600191e4e03e80000040f0000000b0100002900000000020104330000000a010000291e4e03c10000040f00000009020000290000000002020433000b00000001001d00000008010000291e4e03c10000040f0000000b02000029000000e00020043f000a00000001001d000001000010043f0000079d0100004100000000001004390000800b0100003900000004020000391e4e03d70000040f000000a00010043f0000000b010000290000000a020000291e4e05970000040f000000800010043f0000000001000410000000c00010043f0000079e01000041000001200010043f0000079f01000041000001400010043f0000000001000411000b00000001001d1e4e04dd0000040f0000000b010000291e4e05390000040f1e4e04650000040f1e4e04a10000040f000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a0002004430000004002000039000000c00300043d000001c000200443000001e0003004430000006002000039000000e00300043d000002000020044300000220003004430000008002000039000001000300043d00000240002004430000026000300443000000a002000039000001200300043d0000028000200443000002a000300443000000c002000039000001400300043d000002c000200443000002e000300443000001000010044300000007010000390000012000100443000007a00100004100001e4f0001042e0000079503000041000007950410009c00000000010380190000004001100210000007950420009c00000000020380190000006002200210000000000112019f0000000002000414000007950420009c0000000002038019000000c002200210000000000112019f000007d8011001c700008010020000391e4e1e490000040f0000000102200190000003d50000613d000000000101043b000000000001042d000000000100001900001e5000010430000000000301001900000795010000410000000004000414000007950540009c0000000001044019000000c00110021000000060022002100000000001120019000007d90110004100000000020300191e4e1e490000040f0000000102200190000003e60000613d000000000101043b000000000001042d000000000100001900001e500001043000050000000000020000000075010434000007da0250009c000004570000813d0000000404000039000000000304041a000000010230019000000001063002700000007f0360018f00000000060360190000001f0360008c00000000030000190000000103002039000000010330018f000000000232004b0000045d0000c13d000300000001001d000000200160008c000500000004001d000400000005001d0000041d0000413d000100000006001d000200000007001d000000000040043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f0000000102200190000004630000613d00000004050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000050400002900000002070000290000041d0000813d000000000002041b0000000102200039000000000312004b000004190000413d0000001f0150008c0000044a0000a13d000000000040043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f0000000102200190000004630000613d000000200200008a000000040600002900000000032601700000002002000039000000000101043b00000003070000290000043b0000613d0000002002000039000000000400001900000000057200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000004330000413d000000000363004b000004460000813d0000000303600210000000f80330018f000000010400008a000000000334022f000000000343013f00000000027200190000000002020433000000000232016f000000000021041b000000010160021000000001011001bf0000000504000029000004550000013d000000000150004c0000000001000019000004550000613d0000000301500210000000010200008a000000000112022f000000000121013f0000000002070433000000000112016f0000000102500210000000000121019f000000000014041b000000000001042d000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000002201000039000000040010043f000007a20100004100001e5000010430000000000100001900001e50000104300002000000000002000007d20100004100000000001004350000000a01000039000200000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000049f0000613d000000000101043b0000000101100039000000000101041a000100000001001d000007d20100004100000000001004350000000201000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000049f0000613d000000000101043b0000000101100039000000000001041b000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d020000390000000403000039000007dc04000041000007d205000041000000010600002900000000070000191e4e1e440000040f00000001012001900000049f0000613d000000000001042d000000000100001900001e50000104300002000000000002000007d30100004100000000001004350000000a01000039000200000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000004db0000613d000000000101043b0000000101100039000000000101041a000100000001001d000007d30100004100000000001004350000000201000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000004db0000613d000000000101043b0000000101100039000000000001041b000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d020000390000000403000039000007dc04000041000007d305000041000000010600002900000000070000191e4e1e440000040f0000000101200190000004db0000613d000000000001042d000000000100001900001e50000104300003000000000002000300000001001d00000000000004350000000a01000039000200000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000005370000613d000000000101043b0000000302000029000007dd02200197000100000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000005370000613d000000000101043b000000000101041a000000ff01100190000005360000c13d00000000000004350000000201000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000005370000613d000000000101043b00000001020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000005370000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d020000390000000403000039000007de040000410000000007000411000000000500001900000003060000291e4e1e440000040f0000000101200190000005370000613d000000000001042d000000000100001900001e50000104300003000000000002000300000001001d000007d30100004100000000001004350000000a01000039000200000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000005950000613d000000000101043b0000000302000029000007dd02200197000100000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000005950000613d000000000101043b000000000101041a000000ff01100190000005940000c13d000007d30100004100000000001004350000000201000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000005950000613d000000000101043b00000001020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000005950000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d020000390000000403000039000007de04000041000007d305000041000000000700041100000003060000291e4e1e440000040f0000000101200190000005950000613d000000000001042d000000000100001900001e50000104300002000000000002000000400400043d0000006003400039000000000023043500000040024000390000000000120435000200000004001d00000020024000390000079e01000041000100000002001d00000000001204350000079d01000041000000000010043900000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007df011001c70000800b020000391e4e1e490000040f0000000102200190000005d20000613d000000000101043b0000000204000029000000a0024000390000000003000410000000000032043500000080024000390000000000120435000000a0010000390000000000140435000007e00140009c000005d40000813d000000c001400039000000400010043f00000795010000410000000103000029000007950230009c0000000002010019000000000203401900000040022002100000000003040433000007950430009c00000000030180190000006003300210000000000223019f0000000003000414000007950430009c0000000001034019000000c001100210000000000121019f000007d8011001c700008010020000391e4e1e490000040f0000000102200190000005d20000613d000000000101043b000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000040110008a000007d1020000410000001f0310008c00000000030000190000000003022019000007d101100197000000000410004c0000000002008019000007d10110009c00000000010300190000000001026019000000000110004c000005ee0000613d00000004010000390000000201100367000000000101043b000007d402100197000000000221004b000005ee0000c13d000000000001042d000000000100001900001e5000010430000000000430004c000005fe0000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000534004b000005f30000413d000000000134004b000005fe0000a13d00000000012300190000000000010435000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000430004c000006120000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b000006070000413d000000000234004b000006120000a13d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d000000040110008a000007d1020000410000003f0310008c00000000030000190000000003022019000007d101100197000000000410004c0000000002008019000007d10110009c00000000010300190000000001026019000000000110004c0000062c0000613d00000002020003670000000401200370000000000101043b000007dd0310009c0000062c0000213d0000002402200370000000000202043b000000000001042d000000000100001900001e5000010430000000040110008a000007d1020000410000005f0310008c00000000030000190000000003022019000007d101100197000000000410004c0000000002008019000007d10110009c00000000010300190000000001026019000000000110004c000006470000613d00000002030003670000000401300370000000000101043b000007dd0210009c000006470000213d0000002402300370000000000202043b000007dd0420009c000006470000213d0000004403300370000000000303043b000000000001042d000000000100001900001e5000010430000000040110008a000007d1020000410000003f0310008c00000000030000190000000003022019000007d101100197000000000410004c0000000002008019000007d10110009c00000000010300190000000001026019000000000110004c0000065e0000613d00000002010003670000002402100370000000000202043b000007dd0320009c0000065e0000213d0000000401100370000000000101043b000000000001042d000000000100001900001e5000010430000000040110008a000007d1020000410000001f0310008c00000000030000190000000003022019000007d101100197000000000410004c0000000002008019000007d10110009c00000000010300190000000001026019000000000110004c000006730000613d00000004010000390000000201100367000000000101043b000007dd0210009c000006730000213d000000000001042d000000000100001900001e5000010430000000040110008a000007d1020000410000005f0310008c00000000030000190000000003022019000007d101100197000000000410004c0000000002008019000007d10110009c00000000010300190000000001026019000000000110004c000006910000613d00000002030003670000000401300370000000000101043b000007dd0210009c000006910000213d0000002402300370000000000202043b000000000420004c0000000004000019000000010400c039000000000442004b000006910000c13d0000004403300370000000000303043b000000000001042d000000000100001900001e5000010430000000040110008a000007d102000041000000df0310008c00000000030000190000000003022019000007d101100197000000000410004c0000000002008019000007d10110009c00000000010300190000000001026019000000000110004c000006b60000613d00000002070003670000000401700370000000000101043b000007dd0210009c000006b60000213d0000002402700370000000000202043b000007dd0320009c000006b60000213d0000008403700370000000000503043b000000ff0350008c000006b60000213d0000004403700370000000000303043b0000006404700370000000000404043b000000a406700370000000000606043b000000c407700370000000000707043b000000000001042d000000000100001900001e5000010430000000040110008a000007d1020000410000003f0310008c00000000030000190000000003022019000007d101100197000000000410004c0000000002008019000007d10110009c00000000010300190000000001026019000000000110004c000006cf0000613d00000002020003670000000401200370000000000101043b000007dd0310009c000006cf0000213d0000002402200370000000000202043b000007dd0320009c000006cf0000213d000000000001042d000000000100001900001e500001043000000000001004350000000a01000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000006e00000613d000000000101043b000000000001042d000000000100001900001e5000010430000007dd0110019700000000001004350000000101000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000006f20000613d000000000101043b000000000001042d000000000100001900001e5000010430000007dd022001970000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000007030000613d000000000101043b000000000001042d000000000100001900001e500001043000000000001004350000000a01000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000007160000613d000000000101043b0000000101100039000000000101041a000000000001042d000000000100001900001e50000104300006000000000002000400000002001d000500000001001d00000000001004350000000a01000039000600000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000007a80000613d000000000101043b0000000101100039000000000101041a000200000001001d00000000001004350000000601000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000007a80000613d0000000002000411000000000101043b000300000002001d000007dd02200197000100000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000007a80000613d000000000101043b000000000101041a000000ff01100190000007aa0000613d000000050100002900000000001004350000000601000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000007a80000613d000000000101043b0000000402000029000007dd02200197000200000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000007a80000613d000000000101043b000000000101041a000000ff01100190000007a70000c13d000000050100002900000000001004350000000601000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000007a80000613d000000000101043b00000002020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000007a80000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d020000390000000403000039000007de040000410000000505000029000000040600002900000003070000291e4e1e440000040f0000000101200190000007a80000613d000000000001042d000000000100001900001e500001043000000001010000291e4e15900000040f000400000001001d00000002010000291e4e16760000040f000000400400043d000600000004001d0000002002400039000007e1030000410000000000320435000500000001001d00000004010000290000000013010434000400000003001d00000037024000391e4e05f00000040f000000060100002900000004020000290000000001120019000007e20200004100000037031000390000000000230435000000480210003900000005010000291e4e07db0000040f00000006030000290000000002310049000000200120008a000000000013043500000000010300191e4e07ec0000040f000007e301000041000000400200043d000500000002001d0000000000120435000000040120003900000006020000291e4e05ff0000040f000000050400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e500001043000000000030100190000000004030433000000000140004c0000000001240019000007eb0000613d000000000500001900000000062500190000002005500039000000000735001900000000070704330000000000760435000000000645004b000007e10000413d000000000245004b000007eb0000a13d0000000000010435000000000001042d0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b000000000200001900000001020040390000079b0310009c000007f90000213d0000000102200190000007f90000c13d000000400010043f000000000001042d000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e50000104300006000000000002000400000002001d000500000001001d00000000001004350000000a01000039000600000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000088e0000613d000000000101043b0000000101100039000000000101041a000200000001001d00000000001004350000000601000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000088e0000613d0000000002000411000000000101043b000300000002001d000007dd02200197000100000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000088e0000613d000000000101043b000000000101041a000000ff01100190000008900000613d000000050100002900000000001004350000000601000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000088e0000613d000000000101043b0000000402000029000007dd02200197000200000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000088e0000613d000000000101043b000000000101041a000000ff011001900000088d0000613d000000050100002900000000001004350000000601000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000088e0000613d000000000101043b00000002020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000088e0000613d000000000101043b000000000201041a000001000300008a000000000232016f000000000021041b000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d020000390000000403000039000007e4040000410000000505000029000000040600002900000003070000291e4e1e440000040f00000001012001900000088e0000613d000000000001042d000000000100001900001e500001043000000001010000291e4e15900000040f000400000001001d00000002010000291e4e16760000040f000000400400043d000600000004001d0000002002400039000007e1030000410000000000320435000500000001001d00000004010000290000000013010434000400000003001d00000037024000391e4e05f00000040f000000060100002900000004020000290000000001120019000007e20200004100000037031000390000000000230435000000480210003900000005010000291e4e07db0000040f00000006030000290000000002310049000000200120008a000000000013043500000000010300191e4e07ec0000040f000007e301000041000000400200043d000500000002001d0000000000120435000000040120003900000006020000291e4e05ff0000040f000000050400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e50000104300004000000000002000100000002001d000007dd032001970000000002000411000400000002001d000000000223004b000009210000c13d000300000001001d00000000001004350000000a01000039000200000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000091f0000613d000000000101043b00000004020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000091f0000613d000000000101043b000000000101041a000000ff011001900000091e0000613d000000030100002900000000001004350000000201000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000091f0000613d000000000101043b00000004020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000091f0000613d000000000101043b000000000201041a000001000300008a000000000232016f000000000021041b000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d020000390000000403000039000007e4040000410000000305000029000000010600002900000004070000291e4e1e440000040f00000001012001900000091f0000613d000000000001042d000000000100001900001e5000010430000000400100043d0000006402100039000007e50300004100000000003204350000004402100039000007e603000041000000000032043500000024021000390000002f030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e50000104300000000305000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b000009660000c13d000000400100043d0000000003210436000000000660004c0000094b0000c13d000001000200008a000000000224016f000000000023043500000040040000390000095c0000013d00000000005004350000002004000039000000000520004c0000095c0000613d000007e804000041000000000600001900000000050600190000000006350019000000000704041a000000000076043500000001044000390000002006500039000000000726004b000009510000413d0000005f02500039000000200300008a000000000432016f0000000002140019000000000342004b000000000300001900000001030040390000079b0420009c0000096c0000213d00000001033001900000096c0000c13d000000400020043f000000000001042d000007a10100004100000000001004350000002201000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e50000104300000000405000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b000009a20000c13d000000400100043d0000000003210436000000000660004c000009870000c13d000001000200008a000000000224016f00000000002304350000004004000039000009980000013d00000000005004350000002004000039000000000520004c000009980000613d000007e904000041000000000600001900000000050600190000000006350019000000000704041a000000000076043500000001044000390000002006500039000000000726004b0000098d0000413d0000005f02500039000000200300008a000000000432016f0000000002140019000000000342004b000000000300001900000001030040390000079b0420009c000009a80000213d0000000103300190000009a80000c13d000000400020043f000000000001042d000007a10100004100000000001004350000002201000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000007dd011001970000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000009be0000613d000000000101043b000000000101041a000000000001042d000000000100001900001e5000010430000b0000000000020000000003000411000007dd04300198000b00000004001d00000b0d0000613d000900000002001d000300000003001d000400000001001d000007dd01100198000a00000001001d00000b220000613d0000000b0100002900000000001004350000000501000039000600000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000000101043b000800000001001d0000000b010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d0000000802000039000500000002001d000000000302041a000000000101043b000000000101041a000200000001001d0000000802000029000000000402041a000000000140004c0000000001000019000700000003001d00000a080000613d000100000004001d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000000101043b00000001020000290000000001120019000000010110008a000000000101041a00000008020000290000000703000029000000000131004b00000a3e0000813d000000000402041a000007da0140009c00000b010000813d0000000101400039000000000012041b000000000102041a000100000004001d000000000141004b00000b070000a13d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000000101043b000000010200002900000000012100190000000702000029000000000021041b00000008010000290000000101100039000000000301041a0000079b0230009c00000b010000213d0000000102300039000000000021041b000000000201041a000800000003001d000000000232004b00000b070000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000000101043b000000080200002900000000012100190000000202000029000000000021041b0000000a0100002900000000001004350000000601000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000000101043b000800000001001d0000000a010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d0000000502000029000000000302041a000000000101043b000000000101041a000600000001001d0000000802000029000000000402041a000000000140004c0000000001000019000700000003001d00000a790000613d000500000004001d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000000101043b00000005020000290000000001120019000000010110008a000000000101041a00000008020000290000000703000029000000000131004b00000aaf0000813d000000000402041a0000079b0140009c00000b010000213d0000000101400039000000000012041b000000000102041a000500000004001d000000000141004b00000b070000a13d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000000101043b000000050200002900000000012100190000000702000029000000000021041b00000008010000290000000101100039000000000301041a0000079b0230009c00000b010000213d0000000102300039000000000021041b000000000201041a000800000003001d000000000232004b00000b070000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000000101043b000000080200002900000000012100190000000602000029000000000021041b0000000b010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000000101043b000000000201041a0000000901000029000800000002001d000000000112004b00000b370000413d0000000b010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000090200002900000008030000290000000002230049000000000101043b000000000021041b0000000a010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000aff0000613d000000010200008a0000000904000029000000000324013f000000000101043b000000000201041a000000000332004b00000b4c0000213d0000000002420019000000000021041b000000400100043d000000000041043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007ea04000041000000030500002900000004060000291e4e1e440000040f000000010120019000000aff0000613d000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000000400100043d0000006402100039000007ef0300004100000000003204350000004402100039000007f0030000410000000000320435000000240210003900000025030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007ed0300004100000000003204350000004402100039000007ee030000410000000000320435000000240210003900000023030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007eb0300004100000000003204350000004402100039000007ec030000410000000000320435000000240210003900000026030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000007a10100004100000000001004350000001101000039000000040010043f000007a20100004100001e500001043000040000000000020000000003000411000007dd0430019800000b910000613d000100000002001d000200000003001d000300000001001d000007dd01100198000400000001001d00000ba60000613d00000000004004350000000101000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000b8f0000613d000000000101043b00000004020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000b8f0000613d000000000101043b0000000102000029000000000021041b000000400100043d000000000021043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007f104000041000000020500002900000003060000291e4e1e440000040f000000010120019000000b8f0000613d000000000001042d000000000100001900001e5000010430000000400100043d0000006402100039000007f40300004100000000003204350000004402100039000007f5030000410000000000320435000000240210003900000024030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007f20300004100000000003204350000004402100039000007f3030000410000000000320435000000240210003900000022030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000b000000000002000700000001001d000007dd01100198000b00000001001d00000d650000613d000a00000003001d000300000002001d000007dd01200198000900000001001d00000d7a0000613d0000000b0100002900000000001004350000000501000039000500000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b000800000001001d0000000b010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d0000000802000039000400000002001d000000000302041a000000000101043b000000000101041a000200000001001d0000000802000029000000000402041a000000000140004c0000000001000019000600000003001d00000c020000613d000100000004001d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b00000001020000290000000001120019000000010110008a000000000101041a00000008020000290000000603000029000000000131004b00000c380000813d000000000402041a000007da0140009c00000d590000813d0000000101400039000000000012041b000000000102041a000100000004001d000000000141004b00000d5f0000a13d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b000000010200002900000000012100190000000602000029000000000021041b00000008010000290000000101100039000000000301041a0000079b0230009c00000d590000213d0000000102300039000000000021041b000000000201041a000800000003001d000000000232004b00000d5f0000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b000000080200002900000000012100190000000202000029000000000021041b000000090100002900000000001004350000000501000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b000800000001001d00000009010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d0000000402000029000000000302041a000000000101043b000000000101041a000500000001001d0000000802000029000000000402041a000000000140004c0000000001000019000600000003001d00000c730000613d000400000004001d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b00000004020000290000000001120019000000010110008a000000000101041a00000008020000290000000603000029000000000131004b00000ca90000813d000000000402041a0000079b0140009c00000d590000213d0000000101400039000000000012041b000000000102041a000400000004001d000000000141004b00000d5f0000a13d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b000000040200002900000000012100190000000602000029000000000021041b00000008010000290000000101100039000000000301041a0000079b0230009c00000d590000213d0000000102300039000000000021041b000000000201041a000800000003001d000000000232004b00000d5f0000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b000000080200002900000000012100190000000502000029000000000021041b0000000b010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b000000000201041a0000000a01000029000800000002001d000000000112004b00000d8f0000413d0000000b010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d0000000a0200002900000008030000290000000002230049000000000101043b000000000021041b00000009010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000010200008a0000000a04000029000000000324013f000000000101043b000000000201041a000000000332004b00000da40000213d0000000002420019000000000021041b000000400100043d000000000041043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007ea04000041000000070500002900000003060000291e4e1e440000040f000000010120019000000d570000613d0000000b0100002900000000001004350000000101000039000800000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b0000000002000411000600000002001d000007dd02200197000900000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b000000000201041a0000000a01000029000000000112004b00000daa0000413d000500000002001d0000000901000029000000000110004c00000dbf0000613d0000000b0100002900000000001004350000000801000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d000000000101043b00000009020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000d570000613d0000000a0200002900000005030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007f104000041000000070500002900000006060000291e4e1e440000040f000000010120019000000d570000613d000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000000400100043d0000006402100039000007ef0300004100000000003204350000004402100039000007f0030000410000000000320435000000240210003900000025030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007ed0300004100000000003204350000004402100039000007ee030000410000000000320435000000240210003900000023030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007eb0300004100000000003204350000004402100039000007ec030000410000000000320435000000240210003900000026030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000007a10100004100000000001004350000001101000039000000040010043f000007a20100004100001e5000010430000000400100043d0000006402100039000007f60300004100000000003204350000004402100039000007f7030000410000000000320435000000240210003900000028030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007f20300004100000000003204350000004402100039000007f3030000410000000000320435000000240210003900000022030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e50000104300006000000000002000500000002001d000600000001001d0000000001000411000400000001001d00000000001004350000000101000039000200000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000e3a0000613d000000000101043b0000000602000029000007dd02200197000300000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000e3a0000613d000000010200008a0000000503000029000000000223013f000000000101043b000000000301041a000000000123004b00000e3c0000213d0000000401000029000007dd0110019800000e420000613d000100000003001d0000000302000029000000000220004c00000e570000613d00000000001004350000000201000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000e3a0000613d000000000101043b00000003020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000e3a0000613d000000050200002900000001030000290000000002230019000000000101043b000000000021041b000000400100043d000000000021043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007f104000041000000040500002900000006060000291e4e1e440000040f000000010120019000000e3a0000613d000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000001101000039000000040010043f000007a20100004100001e5000010430000000400100043d0000006402100039000007f40300004100000000003204350000004402100039000007f5030000410000000000320435000000240210003900000024030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007f20300004100000000003204350000004402100039000007f3030000410000000000320435000000240210003900000022030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e50000104300006000000000002000500000002001d000600000001001d0000000001000411000400000001001d00000000001004350000000101000039000200000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000ed00000613d000000000101043b0000000602000029000007dd02200197000300000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000ed00000613d000000000101043b000000000201041a0000000501000029000000000112004b00000ed20000413d0000000401000029000007dd0110019800000ee70000613d000100000002001d0000000302000029000000000220004c00000efc0000613d00000000001004350000000201000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000ed00000613d000000000101043b00000003020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000ed00000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007f104000041000000040500002900000006060000291e4e1e440000040f000000010120019000000ed00000613d000000000001042d000000000100001900001e5000010430000000400100043d0000006402100039000007f80300004100000000003204350000004402100039000007f9030000410000000000320435000000240210003900000025030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007f40300004100000000003204350000004402100039000007f5030000410000000000320435000000240210003900000024030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007f20300004100000000003204350000004402100039000007f3030000410000000000320435000000240210003900000022030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e50000104300008000000000002000600000001001d0000000001000411000300000001001d000007dd0110019800000ff10000613d000800000001001d00000000001004350000000501000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000fe90000613d000000000101043b000700000001001d00000008010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000fe90000613d0000000802000039000400000002001d000000000302041a000000000101043b000000000101041a000200000001001d0000000702000029000000000402041a000000000140004c0000000001000019000500000003001d00000f530000613d000100000004001d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000fe90000613d000000000101043b00000001020000290000000001120019000000010110008a000000000101041a00000007020000290000000503000029000000000131004b00000f890000813d000000000402041a000007da0140009c00000feb0000813d0000000101400039000000000012041b000000000102041a000100000004001d000000000141004b000010060000a13d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000fe90000613d000000000101043b000000010200002900000000012100190000000502000029000000000021041b00000007010000290000000101100039000000000301041a0000079b0230009c00000feb0000213d0000000102300039000000000021041b000000000201041a000700000003001d000000000232004b000010060000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000000fe90000613d000000000101043b000000070200002900000000012100190000000202000029000000000021041b0000000401000029000000000201041a0000000201000039000700000001001d000000000101041a0000000603000039000000000403041a000000000540004c000000000500001900000f960000613d0000000000300435000007fa04400041000000000504041a000000000425004b00000fa90000813d000000000403041a0000079b0540009c00000feb0000213d0000000105400039000000000053041b0000000000300435000007fb03400041000000000023041b0000000703000039000000000203041a000007da0420009c00000feb0000813d0000000104200039000000000043041b0000000000300435000007fc02200041000000000012041b00000008010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000fe90000613d000000000101043b000000000201041a0000000601000029000500000002001d000000000112004b0000100c0000413d00000008010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000000fe90000613d000000060300002900000005020000290000000002320049000000000101043b000000000021041b0000000704000029000000000104041a000000000231004b000010210000413d0000000001310049000000000014041b000000400100043d000000000031043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007ea04000041000000030500002900000000060000191e4e1e440000040f000000010120019000000fe90000613d000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000400100043d0000006402100039000007ff030000410000000000320435000000440210003900000800030000410000000000320435000000240210003900000021030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000000400100043d0000006402100039000007fd0300004100000000003204350000004402100039000007fe030000410000000000320435000000240210003900000022030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000007a10100004100000000001004350000001101000039000000040010043f000007a20100004100001e50000104300008000000000002000700000002001d000500000001001d000007dd01100197000800000001001d00000000001004350000000101000039000400000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d0000000002000411000000000101043b000300000002001d000007dd02200197000600000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d000000000101043b000000000201041a0000000701000029000000000112004b000011660000413d0000000801000029000000000110004c0000117b0000613d000200000002001d0000000601000029000000000110004c000011900000613d000000080100002900000000001004350000000401000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d000000000101043b00000006020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d000000070200002900000002030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007f104000041000000050500002900000003060000291e4e1e440000040f00000001012001900000115e0000613d000000080100002900000000001004350000000501000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d000000000101043b000600000001001d00000008010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d0000000802000039000300000002001d000000000302041a000000000101043b000000000101041a000200000001001d0000000602000029000000000402041a000000000140004c0000000001000019000400000003001d000010c80000613d000100000004001d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d000000000101043b00000001020000290000000001120019000000010110008a000000000101041a00000006020000290000000403000029000000000131004b000010fe0000813d000000000402041a000007da0140009c000011600000813d0000000101400039000000000012041b000000000102041a000100000004001d000000000141004b000011a50000a13d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d000000000101043b000000010200002900000000012100190000000402000029000000000021041b00000006010000290000000101100039000000000301041a0000079b0230009c000011600000213d0000000102300039000000000021041b000000000201041a000600000003001d000000000232004b000011a50000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d000000000101043b000000060200002900000000012100190000000202000029000000000021041b0000000301000029000000000201041a0000000201000039000600000001001d000000000101041a0000000603000039000000000403041a000000000540004c00000000050000190000110b0000613d0000000000300435000007fa04400041000000000504041a000000000425004b0000111e0000813d000000000403041a0000079b0540009c000011600000213d0000000105400039000000000053041b0000000000300435000007fb03400041000000000023041b0000000703000039000000000203041a000007da0420009c000011600000813d0000000104200039000000000043041b0000000000300435000007fc02200041000000000012041b00000008010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d000000000101043b000000000201041a0000000701000029000400000002001d000000000112004b000011ab0000413d00000008010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000115e0000613d000000070300002900000004020000290000000002320049000000000101043b000000000021041b0000000604000029000000000104041a000000000231004b000011c00000413d0000000001310049000000000014041b000000400100043d000000000031043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007ea04000041000000050500002900000000060000191e4e1e440000040f00000001012001900000115e0000613d000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000400100043d000000640210003900000801030000410000000000320435000000440210003900000802030000410000000000320435000000240210003900000024030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007f40300004100000000003204350000004402100039000007f5030000410000000000320435000000240210003900000024030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007f20300004100000000003204350000004402100039000007f3030000410000000000320435000000240210003900000022030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000000400100043d0000006402100039000007fd0300004100000000003204350000004402100039000007fe030000410000000000320435000000240210003900000022030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000007a10100004100000000001004350000001101000039000000040010043f000007a20100004100001e50000104300008000000000002000500000002001d000007dd01100197000100000001001d00000000001004350000000501000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000012550000613d000000000401043b0000000502000029000000000120004c000012630000613d0000000801000039000000000101041a000000000121004b000012750000413d000000000604041a000000000160004c00000000030000190000122e0000613d000000010100008a000300000001001d0000801001000039000200000001001d0000000005000019000400000004001d000000000165016f000000000265013f00000001022002700000000303000029000000000332013f000000000331004b0000125d0000213d000700000006001d000800000005001d0000000002120019000000000104041a000600000002001d000000000121004b000012570000a13d000000000040043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700000002020000291e4e1e490000040f0000000102200190000012550000613d000000000101043b00000006040000290000000001410019000000000101041a00000001024000390000000503000029000000000131004b0000000805000029000000000502a01900000007060000290000000006042019000000000165004b0000000404000029000011e90000413d000000000150004c00000000030000190000122e0000613d000800000005001d000000010250008a000000000104041a000700000002001d000000000121004b000012570000a13d000000000040043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f0000000102200190000012550000613d000000000101043b00000007050000290000000001510019000000000101041a0000000502000029000000000121004b000000080300002900000004040000290000122e0000c13d0000000003050019000000000104041a000000000113004b000012400000c13d00000001010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000012550000613d000000000101043b000012530000013d0000000101400039000000000201041a000800000003001d000000000232004b000012570000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f0000000102200190000012550000613d000000000101043b00000008020000290000000001210019000000000101041a000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000001101000039000000040010043f000007a20100004100001e5000010430000000400100043d000000440210003900000805030000410000000000320435000000240210003900000016030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e5000010430000000400100043d00000044021000390000080303000041000000000032043500000024021000390000001d030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e5000010430000000000210004c000012cc0000613d0000000802000039000000000202041a000000000212004b000012de0000413d0000000602000039000000000402041a000000000340004c0000000005000019000012b40000613d000000010500008a0000000003000019000000000643016f000000000743013f0000000107700270000000000857013f000000000886004b000012c60000213d0000000006670019000000000702041a000000000767004b000012c00000a13d0000000000200435000007fb07600041000000000707041a000000000717004b00000000040620190000000106600039000000000306a019000000000643004b000012940000413d000000000430004c0000000005000019000012b40000613d000000010430008a000000000502041a000000000545004b000012c00000a13d000007fa05300041000000000505041a000000000115004b0000000005030019000012b40000c13d00000000050400190000000201000039000000000202041a000000000225004b000012be0000613d0000000701000039000000000201041a000000000225004b000012c00000813d0000000000100435000007fc01500041000000000101041a000000000001042d000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000001101000039000000040010043f000007a20100004100001e5000010430000000400100043d000000440210003900000805030000410000000000320435000000240210003900000016030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e5000010430000000400100043d00000044021000390000080303000041000000000032043500000024021000390000001d030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e5000010430000e000000000002000500000007001d000300000006001d000400000005001d000d00000004001d000900000003001d000a00000002001d000b00000001001d0000080601000041000000000010043900000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007df011001c70000800b020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b0000000d02000029000000000121004b000014c30000213d0000000b01000029000007dd01100197000c00000001001d00000000001004350000000901000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b000000000201041a000800000002001d0000000102200039000000000021041b000000400100043d000700000001001d000008070100004100000000001004390000000001000412000e00000001001d0000000400100443000000c001000039000600000001001d000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000014bb0000613d00000007040000290000002002400039000000000101043b0000000000120435000000c0014000390000000d030000290000000000310435000000a0014000390000000803000029000000000031043500000080014000390000000903000029000000000031043500000040014000390000000c0300002900000000003104350000000a01000029000007dd031001970000006001400039000800000003001d000000000031043500000006010000290000000000140435000008090140009c000014bd0000813d000000e001400039000000400010043f0000079501000041000007950320009c000000000201801900000040022002100000000003040433000007950430009c00000000030180190000006003300210000000000223019f0000000003000414000007950430009c0000000001034019000000c001100210000000000121019f000007d8011001c700008010020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b000700000001001d000008070100004100000000001004390000000e0100002900000004001004430000004001000039000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b000007dd011001970000000002000410000600000002001d000000000112004b000013a90000c13d000008070100004100000000001004390000000e0100002900000004001004430000002001000039000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b000d00000001001d0000079d01000041000000000010043900000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007df011001c70000800b020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b0000000d02000029000000000121004b000013a90000c13d000008070100004100000000001004390000000e010000290000000400100443000000240000044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000014180000c13d000014bb0000013d000000400100043d000d00000001001d000008070100004100000000001004390000000e010000290000000400100443000000a001000039000200000001001d000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000014bb0000613d0000000d020000290000002002200039000000000101043b000100000002001d0000000000120435000008070100004100000000001004390000000e0100002900000004001004430000006001000039000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b0000000d0200002900000040022000390000000000120435000008070100004100000000001004390000000e0100002900000004001004430000008001000039000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b0000000d02000029000000600220003900000000001204350000079d01000041000000000010043900000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007df011001c70000800b020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b0000000d04000029000000a0024000390000000603000029000000000032043500000080024000390000000000120435000000020100002900000000001404350000080a0140009c000014bd0000213d0000000d03000029000000c001300039000000400010043f00000795010000410000000104000029000007950240009c0000000002010019000000000204401900000040022002100000000003030433000007950430009c00000000030180190000006003300210000000000223019f0000000003000414000007950430009c0000000001034019000000c001100210000000000121019f000007d8011001c700008010020000391e4e1e490000040f0000000102200190000014bb0000613d000000000301043b000000400100043d00000042021000390000000704000029000000000042043500000020021000390000080b04000041000000000042043500000022041000390000000000340435000000420300003900000000003104350000080c0310009c000014bd0000213d0000008003100039000000400030043f0000079503000041000007950420009c000000000203801900000040022002100000000001010433000007950410009c00000000010380190000006001100210000000000121019f0000000002000414000007950420009c0000000002038019000000c002200210000000000112019f000007d8011001c700008010020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b00000005040000290000080d0240009c000014d50000213d000000400500043d0000000402000029000000ff0220018f0000001b0320008a000000010330008c000014e60000213d00000060035000390000000000430435000000400350003900000003040000290000000000430435000000200350003900000000002304350000000000150435000000000000043500000795010000410000000002000414000007950320009c0000000002018019000007950350009c00000000010540190000004001100210000000c002200210000000000112019f0000080e011001c70000000102000039000e00000002001d1e4e1e490000040f000000000301001900000060033002700000079503300197000000200430008c000000200400003900000000040340190000001f0540018f00000005044002720000146c0000613d00000000060000190000000507600210000000000871034f000000000808043b00000000008704350000000106600039000000000746004b000014650000413d000000000650004c0000147a0000613d00000003055002100000000504400210000000000604043300000000065601cf000000000656022f000000000741034f000000000707043b0000010005500089000000000757022f00000000055701cf000000000565019f0000000000540435000100000003001f0000000102200190000014f60000613d0000000001000433000007dd011001980000151c0000613d0000000c02000029000000000121004b0000152d0000c13d000000000120004c0000153f0000613d0000000801000029000000000110004c000015540000613d00000000002004350000000e01000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b00000008020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000014bb0000613d000000000101043b0000000902000029000000000021041b000000400100043d000000000021043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007f1040000410000000b050000290000000a060000291e4e1e440000040f0000000101200190000014bb0000613d000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000400100043d00000044021000390000081003000041000000000032043500000024021000390000001d030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e5000010430000000400200043d000e00000002001d000007e301000041000000000012043500000004012000391e4e16d90000040f0000000e0400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e5000010430000007e30100004100000000001504350000000401500039000e00000005001d1e4e16cc0000040f0000000e0400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e5000010430000000400200043d0000001f0430018f0000000503300272000015030000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000014fb0000413d000000000540004c000015120000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000795010000410000000103000031000007950430009c0000000003018019000007950420009c000000000102401900000040011002100000006002300210000000000112019f00001e5000010430000000400200043d000e00000002001d000007e301000041000000000012043500000004012000391e4e16e60000040f0000000e0400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e5000010430000000400100043d00000044021000390000080f03000041000000000032043500000024021000390000001e030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e5000010430000000400100043d0000006402100039000007f40300004100000000003204350000004402100039000007f5030000410000000000320435000000240210003900000024030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007f20300004100000000003204350000004402100039000007f3030000410000000000320435000000240210003900000022030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000007dd0110019700000000001004350000000901000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f00000001022001900000157a0000613d000000000101043b000000000101041a000000000001042d000000000100001900001e5000010430000000000110004c0000157f0000613d000000000001042d000000400100043d000000440210003900000811030000410000000000320435000007e3020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e50000104300000000002010019000000400100043d000008120310009c000015cf0000813d0000006003100039000000400030043f0000002a03000039000000000331043600000000040000310000000204400367000000000500001900000005065002100000000007630019000000000664034f000000000606043b00000000006704350000000105500039000000020650008c0000159b0000413d0000000004010433000000000440004c000015c90000613d0000000004030433000008130440019700000814044001c700000000004304350000000004010433000000020440008c000015c90000413d00000021041000390000000005040433000008130550019700000815055001c70000000000540435000000290400003900000000050200190000000002010433000000000242004b000015c90000a13d0000000f0250018f0000000302200210000000f80220015f0000081606000041000000000226022f000000000634001900000000070604330000081307700197000000f802200210000000000227019f00000000002604350000000402500270000000010440008a000000010640008c000015b30000213d000000100250008c000015d50000813d000000000001042d000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000400100043d000000440210003900000811030000410000000000320435000007e3020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e5000010430000000400100043d000008170210009c0000161a0000813d0000008002100039000000400020043f0000004202000039000000000221043600000000030000310000000203300367000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000030540008c000015f00000413d0000000003010433000000000330004c000016140000613d0000000003020433000008130330019700000814033001c700000000003204350000000003010433000000020330008c000016140000413d00000021031000390000000004030433000008130440019700000815044001c7000000000043043500000041030000390000000004010433000000000434004b000016140000a13d00000000042300190000000005040433000008130550019700000814055001c70000000000540435000000010330008a000000010430008c000016080000213d000000000001042d000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000400100043d000008170210009c0000165f0000813d0000008002100039000000400020043f0000004202000039000000000221043600000000030000310000000203300367000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000030540008c0000162a0000413d0000000003010433000000000330004c000016590000613d0000000003020433000008130330019700000814033001c700000000003204350000000003010433000000020330008c000016590000413d00000021031000390000000004030433000008130440019700000815044001c70000000000430435000007d305000041000000410300003900000000040500190000000005010433000000000535004b000016590000a13d0000000f0540018f0000000305500210000000f80550015f0000081606000041000000000556022f000000000623001900000000070604330000081307700197000000f805500210000000000557019f00000000005604350000000405400270000000010330008a000000010630008c000016430000213d000000100240008c000016650000813d000000000001042d000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000400100043d000000440210003900000811030000410000000000320435000007e3020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e50000104300000000002010019000000400100043d000008170310009c000016b50000813d0000008003100039000000400030043f0000004203000039000000000331043600000000040000310000000204400367000000000500001900000005065002100000000007630019000000000664034f000000000606043b00000000006704350000000105500039000000030650008c000016810000413d0000000004010433000000000440004c000016af0000613d0000000004030433000008130440019700000814044001c700000000004304350000000004010433000000020440008c000016af0000413d00000021041000390000000005040433000008130550019700000815055001c70000000000540435000000410400003900000000050200190000000002010433000000000242004b000016af0000a13d0000000f0250018f0000000302200210000000f80220015f0000081606000041000000000226022f000000000634001900000000070604330000081307700197000000f802200210000000000227019f00000000002604350000000402500270000000010440008a000000010640008c000016990000213d000000100250008c000016bb0000813d000000000001042d000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000400100043d000000440210003900000811030000410000000000320435000007e3020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e5000010430000000600210003900000818030000410000000000320435000000400210003900000819030000410000000000320435000000200210003900000022030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d00000060021000390000081803000041000000000032043500000040021000390000081a030000410000000000320435000000200210003900000022030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d00000040021000390000081b030000410000000000320435000000200210003900000018030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0005000000000002000008070100004100000000001004390000000001000412000400000001001d00000004001004430000004001000039000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000017ab0000613d000000000101043b000007dd011001970000000002000410000300000002001d000000000112004b0000173a0000c13d00000807010000410000000000100439000000040100002900000004001004430000002001000039000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000017ab0000613d000000000101043b000500000001001d0000079d01000041000000000010043900000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007df011001c70000800b020000391e4e1e490000040f0000000102200190000017ab0000613d000000000101043b0000000502000029000000000121004b0000173a0000c13d0000080701000041000000000010043900000004010000290000000400100443000000240000044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000017a90000c13d000017ab0000013d000000400100043d000500000001001d0000080701000041000000000010043900000004010000290000000400100443000000a001000039000200000001001d000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000017ab0000613d00000005020000290000002002200039000000000101043b000100000002001d000000000012043500000807010000410000000000100439000000040100002900000004001004430000006001000039000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000017ab0000613d000000000101043b00000005020000290000004002200039000000000012043500000807010000410000000000100439000000040100002900000004001004430000008001000039000000240010044300000795010000410000000002000414000007950320009c0000000001024019000000c00110021000000808011001c700008005020000391e4e1e490000040f0000000102200190000017ab0000613d000000000101043b0000000502000029000000600220003900000000001204350000079d01000041000000000010043900000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007df011001c70000800b020000391e4e1e490000040f0000000102200190000017ab0000613d000000000101043b0000000504000029000000a002400039000000030300002900000000003204350000008002400039000000000012043500000002010000290000000000140435000007e00140009c000017ad0000813d0000000503000029000000c001300039000000400010043f00000795010000410000000104000029000007950240009c0000000002010019000000000204401900000040022002100000000003030433000007950430009c00000000030180190000006003300210000000000223019f0000000003000414000007950430009c0000000001034019000000c001100210000000000121019f000007d8011001c700008010020000391e4e1e490000040f0000000102200190000017ab0000613d000000000101043b000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e50000104300005000000000002000300000001001d00000000000004350000000a01000039000500000001001d000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d0000000002000411000000000101043b000200000002001d000007dd02200197000400000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b000000000101041a000000ff01100190000018c70000613d00000000000004350000000501000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b0000000302000029000007dd02200197000100000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b000000000101041a000000ff011001900000182e0000c13d00000000000004350000000501000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b00000001020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d020000390000000403000039000007de040000410000000005000019000000030600002900000002070000291e4e1e440000040f0000000101200190000018c50000613d00000000000004350000000501000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b0000000101100039000000000101041a000100000001001d00000000001004350000000501000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b00000004020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b000000000101041a000000ff01100190000018f70000613d00000000000004350000000501000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b00000004020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b000000000101041a000000ff01100190000018b10000613d00000000000004350000000501000029000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b00000004020000290000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000018c50000613d000000000101043b000000000201041a000001000300008a000000000232016f000000000021041b000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d020000390000000403000039000007e4040000410000000005000019000000020600002900000000070600191e4e1e440000040f0000000101200190000018c50000613d000000400100043d00000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f000007d8011001c70000800d0200003900000003030000390000081c04000041000000020500002900000003060000291e4e1e440000040f0000000101200190000018c50000613d000000000001042d000000000100001900001e500001043000000002010000291e4e15900000040f000300000001001d1e4e15e60000040f000000400400043d000500000004001d0000002002400039000007e1030000410000000000320435000400000001001d00000003010000290000000013010434000300000003001d00000037024000391e4e05f00000040f000000050100002900000003020000290000000001120019000007e20200004100000037031000390000000000230435000000480210003900000004010000291e4e07db0000040f00000005030000290000000002310049000000200120008a000000000013043500000000010300191e4e07ec0000040f000007e301000041000000400200043d000400000002001d0000000000120435000000040120003900000005020000291e4e05ff0000040f000000040400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e500001043000000004010000291e4e15900000040f000300000001001d00000001010000291e4e16760000040f000000400400043d000500000004001d0000002002400039000007e1030000410000000000320435000400000001001d00000003010000290000000013010434000300000003001d00000037024000391e4e05f00000040f000000050100002900000003020000290000000001120019000007e20200004100000037031000390000000000230435000000480210003900000004010000291e4e07db0000040f00000005030000290000000002310049000000200120008a000000000013043500000000010300191e4e07ec0000040f000007e301000041000000400200043d000400000002001d0000000000120435000000040120003900000005020000291e4e05ff0000040f000000040400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e50000104300003000000000002000007d30100004100000000001004350000000a01000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000019640000613d0000000002000411000000000101043b000300000002001d000007dd022001970000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f0000000102200190000019640000613d000000000101043b000000000101041a000000ff01100190000019660000613d0000000801000039000000000201041a0000000102200039000000000021041b000000400100043d000300000002001d000000000021043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d0200003900000001030000390000081d040000411e4e1e440000040f0000000101200190000019640000613d0000000301000029000000000001042d000000000100001900001e500001043000000003010000291e4e15900000040f000100000001001d1e4e16200000040f000000400400043d000300000004001d0000002002400039000007e1030000410000000000320435000200000001001d00000001010000290000000013010434000100000003001d00000037024000391e4e05f00000040f000000030100002900000001020000290000000001120019000007e20200004100000037031000390000000000230435000000480210003900000002010000291e4e07db0000040f00000003030000290000000002310049000000200120008a000000000013043500000000010300191e4e07ec0000040f000007e301000041000000400200043d000200000002001d0000000000120435000000040120003900000003020000291e4e05ff0000040f000000020400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e50000104300008000000000002000500000002001d000700000001001d000007d20100004100000000001004350000000a01000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001a820000613d000000000101043b0000000002000411000007dd02200197000800000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001a820000613d000000000101043b000000000101041a000000ff0110019000001a8a0000613d0000000701000029000007dd0110019800001a940000613d000600000001001d00000000001004350000000501000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001a820000613d000000000101043b000800000001001d00000006010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001a820000613d0000000802000039000300000002001d000000000302041a000000000101043b000000000101041a000200000001001d0000000802000029000000000402041a000000000140004c0000000001000019000400000003001d000019fa0000613d000100000004001d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000001a820000613d000000000101043b00000001020000290000000001120019000000010110008a000000000101041a00000008020000290000000403000029000000000131004b00001a300000813d000000000402041a0000079b0140009c00001a8e0000213d0000000101400039000000000012041b000000000102041a000100000004001d000000000141004b00001ac10000a13d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000001a820000613d000000000101043b000000010200002900000000012100190000000402000029000000000021041b00000008010000290000000101100039000000000301041a0000079b0230009c00001a8e0000213d0000000102300039000000000021041b000000000201041a000800000003001d000000000232004b00001ac10000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000001a820000613d000000000101043b000000080200002900000000012100190000000202000029000000000021041b0000000301000029000000000301041a0000000201000039000000000201041a0000000604000039000000000504041a000000000650004c000000000600001900001a3c0000613d0000000000400435000007fa05500041000000000605041a000000000536004b00001a4f0000813d000000000504041a0000079b0650009c00001a8e0000213d0000000106500039000000000064041b0000000000400435000007fb04500041000000000034041b0000000704000039000000000304041a0000079b0530009c00001a8e0000213d0000000105300039000000000054041b0000000000400435000007fc03300041000000000023041b000000010200008a0000000504000029000000000324013f000000000201041a000800000003001d000000000332004b00001a840000213d0000000002420019000000000021041b00000006010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001a820000613d000000000101043b000000000201041a0000000803000029000000000332004b000000050300002900001a840000213d0000000002320019000000000021041b000000400100043d000000000031043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007ea04000041000000000500001900000007060000291e4e1e440000040f000000010120019000001a820000613d000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000001101000039000000040010043f000007a20100004100001e5000010430000000400100043d0000000006010019000008120110009c00001aa60000413d000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000400100043d00000044021000390000081e03000041000000000032043500000024021000390000001f030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e500001043000000000020600190000006001200039000000400010043f0000002a01000039000000000812043600000000010000310000000201100367000000000200001900000005032002100000000004380019000000000331034f000000000303043b00000000003404350000000102200039000000020320008c00001aae0000413d00000000070600190000000001070433000000000110004c00001ac10000613d0000000001080433000008130110019700000814011001c700000000001804350000000001070433000000020110008c00001ac70000813d000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e500001043000000021017000390000000002010433000008130220019700000815022001c700000000002104350000002901000039000000080400002900000000020400190000000003070433000000000313004b00001ac10000a13d0000000f0320018f0000000303300210000000f80330015f0000081604000041000000000334022f000000000481001900000000050404330000081305500197000000f803300210000000000335019f00000000003404350000000404200270000000010110008a000000010310008c00001ace0000213d000000400900043d000000100120008c00001b4e0000813d0000080c0190009c00001a8e0000213d00000000020900190000008001200039000000400010043f0000004201000039000000000112043600000000020000310000000202200367000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000030430008c00001aee0000413d0000000002090433000000000220004c000000000706001900001ac10000613d0000000002010433000008130220019700000814022001c700000000002104350000000002090433000000020220008c00001ac10000413d00000021029000390000000003020433000008130330019700000815033001c70000000000320435000007d204000041000000410200003900000000030400190000000004090433000000000424004b00001ac10000a13d0000000f0430018f0000000304400210000000f80440015f0000081605000041000000000445022f000000000512001900000000060504330000081306600197000000f804400210000000000446019f00000000004504350000000404300270000000010220008a000000010520008c00001b080000213d000000100130008c00000000010000190000000101004039000500000007001d000600000008001d000700000009001d1e4e157c0000040f000000400400043d000800000004001d0000002001400039000007e102000041000000000021043500000005010000290000000003010433000500000003001d000000370240003900000006010000291e4e05f00000040f000000080100002900000005020000290000000001120019000007e20200004100000037031000390000000000230435000000480210003900000007010000291e4e07db0000040f00000008030000290000000002310049000000200120008a000000000013043500000000010300191e4e07ec0000040f000007e301000041000000400200043d000700000002001d0000000000120435000000040120003900000008020000291e4e05ff0000040f000000070400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e5000010430000000440190003900000811020000410000000000210435000007e3010000410000000000190435000000240190003900000020020000390000000000210435000000040190003900000000002104350000079501000041000007950290009c0000000001094019000000400110021000000804011001c700001e50000104300009000000000002000800000003001d000600000002001d000700000001001d000007d20100004100000000001004350000000a01000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b0000000002000411000007dd02200197000900000002001d0000000000200435000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b000000000101041a000000ff0110019000001d460000613d0000000701000029000007dd021001970000000601000029000000000110004c000900000002001d00001c4f0000613d000000000120004c00001d500000613d00000000002004350000000501000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b000500000001001d00000009010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d0000000802000039000300000002001d000000000302041a000000000101043b000000000101041a000200000001001d0000000502000029000000000402041a000000000140004c0000000001000019000400000003001d00001bc70000613d000100000004001d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b00000001020000290000000001120019000000010110008a000000000101041a00000005020000290000000403000029000000000131004b00001bfd0000813d000000000402041a0000079b0140009c00001d4a0000213d0000000101400039000000000012041b000000000102041a000100000004001d000000000141004b00001d7d0000a13d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b000000010200002900000000012100190000000402000029000000000021041b00000005010000290000000101100039000000000301041a0000079b0230009c00001d4a0000213d0000000102300039000000000021041b000000000201041a000500000003001d000000000232004b00001d7d0000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b000000050200002900000000012100190000000202000029000000000021041b0000000301000029000000000301041a0000000201000039000000000201041a0000000604000039000000000504041a000000000650004c000000000600001900001c090000613d0000000000400435000007fa05500041000000000605041a000000000536004b00001c1c0000813d000000000504041a0000079b0650009c00001d4a0000213d0000000106500039000000000064041b0000000000400435000007fb04500041000000000034041b0000000704000039000000000304041a0000079b0530009c00001d4a0000213d0000000105300039000000000054041b0000000000400435000007fc03300041000000000023041b000000010200008a0000000804000029000000000324013f000000000201041a000500000003001d000000000332004b00001d400000213d0000000002420019000000000021041b00000009010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b000000000201041a0000000503000029000000000332004b000000080300002900001d400000213d0000000002320019000000000021041b000000400100043d000000000031043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007ea04000041000000000500001900000007060000291e4e1e440000040f000000010120019000001d210000c13d00001d3e0000013d000000000120004c00001d830000613d00000000002004350000000501000039000000200010043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b000500000001001d00000009010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d0000000802000039000300000002001d000000000302041a000000000101043b000000000101041a000200000001001d0000000502000029000000000402041a000000000140004c0000000001000019000400000003001d00001c8c0000613d000100000004001d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b00000001020000290000000001120019000000010110008a000000000101041a00000005020000290000000403000029000000000131004b00001cc20000813d000000000402041a0000079b0140009c00001d4a0000213d0000000101400039000000000012041b000000000102041a000100000004001d000000000141004b00001d7d0000a13d000000000020043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b000000010200002900000000012100190000000402000029000000000021041b00000005010000290000000101100039000000000301041a0000079b0230009c00001d4a0000213d0000000102300039000000000021041b000000000201041a000500000003001d000000000232004b00001d7d0000a13d000000000010043500000795010000410000000002000414000007950320009c0000000001024019000000c0011002100000079c011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b000000050200002900000000012100190000000202000029000000000021041b0000000301000029000000000201041a0000000201000039000500000001001d000000000101041a0000000603000039000000000403041a000000000540004c000000000500001900001ccf0000613d0000000000300435000007fa04400041000000000504041a000000000425004b00001ce20000813d000000000403041a0000079b0540009c00001d4a0000213d0000000105400039000000000053041b0000000000300435000007fb03400041000000000023041b0000000703000039000000000203041a000007da0420009c00001d4a0000813d0000000104200039000000000043041b0000000000300435000007fc02200041000000000012041b00000009010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000000101043b000000000201041a0000000801000029000400000002001d000000000112004b00001d980000413d00000009010000290000000000100435000000200000043f00000795010000410000000002000414000007950320009c0000000001024019000000c001100210000007db011001c700008010020000391e4e1e490000040f000000010220019000001d3e0000613d000000080300002900000004020000290000000002320049000000000101043b000000000021041b0000000504000029000000000104041a000000000231004b00001d400000413d0000000001310049000000000014041b000000400100043d000000000031043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000079c011001c70000800d020000390000000303000039000007ea04000041000000070500002900000000060000191e4e1e440000040f000000010120019000001d3e0000613d000000400100043d0000004002100039000000080300002900000000003204350000000602000029000000000220004c0000000002000019000000010200c039000000200310003900000000002304350000000902000029000000000021043500000795020000410000000003000414000007950430009c0000000003028019000007950410009c00000000010280190000004001100210000000c002300210000000000112019f0000081f011001c70000800d02000039000000010300003900000820040000411e4e1e440000040f000000010120019000001d3e0000613d000000000001042d000000000100001900001e5000010430000007a10100004100000000001004350000001101000039000000040010043f000007a20100004100001e5000010430000000400100043d0000000006010019000008120110009c00001d620000413d000007a10100004100000000001004350000004101000039000000040010043f000007a20100004100001e5000010430000000400100043d00000044021000390000081e03000041000000000032043500000024021000390000001f030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c0000000001028019000000400110021000000804011001c700001e500001043000000000020600190000006001200039000000400010043f0000002a01000039000000000812043600000000010000310000000201100367000000000200001900000005032002100000000004380019000000000331034f000000000303043b00000000003404350000000102200039000000020320008c00001d6a0000413d00000000070600190000000001070433000000000110004c00001d7d0000613d0000000001080433000008130110019700000814011001c700000000001804350000000001070433000000020110008c00001dad0000813d000007a10100004100000000001004350000003201000039000000040010043f000007a20100004100001e5000010430000000400100043d0000006402100039000007ff030000410000000000320435000000440210003900000800030000410000000000320435000000240210003900000021030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e5000010430000000400100043d0000006402100039000007fd0300004100000000003204350000004402100039000007fe030000410000000000320435000000240210003900000022030000390000000000320435000007e30200004100000000002104350000000402100039000000200300003900000000003204350000079502000041000007950310009c00000000010280190000004001100210000007e7011001c700001e500001043000000021017000390000000002010433000008130220019700000815022001c700000000002104350000002901000039000000090400002900000000020400190000000003070433000000000313004b00001d7d0000a13d0000000f0320018f0000000303300210000000f80330015f0000081604000041000000000334022f000000000481001900000000050404330000081305500197000000f803300210000000000335019f00000000003404350000000404200270000000010110008a000000010310008c00001db40000213d000000400900043d000000100120008c00001e340000813d0000080c0190009c00001d4a0000213d00000000020900190000008001200039000000400010043f0000004201000039000000000112043600000000020000310000000202200367000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000030430008c00001dd40000413d0000000002090433000000000220004c000000000706001900001d7d0000613d0000000002010433000008130220019700000814022001c700000000002104350000000002090433000000020220008c00001d7d0000413d00000021029000390000000003020433000008130330019700000815033001c70000000000320435000007d204000041000000410200003900000000030400190000000004090433000000000424004b00001d7d0000a13d0000000f0430018f0000000304400210000000f80440015f0000081605000041000000000445022f000000000512001900000000060504330000081306600197000000f804400210000000000446019f00000000004504350000000404300270000000010220008a000000010520008c00001dee0000213d000000100130008c00000000010000190000000101004039000600000007001d000700000008001d000800000009001d1e4e157c0000040f000000400400043d000900000004001d0000002001400039000007e102000041000000000021043500000006010000290000000003010433000600000003001d000000370240003900000007010000291e4e05f00000040f000000090100002900000006020000290000000001120019000007e20200004100000037031000390000000000230435000000480210003900000008010000291e4e07db0000040f00000009030000290000000002310049000000200120008a000000000013043500000000010300191e4e07ec0000040f000007e301000041000000400200043d000800000002001d0000000000120435000000040120003900000009020000291e4e05ff0000040f000000080400002900000000014100490000079502000041000007950310009c0000000001028019000007950340009c000000000204401900000040022002100000006001100210000000000121019f00001e5000010430000000440190003900000811020000410000000000210435000007e3010000410000000000190435000000240190003900000020020000390000000000210435000000040190003900000000002104350000079501000041000007950290009c0000000001094019000000400110021000000804011001c700001e500001043000001e47002104210000000102000039000000000001042d0000000002000019000000000001042d00001e4c002104230000000102000039000000000001042d0000000002000019000000000001042d00001e4e0000043200001e4f0001042e00001e500001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffc07a6b53796e632045726120546955534400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf7a6b2d54695553440000000000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff02000000000000000000000000000000000000200000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c900000002000000000000000000000000000002000000010000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000d505acce00000000000000000000000000000000000000000000000000000000d547741e00000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000d505accf00000000000000000000000000000000000000000000000000000000d539139300000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000bf3ca58f00000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a457c2d70000000000000000000000000000000000000000000000000000000091d148530000000000000000000000000000000000000000000000000000000097117159000000000000000000000000000000000000000000000000000000009711715a00000000000000000000000000000000000000000000000000000000981b24d00000000000000000000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000007ecebdff000000000000000000000000000000000000000000000000000000007ecebe00000000000000000000000000000000000000000000000000000000008eec99c80000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079cc679000000000000000000000000000000000000000000000000000000000313ce5660000000000000000000000000000000000000000000000000000000040c10f18000000000000000000000000000000000000000000000000000000004ee2cd7d000000000000000000000000000000000000000000000000000000004ee2cd7e000000000000000000000000000000000000000000000000000000007028e2cd0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000036568abd0000000000000000000000000000000000000000000000000000000036568abe000000000000000000000000000000000000000000000000000000003950935100000000000000000000000000000000000000000000000000000000313ce567000000000000000000000000000000000000000000000000000000003644e5150000000000000000000000000000000000000000000000000000000018160ddc00000000000000000000000000000000000000000000000000000000248a9ca200000000000000000000000000000000000000000000000000000000248a9ca3000000000000000000000000000000000000000000000000000000002f2ff15d0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000002000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a65fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07fffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000007965db0b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000000200000000000000000000000000000000000000000000000000000000000000020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000040000000000000000000000000bd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff000000000000000000000000ffffffffffffffffffffffffffffffffffffffff2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d0200000200000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff40416363657373436f6e74726f6c3a206163636f756e7420000000000000000000206973206d697373696e6720726f6c652000000000000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b20726f6c657320666f722073656c660000000000000000000000000000000000416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e63650000000000000000000000000000000000000084000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19bddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164646c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732061207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3ef652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573616e63650000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e74206578636565647320616c6c6f774552433230536e617073686f743a206e6f6e6578697374656e7420696400000000000000000000000000000000000000000000640000000000000000000000004552433230536e617073686f743a206964206973203000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff20000000000000000000000000000000000000000000000000ffffffffffffff3f1901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0000000000000000000000000000000000000008000000000000000000000000045524332305065726d69743a20696e76616c6964207369676e6174757265000045524332305065726d69743a206578706972656420646561646c696e65000000537472696e67733a20686578206c656e67746820696e73756666696369656e74000000000000000000000000000000000000000000000000ffffffffffffffa000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff300000000000000000000000000000000000000000000000000000000000000078000000000000000000000000000000000000000000000000000000000000003031323334353637383961626364656600000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff80756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202776272076616c45434453413a20696e76616c6964207369676e6174757265202773272076616c45434453413a20696e76616c6964207369676e61747572650000000000000000f9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6745524332303a206d696e7420746f20746865207a65726f20616464726573730002000000000000000000000000000000000000600000000000000000000000004a1e5b8962d5e50bc0ed620496e15ff9094979a98d9372c2fe235ceeb623b8db0000000000000000000000000000000000000000000000000000000000000000ec3a656e0b2054b8d6cb3002b1124e3dfb68742d7b2d51837ef684f14cbc43d2

[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.