Sophon Testnet

Contract

0x035Ea89C3A64c05d3a7C893479C9512C32a5eb64

Overview

SOPH Balance

Sophon Sepolia  LogoSophon Sepolia  LogoSophon Sepolia  Logo0 SOPH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To

There are no matching entries

2 Internal Transactions found.

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
7069322025-03-12 7:52:3423 days ago1741765954
0x035Ea89C...C32a5eb64
0 SOPH
7069322025-03-12 7:52:3423 days ago1741765954  Contract Creation0 SOPH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
EventImplementation

Compiler Version
v0.8.27+commit.40a35a09

ZkSolc Version
v1.5.12

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 40 : EventImplementation.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { EventERC721CUpgradeableBase } from "./abstract/EventERC721CUpgradeableBase.sol";
import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
import { IEventImplementation, IERC721 } from "./interfaces/IEventImplementation.sol";
import { IRouterRegistry } from "./interfaces/IRouterRegistry.sol";
import { IFuelRouter } from "./interfaces/IFuelRouter.sol";
import { IRegistry, IActionsProcessor } from "./interfaces/IRegistry.sol";
import { IEventEmitter } from "./interfaces/IEventEmitter.sol";
// import { IEventERC721CStorageProxy } from "./interfaces/IEventERC721CStorageProxy.sol";

