Has Anyone Here Used This IR Remote?

I bought a few of these remote controls for a project I'm doing:

Obviously, I can figure out what the protocol is (I've done it for several IR and RF remotes over the last couple of weeks), but I'm hoping someone here has used this remote, and can save me a little time by telling me what the encoding is.

Also, if anyone can confirm that the connections for the Receiver are "GND, +5V, DOUT", going left-to right with the connector pins facing me.

Regards,
Ray L.

Yes I use these.
They are NEC.

FYI
https://forum.arduino.cc/index.php?topic=317625.0

const byte buttonCode[18] = {
  0x46,0x44,0x40,
  0x43,0x15,0x00, //0X00 is not defined
  0x16,0x19,0x0D,
  0x0C,0x18,0x5E,
  0x08,0x1C,0x5A,
  0x42,0x52,0x4A
}; //END of buttonCode Array

.

FYI
http://arduino-info.wikispaces.com/IR-RemoteControl

.

larryd:
FYI
http://arduino-info.wikispaces.com/IR-RemoteControl

.

Ooooooohhhhh!!! You got the deluxe version, with the pins actually labelled, albeit with three meaningless letters! Mine has no markings whatsoever.
Thanks much!
Regards,
Ray L.