That was helpful. since i have a raspberry Pi linux system... i downloaded 102R. you are correct... 135R layout is different and either zipped somehow or encrypted?I just refreshed my memory how I did pull WiFi VID/PID list in Jan 2014: only versions 101/102/103R of str files giving the chance; using a hex editor, need to cut out ~65 bytes of a header the str file, up to a signature "hsqs"; then mount the file under Linux. After that you could copy all folders/files to your USB drive [FAT32] and dissect it under Windows.
binwalk /home/pi/102r.str
DECIMAL HEXADECIMAL DESCRIPTION
--------------------------------------------------------------------------------
65 0x41 Squashfs filesystem, little endian, version 4.0, compression:xz, size: 31027255 bytes, 799 inodes,
blocksize: 131072 bytes, created: 1970-01-01 00:00:00
31097153 0x1DA8141 gzip compressed data, has original file name: "kernel.img", from Unix, last modified: 2014-01-17 11:21:50
extract the file system to a file
dd if=102r.str skip=65 count=31097088 of=102.fs
extract the kernel image and unzip
dd if=102r.str skip=31097153 of=kernel.gzip
binwalk -e kernel.gzip
create a place to mount the file system
sudo mkdir /media/102r
mount the file system as read only
sudo mount -o ro 102r.fs /media/102r
now the 102 file system can be browsed
ls /media/102r
hexedit kernel.img