contract EventImplementation is IEventImplementation, EventERC721CUpgradeableBase {
    using Strings for uint256;
    IRegistry private registry;
    address private eventEmitter;
    address private actionsProcessor;

    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor() initializer {}

    function __EventImplementation_init(
        string calldata _name_,
        string calldata _symbol_,
        address _registry,
        address _storageProxy
    ) external initializer {
        __EventERC721CUpgradeableBase_init(_name_, _symbol_, _storageProxy);
        __EventImplementation_init_unchained(_registry);
    }

    modifier onlyRelayer() {
        registry.auth().hasRelayerRole(msg.sender);
        _;
    }

    modifier onlyEventFactory() {
        registry.auth().hasEventFactoryRole(msg.sender);
        _;
    }

    function __EventImplementation_init_unchained(address _registry) internal initializer {
        registry = IRegistry(_registry);
        eventEmitter = registry.eventEmitterAddress();
        actionsProcessor = address(registry.actionsProcessor());
    }
    /**
     * @notice Performs all ticket interractions via an integrator's relayer
     * @dev Performs ticket actions based on the array of action counts
     *
     * @dev Each value in the actionCounts array corresponds to the number of a specific ticket action to be performed
     *
     * @dev Can only be called by an integrator's relayer
     * @param _ticketActions array of TicketAction structs for which a ticket action is performed
     * @param _actionCounts integer array corresponding to specific ticket action to be performed on the ticketActions
     */
    function batchActions(
        TicketAction[] calldata _ticketActions,
        uint8[] calldata _actionCounts,
        uint64[] calldata _actionIds
    ) external onlyRelayer {
        _batchActions(_ticketActions, _actionCounts, _actionIds, msg.sender);
    }

    /**
     * @notice Performs all ticket interractions via EventFactory contract
     * @dev Performs ticket actions based on the array of action counts
     *
     * @dev Each value in the actionCounts array corresponds to the number of a specific ticket action to be performed
     *
     * @dev Can only be called by an EventFactory contract
     * @param _ticketActions array of TicketAction structs for which a ticket action is performed
     * @param _actionCounts integer array corresponding to specific ticket action to be performed on the ticketActions
     */
    function batchActionsFromFactory(
        TicketAction[] calldata _ticketActions,
        uint8[] calldata _actionCounts,
        uint64[] calldata _actionIds,
        address _messageSender
    ) external onlyEventFactory {
        _batchActions(_ticketActions, _actionCounts, _actionIds, _messageSender);
    }

    // solhint-disable-next-line code-complexity
    function _batchActions(
        TicketAction[] calldata _ticketActions,
        uint8[] calldata _actionCounts,
        uint64[] calldata _actionIds,
        address _messageSender
    ) internal {
        IRouterRegistry _routerRegistry = IRouterRegistry(registry.routerRegistry());

        IFuelRouter _router = IFuelRouter(_routerRegistry.returnEventToRouter(address(this), _messageSender));

        uint256 _start = 0;

        for (uint256 _actionType = 0; _actionType < _actionCounts.length; ++_actionType) {
            uint256 _end = _start + _actionCounts[_actionType];

            if (_actionCounts[_actionType] != 0) {
                if (_actionType == 0) {
                    _primarySale(_ticketActions[_start:_end], _actionIds, _router);
                } else if (_actionType == 1) {
                    _secondarySale(_ticketActions[_start:_end], _actionIds, _router);
                } else if (_actionType == 2) {
                    _scan(_ticketActions[_start:_end], _actionIds);
                } else if (_actionType == 3) {
                    _checkIn(_ticketActions[_start:_end], _actionIds);
                } else if (_actionType == 4) {
                    _invalidate(_ticketActions[_start:_end], _actionIds);
                } else if (_actionType == 5) {
                    _claim(_ticketActions[_start:_end], _actionIds);
                } else if (_actionType == 6) {
                    _transfer(_ticketActions[_start:_end], _actionIds);
                }
                _start = _end;
            }
        }
    }

    /**
     * @notice Initiates a primary sale for a batch of tickets
     * @param _ticketActions Array of TicketAction structs containing ticket details
     * @param _actionIds Array of action IDs for the primary sale
     * @param _router The fuel router to use for the primary sale
     */
    function _primarySale(
        TicketAction[] calldata _ticketActions,
        uint64[] calldata _actionIds,
        IFuelRouter _router
    ) internal {
        IActionsProcessor _actionsProcessor = registry.actionsProcessor();
        _actionsProcessor.primarySale(address(storageProxy), _ticketActions, _actionIds, _router);
    }

    /**
     * @notice Initiates a secondary sale for a batch of tickets
     * @param _ticketActions Array of TicketAction structs containing ticket details
     * @param _actionIds Array of action IDs for the secondary sale
     * @param _router The fuel router to use for the secondary sale
     */
    function _secondarySale(
        TicketAction[] calldata _ticketActions,
        uint64[] calldata _actionIds,
        IFuelRouter _router
    ) internal {
        IActionsProcessor _actionsProcessor = registry.actionsProcessor();
        _actionsProcessor.secondarySale(address(storageProxy), _ticketActions, _actionIds, _router);
    }

    /**
     * @notice Initiates a scan for a batch of tickets
     * @param _ticketActions Array of TicketAction structs containing ticket details
     * @param _actionIds Array of action IDs for the scan
     */
    function _scan(TicketAction[] calldata _ticketActions, uint64[] calldata _actionIds) internal {
        IActionsProcessor _actionsProcessor = registry.actionsProcessor();
        _actionsProcessor.scan(address(storageProxy), _ticketActions, _actionIds);
    }

    /**
     * @notice Initiates a check-in for a batch of tickets
     * @param _ticketActions Array of TicketAction structs containing ticket details
     * @param _actionIds Array of action IDs for the check-in
     */
    function _checkIn(TicketAction[] calldata _ticketActions, uint64[] calldata _actionIds) internal {
        IActionsProcessor _actionsProcessor = registry.actionsProcessor();
        _actionsProcessor.checkIn(address(storageProxy), _ticketActions, _actionIds);
    }

    /**
     * @notice Initiates an invalidation for a batch of tickets
     * @param _ticketActions Array of TicketAction structs containing ticket details
     * @param _actionIds Array of action IDs for the invalidation
     */
    function _invalidate(TicketAction[] calldata _ticketActions, uint64[] calldata _actionIds) internal {
        IActionsProcessor _actionsProcessor = registry.actionsProcessor();
        _actionsProcessor.invalidate(address(storageProxy), _ticketActions, _actionIds);
    }

    /**
     * @notice Initiates a claim for a batch of tickets
     * @param _ticketActions Array of TicketAction structs containing ticket details
     * @param _actionIds Array of action IDs for the claim
     */
    function _claim(TicketAction[] calldata _ticketActions, uint64[] calldata _actionIds) internal {
        IActionsProcessor _actionsProcessor = registry.actionsProcessor();
        _actionsProcessor.claim(address(storageProxy), _ticketActions, _actionIds);
    }

    function setEventData(IEventImplementation.EventData calldata _eventData) external onlyEventFactory {
        storageProxy.setEventDataStorageProxy(_eventData);
        IEventEmitter(eventEmitter).emitEventDataSet(_eventData);
    }

    function updateEventData(IEventImplementation.EventData calldata _eventData) external onlyRelayer {
        storageProxy.updateEventDataStorageProxy(_eventData);
        IEventEmitter(eventEmitter).emitEventDataUpdated(_eventData);
    }

    function setFinancing(IEventImplementation.EventFinancing calldata _financing) external onlyEventFactory {
        storageProxy.setFinancingStorageProxy(_financing);
    }

    function setTokenRoyaltyDefault(address _receiver, uint96 _feeNominator) external onlyEventFactory {
        storageProxy.setTokenRoyaltyDefaultStorageProxy(_receiver, _feeNominator);
    }

    function setExceptionTokenRoyalty(
        address _receiver,
        uint256 _tokenId,
        uint96 _feeNominator
    ) external onlyEventFactory {
        // note if we need room, this one can be removed or called directly to the storage slot
        storageProxy.setExceptionTokenRoyaltyStorageProxy(_receiver, _tokenId, _feeNominator);
    }

    function deleteRoyaltyInfoDefault() external onlyEventFactory {
        // note if we need room, this one can be removed or called directly to the storage slot
        storageProxy.deleteRoyaltyInfoDefaultStorageProxy();
    }

    function deleteRoyaltyException(uint256 _tokenId) external onlyEventFactory {
        // note if we need room, this one can be removed or called directly to the storage slot
        storageProxy.deleteRoyaltyExceptionStorageProxy(_tokenId);
    }

    /**
     * @notice Initiates a transfer for a batch of tickets
     * @param _ticketActions Array of TicketAction structs containing ticket details
     * @param _actionIds Array of action IDs for the transfer
     */
    function _transfer(TicketAction[] calldata _ticketActions, uint64[] calldata _actionIds) internal {
        IActionsProcessor _actionsProcessor = registry.actionsProcessor();
        _actionsProcessor.transfer(address(storageProxy), _ticketActions, _actionIds);
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        if (!_exists(_tokenId)) {
            if (!storageProxy.isInvalidatedStorageProxy(_tokenId)) {
                revert("ERC721Metadata: URI query for nonexistent token");
            }
        }
        IEventImplementation.EventData memory eventData = storageProxy.getEventDataStorageProxy();
        string memory _uri = _baseURI();
        return
            bytes(_uri).length > 0
                ? string(abi.encodePacked(_uri, uint256(eventData.index).toString(), "/", _tokenId.toString()))
                : "";
    }

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

    function ownerOf(
        uint256 _tokenId
    ) public view virtual override(IERC721, EventERC721CUpgradeableBase) returns (address _owner) {
        _owner = storageProxy.getTokenDataStorageProxy(_tokenId).owner;
        require(_owner != address(0), "ERC721: owner query for nonexistent token");
        return _owner;
    }

    function mint(TicketAction calldata _ticketAction) public override(IEventImplementation) {
        require(msg.sender == actionsProcessor, "EventImplementation: only actions processor can mint");
        _mint(_ticketAction);
    }

    function burn(uint256 _tokenId) public override(IEventImplementation) {
        require(msg.sender == actionsProcessor, "EventImplementation: only actions processor can burn");
        _burn(_tokenId);
    }

    function transfer(
        address _from,
        address _to,
        uint256 _tokenId
    ) public override(EventERC721CUpgradeableBase, IEventImplementation) {
        require(msg.sender == actionsProcessor, "EventImplementation: only actions processor can transfer");
        super.transfer(_from, _to, _tokenId);
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address _from,
        address _to,
        uint256 _tokenId
    ) public virtual override(EventERC721CUpgradeableBase, IERC721) {
        // check if the token is unlocked
        if (!storageProxy.isUnlockedStorageProxy(_tokenId)) {
            revert("EventImplementation: ticket must be unlocked");
        }
        return super.transferFrom(_from, _to, _tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address _from,
        address _to,
        uint256 _tokenId
    ) public virtual override(EventERC721CUpgradeableBase, IERC721) {
        // TODO add additional validation if needed - look into this
        // require(isUnlocked(_tokenId), "EventImplementation: ticket must be unlocked");
        IEventEmitter(eventEmitter).emitTicketTransferred(_tokenId, _from, _to);
        return super.safeTransferFrom(_from, _to, _tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address _from,
        address _to,
        uint256 _tokenId,
        bytes memory _data
    ) public virtual override(EventERC721CUpgradeableBase, IERC721) {
        // TODO add additional validation if needed - look into this
        // require(isUnlocked(_tokenId), "EventImplementation: ticket must be unlocked");
        IEventEmitter(eventEmitter).emitTicketTransferred(_tokenId, _from, _to);
        return super.safeTransferFrom(_from, _to, _tokenId, _data);
    }

    function transferByRouter(address _from, address _to, uint256 _tokenId) external {
        registry.isValidTicketRouterCheck(msg.sender);
        IEventEmitter(eventEmitter).emitTicketTransferred(_tokenId, _from, _to);
        return super.safeTransferFrom(_from, _to, _tokenId);
    }

    /**
     * @notice Returns contract owner
     * @dev Not a full Ownable implementation, used to return a static owner for marketplace config only
     * @return _owner owner address
     */
    function owner() public view virtual returns (address) {
        return address(0x3aFdff6fCDD01E7DA59c615D3958C5fEc0e889Fd);
    }

    /**
     * @notice Sets the default royalty for the contract
     * @dev Can only be called by the EventFactory contract
     * @param _royaltySplitter Address to receive royalties
     * @param _royaltyFee Royalty fee in basis points
     */
    function setDefaultRoyalty(address _royaltySplitter, uint96 _royaltyFee) external onlyEventFactory {
        storageProxy.setDefaultRoyaltyStorageProxy(_royaltySplitter, _royaltyFee);
    }

    /**
     * @notice Sets a token-specific royalty
     * @dev Can only be called by the EventFactory contract
     * @param _tokenId Token ID to set royalty for
     * @param _royaltySplitter Address to receive royalties
     * @param _royaltyFee Royalty fee in basis points
     */
    function setTokenRoyalty(uint256 _tokenId, address _royaltySplitter, uint96 _royaltyFee) external onlyEventFactory {
        storageProxy.setTokenRoyaltyStorageProxy(_tokenId, _royaltySplitter, _royaltyFee);
    }

    function setAutomaticApprovalOfTransfersFromValidator(bool autoApprove) external onlyEventFactory {
        storageProxy.setAutoApproveTransfersFromValidatorStorageProxy(autoApprove);
        // emit AutomaticApprovalOfTransferValidatorSet(autoApprove);
    }

    // function _requireCallerIsContractOwner() internal view override onlyEventFactory {}
}

File 2 of 40 : EventERC721CUpgradeableBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { ERC2981 } from "@openzeppelin/contracts/token/common/ERC2981.sol";
import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import { IERC721 } from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import { IERC721Receiver } from "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import { IERC721Metadata } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import { Address } from "@openzeppelin/contracts/utils/Address.sol";
import { Context } from "./Context.sol";
import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
import { Initializable } from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
import { IEventImplementation } from "../interfaces/IEventImplementation.sol";
import { ICreatorToken } from "../interfaces/ICreatorToken.sol";
import { ICreatorTokenLegacy } from "../interfaces/ICreatorTokenLegacy.sol";
import { IEventERC721CStorageProxy } from "../interfaces/IEventERC721CStorageProxy.sol";

abstract contract EventERC721CUpgradeableBase is Initializable, Context, ERC2981, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    IEventERC721CStorageProxy public storageProxy;

    uint256 constant TOKEN_TYPE_ERC721 = 721;

    event AutomaticApprovalOfTransferValidatorSet(bool autoApproved);

    function __EventERC721CUpgradeableBase_init(
        string memory name_,
        string memory symbol_,
        address _storageProxy
    ) internal initializer {
        storageProxy = IEventERC721CStorageProxy(_storageProxy);
        // _emitDefaultTransferValidator();
        // _registerTokenType(getTransferValidator());
        __ERC721_init_unchained(name_, symbol_);
    }

    function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer {
        storageProxy.initContract(name_, symbol_);
    }

    // These functions should be uncommented as they're used in the storage proxy pattern
    // function setDefaultRoyalty(address _receiver, uint96 _royaltyFraction) external {
    //     _requireCallerIsContractOwner();
    //     storageProxy.setDefaultRoyalty(_receiver, _royaltyFraction);
    // }

    // function setTokenRoyalty(uint256 _tokenId, address _receiver, uint96 _royaltyFraction) external {
    //     _requireCallerIsContractOwner();
    //     storageProxy.setTokenRoyalty(_tokenId, _receiver, _royaltyFraction);
    // }

    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return storageProxy.getAddressDataStorageProxy(owner).balance;
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = storageProxy.getTokenDataStorageProxy(tokenId).owner;
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    function name() public view virtual override returns (string memory) {
        return storageProxy.getNameStorageProxy();
    }

    function symbol() public view virtual override returns (string memory) {
        return storageProxy.getSymbolStorageProxy();
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = EventERC721CUpgradeableBase.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return storageProxy.getTokenApprovalStorageProxy(tokenId);
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        storageProxy.setOperatorApprovalStorageProxy(_msgSender(), operator, approved);
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        if (storageProxy.getOperatorApprovalStorageProxy(owner, operator)) {
            return true;
        }

        if (operator == address(storageProxy.getActionProcessorStorageProxy())) {
            return true;
        }

        if (storageProxy.getAutoApproveTransfersFromValidatorStorageProxy()) {
            if (operator == address(storageProxy.getTransferValidatorStorageProxy())) {
                return true;
            }

            // return
            //     operator == address(storageProxy.getTransferValidator()) ||
            //     operator == address(storageProxy.getActionProcessor());
        }

        return false;
    }

    function transfer(address from, address to, uint256 tokenId) public virtual {
        _transfer(from, to, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return storageProxy.getTokenDataStorageProxy(tokenId).owner != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = EventERC721CUpgradeableBase.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    function _safeMint(IEventImplementation.TicketAction memory ticketAction) internal virtual {
        _safeMint(ticketAction, "");
    }

    function _safeMint(IEventImplementation.TicketAction memory ticketAction, bytes memory _data) internal virtual {
        _mint(ticketAction);
        require(
            _checkOnERC721Received(address(0), ticketAction.to, ticketAction.tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    function _mint(IEventImplementation.TicketAction memory ticketAction) internal virtual {
        require(ticketAction.to != address(0), "ERC721: mint to the zero address");
        require(!_exists(ticketAction.tokenId), "ERC721: token already minted");

        // _beforeTokenTransfer(address(0), ticketAction.to, ticketAction.tokenId);

        storageProxy.setTokenDataStorageProxy(
            ticketAction.tokenId,
            IEventImplementation.TokenData(ticketAction.to, ticketAction.basePrice, 0)
        );

        // this can be made more efficient by using the storageProxy.mintStorageProxy() function, could be only 1 e
        IEventImplementation.AddressData memory addressData = storageProxy.getAddressDataStorageProxy(ticketAction.to);

        addressData.balance += 1;

        storageProxy.setAddressDataStorageProxy(ticketAction.to, addressData);

        emit Transfer(address(0), ticketAction.to, ticketAction.tokenId);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = EventERC721CUpgradeableBase.ownerOf(tokenId);

        // _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        // replacement for all the lines below
        storageProxy.burnTokenDataStorageProxy(tokenId);

        // _afterTokenTransfer(owner, address(0), tokenId);

        emit Transfer(owner, address(0), tokenId);
    }

    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        // _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner

        _approve(address(0), tokenId);

        // update storage data
        storageProxy.manageTokenTransferStorageProxy(tokenId, from, to);

        // _afterTokenTransfer(from, to, tokenId);

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        storageProxy.setTokenApprovalStorageProxy(tokenId, to);
        emit Approval(EventERC721CUpgradeableBase.ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal returns (bool) {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual {
        _validateBeforeTransfer(from, to, tokenId);
    }

    function _afterTokenTransfer(address from, address to, uint256 firstTokenId) internal virtual {
        _validateAfterTransfer(from, to, firstTokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC2981) returns (bool) {
        return
            interfaceId == type(ICreatorToken).interfaceId ||
            interfaceId == type(ICreatorTokenLegacy).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function getTransferValidationFunction() external pure returns (bytes4 functionSignature, bool isViewFunction) {
        functionSignature = bytes4(keccak256("validateTransfer(address,address,address,uint256)"));
        isViewFunction = true;
    }

    // This function should be uncommented for proper token type handling
    function _tokenType() internal pure returns (uint16) {
        return uint16(TOKEN_TYPE_ERC721);
    }

    // These initialization functions should be uncommented
    // function _emitDefaultTransferValidator() internal {
    //     // emit DefaultTransferValidatorSet(address(0));
    // }

    function _registerTokenType(address validator) internal {
        // TODO add additional validation if needed - look into this
        // storageProxy.setTransferValidatorStorageProxy(validator);
    }

    function _validateBeforeTransfer(address from, address to, uint256 tokenId) internal virtual {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
    }

    function _validateAfterTransfer(address from, address to, uint256 tokenId) internal virtual {
        // TODO add additional validation if needed - look into this
        // Additional validation if needed
    }

    uint256[44] internal __gap;
}

File 3 of 40 : IRouterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IRouterRegistry {
    struct RouterInfo {
        uint256 integratorIndex;
        bool isDigitalTwinOnlyRouter;
    }

    function isRouterRegistered(address _routerAddress) external view returns (bool isRegistered_);

    function registerEventToDefaultRouter(
        address _eventAddress,
        address _relayerAddress
    ) external returns (address _routerAddress);

    function registerEventToCustomRouter(
        address _eventAddress,
        uint256 _routerIndex
    ) external returns (address _routerAddress);

    function returnEventToRouter(address _eventAddress, address _relayerAddress) external view returns (address);

    function registeredRouter(address _router) external view returns (bool);

    function setDefaultRouter(uint256 _integratorIndex, address _router) external;

    event EventRegisteredToRouter(address indexed _eventAddress, address indexed _relayerAddress);
    event DefaultRouterSet(uint256 integratorIndex, address routerAddress);
    event RegisterEventToRouterException(address indexed _eventAddress, address indexed _routerAddress);
    event RouterAddedToAllowedRouters(uint256 indexed integratorIndex_, address indexed _routerAddress);
    event RouterRemovedFromAllowedRouters(uint256 indexed integratorIndex_, address indexed _routerAddress);
    event RouterRegistered(address indexed routerAddress, RouterInfo routerInfo);
    event RouterReplaced(uint256 indexed _routerIndex, address indexed _routerAddress, RouterInfo routerInfo);
    error NoRouterRegistered(address eventAddress);
    event RouterApproved(address indexed routerAddress);
}

File 4 of 40 : IFuelRouter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IEventImplementation } from "./IEventImplementation.sol";
import { IRegistry } from "./IRegistry.sol";
import { IAuth } from "./IAuth.sol";

interface IFuelRouter {
    enum FeeType {
        PROTOCOL,
        TREASURY,
        STAKERS
    }

    enum RouterType {
        NONE,
        DIGITAL_TWIN_ROUTER,
        WHITE_LABEL_ROUTER
    }

    struct RouteInfo {
        address fuelFrom;
        // Protocol fee route info
        address fuelToProtocol;
        // Product fee route info
        address fuelToTreasury;
        address fuelToStakers;
    }

    struct DynamicRate {
        uint64 minFeeValue;
        uint64 maxFeeValue;
        uint64 rateDynamic;
    }

    event RouteRequestFilledDTPrimarySale(
        address indexed eventAddress,
        address indexed economicsAddressFrom,
        uint256 fuelAmount,
        uint256 fuelValueUSD,
        uint256 ticketAmount
    );

    event RouteRequestFilledWLPrimarySale(
        address indexed eventAddress,
        address indexed economicsAddressFrom,
        uint256 fuelAmount,
        uint256 fuelValueUSD,
        uint256 ticketAmount
    );

    event RouteRequestFilledWLSecondarySale(
        address indexed eventAddress,
        address indexed economicsAddressFrom,
        uint256 fuelAmount,
        uint256 fuelValueUSD,
        uint256 ticketAmount
    );

    event RouteInfoChanged(RouteInfo indexed oldRoute, RouteInfo indexed newRoute);

    event RouteRequestFilled(address indexed _from, address indexed _to, uint256 _value);

    function isRouterWhitelabelRouter() external view returns (bool isWhitelabelRouter_);

    function routeFuelForPrimarySale(
        IEventImplementation.TicketAction[] calldata _ticketActions
    )
        external
        returns (
            uint256 _totalFuelTokens,
            uint256 _protocolFuelTokens,
            uint256 _totalFuelUSD,
            uint256 _protocolFuelUSD
        );

    function routeFuelForSecondarySale(
        IEventImplementation.TicketAction[] calldata _ticketActions
    )
        external
        returns (
            uint256 _totalFuelTokens,
            uint256 _protocolFuelTokens,
            uint256 _totalFuelUSD,
            uint256 _protocolFuelUSD
        );
}

File 5 of 40 : IEventEmitter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IEventImplementation } from "./IEventImplementation.sol";
import { IEconomicsFactory } from "./IEconomicsFactory.sol";

interface IEventEmitter {
    // functions for the ownership oracle - view

    function getTokenIds(address eventImplementation) external view returns (uint256[] memory);

    function getTokenIdsLength(address eventImplementation) external view returns (uint256);

    function isTokenIdIssuedByEventImplementation(
        address eventImplementation,
        uint256 tokenId
    ) external view returns (bool);

    function getOwnedTokenIdsOfUser(
        address account,
        address eventImplementation
    ) external view returns (uint256[] memory);

    function getOwnedTokenIdsOfUserLength(address account, address eventImplementation) external view returns (uint256);

    function isTokenIdOwned(address account, uint256 tokenId, address eventImplementation) external view returns (bool);

    // Events and functions for the Actions Processor contract
    event Authorized(address indexed _address);

    event Unauthorized(address indexed _address);

    event PrimarySale(
        address indexed eventImplementation,
        IEventImplementation.TicketAction[] ticketActions,
        uint256 totalFuel,
        uint256 protocolFuel,
        uint256 totalFuelUSD,
        uint256 protocolFuelUSD
    );

    event SecondarySale(
        address indexed eventImplementation,
        IEventImplementation.TicketAction[] ticketActions,
        uint256 totalFuel,
        uint256 protocolFuel,
        uint256 totalFuelUSD,
        uint256 protocolFuelUSD
    );

    event Scanned(
        address indexed eventImplementation,
        IEventImplementation.TicketAction[] ticketActions,
        uint256 fuelTokens,
        uint256 fuelTokensProtocol
    );

    event CheckedIn(
        address indexed eventImplementation,
        IEventImplementation.TicketAction[] ticketActions,
        uint256 fuelTokens,
        uint256 fuelTokensProtocol
    );

    event Invalidated(
        address indexed eventImplementation,
        IEventImplementation.TicketAction[] ticketActions,
        uint256 fuelTokens,
        uint256 fuelTokensProtocol
    );

    event Claimed(address indexed eventImplementation, IEventImplementation.TicketAction[] ticketActions);

    event Transfered(address indexed eventImplementation, IEventImplementation.TicketAction[] ticketActions);

    event UpdateFinancing(address indexed eventImplementation, IEventImplementation.EventFinancing financing);

    event ActionErrorLog(
        address indexed eventImplementation,
        IEventImplementation.TicketAction ticketActions,
        IEventImplementation.ErrorFlags errorFlag,
        uint256 tokenId,
        uint64 actionId
    );

    // functions

    function emitPrimarySale(
        address eventImplementation,
        IEventImplementation.TicketAction[] memory ticketActions,
        uint256 totalFuel,
        uint256 protocolFuel,
        uint256 totalFuelUSD,
        uint256 protocolFuelUSD
    ) external;

    function emitSecondarySale(
        address eventImplementation,
        IEventImplementation.TicketAction[] memory ticketActions,
        uint256 totalFuel,
        uint256 protocolFuel,
        uint256 totalFuelUSD,
        uint256 protocolFuelUSD
    ) external;

    function authorizeByFactory(address _address) external;

    function emitActionErrorLog(
        IEventImplementation.TicketAction memory ticketActions,
        IEventImplementation.ErrorFlags errorFlag,
        uint256 tokenId,
        address eventAddress,
        uint64 actionId
    ) external;

    function emitScanned(
        address eventImplementation,
        IEventImplementation.TicketAction[] memory ticketActions,
        uint256 fuelTokens,
        uint256 fuelTokensProtocol
    ) external;

    function emitCheckedIn(
        address _eventImplementation,
        IEventImplementation.TicketAction[] memory ticketActions,
        uint256 fuelTokens,
        uint256 fuelTokensProtocol
    ) external;

    function emitInvalidated(
        address _eventImplementation,
        IEventImplementation.TicketAction[] memory ticketActions,
        uint256 fuelTokens,
        uint256 fuelTokensProtocol
    ) external;

    function emitClaimed(
        address eventImplementation,
        IEventImplementation.TicketAction[] memory ticketActions
    ) external;

    function emitTransfered(
        address eventImplementation,
        IEventImplementation.TicketAction[] memory ticketActions
    ) external;

    function authorize(address _address) external;

    function unauthorize(address _address) external;

    function returnIsAuthorized(address _address) external view returns (bool);

    // Events and functions for the event factory contract

    event EventCreated(uint256 indexed eventIndex, address indexed eventImplementationProxy);

    event RouterInUse(address indexed eventAddress, address indexed routerAddress);

    function emitEventCreated(uint256 eventIndex, address eventImplementationProxy) external;

    function emitRouterInUse(address eventAddress, address routerAddress) external;

    // Events and functions for the event implementation contract

    event TicketTransferred(address indexed eventImplementation, uint256 tokenId, address from, address to);

    event DefaultRoyaltySet(address indexed eventImplementation, address royaltySplitter, uint96 royaltyFee);

    event TokenRoyaltySet(
        address indexed eventImplementation,
        uint256 tokenId,
        address royaltySplitter,
        uint96 royaltyFee
    );

    event TicketMinted(address indexed eventImplementation, IEventImplementation.TicketAction ticketAction);

    event TicketBurned(address indexed eventImplementation, uint256 tokenId);

    event EventDataUpdated(address indexed eventImplementation, IEventImplementation.EventData eventData);

    event EventDataSet(address indexed eventImplementation, IEventImplementation.EventData eventData);

    event DefaultRoyaltyDeleted(address indexed eventImplementation);

    event TokenRoyaltyDeleted(address indexed eventImplementation, uint256 tokenId);

    function emitTicketTransferred(uint256 tokenId, address from, address to) external;

    function emitDefaultRoyaltySet(address royaltySplitter, uint96 royaltyFee) external;

    function emitTokenRoyaltySet(uint256 tokenId, address royaltySplitter, uint96 royaltyFee) external;

    // function emitTokenRoyaltyDeleted(uint256 _tokenId) external;

    // function emitDefaultRoyaltyDeleted() external;

    function emitEventDataUpdated(IEventImplementation.EventData memory eventData) external;

    function emitEventDataSet(IEventImplementation.EventData memory eventData) external;

    function emitTicketMinted(IEventImplementation.TicketAction memory ticketAction) external;

    function emitTicketBurned(uint256 tokenId) external;

    // Events and functions for the economics implementation contract

    event OverdraftEnabledStatusSet(address indexed economicsImplementation, bool shouldEnableOverdraft);

    event ToppedUp(address indexed economicsImplementation, uint256 price, uint256 amount);

    event FuelReservedFromTicks(address indexed economicsImplementation, uint256 usdAmount, uint256 fuelAmount);

    event OverdraftInterestSet(address indexed economicsImplementation, uint256 indexed interestPerYear);

    function emitOverdraftEnabledStatusSet(bool shouldEnableOverdraft) external;

    function emitToppedUp(uint256 price, uint256 amount) external;

    function emitFuelReservedFromTicks(uint256 usdAmount, uint256 fuelAmount) external;

    function emitOverdraftInterestSet(uint256 interestPerYear) external;

    event PaymentSplitterDeployed(
        address indexed eventAddress,
        address indexed paymentSplitter,
        address[] payeesRoyalty,
        uint256[] sharesRoyalty
    );

    function emitPaymentSplitterDeployed(
        address eventAddress,
        address paymentSplitter,
        address[] memory payeesRoyalty,
        uint256[] memory sharesRoyalty
    ) external;

    // Events and functions for the payment splitter initializable contract

    event PayeeAdded(address indexed eventAddress, address account, uint256 shares);

    event PaymentReleased(address indexed eventAddress, address to, uint256 amount);

    event ERC20PaymentReleased(address indexed token, address indexed eventAddress, address to, uint256 amount);

    event PaymentReceivedNative(address indexed eventAddress, address from, uint256 amount);

    event SharesSet(address indexed eventAddress, address indexed account, uint256 shares);

    event ReleasedSet(address indexed eventAddress, address indexed account, uint256 released);

    event PayeesSet(address indexed eventAddress, address[] payees);

    event PausedSet(address indexed eventAddress, bool isPaused);

    event ERC20FundsReleased(address indexed eventAddress, address indexed token, uint256[] amounts, address[] payees);

    event NativeFundsReleased(address indexed eventAddress, uint256[] amounts, address[] payees);

    event ERC20PaymentReleasedSingle(
        address indexed eventAddress,
        address indexed token,
        address indexed to,
        uint256 amount
    );

    function emitPayeeAdded(address eventAddress, address account, uint256 shares) external;

    function emitERC20FundsReleased(
        address eventAddress,
        address token,
        uint256[] memory amounts,
        address[] memory payees
    ) external;

    function emitNativeFundsReleased(address eventAddress, uint256[] memory amounts, address[] memory payees) external;

    function emitPaymentReceivedNative(address eventAddress, address from, uint256 amount) external;

    function emitERC20PaymentReleasedSingle(address eventAddress, address token, address to, uint256 amount) external;

    function emitPayeesSet(address eventAddress, address[] memory payeesArray) external;
}

File 6 of 40 : IRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IAuth } from "./IAuth.sol";
import { IEventFactory } from "./IEventFactory.sol";
import { IPriceOracle } from "./IPriceOracle.sol";
import { IRegistry } from "./IRegistry.sol";
import { IEconomicsFactory } from "./IEconomicsFactory.sol";
import { IRouterRegistry } from "./IRouterRegistry.sol";
import { ITopUp } from "./ITopUp.sol";
import { IFuelCollector } from "./IFuelCollector.sol";
import { IStakingBalanceOracle } from "./IStakingBalanceOracle.sol";
import { IActionsProcessor } from "./IActionsProcessor.sol";
import { IPaymentSplitterFactory } from "./IPaymentSplitterFactory.sol";

interface IRegistry {
    event UpdateAuth(address old, address updated);
    event UpdateEconomics(address old, address updated);
    event UpdateEventFactory(address old, address updated);
    event UpdatePriceOracle(address old, address updated);
    event UpdateStakingBalanceOracle(address old, address updated);
    event UpdateTopUp(address old, address updated);
    event UpdateBaseURI(string old, string updated);
    event UpdateRouterRegistry(address old, address updated);
    event UpdateEconomicsFactory(address oldEconomicsFactory, address economicsFactory);
    event UpdateEventFactoryV2(address oldEventFactoryV2, address newEventFactoryV2);
    event UpdateFuelCollector(address oldFuelCollector, address newFuelCollector);
    event UpdateProtocolFeeDestination(address feeDestination);
    event UpdateTreasuryFeeDestination(address feeDestination);
    event UpdateFuelBridgeReceiverAddress(address fuelBridgeReceiverAddress);
    event UpdateStakingContractAddress(address stakingContractAddress);
    event UpdateActionsProcessor(address actionsProcessorAddress);
    event UpdatePaymentSplitterFactory(address old, address updated);
    event UpdateEventEmitter(address indexed _old, address indexed _new);
    event UpdateIsValidTicketRouter(address indexed _ticketRouter, bool _isValid);
    function eventEmitterAddress() external view returns (address);

    function auth() external view returns (IAuth);

    function eventFactory() external view returns (IEventFactory);

    function economicsFactory() external view returns (IEconomicsFactory);

    function routerRegistry() external view returns (IRouterRegistry);

    function priceOracle() external view returns (IPriceOracle);

    function stakingBalanceOracle() external view returns (IStakingBalanceOracle);

    function topUp() external view returns (ITopUp);

    function fuelCollector() external view returns (IFuelCollector);

    function actionsProcessor() external view returns (IActionsProcessor);

    function baseURI() external view returns (string memory);

    function protocolFeeDestination() external view returns (address);

    function treasuryFeeDestination() external view returns (address);

    function fuelBridgeReceiverAddress() external view returns (address);

    function stakingContractAddress() external view returns (address);

    function paymentSplitterFactory() external view returns (IPaymentSplitterFactory);

    function setAuth(address _auth) external;

    function setEventFactory(address _eventFactory) external;

    function setPriceOracle(address _priceOracle) external;

    function setStakingBalanceOracle(address _stakingBalanceOracle) external;

    function setTopUp(address _topUp) external;

    function setBaseURI(string memory _baseURI) external;

    function setRouterRegistry(address _routerRegistry) external;

    function setEconomicsFactory(address _economicsFactory) external;

    function setProtocolFeeDestination(address _feeDestination) external;

    function setTreasuryFeeDestination(address _feeDestination) external;

    function setStakingContractAddress(address _contractAddress) external;

    function setFuelBridgeReceiverAddress(address _fuelBridgeReceiverAddress) external;

    function setFuelCollector(address _fuelCollector) external;

    function setActionsProcessor(address _ActionsProcessor) external;

    function setPaymentSplitterFactory(address _paymentSplitterFactory) external;

    function setIsValidTicketRouter(address _ticketRouter, bool _isValid) external;

    function isValidTicketRouterReturn(address _ticketRouter) external view returns (bool);

    function isValidTicketRouterCheck(address _ticketRouter) external view;
}

File 7 of 40 : IEventImplementation.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import { IERC721 } from "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IEventImplementation is IERC721 {
    enum TicketFlags {
        SCANNED, // 0
        CHECKED_IN, // 1
        INVALIDATED, // 2
        UNLOCKED // 3
    }

    enum ErrorFlags {
        ALREADY_INVALIDATED, // 0
        NON_EXISTING, // 1
        ALREADY_CHECKED_IN, // 2
        EVENT_ENDED, // 3
        INVENTORY_BLOCKED_PRIMARY, // 4
        INVENTORY_BLOCKED_SECONDARY, // 5
        INVENTORY_BLOCKED_SCAN, // 6
        INVENTORY_BLOCKED_CLAIM, // 7
        ALREADY_EXISTING, // 8
        MINT_TO_ZERO_ADDRESS // 9
    }
    struct TokenData {
        address owner;
        uint40 basePrice;
        uint8 booleanFlags;
    }

    struct AddressData {
        // uint64 more than enough
        uint64 balance;
    }

    struct EventData {
        uint32 index;
        uint64 startTime;
        uint64 endTime;
        int32 latitude;
        int32 longitude;
        string currency;
        string name;
        string shopUrl;
        string imageUrl;
    }

    struct TicketAction {
        uint256 tokenId;
        bytes32 externalId; // sha256 hashed, emitted in event only.
        address to;
        uint64 orderTime;
        uint40 basePrice;
    }

    struct EventFinancing {
        uint64 palletIndex;
        address bondCouncil;
        bool inventoryRegistered;
        bool financingActive;
        bool primaryBlocked;
        bool secondaryBlocked;
        bool scanBlocked;
        bool claimBlocked;
    }

    event EventDataSet(EventData eventData);
    event EventDataUpdated(EventData eventData);

    event UpdateFinancing(EventFinancing financing);

    function batchActions(
        TicketAction[] calldata _ticketActions,
        uint8[] calldata _actionCounts,
        uint64[] calldata _actionIds
    ) external;

    function batchActionsFromFactory(
        TicketAction[] calldata _ticketActions,
        uint8[] calldata _actionCounts,
        uint64[] calldata _actionIds,
        address _msgSender
    ) external;

    function mint(TicketAction calldata _ticketAction) external;

    function burn(uint256 _tokenId) external;

    function setEventData(EventData memory _eventData) external;

    function setFinancing(EventFinancing memory _financing) external;

    function owner() external view returns (address);

    function setTokenRoyaltyDefault(address _royaltyReceiver, uint96 _feeDenominator) external;

    function deleteRoyaltyInfoDefault() external;

    function deleteRoyaltyException(uint256 _tokenId) external;

    function setDefaultRoyalty(address royaltySplitter, uint96 royaltyFeeNumerator) external;

    function setTokenRoyalty(uint256 tokenId, address royaltySplitter, uint96 royaltyFeeNumerator) external;

    function transferByRouter(address _from, address _to, uint256 _tokenId) external;

    function transfer(address _from, address _to, uint256 _tokenId) external;
}

File 8 of 40 : ICreatorToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0 ^0.8.4;

interface ICreatorToken {
    event TransferValidatorUpdated(address oldValidator, address newValidator);
    function getTransferValidator() external view returns (address validator);
    function setTransferValidator(address validator) external;
    function getTransferValidationFunction() external view returns (bytes4 functionSignature, bool isViewFunction);
}

File 9 of 40 : ICreatorTokenLegacy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0 ^0.8.4;

interface ICreatorTokenLegacy {
    event TransferValidatorUpdated(address oldValidator, address newValidator);
    function getTransferValidator() external view returns (address validator);
    function setTransferValidator(address validator) external;
}

File 10 of 40 : IEventERC721CStorageProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IEventImplementation } from "./IEventImplementation.sol";

interface IEventERC721CStorageProxy {
    function initContract(string memory _name, string memory _symbol) external;
    function initializeStorageProxy(address _registry, address _actionProcessor, address _eventAddress) external;

    function setNameStorageProxy(string memory _name) external;
    function setSymbolStorageProxy(string memory _symbol) external;
    function setTokenDataStorageProxy(uint256 _tokenId, IEventImplementation.TokenData memory _tokenData) external;
    function setAddressDataStorageProxy(
        address _address,
        IEventImplementation.AddressData memory _addressData
    ) external;
    function setTokenApprovalStorageProxy(uint256 _tokenId, address _approved) external;
    function setOperatorApprovalStorageProxy(address _owner, address _operator, bool _approved) external;
    function setAutoApproveTransfersFromValidatorStorageProxy(bool _autoApprove) external;
    function setEventFinancingStorageProxy(IEventImplementation.EventFinancing memory _eventFinancing) external;
    function setScannedFlagStorageProxy(uint256 _tokenId, bool _scanned) external;
    function setCheckedInFlagStorageProxy(uint256 _tokenId, bool _checkedIn) external;
    function setInvalidatedFlagStorageProxy(uint256 _tokenId, bool _invalidated) external;
    function setUnlockedFlagStorageProxy(uint256 _tokenId, bool _unlocked) external;
    function setEventDataStorageProxy(IEventImplementation.EventData calldata _eventData) external;
    function updateEventDataStorageProxy(IEventImplementation.EventData calldata _eventData) external;
    function setFinancingStorageProxy(IEventImplementation.EventFinancing calldata _financing) external;
    function setDefaultRoyaltyStorageProxy(address _receiver, uint96 _royaltyFraction) external;
    function setTokenRoyaltyStorageProxy(uint256 _tokenId, address _receiver, uint96 _royaltyFraction) external;
    function mintStorageProxy(IEventImplementation.TicketAction calldata _ticketAction) external;
    function burnStorageProxy(uint256 _tokenId, address _from) external;
    function setTokenRoyaltyDefaultStorageProxy(address _receiver, uint96 _feeNominator) external;
    function setExceptionTokenRoyaltyStorageProxy(address _receiver, uint256 _tokenId, uint96 _feeNominator) external;
    function deleteRoyaltyInfoDefaultStorageProxy() external;
    function deleteRoyaltyExceptionStorageProxy(uint256 _tokenId) external;
    function setAuthorizedStorageProxy(address _address, bool _authorized) external;
    function burnTokenDataStorageProxy(uint256 _tokenId) external;
    function manageTokenTransferStorageProxy(uint256 _tokenId, address _from, address _to) external;
    // view functions
    function isScannedStorageProxy(uint256 _tokenId) external view returns (bool);
    function isCheckedInStorageProxy(uint256 _tokenId) external view returns (bool);
    function isInvalidatedStorageProxy(uint256 _tokenId) external view returns (bool);
    function isUnlockedStorageProxy(uint256 _tokenId) external view returns (bool);
    function isEventEndedStorageProxy() external view returns (bool);
    function isPrimaryBlockedStorageProxy() external view returns (bool);
    function isSecondaryBlockedStorageProxy() external view returns (bool);
    function isScanBlockedStorageProxy() external view returns (bool);
    function isClaimBlockedStorageProxy() external view returns (bool);
    function isExistingStorageProxy(uint256 _tokenId) external view returns (bool);
    function getTokenDataStorageProxy(uint256 _tokenId) external view returns (IEventImplementation.TokenData memory);
    function getAddressDataStorageProxy(
        address _address
    ) external view returns (IEventImplementation.AddressData memory);
    function getTokenApprovalStorageProxy(uint256 _tokenId) external view returns (address);
    function getOperatorApprovalStorageProxy(address _owner, address _operator) external view returns (bool);
    function getNameStorageProxy() external view returns (string memory);
    function getSymbolStorageProxy() external view returns (string memory);
    function getEventDataStorageProxy() external view returns (IEventImplementation.EventData memory);
    function getEventFinancingStorageProxy() external view returns (IEventImplementation.EventFinancing memory);
    function getRoyaltyInfoStorageProxy(uint256 _tokenId) external view returns (address, uint96);
    function getAutoApproveTransfersFromValidatorStorageProxy() external view returns (bool);
    function getTransferValidatorStorageProxy() external view returns (address);
    function getActionProcessorStorageProxy() external view returns (address);
}

File 11 of 40 : Context.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0 ^0.8.4;

/**
 * @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 12 of 40 : IAuth.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IAccessControl } from "@openzeppelin/contracts/access/IAccessControl.sol";

interface IAuth is IAccessControl {
    function addIntegratorAdminToIndex(address, uint256) external;

    function removeIntegratorAdmin(address) external;

    function hasProtocolDAORole(address) external view;

    function hasEconomicsConfigurationRole(address, uint256) external view;

    function hasEventFinancingConfigurationRole(address, uint256) external view;

    function hasIntegratorAdminRole(address) external view;

    function hasEventFactoryRole(address) external view;

    function hasEventRole(address) external view;

    function hasRelayerRole(address) external view;

    function hasTopUpRole(address) external view;

    function hasCustodialTopUpRole(address) external view;

    function hasPriceOracleRole(address) external view;

    function hasStakingBalanceOracleRole(address) external view;

    function grantEventRole(address) external;

    function hasRouterRegistryRole(address) external view;

    function hasFuelRouterRole(address) external view;

    function hasEconomicsFactoryRole(address _sender) external view;

    function hasActionsProcessorRole(address) external view;
}

File 13 of 40 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SafeCast} from "./math/SafeCast.sol";
import {SignedMath} from "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    using SafeCast for *;

    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev The string being parsed contains characters that are not in scope of the given base.
     */
    error StringsInvalidChar();

    /**
     * @dev The string being parsed is not a properly formatted address.
     */
    error StringsInvalidAddressFormat();

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            assembly ("memory-safe") {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                assembly ("memory-safe") {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal
     * representation, according to EIP-55.
     */
    function toChecksumHexString(address addr) internal pure returns (string memory) {
        bytes memory buffer = bytes(toHexString(addr));

        // hash the hex part of buffer (skip length + 2 bytes, length 40)
        uint256 hashValue;
        assembly ("memory-safe") {
            hashValue := shr(96, keccak256(add(buffer, 0x22), 40))
        }

        for (uint256 i = 41; i > 1; --i) {
            // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)
            if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {
                // case shift by xoring with 0x20
                buffer[i] ^= 0x20;
            }
            hashValue >>= 4;
        }
        return string(buffer);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }

    /**
     * @dev Parse a decimal string and returns the value as a `uint256`.
     *
     * Requirements:
     * - The string must be formatted as `[0-9]*`
     * - The result must fit into an `uint256` type
     */
    function parseUint(string memory input) internal pure returns (uint256) {
        return parseUint(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `[0-9]*`
     * - The result must fit into an `uint256` type
     */
    function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
        (bool success, uint256 value) = tryParseUint(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {
        return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid
     * character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseUint(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, uint256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseUintUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseUintUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, uint256 value) {
        bytes memory buffer = bytes(input);

        uint256 result = 0;
        for (uint256 i = begin; i < end; ++i) {
            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
            if (chr > 9) return (false, 0);
            result *= 10;
            result += chr;
        }
        return (true, result);
    }

    /**
     * @dev Parse a decimal string and returns the value as a `int256`.
     *
     * Requirements:
     * - The string must be formatted as `[-+]?[0-9]*`
     * - The result must fit in an `int256` type.
     */
    function parseInt(string memory input) internal pure returns (int256) {
        return parseInt(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `[-+]?[0-9]*`
     * - The result must fit in an `int256` type.
     */
    function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {
        (bool success, int256 value) = tryParseInt(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if
     * the result does not fit in a `int256`.
     *
     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
     */
    function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {
        return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);
    }

    uint256 private constant ABS_MIN_INT256 = 2 ** 255;

    /**
     * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid
     * character or if the result does not fit in a `int256`.
     *
     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
     */
    function tryParseInt(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, int256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseIntUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseIntUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, int256 value) {
        bytes memory buffer = bytes(input);

        // Check presence of a negative sign.
        bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        bool positiveSign = sign == bytes1("+");
        bool negativeSign = sign == bytes1("-");
        uint256 offset = (positiveSign || negativeSign).toUint();

        (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);

        if (absSuccess && absValue < ABS_MIN_INT256) {
            return (true, negativeSign ? -int256(absValue) : int256(absValue));
        } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {
            return (true, type(int256).min);
        } else return (false, 0);
    }

    /**
     * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as a `uint256`.
     *
     * Requirements:
     * - The string must be formatted as `(0x)?[0-9a-fA-F]*`
     * - The result must fit in an `uint256` type.
     */
    function parseHexUint(string memory input) internal pure returns (uint256) {
        return parseHexUint(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`
     * - The result must fit in an `uint256` type.
     */
    function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
        (bool success, uint256 value) = tryParseHexUint(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {
        return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an
     * invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseHexUint(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, uint256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseHexUintUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseHexUintUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, uint256 value) {
        bytes memory buffer = bytes(input);

        // skip 0x prefix if present
        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        uint256 offset = hasPrefix.toUint() * 2;

        uint256 result = 0;
        for (uint256 i = begin + offset; i < end; ++i) {
            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
            if (chr > 15) return (false, 0);
            result *= 16;
            unchecked {
                // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).
                // This guaratees that adding a value < 16 will not cause an overflow, hence the unchecked.
                result += chr;
            }
        }
        return (true, result);
    }

    /**
     * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as an `address`.
     *
     * Requirements:
     * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`
     */
    function parseAddress(string memory input) internal pure returns (address) {
        return parseAddress(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`
     */
    function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {
        (bool success, address value) = tryParseAddress(input, begin, end);
        if (!success) revert StringsInvalidAddressFormat();
        return value;
    }

    /**
     * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly
     * formatted address. See {parseAddress} requirements.
     */
    function tryParseAddress(string memory input) internal pure returns (bool success, address value) {
        return tryParseAddress(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly
     * formatted address. See {parseAddress} requirements.
     */
    function tryParseAddress(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, address value) {
        if (end > bytes(input).length || begin > end) return (false, address(0));

        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        uint256 expectedLength = 40 + hasPrefix.toUint() * 2;

        // check that input is the correct length
        if (end - begin == expectedLength) {
            // length guarantees that this does not overflow, and value is at most type(uint160).max
            (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);
            return (s, address(uint160(v)));
        } else {
            return (false, address(0));
        }
    }

    function _tryParseChr(bytes1 chr) private pure returns (uint8) {
        uint8 value = uint8(chr);

        // Try to parse `chr`:
        // - Case 1: [0-9]
        // - Case 2: [a-f]
        // - Case 3: [A-F]
        // - otherwise not supported
        unchecked {
            if (value > 47 && value < 58) value -= 48;
            else if (value > 96 && value < 103) value -= 87;
            else if (value > 64 && value < 71) value -= 55;
            else return type(uint8).max;
        }

        return value;
    }

    /**
     * @dev Reads a bytes32 from a bytes array without bounds checking.
     *
     * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the
     * assembly block as such would prevent some optimizations.
     */
    function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {
        // This is not memory safe in the general case, but all calls to this private function are within bounds.
        assembly ("memory-safe") {
            value := mload(add(buffer, add(0x20, offset)))
        }
    }
}

File 14 of 40 : IEventFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IEventImplementation } from "./IEventImplementation.sol";

interface IEventFactory {
    event EventCreated(uint256 indexed eventIndex, address indexed eventImplementationProxy);

    event RouterInUse(address indexed eventAddress, address indexed routerAddress);

    function eventAddressByIndex(uint256 _eventIndex) external view returns (address);

    function eventCount() external view returns (uint256);

    function createEvent(
        string memory _name,
        string memory _symbol,
        IEventImplementation.EventData memory _eventData,
        uint256 _routerIndex,
        address[] calldata _payeesRoyalty,
        uint256[] calldata _sharesRoyalty,
        uint256 _royaltyFeeNumerator
    ) external returns (address _eventAddress);

    function createEvent(
        string memory _name,
        string memory _symbol,
        IEventImplementation.EventData memory _eventData,
        address[] calldata _payeesRoyalty,
        uint256[] calldata _sharesRoyalty,
        uint256 _royaltyFeeNumerator
    ) external returns (address _eventAddress);

    function returnEventAddressByIndex(uint256 _eventIndex) external view returns (address);

    function returnEventIndexByAddress(address _address) external view returns (uint256);
}

File 15 of 40 : IPriceOracle.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IPriceOracle {
    event UpdatePrice(uint256 old, uint256 updated);

    function price() external view returns (uint256);

    function lastUpdateTimestamp() external view returns (uint32);

    function setPrice(uint256 _price) external;
}

File 16 of 40 : IEconomicsFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IEconomicsFactory {
    // Data structure containing all the different rates for a particular relayer.
    //   100% (1) 1_000_000,
    //   10% (0.1) = 100_000,
    //   1% (0.01) = 10_000,
    //   0.1% (0.001) = 1_000,
    //   0.01% (0.0001) = 100,
    //   0.001% (0,00001) = 10,
    //   0.0001% = (0.000001) = 1
    // All scaled by 1_000_000.
    //
    // USD values (e.g. minFee, maxFee) are scaled by 1_000 (tenth of a cent).
    struct DynamicRates {
        uint24 minFeePrimary;
        uint24 maxFeePrimary;
        uint24 primaryRate;
        uint24 minFeeSecondary;
        uint24 maxFeeSecondary;
        uint24 secondaryRate;
    }

    struct IntegratorData {
        uint32 index;
        bool isBillingEnabled;
        bool isConfigured;
        string name;
        bool onCredit;
    }

    struct RelayerData {
        uint32 integratorIndex;
    }

    // Used strictly for data migration between Economics and EconomicsFactory contracts
    struct IntegratorRelayerData {
        uint256 integratorIndex;
        address[] relayers;
    }

    event UpdateIntegratorOnCredit(uint32 integratorIndex, bool onCredit);

    event UpdateSalesTaxFuelDestination(address salesTaxFuelDestination);

    event UpdateFuelToken(address old, address updated);

    event EnableIntegratorBilling(uint32 integratorIndex);

    event UpdateDynamicRates(uint32 indexed integratorIndex, DynamicRates dynamicRates);

    event IntegratorToppedUp(
        uint32 indexed integratorIndex,
        address economicsContract,
        uint256 indexed total,
        uint256 topUpPrice
    );

    event UpdateProtocolRates(DynamicRates protocolRates);

    event IntegratorActivated(uint32 indexed integratorIndex);

    event ConfigurationStatusUpdated(uint32 indexed integratorIndex, bool status);

    event BillingStatusUpdated(uint32 indexed integratorIndex, bool status);

    event IntegratorConfigured(
        uint256 indexed integratorIndex,
        string name,
        address relayerAddress,
        bool isDigitalTwin,
        DynamicRates dynamicRates
    );
    event IntegratorDisabled(uint32 indexed integratorIndex);

    event RelayerRemoved(address indexed relayerAddress, uint256 indexed integratorIndex);

    event EconomicsContractDeployed(address indexed economicsAddress, uint256 indexed integratorIndex);

    event RelayerAdded(address indexed relayerAddress, uint256 indexed integratorIndex);

    event DisableIntegratorBilling(uint32 integratorIndex);

    event IntegratorNameSet(uint256 integratorIndex, string name);

    event EventEmitterSet(address indexed eventEmitter);

    function relayerToIndex(address relayerAddress) external returns (uint32 integratorIndex);

    function isIntegratorDigitalTwin(address relayerAddress) external view returns (bool isDigitalTwin);

    function fuelToken() external view returns (IERC20);

    function wasUpgradeSuccessFull() external view returns (bool);

    function economicsContracts(uint256 integratorIndex) external view returns (address);

    function returnDynamicRatesOfIntegrator(
        uint256 integratorIndex
    ) external view returns (DynamicRates memory dynamicRates);

    function setupIntegrator(
        string calldata name,
        address relayerAddress,
        DynamicRates calldata dynamicRates,
        bool isDigitalTwin
    ) external returns (address economicsAddress);

    function topUpIntegrator(
        uint256 integratorIndex,
        address sender,
        uint256 total,
        uint256 price
    ) external returns (uint256);

    function setFuelToken(address _fuelToken) external;

    function initialize() external;

    function isIntegratorConfigured(uint256 integratorIndex) external view returns (bool isConfigured);

    function isIntegratorEnabled(uint256 integratorIndex) external view returns (bool isEnabled);

    function configuredIntegratorIndex(address relayerAddress) external view returns (uint256 integratorIndex);

    function configuredIntegratorEconomics(uint256 integratorIndex) external view returns (address economicsAddress);
}

File 17 of 40 : IFuelCollector.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IFuelRouter } from "./IFuelRouter.sol";

interface IFuelCollector {
    event FuelReceived(uint256 amount, uint256 protocolFuel, uint256 treasuryFuel, uint256 stakersFuel);
    event FuelDistributed(uint256 indexed protocol, uint256 indexed treasury, uint256 indexed stakers);

    function receiveFuel(uint256 _amount, uint256 _protocolFuel, uint256 _treasuryFuel, uint256 _stakersFuel) external;

    function distributeFuel() external;
}

File 18 of 40 : ITopUp.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import { ISwapRouter } from "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol";

interface ITopUp {
    event ToppedUpCustodial(
        uint32 indexed integratorIndex,
        address indexed debitedAccount,
        uint256 availableFuel,
        uint256 amountFuel,
        uint256 price,
        bytes32 externalId
    );

    event ToppedUpCustodial0x(
        uint32 indexed integratorIndex,
        address indexed debitedAccount,
        uint256 availableFuel,
        uint256 amountFuel,
        uint256 price,
        bytes32 externalId
    );

    event ToppedUpNonCustodial(
        uint32 indexed integratorIndex,
        address indexed debitedAccount,
        uint256 availableFuel,
        uint256 amountFuel,
        uint256 price
    );
    event UpdateBaseToken(address old, address updated);
    event UpdateWeth(address old, address updated);
    event UpdateRouter(address old, address updated);
    event UpdateOracle(address old, address updated);

    function baseToken() external returns (IERC20Metadata);

    function weth() external returns (IERC20);

    function router() external returns (ISwapRouter);

    function topUpCustodial(
        uint32 _integratorIndex,
        uint256 _amountIn,
        uint256 _amountOutMin,
        bytes32 _externalId
    ) external;

    function topUpNonCustodial(uint32 _integratorIndex, uint256 _amountFuel) external;

    function pause() external;

    function unpause() external;

    function setBaseToken(address _baseToken) external;

    function setWeth(address _weth) external;

    function setRouter(address _router) external;

    function setApprovals() external;
}

File 19 of 40 : IStakingBalanceOracle.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IStakingBalanceOracle {
    event UpdateStakingBalances(uint256 ethereumBalance, uint256 polygonBalance);

    function ethereumBalance() external view returns (uint256);

    function polygonBalance() external view returns (uint256);

    function updateStakingBalances(uint256 _ethereumBalance, uint256 _polygonBalance) external;
}

File 20 of 40 : IActionsProcessor.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import { IFuelRouter } from "./IFuelRouter.sol";
import { IEventImplementation } from "./IEventImplementation.sol";

interface IActionsProcessor {
    function primarySale(
        address _storageProxy,
        IEventImplementation.TicketAction[] calldata _ticketActions,
        uint64[] calldata _actionIds,
        IFuelRouter _router
    ) external;

    function secondarySale(
        address _storageProxy,
        IEventImplementation.TicketAction[] calldata _ticketActions,
        uint64[] calldata _actionIds,
        IFuelRouter _router
    ) external;

    function scan(
        address _storageProxy,
        IEventImplementation.TicketAction[] calldata _ticketActions,
        uint64[] calldata _actionIds
    ) external;

    function checkIn(
        address _storageProxy,
        IEventImplementation.TicketAction[] calldata _ticketActions,
        uint64[] calldata _actionIds
    ) external;

    function invalidate(
        address _storageProxy,
        IEventImplementation.TicketAction[] calldata _ticketActions,
        uint64[] calldata _actionIds
    ) external;

    function claim(
        address _storageProxy,
        IEventImplementation.TicketAction[] calldata _ticketActions,
        uint64[] calldata _actionIds
    ) external;

    function transfer(
        address _storageProxy,
        IEventImplementation.TicketAction[] calldata _ticketActions,
        uint64[] calldata _actionIds
    ) external;
}

File 21 of 40 : IPaymentSplitterFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IPaymentSplitterFactory {
    function deployPaymentSplitter(
        address _eventAddress,
        address _relayerAddress,
        address[] memory _payeesRoyalty,
        uint256[] memory _sharesRoyalty
    ) external returns (address paymentSplitter_);
}

File 22 of 40 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (utils/Address.sol)

pragma solidity ^0.8.20;

import {Errors} from "./Errors.sol";

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

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

        (bool success, bytes memory returndata) = recipient.call{value: amount}("");
        if (!success) {
            _revert(returndata);
        }
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert Errors.InsufficientBalance(address(this).balance, value);
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
     * of an unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {Errors.FailedCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            assembly ("memory-safe") {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert Errors.FailedCall();
        }
    }
}

File 23 of 40 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

File 24 of 40 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

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

File 25 of 40 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.20;

import {IERC2981} from "../../interfaces/IERC2981.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the ERC. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 tokenId => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev The default royalty set is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidDefaultRoyalty(uint256 numerator, uint256 denominator);

    /**
     * @dev The default royalty receiver is invalid.
     */
    error ERC2981InvalidDefaultRoyaltyReceiver(address receiver);

    /**
     * @dev The royalty set for an specific `tokenId` is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidTokenRoyalty(uint256 tokenId, uint256 numerator, uint256 denominator);

    /**
     * @dev The royalty receiver for `tokenId` is invalid.
     */
    error ERC2981InvalidTokenRoyaltyReceiver(uint256 tokenId, address receiver);

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) public view virtual returns (address receiver, uint256 amount) {
        RoyaltyInfo storage _royaltyInfo = _tokenRoyaltyInfo[tokenId];
        address royaltyReceiver = _royaltyInfo.receiver;
        uint96 royaltyFraction = _royaltyInfo.royaltyFraction;

        if (royaltyReceiver == address(0)) {
            royaltyReceiver = _defaultRoyaltyInfo.receiver;
            royaltyFraction = _defaultRoyaltyInfo.royaltyFraction;
        }

        uint256 royaltyAmount = (salePrice * royaltyFraction) / _feeDenominator();

        return (royaltyReceiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidDefaultRoyalty(feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidDefaultRoyaltyReceiver(address(0));
        }

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidTokenRoyalty(tokenId, feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidTokenRoyaltyReceiver(tokenId, address(0));
        }

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 26 of 40 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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

File 27 of 40 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Storage of the initializable contract.
     *
     * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
     * when using with upgradeable contracts.
     *
     * @custom:storage-location erc7201:openzeppelin.storage.Initializable
     */
    struct InitializableStorage {
        /**
         * @dev Indicates that the contract has been initialized.
         */
        uint64 _initialized;
        /**
         * @dev Indicates that the contract is in the process of being initialized.
         */
        bool _initializing;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;

    /**
     * @dev The contract is already initialized.
     */
    error InvalidInitialization();

    /**
     * @dev The contract is not initializing.
     */
    error NotInitializing();

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint64 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any
     * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
     * production.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        // Cache values to avoid duplicated sloads
        bool isTopLevelCall = !$._initializing;
        uint64 initialized = $._initialized;

        // Allowed calls:
        // - initialSetup: the contract is not in the initializing state and no previous version was
        //                 initialized
        // - construction: the contract is initialized at version 1 (no reininitialization) and the
        //                 current contract is just being deployed
        bool initialSetup = initialized == 0 && isTopLevelCall;
        bool construction = initialized == 1 && address(this).code.length == 0;

        if (!initialSetup && !construction) {
            revert InvalidInitialization();
        }
        $._initialized = 1;
        if (isTopLevelCall) {
            $._initializing = true;
        }
        _;
        if (isTopLevelCall) {
            $._initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint64 version) {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing || $._initialized >= version) {
            revert InvalidInitialization();
        }
        $._initialized = version;
        $._initializing = true;
        _;
        $._initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        _checkInitializing();
        _;
    }

    /**
     * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
     */
    function _checkInitializing() internal view virtual {
        if (!_isInitializing()) {
            revert NotInitializing();
        }
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing) {
            revert InvalidInitialization();
        }
        if ($._initialized != type(uint64).max) {
            $._initialized = type(uint64).max;
            emit Initialized(type(uint64).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint64) {
        return _getInitializableStorage()._initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _getInitializableStorage()._initializing;
    }

    /**
     * @dev Returns a pointer to the storage namespace.
     */
    // solhint-disable-next-line var-name-mixedcase
    function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
        assembly {
            $.slot := INITIALIZABLE_STORAGE
        }
    }
}

File 28 of 40 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../IERC721.sol";

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

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

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

File 29 of 40 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

import {Panic} from "../Panic.sol";
import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow).
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow).
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * SafeCast.toUint(condition));
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return ternary(a > b, a, b);
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return ternary(a < b, a, b);
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }

        // The following calculation ensures accurate ceiling division without overflow.
        // Since a is non-zero, (a - 1) / b will not overflow.
        // The largest possible result occurs when (a - 1) / b is type(uint256).max,
        // but the largest value we can obtain is type(uint256).max - 1, which happens
        // when a = type(uint256).max and b = 1.
        unchecked {
            return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);
        }
    }

    /**
     * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     *
     * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use
            // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2²⁵⁶ + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.
            if (denominator <= prod1) {
                Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such
            // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv ≡ 1 mod 2⁴.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶
            inverse *= 2 - denominator * inverse; // inverse mod 2³²
            inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴
            inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is
            // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);
    }

    /**
     * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.
     *
     * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.
     * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.
     *
     * If the input value is not inversible, 0 is returned.
     *
     * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the
     * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.
     */
    function invMod(uint256 a, uint256 n) internal pure returns (uint256) {
        unchecked {
            if (n == 0) return 0;

            // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)
            // Used to compute integers x and y such that: ax + ny = gcd(a, n).
            // When the gcd is 1, then the inverse of a modulo n exists and it's x.
            // ax + ny = 1
            // ax = 1 + (-y)n
            // ax ≡ 1 (mod n) # x is the inverse of a modulo n

            // If the remainder is 0 the gcd is n right away.
            uint256 remainder = a % n;
            uint256 gcd = n;

            // Therefore the initial coefficients are:
            // ax + ny = gcd(a, n) = n
            // 0a + 1n = n
            int256 x = 0;
            int256 y = 1;

            while (remainder != 0) {
                uint256 quotient = gcd / remainder;

                (gcd, remainder) = (
                    // The old remainder is the next gcd to try.
                    remainder,
                    // Compute the next remainder.
                    // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd
                    // where gcd is at most n (capped to type(uint256).max)
                    gcd - remainder * quotient
                );

                (x, y) = (
                    // Increment the coefficient of a.
                    y,
                    // Decrement the coefficient of n.
                    // Can overflow, but the result is casted to uint256 so that the
                    // next value of y is "wrapped around" to a value between 0 and n - 1.
                    x - y * int256(quotient)
                );
            }

            if (gcd != 1) return 0; // No inverse exists.
            return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.
        }
    }

    /**
     * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.
     *
     * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is
     * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that
     * `a**(p-2)` is the modular multiplicative inverse of a in Fp.
     *
     * NOTE: this function does NOT check that `p` is a prime greater than `2`.
     */
    function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {
        unchecked {
            return Math.modExp(a, p - 2, p);
        }
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)
     *
     * Requirements:
     * - modulus can't be zero
     * - underlying staticcall to precompile must succeed
     *
     * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make
     * sure the chain you're using it on supports the precompiled contract for modular exponentiation
     * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,
     * the underlying function will succeed given the lack of a revert, but the result may be incorrectly
     * interpreted as 0.
     */
    function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {
        (bool success, uint256 result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).
     * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying
     * to operate modulo 0 or if the underlying precompile reverted.
     *
     * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain
     * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in
     * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack
     * of a revert, but the result may be incorrectly interpreted as 0.
     */
    function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {
        if (m == 0) return (false, 0);
        assembly ("memory-safe") {
            let ptr := mload(0x40)
            // | Offset    | Content    | Content (Hex)                                                      |
            // |-----------|------------|--------------------------------------------------------------------|
            // | 0x00:0x1f | size of b  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x20:0x3f | size of e  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x40:0x5f | size of m  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x60:0x7f | value of b | 0x<.............................................................b> |
            // | 0x80:0x9f | value of e | 0x<.............................................................e> |
            // | 0xa0:0xbf | value of m | 0x<.............................................................m> |
            mstore(ptr, 0x20)
            mstore(add(ptr, 0x20), 0x20)
            mstore(add(ptr, 0x40), 0x20)
            mstore(add(ptr, 0x60), b)
            mstore(add(ptr, 0x80), e)
            mstore(add(ptr, 0xa0), m)

            // Given the result < m, it's guaranteed to fit in 32 bytes,
            // so we can use the memory scratch space located at offset 0.
            success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)
            result := mload(0x00)
        }
    }

    /**
     * @dev Variant of {modExp} that supports inputs of arbitrary length.
     */
    function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {
        (bool success, bytes memory result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Variant of {tryModExp} that supports inputs of arbitrary length.
     */
    function tryModExp(
        bytes memory b,
        bytes memory e,
        bytes memory m
    ) internal view returns (bool success, bytes memory result) {
        if (_zeroBytes(m)) return (false, new bytes(0));

        uint256 mLen = m.length;

        // Encode call args in result and move the free memory pointer
        result = abi.encodePacked(b.length, e.length, mLen, b, e, m);

        assembly ("memory-safe") {
            let dataPtr := add(result, 0x20)
            // Write result on top of args to avoid allocating extra memory.
            success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)
            // Overwrite the length.
            // result.length > returndatasize() is guaranteed because returndatasize() == m.length
            mstore(result, mLen)
            // Set the memory pointer after the returned data.
            mstore(0x40, add(dataPtr, mLen))
        }
    }

    /**
     * @dev Returns whether the provided byte array is zero.
     */
    function _zeroBytes(bytes memory byteArray) private pure returns (bool) {
        for (uint256 i = 0; i < byteArray.length; ++i) {
            if (byteArray[i] != 0) {
                return false;
            }
        }
        return true;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * This method is based on Newton's method for computing square roots; the algorithm is restricted to only
     * using integer operations.
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        unchecked {
            // Take care of easy edge cases when a == 0 or a == 1
            if (a <= 1) {
                return a;
            }

            // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a
            // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between
            // the current value as `ε_n = | x_n - sqrt(a) |`.
            //
            // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root
            // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is
            // bigger than any uint256.
            //
            // By noticing that
            // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`
            // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar
            // to the msb function.
            uint256 aa = a;
            uint256 xn = 1;

            if (aa >= (1 << 128)) {
                aa >>= 128;
                xn <<= 64;
            }
            if (aa >= (1 << 64)) {
                aa >>= 64;
                xn <<= 32;
            }
            if (aa >= (1 << 32)) {
                aa >>= 32;
                xn <<= 16;
            }
            if (aa >= (1 << 16)) {
                aa >>= 16;
                xn <<= 8;
            }
            if (aa >= (1 << 8)) {
                aa >>= 8;
                xn <<= 4;
            }
            if (aa >= (1 << 4)) {
                aa >>= 4;
                xn <<= 2;
            }
            if (aa >= (1 << 2)) {
                xn <<= 1;
            }

            // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).
            //
            // We can refine our estimation by noticing that the middle of that interval minimizes the error.
            // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).
            // This is going to be our x_0 (and ε_0)
            xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)

            // From here, Newton's method give us:
            // x_{n+1} = (x_n + a / x_n) / 2
            //
            // One should note that:
            // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a
            //              = ((x_n² + a) / (2 * x_n))² - a
            //              = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a
            //              = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)
            //              = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)
            //              = (x_n² - a)² / (2 * x_n)²
            //              = ((x_n² - a) / (2 * x_n))²
            //              ≥ 0
            // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n
            //
            // This gives us the proof of quadratic convergence of the sequence:
            // ε_{n+1} = | x_{n+1} - sqrt(a) |
            //         = | (x_n + a / x_n) / 2 - sqrt(a) |
            //         = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |
            //         = | (x_n - sqrt(a))² / (2 * x_n) |
            //         = | ε_n² / (2 * x_n) |
            //         = ε_n² / | (2 * x_n) |
            //
            // For the first iteration, we have a special case where x_0 is known:
            // ε_1 = ε_0² / | (2 * x_0) |
            //     ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))
            //     ≤ 2**(2*e-4) / (3 * 2**(e-1))
            //     ≤ 2**(e-3) / 3
            //     ≤ 2**(e-3-log2(3))
            //     ≤ 2**(e-4.5)
            //
            // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:
            // ε_{n+1} = ε_n² / | (2 * x_n) |
            //         ≤ (2**(e-k))² / (2 * 2**(e-1))
            //         ≤ 2**(2*e-2*k) / 2**e
            //         ≤ 2**(e-2*k)
            xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5)  -- special case, see above
            xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9)    -- general case with k = 4.5
            xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18)   -- general case with k = 9
            xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36)   -- general case with k = 18
            xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72)   -- general case with k = 36
            xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144)  -- general case with k = 72

            // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision
            // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either
            // sqrt(a) or sqrt(a) + 1.
            return xn - SafeCast.toUint(xn > a / xn);
        }
    }

    /**
     * @dev Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        uint256 exp;
        unchecked {
            exp = 128 * SafeCast.toUint(value > (1 << 128) - 1);
            value >>= exp;
            result += exp;

            exp = 64 * SafeCast.toUint(value > (1 << 64) - 1);
            value >>= exp;
            result += exp;

            exp = 32 * SafeCast.toUint(value > (1 << 32) - 1);
            value >>= exp;
            result += exp;

            exp = 16 * SafeCast.toUint(value > (1 << 16) - 1);
            value >>= exp;
            result += exp;

            exp = 8 * SafeCast.toUint(value > (1 << 8) - 1);
            value >>= exp;
            result += exp;

            exp = 4 * SafeCast.toUint(value > (1 << 4) - 1);
            value >>= exp;
            result += exp;

            exp = 2 * SafeCast.toUint(value > (1 << 2) - 1);
            value >>= exp;
            result += exp;

            result += SafeCast.toUint(value > 1);
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        uint256 isGt;
        unchecked {
            isGt = SafeCast.toUint(value > (1 << 128) - 1);
            value >>= isGt * 128;
            result += isGt * 16;

            isGt = SafeCast.toUint(value > (1 << 64) - 1);
            value >>= isGt * 64;
            result += isGt * 8;

            isGt = SafeCast.toUint(value > (1 << 32) - 1);
            value >>= isGt * 32;
            result += isGt * 4;

            isGt = SafeCast.toUint(value > (1 << 16) - 1);
            value >>= isGt * 16;
            result += isGt * 2;

            result += SafeCast.toUint(value > (1 << 8) - 1);
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 30 of 40 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol)

pragma solidity ^0.8.20;

/**
 * @dev External interface of AccessControl declared to support ERC-165 detection.
 */
interface IAccessControl {
    /**
     * @dev The `account` is missing a role.
     */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);

    /**
     * @dev The caller of a function is not the expected one.
     *
     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
     */
    error AccessControlBadConfirmation();

    /**
     * @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.
     */
    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. This account bears the admin role (for the granted role).
     * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
     */
    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 `callerConfirmation`.
     */
    function renounceRole(bytes32 role, address callerConfirmation) external;
}

File 31 of 40 : SafeCast.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.

pragma solidity ^0.8.20;

/**
 * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeCast {
    /**
     * @dev Value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);

    /**
     * @dev An int value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedIntToUint(int256 value);

    /**
     * @dev Value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);

    /**
     * @dev An uint value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedUintToInt(uint256 value);

    /**
     * @dev Returns the downcasted uint248 from uint256, reverting on
     * overflow (when the input is greater than largest uint248).
     *
     * Counterpart to Solidity's `uint248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toUint248(uint256 value) internal pure returns (uint248) {
        if (value > type(uint248).max) {
            revert SafeCastOverflowedUintDowncast(248, value);
        }
        return uint248(value);
    }

    /**
     * @dev Returns the downcasted uint240 from uint256, reverting on
     * overflow (when the input is greater than largest uint240).
     *
     * Counterpart to Solidity's `uint240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toUint240(uint256 value) internal pure returns (uint240) {
        if (value > type(uint240).max) {
            revert SafeCastOverflowedUintDowncast(240, value);
        }
        return uint240(value);
    }

    /**
     * @dev Returns the downcasted uint232 from uint256, reverting on
     * overflow (when the input is greater than largest uint232).
     *
     * Counterpart to Solidity's `uint232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toUint232(uint256 value) internal pure returns (uint232) {
        if (value > type(uint232).max) {
            revert SafeCastOverflowedUintDowncast(232, value);
        }
        return uint232(value);
    }

    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        if (value > type(uint224).max) {
            revert SafeCastOverflowedUintDowncast(224, value);
        }
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint216 from uint256, reverting on
     * overflow (when the input is greater than largest uint216).
     *
     * Counterpart to Solidity's `uint216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toUint216(uint256 value) internal pure returns (uint216) {
        if (value > type(uint216).max) {
            revert SafeCastOverflowedUintDowncast(216, value);
        }
        return uint216(value);
    }

    /**
     * @dev Returns the downcasted uint208 from uint256, reverting on
     * overflow (when the input is greater than largest uint208).
     *
     * Counterpart to Solidity's `uint208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toUint208(uint256 value) internal pure returns (uint208) {
        if (value > type(uint208).max) {
            revert SafeCastOverflowedUintDowncast(208, value);
        }
        return uint208(value);
    }

    /**
     * @dev Returns the downcasted uint200 from uint256, reverting on
     * overflow (when the input is greater than largest uint200).
     *
     * Counterpart to Solidity's `uint200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toUint200(uint256 value) internal pure returns (uint200) {
        if (value > type(uint200).max) {
            revert SafeCastOverflowedUintDowncast(200, value);
        }
        return uint200(value);
    }

    /**
     * @dev Returns the downcasted uint192 from uint256, reverting on
     * overflow (when the input is greater than largest uint192).
     *
     * Counterpart to Solidity's `uint192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toUint192(uint256 value) internal pure returns (uint192) {
        if (value > type(uint192).max) {
            revert SafeCastOverflowedUintDowncast(192, value);
        }
        return uint192(value);
    }

    /**
     * @dev Returns the downcasted uint184 from uint256, reverting on
     * overflow (when the input is greater than largest uint184).
     *
     * Counterpart to Solidity's `uint184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toUint184(uint256 value) internal pure returns (uint184) {
        if (value > type(uint184).max) {
            revert SafeCastOverflowedUintDowncast(184, value);
        }
        return uint184(value);
    }

    /**
     * @dev Returns the downcasted uint176 from uint256, reverting on
     * overflow (when the input is greater than largest uint176).
     *
     * Counterpart to Solidity's `uint176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toUint176(uint256 value) internal pure returns (uint176) {
        if (value > type(uint176).max) {
            revert SafeCastOverflowedUintDowncast(176, value);
        }
        return uint176(value);
    }

    /**
     * @dev Returns the downcasted uint168 from uint256, reverting on
     * overflow (when the input is greater than largest uint168).
     *
     * Counterpart to Solidity's `uint168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toUint168(uint256 value) internal pure returns (uint168) {
        if (value > type(uint168).max) {
            revert SafeCastOverflowedUintDowncast(168, value);
        }
        return uint168(value);
    }

    /**
     * @dev Returns the downcasted uint160 from uint256, reverting on
     * overflow (when the input is greater than largest uint160).
     *
     * Counterpart to Solidity's `uint160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toUint160(uint256 value) internal pure returns (uint160) {
        if (value > type(uint160).max) {
            revert SafeCastOverflowedUintDowncast(160, value);
        }
        return uint160(value);
    }

    /**
     * @dev Returns the downcasted uint152 from uint256, reverting on
     * overflow (when the input is greater than largest uint152).
     *
     * Counterpart to Solidity's `uint152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toUint152(uint256 value) internal pure returns (uint152) {
        if (value > type(uint152).max) {
            revert SafeCastOverflowedUintDowncast(152, value);
        }
        return uint152(value);
    }

    /**
     * @dev Returns the downcasted uint144 from uint256, reverting on
     * overflow (when the input is greater than largest uint144).
     *
     * Counterpart to Solidity's `uint144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toUint144(uint256 value) internal pure returns (uint144) {
        if (value > type(uint144).max) {
            revert SafeCastOverflowedUintDowncast(144, value);
        }
        return uint144(value);
    }

    /**
     * @dev Returns the downcasted uint136 from uint256, reverting on
     * overflow (when the input is greater than largest uint136).
     *
     * Counterpart to Solidity's `uint136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toUint136(uint256 value) internal pure returns (uint136) {
        if (value > type(uint136).max) {
            revert SafeCastOverflowedUintDowncast(136, value);
        }
        return uint136(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        if (value > type(uint128).max) {
            revert SafeCastOverflowedUintDowncast(128, value);
        }
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint120 from uint256, reverting on
     * overflow (when the input is greater than largest uint120).
     *
     * Counterpart to Solidity's `uint120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toUint120(uint256 value) internal pure returns (uint120) {
        if (value > type(uint120).max) {
            revert SafeCastOverflowedUintDowncast(120, value);
        }
        return uint120(value);
    }

    /**
     * @dev Returns the downcasted uint112 from uint256, reverting on
     * overflow (when the input is greater than largest uint112).
     *
     * Counterpart to Solidity's `uint112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toUint112(uint256 value) internal pure returns (uint112) {
        if (value > type(uint112).max) {
            revert SafeCastOverflowedUintDowncast(112, value);
        }
        return uint112(value);
    }

    /**
     * @dev Returns the downcasted uint104 from uint256, reverting on
     * overflow (when the input is greater than largest uint104).
     *
     * Counterpart to Solidity's `uint104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toUint104(uint256 value) internal pure returns (uint104) {
        if (value > type(uint104).max) {
            revert SafeCastOverflowedUintDowncast(104, value);
        }
        return uint104(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        if (value > type(uint96).max) {
            revert SafeCastOverflowedUintDowncast(96, value);
        }
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint88 from uint256, reverting on
     * overflow (when the input is greater than largest uint88).
     *
     * Counterpart to Solidity's `uint88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toUint88(uint256 value) internal pure returns (uint88) {
        if (value > type(uint88).max) {
            revert SafeCastOverflowedUintDowncast(88, value);
        }
        return uint88(value);
    }

    /**
     * @dev Returns the downcasted uint80 from uint256, reverting on
     * overflow (when the input is greater than largest uint80).
     *
     * Counterpart to Solidity's `uint80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toUint80(uint256 value) internal pure returns (uint80) {
        if (value > type(uint80).max) {
            revert SafeCastOverflowedUintDowncast(80, value);
        }
        return uint80(value);
    }

    /**
     * @dev Returns the downcasted uint72 from uint256, reverting on
     * overflow (when the input is greater than largest uint72).
     *
     * Counterpart to Solidity's `uint72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toUint72(uint256 value) internal pure returns (uint72) {
        if (value > type(uint72).max) {
            revert SafeCastOverflowedUintDowncast(72, value);
        }
        return uint72(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        if (value > type(uint64).max) {
            revert SafeCastOverflowedUintDowncast(64, value);
        }
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint56 from uint256, reverting on
     * overflow (when the input is greater than largest uint56).
     *
     * Counterpart to Solidity's `uint56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toUint56(uint256 value) internal pure returns (uint56) {
        if (value > type(uint56).max) {
            revert SafeCastOverflowedUintDowncast(56, value);
        }
        return uint56(value);
    }

    /**
     * @dev Returns the downcasted uint48 from uint256, reverting on
     * overflow (when the input is greater than largest uint48).
     *
     * Counterpart to Solidity's `uint48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toUint48(uint256 value) internal pure returns (uint48) {
        if (value > type(uint48).max) {
            revert SafeCastOverflowedUintDowncast(48, value);
        }
        return uint48(value);
    }

    /**
     * @dev Returns the downcasted uint40 from uint256, reverting on
     * overflow (when the input is greater than largest uint40).
     *
     * Counterpart to Solidity's `uint40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toUint40(uint256 value) internal pure returns (uint40) {
        if (value > type(uint40).max) {
            revert SafeCastOverflowedUintDowncast(40, value);
        }
        return uint40(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        if (value > type(uint32).max) {
            revert SafeCastOverflowedUintDowncast(32, value);
        }
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint24 from uint256, reverting on
     * overflow (when the input is greater than largest uint24).
     *
     * Counterpart to Solidity's `uint24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toUint24(uint256 value) internal pure returns (uint24) {
        if (value > type(uint24).max) {
            revert SafeCastOverflowedUintDowncast(24, value);
        }
        return uint24(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        if (value > type(uint16).max) {
            revert SafeCastOverflowedUintDowncast(16, value);
        }
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        if (value > type(uint8).max) {
            revert SafeCastOverflowedUintDowncast(8, value);
        }
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        if (value < 0) {
            revert SafeCastOverflowedIntToUint(value);
        }
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int248 from int256, reverting on
     * overflow (when the input is less than smallest int248 or
     * greater than largest int248).
     *
     * Counterpart to Solidity's `int248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toInt248(int256 value) internal pure returns (int248 downcasted) {
        downcasted = int248(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(248, value);
        }
    }

    /**
     * @dev Returns the downcasted int240 from int256, reverting on
     * overflow (when the input is less than smallest int240 or
     * greater than largest int240).
     *
     * Counterpart to Solidity's `int240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toInt240(int256 value) internal pure returns (int240 downcasted) {
        downcasted = int240(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(240, value);
        }
    }

    /**
     * @dev Returns the downcasted int232 from int256, reverting on
     * overflow (when the input is less than smallest int232 or
     * greater than largest int232).
     *
     * Counterpart to Solidity's `int232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toInt232(int256 value) internal pure returns (int232 downcasted) {
        downcasted = int232(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(232, value);
        }
    }

    /**
     * @dev Returns the downcasted int224 from int256, reverting on
     * overflow (when the input is less than smallest int224 or
     * greater than largest int224).
     *
     * Counterpart to Solidity's `int224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toInt224(int256 value) internal pure returns (int224 downcasted) {
        downcasted = int224(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(224, value);
        }
    }

    /**
     * @dev Returns the downcasted int216 from int256, reverting on
     * overflow (when the input is less than smallest int216 or
     * greater than largest int216).
     *
     * Counterpart to Solidity's `int216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toInt216(int256 value) internal pure returns (int216 downcasted) {
        downcasted = int216(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(216, value);
        }
    }

    /**
     * @dev Returns the downcasted int208 from int256, reverting on
     * overflow (when the input is less than smallest int208 or
     * greater than largest int208).
     *
     * Counterpart to Solidity's `int208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toInt208(int256 value) internal pure returns (int208 downcasted) {
        downcasted = int208(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(208, value);
        }
    }

    /**
     * @dev Returns the downcasted int200 from int256, reverting on
     * overflow (when the input is less than smallest int200 or
     * greater than largest int200).
     *
     * Counterpart to Solidity's `int200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toInt200(int256 value) internal pure returns (int200 downcasted) {
        downcasted = int200(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(200, value);
        }
    }

    /**
     * @dev Returns the downcasted int192 from int256, reverting on
     * overflow (when the input is less than smallest int192 or
     * greater than largest int192).
     *
     * Counterpart to Solidity's `int192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toInt192(int256 value) internal pure returns (int192 downcasted) {
        downcasted = int192(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(192, value);
        }
    }

    /**
     * @dev Returns the downcasted int184 from int256, reverting on
     * overflow (when the input is less than smallest int184 or
     * greater than largest int184).
     *
     * Counterpart to Solidity's `int184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toInt184(int256 value) internal pure returns (int184 downcasted) {
        downcasted = int184(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(184, value);
        }
    }

    /**
     * @dev Returns the downcasted int176 from int256, reverting on
     * overflow (when the input is less than smallest int176 or
     * greater than largest int176).
     *
     * Counterpart to Solidity's `int176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toInt176(int256 value) internal pure returns (int176 downcasted) {
        downcasted = int176(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(176, value);
        }
    }

    /**
     * @dev Returns the downcasted int168 from int256, reverting on
     * overflow (when the input is less than smallest int168 or
     * greater than largest int168).
     *
     * Counterpart to Solidity's `int168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toInt168(int256 value) internal pure returns (int168 downcasted) {
        downcasted = int168(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(168, value);
        }
    }

    /**
     * @dev Returns the downcasted int160 from int256, reverting on
     * overflow (when the input is less than smallest int160 or
     * greater than largest int160).
     *
     * Counterpart to Solidity's `int160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toInt160(int256 value) internal pure returns (int160 downcasted) {
        downcasted = int160(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(160, value);
        }
    }

    /**
     * @dev Returns the downcasted int152 from int256, reverting on
     * overflow (when the input is less than smallest int152 or
     * greater than largest int152).
     *
     * Counterpart to Solidity's `int152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toInt152(int256 value) internal pure returns (int152 downcasted) {
        downcasted = int152(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(152, value);
        }
    }

    /**
     * @dev Returns the downcasted int144 from int256, reverting on
     * overflow (when the input is less than smallest int144 or
     * greater than largest int144).
     *
     * Counterpart to Solidity's `int144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toInt144(int256 value) internal pure returns (int144 downcasted) {
        downcasted = int144(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(144, value);
        }
    }

    /**
     * @dev Returns the downcasted int136 from int256, reverting on
     * overflow (when the input is less than smallest int136 or
     * greater than largest int136).
     *
     * Counterpart to Solidity's `int136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toInt136(int256 value) internal pure returns (int136 downcasted) {
        downcasted = int136(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(136, value);
        }
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toInt128(int256 value) internal pure returns (int128 downcasted) {
        downcasted = int128(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(128, value);
        }
    }

    /**
     * @dev Returns the downcasted int120 from int256, reverting on
     * overflow (when the input is less than smallest int120 or
     * greater than largest int120).
     *
     * Counterpart to Solidity's `int120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toInt120(int256 value) internal pure returns (int120 downcasted) {
        downcasted = int120(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(120, value);
        }
    }

    /**
     * @dev Returns the downcasted int112 from int256, reverting on
     * overflow (when the input is less than smallest int112 or
     * greater than largest int112).
     *
     * Counterpart to Solidity's `int112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toInt112(int256 value) internal pure returns (int112 downcasted) {
        downcasted = int112(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(112, value);
        }
    }

    /**
     * @dev Returns the downcasted int104 from int256, reverting on
     * overflow (when the input is less than smallest int104 or
     * greater than largest int104).
     *
     * Counterpart to Solidity's `int104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toInt104(int256 value) internal pure returns (int104 downcasted) {
        downcasted = int104(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(104, value);
        }
    }

    /**
     * @dev Returns the downcasted int96 from int256, reverting on
     * overflow (when the input is less than smallest int96 or
     * greater than largest int96).
     *
     * Counterpart to Solidity's `int96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toInt96(int256 value) internal pure returns (int96 downcasted) {
        downcasted = int96(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(96, value);
        }
    }

    /**
     * @dev Returns the downcasted int88 from int256, reverting on
     * overflow (when the input is less than smallest int88 or
     * greater than largest int88).
     *
     * Counterpart to Solidity's `int88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toInt88(int256 value) internal pure returns (int88 downcasted) {
        downcasted = int88(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(88, value);
        }
    }

    /**
     * @dev Returns the downcasted int80 from int256, reverting on
     * overflow (when the input is less than smallest int80 or
     * greater than largest int80).
     *
     * Counterpart to Solidity's `int80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toInt80(int256 value) internal pure returns (int80 downcasted) {
        downcasted = int80(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(80, value);
        }
    }

    /**
     * @dev Returns the downcasted int72 from int256, reverting on
     * overflow (when the input is less than smallest int72 or
     * greater than largest int72).
     *
     * Counterpart to Solidity's `int72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toInt72(int256 value) internal pure returns (int72 downcasted) {
        downcasted = int72(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(72, value);
        }
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toInt64(int256 value) internal pure returns (int64 downcasted) {
        downcasted = int64(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(64, value);
        }
    }

    /**
     * @dev Returns the downcasted int56 from int256, reverting on
     * overflow (when the input is less than smallest int56 or
     * greater than largest int56).
     *
     * Counterpart to Solidity's `int56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toInt56(int256 value) internal pure returns (int56 downcasted) {
        downcasted = int56(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(56, value);
        }
    }

    /**
     * @dev Returns the downcasted int48 from int256, reverting on
     * overflow (when the input is less than smallest int48 or
     * greater than largest int48).
     *
     * Counterpart to Solidity's `int48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toInt48(int256 value) internal pure returns (int48 downcasted) {
        downcasted = int48(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(48, value);
        }
    }

    /**
     * @dev Returns the downcasted int40 from int256, reverting on
     * overflow (when the input is less than smallest int40 or
     * greater than largest int40).
     *
     * Counterpart to Solidity's `int40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toInt40(int256 value) internal pure returns (int40 downcasted) {
        downcasted = int40(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(40, value);
        }
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toInt32(int256 value) internal pure returns (int32 downcasted) {
        downcasted = int32(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(32, value);
        }
    }

    /**
     * @dev Returns the downcasted int24 from int256, reverting on
     * overflow (when the input is less than smallest int24 or
     * greater than largest int24).
     *
     * Counterpart to Solidity's `int24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toInt24(int256 value) internal pure returns (int24 downcasted) {
        downcasted = int24(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(24, value);
        }
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toInt16(int256 value) internal pure returns (int16 downcasted) {
        downcasted = int16(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(16, value);
        }
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toInt8(int256 value) internal pure returns (int8 downcasted) {
        downcasted = int8(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(8, value);
        }
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        if (value > uint256(type(int256).max)) {
            revert SafeCastOverflowedUintToInt(value);
        }
        return int256(value);
    }

    /**
     * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.
     */
    function toUint(bool b) internal pure returns (uint256 u) {
        assembly ("memory-safe") {
            u := iszero(iszero(b))
        }
    }
}

File 32 of 40 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
        }
    }

    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return ternary(a > b, a, b);
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return ternary(a < b, a, b);
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson.
            // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,
            // taking advantage of the most significant (or "sign" bit) in two's complement representation.
            // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,
            // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).
            int256 mask = n >> 255;

            // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.
            return uint256((n + mask) ^ mask);
        }
    }
}

File 33 of 40 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

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

File 34 of 40 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 35 of 40 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     *
     * NOTE: ERC-2981 allows setting the royalty to 100% of the price. In that case all the price would be sent to the
     * royalty receiver and 0 tokens to the seller. Contracts dealing with royalty should consider empty transfers.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

File 36 of 40 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";

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

File 37 of 40 : ISwapRouter.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;

import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';

/// @title Router token swapping functionality
/// @notice Functions for swapping tokens via Uniswap V3
interface ISwapRouter is IUniswapV3SwapCallback {
    struct ExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);

    struct ExactInputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut);

    struct ExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn);

    struct ExactOutputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn);
}

