constructor();function initialize(address _ariaToken, bytes32 _claimRoot, address _owner) external initializer;function claim(uint256 amount, bytes32[] calldata proof) public;function updateClaimRoot(bytes32 _claimRoot) external onlyOwner;function withdraw(address _tokenAddress) external onlyOwner;function _authorizeUpgrade(address) internal virtual override onlyOwner;event TokensClaimed(bytes32 indexed root, address indexed claimer, uint256 amount);