File 38 of 40 : Errors.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of common custom errors used in multiple contracts
 *
 * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
 * It is recommended to avoid relying on the error API for critical functionality.
 *
 * _Available since v5.1._
 */
library Errors {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error InsufficientBalance(uint256 balance, uint256 needed);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedCall();

    /**
     * @dev The deployment failed.
     */
    error FailedDeployment();

    /**
     * @dev A necessary precompile is missing.
     */
    error MissingPrecompile(address);
}

File 39 of 40 : Panic.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)

pragma solidity ^0.8.20;

/**
 * @dev Helper library for emitting standardized panic codes.
 *
 * ```solidity
 * contract Example {
 *      using Panic for uint256;
 *
 *      // Use any of the declared internal constants
 *      function foo() { Panic.GENERIC.panic(); }
 *
 *      // Alternatively
 *      function foo() { Panic.panic(Panic.GENERIC); }
 * }
 * ```
 *
 * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
 *
 * _Available since v5.1._
 */
// slither-disable-next-line unused-state
library Panic {
    /// @dev generic / unspecified error
    uint256 internal constant GENERIC = 0x00;
    /// @dev used by the assert() builtin
    uint256 internal constant ASSERT = 0x01;
    /// @dev arithmetic underflow or overflow
    uint256 internal constant UNDER_OVERFLOW = 0x11;
    /// @dev division or modulo by zero
    uint256 internal constant DIVISION_BY_ZERO = 0x12;
    /// @dev enum conversion error
    uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;
    /// @dev invalid encoding in storage
    uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;
    /// @dev empty array pop
    uint256 internal constant EMPTY_ARRAY_POP = 0x31;
    /// @dev array out of bounds access
    uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;
    /// @dev resource error (too large allocation or too large array)
    uint256 internal constant RESOURCE_ERROR = 0x41;
    /// @dev calling invalid internal function
    uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;

    /// @dev Reverts with a panic code. Recommended to use with
    /// the internal constants with predefined codes.
    function panic(uint256 code) internal pure {
        assembly ("memory-safe") {
            mstore(0x00, 0x4e487b71)
            mstore(0x20, code)
            revert(0x1c, 0x24)
        }
    }
}

File 40 of 40 : IUniswapV3SwapCallback.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Callback for IUniswapV3PoolActions#swap
/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface
interface IUniswapV3SwapCallback {
    /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap.
    /// @dev In the implementation you must pay the pool tokens owed for the swap.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
    /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token0 to the pool.
    /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token1 to the pool.
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) external;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "codegen": "evmla",
  "libraries": {}
}

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"autoApproved","type":"bool"}],"name":"AutomaticApprovalOfTransferValidatorSet","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint32","name":"index","type":"uint32"},{"internalType":"uint64","name":"startTime","type":"uint64"},{"internalType":"uint64","name":"endTime","type":"uint64"},{"internalType":"int32","name":"latitude","type":"int32"},{"internalType":"int32","name":"longitude","type":"int32"},{"internalType":"string","name":"currency","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"shopUrl","type":"string"},{"internalType":"string","name":"imageUrl","type":"string"}],"indexed":false,"internalType":"struct IEventImplementation.EventData","name":"eventData","type":"tuple"}],"name":"EventDataSet","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint32","name":"index","type":"uint32"},{"internalType":"uint64","name":"startTime","type":"uint64"},{"internalType":"uint64","name":"endTime","type":"uint64"},{"internalType":"int32","name":"latitude","type":"int32"},{"internalType":"int32","name":"longitude","type":"int32"},{"internalType":"string","name":"currency","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"shopUrl","type":"string"},{"internalType":"string","name":"imageUrl","type":"string"}],"indexed":false,"internalType":"struct IEventImplementation.EventData","name":"eventData","type":"tuple"}],"name":"EventDataUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint64","name":"palletIndex","type":"uint64"},{"internalType":"address","name":"bondCouncil","type":"address"},{"internalType":"bool","name":"inventoryRegistered","type":"bool"},{"internalType":"bool","name":"financingActive","type":"bool"},{"internalType":"bool","name":"primaryBlocked","type":"bool"},{"internalType":"bool","name":"secondaryBlocked","type":"bool"},{"internalType":"bool","name":"scanBlocked","type":"bool"},{"internalType":"bool","name":"claimBlocked","type":"bool"}],"indexed":false,"internalType":"struct IEventImplementation.EventFinancing","name":"financing","type":"tuple"}],"name":"UpdateFinancing","type":"event"},{"inputs":[{"internalType":"string","name":"_name_","type":"string"},{"internalType":"string","name":"_symbol_","type":"string"},{"internalType":"address","name":"_registry","type":"address"},{"internalType":"address","name":"_storageProxy","type":"address"}],"name":"__EventImplementation_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32","name":"externalId","type":"bytes32"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint64","name":"orderTime","type":"uint64"},{"internalType":"uint40","name":"basePrice","type":"uint40"}],"internalType":"struct IEventImplementation.TicketAction[]","name":"_ticketActions","type":"tuple[]"},{"internalType":"uint8[]","name":"_actionCounts","type":"uint8[]"},{"internalType":"uint64[]","name":"_actionIds","type":"uint64[]"}],"name":"batchActions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32","name":"externalId","type":"bytes32"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint64","name":"orderTime","type":"uint64"},{"internalType":"uint40","name":"basePrice","type":"uint40"}],"internalType":"struct IEventImplementation.TicketAction[]","name":"_ticketActions","type":"tuple[]"},{"internalType":"uint8[]","name":"_actionCounts","type":"uint8[]"},{"internalType":"uint64[]","name":"_actionIds","type":"uint64[]"},{"internalType":"address","name":"_messageSender","type":"address"}],"name":"batchActionsFromFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"deleteRoyaltyException","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deleteRoyaltyInfoDefault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransferValidationFunction","outputs":[{"internalType":"bytes4","name":"functionSignature","type":"bytes4"},{"internalType":"bool","name":"isViewFunction","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32","name":"externalId","type":"bytes32"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint64","name":"orderTime","type":"uint64"},{"internalType":"uint40","name":"basePrice","type":"uint40"}],"internalType":"struct IEventImplementation.TicketAction","name":"_ticketAction","type":"tuple"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"autoApprove","type":"bool"}],"name":"setAutomaticApprovalOfTransfersFromValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltySplitter","type":"address"},{"internalType":"uint96","name":"_royaltyFee","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"index","type":"uint32"},{"internalType":"uint64","name":"startTime","type":"uint64"},{"internalType":"uint64","name":"endTime","type":"uint64"},{"internalType":"int32","name":"latitude","type":"int32"},{"internalType":"int32","name":"longitude","type":"int32"},{"internalType":"string","name":"currency","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"shopUrl","type":"string"},{"internalType":"string","name":"imageUrl","type":"string"}],"internalType":"struct IEventImplementation.EventData","name":"_eventData","type":"tuple"}],"name":"setEventData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint96","name":"_feeNominator","type":"uint96"}],"name":"setExceptionTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"palletIndex","type":"uint64"},{"internalType":"address","name":"bondCouncil","type":"address"},{"internalType":"bool","name":"inventoryRegistered","type":"bool"},{"internalType":"bool","name":"financingActive","type":"bool"},{"internalType":"bool","name":"primaryBlocked","type":"bool"},{"internalType":"bool","name":"secondaryBlocked","type":"bool"},{"internalType":"bool","name":"scanBlocked","type":"bool"},{"internalType":"bool","name":"claimBlocked","type":"bool"}],"internalType":"struct IEventImplementation.EventFinancing","name":"_financing","type":"tuple"}],"name":"setFinancing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_royaltySplitter","type":"address"},{"internalType":"uint96","name":"_royaltyFee","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNominator","type":"uint96"}],"name":"setTokenRoyaltyDefault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"storageProxy","outputs":[{"internalType":"contract IEventERC721CStorageProxy","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferByRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"index","type":"uint32"},{"internalType":"uint64","name":"startTime","type":"uint64"},{"internalType":"uint64","name":"endTime","type":"uint64"},{"internalType":"int32","name":"latitude","type":"int32"},{"internalType":"int32","name":"longitude","type":"int32"},{"internalType":"string","name":"currency","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"shopUrl","type":"string"},{"internalType":"string","name":"imageUrl","type":"string"}],"internalType":"struct IEventImplementation.EventData","name":"_eventData","type":"tuple"}],"name":"updateEventData","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000d912f59e88654bb75c2066cc8592cecc30fc45a4bd24873d4ec47ed1e6c00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000c0000000000020001000000010355000000600310027000000cc40030019d0000008004000039000000400040043f00000001002001900000006a0000c13d00000cc403300197000000040030008c000013db0000413d000000000201043b000000e00220027000000ccf0020009c0000008e0000213d00000ce80020009c000000de0000a13d00000ce90020009c000001700000a13d00000cea0020009c000003fc0000a13d00000ceb0020009c0000122f0000613d00000cec0020009c00000c2e0000613d00000ced0020009c000013db0000c13d000000840030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b00000cc70020009c000013db0000213d0000002304200039000000000034004b000013db0000813d000b00040020003d0000000b04100360000000000404043b000c00000004001d00000cc70040009c000013db0000213d0000000c02200029000a00240020003d0000000a0030006b000013db0000213d0000002402100370000000000202043b00000cc70020009c000013db0000213d0000002304200039000000000034004b000013db0000813d000800040020003d0000000804100360000000000404043b000900000004001d00000cc70040009c000013db0000213d0000000902200029000700240020003d000000070030006b000013db0000213d0000004402100370000000000202043b000600000002001d00000d000020009c000013db0000213d0000006401100370000000000101043b000500000001001d00000d000010009c000013db0000213d00000cc501000041000000000101041a00040cc60010019b00000cc702100198000018d40000613d000000010020008c00001efa0000c13d00000cc801000041000000000010044300000000010004100000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b00001efa0000c13d000000400100043d000300000001001d000000000300003100000cc501000041000000000101041a000018d70000013d0000000001000416000000000001004b000013db0000c13d00000cc501000041000000000301041a00000cc60230019700000cc701300198000000c70000613d000c00000002001d000000010010008c00001efa0000c13d000b00000003001d00000cc801000041000000000010044300000000010004100000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b0000000b0300002900001efa0000c13d00000cca0130019700000001011001bf00000cc502000041000000000012041b0000000c0000006b000000c90000613d000000d90000013d00000cd00020009c000000ef0000a13d00000cd10020009c0000021b0000a13d00000cd20020009c000004ab0000a13d00000cd30020009c0000123e0000613d00000cd40020009c00000cd90000613d00000cd50020009c000013db0000c13d000000a40030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000003102000039000000000202041a00000d00022001970000000003000411000000000023004b000013370000c13d0000012002000039000000400020043f0000000402100370000000000202043b000000800020043f0000002403100370000000000303043b000000a00030043f0000004403100370000000000303043b00000d000030009c000013db0000213d000000c00030043f0000006404100370000000000404043b00000cc70040009c000013db0000213d000000e00040043f0000008401100370000000000101043b00000d050010009c000013db0000213d000001000010043f000000000003004b000014830000c13d00000d0101000041000001200010043f0000002001000039000001240010043f000001440010043f00000d1501000041000001640010043f00000d1601000041000032f200010430000000000002004b00001efa0000c13d00000ccb0130019700000001011001bf00000cc502000041000000000012041b0000000103000039000000800030043f000000000100041400000cc40010009c00000cc401008041000000c00110021000000ccc011001c70000800d0200003900000ccd0400004132f032e60000040f0000000100200190000013db0000613d00000020010000390000010000100443000001200000044300000cce01000041000032f10001042e00000cf50020009c000002460000213d00000cfb0020009c0000054a0000213d00000cfe0020009c00000cec0000613d00000cff0020009c000013db0000c13d0000000001000416000000000001004b000013db0000c13d0000000201000039000000000101041a00000d0001100197000000800010043f00000d4201000041000032f10001042e00000cdd0020009c000002a70000213d00000ce30020009c000005b20000213d00000ce60020009c00000d040000613d00000ce70020009c000013db0000c13d000000640030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d00000d000020009c000013db0000213d0000002402100370000000000202043b000b00000002001d00000d000020009c000013db0000213d0000004401100370000000000101043b000900000001001d0000002f01000039000000000101041a00000cc802000041000000000020044300000d0001100197000a00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d45010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000800000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000a0200002932f032eb0000040f0000000100200190000015630000613d000000080100002900000cc70010009c00001a720000213d0000000801000029000000400010043f0000003001000039000000000101041a00000cc802000041000000000020044300000d0001100197000a00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000044013000390000000b02000029000000000021043500000024013000390000000c02000029000000000021043500000d4601000041000000000013043500000004013000390000000902000029000000000021043500000cc40030009c000800000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0a011001c70000000a0200002932f032e60000040f0000000100200190000017f10000613d000000080100002900000cc70010009c00001a720000213d0000000801000029000000400010043f0000000c010000290000000b02000029000000090300002932f027a20000040f0000000001000019000032f10001042e00000cf00020009c000003010000213d00000cf30020009c000007640000613d00000cf40020009c000013db0000c13d000000440030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d00000d000020009c000013db0000213d0000002401100370000000000101043b000b00000001001d00000d520010009c000013db0000213d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000019f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000019b0000c13d000000000006004b000001ac0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000013e90000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000a00000001001d00000d000010009c000013db0000213d00000cc80100004100000000001004430000000a010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000900000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000a0200002932f032eb0000040f0000000100200190000017250000613d000000090100002900000cc70010009c00001a720000213d0000000901000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000a00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000024013000390000000b02000029000000000021043500000d5b01000041000000000013043500000004013000390000000c02000029000000000021043500000cc40030009c000c00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d12011001c70000000a0200002932f032e60000040f000000010020019000000dc40000c13d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000002160000c13d00001c2d0000013d00000cd80020009c0000036b0000213d00000cdb0020009c000007920000613d00000cdc0020009c000013db0000c13d000000840030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d00000d000020009c000013db0000213d0000002402100370000000000202043b000b00000002001d00000d000020009c000013db0000213d0000006402100370000000000402043b00000cc70040009c000013db0000213d0000002302400039000000000032004b000013db0000813d0000000402400039000000000221034f000000000202043b0000004401100370000000000101043b000a00000001001d000000240140003932f021db0000040f00000000040100190000000c010000290000000b020000290000000a0300002932f023860000040f0000000001000019000032f10001042e00000cf60020009c000006610000213d00000cf90020009c00000d1b0000613d00000cfa0020009c000013db0000c13d000000440030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d00000d000020009c000013db0000213d0000000202000039000000000202041a0000002401100370000000000301043b00000d0601000041000000800010043f000b00000003001d000000840030043f000000000100041400000d000220019700000cc40010009c00000cc401008041000000c00110021000000d1d011001c732f032eb0000040f000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000080057001bf000002740000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000002700000c13d000000000006004b000002810000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000013b00000613d0000001f01400039000000e00210018f0000008004200039000000400040043f000000600030008c000013db0000413d000000e001200039000000400010043f000000800100043d00000d000010009c000013db0000213d0000000000140435000000a00300043d00000d050030009c000013db0000213d000000a0042000390000000000340435000000c00300043d000000ff0030008c000013db0000213d000000c0022000390000000000320435000000000001004b000003570000613d0000000c0010006b000017590000c13d000000400100043d000000640210003900000d71030000410000000000320435000000440210003900000d7203000041000000000032043500000024021000390000002103000039000003600000013d00000cde0020009c000006c00000213d00000ce10020009c00000d250000613d00000ce20020009c000013db0000c13d0000000001000416000000000001004b000013db0000c13d0000000201000039000000000101041a00000d4002000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f00000060031002700000001f0430018f00000d080530019700000cc4033001970000000100200190000013140000613d0000008002500039000000000005004b000002ca0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000002c60000c13d000000000004004b000002d70000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f0130003900000d21021001970000008001200039000000400010043f000000200030008c000013db0000413d000000800400043d00000cc70040009c000013db0000213d00000080053000390000009f03400039000000000053004b000013db0000813d0000008003400039000000000303043300000cc70030009c00001a720000213d0000001f0630003900000d7d066001970000003f0660003900000d7d06600197000000000616001900000cc70060009c00001a720000213d000000400060043f0000000000310435000000a0044000390000000006430019000000000056004b000013db0000213d000000a002200039000000000003004b000005a10000613d000000000500001900000000062500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000002f90000413d000005a10000013d00000cf10020009c000007b10000613d00000cf20020009c000013db0000c13d000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000401100370000000000301043b0000003101000039000000000101041a00000d00011001970000000002000411000000000012004b000012f00000c13d0000000201000039000000000101041a00000d0602000041000000800020043f000c00000003001d000000840030043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d1d011001c732f032eb0000040f000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000080057001bf0000032e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000032a0000c13d000000000006004b0000033b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000135b0000613d0000001f01400039000000e00110018f0000008002100039000000400020043f000000600030008c000013db0000413d000000e003100039000000400030043f000000800300043d000b00000003001d00000d000030009c000013db0000213d0000000b030000290000000000320435000000a00200043d00000d050020009c000013db0000213d000000a0031000390000000000230435000000c00200043d000000ff0020008c000013db0000213d000000c00110003900000000002104350000000b0000006b000015d80000c13d000000400100043d000000640210003900000d73030000410000000000320435000000440210003900000d7403000041000000000032043500000024021000390000002903000039000000000032043500000d0102000041000000000021043500000004021000390000002003000039000000000032043500000cc40010009c00000cc401008041000000400110021000000d0d011001c7000032f20001043000000cd90020009c000007fc0000613d00000cda0020009c000013db0000c13d0000000001000416000000000001004b000013db0000c13d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000038c0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000003880000c13d000000000006004b000003990000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000012e40000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000c00000001001d00000d000010009c000013db0000213d00000cc80100004100000000001004430000000c010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000b00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000c0200002932f032eb0000040f0000000100200190000015700000613d0000000b0100002900000cc70010009c00001a720000213d0000000b01000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000c00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400200043d00000d3601000041000000000012043500000cc40020009c000b00000002001d00000cc40100004100000000010240190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c70000000c0200002932f032e60000040f0000000100200190000019e40000613d0000000b0100002900000cc70010009c00001a720000213d0000000b01000029000000400010043f0000000001000019000032f10001042e00000cee0020009c000008150000613d00000cef0020009c000013db0000c13d000000640030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d0000002402100370000000000202043b000b00000002001d00000d000020009c000013db0000213d0000004401100370000000000101043b000a00000001001d00000d520010009c000013db0000213d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000042c0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000004280000c13d000000000006004b000004390000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000014010000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000900000001001d00000d000010009c000013db0000213d00000cc801000041000000000010044300000009010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000800000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c7000000090200002932f032eb0000040f00000001002001900000173f0000613d000000080100002900000cc70010009c00001a720000213d0000000801000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000900000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000044013000390000000a02000029000000000021043500000024013000390000000b02000029000000000021043500000d5401000041000000000013043500000004013000390000000c02000029000000000021043500000cc40030009c000c00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0a011001c7000000090200002932f032e60000040f000000010020019000000dc40000c13d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000004a60000c13d00001c2d0000013d00000cd60020009c00000b900000613d00000cd70020009c000013db0000c13d000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000401100370000000000101043b000c00000001001d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000004d10000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000004cd0000c13d000000000006004b000004de0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000013080000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000b00000001001d00000d000010009c000013db0000213d00000cc80100004100000000001004430000000b010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000a00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000b0200002932f032eb0000040f00000001002001900000158a0000613d0000000a0100002900000cc70010009c00001a720000213d0000000a01000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000b00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1c01000041000000000013043500000004013000390000000c02000029000000000021043500000cc40030009c000c00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000b0200002932f032e60000040f000000010020019000000dc40000c13d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000005450000c13d00001c2d0000013d00000cfc0020009c00000d2c0000613d00000cfd0020009c000013db0000c13d0000000001000416000000000001004b000013db0000c13d0000000201000039000000000101041a00000d7502000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f00000060031002700000001f0430018f00000d080530019700000cc40330019700000001002001900000131f0000613d0000008002500039000000000005004b0000056b0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000005670000c13d000000000004004b000005780000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f0130003900000d21021001970000008001200039000000400010043f000000200030008c000013db0000413d000000800400043d00000cc70040009c000013db0000213d00000080053000390000009f03400039000000000053004b000013db0000813d0000008003400039000000000303043300000cc70030009c00001a720000213d0000001f0630003900000d7d066001970000003f0660003900000d7d06600197000000000616001900000cc70060009c00001a720000213d000000400060043f0000000000310435000000a0044000390000000006430019000000000056004b000013db0000213d000000a002200039000000000003004b000005a10000613d000000000500001900000000062500190000000007450019000000000707043300000000007604350000002005500039000000000035004b0000059a0000413d000000000223001900000000000204350000002002000039000000400300043d000c00000003001d000000000223043632f021c90000040f0000000c02000029000000000121004900000cc40010009c00000cc401008041000000600110021000000cc40020009c00000cc4020080410000004002200210000000000121019f000032f10001042e00000ce40020009c00000dcb0000613d00000ce50020009c000013db0000c13d000000840030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b00000cc70020009c000013db0000213d0000002304200039000000000034004b000013db0000813d0000000404200039000000000441034f000000000404043b000c00000004001d00000cc70040009c000013db0000213d000b00240020003d0000000c02000029000000a0022000c90000000b02200029000000000032004b000013db0000213d0000002402100370000000000202043b00000cc70020009c000013db0000213d0000002304200039000000000034004b000013db0000813d0000000404200039000000000441034f000000000404043b000a00000004001d00000cc70040009c000013db0000213d000900240020003d0000000a0200002900000005022002100000000902200029000000000032004b000013db0000213d0000004402100370000000000202043b00000cc70020009c000013db0000213d0000002304200039000000000034004b000013db0000813d0000000404200039000000000441034f000000000404043b000800000004001d00000cc70040009c000013db0000213d000700240020003d000000080200002900000005022002100000000702200029000000000032004b000013db0000213d0000006401100370000000000101043b000600000001001d00000d000010009c000013db0000213d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006130000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000060f0000c13d000000000006004b000006200000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001a830000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000500000001001d00000d000010009c000013db0000213d00000cc801000041000000000010044300000005010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000400000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c7000000050200002932f032eb0000040f000000010020019000001c6f0000613d000000040100002900000cc70010009c00001a720000213d0000000401000029000000400010043f0000000b010000290000000c0200002900000009030000290000000a0400002900000007050000290000000806000029000000060700002932f027b00000040f0000000001000019000032f10001042e00000cf70020009c00000eab0000613d00000cf80020009c000013db0000c13d000000640030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d00000d000020009c000013db0000213d0000002402100370000000000202043b000b00000002001d00000d000020009c000013db0000213d0000000202000039000000000202041a0000004401100370000000000301043b00000d5f01000041000000800010043f000a00000003001d000000840030043f000000000100041400000d000220019700000cc40010009c00000cc401008041000000c00110021000000d1d011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006920000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000068e0000c13d000000000006004b0000069f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000014250000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000013db0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000013db0000c13d000000000003004b000015b00000c13d00000d0103000041000000000031043500000084032001bf00000020040000390000000000430435000000e40320003900000d67040000410000000000430435000000c40320003900000d68040000410000000000430435000000a4022000390000002c030000390000000000320435000000400110021000000d0d011001c7000032f20001043000000cdf0020009c00000eb40000613d00000ce00020009c000013db0000c13d000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000c00000002001d000000000012004b000013db0000c13d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006eb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006e70000c13d000000000006004b000006f80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000013bc0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000b00000001001d00000d000010009c000013db0000213d00000cc80100004100000000001004430000000b010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000a00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000b0200002932f032eb0000040f0000000100200190000016b40000613d0000000a0100002900000cc70010009c00001a720000213d0000000a01000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000b00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d3d01000041000000000013043500000004013000390000000c02000029000000000021043500000cc40030009c000c00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000b0200002932f032e60000040f000000010020019000000dc40000c13d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000075f0000c13d00001c2d0000013d000000440030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000002402100370000000000202043b000c00000002001d0000000401100370000000000101043b000000000010043f0000000101000039000000200010043f000000000100041400000cc40010009c00000cc401008041000000c00110021000000d5c011001c7000080100200003932f032eb0000040f0000000100200190000013db0000613d000000000101043b000000000201041a00000d0001200198000007800000c13d000000000200041a00000d0001200197000000a0032002700000000c0400002900000000024300a9000000000004004b000007880000613d00000000044200d9000000000043004b0000155d0000c13d000027100220011a000000400300043d00000020043000390000000000240435000000000013043500000cc40030009c00000cc403008041000000400130021000000d5e011001c7000032f10001042e000000440030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d00000d000020009c000013db0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000b00000002001d000000000012004b000013db0000c13d00000000020004110000000c0020006b000013c80000c13d00000d0101000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f00000d3b01000041000000c40010043f00000d3c01000041000032f200010430000000640030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d00000d000020009c000013db0000213d0000002402100370000000000202043b000b00000002001d00000d000020009c000013db0000213d0000004401100370000000000101043b000a00000001001d0000003001000039000000000101041a00000cc802000041000000000020044300000d0001100197000900000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000044013000390000000b02000029000000000021043500000024013000390000000c02000029000000000021043500000d4601000041000000000013043500000004013000390000000a02000029000000000021043500000cc40030009c000800000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0a011001c7000000090200002932f032e60000040f0000000100200190000014430000613d000000080100002900000cc70010009c00001a720000213d0000000801000029000000400010043f0000000c010000290000000b020000290000000a0300002932f027a20000040f0000000001000019000032f10001042e000000640030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000402043b00000d000040009c000013db0000213d0000002402100370000000000202043b00000d000020009c000013db0000213d0000003103000039000000000303041a00000d00033001970000000005000411000000000035004b000013dd0000c13d0000004401100370000000000301043b000000000104001932f0312b0000040f0000000001000019000032f10001042e000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000401100370000000000101043b000c00000001001d00000cc70010009c000013db0000213d0000000c0130006a00000d220010009c000013db0000213d000001240010008c000013db0000413d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000083e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000083a0000c13d000000000006004b0000084b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000134f0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000b00000001001d00000d000010009c000013db0000213d00000cc80100004100000000001004430000000b010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000a00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000b0200002932f032eb0000040f0000000100200190000015cb0000613d0000000a0100002900000cc70010009c00001a720000213d0000000a01000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000b00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d0000000c010000290000000402100039000000400300043d00000d55010000410000000000130435000c00000003001d0000000401300039000000200300003900000000003104350000000101000367000a00000002001d000000000221034f000000000202043b00000cc40020009c000013db0000213d0000000c03000029000000240330003900000000002304350000000a020000290000002002200039000000000321034f000000000303043b00000cc70030009c000013db0000213d0000000c04000029000000440440003900000000003404350000002002200039000000000321034f000000000303043b00000cc70030009c000013db0000213d0000000c04000029000000640440003900000000003404350000002002200039000000000321034f000000000303043b00000d240030019800000d2504000041000000000400601900000d2605300197000000000454019f000000000034004b000013db0000c13d0000000c04000029000000840440003900000000003404350000002004200039000000000241034f000000000202043b00000d240020019800000d2503000041000000000300601900000d2605200197000000000353019f000000000023004b000013db0000c13d0000000c03000029000000a403300039000000000023043500000000020000310000000a0320006a0000001f0330008a0000002006400039000000000461034f000000000504043b00000d270750019700000d2704300197000000000847013f000000000047004b000000000700001900000d2707004041000000000035004b000000000900001900000d270900804100000d270080009c000000000709c019000000000007004b000013db0000c13d0000000a07500029000000000571034f000000000505043b00000cc70050009c000013db0000213d00000020077000390000000008520049000000000087004b000000000900001900000d270900204100000d270880019700000d270a700197000000000b8a013f00000000008a004b000000000800001900000d270800404100000d2700b0009c000000000809c019000000000008004b000013db0000c13d0000000c0c000029000000c408c00039000001200900003900000000009804350000014408c000390000000000580435000000000971034f00000d7d0a5001980000001f0b50018f0000016408c000390000000007a800190000090b0000613d000000000c09034f000000000d08001900000000ce0c043c000000000ded043600000000007d004b000009070000c13d00000000000b004b000009180000613d0000000009a9034f000000030ab00210000000000b070433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000970435000000000785001900000000000704350000002007600039000000000671034f000000000606043b00000d2709600197000000000a49013f000000000049004b000000000900001900000d2709004041000000000036004b000000000b00001900000d270b00804100000d2700a0009c00000000090bc019000000000009004b000013db0000c13d0000000a09600029000000000691034f000000000606043b00000cc70060009c000013db0000213d0000002009900039000000000a6200490000000000a9004b000000000b00001900000d270b00204100000d270aa0019700000d270c900197000000000dac013f0000000000ac004b000000000a00001900000d270a00404100000d2700d0009c000000000a0bc01900000000000a004b000013db0000c13d0000001f0550003900000d7d05500197000000000885001900000140055000390000000c0a000029000000e40aa0003900000000005a0435000000000991034f000000000868043600000d7d0a6001980000001f0b60018f0000000005a80019000009500000613d000000000c09034f000000000d08001900000000ce0c043c000000000ded043600000000005d004b0000094c0000c13d00000000000b004b0000095d0000613d0000000009a9034f000000030ab00210000000000b050433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000950435000000000586001900000000000504350000002007700039000000000571034f000000000505043b00000d2709500197000000000a49013f000000000049004b000000000900001900000d2709004041000000000035004b000000000b00001900000d270b00804100000d2700a0009c00000000090bc019000000000009004b000013db0000c13d0000000a09500029000000000591034f000000000505043b00000cc70050009c000013db0000213d0000002009900039000000000a5200490000000000a9004b000000000b00001900000d270b00204100000d270aa0019700000d270c900197000000000dac013f0000000000ac004b000000000a00001900000d270a00404100000d2700d0009c000000000a0bc01900000000000a004b000013db0000c13d0000001f0660003900000d7d0660019700000000068600190000000c0a0000290000000008a60049000000240880008a000001040aa0003900000000008a0435000000000991034f000000000656043600000d7d0a5001980000001f0b50018f0000000008a60019000009960000613d000000000c09034f000000000d06001900000000ce0c043c000000000ded043600000000008d004b000009920000c13d00000000000b004b000009a30000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f000000000098043500000000086500190000000000080435000900200070003d0000000907100360000000000707043b00000d2708700197000000000948013f000000000048004b000000000400001900000d2704004041000000000037004b000000000300001900000d270300804100000d270090009c000000000403c019000000000004004b000013db0000c13d0000000a04700029000000000341034f000000000303043b00000cc70030009c000013db0000213d00000020044000390000000002320049000000000024004b000000000700001900000d270700204100000d270220019700000d2708400197000000000928013f000000000028004b000000000200001900000d270200404100000d270090009c000000000207c019000000000002004b000013db0000c13d0000001f0250003900000d7d0220019700000000026200190000000c060000290000000005620049000000240550008a00000124066000390000000000560435000000000441034f000000000132043600000d7d053001980000001f0630018f0000000002510019000009dc0000613d000000000704034f0000000008010019000000007907043c0000000008980436000000000028004b000009d80000c13d000000000006004b000009e90000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000420435000000000213001900000000000204350000001f0230003900000d7d022001970000000c030000290000000001310049000000000121001900000cc40010009c00000cc401008041000000600110021000000cc40030009c00000cc40200004100000000020340190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f0000000b0200002932f032e60000040f000000010020019000001efe0000613d0000000c0100002900000cc70010009c00001a720000213d0000000c01000029000000400010043f0000003001000039000000000101041a00000cc802000041000000000020044300000d0001100197000c00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400200043d00000d56010000410000000000120435000b00000002001d0000000401200039000000200200003900000000002104350000000901000029000001000210008a0000000101000367000000000321034f000000000303043b00000cc40030009c000013db0000213d0000000b04000029000000240440003900000000003404350000002002200039000000000321034f000000000303043b00000cc70030009c000013db0000213d0000000b04000029000000440440003900000000003404350000002002200039000000000321034f000000000303043b00000cc70030009c000013db0000213d0000000b04000029000000640440003900000000003404350000002002200039000000000321034f000000000303043b00000d240030019800000d2504000041000000000400601900000d2605300197000000000454019f000000000034004b000013db0000c13d0000000b04000029000000840440003900000000003404350000002004200039000000000241034f000000000202043b00000d240020019800000d2503000041000000000300601900000d2605200197000000000353019f000000000023004b000013db0000c13d0000000b03000029000000a403300039000000000023043500000000020000310000000a0320006a0000001f0330008a0000002006400039000000000461034f000000000504043b00000d270750019700000d2704300197000000000847013f000000000047004b000000000700001900000d2707004041000000000035004b000000000900001900000d270900804100000d270080009c000000000709c019000000000007004b000013db0000c13d0000000a07500029000000000571034f000000000505043b00000cc70050009c000013db0000213d00000020077000390000000008520049000000000087004b000000000900001900000d270900204100000d270880019700000d270a700197000000000b8a013f00000000008a004b000000000800001900000d270800404100000d2700b0009c000000000809c019000000000008004b000013db0000c13d0000000b0c000029000000c408c00039000001200900003900000000009804350000014408c000390000000000580435000000000971034f00000d7d0a5001980000001f0b50018f0000016408c000390000000007a8001900000a8d0000613d000000000c09034f000000000d08001900000000ce0c043c000000000ded043600000000007d004b00000a890000c13d00000000000b004b00000a9a0000613d0000000009a9034f000000030ab00210000000000b070433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000970435000000000785001900000000000704350000002007600039000000000671034f000000000606043b00000d2709600197000000000a49013f000000000049004b000000000900001900000d2709004041000000000036004b000000000b00001900000d270b00804100000d2700a0009c00000000090bc019000000000009004b000013db0000c13d0000000a09600029000000000691034f000000000606043b00000cc70060009c000013db0000213d0000002009900039000000000a6200490000000000a9004b000000000b00001900000d270b00204100000d270aa0019700000d270c900197000000000dac013f0000000000ac004b000000000a00001900000d270a00404100000d2700d0009c000000000a0bc01900000000000a004b000013db0000c13d0000001f0550003900000d7d05500197000000000885001900000140055000390000000b0a000029000000e40aa0003900000000005a0435000000000991034f000000000868043600000d7d0a6001980000001f0b60018f0000000005a8001900000ad20000613d000000000c09034f000000000d08001900000000ce0c043c000000000ded043600000000005d004b00000ace0000c13d00000000000b004b00000adf0000613d0000000009a9034f000000030ab00210000000000b050433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000950435000000000586001900000000000504350000002007700039000000000571034f000000000505043b00000d2709500197000000000a49013f000000000049004b000000000900001900000d2709004041000000000035004b000000000b00001900000d270b00804100000d2700a0009c00000000090bc019000000000009004b000013db0000c13d0000000a09500029000000000591034f000000000505043b00000cc70050009c000013db0000213d0000002009900039000000000a5200490000000000a9004b000000000b00001900000d270b00204100000d270aa0019700000d270c900197000000000dac013f0000000000ac004b000000000a00001900000d270a00404100000d2700d0009c000000000a0bc01900000000000a004b000013db0000c13d0000001f0660003900000d7d0660019700000000068600190000000b0a0000290000000008a60049000000240880008a000001040aa0003900000000008a0435000000000991034f000000000656043600000d7d0a5001980000001f0b50018f0000000008a6001900000b180000613d000000000c09034f000000000d06001900000000ce0c043c000000000ded043600000000008d004b00000b140000c13d00000000000b004b00000b250000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000980435000000000865001900000000000804350000002007700039000000000771034f000000000707043b00000d2708700197000000000948013f000000000048004b000000000400001900000d2704004041000000000037004b000000000300001900000d270300804100000d270090009c000000000403c019000000000004004b000013db0000c13d0000000a04700029000000000341034f000000000303043b00000cc70030009c000013db0000213d00000020044000390000000002320049000000000024004b000000000700001900000d270700204100000d270220019700000d2708400197000000000928013f000000000028004b000000000200001900000d270200404100000d270090009c000000000207c019000000000002004b000013db0000c13d0000001f0250003900000d7d0220019700000000026200190000000b060000290000000005620049000000240550008a00000124066000390000000000560435000000000441034f000000000132043600000d7d053001980000001f0630018f000000000251001900000b5e0000613d000000000704034f0000000008010019000000007907043c0000000008980436000000000028004b00000b5a0000c13d000000000006004b00000b6b0000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000420435000000000213001900000000000204350000001f0230003900000d7d022001970000000b030000290000000001310049000000000121001900000cc40010009c00000cc401008041000000600110021000000cc40030009c00000cc40200004100000000020340190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f0000000c0200002932f032e60000040f0000000100200190000003f50000c13d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00000b8b0000c13d00001c2d0000013d000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000202000039000b00000002001d000000000202041a0000000401100370000000000301043b00000d0601000041000000800010043f000c00000003001d000000840030043f000000000100041400000d000220019700000cc40010009c00000cc401008041000000c00110021000000d1d011001c732f032eb0000040f000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000080057001bf00000bb40000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bb00000c13d000000000006004b00000bc10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000012fc0000613d0000001f01400039000000e00110018f0000008004100039000000400040043f000000600030008c000013db0000413d000000e002100039000000400020043f000000800200043d00000d000020009c000013db0000213d0000000000240435000000a00300043d00000d050030009c000013db0000213d000000a0041000390000000000340435000000c00300043d000000ff0030008c000013db0000213d000000c0011000390000000000310435000000400100043d000a00000001001d000000000002004b00001a280000c13d0000000201000039000000000201041a00000d1e010000410000000a04000029000000000014043500000004014000390000000c03000029000000000031043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d0f011001c700000d000220019732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900000c000000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00000bfc0000c13d000000000006004b00000c0d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000016a80000613d0000001f01400039000000600210018f0000000a01200029000000000021004b0000000002000039000000010200403900000cc70010009c00001a720000213d000000010020019000001a720000c13d000000400010043f000000200030008c000013db0000413d0000000a020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000013db0000c13d000000000002004b00001a270000c13d000000640210003900000d34030000410000000000320435000000440210003900000d3503000041000000000032043500000024021000390000002f03000039000003600000013d000000640030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d00000d000020009c000013db0000213d0000002402100370000000000202043b000b00000002001d0000004401100370000000000101043b000a00000001001d00000d520010009c000013db0000213d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c5a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c560000c13d000000000006004b00000c670000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000013f50000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000900000001001d00000d000010009c000013db0000213d00000cc801000041000000000010044300000009010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000800000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c7000000090200002932f032eb0000040f0000000100200190000017320000613d000000080100002900000cc70010009c00001a720000213d0000000801000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000900000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000044013000390000000a02000029000000000021043500000024013000390000000b02000029000000000021043500000d5301000041000000000013043500000004013000390000000c02000029000000000021043500000cc40030009c000c00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0a011001c7000000090200002932f032e60000040f000000010020019000000dc40000c13d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00000cd40000c13d00001c2d0000013d000000440030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000302043b00000d000030009c000013db0000213d0000002401100370000000000201043b00000d000020009c000013db0000213d000000000103001932f0264d0000040f000000000001004b0000000001000039000000010100c039000012370000013d000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000401100370000000000201043b00000d7700200198000013db0000c13d000000010100003900000d780220019700000d790020009c00000d000000613d00000d7a0020009c00000d000000613d00000d7b0020009c0000000001000039000000010100603900000d7c0020009c00000001011061bf000000010110018f000000800010043f00000d4201000041000032f10001042e000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000401100370000000000101043b00000d000010009c000013db0000213d000000000001004b000013730000c13d00000d0101000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f00000d4701000041000000c40010043f00000d4801000041000000e40010043f00000d0401000041000032f200010430000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000401100370000000000101043b32f022130000040f00000d0001100197000012370000013d0000000001000416000000000001004b000013db0000c13d00000d4101000041000000800010043f00000d4201000041000032f10001042e000000440030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b000c00000002001d00000d000020009c000013db0000213d0000002401100370000000000101043b000b00000001001d00000d520010009c000013db0000213d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d550000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d510000c13d000000000006004b00000d620000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000140d0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000a00000001001d00000d000010009c000013db0000213d00000cc80100004100000000001004430000000a010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000900000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000a0200002932f032eb0000040f00000001002001900000174c0000613d000000090100002900000cc70010009c00001a720000213d0000000901000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000a00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000024013000390000000b02000029000000000021043500000d7601000041000000000013043500000004013000390000000c02000029000000000021043500000cc40030009c000c00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d12011001c70000000a0200002932f032e60000040f000000010020019000001c210000613d0000000c0100002900000cc70010009c00001a720000213d0000000c01000029000000400010043f0000000001000019000032f10001042e000001040030008c000013db0000413d0000000001000416000000000001004b000013db0000c13d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000dea0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000de60000c13d000000000006004b00000df70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000013430000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000c00000001001d00000d000010009c000013db0000213d00000cc80100004100000000001004430000000c010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1b010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000b00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000c0200002932f032eb0000040f0000000100200190000015a30000613d0000000b0100002900000cc70010009c00001a720000213d0000000b01000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000c00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400200043d00000d4301000041000b00000002001d000000000012043500000001010003670000000402100370000000000202043b00000cc70020009c000013db0000213d0000000b03000029000000040330003900000000002304350000002402100370000000000202043b00000d000020009c000013db0000213d0000000b03000029000000240330003900000000002304350000004402100370000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000013db0000c13d0000000b03000029000000440330003900000000002304350000006402100370000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000013db0000c13d0000000b03000029000000640330003900000000002304350000008402100370000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000013db0000c13d0000000b0300002900000084033000390000000000230435000000a402100370000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000013db0000c13d0000000b03000029000000a4033000390000000000230435000000c402100370000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000013db0000c13d0000000b03000029000000c4033000390000000000230435000000e401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b000013db0000c13d0000000b03000029000000e402300039000000000012043500000cc40030009c00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d44011001c70000000c0200002932f032e60000040f0000000100200190000003f50000c13d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00000ea60000c13d00001c2d0000013d0000000001000416000000000001004b000013db0000c13d00000d6901000041000000800010043f0000000101000039000000a00010043f00000d6a01000041000032f10001042e000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000401100370000000000101043b000c00000001001d00000cc70010009c000013db0000213d0000000c0130006a00000d220010009c000013db0000213d000001240010008c000013db0000413d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000edd0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ed90000c13d000000000006004b00000eea0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000013670000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000b00000001001d00000d000010009c000013db0000213d00000cc80100004100000000001004430000000b010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1a010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000a00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000b0200002932f032eb0000040f00000001002001900000169b0000613d0000000a0100002900000cc70010009c00001a720000213d0000000a01000029000000400010043f0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000b00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d0000000c010000290000000402100039000000400300043d00000d3e010000410000000000130435000c00000003001d0000000401300039000000200300003900000000003104350000000101000367000a00000002001d000000000221034f000000000202043b00000cc40020009c000013db0000213d0000000c03000029000000240330003900000000002304350000000a020000290000002002200039000000000321034f000000000303043b00000cc70030009c000013db0000213d0000000c04000029000000440440003900000000003404350000002002200039000000000321034f000000000303043b00000cc70030009c000013db0000213d0000000c04000029000000640440003900000000003404350000002002200039000000000321034f000000000303043b00000d240030019800000d2504000041000000000400601900000d2605300197000000000454019f000000000034004b000013db0000c13d0000000c04000029000000840440003900000000003404350000002004200039000000000241034f000000000202043b00000d240020019800000d2503000041000000000300601900000d2605200197000000000353019f000000000023004b000013db0000c13d0000000c03000029000000a403300039000000000023043500000000020000310000000a0320006a0000001f0330008a0000002006400039000000000461034f000000000504043b00000d270750019700000d2704300197000000000847013f000000000047004b000000000700001900000d2707004041000000000035004b000000000900001900000d270900804100000d270080009c000000000709c019000000000007004b000013db0000c13d0000000a07500029000000000571034f000000000505043b00000cc70050009c000013db0000213d00000020077000390000000008520049000000000087004b000000000900001900000d270900204100000d270880019700000d270a700197000000000b8a013f00000000008a004b000000000800001900000d270800404100000d2700b0009c000000000809c019000000000008004b000013db0000c13d0000000c0c000029000000c408c00039000001200900003900000000009804350000014408c000390000000000580435000000000971034f00000d7d0a5001980000001f0b50018f0000016408c000390000000007a8001900000faa0000613d000000000c09034f000000000d08001900000000ce0c043c000000000ded043600000000007d004b00000fa60000c13d00000000000b004b00000fb70000613d0000000009a9034f000000030ab00210000000000b070433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000970435000000000785001900000000000704350000002007600039000000000671034f000000000606043b00000d2709600197000000000a49013f000000000049004b000000000900001900000d2709004041000000000036004b000000000b00001900000d270b00804100000d2700a0009c00000000090bc019000000000009004b000013db0000c13d0000000a09600029000000000691034f000000000606043b00000cc70060009c000013db0000213d0000002009900039000000000a6200490000000000a9004b000000000b00001900000d270b00204100000d270aa0019700000d270c900197000000000dac013f0000000000ac004b000000000a00001900000d270a00404100000d2700d0009c000000000a0bc01900000000000a004b000013db0000c13d0000001f0550003900000d7d05500197000000000885001900000140055000390000000c0a000029000000e40aa0003900000000005a0435000000000991034f000000000868043600000d7d0a6001980000001f0b60018f0000000005a8001900000fef0000613d000000000c09034f000000000d08001900000000ce0c043c000000000ded043600000000005d004b00000feb0000c13d00000000000b004b00000ffc0000613d0000000009a9034f000000030ab00210000000000b050433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000950435000000000586001900000000000504350000002007700039000000000571034f000000000505043b00000d2709500197000000000a49013f000000000049004b000000000900001900000d2709004041000000000035004b000000000b00001900000d270b00804100000d2700a0009c00000000090bc019000000000009004b000013db0000c13d0000000a09500029000000000591034f000000000505043b00000cc70050009c000013db0000213d0000002009900039000000000a5200490000000000a9004b000000000b00001900000d270b00204100000d270aa0019700000d270c900197000000000dac013f0000000000ac004b000000000a00001900000d270a00404100000d2700d0009c000000000a0bc01900000000000a004b000013db0000c13d0000001f0660003900000d7d0660019700000000068600190000000c0a0000290000000008a60049000000240880008a000001040aa0003900000000008a0435000000000991034f000000000656043600000d7d0a5001980000001f0b50018f0000000008a60019000010350000613d000000000c09034f000000000d06001900000000ce0c043c000000000ded043600000000008d004b000010310000c13d00000000000b004b000010420000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f000000000098043500000000086500190000000000080435000900200070003d0000000907100360000000000707043b00000d2708700197000000000948013f000000000048004b000000000400001900000d2704004041000000000037004b000000000300001900000d270300804100000d270090009c000000000403c019000000000004004b000013db0000c13d0000000a04700029000000000341034f000000000303043b00000cc70030009c000013db0000213d00000020044000390000000002320049000000000024004b000000000700001900000d270700204100000d270220019700000d2708400197000000000928013f000000000028004b000000000200001900000d270200404100000d270090009c000000000207c019000000000002004b000013db0000c13d0000001f0250003900000d7d0220019700000000026200190000000c060000290000000005620049000000240550008a00000124066000390000000000560435000000000441034f000000000132043600000d7d053001980000001f0630018f00000000025100190000107b0000613d000000000704034f0000000008010019000000007907043c0000000008980436000000000028004b000010770000c13d000000000006004b000010880000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000420435000000000213001900000000000204350000001f0230003900000d7d022001970000000c030000290000000001310049000000000121001900000cc40010009c00000cc401008041000000600110021000000cc40030009c00000cc40200004100000000020340190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f0000000b0200002932f032e60000040f000000010020019000001f0b0000613d0000000c0100002900000cc70010009c00001a720000213d0000000c01000029000000400010043f0000003001000039000000000101041a00000cc802000041000000000020044300000d0001100197000c00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400200043d00000d3f010000410000000000120435000b00000002001d0000000401200039000000200200003900000000002104350000000901000029000001000210008a0000000101000367000000000321034f000000000303043b00000cc40030009c000013db0000213d0000000b04000029000000240440003900000000003404350000002002200039000000000321034f000000000303043b00000cc70030009c000013db0000213d0000000b04000029000000440440003900000000003404350000002002200039000000000321034f000000000303043b00000cc70030009c000013db0000213d0000000b04000029000000640440003900000000003404350000002002200039000000000321034f000000000303043b00000d240030019800000d2504000041000000000400601900000d2605300197000000000454019f000000000034004b000013db0000c13d0000000b04000029000000840440003900000000003404350000002004200039000000000241034f000000000202043b00000d240020019800000d2503000041000000000300601900000d2605200197000000000353019f000000000023004b000013db0000c13d0000000b03000029000000a403300039000000000023043500000000020000310000000a0320006a0000001f0330008a0000002006400039000000000461034f000000000504043b00000d270750019700000d2704300197000000000847013f000000000047004b000000000700001900000d2707004041000000000035004b000000000900001900000d270900804100000d270080009c000000000709c019000000000007004b000013db0000c13d0000000a07500029000000000571034f000000000505043b00000cc70050009c000013db0000213d00000020077000390000000008520049000000000087004b000000000900001900000d270900204100000d270880019700000d270a700197000000000b8a013f00000000008a004b000000000800001900000d270800404100000d2700b0009c000000000809c019000000000008004b000013db0000c13d0000000b0c000029000000c408c00039000001200900003900000000009804350000014408c000390000000000580435000000000971034f00000d7d0a5001980000001f0b50018f0000016408c000390000000007a800190000112c0000613d000000000c09034f000000000d08001900000000ce0c043c000000000ded043600000000007d004b000011280000c13d00000000000b004b000011390000613d0000000009a9034f000000030ab00210000000000b070433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000970435000000000785001900000000000704350000002007600039000000000671034f000000000606043b00000d2709600197000000000a49013f000000000049004b000000000900001900000d2709004041000000000036004b000000000b00001900000d270b00804100000d2700a0009c00000000090bc019000000000009004b000013db0000c13d0000000a09600029000000000691034f000000000606043b00000cc70060009c000013db0000213d0000002009900039000000000a6200490000000000a9004b000000000b00001900000d270b00204100000d270aa0019700000d270c900197000000000dac013f0000000000ac004b000000000a00001900000d270a00404100000d2700d0009c000000000a0bc01900000000000a004b000013db0000c13d0000001f0550003900000d7d05500197000000000885001900000140055000390000000b0a000029000000e40aa0003900000000005a0435000000000991034f000000000868043600000d7d0a6001980000001f0b60018f0000000005a80019000011710000613d000000000c09034f000000000d08001900000000ce0c043c000000000ded043600000000005d004b0000116d0000c13d00000000000b004b0000117e0000613d0000000009a9034f000000030ab00210000000000b050433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000950435000000000586001900000000000504350000002007700039000000000571034f000000000505043b00000d2709500197000000000a49013f000000000049004b000000000900001900000d2709004041000000000035004b000000000b00001900000d270b00804100000d2700a0009c00000000090bc019000000000009004b000013db0000c13d0000000a09500029000000000591034f000000000505043b00000cc70050009c000013db0000213d0000002009900039000000000a5200490000000000a9004b000000000b00001900000d270b00204100000d270aa0019700000d270c900197000000000dac013f0000000000ac004b000000000a00001900000d270a00404100000d2700d0009c000000000a0bc01900000000000a004b000013db0000c13d0000001f0660003900000d7d0660019700000000068600190000000b0a0000290000000008a60049000000240880008a000001040aa0003900000000008a0435000000000991034f000000000656043600000d7d0a5001980000001f0b50018f0000000008a60019000011b70000613d000000000c09034f000000000d06001900000000ce0c043c000000000ded043600000000008d004b000011b30000c13d00000000000b004b000011c40000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000980435000000000865001900000000000804350000002007700039000000000771034f000000000707043b00000d2708700197000000000948013f000000000048004b000000000400001900000d2704004041000000000037004b000000000300001900000d270300804100000d270090009c000000000403c019000000000004004b000013db0000c13d0000000a04700029000000000341034f000000000303043b00000cc70030009c000013db0000213d00000020044000390000000002320049000000000024004b000000000700001900000d270700204100000d270220019700000d2708400197000000000928013f000000000028004b000000000200001900000d270200404100000d270090009c000000000207c019000000000002004b000013db0000c13d0000001f0250003900000d7d0220019700000000026200190000000b060000290000000005620049000000240550008a00000124066000390000000000560435000000000441034f000000000132043600000d7d053001980000001f0630018f0000000002510019000011fd0000613d000000000704034f0000000008010019000000007907043c0000000008980436000000000028004b000011f90000c13d000000000006004b0000120a0000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000420435000000000213001900000000000204350000001f0230003900000d7d022001970000000b030000290000000001310049000000000121001900000cc40010009c00000cc401008041000000600110021000000cc40030009c00000cc40200004100000000020340190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f0000000c0200002932f032e60000040f0000000100200190000003f50000c13d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000122a0000c13d00001c2d0000013d000000240030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000401100370000000000101043b32f022f40000040f000000400200043d000000000012043500000cc40020009c00000cc402008041000000400120021000000d17011001c7000032f10001042e000000640030008c000013db0000413d0000000002000416000000000002004b000013db0000c13d0000000402100370000000000202043b00000cc70020009c000013db0000213d0000002304200039000000000034004b000013db0000813d0000000404200039000000000441034f000000000404043b000c00000004001d00000cc70040009c000013db0000213d000b00240020003d0000000c02000029000000a0022000c90000000b02200029000000000032004b000013db0000213d0000002402100370000000000202043b00000cc70020009c000013db0000213d0000002304200039000000000034004b000013db0000813d0000000404200039000000000441034f000000000404043b000a00000004001d00000cc70040009c000013db0000213d000900240020003d0000000a0200002900000005022002100000000902200029000000000032004b000013db0000213d0000004402100370000000000202043b00000cc70020009c000013db0000213d0000002304200039000000000034004b000013db0000813d0000000404200039000000000141034f000000000101043b000800000001001d00000cc70010009c000013db0000213d000700240020003d000000080100002900000005011002100000000701100029000000000031004b000013db0000213d0000002f01000039000000000101041a00000d1802000041000000800020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d19011001c732f032eb0000040f000000800a000039000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012960000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000012920000c13d000000000006004b000012a30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001a0a0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000013db0000413d000000800100043d000600000001001d00000d000010009c000013db0000213d00000cc801000041000000000010044300000006010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d1a010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000500000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c7000000060200002932f032eb0000040f000000010020019000001c620000613d000000050100002900000cc70010009c00001a720000213d0000000501000029000000400010043f0000000b010000290000000c0200002900000009030000290000000a0400002900000007050000290000000806000029000000000700041132f027b00000040f0000000001000019000032f10001042e0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012eb0000c13d000014300000013d00000d0101000041000000800010043f0000002001000039000000840010043f0000003401000039000000a40010043f00000d0201000041000000c40010043f00000d5701000041000000e40010043f00000d0401000041000032f2000104300000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013030000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000130f0000c13d000014300000013d000000400200043d0000000006520019000000000005004b000013290000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b0000131a0000c13d000013290000013d000000400200043d0000000006520019000000000005004b000013290000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000013250000c13d000000000004004b0000143d0000613d000000000151034f0000000304400210000000000506043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001604350000143d0000013d00000d0101000041000000800010043f0000002001000039000000840010043f0000003401000039000000a40010043f00000d0201000041000000c40010043f00000d0301000041000000e40010043f00000d0401000041000032f2000104300000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000134a0000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013560000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013620000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000136e0000c13d000014300000013d0000000202000039000000000202041a00000d0e03000041000000800030043f000000840010043f000000000100041400000d000220019700000cc40010009c00000cc401008041000000c00110021000000d1d011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000138e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000138a0000c13d000000000006004b0000139b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000014190000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000013db0000413d000000a002200039000000400020043f000000800200043d00000cc70020009c000013db0000213d0000000000210435000000400100043d000000000021043500000cc40010009c00000cc401008041000000400110021000000d17011001c7000032f10001042e0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013b70000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013c30000c13d000014300000013d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000a00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000014500000c13d0000000001000019000032f20001043000000d0101000041000000800010043f0000002001000039000000840010043f0000003801000039000000a40010043f00000d0201000041000000c40010043f00000d3701000041000000e40010043f00000d0401000041000032f2000104300000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013f00000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013fc0000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014080000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014140000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014200000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000142c0000c13d000000000005004b0000143d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000cc40020009c00000cc4020080410000004002200210000000000112019f000032f20001043000000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000144b0000c13d00001c2d0000013d000000400300043d00000044013000390000000b02000029000000000021043500000024013000390000000c02000029000000000021043500000d38010000410000000000130435000000000100041100000d00011001970000000402300039000000000012043500000cc40030009c000900000003001d00000cc40100004100000000010340190008004000100218000000000100041400000cc40010009c00000cc401008041000000c00110021000000008011001af00000d0a011001c70000000a0200002932f032e60000040f00000001002001900000157d0000613d000000090100002900000cc70010009c00001a720000213d0000000902000029000000400020043f0000000b010000290000000000120435000000000100041400000cc40010009c00000cc401008041000000c00110021000000008011001af00000d39011001c70000800d02000039000000030300003900000d3a0400004100000000050004110000000c0600002932f032e60000040f0000000100200190000013db0000613d0000000001000019000032f10001042e0000000201000039000000000101041a00000d0603000041000001200030043f000001240020043f000000000300041400000d000210019700000cc40030009c00000cc403008041000000c00130021000000d07011001c732f032eb0000040f000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f00000060074001900000012005700039000001200a0000390000149e0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000149a0000c13d000000000006004b000014ab0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000015970000613d0000001f01400039000000e00110018f0000012004100039000000400040043f000000600030008c000013db0000413d0000018002100039000000400020043f000001200200043d00000d000020009c000013db0000213d0000000000240435000001400300043d00000d050030009c000013db0000213d00000140041000390000000000340435000001600300043d000000ff0030008c000013db0000213d00000160011000390000000000310435000000400100043d000c00000001001d000000000002004b00001a160000c13d0000000c0100002900000d0b0010009c00001a720000213d000000800100043d000a00000001001d0000000201000039000000000101041a00000d00051001970000000c040000290000006001400039000000c00200043d000001000300043d000000400010043f00000d05013001970000002003400039000900000003001d000000000013043500000d000120019700000000001404350000004001400039000800000001001d000000000001043500000cc8010000410000000000100443000b00000005001d0000000400500443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d0c01000041000000000013043500000004023000390000000a01000029000600000002001d00000000001204350000000c01000029000000000101043300000d0001100197000000240230003900000000001204350000000901000029000000000101043300000d05011001970000004402300039000000000012043500000008010000290000000001010433000000ff0110018f0000006402300039000000000012043500000cc40030009c000700000003001d00000cc4010000410000000001034019000c004000100218000000000100041400000cc40010009c00000cc401008041000000c0011002100000000c011001af00000d0d011001c70000000b0200002932f032e60000040f000000010020019000001c490000613d000000070100002900000cc70010009c00001a720000213d0000000704000029000000400040043f0000000201000039000000000201041a000000c00100043d00000d0e03000041000000000034043500000d000110019700000006030000290000000000130435000000000100041400000cc40010009c00000cc401008041000000c0011002100000000c011001af00000d0f011001c700000d0002200197000c00000002001d32f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000015370000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000015330000c13d000000000006004b000015440000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001c830000613d0000001f01400039000000600110018f0000000701100029000b00000001001d00000cc70010009c00001a720000213d0000000b01000029000000400010043f000000200030008c000013db0000413d0000000b0100002900000d100010009c00001a720000213d0000000b010000290000002001100039000000400010043f0000000701000029000000000101043300000cc70010009c000013db0000213d0000000b02000029000000000012043500001e710000c13d00000d5d01000041000000000010043f0000001101000039000000040010043f00000d0f01000041000032f20001043000000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000156b0000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015780000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015850000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015920000c13d00001c2d0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000159e0000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015ab0000c13d00001c2d0000013d00000000010004110000000a0200002932f02e2c0000040f000000400200043d000900000002001d0000000402200039000000000001004b000016c10000c13d00000d01010000410000000903000029000000000013043500000020010000390000000000120435000000640130003900000d65020000410000000000210435000000440130003900000d6602000041000000000021043500000024013000390000003102000039000000000021043500000cc40030009c00000cc403008041000000400130021000000d0d011001c7000032f20001043000000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015d30000c13d00001c2d0000013d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000a00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400200043d00000d58010000410000000001120436000600000001001d00000004032000390000000c01000029000800000003001d00000000001304350000002401200039000000000001043500000cc40020009c000900000002001d00000cc40100004100000000010240190007004000100218000000000100041400000cc40010009c00000cc401008041000000c00110021000000007011001af00000d12011001c70000000a0200002932f032e60000040f0000000100200190000019f10000613d000000090100002900000cc70010009c00001a720000213d0000000903000029000000400030043f0000000201000039000000000201041a00000d060100004100000000001304350000000c0100002900000008030000290000000000130435000000000100041400000cc40010009c00000cc401008041000000c00110021000000007011001af00000d0f011001c700000d000220019732f032eb0000040f000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f00000060074001900000000905700029000016270000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000016230000c13d000000000006004b000016340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001c150000613d0000001f01400039000000e00110018f000000090110002900000cc70010009c00001a720000213d000000400010043f000000600030008c000013db0000413d00000d0b0010009c00001a720000213d0000006002100039000000400020043f0000000902000029000000000502043300000d000050009c000013db0000213d00000000025104360000000603000029000000000303043300000d050030009c000013db0000213d0000000000320435000000090200002900000040022000390000000002020433000000ff0020008c000013db0000213d00000040011000390000000000210435000000000005004b000003570000613d000000000100041400000cc40010009c00000cc401008041000000c00110021000000d13011001c70000800d02000039000000040300003900000d590400004100000000060000190000000c0700002932f032e60000040f0000000100200190000013db0000613d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000a00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d5a01000041000000000013043500000004013000390000000c02000029000000000021043500000cc40030009c000900000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c70000000a0200002932f032e60000040f000000010020019000001ecd0000613d000000090100002900000cc70010009c00001a720000213d0000000901000029000000400010043f000000000100041400000cc40010009c00000cc401008041000000c00110021000000d13011001c70000800d02000039000000040300003900000d14040000410000000b0500002900000000060000190000000c070000290000147e0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000016a30000c13d00001c2d0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016af0000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000016bc0000c13d00001c2d0000013d0000000201000039000000000301041a00000d060100004100000009040000290000000001140436000800000001001d0000000a01000029000000000012043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c700000d000230019732f032eb0000040f000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f00000060074001900000000905700029000016e40000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000016e00000c13d000000000006004b000016f10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000017e50000613d0000001f01400039000000e00210018f0000000901200029000000000021004b0000000002000039000000010200403900000cc70010009c00001a720000213d000000010020019000001a720000c13d000000400010043f000000600030008c000013db0000413d00000d0b0010009c00001a720000213d0000006002100039000000400020043f0000000902000029000000000202043300000d000020009c000013db0000213d00000000032104360000000804000029000000000404043300000d050040009c000013db0000213d0000000000430435000000090300002900000040033000390000000003030433000000ff0030008c000013db0000213d00000040011000390000000000310435000000000002004b000003570000613d0000000c0020006c00001c7c0000c13d0000000b0000006b00001c8f0000c13d000000400100043d000000640210003900000d63030000410000000000320435000000440210003900000d6403000041000000000032043500000024021000390000002403000039000003600000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000172d0000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000173a0000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000017470000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000017540000c13d00001c2d0000013d0000000002000411000000000012004b000017fe0000c13d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000a00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000024013000390000000c02000029000000000021043500000d58010000410000000001130436000600000001001d00000004023000390000000b01000029000700000002001d000000000012043500000cc40030009c000900000003001d00000cc40100004100000000010340190008004000100218000000000100041400000cc40010009c00000cc401008041000000c00110021000000008011001af00000d12011001c70000000a0200002932f032e60000040f000000010020019000001a8f0000613d000000090100002900000cc70010009c00001a720000213d0000000903000029000000400030043f0000000201000039000000000201041a00000d060100004100000000001304350000000b0100002900000007030000290000000000130435000000000100041400000cc40010009c00000cc401008041000000c00110021000000008011001af00000d0f011001c700000d000220019732f032eb0000040f000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f00000060074001900000000905700029000017ac0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000017a80000c13d000000000006004b000017b90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001c3d0000613d0000001f01400039000000e00110018f000000090110002900000cc70010009c00001a720000213d000000400010043f000000600030008c000013db0000413d00000d0b0010009c00001a720000213d0000006002100039000000400020043f0000000902000029000000000502043300000d000050009c000013db0000213d00000000025104360000000603000029000000000303043300000d050030009c000013db0000213d0000000000320435000000090200002900000040022000390000000002020433000000ff0020008c000013db0000213d00000040011000390000000000210435000000000005004b000003570000613d000000000100041400000cc40010009c00000cc401008041000000c00110021000000d13011001c70000800d02000039000000040300003900000d59040000410000000c060000290000000b070000290000147e0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017ec0000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000017f90000c13d00001c2d0000013d0000000203000039000000000303041a000000400500043d000a00000005001d00000d6b0400004100000000004504350000000404500039000000000014043500000d00022001970000002401500039000800000002001d000000000021043500000cc40050009c00000cc40100004100000000010540190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d12011001c700000d0002300197000900000002001d32f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0b0000290000000a05700029000018270000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018230000c13d000000000006004b000018340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000019fe0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000700000002001d00000cc70020009c00001a720000213d000000010010019000001a720000c13d0000000701000029000000400010043f000000200030008c000013db0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000013db0000c13d000000000001004b0000175c0000c13d00000d6c010000410000000702000029000000000012043500000cc40020009c00000cc40100004100000000010240190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c7000000090200002932f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000007057000290000186b0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000018670000c13d000000000006004b000018780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001c560000613d0000001f01400039000000600110018f0000000701100029000a00000001001d00000cc70010009c00001a720000213d0000000a01000029000000400010043f000000200030008c000013db0000413d0000000701000029000000000101043300000d000010009c000013db0000213d000000080010006b0000175c0000613d00000d6d010000410000000a02000029000000000012043500000cc40020009c00000cc40100004100000000010240190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c7000000090200002932f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a05700029000018a80000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b000018a40000c13d000000000006004b000018b50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001de50000613d0000001f01400039000000600110018f0000000a01100029000700000001001d00000cc70010009c00001a720000213d0000000701000029000000400010043f000000200030008c000013db0000413d0000000a010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000013db0000c13d000000000001004b00001f180000c13d0000000701000029000000640210003900000d6f030000410000000000320435000000440210003900000d7003000041000000000032043500000024021000390000003803000039000003600000013d000000040000006b00001efa0000c13d000300800000003d00000cca0110019700000001011001bf00000d490210019700000d4a042001c7000000040000006b000000000401c01900000cc501000041000100000004001d000000000041041b0000000c010000290000001f0110003900000d7d011001970000003f0110003900000d7d011001970000000301100029000000030010006c0000000002000039000000010200403900000cc70010009c00001a720000213d000000010020019000001a720000c13d000000400010043f00000003010000290000000c020000290000000001210436000200000001001d0000000a0030006b000013db0000213d0000000b0100002900000020021000390000000101000367000000000421034f0000000c0600002900000d7d056001980000001f0660018f0000000202500029000019030000613d000000000704034f0000000208000029000000007907043c0000000008980436000000000028004b000018ff0000c13d000000000006004b000019100000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000c040000290000000202400029000000000002043500000009020000290000001f0220003900000d7d022001970000003f0220003900000d7d02200197000000400400043d0000000002240019000c00000004001d000000000042004b0000000004000039000000010400403900000cc70020009c00001a720000213d000000010040019000001a720000c13d000000400020043f0000000c0200002900000009040000290000000002420436000b00000002001d000000070030006b000013db0000213d00000008020000290000002002200039000000000221034f000000090400002900000d7d034001980000001f0440018f0000000b01300029000019370000613d000000000502034f0000000b06000029000000005705043c0000000006760436000000000016004b000019330000c13d000000000004004b000019440000613d000000000232034f0000000303400210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000009020000290000000b01200029000000000001043500000cc801000041000000000010044300000000010004100000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b00001efa0000c13d000000010100002900000cc60010019800000cc501000041000000000201041a000a00000002001d00000cca0220019700000001022001bf000000000021041b0000000203000039000000000303041a00000d4b0330019700000005033001af00001d580000c13d00000d490220019700000d4a022001c7000000000021041b0000000201000039000000000031041b00000cc801000041000000000010044300000000010004100000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b00001efa0000c13d00000cc501000041000000000201041a00000cca0220019700000001022001bf000000000021041b0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000a00000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d4c0100004100000000001304350000000401300039000000400200003900000000002104350000000301000029000000000201043300000044013000390000000000210435000900000003001d0000006401300039000000000002004b0000000206000029000019a80000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b000019a10000413d000000000312001900000000000304350000001f0220003900000d7d02200197000000090300002900000024033000390000006004200039000000000043043500000000011200190000000c0200002900000000020204330000000001210436000000000002004b0000000b06000029000019bf0000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b000019b80000413d000000000312001900000000000304350000001f0220003900000d7d0220019700000009030000290000000001310049000000000121001900000cc40010009c00000cc4010080410000006001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000cc40030009c00000cc4020000410000000002034019000c0040002002180000000c011001af0000000a0200002932f032e60000040f000000010020019000001eb40000613d000000090100002900000cc70010009c00001a720000213d0000000904000029000000400040043f00000cc501000041000000000201041a00000d4d02200197000000000021041b00000001030000390000000000340435000000000100041400001dda0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000019ec0000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000019f90000c13d00001c2d0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a050000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a110000c13d000014300000013d0000000c03000029000000440130003900000d0902000041000000000021043500000024013000390000001c02000039000000000021043500000d0101000041000000000013043500000004013000390000002002000039000000000021043500000cc40030009c00000cc403008041000000400130021000000d0a011001c7000032f200010430000a00000001001d0000000201000039000000000201041a00000d1f010000410000000a03000029000000000013043500000cc40030009c00000cc40100004100000000010340190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f00000060031002700000001f0430018f00000d080530019700000cc403300197000000010020019000001a780000613d0000000a02500029000000000005004b00001a480000613d000000000601034f0000000a07000029000000006806043c0000000007870436000000000027004b00001a440000c13d000000000004004b00001a550000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f0130003900000d21011001970000000a02100029000000000012004b00000000010000390000000101004039000900000002001d00000cc70020009c00001a720000213d000000010010019000001a720000c13d0000000901000029000000400010043f000000200030008c000013db0000413d0000000a01000029000000000201043300000cc70020009c000013db0000213d0000000a013000290000000a02200029000000000321004900000d220030009c000013db0000213d000001200030008c000013db0000413d000000090300002900000d230030009c00001a9c0000a13d00000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f200010430000000400200043d0000000006520019000000000005004b000013290000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b00001a7e0000c13d000013290000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a8a0000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001a970000c13d00001c2d0000013d00000009030000290000012003300039000000400030043f000000003402043400000cc40040009c000013db0000213d00000009050000290000000004450436000000000303043300000cc70030009c000013db0000213d00000000003404350000004003200039000000000303043300000cc70030009c000013db0000213d0000000904000029000000400440003900000000003404350000006003200039000000000303043300000d240030019800000d2504000041000000000400601900000d2605300197000000000454019f000000000034004b000013db0000c13d0000000904000029000000600440003900000000003404350000008003200039000000000303043300000d240030019800000d2504000041000000000400601900000d2605300197000000000454019f000000000034004b000013db0000c13d000000090400002900000080044000390000000000340435000000a003200039000000000303043300000cc70030009c000013db0000213d00000000042300190000001f03400039000000000013004b000000000500001900000d270500804100000d270630019700000d2703100197000000000736013f000000000036004b000000000600001900000d270600404100000d270070009c000000000605c019000000000006004b000013db0000c13d000000005404043400000cc70040009c00001a720000213d0000001f0640003900000d7d066001970000003f0660003900000d7d07600197000000400600043d0000000007760019000000000067004b0000000008000039000000010800403900000cc70070009c00001a720000213d000000010080019000001a720000c13d000000400070043f00000000074604360000000008540019000000000018004b000013db0000213d000000000004004b00001af90000613d00000000080000190000000009780019000000000a580019000000000a0a04330000000000a904350000002008800039000000000048004b00001af20000413d000000000447001900000000000404350000000904000029000000a0044000390000000000640435000000c004200039000000000404043300000cc70040009c000013db0000213d00000000042400190000001f05400039000000000015004b000000000600001900000d270600804100000d2705500197000000000735013f000000000035004b000000000500001900000d270500404100000d270070009c000000000506c019000000000005004b000013db0000c13d000000005404043400000cc70040009c00001a720000213d0000001f0640003900000d7d066001970000003f0660003900000d7d07600197000000400600043d0000000007760019000000000067004b0000000008000039000000010800403900000cc70070009c00001a720000213d000000010080019000001a720000c13d000000400070043f00000000074604360000000008540019000000000018004b000013db0000213d000000000004004b00001b2f0000613d00000000080000190000000009780019000000000a580019000000000a0a04330000000000a904350000002008800039000000000048004b00001b280000413d000000000447001900000000000404350000000904000029000000c0044000390000000000640435000000e004200039000000000404043300000cc70040009c000013db0000213d00000000042400190000001f05400039000000000015004b000000000600001900000d270600804100000d2705500197000000000735013f000000000035004b000000000500001900000d270500404100000d270070009c000000000506c019000000000005004b000013db0000c13d000000005404043400000cc70040009c00001a720000213d0000001f0640003900000d7d066001970000003f0660003900000d7d07600197000000400600043d0000000007760019000000000067004b0000000008000039000000010800403900000cc70070009c00001a720000213d000000010080019000001a720000c13d000000400070043f00000000074604360000000008540019000000000018004b000013db0000213d000000000004004b00001b650000613d00000000080000190000000009780019000000000a580019000000000a0a04330000000000a904350000002008800039000000000048004b00001b5e0000413d000000000447001900000000000404350000000904000029000000e00440003900000000006404350000010004200039000000000404043300000cc70040009c000013db0000213d00000000022400190000001f04200039000000000014004b000000000500001900000d270500804100000d2704400197000000000634013f000000000034004b000000000300001900000d270300404100000d270060009c000000000305c019000000000003004b000013db0000c13d000000003202043400000cc70020009c00001a720000213d0000001f0420003900000d7d044001970000003f0440003900000d7d05400197000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000cc70050009c00001a720000213d000000010060019000001a720000c13d000000400050043f00000000052404360000000006320019000000000016004b000013db0000213d000000000002004b00001b9b0000613d000000000100001900000000065100190000000007310019000000000707043300000000007604350000002001100039000000000021004b00001b940000413d000000000125001900000000000104350000000901000029000001000110003900000000004104350000002f01000039000000000201041a000000400300043d00000d2801000041000000000013043500000cc40030009c000a00000003001d00000cc40100004100000000010340190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f00000060031002700000001f0430018f00000d080530019700000cc4033001970000000100200190000020f30000613d0000000a02500029000000000005004b00001bc10000613d000000000601034f0000000a07000029000000006806043c0000000007870436000000000027004b00001bbd0000c13d000000000004004b00001bce0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f0130003900000d21021001970000000a01200029000000000021004b0000000002000039000000010200403900000cc70010009c00001a720000213d000000010020019000001a720000c13d000000400010043f000000200030008c000013db0000413d0000000a02000029000000000202043300000cc70020009c000013db0000213d0000000a053000290000000a022000290000001f03200039000000000053004b000000000400001900000d270400804100000d270330019700000d2706500197000000000763013f000000000063004b000000000300001900000d270300404100000d270070009c000000000304c019000000000003004b000013db0000c13d000000004302043400000cc70030009c00001a720000213d0000001f0230003900000d7d022001970000003f0220003900000d7d02200197000000000212001900000cc70020009c00001a720000213d000000400020043f00000000023104360000000006430019000000000056004b000013db0000213d000000000003004b00001c080000613d000000000500001900000000062500190000000007450019000000000707043300000000007604350000002005500039000000000035004b00001c010000413d000000000323001900000000000304350000000003010433000000000003004b000020fe0000c13d000000400700043d00000d100070009c00001a720000213d0000002005700039000000400050043f0000000000070435000000400100043d000021ad0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c1c0000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001c290000c13d00000cc406600197000000000004004b00001c3b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060016002100000143e0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c440000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001c510000c13d00001c2d0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c5d0000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001c6a0000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001c770000c13d00001c2d0000013d000000400100043d000000640210003900000d60030000410000000000320435000000440210003900000d61030000410000035d0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c8a0000c13d000014300000013d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000900000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400200043d00000d58010000410000000001120436000500000001001d00000004032000390000000a01000029000700000003001d00000000001304350000002401200039000000000001043500000cc40020009c000800000002001d00000cc40100004100000000010240190006004000100218000000000100041400000cc40010009c00000cc401008041000000c00110021000000006011001af00000d12011001c7000000090200002932f032e60000040f000000010020019000001df10000613d000000080100002900000cc70010009c00001a720000213d0000000803000029000000400030043f0000000201000039000000000201041a00000d060100004100000000001304350000000a0100002900000007030000290000000000130435000000000100041400000cc40010009c00000cc401008041000000c00110021000000006011001af00000d0f011001c700000d000220019732f032eb0000040f000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f0000006007400190000000080570002900001cde0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00001cda0000c13d000000000006004b00001ceb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ec10000613d0000001f01400039000000e00110018f000000080110002900000cc70010009c00001a720000213d000000400010043f000000600030008c000013db0000413d00000d0b0010009c00001a720000213d0000006002100039000000400020043f0000000802000029000000000502043300000d000050009c000013db0000213d00000000025104360000000503000029000000000303043300000d050030009c000013db0000213d0000000000320435000000080200002900000040022000390000000002020433000000ff0020008c000013db0000213d00000040011000390000000000210435000000000005004b000003570000613d000000000100041400000cc40010009c00000cc401008041000000c00110021000000d13011001c70000800d02000039000000040300003900000d590400004100000000060000190000000a0700002932f032e60000040f0000000100200190000013db0000613d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000900000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000044013000390000000b02000029000000000021043500000024013000390000000c02000029000000000021043500000d6201000041000000000013043500000004013000390000000a02000029000000000021043500000cc40030009c000800000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0a011001c7000000090200002932f032e60000040f0000000100200190000020e60000613d000000080100002900000cc70010009c00001a720000213d0000000801000029000000400010043f000000000100041400000cc40010009c00000cc401008041000000c00110021000000d13011001c70000800d02000039000000040300003900000d14040000410000000c050000290000000b060000290000000a070000290000147e0000013d0000000201000039000000000031041b00000cc801000041000000000010044300000000010004100000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b00001efa0000c13d0000000a0100002900000cc60010019800000cc501000041000000000201041a00000cca0220019700000001022001bf000000000021041b0000000203000039000000000303041a000a0d000030019b00001dfe0000c13d00000d490220019700000d4a022001c7000000000021041b00000cc80100004100000000001004430000000a010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d4c0100004100000000001304350000000401300039000000400200003900000000002104350000000301000029000000000201043300000044013000390000000000210435000900000003001d0000006401300039000000000002004b000000020600002900001d9f0000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b00001d980000413d000000000312001900000000000304350000001f0220003900000d7d02200197000000090300002900000024033000390000006004200039000000000043043500000000011200190000000c0200002900000000020204330000000001210436000000000002004b0000000b0600002900001db60000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b00001daf0000413d000000000312001900000000000304350000001f0220003900000d7d0220019700000009030000290000000001310049000000000121001900000cc40010009c00000cc4010080410000006001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000cc40030009c00000cc4020000410000000002034019000c0040002002180000000c011001af0000000a0200002932f032e60000040f000000010020019000001eda0000613d000000090100002900000cc70010009c00001a720000213d0000000904000029000000400040043f00000cc501000041000000000201041a00000d4d02200197000000000021041b00000001030000390000000000340435000000000100041400000cc40010009c00000cc401008041000000c0011002100000000c011001af00000d39011001c70000800d0200003900000ccd0400004132f032e60000040f0000000100200190000013db0000613d00001e590000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001dec0000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001df90000c13d00001c2d0000013d00000cc80100004100000000001004430000000a010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d000000400300043d00000d4c0100004100000000001304350000000401300039000000400200003900000000002104350000000301000029000000000201043300000044013000390000000000210435000900000003001d0000006401300039000000000002004b000000020600002900001e250000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b00001e1e0000413d000000000312001900000000000304350000001f0220003900000d7d02200197000000090300002900000024033000390000006004200039000000000043043500000000011200190000000c0200002900000000020204330000000001210436000000000002004b0000000b0600002900001e3c0000613d000000000300001900000000041300190000000005630019000000000505043300000000005404350000002003300039000000000023004b00001e350000413d000000000312001900000000000304350000001f0220003900000d7d0220019700000009030000290000000001310049000000000121001900000cc40010009c00000cc401008041000000600110021000000cc40030009c00000cc40200004100000000020340190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f0000000a0200002932f032e60000040f000000010020019000001ee70000613d000000090100002900000cc70010009c00001a720000213d0000000901000029000000400010043f00000cc501000041000000000101041a000c00000001001d00000cc701100197000000010010008c00001ef40000c13d00000cc801000041000000000010044300000000010004100000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b0000000001000039000000010100c03900001ef50000013d00000001011000390000000b020000290000000000120435000000c00100043d000a00000001001d00000cc80100004100000000001004430000000c010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000001eb30000613d000000000101043b000000000001004b000013db0000613d0000000a0100002900000d0001100197000000400300043d00000d11020000410000000000230435000000040230003900000000001204350000000b01000029000000000101043300000cc7011001970000002402300039000000000012043500000cc40030009c000b00000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d12011001c70000000c0200002932f032e60000040f0000000100200190000020020000613d0000000b0100002900000cc70010009c00001a720000213d0000000b01000029000000400010043f000000800700043d000000c00100043d000000000200041400000d000610019700000cc40020009c00000cc402008041000000c00120021000000d13011001c70000800d02000039000000040300003900000d140400004100000000050000190000147e0000013d000000000001042f00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001ebc0000c13d00001c2d0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ec80000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001ed50000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001ee20000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001eef0000c13d00001c2d0000013d00000001010000390000000c0200002900000d4e0020019800001f540000613d000000010010019000001f540000613d00000d5101000041000000000010043f00000d2001000041000032f20001043000000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001f060000c13d00001c2d0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001f130000c13d00001c2d0000013d00000d6e010000410000000702000029000000000012043500000cc40020009c00000cc40100004100000000010240190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c7000000090200002932f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900001f360000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00001f320000c13d000000000006004b00001f430000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000200f0000613d0000001f01400039000000600110018f000000070110002900000cc70010009c00001a720000213d000000400010043f000000200030008c000013db0000413d0000000702000029000000000202043300000d000020009c000013db0000213d000000080020006b0000175c0000613d000018cb0000013d0000000c0100002900000cc60010019800000cc501000041000000000201041a00000cca0220019700000001032001bf000000000031041b000000060200002900000d00022001970000002f04000039000000000404041a00000d4b04400197000000000424019f000000400500043d000c00000005001d0000201b0000c13d00000d490330019700000d4a033001c7000000000031041b0000002f01000039000000000041041b00000d4f010000410000000c03000029000000000013043500000cc40030009c00000cc40100004100000000010340190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001f860000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001f820000c13d000000000006004b00001f930000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000020b60000613d0000001f01400039000000600110018f0000000c02100029000000000012004b00000000010000390000000101004039000b00000002001d00000cc70020009c00001a720000213d000000010010019000001a720000c13d0000000b01000029000000400010043f000000200030008c000013db0000413d0000000c01000029000000000101043300000d000010009c000013db0000213d0000003002000039000000000302041a00000d4b03300197000000000113019f000000000012041b0000002f01000039000000000201041a00000d50010000410000000b03000029000000000013043500000cc40030009c00000cc40100004100000000010340190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001fcd0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001fc90000c13d000000000006004b00001fda0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000020ce0000613d0000001f01400039000000600110018f0000000b0110002900000cc70010009c00001a720000213d000000400010043f000000200030008c000013db0000413d0000000b02000029000000000202043300000d000020009c000013db0000213d0000003103000039000000000403041a00000d4b04400197000000000224019f000000000023041b00000cc502000041000000000302041a00000d4d03300197000000000032041b0000000103000039000000000031043500000cc40010009c00000cc4010080410000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d39011001c70000800d0200003900000ccd0400004132f032e60000040f0000000100200190000020a10000c13d000013db0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000200a0000c13d00001c2d0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020160000c13d000014300000013d0000002f01000039000000000041041b00000d4f010000410000000c03000029000000000013043500000cc40030009c00000cc40100004100000000010340190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c057000290000203a0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b000020360000c13d000000000006004b000020470000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000020c20000613d0000001f01400039000000600110018f0000000c02100029000000000012004b00000000010000390000000101004039000b00000002001d00000cc70020009c00001a720000213d000000010010019000001a720000c13d0000000b01000029000000400010043f000000200030008c000013db0000413d0000000c01000029000000000101043300000d000010009c000013db0000213d0000003002000039000000000302041a00000d4b03300197000000000113019f000000000012041b0000002f01000039000000000201041a00000d50010000410000000b03000029000000000013043500000cc40030009c00000cc40100004100000000010340190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b05700029000020810000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b0000207d0000c13d000000000006004b0000208e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000020da0000613d0000001f01400039000000600110018f0000000b0110002900000cc70010009c00001a720000213d000000400010043f000000200030008c000013db0000413d0000000b01000029000000000101043300000d000010009c000013db0000213d0000003102000039000000000302041a00000d4b03300197000000000113019f000000000012041b000000040000006b000014810000c13d00000cc501000041000000000201041a00000d4d02200197000000000021041b0000000103000039000000400100043d000000000031043500000cc40010009c00000cc4010080410000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d39011001c70000800d0200003900000ccd040000410000147e0000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020bd0000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020c90000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020d50000c13d000014300000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000014300000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020e10000c13d000014300000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900001c2d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000020ee0000c13d00001c2d0000013d000000400200043d0000000006520019000000000005004b000013290000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000020f90000c13d000013290000013d0000000903000029000000000403043300000cc40640019700000d290060009c000021070000413d000b00080000003d00000cc40340019700000d290330012a000021130000013d000027100060008c000000000306001900000000050000190000210f0000413d0000000405000039000b00060000003d00000cc403400197000027100330011a000000640030008c0000ffff0330818f000000640330811a000b00000005401d000000400400043d00000d2a0040009c00001a720000213d0000004005400039000000400050043f000000090030008c0000000b0800002900000001088020390000000103800039000000000334043600000000050000310000000105500367000000000705043b000000000073043500000000078400190000002107700039000000090060008c0000000a8660011a0000000308800210000000010770008a000000000907043300000d2b0990019700000d2c0880021f00000d2d08800197000000000898019f0000000000870435000021230000213d0000000c0600002900000d2e0060009c000021350000413d00000040070000390000000c0600002900000d2e0660012a0000213e0000013d0000000c0600002900000d300060009c00000d2f0660212a0000000007000039000000200700203900000d310060009c00000010077081bf00000d320660819700000d310660812a00000d290060009c000000080770803900000cc70660819700000d290660812a000027100060008c000000040770803900000cc406608197000027100660811a000000640060008c00000002077080390000ffff0660818f000000640660811a000000090060008c000000010770203900000d7d097001970000005f0690003900000d7d0a600197000000400800043d00000000068a00190000000000a6004b000000000a000039000000010a00403900000cc70060009c00001a720000213d0000000100a0019000001a720000c13d000000400060043f00000001067000390000000006680436000000200990003900000d7d0a9001980000001f0990018f000021650000613d000000000aa60019000000000b060019000000005c05043c000000000bcb04360000000000ab004b000021610000c13d000000000009004b000000000578001900000021055000390000000c09000029000000090090008c000c000a709001220000000307700210000000010550008a000000000905043300000d2b0990019700000d2c0770021f00000d2d07700197000000000797019f0000000000750435000021680000213d000000400700043d00000020057000390000000001010433000000000001004b000021810000613d0000000009000019000000000a590019000000000b290019000000000b0b04330000000000ba04350000002009900039000000000019004b0000217a0000413d000000000151001900000000000104350000000002040433000000000002004b0000218e0000613d00000000040000190000000009140019000000000a340019000000000a0a04330000000000a904350000002004400039000000000024004b000021870000413d000000000112001900000d3302000041000000000021043500000001011000390000000002080433000000000002004b0000219d0000613d000000000300001900000000041300190000000008630019000000000808043300000000008404350000002003300039000000000023004b000021960000413d000000000112001900000000000104350000000001710049000000200210008a00000000002704350000001f0110003900000d7d021001970000000001720019000000000021004b0000000002000039000000010200403900000cc70010009c00001a720000213d000000010020019000001a720000c13d000000400010043f00000020020000390000000003210436000000000207043300000000002304350000004003100039000000000002004b000021bc0000613d000000000400001900000000063400190000000007540019000000000707043300000000007604350000002004400039000000000024004b000021b50000413d0000001f0420003900000d7d0440019700000000023200190000000000020435000000400240003900000cc40020009c00000cc402008041000000600220021000000cc40010009c00000cc4010080410000004001100210000000000112019f000032f10001042e00000000430104340000000001320436000000000003004b000021d50000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000021ce0000413d000000000213001900000000000204350000001f0230003900000d7d022001970000000001210019000000000001042d00000d4a0020009c0000220b0000813d00000000040100190000001f0120003900000d7d011001970000003f0110003900000d7d05100197000000400100043d0000000005510019000000000015004b0000000007000039000000010700403900000cc70050009c0000220b0000213d00000001007001900000220b0000c13d000000400050043f00000000052104360000000007420019000000000037004b000022110000213d00000d7d062001980000001f0720018f00000001044003670000000003650019000021fb0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000021f70000c13d000000000007004b000022080000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f2000104300000000001000019000032f20001043000030000000000020000000202000039000000000202041a000000400400043d000300000004001d00000d06030000410000000003340436000200000003001d0000000403400039000100000001001d000000000013043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d0f011001c700000d000220019732f032eb0000040f000000030b000029000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000000057b00190000223a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000022360000c13d000000000006004b000022470000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000022b80000613d0000001f01400039000000e00210018f0000000001b20019000000000021004b0000000002000039000000010200403900000cc70010009c000022b20000213d0000000100200190000022b20000c13d000000400010043f0000005f0030008c000022b00000a13d00000d0b0010009c000022b20000213d0000006002100039000000400020043f00000000020b043300000d000020009c000022b00000213d00000000032104360000000204000029000000000404043300000d050040009c000022b00000213d00000000004304350000004003b000390000000003030433000000ff0030008c000022b00000213d00000040011000390000000000310435000000400400043d0000000401400039000000000002004b000022c40000613d0000000202000039000000000202041a00000d7e0300004100000000003404350000000103000029000000000031043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d0f011001c700000d0002200197000300000004001d32f032eb0000040f000000030b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000022900000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000228c0000c13d000000000006004b0000229d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000022d60000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000cc70010009c000022b20000213d0000000100200190000022b20000c13d000000400010043f000000200030008c000022b00000413d00000000010b043300000d000010009c000022b00000213d000000000001042d0000000001000019000032f20001043000000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f2000104300000001f0530018f00000d0806300198000000400200043d0000000004620019000022e10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022bf0000c13d000022e10000013d00000d0102000041000000000024043500000020020000390000000000210435000000640140003900000d7f020000410000000000210435000000440140003900000d8002000041000000000021043500000024014000390000002c02000039000000000021043500000cc40040009c00000cc404008041000000400140021000000d0d011001c7000032f2000104300000001f0530018f00000d0806300198000000400200043d0000000004620019000022e10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022dd0000c13d000000000005004b000022ee0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000cc40020009c00000cc4020080410000004002200210000000000112019f000032f20001043000020000000000020000000202000039000000000202041a000000400400043d000200000004001d00000d06030000410000000003340436000100000003001d0000000403400039000000000013043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d0f011001c700000d000220019732f032eb0000040f000000020b000029000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000000057b00190000231a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000023160000c13d000000000006004b000023270000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000023540000613d0000001f01400039000000e00110018f0000000002b10019000000000012004b0000000001000039000000010100403900000cc70020009c0000234e0000213d00000001001001900000234e0000c13d000000400020043f0000005f0030008c0000234c0000a13d00000d0b0020009c0000234e0000213d0000006001200039000000400010043f00000000010b043300000d000010009c0000234c0000213d00000000031204360000000104000029000000000404043300000d050040009c0000234c0000213d00000000004304350000004003b000390000000003030433000000ff0030008c0000234c0000213d00000040022000390000000000320435000000000001004b000023720000613d000000000001042d0000000001000019000032f20001043000000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f2000104300000001f0530018f00000d0806300198000000400200043d00000000046200190000235f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000235b0000c13d000000000005004b0000236c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000cc40020009c00000cc4020080410000004002200210000000000112019f000032f200010430000000400100043d000000640210003900000d73030000410000000000320435000000440210003900000d7403000041000000000032043500000024021000390000002903000039000000000032043500000d0102000041000000000021043500000004021000390000002003000039000000000032043500000cc40010009c00000cc401008041000000400110021000000d0d011001c7000032f200010430000a000000000002000100000004001d000a00000003001d000700000002001d000900000001001d0000003001000039000000000101041a00000cc802000041000000000020044300000d0001100197000600000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f0000000100200190000025630000613d000000000101043b000000000001004b0000000a02000029000025610000613d000000400300043d00000d4601000041000000000013043500000004013000390000000000210435000000070100002900000d00021001970000004401300039000800000002001d0000000000210435000000090100002900000d00021001970000002401300039000900000002001d000000000021043500000cc40030009c000500000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0a011001c7000000060200002932f032e60000040f00000001002001900000256b0000613d000000050100002900000d4a0010009c0000000a020000290000263e0000813d000000400010043f000000000100041132f02e2c0000040f000000400400043d0000000402400039000000000001004b000025780000613d0000000201000039000000000301041a00000d06010000410000000001140436000500000001001d0000000a01000029000000000012043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0f011001c700000d0002300197000600000004001d32f032eb0000040f000000060b000029000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000000057b0019000023ec0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000023e80000c13d000000000006004b000023f90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000258a0000613d0000001f01400039000000e00210018f0000000001b20019000000000021004b0000000002000039000000010200403900000cc70010009c0000263e0000213d00000001002001900000263e0000c13d000000400010043f000000600030008c000025610000413d00000d0b0010009c0000263e0000213d0000006002100039000000400020043f00000000020b043300000d000020009c000025610000213d00000000032104360000000504000029000000000404043300000d050040009c000025610000213d00000000004304350000004003b000390000000003030433000000ff0030008c000025610000213d00000040011000390000000000310435000000000002004b000025640000613d000000090020006c000025960000c13d000000080000006b000025a00000613d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000500000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f0000000100200190000025630000613d000000000101043b000000000001004b0000000a02000029000025610000613d000000400300043d00000d58010000410000000001130436000200000001001d0000000401300039000400000001001d00000000002104350000002401300039000000000001043500000cc40030009c000600000003001d00000cc40100004100000000010340190003004000100218000000000100041400000cc40010009c00000cc401008041000000c00110021000000003011001af00000d12011001c7000000050200002932f032e60000040f0000000100200190000025b40000613d000000060400002900000cc70040009c0000000a030000290000263e0000213d000000400040043f0000000201000039000000000201041a00000d0601000041000000000014043500000004010000290000000000310435000000000100041400000cc40010009c00000cc401008041000000c00110021000000003011001af00000d0f011001c700000d000220019732f032eb0000040f000000060b000029000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000000057b0019000024700000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000246c0000c13d000000000006004b0000247d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000025c10000613d0000001f01400039000000e00110018f0000000001b1001900000cc70010009c0000263e0000213d000000400010043f000000600030008c000025610000413d00000d0b0010009c0000263e0000213d0000006002100039000000400020043f00000000050b043300000d000050009c000025610000213d00000000025104360000000203000029000000000303043300000d050030009c000025610000213d00000000003204350000004002b000390000000002020433000000ff0020008c000025610000213d00000040011000390000000000210435000000000005004b000025640000613d000000000100041400000cc40010009c00000cc401008041000000c00110021000000d13011001c70000800d02000039000000040300003900000d590400004100000000060000190000000a0700002932f032e60000040f0000000100200190000025610000613d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000600000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f0000000100200190000025630000613d000000000101043b000000000001004b0000000a03000029000025610000613d000000400400043d00000044014000390000000802000029000000000021043500000024014000390000000902000029000000000021043500000d620100004100000000001404350000000401400039000000000031043500000cc40040009c000500000004001d00000cc40100004100000000010440190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0a011001c7000000060200002932f032e60000040f0000000100200190000025db0000613d000000050100002900000cc70010009c0000263e0000213d000000400010043f000000000100041400000cc40010009c00000cc401008041000000c00110021000000d13011001c70000800d02000039000000040300003900000d1404000041000000090500002900000008060000290000000a0700002932f032e60000040f0000000100200190000025610000613d00000cc801000041000000000010044300000007010000290000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f0000000100200190000025630000613d000000000101043b000000000001004b000025600000613d000000400700043d00000064017000390000008002000039000700000002001d000000000021043500000044017000390000000a02000029000000000021043500000024017000390000000902000029000000000021043500000d81010000410000000000170435000000000100041100000d0001100197000000040270003900000000001204350000008402700039000000010100002900000000310104340000000000120435000000a402700039000000000001004b000025190000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b000025120000413d0000001f0310003900000d7d0330019700000000012100190000000000010435000000a40130003900000cc40010009c00000cc401008041000000600110021000000cc40070009c00000cc40200004100000000020740190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f0000000802000029000a00000007001d32f032e60000040f0000000a0b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000253e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000253a0000c13d000000000006004b0000254b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000025fb0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b0000000001000039000000010100403900000cc70020009c0000263e0000213d00000001001001900000263e0000c13d000000400020043f000000200030008c000025610000413d00000000010b043300000d7700100198000025610000c13d00000d780110019700000d810010009c000025ff0000c13d000000000001042d0000000001000019000032f200010430000000000001042f000000400100043d000000640210003900000d73030000410000000000320435000000440210003900000d74030000410000259c0000013d00000060061002700000001f0460018f00000d0805600198000000400200043d0000000003520019000025e70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000025730000c13d000025e70000013d00000d0101000041000000000014043500000020010000390000000000120435000000640140003900000d65020000410000000000210435000000440140003900000d6602000041000000000021043500000024014000390000003102000039000000000021043500000cc40040009c00000cc404008041000000400140021000000d0d011001c7000032f2000104300000001f0530018f00000d0806300198000000400200043d0000000004620019000025cc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025910000c13d000025cc0000013d000000400100043d000000640210003900000d60030000410000000000320435000000440210003900000d6103000041000000000032043500000024021000390000002903000039000025a90000013d000000400100043d000000640210003900000d63030000410000000000320435000000440210003900000d6403000041000000000032043500000024021000390000002403000039000000000032043500000d0102000041000000000021043500000004021000390000002003000039000000000032043500000cc40010009c00000cc401008041000000400110021000000d0d011001c7000032f20001043000000060061002700000001f0460018f00000d0805600198000000400200043d0000000003520019000025e70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000025bc0000c13d000025e70000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000025cc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025c80000c13d000000000005004b000025d90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000025f60000013d00000060061002700000001f0460018f00000d0805600198000000400200043d0000000003520019000025e70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000025e30000c13d00000cc406600197000000000004004b000025f50000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000cc40020009c00000cc4020080410000004002200210000000000112019f000032f200010430000000000003004b000026040000c13d00000060020000390000262b0000013d00000d010100004100000000001204350000000401200039000a00000002001d000026330000013d0000001f0230003900000d21022001970000003f0220003900000d8204200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000cc70040009c0000263e0000213d00000001005001900000263e0000c13d000000400040043f0000001f0430018f000000000632043600000d0805300198000700000006001d00000000035600190000261e0000613d000000000601034f0000000707000029000000006806043c0000000007870436000000000037004b0000261a0000c13d000000000004004b0000262b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000026440000c13d000000400200043d000a00000002001d00000d01010000410000000000120435000000040120003932f032d80000040f0000000a02000029000000000121004900000cc40010009c00000cc401008041000000600110021000000cc40020009c00000cc4020080410000004002200210000000000121019f000032f20001043000000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f200010430000000070200002900000cc40020009c00000cc402008041000000400220021000000cc40010009c00000cc4010080410000006001100210000000000121019f000032f20001043000030000000000020000000203000039000000000303041a000000400500043d000300000005001d00000d6b04000041000000000045043500000d00011001970000000404500039000000000014043500000d00022001970000002401500039000100000002001d000000000021043500000cc40050009c00000cc40100004100000000010540190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d12011001c700000d0002300197000200000002001d32f032eb0000040f000000030b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000026780000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000026740000c13d000000000006004b000026850000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000027600000613d0000001f01400039000000600110018f0000000004b10019000000000014004b0000000001000039000000010100403900000cc70040009c0000275a0000213d00000001001001900000275a0000c13d000000400040043f0000001f0030008c000027580000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000027580000c13d000000000001004b0000269e0000613d0000000101000039000000000001042d00000d6c01000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c70000000202000029000300000004001d32f032eb0000040f000000030b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000026bd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000026b90000c13d000000000006004b000026ca0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000276c0000613d0000001f01400039000000600110018f0000000004b1001900000cc70040009c0000275a0000213d000000400040043f000000200030008c000027580000413d00000000010b043300000d000010009c000027580000213d000000010010006b000026db0000c13d0000000101000039000000000001042d00000d6d01000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c70000000202000029000300000004001d32f032eb0000040f000000030b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000026fa0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000026f60000c13d000000000006004b000027070000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000027780000613d0000001f01400039000000600110018f0000000004b1001900000cc70040009c0000275a0000213d000000400040043f000000200030008c000027580000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000027580000c13d000000000001004b000027560000613d00000d6e01000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c70000000202000029000300000004001d32f032eb0000040f000000030b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000027380000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000027340000c13d000000000006004b000027450000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000027840000613d0000001f01400039000000600110018f0000000001b1001900000cc70010009c0000275a0000213d000000400010043f000000200030008c000027580000413d00000000010b043300000d000010009c000027580000213d000000010010006b00000000010000190000000101006039000000000001042d0000000001000019000000000001042d0000000001000019000032f20001043000000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f2000104300000001f0530018f00000d0806300198000000400200043d00000000046200190000278f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027670000c13d0000278f0000013d0000001f0530018f00000d0806300198000000400200043d00000000046200190000278f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027730000c13d0000278f0000013d0000001f0530018f00000d0806300198000000400200043d00000000046200190000278f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000277f0000c13d0000278f0000013d0000001f0530018f00000d0806300198000000400200043d00000000046200190000278f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000278b0000c13d000000000005004b0000279c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000cc40020009c00000cc4020080410000004002200210000000000112019f000032f200010430000000400400043d00000d830040009c000027aa0000813d0000002005400039000000400050043f000000000004043532f023860000040f000000000001042d00000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f200010430000d000000000002000c00000007001d000500000006001d000300000005001d000b00000004001d000700000003001d000600000002001d000400000001001d0000002f01000039000000000201041a000000400300043d000d00000003001d00000d8401000041000000000013043500000cc40030009c00000cc40100004100000000010340190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f0000000d0b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000027da0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000027d60000c13d000000000006004b000027e70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000002dfc0000613d0000001f01400039000000600110018f0000000004b10019000000000014004b0000000001000039000000010100403900000cc70040009c00002d370000213d000000010010019000002d370000c13d000000400040043f0000001f0030008c00002d350000a13d00000000020b043300000d000020009c00002d350000213d0000000c0100002900000d00011001970000002403400039000000000013043500000d85010000410000000000140435000000000100041000000d00011001970000000403400039000000000013043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d12011001c7000d00000004001d32f032eb0000040f0000000d0b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000281f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000281b0000c13d000000000006004b0000282c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000002e080000613d0000001f01400039000000600110018f0000000004b1001900000cc70040009c00002d370000213d000000400040043f000000200030008c00002d350000413d00000000010b0433000200000001001d00000d000010009c00002d350000213d0000000b0000006b00002d340000613d00000000030000190000000002000019000028430000013d000000000305001900000001022000390000000b0020006c00002d340000813d000d00000002001d000000050120021000000007011000290000000101100367000000000101043b000000ff0010008c00002d350000213d0000000005030019000000000013001a00002e260000413d000000000001004b0000000d020000290000283f0000613d0000000003150019000000060020008c000a00000001a01d000900000005a01d000800000003a01d000c00000004a01d00000cbd0002a13e000028400000013d000000060030006c00002d350000213d0000002f01000039000000000201041a00000d5001000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f0000000c0a000029000000600310027000000cc403300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000028790000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000028750000c13d0000001f07400190000028860000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000002d3e0000613d0000001f01400039000000600210018f0000000001a20019000000000021004b0000000002000039000000010200403900000cc70010009c00002d370000213d000000010020019000002d370000c13d000000400010043f000000200030008c00002d350000413d00000000020a043300000d000020009c00002d350000213d0000000201000039000000000101041a000100000001001d00000cc8010000410000000000100443000c00000002001d0000000400200443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000002d3d0000613d000000000101043b000000000001004b00000005090000290000000a0b00002900000009010000290000000c0c00002900002d350000613d000000a0011000c90000000402100029000000010100002900000d0001100197000000400a00043d0000008403a000390000000000b304350000002403a000390000008004000039000000000043043500000d8c0300004100000000003a04350000000403a000390000000000130435000000a406a00039000000010100036700000000050000190000000004060019000000000621034f000000000606043b00000000066404360000002007200039000000000771034f000000000707043b00000000007604350000004006200039000000000761034f000000000707043b00000d000070009c00002d350000213d000000400840003900000000007804350000002006600039000000000761034f000000000707043b00000cc70070009c00002d350000213d000000600840003900000000007804350000002006600039000000000661034f000000000606043b00000d050060009c00002d350000213d00000080074000390000000000670435000000a002200039000000a00640003900000001055000390000000000b5004b000028c00000413d00000000023600490000004403a0003900000000002304350000000000960435000000c002400039000000000009004b000028f40000613d00000000030000190000000304000029000000000541034f000000000505043b00000cc70050009c00002d350000213d000000000252043600000020044000390000000103300039000000000093004b000028eb0000413d0000006401a00039000000020300002900000000003104350000000001a2004900000cc40010009c00000cc401008041000000600110021000000cc400a0009c00000cc40200004100000000020a40190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000121019f00000000020c0019000c0000000a001d32f032e60000040f000000010020019000002d2d0000c13d00002d4a0000013d000000060030006c00002d350000213d0000002f01000039000000000201041a00000d5001000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f0000000c0a000029000000600310027000000cc403300197000000200030008c00000020040000390000000004034019000000200640019000000000056a00190000292c0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000029280000c13d0000001f07400190000029390000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000002d570000613d0000001f01400039000000600210018f0000000001a20019000000000021004b0000000002000039000000010200403900000cc70010009c00002d370000213d000000010020019000002d370000c13d000000400010043f000000200030008c00002d350000413d00000000020a043300000d000020009c00002d350000213d0000000201000039000000000101041a000100000001001d00000cc8010000410000000000100443000c00000002001d0000000400200443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000002d3d0000613d000000000101043b000000000001004b00000005090000290000000a0b00002900000009010000290000000c0c00002900002d350000613d000000a0011000c90000000402100029000000010100002900000d0001100197000000400a00043d0000008403a000390000000000b304350000002403a000390000008004000039000000000043043500000d8b0300004100000000003a04350000000403a000390000000000130435000000a406a00039000000010100036700000000050000190000000004060019000000000621034f000000000606043b00000000066404360000002007200039000000000771034f000000000707043b00000000007604350000004006200039000000000761034f000000000707043b00000d000070009c00002d350000213d000000400840003900000000007804350000002006600039000000000761034f000000000707043b00000cc70070009c00002d350000213d000000600840003900000000007804350000002006600039000000000661034f000000000606043b00000d050060009c00002d350000213d00000080074000390000000000670435000000a002200039000000a00640003900000001055000390000000000b5004b000029730000413d00000000023600490000004403a0003900000000002304350000000000960435000000c002400039000000000009004b000029a70000613d00000000030000190000000304000029000000000541034f000000000505043b00000cc70050009c00002d350000213d000000000252043600000020044000390000000103300039000000000093004b0000299e0000413d0000006401a00039000000020300002900000000003104350000000001a2004900000cc40010009c00000cc401008041000000600110021000000cc400a0009c00000cc40200004100000000020a40190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000121019f00000000020c0019000c0000000a001d32f032e60000040f000000010020019000002d2d0000c13d00002d630000013d000000060030006c00002d350000213d0000002f01000039000000000201041a00000d5001000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f0000000c0a000029000000600310027000000cc403300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000029df0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000029db0000c13d0000001f07400190000029ec0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000002d700000613d0000001f01400039000000600210018f0000000001a20019000000000021004b0000000002000039000000010200403900000cc70010009c00002d370000213d000000010020019000002d370000c13d000000400010043f000000200030008c00002d350000413d00000000020a043300000d000020009c00002d350000213d0000000201000039000000000101041a000100000001001d00000cc8010000410000000000100443000c00000002001d0000000400200443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000002d3d0000613d000000000101043b000000000001004b00000005090000290000000a0b00002900000009010000290000000c0c00002900002d350000613d000000a0011000c90000000402100029000000010100002900000d0001100197000000400a00043d0000006403a000390000000000b304350000002403a000390000006004000039000000000043043500000d890300004100000000003a04350000000403a0003900000000001304350000008406a00039000000010100036700000000050000190000000004060019000000000621034f000000000606043b00000000066404360000002007200039000000000771034f000000000707043b00000000007604350000004006200039000000000761034f000000000707043b00000d000070009c00002d350000213d000000400840003900000000007804350000002006600039000000000761034f000000000707043b00000cc70070009c00002d350000213d000000600840003900000000007804350000002006600039000000000661034f000000000606043b00000d050060009c00002d350000213d00000080074000390000000000670435000000a002200039000000a00640003900000001055000390000000000b5004b00002a260000413d00000000023600490000004403a0003900000000002304350000000000960435000000c002400039000000000009004b00002a5a0000613d00000000030000190000000304000029000000000541034f000000000505043b00000cc70050009c00002d350000213d000000000252043600000020044000390000000103300039000000000093004b00002a510000413d0000000001a2004900000cc40010009c00000cc401008041000000600110021000000cc400a0009c00000cc40200004100000000020a40190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000121019f00000000020c0019000c0000000a001d32f032e60000040f000000010020019000002d2d0000c13d00002d7c0000013d000000060030006c00002d350000213d0000002f01000039000000000201041a00000d5001000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f0000000c0a000029000000600310027000000cc403300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900002a8f0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00002a8b0000c13d0000001f0740019000002a9c0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000002d890000613d0000001f01400039000000600210018f0000000001a20019000000000021004b0000000002000039000000010200403900000cc70010009c00002d370000213d000000010020019000002d370000c13d000000400010043f000000200030008c00002d350000413d00000000020a043300000d000020009c00002d350000213d0000000201000039000000000101041a000100000001001d00000cc8010000410000000000100443000c00000002001d0000000400200443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000002d3d0000613d000000000101043b000000000001004b00000005090000290000000a0b00002900000009010000290000000c0c00002900002d350000613d000000a0011000c90000000402100029000000010100002900000d0001100197000000400a00043d0000006403a000390000000000b304350000002403a000390000006004000039000000000043043500000d8a0300004100000000003a04350000000403a0003900000000001304350000008406a00039000000010100036700000000050000190000000004060019000000000621034f000000000606043b00000000066404360000002007200039000000000771034f000000000707043b00000000007604350000004006200039000000000761034f000000000707043b00000d000070009c00002d350000213d000000400840003900000000007804350000002006600039000000000761034f000000000707043b00000cc70070009c00002d350000213d000000600840003900000000007804350000002006600039000000000661034f000000000606043b00000d050060009c00002d350000213d00000080074000390000000000670435000000a002200039000000a00640003900000001055000390000000000b5004b00002ad60000413d00000000023600490000004403a0003900000000002304350000000000960435000000c002400039000000000009004b00002b0a0000613d00000000030000190000000304000029000000000541034f000000000505043b00000cc70050009c00002d350000213d000000000252043600000020044000390000000103300039000000000093004b00002b010000413d0000000001a2004900000cc40010009c00000cc401008041000000600110021000000cc400a0009c00000cc40200004100000000020a40190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000121019f00000000020c0019000c0000000a001d32f032e60000040f000000010020019000002d2d0000c13d00002d950000013d000000060030006c00002d350000213d0000002f01000039000000000201041a00000d5001000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f0000000c0a000029000000600310027000000cc403300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900002b3f0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00002b3b0000c13d0000001f0740019000002b4c0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000002da20000613d0000001f01400039000000600210018f0000000001a20019000000000021004b0000000002000039000000010200403900000cc70010009c00002d370000213d000000010020019000002d370000c13d000000400010043f000000200030008c00002d350000413d00000000020a043300000d000020009c00002d350000213d0000000201000039000000000101041a000100000001001d00000cc8010000410000000000100443000c00000002001d0000000400200443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000002d3d0000613d000000000101043b000000000001004b00000005090000290000000a0b00002900000009010000290000000c0c00002900002d350000613d000000a0011000c90000000402100029000000010100002900000d0001100197000000400a00043d0000006403a000390000000000b304350000002403a000390000006004000039000000000043043500000d860300004100000000003a04350000000403a0003900000000001304350000008406a00039000000010100036700000000050000190000000004060019000000000621034f000000000606043b00000000066404360000002007200039000000000771034f000000000707043b00000000007604350000004006200039000000000761034f000000000707043b00000d000070009c00002d350000213d000000400840003900000000007804350000002006600039000000000761034f000000000707043b00000cc70070009c00002d350000213d000000600840003900000000007804350000002006600039000000000661034f000000000606043b00000d050060009c00002d350000213d00000080074000390000000000670435000000a002200039000000a00640003900000001055000390000000000b5004b00002b860000413d00000000023600490000004403a0003900000000002304350000000000960435000000c002400039000000000009004b00002bba0000613d00000000030000190000000304000029000000000541034f000000000505043b00000cc70050009c00002d350000213d000000000252043600000020044000390000000103300039000000000093004b00002bb10000413d0000000001a2004900000cc40010009c00000cc401008041000000600110021000000cc400a0009c00000cc40200004100000000020a40190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000121019f00000000020c0019000c0000000a001d32f032e60000040f000000010020019000002d2d0000c13d00002dae0000013d000000060030006c00002d350000213d0000002f01000039000000000201041a00000d5001000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f0000000c0a000029000000600310027000000cc403300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900002bef0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00002beb0000c13d0000001f0740019000002bfc0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000002dbb0000613d0000001f01400039000000600210018f0000000001a20019000000000021004b0000000002000039000000010200403900000cc70010009c00002d370000213d000000010020019000002d370000c13d000000400010043f000000200030008c00002d350000413d00000000020a043300000d000020009c00002d350000213d0000000201000039000000000101041a000100000001001d00000cc8010000410000000000100443000c00000002001d0000000400200443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000002d3d0000613d000000000101043b000000000001004b00000005090000290000000a0b00002900000009010000290000000c0c00002900002d350000613d000000a0011000c90000000402100029000000010100002900000d0001100197000000400a00043d0000006403a000390000000000b304350000002403a000390000006004000039000000000043043500000d880300004100000000003a04350000000403a0003900000000001304350000008406a00039000000010100036700000000050000190000000004060019000000000621034f000000000606043b00000000066404360000002007200039000000000771034f000000000707043b00000000007604350000004006200039000000000761034f000000000707043b00000d000070009c00002d350000213d000000400840003900000000007804350000002006600039000000000761034f000000000707043b00000cc70070009c00002d350000213d000000600840003900000000007804350000002006600039000000000661034f000000000606043b00000d050060009c00002d350000213d00000080074000390000000000670435000000a002200039000000a00640003900000001055000390000000000b5004b00002c360000413d00000000023600490000004403a0003900000000002304350000000000960435000000c002400039000000000009004b00002c6a0000613d00000000030000190000000304000029000000000541034f000000000505043b00000cc70050009c00002d350000213d000000000252043600000020044000390000000103300039000000000093004b00002c610000413d0000000001a2004900000cc40010009c00000cc401008041000000600110021000000cc400a0009c00000cc40200004100000000020a40190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000121019f00000000020c0019000c0000000a001d32f032e60000040f000000010020019000002d2d0000c13d00002dc70000013d000000060030006c00002d350000213d0000002f01000039000000000201041a00000d5001000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d20011001c700000d000220019732f032eb0000040f0000000c0a000029000000600310027000000cc403300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900002c9f0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00002c9b0000c13d0000001f0740019000002cac0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000002dd40000613d0000001f01400039000000600210018f0000000001a20019000000000021004b0000000002000039000000010200403900000cc70010009c00002d370000213d000000010020019000002d370000c13d000000400010043f000000200030008c00002d350000413d00000000020a043300000d000020009c00002d350000213d0000000201000039000000000101041a000100000001001d00000cc8010000410000000000100443000c00000002001d0000000400200443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f000000010020019000002d3d0000613d000000000101043b000000000001004b00000005090000290000000a0b00002900000009010000290000000c0c00002900002d350000613d000000a0011000c90000000402100029000000010100002900000d0001100197000000400a00043d0000006403a000390000000000b304350000002403a000390000006004000039000000000043043500000d870300004100000000003a04350000000403a0003900000000001304350000008406a00039000000010100036700000000050000190000000004060019000000000621034f000000000606043b00000000066404360000002007200039000000000771034f000000000707043b00000000007604350000004006200039000000000761034f000000000707043b00000d000070009c00002d350000213d000000400840003900000000007804350000002006600039000000000761034f000000000707043b00000cc70070009c00002d350000213d000000600840003900000000007804350000002006600039000000000661034f000000000606043b00000d050060009c00002d350000213d00000080074000390000000000670435000000a002200039000000a00640003900000001055000390000000000b5004b00002ce60000413d00000000023600490000004403a0003900000000002304350000000000960435000000c002400039000000000009004b00002d1a0000613d00000000030000190000000304000029000000000541034f000000000505043b00000cc70050009c00002d350000213d000000000252043600000020044000390000000103300039000000000093004b00002d110000413d0000000001a2004900000cc40010009c00000cc401008041000000600110021000000cc400a0009c00000cc40200004100000000020a40190000004002200210000000000121019f000000000200041400000cc40020009c00000cc402008041000000c002200210000000000121019f00000000020c0019000c0000000a001d32f032e60000040f000000010020019000002de00000613d0000000c0400002900000cc70040009c00002d370000213d000000400040043f0000000d020000290000000803000029000028400000013d000000000001042d0000000001000019000032f20001043000000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f200010430000000000001042f0000001f0530018f00000d0806300198000000400200043d000000000462001900002e130000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d450000c13d00002e130000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900002dec0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002d520000c13d00002dec0000013d0000001f0530018f00000d0806300198000000400200043d000000000462001900002e130000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d5e0000c13d00002e130000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900002dec0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002d6b0000c13d00002dec0000013d0000001f0530018f00000d0806300198000000400200043d000000000462001900002e130000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d770000c13d00002e130000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900002dec0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002d840000c13d00002dec0000013d0000001f0530018f00000d0806300198000000400200043d000000000462001900002e130000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d900000c13d00002e130000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900002dec0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002d9d0000c13d00002dec0000013d0000001f0530018f00000d0806300198000000400200043d000000000462001900002e130000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002da90000c13d00002e130000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900002dec0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002db60000c13d00002dec0000013d0000001f0530018f00000d0806300198000000400200043d000000000462001900002e130000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002dc20000c13d00002e130000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900002dec0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002dcf0000c13d00002dec0000013d0000001f0530018f00000d0806300198000000400200043d000000000462001900002e130000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ddb0000c13d00002e130000013d00000060061002700000001f0460018f00000d0805600198000000400200043d000000000352001900002dec0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002de80000c13d00000cc406600197000000000004004b00002dfa0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000002e210000013d0000001f0530018f00000d0806300198000000400200043d000000000462001900002e130000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e030000c13d00002e130000013d0000001f0530018f00000d0806300198000000400200043d000000000462001900002e130000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e0f0000c13d000000000005004b00002e200000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000cc40020009c00000cc4020080410000004002200210000000000112019f000032f20001043000000d5d01000041000000000010043f0000001101000039000000040010043f00000d0f01000041000032f2000104300005000000000002000200000001001d0000000201000039000000000401041a000000400300043d000400000003001d00000d06010000410000000001130436000300000001001d0000000401300039000500000002001d000000000021043500000cc40030009c00000cc40100004100000000010340190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d0f011001c700000d000240019732f032eb0000040f000000040b000029000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000000057b001900002e540000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002e500000c13d000000000006004b00002e610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000030890000613d0000001f01400039000000e00210018f0000000001b20019000000000021004b0000000002000039000000010200403900000cc70010009c000030830000213d0000000100200190000030830000c13d000000400010043f0000005f0030008c000030810000a13d00000d0b0010009c000030830000213d0000006002100039000000400020043f00000000020b043300000d000020009c000030810000213d00000000032104360000000304000029000000000404043300000d050040009c000030810000213d00000000004304350000004003b000390000000003030433000000ff0030008c000030810000213d00000040011000390000000000310435000000400400043d0000000401400039000000000002004b000030950000613d0000000202000039000000000202041a00000d06030000410000000003340436000300000003001d0000000503000029000000000031043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d0f011001c700000d0002200197000400000004001d32f032eb0000040f000000040b000029000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000000057b001900002eab0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002ea70000c13d000000000006004b00002eb80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000309f0000613d0000001f01400039000000e00210018f0000000001b20019000000000021004b0000000002000039000000010200403900000cc70010009c000030830000213d0000000100200190000030830000c13d000000400010043f000000600030008c000030810000413d00000d0b0010009c000030830000213d0000006002100039000000400020043f00000000040b043300000d000040009c000030810000213d00000000024104360000000303000029000000000303043300000d050030009c000030810000213d00000000003204350000004002b000390000000002020433000000ff0020008c000030810000213d00000040011000390000000000210435000000000004004b000030ab0000613d0000000101000039000000020200002900000d0002200197000000000042004b000030030000613d000100000004001d000400000002001d0000000201000039000000000201041a000000400400043d000300000004001d00000d06010000410000000001140436000200000001001d00000004014000390000000503000029000000000031043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d0f011001c700000d000220019732f032eb0000040f000000030b000029000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000000057b001900002f090000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f050000c13d000000000006004b00002f160000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000030bf0000613d0000001f01400039000000e00210018f0000000001b20019000000000021004b0000000002000039000000010200403900000cc70010009c000030830000213d0000000100200190000030830000c13d000000400010043f000000600030008c000030810000413d00000d0b0010009c000030830000213d0000006002100039000000400020043f00000000020b043300000d000020009c000030810000213d00000000032104360000000204000029000000000404043300000d050040009c000030810000213d00000000004304350000004003b000390000000003030433000000ff0030008c000030810000213d00000040011000390000000000310435000000400400043d0000000401400039000000000002004b000030cb0000613d0000000202000039000000000202041a00000d7e0300004100000000003404350000000503000029000000000031043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d0f011001c700000d0002200197000500000004001d32f032eb0000040f000000050b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002f5f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f5b0000c13d000000000006004b00002f6c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000030dd0000613d0000001f01400039000000600110018f0000000005b10019000000000015004b0000000001000039000000010100403900000cc70050009c0000000104000029000030830000213d0000000100100190000030830000c13d000000400050043f000000200030008c000030810000413d00000000010b043300000d000010009c000030810000213d0000000403000029000000000031004b000030020000613d0000000201000039000000000201041a0000002401500039000000000031043500000d6b0100004100000000001504350000000401500039000000000041043500000cc40050009c00000cc40100004100000000010540190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d12011001c700000d0002200197000300000002001d000500000005001d32f032eb0000040f000000050b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002fa80000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002fa40000c13d000000000006004b00002fb50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000030e90000613d0000001f01400039000000600110018f0000000004b1001900000cc70040009c000030830000213d000000400040043f000000200030008c000030810000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000030810000c13d000000000001004b000030020000c13d00000d6c01000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c70000000302000029000500000004001d32f032eb0000040f000000050b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002fe60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002fe20000c13d000000000006004b00002ff30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000030f50000613d0000001f01400039000000600110018f0000000004b1001900000cc70040009c000030830000213d000000400040043f000000200030008c000030810000413d00000000010b043300000d000010009c000030810000213d000000040010006b000030040000c13d0000000101000039000000000001042d00000d6d01000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c70000000302000029000500000004001d32f032eb0000040f000000050b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030230000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000301f0000c13d000000000006004b000030300000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000031010000613d0000001f01400039000000600110018f0000000004b1001900000cc70040009c000030830000213d000000400040043f000000200030008c000030810000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000030810000c13d000000000001004b0000307f0000613d00000d6e01000041000000000014043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d20011001c70000000302000029000500000004001d32f032eb0000040f000000050b000029000000600310027000000cc403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030610000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000305d0000c13d000000000006004b0000306e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000310d0000613d0000001f01400039000000600110018f0000000001b1001900000cc70010009c000030830000213d000000400010043f000000200030008c000030810000413d00000000010b043300000d000010009c000030810000213d000000040010006b00000000010000190000000101006039000000000001042d0000000001000019000000000001042d0000000001000019000032f20001043000000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f2000104300000001f0530018f00000d0806300198000000400200043d0000000004620019000031180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030900000c13d000031180000013d00000d0102000041000000000024043500000020020000390000000000210435000000640140003900000d7f020000410000000000210435000000440140003900000d8d02000041000030d40000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000031180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030a60000c13d000031180000013d000000400100043d000000640210003900000d73030000410000000000320435000000440210003900000d7403000041000000000032043500000024021000390000002903000039000000000032043500000d0102000041000000000021043500000004021000390000002003000039000000000032043500000cc40010009c00000cc401008041000000400110021000000d0d011001c7000032f2000104300000001f0530018f00000d0806300198000000400200043d0000000004620019000031180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030c60000c13d000031180000013d00000d0102000041000000000024043500000020020000390000000000210435000000640140003900000d7f020000410000000000210435000000440140003900000d8002000041000000000021043500000024014000390000002c02000039000000000021043500000cc40040009c00000cc404008041000000400140021000000d0d011001c7000032f2000104300000001f0530018f00000d0806300198000000400200043d0000000004620019000031180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030e40000c13d000031180000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000031180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030f00000c13d000031180000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000031180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030fc0000c13d000031180000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000031180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031080000c13d000031180000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000031180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031140000c13d000000000005004b000031250000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000cc40020009c00000cc4020080410000004002200210000000000112019f000032f2000104300008000000000002000300000002001d000400000001001d0000000201000039000000000201041a000000400400043d000600000004001d00000d06010000410000000001140436000500000001001d0000000401400039000700000003001d000000000031043500000cc40040009c00000cc40100004100000000010440190000004001100210000000000300041400000cc40030009c00000cc403008041000000c003300210000000000113019f00000d0f011001c700000d000220019732f032eb0000040f000000060b000029000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000000057b0019000031540000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031500000c13d000000000006004b000031610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000032670000613d0000001f01400039000000e00210018f0000000001b20019000000000021004b0000000002000039000000010200403900000cc70010009c000032590000213d0000000100200190000032590000c13d000000400010043f0000005f0030008c000032570000a13d00000d0b0010009c000032590000213d0000006002100039000000400020043f00000000020b0433000800000002001d00000d000020009c000032570000213d000000080200002900000000022104360000000503000029000000000303043300000d050030009c000032570000213d00000000003204350000004002b000390000000002020433000000ff0020008c000032570000213d00000040011000390000000000210435000000080000006b0000325f0000613d000000040100002900000d0001100197000000080010006b000032730000c13d000000030100002900050d000010019c0000327d0000613d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000400000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f0000000100200190000032660000613d000000000101043b000000000001004b000032570000613d000000400300043d00000d58010000410000000001130436000100000001001d00000004023000390000000701000029000300000002001d00000000001204350000002401300039000000000001043500000cc40030009c000600000003001d00000cc40100004100000000010340190002004000100218000000000100041400000cc40010009c00000cc401008041000000c00110021000000002011001af00000d12011001c7000000040200002932f032e60000040f0000000100200190000032910000613d000000060300002900000cc70030009c000032590000213d000000400030043f0000000201000039000000000201041a00000d06010000410000000000130435000000070100002900000003040000290000000000140435000000000100041400000cc40010009c00000cc401008041000000c00110021000000002011001af00000d0f011001c700000d000220019732f032eb0000040f000000060b000029000000600310027000000cc403300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000000057b0019000031dd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031d90000c13d000000000006004b000031ea0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000329e0000613d0000001f01400039000000e00110018f0000000001b1001900000cc70010009c000032590000213d000000400010043f000000600030008c000032570000413d00000d0b0010009c000032590000213d0000006002100039000000400020043f00000000050b043300000d000050009c000032570000213d00000000025104360000000103000029000000000303043300000d050030009c000032570000213d00000000003204350000004002b000390000000002020433000000ff0020008c000032570000213d00000040011000390000000000210435000000000005004b0000325f0000613d000000000100041400000cc40010009c00000cc401008041000000c00110021000000d13011001c70000800d02000039000000040300003900000d59040000410000000006000019000000070700002932f032e60000040f0000000100200190000032570000613d0000000201000039000000000101041a00000cc802000041000000000020044300000d0001100197000600000001001d0000000400100443000000000100041400000cc40010009c00000cc401008041000000c00110021000000cc9011001c7000080020200003932f032eb0000040f0000000100200190000032660000613d000000000101043b000000000001004b000032570000613d000000400300043d00000044013000390000000502000029000000000021043500000024013000390000000802000029000000000021043500000d6201000041000000000013043500000004013000390000000702000029000000000021043500000cc40030009c000400000003001d00000cc40100004100000000010340190000004001100210000000000200041400000cc40020009c00000cc402008041000000c002200210000000000112019f00000d0a011001c7000000060200002932f032e60000040f0000000100200190000032b80000613d000000040100002900000cc70010009c000032590000213d000000400010043f000000000100041400000cc40010009c00000cc401008041000000c00110021000000d13011001c70000800d02000039000000040300003900000d140400004100000008050000290000000506000029000000070700002932f032e60000040f0000000100200190000032570000613d000000000001042d0000000001000019000032f20001043000000d5d01000041000000000010043f0000004101000039000000040010043f00000d0f01000041000032f200010430000000400100043d000000640210003900000d73030000410000000000320435000000440210003900000d7403000041000032790000013d000000000001042f0000001f0530018f00000d0806300198000000400200043d0000000004620019000032a90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000326e0000c13d000032a90000013d000000400100043d000000640210003900000d60030000410000000000320435000000440210003900000d6103000041000000000032043500000024021000390000002903000039000032860000013d000000400100043d000000640210003900000d63030000410000000000320435000000440210003900000d6403000041000000000032043500000024021000390000002403000039000000000032043500000d0102000041000000000021043500000004021000390000002003000039000000000032043500000cc40010009c00000cc401008041000000400110021000000d0d011001c7000032f20001043000000060061002700000001f0460018f00000d0805600198000000400200043d0000000003520019000032c40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000032990000c13d000032c40000013d0000001f0530018f00000d0806300198000000400200043d0000000004620019000032a90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032a50000c13d000000000005004b000032b60000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000032d30000013d00000060061002700000001f0460018f00000d0805600198000000400200043d0000000003520019000032c40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000032c00000c13d00000cc406600197000000000004004b000032d20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000cc40020009c00000cc4020080410000004002200210000000000112019f000032f200010430000000600210003900000d8e030000410000000000320435000000400210003900000d8f030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000032e9002104210000000102000039000000000001042d0000000002000019000000000001042d000032ee002104230000000102000039000000000001042d0000000002000019000000000001042d000032f000000432000032f10001042e000032f20001043000000000000000000000000000000000000000000000000000000000000000000000000000002858000000000000000000000000000000000000000000000000000000000000290b0000000000000000000000000000000000000000000000000000000000002a6e00000000000000000000000000000000000000000000000000000000000029be0000000000000000000000000000000000000000000000000000000000002bce0000000000000000000000000000000000000000000000000000000000002c7e0000000000000000000000000000000000000000000000000000000000002b1e00000000000000000000000000000000000000000000000000000000fffffffff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000200000000000000000000000000000000000020000000800000000000000000c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d200000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000dc4781dd00000000000000000000000000000000000000000000000000000000dc4781de00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2e96f7d00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000c9cd2cec00000000000000000000000000000000000000000000000000000000beabacc700000000000000000000000000000000000000000000000000000000beabacc800000000000000000000000000000000000000000000000000000000c70ef7f900000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000009bccd1cc000000000000000000000000000000000000000000000000000000009bccd1cd000000000000000000000000000000000000000000000000000000009e05d240000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000081ddd5070000000000000000000000000000000000000000000000000000000081ddd50800000000000000000000000000000000000000000000000000000000846d0b4f0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079b8987f000000000000000000000000000000000000000000000000000000002a552059000000000000000000000000000000000000000000000000000000004977d03a000000000000000000000000000000000000000000000000000000006352211d000000000000000000000000000000000000000000000000000000006352211e00000000000000000000000000000000000000000000000000000000653213cd0000000000000000000000000000000000000000000000000000000067feaf1b000000000000000000000000000000000000000000000000000000004977d03b000000000000000000000000000000000000000000000000000000005944c7530000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000403306d600000000000000000000000000000000000000000000000000000000081812fb000000000000000000000000000000000000000000000000000000000d705df5000000000000000000000000000000000000000000000000000000000d705df60000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000004634d8c0000000000000000000000000000000000000000000000000000000004634d8d0000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000040a40ee000000000000000000000000ffffffffffffffffffffffffffffffffffffffff08c379a0000000000000000000000000000000000000000000000000000000004576656e74496d706c656d656e746174696f6e3a206f6e6c7920616374696f6e732070726f636573736f722063616e206d696e740000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000000000000000000000ffffffffffad8fbba000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000120000000000000000000000000000000000000000000000000000000000000000000000000ffffffe04552433732313a20746f6b656e20616c7265616479206d696e746564000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f6cc9adad000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000c4c4f093000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf94db9f610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000200000000000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4552433732313a206d696e7420746f20746865207a65726f206164647265737300000000000000000000000000000000000000640000012000000000000000000000000000000000000000000000000000000020000000000000000000000000de9375f2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000cab6d5af000000000000000000000000000000000000000000000000000000001a82496e00000000000000000000000000000000000000000000000000000000cea2d6ab00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000029ce200700000000000000000000000000000000000000000000000000000000f515dcda00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffedf0000000000000000000000000000000000000000000000000000000080000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffff80000000000000000000000000000000000000000000000000000000000000006c0360eb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000ffffffffffffffbf00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff2f000000000000000000000000000000000000000000000000000000000000006e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6fce6f5b6600000000000000000000000000000000000000000000000000000000732070726f636573736f722063616e207472616e7366657200000000000000008f9dd9c800000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000800000000000000000b0a9b23c00000000000000000000000000000000000000000000000000000000d6446b8f00000000000000000000000000000000000000000000000000000000d784c96a000000000000000000000000000000000000000000000000000000001691a518000000000000000000000000000000000000000000000000000000000000000000000000000000003afdff6fcdd01e7da59c615d3958c5fec0e889fd000000000000000000000000000000000000002000000080000000000000000024b264b4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104000000000000000000000000829ee58f000000000000000000000000000000000000000000000000000000000665a60a000000000000000000000000000000000000000000000000000000004552433732313a2062616c616e636520717565727920666f7220746865207a65726f206164647265737300000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffff0000000000000000010000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000039adadd100000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff0000000000000000000000000000000000000000000000fffffffffffffffffff072629100000000000000000000000000000000000000000000000000000000471bebba00000000000000000000000000000000000000000000000000000000f92ee8a9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff95477fce0000000000000000000000000000000000000000000000000000000011f29b220000000000000000000000000000000000000000000000000000000004258e4100000000000000000000000000000000000000000000000000000000ca0d221b00000000000000000000000000000000000000000000000000000000732070726f636573736f722063616e206275726e0000000000000000000000000afd6758000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92501c8f6e900000000000000000000000000000000000000000000000000000000a08d1e180000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000400000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000999802fc0000000000000000000000000000000000000000000000000000000073206e6f74206f776e00000000000000000000000000000000000000000000004552433732313a207472616e73666572206f6620746f6b656e207468617420691aa8989b0000000000000000000000000000000000000000000000000000000072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f20616464776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f20626520756e6c6f636b656400000000000000000000000000000000000000004576656e74496d706c656d656e746174696f6e3a207469636b6574206d757374caee23ea0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000008000000000000000005215fc5600000000000000000000000000000000000000000000000000000000df29146e00000000000000000000000000000000000000000000000000000000ce459cc1000000000000000000000000000000000000000000000000000000008725b8b2000000000000000000000000000000000000000000000000000000006e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f7772000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e657869737444bf23f80000000000000000000000000000000000000000000000000000000094cdec310000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000a07d229a00000000000000000000000000000000000000000000000000000000ad0d7f6c0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0e1cf772b00000000000000000000000000000000000000000000000000000000697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffe0018ba75000000000000000000000000000000000000000000000000000000000df69927100000000000000000000000000000000000000000000000000000000563d6aba000000000000000000000000000000000000000000000000000000003d93db160000000000000000000000000000000000000000000000000000000049a21fea000000000000000000000000000000000000000000000000000000008f401a93000000000000000000000000000000000000000000000000000000007809162d00000000000000000000000000000000000000000000000000000000f5cbe2ea00000000000000000000000000000000000000000000000000000000c6902e38000000000000000000000000000000000000000000000000000000004552433732313a206f70657261746f7220717565727920666f72206e6f6e657863656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e204552433732315265331ef469871cbcedfed8f185ff0bb956951a815b12561cf5423322d92c9ea07d

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.