proc/misc000044400000000311147207357400006367 0ustar00229 fuse 237 loop-control 236 device-mapper 59 network_throughput 60 network_latency 61 cpu_dma_latency 227 mcelog 62 crash 183 hw_random 144 nvram 228 hpet 235 autofs 231 snapshot 63 vga_arbiter cxl.h000064400000006222147207547100005514 0ustar00/* * Copyright 2014 IBM Corp. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #ifndef _MISC_CXL_H #define _MISC_CXL_H #include #include struct cxl_ioctl_start_work { __u64 flags; __u64 work_element_descriptor; __u64 amr; __s16 num_interrupts; __s16 reserved1; __s32 reserved2; __u64 reserved3; __u64 reserved4; __u64 reserved5; __u64 reserved6; }; #define CXL_START_WORK_AMR 0x0000000000000001ULL #define CXL_START_WORK_NUM_IRQS 0x0000000000000002ULL #define CXL_START_WORK_ERR_FF 0x0000000000000004ULL #define CXL_START_WORK_ALL (CXL_START_WORK_AMR |\ CXL_START_WORK_NUM_IRQS |\ CXL_START_WORK_ERR_FF) /* Possible modes that an afu can be in */ #define CXL_MODE_DEDICATED 0x1 #define CXL_MODE_DIRECTED 0x2 /* possible flags for the cxl_afu_id flags field */ #define CXL_AFUID_FLAG_SLAVE 0x1 /* In directed-mode afu is in slave mode */ struct cxl_afu_id { __u64 flags; /* One of CXL_AFUID_FLAG_X */ __u32 card_id; __u32 afu_offset; __u32 afu_mode; /* one of the CXL_MODE_X */ __u32 reserved1; __u64 reserved2; __u64 reserved3; __u64 reserved4; __u64 reserved5; __u64 reserved6; }; /* base adapter image header is included in the image */ #define CXL_AI_NEED_HEADER 0x0000000000000001ULL #define CXL_AI_ALL CXL_AI_NEED_HEADER #define CXL_AI_HEADER_SIZE 128 #define CXL_AI_BUFFER_SIZE 4096 #define CXL_AI_MAX_ENTRIES 256 #define CXL_AI_MAX_CHUNK_SIZE (CXL_AI_BUFFER_SIZE * CXL_AI_MAX_ENTRIES) struct cxl_adapter_image { __u64 flags; __u64 data; __u64 len_data; __u64 len_image; __u64 reserved1; __u64 reserved2; __u64 reserved3; __u64 reserved4; }; /* ioctl numbers */ #define CXL_MAGIC 0xCA /* AFU devices */ #define CXL_IOCTL_START_WORK _IOW(CXL_MAGIC, 0x00, struct cxl_ioctl_start_work) #define CXL_IOCTL_GET_PROCESS_ELEMENT _IOR(CXL_MAGIC, 0x01, __u32) #define CXL_IOCTL_GET_AFU_ID _IOR(CXL_MAGIC, 0x02, struct cxl_afu_id) /* adapter devices */ #define CXL_IOCTL_DOWNLOAD_IMAGE _IOW(CXL_MAGIC, 0x0A, struct cxl_adapter_image) #define CXL_IOCTL_VALIDATE_IMAGE _IOW(CXL_MAGIC, 0x0B, struct cxl_adapter_image) #define CXL_READ_MIN_SIZE 0x1000 /* 4K */ /* Events from read() */ enum cxl_event_type { CXL_EVENT_RESERVED = 0, CXL_EVENT_AFU_INTERRUPT = 1, CXL_EVENT_DATA_STORAGE = 2, CXL_EVENT_AFU_ERROR = 3, }; struct cxl_event_header { __u16 type; __u16 size; __u16 process_element; __u16 reserved1; }; struct cxl_event_afu_interrupt { __u16 flags; __u16 irq; /* Raised AFU interrupt number */ __u32 reserved1; }; struct cxl_event_data_storage { __u16 flags; __u16 reserved1; __u32 reserved2; __u64 addr; __u64 dsisr; __u64 reserved3; }; struct cxl_event_afu_error { __u16 flags; __u16 reserved1; __u32 reserved2; __u64 error; }; struct cxl_event { struct cxl_event_header header; union { struct cxl_event_afu_interrupt irq; struct cxl_event_data_storage fault; struct cxl_event_afu_error afu_error; }; }; #endif /* _MISC_CXL_H */ CA000075500000012072147207644350004773 0ustar00#!/bin/sh # # CA - wrapper around ca to make it easier to use ... basically ca requires # some setup stuff to be done before you can use it and this makes # things easier between now and when Eric is convinced to fix it :-) # # CA -newca ... will setup the right stuff # CA -newreq ... will generate a certificate request # CA -sign ... will sign the generated request and output # # At the end of that grab newreq.pem and newcert.pem (one has the key # and the other the certificate) and cat them together and that is what # you want/need ... I'll make even this a little cleaner later. # # # 12-Jan-96 tjh Added more things ... including CA -signcert which # converts a certificate to a request and then signs it. # 10-Jan-96 eay Fixed a few more bugs and added the SSLEAY_CONFIG # environment variable so this can be driven from # a script. # 25-Jul-96 eay Cleaned up filenames some more. # 11-Jun-96 eay Fixed a few filename missmatches. # 03-May-96 eay Modified to use 'ssleay cmd' instead of 'cmd'. # 18-Apr-96 tjh Original hacking # # Tim Hudson # tjh@cryptsoft.com # # default openssl.cnf file has setup as per the following # demoCA ... where everything is stored cp_pem() { infile=$1 outfile=$2 bound=$3 flag=0 exec <$infile; while read line; do if [ $flag -eq 1 ]; then echo $line|grep "^-----END.*$bound" 2>/dev/null 1>/dev/null if [ $? -eq 0 ] ; then echo $line >>$outfile break else echo $line >>$outfile fi fi echo $line|grep "^-----BEGIN.*$bound" 2>/dev/null 1>/dev/null if [ $? -eq 0 ]; then echo $line >$outfile flag=1 fi done } usage() { echo "usage: $0 -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify" >&2 } if [ -z "$OPENSSL" ]; then OPENSSL=openssl; fi if [ -z "$DAYS" ] ; then DAYS="-days 365" ; fi # 1 year CADAYS="-days 1095" # 3 years REQ="$OPENSSL req $SSLEAY_CONFIG" CA="$OPENSSL ca $SSLEAY_CONFIG" VERIFY="$OPENSSL verify" X509="$OPENSSL x509" PKCS12="openssl pkcs12" if [ -z "$CATOP" ] ; then CATOP=/etc/pki/CA ; fi CAKEY=./cakey.pem CAREQ=./careq.pem CACERT=./cacert.pem RET=0 while [ "$1" != "" ] ; do case $1 in -\?|-h|-help) usage exit 0 ;; -newcert) # create a certificate $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS RET=$? echo "Certificate is in newcert.pem, private key is in newkey.pem" ;; -newreq) # create a certificate request $REQ -new -keyout newkey.pem -out newreq.pem $DAYS RET=$? echo "Request is in newreq.pem, private key is in newkey.pem" ;; -newreq-nodes) # create a certificate request $REQ -new -nodes -keyout newreq.pem -out newreq.pem $DAYS RET=$? echo "Request (and private key) is in newreq.pem" ;; -newca) # if explicitly asked for or it doesn't exist then setup the directory # structure that Eric likes to manage things NEW="1" if [ "$NEW" -o ! -f ${CATOP}/serial ]; then # create the directory hierarchy mkdir -p ${CATOP} mkdir -p ${CATOP}/certs mkdir -p ${CATOP}/crl mkdir -p ${CATOP}/newcerts mkdir -p ${CATOP}/private touch ${CATOP}/index.txt fi if [ ! -f ${CATOP}/private/$CAKEY ]; then echo "CA certificate filename (or enter to create)" read FILE # ask user for existing CA certificate if [ "$FILE" ]; then cp_pem $FILE ${CATOP}/private/$CAKEY PRIVATE cp_pem $FILE ${CATOP}/$CACERT CERTIFICATE RET=$? if [ ! -f "${CATOP}/serial" ]; then $X509 -in ${CATOP}/$CACERT -noout -next_serial \ -out ${CATOP}/serial fi else echo "Making CA certificate ..." $REQ -new -keyout ${CATOP}/private/$CAKEY \ -out ${CATOP}/$CAREQ $CA -create_serial -out ${CATOP}/$CACERT $CADAYS -batch \ -keyfile ${CATOP}/private/$CAKEY -selfsign \ -extensions v3_ca \ -infiles ${CATOP}/$CAREQ RET=$? fi fi ;; -xsign) $CA -policy policy_anything -infiles newreq.pem RET=$? ;; -pkcs12) if [ -z "$2" ] ; then CNAME="My Certificate" else CNAME="$2" fi $PKCS12 -in newcert.pem -inkey newreq.pem -certfile ${CATOP}/$CACERT \ -out newcert.p12 -export -name "$CNAME" RET=$? exit $RET ;; -sign|-signreq) $CA -policy policy_anything -out newcert.pem -infiles newreq.pem RET=$? cat newcert.pem echo "Signed certificate is in newcert.pem" ;; -signCA) $CA -policy policy_anything -out newcert.pem -extensions v3_ca -infiles newreq.pem RET=$? echo "Signed CA certificate is in newcert.pem" ;; -signcert) echo "Cert passphrase will be requested twice - bug?" $X509 -x509toreq -in newreq.pem -signkey newreq.pem -out tmp.pem $CA -policy policy_anything -out newcert.pem -infiles tmp.pem RET=$? cat newcert.pem echo "Signed certificate is in newcert.pem" ;; -verify) shift if [ -z "$1" ]; then $VERIFY -CAfile $CATOP/$CACERT newcert.pem RET=$? else for j do $VERIFY -CAfile $CATOP/$CACERT $j if [ $? != 0 ]; then RET=$? fi done fi exit $RET ;; *) echo "Unknown arg $i" >&2 usage exit 1 ;; esac shift done exit $RET c_name000075500000000156147207644350005732 0ustar00#!/bin/sh # # print the subject # for i in $* do n=`openssl x509 -subject -noout -in $i` echo "$i $n" done c_hash000075500000000167147207644350005737 0ustar00#!/bin/sh # print out the hash values # for i in $* do h=`openssl x509 -hash -noout -in $i` echo "$h.0 => $i" done c_info000075500000000230147207644350005736 0ustar00#!/bin/sh # # print the subject # for i in $* do n=`openssl x509 -subject -issuer -enddate -noout -in $i` echo "$i" echo "$n" echo "--------" done c_issuer000075500000000160147207644350006317 0ustar00#!/bin/sh # # print out the issuer # for i in $* do n=`openssl x509 -issuer -noout -in $i` echo "$i $n" done magic000064400002303703147221313050005555 0ustar00 #------------------------------------------------------------------------------ # $File: acorn,v 1.5 2009/09/19 16:28:07 christos Exp $ # acorn: file(1) magic for files found on Acorn systems # # RISC OS Chunk File Format # From RISC OS Programmer's Reference Manual, Appendix D # We guess the file type from the type of the first chunk. 0 lelong 0xc3cbc6c5 RISC OS Chunk data >12 string OBJ_ \b, AOF object >12 string LIB_ \b, ALF library # RISC OS AIF, contains "SWI OS_Exit" at offset 16. 16 lelong 0xef000011 RISC OS AIF executable # RISC OS Draw files # From RISC OS Programmer's Reference Manual, Appendix E 0 string Draw RISC OS Draw file data # RISC OS new format font files # From RISC OS Programmer's Reference Manual, Appendix E 0 string FONT\0 RISC OS outline font data, >5 byte x version %d 0 string FONT\1 RISC OS 1bpp font data, >5 byte x version %d 0 string FONT\4 RISC OS 4bpp font data >5 byte x version %d # RISC OS Music files # From RISC OS Programmer's Reference Manual, Appendix E 0 string Maestro\r RISC OS music file >8 byte x version %d >8 byte x type %d # Digital Symphony data files # From: Bernard Jungen (bern8817@euphonynet.be) 0 string \x02\x01\x13\x13\x13\x01\x0d\x10 Digital Symphony sound sample (RISC OS), >8 byte x version %d, >9 pstring x named "%s", >(9.b+19) byte =0 8-bit logarithmic >(9.b+19) byte =1 LZW-compressed linear >(9.b+19) byte =2 8-bit linear signed >(9.b+19) byte =3 16-bit linear signed >(9.b+19) byte =4 SigmaDelta-compressed linear >(9.b+19) byte =5 SigmaDelta-compressed logarithmic >(9.b+19) byte >5 unknown format 0 string \x02\x01\x13\x13\x14\x12\x01\x0b Digital Symphony song (RISC OS), >8 byte x version %d, >9 byte =1 1 voice, >9 byte !1 %d voices, >10 leshort =1 1 track, >10 leshort !1 %d tracks, >12 leshort =1 1 pattern >12 leshort !1 %d patterns 0 string \x02\x01\x13\x13\x10\x14\x12\x0e >9 byte =0 Digital Symphony sequence (RISC OS), >>8 byte x version %d, >>10 byte =1 1 line, >>10 byte !1 %d lines, >>11 leshort =1 1 position >>11 leshort !1 %d positions >9 byte =1 Digital Symphony pattern data (RISC OS), >>8 byte x version %d, >>10 leshort =1 1 pattern >>10 leshort !1 %d patterns #------------------------------------------------------------------------------ # $File: adi,v 1.4 2009/09/19 16:28:07 christos Exp $ # adi: file(1) magic for ADi's objects # From Gregory McGarry # 0 leshort 0x521c COFF DSP21k >18 lelong &02 executable, >18 lelong ^02 >>18 lelong &01 static object, >>18 lelong ^01 relocatable object, >18 lelong &010 stripped >18 lelong ^010 not stripped #------------------------------------------------------------------------------ # $File: adventure,v 1.13 2010/12/31 16:32:54 christos Exp $ # adventure: file(1) magic for Adventure game files # # from Allen Garvin # Edited by Dave Chapeskie Jun 28, 1998 # Edited by Chris Chittleborough , March 2002 # # ALAN # I assume there are other, lower versions, but these are the only ones I # saw in the archive. 0 beshort 0x0206 ALAN game data >2 byte <10 version 2.6%d # Infocom (see z-machine) #------------------------------------------------------------------------------ # Z-machine: file(1) magic for Z-machine binaries. # Updated by Adam Buchbinder # #http://www.gnelson.demon.co.uk/zspec/sect11.html #http://www.jczorkmid.net/~jpenney/ZSpec11-latest.txt #http://en.wikipedia.org/wiki/Z-machine # The first byte is the Z-machine revision; it is always between 1 and 8. We # had false matches (for instance, inbig5.ocp from the Omega TeX extension as # well as an occasional MP3 file), so we sanity-check the version number. # # It might be possible to sanity-check the release number as well, as it seems # (at least in classic Infocom games) to always be a relatively small number, # always under 150 or so, but as this isn't rigorous, we'll wait on that until # it becomes clear that it's needed. # 0 ubyte >0 >0 ubyte <9 >>16 belong&0xfe00f0f0 0x3030 Infocom game data >>>0 ubyte x (Z-machine %d, >>>>2 ubeshort x Release %d / >>>>18 string >\0 Serial %.6s) #------------------------------------------------------------------------------ # Glulx: file(1) magic for Glulx binaries. # # I haven't checked for false matches yet. # 0 string Glul Glulx game data >4 beshort x (Version %d >>6 byte x \b.%d >>8 byte x \b.%d) >36 string Info Compiled by Inform # For Quetzal and blorb magic see iff # TADS (Text Adventure Development System) version 2 # All files are machine-independent (games compile to byte-code) and are tagged # with a version string of the form "V2..\0". # Game files start with "TADS2 bin\n\r\032\0" then the compiler version. 0 string TADS2\ bin TADS >9 belong !0x0A0D1A00 game data, CORRUPTED >9 belong 0x0A0D1A00 >>13 string >\0 %s game data # Resource files start with "TADS2 rsc\n\r\032\0" then the compiler version. 0 string TADS2\ rsc TADS >9 belong !0x0A0D1A00 resource data, CORRUPTED >9 belong 0x0A0D1A00 >>13 string >\0 %s resource data # Some saved game files start with "TADS2 save/g\n\r\032\0", a little-endian # 2-byte length N, the N-char name of the game file *without* a NUL (darn!), # "TADS2 save\n\r\032\0" and the interpreter version. 0 string TADS2\ save/g TADS >12 belong !0x0A0D1A00 saved game data, CORRUPTED >12 belong 0x0A0D1A00 >>(16.s+32) string >\0 %s saved game data # Other saved game files start with "TADS2 save\n\r\032\0" and the interpreter # version. 0 string TADS2\ save TADS >10 belong !0x0A0D1A00 saved game data, CORRUPTED >10 belong 0x0A0D1A00 >>14 string >\0 %s saved game data # TADS (Text Adventure Development System) version 3 # Game files start with "T3-image\015\012\032" 0 string T3-image\015\012\032 >11 leshort x TADS 3 game data (format version %d) # Saved game files start with "T3-state-v####\015\012\032" # where #### is a format version number 0 string T3-state-v >14 string \015\012\032 TADS 3 saved game data (format version >>10 byte x %c >>11 byte x \b%c >>12 byte x \b%c >>13 byte x \b%c) # Danny Milosavljevic # this are adrift (adventure game standard) game files, extension .taf # depending on version magic continues with 0x93453E6139FA (V 4.0) # 0x9445376139FA (V 3.90) # 0x9445366139FA (V 3.80) # this is from source (http://www.adrift.org.uk/) and I have some taf # files, and checked them. #0 belong 0x3C423FC9 #>4 belong 0x6A87C2CF Adrift game file #!:mime application/x-adrift #------------------------------------------------------------------------------ # $File: allegro,v 1.4 2009/09/19 16:28:07 christos Exp $ # allegro: file(1) magic for Allegro datafiles # Toby Deshane # 0 belong 0x736C6821 Allegro datafile (packed) 0 belong 0x736C682E Allegro datafile (not packed/autodetect) 0 belong 0x736C682B Allegro datafile (appended exe data) #------------------------------------------------------------------------------ # $File: alliant,v 1.7 2009/09/19 16:28:07 christos Exp $ # alliant: file(1) magic for Alliant FX series a.out files # # If the FX series is the one that had a processor with a 68K-derived # instruction set, the "short" should probably become "beshort" and the # "long" should probably become "belong". # If it's the i860-based one, they should probably become either the # big-endian or little-endian versions, depending on the mode they ran # the 860 in.... # 0 short 0420 0420 Alliant virtual executable >2 short &0x0020 common library >16 long >0 not stripped 0 short 0421 0421 Alliant compact executable >2 short &0x0020 common library >16 long >0 not stripped #------------------------------------------------------------------------------ # $File: amanda,v 1.5 2009/09/19 16:28:07 christos Exp $ # amanda: file(1) magic for amanda file format # 0 string AMANDA:\ AMANDA >8 string TAPESTART\ DATE tape header file, >>23 string X >>>25 string >\ Unused %s >>23 string >\ DATE %s >8 string FILE\ dump file, >>13 string >\ DATE %s #------------------------------------------------------------------------------ # $File: amigaos,v 1.14 2009/09/19 16:28:07 christos Exp $ # amigaos: file(1) magic for AmigaOS binary formats: # # From ignatios@cs.uni-bonn.de (Ignatios Souvatzis) # 0 belong 0x000003fa AmigaOS shared library 0 belong 0x000003f3 AmigaOS loadseg()ble executable/binary 0 belong 0x000003e7 AmigaOS object/library data # 0 beshort 0xe310 Amiga Workbench >2 beshort 1 >>48 byte 1 disk icon >>48 byte 2 drawer icon >>48 byte 3 tool icon >>48 byte 4 project icon >>48 byte 5 garbage icon >>48 byte 6 device icon >>48 byte 7 kickstart icon >>48 byte 8 workbench application icon >2 beshort >1 icon, vers. %d # # various sound formats from the Amiga # G=F6tz Waschk # 0 string FC14 Future Composer 1.4 Module sound file 0 string SMOD Future Composer 1.3 Module sound file 0 string AON4artofnoise Art Of Noise Module sound file 1 string MUGICIAN/SOFTEYES Mugician Module sound file 58 string SIDMON\ II\ -\ THE Sidmon 2.0 Module sound file 0 string Synth4.0 Synthesis Module sound file 0 string ARP. The Holy Noise Module sound file 0 string BeEp\0 JamCracker Module sound file 0 string COSO\0 Hippel-COSO Module sound file # Too simple (short, pure ASCII, deep), MPi #26 string V.3 Brian Postma's Soundmon Module sound file v3 #26 string BPSM Brian Postma's Soundmon Module sound file v3 #26 string V.2 Brian Postma's Soundmon Module sound file v2 # The following are from: "Stefan A. Haubenthal" 0 beshort 0x0f00 AmigaOS bitmap font 0 beshort 0x0f03 AmigaOS outline font 0 belong 0x80001001 AmigaOS outline tag 0 string ##\ version catalog translation 0 string EMOD\0 Amiga E module 8 string ECXM\0 ECX module 0 string/c @database AmigaGuide file # Amiga disk types # 0 string RDSK Rigid Disk Block >160 string x on %.24s 0 string DOS\0 Amiga DOS disk 0 string DOS\1 Amiga FFS disk 0 string DOS\2 Amiga Inter DOS disk 0 string DOS\3 Amiga Inter FFS disk 0 string DOS\4 Amiga Fastdir DOS disk 0 string DOS\5 Amiga Fastdir FFS disk 0 string KICK Kickstart disk # From: Alex Beregszaszi 0 string LZX LZX compressed archive (Amiga) #------------------------------------------------------------------------------ # $File: animation,v 1.45 2011/09/06 11:00:06 christos Exp $ # animation: file(1) magic for animation/movie formats # # animation formats # MPEG, FLI, DL originally from vax@ccwf.cc.utexas.edu (VaX#n8) # FLC, SGI, Apple originally from Daniel Quinlan (quinlan@yggdrasil.com) # SGI and Apple formats 0 string MOVI Silicon Graphics movie file !:mime video/x-sgi-movie 4 string moov Apple QuickTime !:mime video/quicktime >12 string mvhd \b movie (fast start) >12 string mdra \b URL >12 string cmov \b movie (fast start, compressed header) >12 string rmra \b multiple URLs 4 string mdat Apple QuickTime movie (unoptimized) !:mime video/quicktime #4 string wide Apple QuickTime movie (unoptimized) #!:mime video/quicktime #4 string skip Apple QuickTime movie (modified) #!:mime video/quicktime #4 string free Apple QuickTime movie (modified) #!:mime video/quicktime 4 string idsc Apple QuickTime image (fast start) !:mime image/x-quicktime #4 string idat Apple QuickTime image (unoptimized) #!:mime image/x-quicktime 4 string pckg Apple QuickTime compressed archive !:mime application/x-quicktime-player 4 string/W jP JPEG 2000 image !:mime image/jp2 4 string ftyp ISO Media >8 string isom \b, MPEG v4 system, version 1 !:mime video/mp4 >8 string iso2 \b, MPEG v4 system, part 12 revision >8 string mp41 \b, MPEG v4 system, version 1 !:mime video/mp4 >8 string mp42 \b, MPEG v4 system, version 2 !:mime video/mp4 >8 string mp7t \b, MPEG v4 system, MPEG v7 XML >8 string mp7b \b, MPEG v4 system, MPEG v7 binary XML >8 string/W jp2 \b, JPEG 2000 !:mime image/jp2 >8 string 3ge \b, MPEG v4 system, 3GPP !:mime video/3gpp >8 string 3gg \b, MPEG v4 system, 3GPP !:mime video/3gpp >8 string 3gp \b, MPEG v4 system, 3GPP !:mime video/3gpp >8 string 3gs \b, MPEG v4 system, 3GPP !:mime video/3gpp >8 string 3g2 \b, MPEG v4 system, 3GPP2 !:mime video/3gpp2 >>11 byte 4 \b v4 (H.263/AMR GSM 6.10) >>11 byte 5 \b v5 (H.263/AMR GSM 6.10) >>11 byte 6 \b v6 (ITU H.264/AMR GSM 6.10) >8 string mmp4 \b, MPEG v4 system, 3GPP Mobile !:mime video/mp4 >8 string avc1 \b, MPEG v4 system, 3GPP JVT AVC !:mime video/3gpp >8 string/W M4A \b, MPEG v4 system, iTunes AAC-LC !:mime audio/mp4 >8 string/W M4V \b, MPEG v4 system, iTunes AVC-LC !:mime video/mp4 >8 string/W M4P \b, MPEG v4 system, iTunes AES encrypted >8 string/W M4B \b, MPEG v4 system, iTunes bookmarked >8 string/W qt \b, Apple QuickTime movie !:mime video/quicktime # MPEG sequences # Scans for all common MPEG header start codes 0 belong 0x00000001 >4 byte&0x1F 0x07 JVT NAL sequence, H.264 video >>5 byte 66 \b, baseline >>5 byte 77 \b, main >>5 byte 88 \b, extended >>7 byte x \b @ L %u 0 belong&0xFFFFFF00 0x00000100 >3 byte 0xBA MPEG sequence !:mime video/mpeg >>4 byte &0x40 \b, v2, program multiplex >>4 byte ^0x40 \b, v1, system multiplex >3 byte 0xBB MPEG sequence, v1/2, multiplex (missing pack header) >3 byte&0x1F 0x07 MPEG sequence, H.264 video >>4 byte 66 \b, baseline >>4 byte 77 \b, main >>4 byte 88 \b, extended >>6 byte x \b @ L %u >3 byte 0xB0 MPEG sequence, v4 !:mime video/mpeg4-generic >>5 belong 0x000001B5 >>>9 byte &0x80 >>>>10 byte&0xF0 16 \b, video >>>>10 byte&0xF0 32 \b, still texture >>>>10 byte&0xF0 48 \b, mesh >>>>10 byte&0xF0 64 \b, face >>>9 byte&0xF8 8 \b, video >>>9 byte&0xF8 16 \b, still texture >>>9 byte&0xF8 24 \b, mesh >>>9 byte&0xF8 32 \b, face >>4 byte 1 \b, simple @ L1 >>4 byte 2 \b, simple @ L2 >>4 byte 3 \b, simple @ L3 >>4 byte 4 \b, simple @ L0 >>4 byte 17 \b, simple scalable @ L1 >>4 byte 18 \b, simple scalable @ L2 >>4 byte 33 \b, core @ L1 >>4 byte 34 \b, core @ L2 >>4 byte 50 \b, main @ L2 >>4 byte 51 \b, main @ L3 >>4 byte 53 \b, main @ L4 >>4 byte 66 \b, n-bit @ L2 >>4 byte 81 \b, scalable texture @ L1 >>4 byte 97 \b, simple face animation @ L1 >>4 byte 98 \b, simple face animation @ L2 >>4 byte 99 \b, simple face basic animation @ L1 >>4 byte 100 \b, simple face basic animation @ L2 >>4 byte 113 \b, basic animation text @ L1 >>4 byte 114 \b, basic animation text @ L2 >>4 byte 129 \b, hybrid @ L1 >>4 byte 130 \b, hybrid @ L2 >>4 byte 145 \b, advanced RT simple @ L! >>4 byte 146 \b, advanced RT simple @ L2 >>4 byte 147 \b, advanced RT simple @ L3 >>4 byte 148 \b, advanced RT simple @ L4 >>4 byte 161 \b, core scalable @ L1 >>4 byte 162 \b, core scalable @ L2 >>4 byte 163 \b, core scalable @ L3 >>4 byte 177 \b, advanced coding efficiency @ L1 >>4 byte 178 \b, advanced coding efficiency @ L2 >>4 byte 179 \b, advanced coding efficiency @ L3 >>4 byte 180 \b, advanced coding efficiency @ L4 >>4 byte 193 \b, advanced core @ L1 >>4 byte 194 \b, advanced core @ L2 >>4 byte 209 \b, advanced scalable texture @ L1 >>4 byte 210 \b, advanced scalable texture @ L2 >>4 byte 211 \b, advanced scalable texture @ L3 >>4 byte 225 \b, simple studio @ L1 >>4 byte 226 \b, simple studio @ L2 >>4 byte 227 \b, simple studio @ L3 >>4 byte 228 \b, simple studio @ L4 >>4 byte 229 \b, core studio @ L1 >>4 byte 230 \b, core studio @ L2 >>4 byte 231 \b, core studio @ L3 >>4 byte 232 \b, core studio @ L4 >>4 byte 240 \b, advanced simple @ L0 >>4 byte 241 \b, advanced simple @ L1 >>4 byte 242 \b, advanced simple @ L2 >>4 byte 243 \b, advanced simple @ L3 >>4 byte 244 \b, advanced simple @ L4 >>4 byte 245 \b, advanced simple @ L5 >>4 byte 247 \b, advanced simple @ L3b >>4 byte 248 \b, FGS @ L0 >>4 byte 249 \b, FGS @ L1 >>4 byte 250 \b, FGS @ L2 >>4 byte 251 \b, FGS @ L3 >>4 byte 252 \b, FGS @ L4 >>4 byte 253 \b, FGS @ L5 >3 byte 0xB5 MPEG sequence, v4 !:mime video/mpeg4-generic >>4 byte &0x80 >>>5 byte&0xF0 16 \b, video (missing profile header) >>>5 byte&0xF0 32 \b, still texture (missing profile header) >>>5 byte&0xF0 48 \b, mesh (missing profile header) >>>5 byte&0xF0 64 \b, face (missing profile header) >>4 byte&0xF8 8 \b, video (missing profile header) >>4 byte&0xF8 16 \b, still texture (missing profile header) >>4 byte&0xF8 24 \b, mesh (missing profile header) >>4 byte&0xF8 32 \b, face (missing profile header) >3 byte 0xB3 MPEG sequence !:mime video/mpeg >>12 belong 0x000001B8 \b, v1, progressive Y'CbCr 4:2:0 video >>12 belong 0x000001B2 \b, v1, progressive Y'CbCr 4:2:0 video >>12 belong 0x000001B5 \b, v2, >>>16 byte&0x0F 1 \b HP >>>16 byte&0x0F 2 \b Spt >>>16 byte&0x0F 3 \b SNR >>>16 byte&0x0F 4 \b MP >>>16 byte&0x0F 5 \b SP >>>17 byte&0xF0 64 \b@HL >>>17 byte&0xF0 96 \b@H-14 >>>17 byte&0xF0 128 \b@ML >>>17 byte&0xF0 160 \b@LL >>>17 byte &0x08 \b progressive >>>17 byte ^0x08 \b interlaced >>>17 byte&0x06 2 \b Y'CbCr 4:2:0 video >>>17 byte&0x06 4 \b Y'CbCr 4:2:2 video >>>17 byte&0x06 6 \b Y'CbCr 4:4:4 video >>11 byte &0x02 >>>75 byte &0x01 >>>>140 belong 0x000001B8 \b, v1, progressive Y'CbCr 4:2:0 video >>>>140 belong 0x000001B2 \b, v1, progressive Y'CbCr 4:2:0 video >>>>140 belong 0x000001B5 \b, v2, >>>>>144 byte&0x0F 1 \b HP >>>>>144 byte&0x0F 2 \b Spt >>>>>144 byte&0x0F 3 \b SNR >>>>>144 byte&0x0F 4 \b MP >>>>>144 byte&0x0F 5 \b SP >>>>>145 byte&0xF0 64 \b@HL >>>>>145 byte&0xF0 96 \b@H-14 >>>>>145 byte&0xF0 128 \b@ML >>>>>145 byte&0xF0 160 \b@LL >>>>>145 byte &0x08 \b progressive >>>>>145 byte ^0x08 \b interlaced >>>>>145 byte&0x06 2 \b Y'CbCr 4:2:0 video >>>>>145 byte&0x06 4 \b Y'CbCr 4:2:2 video >>>>>145 byte&0x06 6 \b Y'CbCr 4:4:4 video >>76 belong 0x000001B8 \b, v1, progressive Y'CbCr 4:2:0 video >>76 belong 0x000001B2 \b, v1, progressive Y'CbCr 4:2:0 video >>76 belong 0x000001B5 \b, v2, >>>80 byte&0x0F 1 \b HP >>>80 byte&0x0F 2 \b Spt >>>80 byte&0x0F 3 \b SNR >>>80 byte&0x0F 4 \b MP >>>80 byte&0x0F 5 \b SP >>>81 byte&0xF0 64 \b@HL >>>81 byte&0xF0 96 \b@H-14 >>>81 byte&0xF0 128 \b@ML >>>81 byte&0xF0 160 \b@LL >>>81 byte &0x08 \b progressive >>>81 byte ^0x08 \b interlaced >>>81 byte&0x06 2 \b Y'CbCr 4:2:0 video >>>81 byte&0x06 4 \b Y'CbCr 4:2:2 video >>>81 byte&0x06 6 \b Y'CbCr 4:4:4 video >>4 belong&0xFFFFFF00 0x78043800 \b, HD-TV 1920P >>>7 byte&0xF0 0x10 \b, 16:9 >>4 belong&0xFFFFFF00 0x50002D00 \b, SD-TV 1280I >>>7 byte&0xF0 0x10 \b, 16:9 >>4 belong&0xFFFFFF00 0x30024000 \b, PAL Capture >>>7 byte&0xF0 0x10 \b, 4:3 >>4 beshort&0xFFF0 0x2C00 \b, 4CIF >>>5 beshort&0x0FFF 0x01E0 \b NTSC >>>5 beshort&0x0FFF 0x0240 \b PAL >>>7 byte&0xF0 0x20 \b, 4:3 >>>7 byte&0xF0 0x30 \b, 16:9 >>>7 byte&0xF0 0x40 \b, 11:5 >>>7 byte&0xF0 0x80 \b, PAL 4:3 >>>7 byte&0xF0 0xC0 \b, NTSC 4:3 >>4 belong&0xFFFFFF00 0x2801E000 \b, LD-TV 640P >>>7 byte&0xF0 0x10 \b, 4:3 >>4 belong&0xFFFFFF00 0x1400F000 \b, 320x240 >>>7 byte&0xF0 0x10 \b, 4:3 >>4 belong&0xFFFFFF00 0x0F00A000 \b, 240x160 >>>7 byte&0xF0 0x10 \b, 4:3 >>4 belong&0xFFFFFF00 0x0A007800 \b, 160x120 >>>7 byte&0xF0 0x10 \b, 4:3 >>4 beshort&0xFFF0 0x1600 \b, CIF >>>5 beshort&0x0FFF 0x00F0 \b NTSC >>>5 beshort&0x0FFF 0x0120 \b PAL >>>7 byte&0xF0 0x20 \b, 4:3 >>>7 byte&0xF0 0x30 \b, 16:9 >>>7 byte&0xF0 0x40 \b, 11:5 >>>7 byte&0xF0 0x80 \b, PAL 4:3 >>>7 byte&0xF0 0xC0 \b, NTSC 4:3 >>>5 beshort&0x0FFF 0x0240 \b PAL 625 >>>>7 byte&0xF0 0x20 \b, 4:3 >>>>7 byte&0xF0 0x30 \b, 16:9 >>>>7 byte&0xF0 0x40 \b, 11:5 >>4 beshort&0xFFF0 0x2D00 \b, CCIR/ITU >>>5 beshort&0x0FFF 0x01E0 \b NTSC 525 >>>5 beshort&0x0FFF 0x0240 \b PAL 625 >>>7 byte&0xF0 0x20 \b, 4:3 >>>7 byte&0xF0 0x30 \b, 16:9 >>>7 byte&0xF0 0x40 \b, 11:5 >>4 beshort&0xFFF0 0x1E00 \b, SVCD >>>5 beshort&0x0FFF 0x01E0 \b NTSC 525 >>>5 beshort&0x0FFF 0x0240 \b PAL 625 >>>7 byte&0xF0 0x20 \b, 4:3 >>>7 byte&0xF0 0x30 \b, 16:9 >>>7 byte&0xF0 0x40 \b, 11:5 >>7 byte&0x0F 1 \b, 23.976 fps >>7 byte&0x0F 2 \b, 24 fps >>7 byte&0x0F 3 \b, 25 fps >>7 byte&0x0F 4 \b, 29.97 fps >>7 byte&0x0F 5 \b, 30 fps >>7 byte&0x0F 6 \b, 50 fps >>7 byte&0x0F 7 \b, 59.94 fps >>7 byte&0x0F 8 \b, 60 fps >>11 byte &0x04 \b, Constrained # MPEG ADTS Audio (*.mpx/mxa/aac) # from dreesen@math.fu-berlin.de # modified to fully support MPEG ADTS # MP3, M1A # modified by Joerg Jenderek # GRR the original test are too common for many DOS files # so don't accept as MP3 until we've tested the rate 0 beshort&0xFFFE 0xFFFA # rates >2 byte&0xF0 0x10 MPEG ADTS, layer III, v1, 32 kbps !:mime audio/mpeg >2 byte&0xF0 0x20 MPEG ADTS, layer III, v1, 40 kbps !:mime audio/mpeg >2 byte&0xF0 0x30 MPEG ADTS, layer III, v1, 48 kbps !:mime audio/mpeg >2 byte&0xF0 0x40 MPEG ADTS, layer III, v1, 56 kbps !:mime audio/mpeg >2 byte&0xF0 0x50 MPEG ADTS, layer III, v1, 64 kbps !:mime audio/mpeg >2 byte&0xF0 0x60 MPEG ADTS, layer III, v1, 80 kbps !:mime audio/mpeg >2 byte&0xF0 0x70 MPEG ADTS, layer III, v1, 96 kbps !:mime audio/mpeg >2 byte&0xF0 0x80 MPEG ADTS, layer III, v1, 112 kbps !:mime audio/mpeg >2 byte&0xF0 0x90 MPEG ADTS, layer III, v1, 128 kbps !:mime audio/mpeg >2 byte&0xF0 0xA0 MPEG ADTS, layer III, v1, 160 kbps !:mime audio/mpeg >2 byte&0xF0 0xB0 MPEG ADTS, layer III, v1, 192 kbps !:mime audio/mpeg >2 byte&0xF0 0xC0 MPEG ADTS, layer III, v1, 224 kbps !:mime audio/mpeg >2 byte&0xF0 0xD0 MPEG ADTS, layer III, v1, 256 kbps !:mime audio/mpeg >2 byte&0xF0 0xE0 MPEG ADTS, layer III, v1, 320 kbps !:mime audio/mpeg # timing >2 byte&0x0C 0x00 \b, 44.1 kHz >2 byte&0x0C 0x04 \b, 48 kHz >2 byte&0x0C 0x08 \b, 32 kHz # channels/options >3 byte&0xC0 0x00 \b, Stereo >3 byte&0xC0 0x40 \b, JntStereo >3 byte&0xC0 0x80 \b, 2x Monaural >3 byte&0xC0 0xC0 \b, Monaural #>1 byte ^0x01 \b, Data Verify #>2 byte &0x02 \b, Packet Pad #>2 byte &0x01 \b, Custom Flag #>3 byte &0x08 \b, Copyrighted #>3 byte &0x04 \b, Original Source #>3 byte&0x03 1 \b, NR: 50/15 ms #>3 byte&0x03 3 \b, NR: CCIT J.17 # MP2, M1A 0 beshort&0xFFFE 0xFFFC MPEG ADTS, layer II, v1 !:mime audio/mpeg # rates >2 byte&0xF0 0x10 \b, 32 kbps >2 byte&0xF0 0x20 \b, 48 kbps >2 byte&0xF0 0x30 \b, 56 kbps >2 byte&0xF0 0x40 \b, 64 kbps >2 byte&0xF0 0x50 \b, 80 kbps >2 byte&0xF0 0x60 \b, 96 kbps >2 byte&0xF0 0x70 \b, 112 kbps >2 byte&0xF0 0x80 \b, 128 kbps >2 byte&0xF0 0x90 \b, 160 kbps >2 byte&0xF0 0xA0 \b, 192 kbps >2 byte&0xF0 0xB0 \b, 224 kbps >2 byte&0xF0 0xC0 \b, 256 kbps >2 byte&0xF0 0xD0 \b, 320 kbps >2 byte&0xF0 0xE0 \b, 384 kbps # timing >2 byte&0x0C 0x00 \b, 44.1 kHz >2 byte&0x0C 0x04 \b, 48 kHz >2 byte&0x0C 0x08 \b, 32 kHz # channels/options >3 byte&0xC0 0x00 \b, Stereo >3 byte&0xC0 0x40 \b, JntStereo >3 byte&0xC0 0x80 \b, 2x Monaural >3 byte&0xC0 0xC0 \b, Monaural #>1 byte ^0x01 \b, Data Verify #>2 byte &0x02 \b, Packet Pad #>2 byte &0x01 \b, Custom Flag #>3 byte &0x08 \b, Copyrighted #>3 byte &0x04 \b, Original Source #>3 byte&0x03 1 \b, NR: 50/15 ms #>3 byte&0x03 3 \b, NR: CCIT J.17 # MPA, M1A # updated by Joerg Jenderek # GRR the original test are too common for many DOS files, so test 32 <= kbits <= 448 # GRR this test is still too general as it catches a BOM of UTF-16 files (0xFFFE) # FIXME: Almost all little endian UTF-16 text with BOM are clobbered by these entries #0 beshort&0xFFFE 0xFFFE #>2 ubyte&0xF0 >0x0F #>>2 ubyte&0xF0 <0xE1 MPEG ADTS, layer I, v1 ## rate #>>>2 byte&0xF0 0x10 \b, 32 kbps #>>>2 byte&0xF0 0x20 \b, 64 kbps #>>>2 byte&0xF0 0x30 \b, 96 kbps #>>>2 byte&0xF0 0x40 \b, 128 kbps #>>>2 byte&0xF0 0x50 \b, 160 kbps #>>>2 byte&0xF0 0x60 \b, 192 kbps #>>>2 byte&0xF0 0x70 \b, 224 kbps #>>>2 byte&0xF0 0x80 \b, 256 kbps #>>>2 byte&0xF0 0x90 \b, 288 kbps #>>>2 byte&0xF0 0xA0 \b, 320 kbps #>>>2 byte&0xF0 0xB0 \b, 352 kbps #>>>2 byte&0xF0 0xC0 \b, 384 kbps #>>>2 byte&0xF0 0xD0 \b, 416 kbps #>>>2 byte&0xF0 0xE0 \b, 448 kbps ## timing #>>>2 byte&0x0C 0x00 \b, 44.1 kHz #>>>2 byte&0x0C 0x04 \b, 48 kHz #>>>2 byte&0x0C 0x08 \b, 32 kHz ## channels/options #>>>3 byte&0xC0 0x00 \b, Stereo #>>>3 byte&0xC0 0x40 \b, JntStereo #>>>3 byte&0xC0 0x80 \b, 2x Monaural #>>>3 byte&0xC0 0xC0 \b, Monaural ##>1 byte ^0x01 \b, Data Verify ##>2 byte &0x02 \b, Packet Pad ##>2 byte &0x01 \b, Custom Flag ##>3 byte &0x08 \b, Copyrighted ##>3 byte &0x04 \b, Original Source ##>3 byte&0x03 1 \b, NR: 50/15 ms ##>3 byte&0x03 3 \b, NR: CCIT J.17 # MP3, M2A 0 beshort&0xFFFE 0xFFF2 MPEG ADTS, layer III, v2 !:mime audio/mpeg # rate >2 byte&0xF0 0x10 \b, 8 kbps >2 byte&0xF0 0x20 \b, 16 kbps >2 byte&0xF0 0x30 \b, 24 kbps >2 byte&0xF0 0x40 \b, 32 kbps >2 byte&0xF0 0x50 \b, 40 kbps >2 byte&0xF0 0x60 \b, 48 kbps >2 byte&0xF0 0x70 \b, 56 kbps >2 byte&0xF0 0x80 \b, 64 kbps >2 byte&0xF0 0x90 \b, 80 kbps >2 byte&0xF0 0xA0 \b, 96 kbps >2 byte&0xF0 0xB0 \b, 112 kbps >2 byte&0xF0 0xC0 \b, 128 kbps >2 byte&0xF0 0xD0 \b, 144 kbps >2 byte&0xF0 0xE0 \b, 160 kbps # timing >2 byte&0x0C 0x00 \b, 22.05 kHz >2 byte&0x0C 0x04 \b, 24 kHz >2 byte&0x0C 0x08 \b, 16 kHz # channels/options >3 byte&0xC0 0x00 \b, Stereo >3 byte&0xC0 0x40 \b, JntStereo >3 byte&0xC0 0x80 \b, 2x Monaural >3 byte&0xC0 0xC0 \b, Monaural #>1 byte ^0x01 \b, Data Verify #>2 byte &0x02 \b, Packet Pad #>2 byte &0x01 \b, Custom Flag #>3 byte &0x08 \b, Copyrighted #>3 byte &0x04 \b, Original Source #>3 byte&0x03 1 \b, NR: 50/15 ms #>3 byte&0x03 3 \b, NR: CCIT J.17 # MP2, M2A 0 beshort&0xFFFE 0xFFF4 MPEG ADTS, layer II, v2 # rate >2 byte&0xF0 0x10 \b, 8 kbps >2 byte&0xF0 0x20 \b, 16 kbps >2 byte&0xF0 0x30 \b, 24 kbps >2 byte&0xF0 0x40 \b, 32 kbps >2 byte&0xF0 0x50 \b, 40 kbps >2 byte&0xF0 0x60 \b, 48 kbps >2 byte&0xF0 0x70 \b, 56 kbps >2 byte&0xF0 0x80 \b, 64 kbps >2 byte&0xF0 0x90 \b, 80 kbps >2 byte&0xF0 0xA0 \b, 96 kbps >2 byte&0xF0 0xB0 \b, 112 kbps >2 byte&0xF0 0xC0 \b, 128 kbps >2 byte&0xF0 0xD0 \b, 144 kbps >2 byte&0xF0 0xE0 \b, 160 kbps # timing >2 byte&0x0C 0x00 \b, 22.05 kHz >2 byte&0x0C 0x04 \b, 24 kHz >2 byte&0x0C 0x08 \b, 16 kHz # channels/options >3 byte&0xC0 0x00 \b, Stereo >3 byte&0xC0 0x40 \b, JntStereo >3 byte&0xC0 0x80 \b, 2x Monaural >3 byte&0xC0 0xC0 \b, Monaural #>1 byte ^0x01 \b, Data Verify #>2 byte &0x02 \b, Packet Pad #>2 byte &0x01 \b, Custom Flag #>3 byte &0x08 \b, Copyrighted #>3 byte &0x04 \b, Original Source #>3 byte&0x03 1 \b, NR: 50/15 ms #>3 byte&0x03 3 \b, NR: CCIT J.17 # MPA, M2A 0 beshort&0xFFFE 0xFFF6 MPEG ADTS, layer I, v2 !:mime audio/mpeg # rate >2 byte&0xF0 0x10 \b, 32 kbps >2 byte&0xF0 0x20 \b, 48 kbps >2 byte&0xF0 0x30 \b, 56 kbps >2 byte&0xF0 0x40 \b, 64 kbps >2 byte&0xF0 0x50 \b, 80 kbps >2 byte&0xF0 0x60 \b, 96 kbps >2 byte&0xF0 0x70 \b, 112 kbps >2 byte&0xF0 0x80 \b, 128 kbps >2 byte&0xF0 0x90 \b, 144 kbps >2 byte&0xF0 0xA0 \b, 160 kbps >2 byte&0xF0 0xB0 \b, 176 kbps >2 byte&0xF0 0xC0 \b, 192 kbps >2 byte&0xF0 0xD0 \b, 224 kbps >2 byte&0xF0 0xE0 \b, 256 kbps # timing >2 byte&0x0C 0x00 \b, 22.05 kHz >2 byte&0x0C 0x04 \b, 24 kHz >2 byte&0x0C 0x08 \b, 16 kHz # channels/options >3 byte&0xC0 0x00 \b, Stereo >3 byte&0xC0 0x40 \b, JntStereo >3 byte&0xC0 0x80 \b, 2x Monaural >3 byte&0xC0 0xC0 \b, Monaural #>1 byte ^0x01 \b, Data Verify #>2 byte &0x02 \b, Packet Pad #>2 byte &0x01 \b, Custom Flag #>3 byte &0x08 \b, Copyrighted #>3 byte &0x04 \b, Original Source #>3 byte&0x03 1 \b, NR: 50/15 ms #>3 byte&0x03 3 \b, NR: CCIT J.17 # MP3, M25A 0 beshort&0xFFFE 0xFFE2 MPEG ADTS, layer III, v2.5 !:mime audio/mpeg # rate >2 byte&0xF0 0x10 \b, 8 kbps >2 byte&0xF0 0x20 \b, 16 kbps >2 byte&0xF0 0x30 \b, 24 kbps >2 byte&0xF0 0x40 \b, 32 kbps >2 byte&0xF0 0x50 \b, 40 kbps >2 byte&0xF0 0x60 \b, 48 kbps >2 byte&0xF0 0x70 \b, 56 kbps >2 byte&0xF0 0x80 \b, 64 kbps >2 byte&0xF0 0x90 \b, 80 kbps >2 byte&0xF0 0xA0 \b, 96 kbps >2 byte&0xF0 0xB0 \b, 112 kbps >2 byte&0xF0 0xC0 \b, 128 kbps >2 byte&0xF0 0xD0 \b, 144 kbps >2 byte&0xF0 0xE0 \b, 160 kbps # timing >2 byte&0x0C 0x00 \b, 11.025 kHz >2 byte&0x0C 0x04 \b, 12 kHz >2 byte&0x0C 0x08 \b, 8 kHz # channels/options >3 byte&0xC0 0x00 \b, Stereo >3 byte&0xC0 0x40 \b, JntStereo >3 byte&0xC0 0x80 \b, 2x Monaural >3 byte&0xC0 0xC0 \b, Monaural #>1 byte ^0x01 \b, Data Verify #>2 byte &0x02 \b, Packet Pad #>2 byte &0x01 \b, Custom Flag #>3 byte &0x08 \b, Copyrighted #>3 byte &0x04 \b, Original Source #>3 byte&0x03 1 \b, NR: 50/15 ms #>3 byte&0x03 3 \b, NR: CCIT J.17 # AAC (aka MPEG-2 NBC audio) and MPEG-4 audio # Stored AAC streams (instead of the MP4 format) 0 string ADIF MPEG ADIF, AAC !:mime audio/x-hx-aac-adif >4 byte &0x80 >>13 byte &0x10 \b, VBR >>13 byte ^0x10 \b, CBR >>16 byte&0x1E 0x02 \b, single stream >>16 byte&0x1E 0x04 \b, 2 streams >>16 byte&0x1E 0x06 \b, 3 streams >>16 byte &0x08 \b, 4 or more streams >>16 byte &0x10 \b, 8 or more streams >>4 byte &0x80 \b, Copyrighted >>13 byte &0x40 \b, Original Source >>13 byte &0x20 \b, Home Flag >4 byte ^0x80 >>4 byte &0x10 \b, VBR >>4 byte ^0x10 \b, CBR >>7 byte&0x1E 0x02 \b, single stream >>7 byte&0x1E 0x04 \b, 2 streams >>7 byte&0x1E 0x06 \b, 3 streams >>7 byte &0x08 \b, 4 or more streams >>7 byte &0x10 \b, 8 or more streams >>4 byte &0x40 \b, Original Stream(s) >>4 byte &0x20 \b, Home Source # Live or stored single AAC stream (used with MPEG-2 systems) 0 beshort&0xFFF6 0xFFF0 MPEG ADTS, AAC !:mime audio/x-hx-aac-adts >1 byte &0x08 \b, v2 >1 byte ^0x08 \b, v4 # profile >>2 byte &0xC0 \b LTP >2 byte&0xc0 0x00 \b Main >2 byte&0xc0 0x40 \b LC >2 byte&0xc0 0x80 \b SSR # timing >2 byte&0x3c 0x00 \b, 96 kHz >2 byte&0x3c 0x04 \b, 88.2 kHz >2 byte&0x3c 0x08 \b, 64 kHz >2 byte&0x3c 0x0c \b, 48 kHz >2 byte&0x3c 0x10 \b, 44.1 kHz >2 byte&0x3c 0x14 \b, 32 kHz >2 byte&0x3c 0x18 \b, 24 kHz >2 byte&0x3c 0x1c \b, 22.05 kHz >2 byte&0x3c 0x20 \b, 16 kHz >2 byte&0x3c 0x24 \b, 12 kHz >2 byte&0x3c 0x28 \b, 11.025 kHz >2 byte&0x3c 0x2c \b, 8 kHz # channels >2 beshort&0x01c0 0x0040 \b, monaural >2 beshort&0x01c0 0x0080 \b, stereo >2 beshort&0x01c0 0x00c0 \b, stereo + center >2 beshort&0x01c0 0x0100 \b, stereo+center+LFE >2 beshort&0x01c0 0x0140 \b, surround >2 beshort&0x01c0 0x0180 \b, surround + LFE >2 beshort &0x01C0 \b, surround + side #>1 byte ^0x01 \b, Data Verify #>2 byte &0x02 \b, Custom Flag #>3 byte &0x20 \b, Original Stream #>3 byte &0x10 \b, Home Source #>3 byte &0x08 \b, Copyrighted # Live MPEG-4 audio streams (instead of RTP FlexMux) 0 beshort&0xFFE0 0x56E0 MPEG-4 LOAS !:mime audio/x-mp4a-latm #>1 beshort&0x1FFF x \b, %u byte packet >3 byte&0xE0 0x40 >>4 byte&0x3C 0x04 \b, single stream >>4 byte&0x3C 0x08 \b, 2 streams >>4 byte&0x3C 0x0C \b, 3 streams >>4 byte &0x08 \b, 4 or more streams >>4 byte &0x20 \b, 8 or more streams >3 byte&0xC0 0 >>4 byte&0x78 0x08 \b, single stream >>4 byte&0x78 0x10 \b, 2 streams >>4 byte&0x78 0x18 \b, 3 streams >>4 byte &0x20 \b, 4 or more streams >>4 byte &0x40 \b, 8 or more streams # This magic isn't strong enough (matches plausible ISO-8859-1 text) #0 beshort 0x4DE1 MPEG-4 LO-EP audio stream #!:mime audio/x-mp4a-latm # Summary: FLI animation format # Created by: Daniel Quinlan # Modified by (1): Abel Cheung (avoid over-generic detection) 4 leshort 0xAF11 # standard FLI always has 320x200 resolution and 8 bit color >8 leshort 320 >>10 leshort 200 >>>12 leshort 8 FLI animation, 320x200x8 !:mime video/x-fli >>>>6 leshort x \b, %d frames # frame speed is multiple of 1/70s >>>>16 leshort x \b, %d/70s per frame # Summary: FLC animation format # Created by: Daniel Quinlan # Modified by (1): Abel Cheung (avoid over-generic detection) 4 leshort 0xAF12 # standard FLC always use 8 bit color >12 leshort 8 FLC animation !:mime video/x-flc >>8 leshort x \b, %d >>10 leshort x \bx%dx8 >>6 uleshort x \b, %d frames >>16 uleshort x \b, %dms per frame # DL animation format # XXX - collision with most `mips' magic # # I couldn't find a real magic number for these, however, this # -appears- to work. Note that it might catch other files, too, so be # careful! # # Note that title and author appear in the two 20-byte chunks # at decimal offsets 2 and 22, respectively, but they are XOR'ed with # 255 (hex FF)! The DL format is really bad. # #0 byte 1 DL version 1, medium format (160x100, 4 images/screen) #!:mime video/x-unknown #>42 byte x - %d screens, #>43 byte x %d commands #0 byte 2 DL version 2 #!:mime video/x-unknown #>1 byte 1 - large format (320x200,1 image/screen), #>1 byte 2 - medium format (160x100,4 images/screen), #>1 byte >2 - unknown format, #>42 byte x %d screens, #>43 byte x %d commands # Based on empirical evidence, DL version 3 have several nulls following the # \003. Most of them start with non-null values at hex offset 0x34 or so. #0 string \3\0\0\0\0\0\0\0\0\0\0\0 DL version 3 # iso 13818 transport stream # # from Oskar Schirmer Feb 3, 2001 (ISO 13818.1) # (the following is a little bit restrictive and works fine for a stream # that starts with PAT properly. it won't work for stream data, that is # cut from an input device data right in the middle, but this shouldn't # disturb) # syncbyte 8 bit 0x47 # error_ind 1 bit - # payload_start 1 bit 1 # priority 1 bit - # PID 13 bit 0x0000 # scrambling 2 bit - # adaptfld_ctrl 2 bit 1 or 3 # conti_count 4 bit 0 0 belong&0xFF5FFF1F 0x47400010 MPEG transport stream data >188 byte !0x47 CORRUPTED # DIF digital video file format 0 belong&0xffffff00 0x1f070000 DIF >4 byte &0x01 (DVCPRO) movie file >4 byte ^0x01 (DV) movie file >3 byte &0x80 (PAL) >3 byte ^0x80 (NTSC) # Microsoft Advanced Streaming Format (ASF) 0 belong 0x3026b275 Microsoft ASF !:mime video/x-ms-asf # MNG Video Format, 0 string \x8aMNG MNG video data, !:mime video/x-mng >4 belong !0x0d0a1a0a CORRUPTED, >4 belong 0x0d0a1a0a >>16 belong x %ld x >>20 belong x %ld # JNG Video Format, 0 string \x8bJNG JNG video data, !:mime video/x-jng >4 belong !0x0d0a1a0a CORRUPTED, >4 belong 0x0d0a1a0a >>16 belong x %ld x >>20 belong x %ld # Vivo video (Wolfram Kleff) 3 string \x0D\x0AVersion:Vivo Vivo video data # VRML (Virtual Reality Modelling Language) 0 string/w #VRML\ V1.0\ ascii VRML 1 file !:mime model/vrml 0 string/w #VRML\ V2.0\ utf8 ISO/IEC 14772 VRML 97 file !:mime model/vrml # X3D (Extensible 3D) [http://www.web3d.org/specifications/x3d-3.0.dtd] # From Michel Briand 0 string/t \20 search/1000/cw \, 2002-10-03 # 0 string HVQM4 %s >6 string >\0 v%s >0 byte x GameCube movie, >0x34 ubeshort x %d x >0x36 ubeshort x %d, >0x26 ubeshort x %dµs, >0x42 ubeshort 0 no audio >0x42 ubeshort >0 %dHz audio # From: "Stefan A. Haubenthal" 0 string DVDVIDEO-VTS Video title set, >0x21 byte x v%x 0 string DVDVIDEO-VMG Video manager, >0x21 byte x v%x # From: Behan Webster # NuppelVideo used by Mythtv (*.nuv) # Note: there are two identical stanzas here differing only in the # initial string matched. It used to be done with a regex, but we're # trying to get rid of those. 0 string NuppelVideo MythTV NuppelVideo >12 string x v%s >20 lelong x (%d >24 lelong x \bx%d), >36 string P \bprogressive, >36 string I \binterlaced, >40 ledouble x \baspect:%.2f, >48 ledouble x \bfps:%.2f 0 string MythTV MythTV NuppelVideo >12 string x v%s >20 lelong x (%d >24 lelong x \bx%d), >36 string P \bprogressive, >36 string I \binterlaced, >40 ledouble x \baspect:%.2f, >48 ledouble x \bfps:%.2f # MPEG file # MPEG sequences # FIXME: This section is from the old magic.mime file and needs integrating with the rest 0 belong 0x000001BA >4 byte &0x40 !:mime video/mp2p >4 byte ^0x40 !:mime video/mpeg 0 belong 0x000001BB !:mime video/mpeg 0 belong 0x000001B0 !:mime video/mp4v-es 0 belong 0x000001B5 !:mime video/mp4v-es 0 belong 0x000001B3 !:mime video/mpv 0 belong&0xFF5FFF1F 0x47400010 !:mime video/mp2t 0 belong 0x00000001 >4 byte&0x1F 0x07 !:mime video/h264 # Type: Bink Video # Extension: .bik # URL: http://wiki.multimedia.cx/index.php?title=Bink_Container # From: 2008-07-18 0 string BIK Bink Video >3 regex =[a-z] rev.%s #>4 ulelong x size %d >20 ulelong x \b, %d >24 ulelong x \bx%d >8 ulelong x \b, %d frames >32 ulelong x at rate %d/ >28 ulelong >1 \b%d >40 ulelong =0 \b, no audio >40 ulelong !0 \b, %d audio track >>40 ulelong !1 \bs # follow properties of the first audio track only >>48 uleshort x %dHz >>51 byte&0x20 0 mono >>51 byte&0x20 !0 stereo #>>51 byte&0x10 0 FFT #>>51 byte&0x10 !0 DCT # Type: NUT Container # URL: http://wiki.multimedia.cx/index.php?title=NUT # From: Adam Buchbinder 0 string nut/multimedia\ container\0 NUT multimedia container # Type: Nullsoft Video (NSV) # URL: http://wiki.multimedia.cx/index.php?title=Nullsoft_Video # From: Mike Melanson 0 string NSVf Nullsoft Video # Type: REDCode Video # URL: http://www.red.com/ ; http://wiki.multimedia.cx/index.php?title=REDCode # From: Mike Melanson 4 string RED1 REDCode Video # Type: MTV Multimedia File # URL: http://wiki.multimedia.cx/index.php?title=MTV # From: Mike Melanson 0 string AMVS MTV Multimedia File # Type: ARMovie # URL: http://wiki.multimedia.cx/index.php?title=ARMovie # From: Mike Melanson 0 string ARMovie\012 ARMovie # Type: Interplay MVE Movie # URL: http://wiki.multimedia.cx/index.php?title=Interplay_MVE # From: Mike Melanson 0 string Interplay\040MVE\040File\032 Interplay MVE Movie # Type: Windows Television DVR File # URL: http://wiki.multimedia.cx/index.php?title=WTV # From: Mike Melanson # This takes the form of a Windows-style GUID 0 bequad 0xB7D800203749DA11 >8 bequad 0xA64E0007E95EAD8D Windows Television DVR Media # Type: Sega FILM/CPK Multimedia # URL: http://wiki.multimedia.cx/index.php?title=Sega_FILM # From: Mike Melanson 0 string FILM Sega FILM/CPK Multimedia, >32 belong x %d x >28 belong x %d # Type: Nintendo THP Multimedia # URL: http://wiki.multimedia.cx/index.php?title=THP # From: Mike Melanson 0 string THP\0 Nintendo THP Multimedia # Type: BBC Dirac Video # URL: http://wiki.multimedia.cx/index.php?title=Dirac # From: Mike Melanson 0 string BBCD BBC Dirac Video # Type: RAD Game Tools Smacker Multimedia # URL: http://wiki.multimedia.cx/index.php?title=Smacker # From: Mike Melanson 0 string SMK RAD Game Tools Smacker Multimedia >3 byte x version %c, >4 lelong x %d x >8 lelong x %d, >12 lelong x %d frames #------------------------------------------------------------------------------ # $File: apl,v 1.6 2009/09/19 16:28:07 christos Exp $ # apl: file(1) magic for APL (see also "pdp" and "vax" for other APL # workspaces) # 0 long 0100554 APL workspace (Ken's original?) #------------------------------------------------------------------------------ # $File: apple,v 1.24 2010/11/25 15:00:12 christos Exp $ # apple: file(1) magic for Apple file formats # 0 search/1/t FiLeStArTfIlEsTaRt binscii (apple ][) text 0 string \x0aGL Binary II (apple ][) data 0 string \x76\xff Squeezed (apple ][) data 0 string NuFile NuFile archive (apple ][) data 0 string N\xf5F\xe9l\xe5 NuFile archive (apple ][) data 0 belong 0x00051600 AppleSingle encoded Macintosh file 0 belong 0x00051607 AppleDouble encoded Macintosh file # Type: Apple Emulator 2IMG format # From: Radek Vokal 0 string 2IMG Apple ][ 2IMG Disk Image >4 string XGS! \b, XGS >4 string CTKG \b, Catakig >4 string ShIm \b, Sheppy's ImageMaker >4 string WOOF \b, Sweet 16 >4 string B2TR \b, Bernie ][ the Rescue >4 string !nfc \b, ASIMOV2 >4 string x \b, Unknown Format >0xc byte 00 \b, DOS 3.3 sector order >>0x10 byte 00 \b, Volume 254 >>0x10 byte&0x7f x \b, Volume %u >0xc byte 01 \b, ProDOS sector order >>0x14 short x \b, %u Blocks >0xc byte 02 \b, NIB data # magic for Newton PDA package formats # from Ruda Moura 0 string package0 Newton package, NOS 1.x, >12 belong &0x80000000 AutoRemove, >12 belong &0x40000000 CopyProtect, >12 belong &0x10000000 NoCompression, >12 belong &0x04000000 Relocation, >12 belong &0x02000000 UseFasterCompression, >16 belong x version %d 0 string package1 Newton package, NOS 2.x, >12 belong &0x80000000 AutoRemove, >12 belong &0x40000000 CopyProtect, >12 belong &0x10000000 NoCompression, >12 belong &0x04000000 Relocation, >12 belong &0x02000000 UseFasterCompression, >16 belong x version %d 0 string package4 Newton package, >8 byte 8 NOS 1.x, >8 byte 9 NOS 2.x, >12 belong &0x80000000 AutoRemove, >12 belong &0x40000000 CopyProtect, >12 belong &0x10000000 NoCompression, # The following entries for the Apple II are for files that have # been transferred as raw binary data from an Apple, without having # been encapsulated by any of the above archivers. # # In general, Apple II formats are hard to identify because Apple DOS # and especially Apple ProDOS have strong typing in the file system and # therefore programmers never felt much need to include type information # in the files themselves. # # Eric Fischer # AppleWorks word processor: # # This matches the standard tab stops for an AppleWorks file, but if # a file has a tab stop set in the first four columns this will fail. # # The "O" is really the magic number, but that's so common that it's # necessary to check the tab stops that follow it to avoid false positives. 4 string O==== AppleWorks word processor data >85 byte&0x01 >0 \b, zoomed >90 byte&0x01 >0 \b, paginated >92 byte&0x01 >0 \b, with mail merge #>91 byte x \b, left margin %d # AppleWorks database: # # This isn't really a magic number, but it's the closest thing to one # that I could find. The 1 and 2 really mean "order in which you defined # categories" and "left to right, top to bottom," respectively; the D and R # mean that the cursor should move either down or right when you press Return. #30 string \x01D AppleWorks database data #30 string \x02D AppleWorks database data #30 string \x01R AppleWorks database data #30 string \x02R AppleWorks database data # AppleWorks spreadsheet: # # Likewise, this isn't really meant as a magic number. The R or C means # row- or column-order recalculation; the A or M means automatic or manual # recalculation. #131 string RA AppleWorks spreadsheet data #131 string RM AppleWorks spreadsheet data #131 string CA AppleWorks spreadsheet data #131 string CM AppleWorks spreadsheet data # Applesoft BASIC: # # This is incredibly sloppy, but will be true if the program was # written at its usual memory location of 2048 and its first line # number is less than 256. Yuck. 0 belong&0xff00ff 0x80000 Applesoft BASIC program data #>2 leshort x \b, first line number %d # ORCA/EZ assembler: # # This will not identify ORCA/M source files, since those have # some sort of date code instead of the two zero bytes at 6 and 7 # XXX Conflicts with ELF #4 belong&0xff00ffff 0x01000000 ORCA/EZ assembler source data #>5 byte x \b, build number %d # Broderbund Fantavision # # I don't know what these values really mean, but they seem to recur. # Will they cause too many conflicts? # Probably :-) #2 belong&0xFF00FF 0x040008 Fantavision movie data # Some attempts at images. # # These are actually just bit-for-bit dumps of the frame buffer, so # there's really no reasonably way to distinguish them except for their # address (if preserved) -- 8192 or 16384 -- and their length -- 8192 # or, occasionally, 8184. # # Nevertheless this will manage to catch a lot of images that happen # to have a solid-colored line at the bottom of the screen. # GRR: Magic too weak #8144 string \x7F\x7F\x7F\x7F\x7F\x7F\x7F\x7F Apple II image with white background #8144 string \x55\x2A\x55\x2A\x55\x2A\x55\x2A Apple II image with purple background #8144 string \x2A\x55\x2A\x55\x2A\x55\x2A\x55 Apple II image with green background #8144 string \xD5\xAA\xD5\xAA\xD5\xAA\xD5\xAA Apple II image with blue background #8144 string \xAA\xD5\xAA\xD5\xAA\xD5\xAA\xD5 Apple II image with orange background # Beagle Bros. Apple Mechanic fonts 0 belong&0xFF00FFFF 0x6400D000 Apple Mechanic font # Apple Universal Disk Image Format (UDIF) - dmg files. # From Johan Gade. # These entries are disabled for now until we fix the following issues. # # Note there might be some problems with the "VAX COFF executable" # entry. Note this entry should be placed before the mac filesystem section, # particularly the "Apple Partition data" entry. # # The intended meaning of these tests is, that the file is only of the # specified type if both of the lines are correct - i.e. if the first # line matches and the second doesn't then it is not of that type. # #0 long 0x7801730d #>4 long 0x62626060 UDIF read-only zlib-compressed image (UDZO) # # Note that this entry is recognized correctly by the "Apple Partition # data" entry - however since this entry is more specific - this # information seems to be more useful. #0 long 0x45520200 #>0x410 string disk\ image UDIF read/write image (UDRW) # From: Toby Peterson 0 string bplist00 Apple binary property list # Apple binary property list (bplist) # Assumes version bytes are hex. # Provides content hints for version 0 files. Assumes that the root # object is the first object (true for CoreFoundation implementation). # From: David Remahl 0 string bplist >6 byte x \bCoreFoundation binary property list data, version 0x%c >>7 byte x \b%c >6 string 00 \b >>8 byte&0xF0 0x00 \b >>>8 byte&0x0F 0x00 \b, root type: null >>>8 byte&0x0F 0x08 \b, root type: false boolean >>>8 byte&0x0F 0x09 \b, root type: true boolean >>8 byte&0xF0 0x10 \b, root type: integer >>8 byte&0xF0 0x20 \b, root type: real >>8 byte&0xF0 0x30 \b, root type: date >>8 byte&0xF0 0x40 \b, root type: data >>8 byte&0xF0 0x50 \b, root type: ascii string >>8 byte&0xF0 0x60 \b, root type: unicode string >>8 byte&0xF0 0x80 \b, root type: uid (CORRUPT) >>8 byte&0xF0 0xa0 \b, root type: array >>8 byte&0xF0 0xd0 \b, root type: dictionary # Apple/NeXT typedstream data # Serialization format used by NeXT and Apple for various # purposes in YellowStep/Cocoa, including some nib files. # From: David Remahl 2 string typedstream NeXT/Apple typedstream data, big endian >0 byte x \b, version %hhd >0 byte <5 \b >>13 byte 0x81 \b >>>14 ubeshort x \b, system %hd 2 string streamtyped NeXT/Apple typedstream data, little endian >0 byte x \b, version %hhd >0 byte <5 \b >>13 byte 0x81 \b >>>14 uleshort x \b, system %hd #------------------------------------------------------------------------------ # CAF: Apple CoreAudio File Format # # Container format for high-end audio purposes. # From: David Remahl # 0 string caff CoreAudio Format audio file >4 beshort <10 version %d >6 beshort x #------------------------------------------------------------------------------ # Keychain database files 0 string kych Mac OS X Keychain File #------------------------------------------------------------------------------ # Code Signing related file types 0 belong 0xfade0c00 Mac OS X Code Requirement >8 belong 1 (opExpr) >4 belong x - %d bytes 0 belong 0xfade0c01 Mac OS X Code Requirement Set >8 belong >1 containing %d items >4 belong x - %d bytes 0 belong 0xfade0c02 Mac OS X Code Directory >8 belong x version %x >12 belong >0 flags 0x%x >4 belong x - %d bytes 0 belong 0xfade0cc0 Mac OS X Detached Code Signature (non-executable) >4 belong x - %d bytes 0 belong 0xfade0cc1 Mac OS X Detached Code Signature >8 belong >1 (%d elements) >4 belong x - %d bytes # From: "Nelson A. de Oliveira" # .vdi 4 string innotek\ VirtualBox\ Disk\ Image %s #------------------------------------------------------------------------------ # $File: applix,v 1.5 2009/09/19 16:28:08 christos Exp $ # applix: file(1) magic for Applixware # From: Peter Soos # 0 string *BEGIN Applixware >7 string WORDS Words Document >7 string GRAPHICS Graphic >7 string RASTER Bitmap >7 string SPREADSHEETS Spreadsheet >7 string MACRO Macro >7 string BUILDER Builder Object #------------------------------------------------------------------------------ # $File: archive,v 1.70 2011/10/26 15:44:47 christos Exp $ # archive: file(1) magic for archive formats (see also "msdos" for self- # extracting compressed archives) # # cpio, ar, arc, arj, hpack, lha/lharc, rar, squish, uc2, zip, zoo, etc. # pre-POSIX "tar" archives are handled in the C code. # POSIX tar archives 257 string ustar\0 POSIX tar archive !:mime application/x-tar # encoding: posix 257 string ustar\040\040\0 GNU tar archive !:mime application/x-tar # encoding: gnu # Incremental snapshot gnu-tar format from: # http://www.gnu.org/software/tar/manual/html_node/Snapshot-Files.html 0 string GNU\ tar- GNU tar incremental snapshot data >&0 regex [0-9]\.[0-9]+-[0-9]+ version %s # cpio archives # # Yes, the top two "cpio archive" formats *are* supposed to just be "short". # The idea is to indicate archives produced on machines with the same # byte order as the machine running "file" with "cpio archive", and # to indicate archives produced on machines with the opposite byte order # from the machine running "file" with "byte-swapped cpio archive". # # The SVR4 "cpio(4)" hints that there are additional formats, but they # are defined as "short"s; I think all the new formats are # character-header formats and thus are strings, not numbers. 0 short 070707 cpio archive !:mime application/x-cpio 0 short 0143561 byte-swapped cpio archive !:mime application/x-cpio # encoding: swapped 0 string 070707 ASCII cpio archive (pre-SVR4 or odc) 0 string 070701 ASCII cpio archive (SVR4 with no CRC) 0 string 070702 ASCII cpio archive (SVR4 with CRC) # Debian package (needs to go before regular portable archives) # 0 string =!\ndebian !:mime application/x-debian-package >8 string debian-split part of multipart Debian package >8 string debian-binary Debian binary package >8 string !debian >68 string >\0 (format %s) # These next two lines do not work, because a bzip2 Debian archive # still uses gzip for the control.tar (first in the archive). Only # data.tar varies, and the location of its filename varies too. # file/libmagic does not current have support for ascii-string based # (offsets) as of 2005-09-15. #>81 string bz2 \b, uses bzip2 compression #>84 string gz \b, uses gzip compression #>136 ledate x created: %s # other archives 0 long 0177555 very old archive 0 short 0177555 very old PDP-11 archive 0 long 0177545 old archive 0 short 0177545 old PDP-11 archive 0 long 0100554 apl workspace 0 string = archive !:mime application/x-archive # MIPS archive (needs to go before regular portable archives) # 0 string =!\n__________E MIPS archive >20 string U with MIPS Ucode members >21 string L with MIPSEL members >21 string B with MIPSEB members >19 string L and an EL hash table >19 string B and an EB hash table >22 string X -- out of date 0 search/1 -h- Software Tools format archive text # # XXX - why are there multiple thingies? Note that 0x213c6172 is # "! current ar archive # 0 long 0x213c6172 archive file # # and for SVR1 archives, we have: # # 0 string \ System V Release 1 ar archive # 0 string = archive # # XXX - did Aegis really store shared libraries, breakpointed modules, # and absolute code program modules in the same format as new-style # "ar" archives? # 0 string =! current ar archive !:mime application/x-archive >8 string __.SYMDEF random library >0 belong =65538 - pre SR9.5 >0 belong =65539 - post SR9.5 >0 beshort 2 - object archive >0 beshort 3 - shared library module >0 beshort 4 - debug break-pointed module >0 beshort 5 - absolute code program module 0 string \ System V Release 1 ar archive 0 string = archive # # XXX - from "vax", which appears to collect a bunch of byte-swapped # thingies, to help you recognize VAX files on big-endian machines; # with "leshort", "lelong", and "string", that's no longer necessary.... # 0 belong 0x65ff0000 VAX 3.0 archive 0 belong 0x3c61723e VAX 5.0 archive # 0 long 0x213c6172 archive file 0 lelong 0177555 very old VAX archive 0 leshort 0177555 very old PDP-11 archive # # XXX - "pdp" claims that 0177545 can have an __.SYMDEF member and thus # be a random library (it said 0xff65 rather than 0177545). # 0 lelong 0177545 old VAX archive >8 string __.SYMDEF random library 0 leshort 0177545 old PDP-11 archive >8 string __.SYMDEF random library # # From "pdp" (but why a 4-byte quantity?) # 0 lelong 0x39bed PDP-11 old archive 0 lelong 0x39bee PDP-11 4.0 archive # ARC archiver, from Daniel Quinlan (quinlan@yggdrasil.com) # # The first byte is the magic (0x1a), byte 2 is the compression type for # the first file (0x01 through 0x09), and bytes 3 to 15 are the MS-DOS # filename of the first file (null terminated). Since some types collide # we only test some types on basis of frequency: 0x08 (83%), 0x09 (5%), # 0x02 (5%), 0x03 (3%), 0x04 (2%), 0x06 (2%). 0x01 collides with terminfo. 0 lelong&0x8080ffff 0x0000081a ARC archive data, dynamic LZW !:mime application/x-arc 0 lelong&0x8080ffff 0x0000091a ARC archive data, squashed !:mime application/x-arc 0 lelong&0x8080ffff 0x0000021a ARC archive data, uncompressed !:mime application/x-arc 0 lelong&0x8080ffff 0x0000031a ARC archive data, packed !:mime application/x-arc 0 lelong&0x8080ffff 0x0000041a ARC archive data, squeezed !:mime application/x-arc 0 lelong&0x8080ffff 0x0000061a ARC archive data, crunched !:mime application/x-arc # [JW] stuff taken from idarc, obviously ARC successors: 0 lelong&0x8080ffff 0x00000a1a PAK archive data !:mime application/x-arc 0 lelong&0x8080ffff 0x0000141a ARC+ archive data !:mime application/x-arc 0 lelong&0x8080ffff 0x0000481a HYP archive data !:mime application/x-arc # Acorn archive formats (Disaster prone simpleton, m91dps@ecs.ox.ac.uk) # I can't create either SPARK or ArcFS archives so I have not tested this stuff # [GRR: the original entries collide with ARC, above; replaced with combined # version (not tested)] #0 byte 0x1a RISC OS archive (spark format) 0 string \032archive RISC OS archive (ArcFS format) 0 string Archive\000 RISC OS archive (ArcFS format) # All these were taken from idarc, many could not be verified. Unfortunately, # there were many low-quality sigs, i.e. easy to trigger false positives. # Please notify me of any real-world fishy/ambiguous signatures and I'll try # to get my hands on the actual archiver and see if I find something better. [JW] # probably many can be enhanced by finding some 0-byte or control char near the start # idarc calls this Crush/Uncompressed... *shrug* 0 string CRUSH Crush archive data # Squeeze It (.sqz) 0 string HLSQZ Squeeze It archive data # SQWEZ 0 string SQWEZ SQWEZ archive data # HPack (.hpk) 0 string HPAK HPack archive data # HAP 0 string \x91\x33HF HAP archive data # MD/MDCD 0 string MDmd MDCD archive data # LIM 0 string LIM\x1a LIM archive data # SAR 3 string LH5 SAR archive data # BSArc/BS2 0 string \212\3SB \0 BSArc/BS2 archive data # MAR 2 string =-ah MAR archive data # ACB #0 belong&0x00f800ff 0x00800000 ACB archive data # CPZ # TODO, this is what idarc says: 0 string \0\0\0 CPZ archive data # JRC 0 string JRchive JRC archive data # Quantum 0 string DS\0 Quantum archive data # ReSOF 0 string PK\3\6 ReSOF archive data # QuArk 0 string 7\4 QuArk archive data # YAC 14 string YC YAC archive data # X1 0 string X1 X1 archive data 0 string XhDr X1 archive data # CDC Codec (.dqt) 0 belong&0xffffe000 0x76ff2000 CDC Codec archive data # AMGC 0 string \xad6" AMGC archive data # NuLIB 0 string NõFélå NuLIB archive data # PakLeo 0 string LEOLZW PAKLeo archive data # ChArc 0 string SChF ChArc archive data # PSA 0 string PSA PSA archive data # CrossePAC 0 string DSIGDCC CrossePAC archive data # Freeze 0 string \x1f\x9f\x4a\x10\x0a Freeze archive data # KBoom 0 string ¨MP¨ KBoom archive data # NSQ, must go after CDC Codec 0 string \x76\xff NSQ archive data # DPA 0 string Dirk\ Paehl DPA archive data # BA # TODO: idarc says "bytes 0-2 == bytes 3-5" # TTComp 0 string \0\6 TTComp archive data # ESP, could this conflict with Easy Software Products' (e.g.ESP ghostscript) documentation? 0 string ESP ESP archive data # ZPack 0 string \1ZPK\1 ZPack archive data # Sky 0 string \xbc\x40 Sky archive data # UFA 0 string UFA UFA archive data # Dry 0 string =-H2O DRY archive data # FoxSQZ 0 string FOXSQZ FoxSQZ archive data # AR7 0 string ,AR7 AR7 archive data # PPMZ 0 string PPMZ PPMZ archive data # MS Compress 4 string \x88\xf0\x27 MS Compress archive data # updated by Joerg Jenderek >9 string \0 >>0 string KWAJ >>>7 string \321\003 MS Compress archive data >>>>14 ulong >0 \b, original size: %ld bytes >>>>18 ubyte >0x65 >>>>>18 string x \b, was %.8s >>>>>(10.b-4) string x \b.%.3s # MP3 (archiver, not lossy audio compression) 0 string MP3\x1a MP3-Archiver archive data # ZET 0 string OZÝ ZET archive data # TSComp 0 string \x65\x5d\x13\x8c\x08\x01\x03\x00 TSComp archive data # ARQ 0 string gW\4\1 ARQ archive data # Squash 3 string OctSqu Squash archive data # Terse 0 string \5\1\1\0 Terse archive data # PUCrunch 0 string \x01\x08\x0b\x08\xef\x00\x9e\x32\x30\x36\x31 PUCrunch archive data # UHarc 0 string UHA UHarc archive data # ABComp 0 string \2AB ABComp archive data 0 string \3AB2 ABComp archive data # CMP 0 string CO\0 CMP archive data # Splint 0 string \x93\xb9\x06 Splint archive data # InstallShield 0 string \x13\x5d\x65\x8c InstallShield Z archive Data # Gather 1 string GTH Gather archive data # BOA 0 string BOA BOA archive data # RAX 0 string ULEB\xa RAX archive data # Xtreme 0 string ULEB\0 Xtreme archive data # Pack Magic 0 string @â\1\0 Pack Magic archive data # BTS 0 belong&0xfeffffff 0x1a034465 BTS archive data # ELI 5750 0 string Ora\ ELI 5750 archive data # QFC 0 string \x1aFC\x1a QFC archive data 0 string \x1aQF\x1a QFC archive data # PRO-PACK 0 string RNC PRO-PACK archive data # 777 0 string 777 777 archive data # LZS221 0 string sTaC LZS221 archive data # HPA 0 string HPA HPA archive data # Arhangel 0 string LG Arhangel archive data # EXP1, uses bzip2 0 string 0123456789012345BZh EXP1 archive data # IMP 0 string IMP\xa IMP archive data # NRV 0 string \x00\x9E\x6E\x72\x76\xFF NRV archive data # Squish 0 string \x73\xb2\x90\xf4 Squish archive data # Par 0 string PHILIPP Par archive data 0 string PAR Par archive data # HIT 0 string UB HIT archive data # SBX 0 belong&0xfffff000 0x53423000 SBX archive data # NaShrink 0 string NSK NaShrink archive data # SAPCAR 0 string #\ CAR\ archive\ header SAPCAR archive data 0 string CAR\ 2.00RG SAPCAR archive data # Disintegrator 0 string DST Disintegrator archive data # ASD 0 string ASD ASD archive data # InstallShield CAB 0 string ISc( InstallShield CAB # TOP4 0 string T4\x1a TOP4 archive data # BatComp left out: sig looks like COM executable # so TODO: get real 4dos batcomp file and find sig # BlakHole 0 string BH\5\7 BlakHole archive data # BIX 0 string BIX0 BIX archive data # ChiefLZA 0 string ChfLZ ChiefLZA archive data # Blink 0 string Blink Blink archive data # Logitech Compress 0 string \xda\xfa Logitech Compress archive data # ARS-Sfx (FIXME: really a SFX? then goto COM/EXE) 1 string (C)\ STEPANYUK ARS-Sfx archive data # AKT/AKT32 0 string AKT32 AKT32 archive data 0 string AKT AKT archive data # NPack 0 string MSTSM NPack archive data # PFT 0 string \0\x50\0\x14 PFT archive data # SemOne 0 string SEM SemOne archive data # PPMD 0 string \x8f\xaf\xac\x84 PPMD archive data # FIZ 0 string FIZ FIZ archive data # MSXiE 0 belong&0xfffff0f0 0x4d530000 MSXiE archive data # DeepFreezer 0 belong&0xfffffff0 0x797a3030 DeepFreezer archive data # DC 0 string =2 byte x \b, version %i >3 byte x \b.%i # ZZip archiver (.zz) 0 string ZZ\ \0\0 ZZip archive data 0 string ZZ0 ZZip archive data # PAQ archiver (.paq) 0 string \xaa\x40\x5f\x77\x1f\xe5\x82\x0d PAQ archive data 0 string PAQ PAQ archive data >3 byte&0xf0 0x30 >>3 byte x (v%c) # JAR archiver (.j), this is the successor to ARJ, not Java's JAR (which is essentially ZIP) 0xe string \x1aJar\x1b JAR (ARJ Software, Inc.) archive data 0 string JARCS JAR (ARJ Software, Inc.) archive data # ARJ archiver (jason@jarthur.Claremont.EDU) 0 leshort 0xea60 ARJ archive data !:mime application/x-arj >5 byte x \b, v%d, >8 byte &0x04 multi-volume, >8 byte &0x10 slash-switched, >8 byte &0x20 backup, >34 string x original name: %s, >7 byte 0 os: MS-DOS >7 byte 1 os: PRIMOS >7 byte 2 os: Unix >7 byte 3 os: Amiga >7 byte 4 os: Macintosh >7 byte 5 os: OS/2 >7 byte 6 os: Apple ][ GS >7 byte 7 os: Atari ST >7 byte 8 os: NeXT >7 byte 9 os: VAX/VMS >3 byte >0 %d] # [JW] idarc says this is also possible 2 leshort 0xea60 ARJ archive data # HA archiver (Greg Roelofs, newt@uchicago.edu) # This is a really bad format. A file containing HAWAII will match this... #0 string HA HA archive data, #>2 leshort =1 1 file, #>2 leshort >1 %u files, #>4 byte&0x0f =0 first is type CPY #>4 byte&0x0f =1 first is type ASC #>4 byte&0x0f =2 first is type HSC #>4 byte&0x0f =0x0e first is type DIR #>4 byte&0x0f =0x0f first is type SPECIAL # suggestion: at least identify small archives (<1024 files) 0 belong&0xffff00fc 0x48410000 HA archive data >2 leshort =1 1 file, >2 leshort >1 %u files, >4 byte&0x0f =0 first is type CPY >4 byte&0x0f =1 first is type ASC >4 byte&0x0f =2 first is type HSC >4 byte&0x0f =0x0e first is type DIR >4 byte&0x0f =0x0f first is type SPECIAL # HPACK archiver (Peter Gutmann, pgut1@cs.aukuni.ac.nz) 0 string HPAK HPACK archive data # JAM Archive volume format, by Dmitry.Kohmanyuk@UA.net 0 string \351,\001JAM\ JAM archive, >7 string >\0 version %.4s >0x26 byte =0x27 - >>0x2b string >\0 label %.11s, >>0x27 lelong x serial %08x, >>0x36 string >\0 fstype %.8s # LHARC/LHA archiver (Greg Roelofs, newt@uchicago.edu) 2 string -lh0- LHarc 1.x/ARX archive data [lh0] !:mime application/x-lharc 2 string -lh1- LHarc 1.x/ARX archive data [lh1] !:mime application/x-lharc 2 string -lz4- LHarc 1.x archive data [lz4] !:mime application/x-lharc 2 string -lz5- LHarc 1.x archive data [lz5] !:mime application/x-lharc # [never seen any but the last; -lh4- reported in comp.compression:] 2 string -lzs- LHa/LZS archive data [lzs] !:mime application/x-lha 2 string -lh\40- LHa 2.x? archive data [lh ] !:mime application/x-lha 2 string -lhd- LHa 2.x? archive data [lhd] !:mime application/x-lha 2 string -lh2- LHa 2.x? archive data [lh2] !:mime application/x-lha 2 string -lh3- LHa 2.x? archive data [lh3] !:mime application/x-lha 2 string -lh4- LHa (2.x) archive data [lh4] !:mime application/x-lha 2 string -lh5- LHa (2.x) archive data [lh5] !:mime application/x-lha 2 string -lh6- LHa (2.x) archive data [lh6] !:mime application/x-lha 2 string -lh7- LHa (2.x)/LHark archive data [lh7] !:mime application/x-lha >20 byte x - header level %d # taken from idarc [JW] 2 string -lZ PUT archive data 2 string -lz LZS archive data 2 string -sw1- Swag archive data # RAR archiver (Greg Roelofs, newt@uchicago.edu) 0 string Rar! RAR archive data, !:mime application/x-rar >44 byte x v%0x, >10 byte >0 flags: >>10 byte &0x01 Archive volume, >>10 byte &0x02 Commented, >>10 byte &0x04 Locked, >>10 byte &0x08 Solid, >>10 byte &0x20 Authenticated, >35 byte 0 os: MS-DOS >35 byte 1 os: OS/2 >35 byte 2 os: Win32 >35 byte 3 os: Unix # some old version? idarc says: 0 string RE\x7e\x5e RAR archive data # SQUISH archiver (Greg Roelofs, newt@uchicago.edu) 0 string SQSH squished archive data (Acorn RISCOS) # UC2 archiver (Greg Roelofs, newt@uchicago.edu) # [JW] see exe section for self-extracting version 0 string UC2\x1a UC2 archive data # PKZIP multi-volume archive 0 string PK\x07\x08PK\x03\x04 Zip multi-volume archive data, at least PKZIP v2.50 to extract !:mime application/zip # Zip archives (Greg Roelofs, c/o zip-bugs@wkuvx1.wku.edu) 0 string PK\003\004 # Specialised zip formats which start with a member named 'mimetype' # (stored uncompressed, with no 'extra field') containing the file's MIME type. # Check for have 8-byte name, 0-byte extra field, name "mimetype", and # contents starting with "application/": >26 string \x8\0\0\0mimetypeapplication/ # KOffice / OpenOffice & StarOffice / OpenDocument formats # From: Abel Cheung # KOffice (1.2 or above) formats # (mimetype contains "application/vnd.kde.") >>50 string vnd.kde. KOffice (>=1.2) >>>58 string karbon Karbon document >>>58 string kchart KChart document >>>58 string kformula KFormula document >>>58 string kivio Kivio document >>>58 string kontour Kontour document >>>58 string kpresenter KPresenter document >>>58 string kspread KSpread document >>>58 string kword KWord document # OpenOffice formats (for OpenOffice 1.x / StarOffice 6/7) # (mimetype contains "application/vnd.sun.xml.") >>50 string vnd.sun.xml. OpenOffice.org 1.x >>>62 string writer Writer >>>>68 byte !0x2e document >>>>68 string .template template >>>>68 string .global global document >>>62 string calc Calc >>>>66 byte !0x2e spreadsheet >>>>66 string .template template >>>62 string draw Draw >>>>66 byte !0x2e document >>>>66 string .template template >>>62 string impress Impress >>>>69 byte !0x2e presentation >>>>69 string .template template >>>62 string math Math document >>>62 string base Database file # OpenDocument formats (for OpenOffice 2.x / StarOffice >= 8) # http://lists.oasis-open.org/archives/office/200505/msg00006.html # (mimetype contains "application/vnd.oasis.opendocument.") >>50 string vnd.oasis.opendocument. OpenDocument >>>73 string text >>>>77 byte !0x2d Text !:mime application/vnd.oasis.opendocument.text >>>>77 string -template Text Template !:mime application/vnd.oasis.opendocument.text-template >>>>77 string -web HTML Document Template !:mime application/vnd.oasis.opendocument.text-web >>>>77 string -master Master Document !:mime application/vnd.oasis.opendocument.text-master >>>73 string graphics >>>>81 byte !0x2d Drawing !:mime application/vnd.oasis.opendocument.graphics >>>>81 string -template Template !:mime application/vnd.oasis.opendocument.graphics-template >>>73 string presentation >>>>85 byte !0x2d Presentation !:mime application/vnd.oasis.opendocument.presentation >>>>85 string -template Template !:mime application/vnd.oasis.opendocument.presentation-template >>>73 string spreadsheet >>>>84 byte !0x2d Spreadsheet !:mime application/vnd.oasis.opendocument.spreadsheet >>>>84 string -template Template !:mime application/vnd.oasis.opendocument.spreadsheet-template >>>73 string chart >>>>78 byte !0x2d Chart !:mime application/vnd.oasis.opendocument.chart >>>>78 string -template Template !:mime application/vnd.oasis.opendocument.chart-template >>>73 string formula >>>>80 byte !0x2d Formula !:mime application/vnd.oasis.opendocument.formula >>>>80 string -template Template !:mime application/vnd.oasis.opendocument.formula-template >>>73 string database Database !:mime application/vnd.oasis.opendocument.database >>>73 string image >>>>78 byte !0x2d Image !:mime application/vnd.oasis.opendocument.image >>>>78 string -template Template !:mime application/vnd.oasis.opendocument.image-template # EPUB (OEBPS) books using OCF (OEBPS Container Format) # From: Adam Buchbinder # http://www.idpf.org/ocf/ocf1.0/download/ocf10.htm, section 4. # (mimetype contains "application/epub+zip") >>50 string epub+zip EPUB ebook data !:mime application/epub+zip # Catch other ZIP-with-mimetype formats # In a ZIP file, the bytes immediately after a member's contents are # always "PK". The 2 regex rules here print the "mimetype" member's # contents up to the first 'P'. Luckily, most MIME types don't contain # any capital 'P's. This is a kludge. # (mimetype contains "application/") >>50 string !epub+zip >>>50 string !vnd.oasis.opendocument. >>>>50 string !vnd.sun.xml. >>>>>50 string !vnd.kde. >>>>>>38 regex [!-OQ-~]+ Zip data (MIME type "%s"?) !:mime application/zip # (mimetype contents other than "application/*") >26 string \x8\0\0\0mimetype >>38 string !application/ >>>38 regex [!-OQ-~]+ Zip data (MIME type "%s"?) !:mime application/zip # Generic zip archives (Greg Roelofs, c/o zip-bugs@wkuvx1.wku.edu) # Next line excludes specialized formats: >26 string !\x8\0\0\0mimetype Zip archive data !:mime application/zip >>4 byte 0x09 \b, at least v0.9 to extract >>4 byte 0x0a \b, at least v1.0 to extract >>4 byte 0x0b \b, at least v1.1 to extract >>4 byte 0x14 \b, at least v2.0 to extract >>4 byte 0x2d \b, at least v3.0 to extract >>0x161 string WINZIP \b, WinZIP self-extracting # StarView Metafile # From Pierre Ducroquet 0 string VCLMTF StarView MetaFile >6 beshort x \b, version %d >8 belong x \b, size %d # Zoo archiver 20 lelong 0xfdc4a7dc Zoo archive data !:mime application/x-zoo >4 byte >48 \b, v%c. >>6 byte >47 \b%c >>>7 byte >47 \b%c >32 byte >0 \b, modify: v%d >>33 byte x \b.%d+ >42 lelong 0xfdc4a7dc \b, >>70 byte >0 extract: v%d >>>71 byte x \b.%d+ # Shell archives 10 string #\ This\ is\ a\ shell\ archive shell archive text !:mime application/octet-stream # # LBR. NB: May conflict with the questionable # "binary Computer Graphics Metafile" format. # 0 string \0\ \ \ \ \ \ \ \ \ \ \ \0\0 LBR archive data # # PMA (CP/M derivative of LHA) # 2 string -pm0- PMarc archive data [pm0] 2 string -pm1- PMarc archive data [pm1] 2 string -pm2- PMarc archive data [pm2] 2 string -pms- PMarc SFX archive (CP/M, DOS) 5 string -pc1- PopCom compressed executable (CP/M) # From Rafael Laboissiere # The Project Revision Control System (see # http://prcs.sourceforge.net) generates a packaged project # file which is recognized by the following entry: 0 leshort 0xeb81 PRCS packaged project # Microsoft cabinets # by David Necas (Yeti) #0 string MSCF\0\0\0\0 Microsoft cabinet file data, #>25 byte x v%d #>24 byte x \b.%d # MPi: All CABs have version 1.3, so this is pointless. # Better magic in debian-additions. # GTKtalog catalogs # by David Necas (Yeti) 4 string gtktalog\ GTKtalog catalog data, >13 string 3 version 3 >>14 beshort 0x677a (gzipped) >>14 beshort !0x677a (not gzipped) >13 string >3 version %s ############################################################################ # Parity archive reconstruction file, the 'par' file format now used on Usenet. 0 string PAR\0 PARity archive data >48 leshort =0 - Index file >48 leshort >0 - file number %d # Felix von Leitner 0 string d8:announce BitTorrent file !:mime application/x-bittorrent # Atari MSA archive - Teemu Hukkanen 0 beshort 0x0e0f Atari MSA archive data >2 beshort x \b, %d sectors per track >4 beshort 0 \b, 1 sided >4 beshort 1 \b, 2 sided >6 beshort x \b, starting track: %d >8 beshort x \b, ending track: %d # Alternate ZIP string (amc@arwen.cs.berkeley.edu) 0 string PK00PK\003\004 Zip archive data # ACE archive (from http://www.wotsit.org/download.asp?f=ace) # by Stefan `Sec` Zehl 7 string **ACE** ACE archive data >15 byte >0 version %d >16 byte =0x00 \b, from MS-DOS >16 byte =0x01 \b, from OS/2 >16 byte =0x02 \b, from Win/32 >16 byte =0x03 \b, from Unix >16 byte =0x04 \b, from MacOS >16 byte =0x05 \b, from WinNT >16 byte =0x06 \b, from Primos >16 byte =0x07 \b, from AppleGS >16 byte =0x08 \b, from Atari >16 byte =0x09 \b, from Vax/VMS >16 byte =0x0A \b, from Amiga >16 byte =0x0B \b, from Next >14 byte x \b, version %d to extract >5 leshort &0x0080 \b, multiple volumes, >>17 byte x \b (part %d), >5 leshort &0x0002 \b, contains comment >5 leshort &0x0200 \b, sfx >5 leshort &0x0400 \b, small dictionary >5 leshort &0x0800 \b, multi-volume >5 leshort &0x1000 \b, contains AV-String >>30 string \x16*UNREGISTERED\x20VERSION* (unregistered) >5 leshort &0x2000 \b, with recovery record >5 leshort &0x4000 \b, locked >5 leshort &0x8000 \b, solid # Date in MS-DOS format (whatever that is) #>18 lelong x Created on # sfArk : compression program for Soundfonts (sf2) by Dirk Jagdmann # 0x1A string sfArk sfArk compressed Soundfont >0x15 string 2 >>0x1 string >\0 Version %s >>0x2A string >\0 : %s # DR-DOS 7.03 Packed File *.??_ 0 string Packed\ File\ Personal NetWare Packed File >12 string x \b, was "%.12s" # EET archive # From: Tilman Sauerbeck 0 belong 0x1ee7ff00 EET archive !:mime application/x-eet # rzip archives 0 string RZIP rzip compressed data >4 byte x - version %d >5 byte x \b.%d >6 belong x (%d bytes) # From: "Robert Dale" 0 belong 123 dar archive, >4 belong x label "%.8x >>8 belong x %.8x >>>12 beshort x %.4x" >14 byte 0x54 end slice >14 beshort 0x4e4e multi-part >14 beshort 0x4e53 multi-part, with -S # Symbian installation files # http://www.thouky.co.uk/software/psifs/sis.html # http://developer.symbian.com/main/downloads/papers/SymbianOSv91/softwareinstallsis.pdf 8 lelong 0x10000419 Symbian installation file !:mime application/vnd.symbian.install >4 lelong 0x1000006D (EPOC release 3/4/5) >4 lelong 0x10003A12 (EPOC release 6) 0 lelong 0x10201A7A Symbian installation file (Symbian OS 9.x) !:mime x-epoc/x-sisx-app # From "Nelson A. de Oliveira" 0 string MPQ\032 MoPaQ (MPQ) archive # From: Dirk Jagdmann # xar archive format: http://code.google.com/p/xar/ 0 string xar! xar archive >6 beshort x - version %ld # From: "Nelson A. de Oliveira" # .kgb 0 string KGB_arch KGB Archiver file >10 string x with compression level %.1s # xar (eXtensible ARchiver) archive # From: "David Remahl" 0 string xar! xar archive #>4 beshort x header size %d >6 beshort x version %d, #>8 quad x compressed TOC: %d, #>16 quad x uncompressed TOC: %d, >24 belong 0 no checksum >24 belong 1 SHA-1 checksum >24 belong 2 MD5 checksum # Type: Parity Archive # From: Daniel van Eeden 0 string PAR2 Parity Archive Volume Set # Bacula volume format. (Volumes always start with a block header.) # URL: http://bacula.org/3.0.x-manuals/en/developers/developers/Block_Header.html # From: Adam Buchbinder 12 string BB02 Bacula volume >20 bedate x \b, started %s # ePub is XHTML + XML inside a ZIP archive. The first member of the # archive must be an uncompressed file called 'mimetype' with contents # 'application/epub+zip' # start by checking that this is a ZIP archive, then check for the # proper mimetype file # From: Ralf Brown 0 string PK\003\004 >0x1E string mimetypeapplication/epub+zip EPUB document !:mime application/epub+zip # From: "Michał Górny" # ZPAQ: http://mattmahoney.net/dc/zpaq.html 0 string zPQ ZPAQ stream >3 byte x \b, level %d # BBeB ebook, unencrypted (LRF format) # URL: http://www.sven.de/librie/Librie/LrfFormat # From: Adam Buchbinder 0 string L\0R\0F\0\0\0 BBeB ebook data, unencrypted >8 beshort x \b, version %d >36 byte 1 \b, front-to-back >36 byte 16 \b, back-to-front >42 beshort x \b, (%dx, >44 beshort x %d) #------------------------------------------------------------------------------ # $File: assembler,v 1.1 2011/12/08 12:12:46 rrt Exp $ # make: file(1) magic for assembler source # 0 regex \^\.asciiz\? assembler source text !:mime text/x-asm 0 regex \^\.byte assembler source text !:mime text/x-asm 0 regex \^\.even assembler source text !:mime text/x-asm 0 regex \^\.globl assembler source text !:mime text/x-asm 0 regex \^\.text assembler source text !:mime text/x-asm #------------------------------------------------------------------------------ # $File: asterix,v 1.5 2009/09/19 16:28:08 christos Exp $ # asterix: file(1) magic for Aster*x; SunOS 5.5.1 gave the 4-character # strings as "long" - we assume they're just strings: # From: guy@netapp.com (Guy Harris) # 0 string *STA Aster*x >7 string WORD Words Document >7 string GRAP Graphic >7 string SPRE Spreadsheet >7 string MACR Macro 0 string 2278 Aster*x Version 2 >29 byte 0x36 Words Document >29 byte 0x35 Graphic >29 byte 0x32 Spreadsheet >29 byte 0x38 Macro #------------------------------------------------------------------------------ # $File: att3b,v 1.8 2009/09/19 16:28:08 christos Exp $ # att3b: file(1) magic for AT&T 3B machines # # The `versions' should be un-commented if they work for you. # (Was the problem just one of endianness?) # # 3B20 # # The 3B20 conflicts with SCCS. #0 beshort 0550 3b20 COFF executable #>12 belong >0 not stripped #>22 beshort >0 - version %ld #0 beshort 0551 3b20 COFF executable (TV) #>12 belong >0 not stripped #>22 beshort >0 - version %ld # # WE32K # 0 beshort 0560 WE32000 COFF >18 beshort ^00000020 object >18 beshort &00000020 executable >12 belong >0 not stripped >18 beshort ^00010000 N/A on 3b2/300 w/paging >18 beshort &00020000 32100 required >18 beshort &00040000 and MAU hardware required >20 beshort 0407 (impure) >20 beshort 0410 (pure) >20 beshort 0413 (demand paged) >20 beshort 0443 (target shared library) >22 beshort >0 - version %ld 0 beshort 0561 WE32000 COFF executable (TV) >12 belong >0 not stripped #>18 beshort &00020000 - 32100 required #>18 beshort &00040000 and MAU hardware required #>22 beshort >0 - version %ld # # core file for 3b2 0 string \000\004\036\212\200 3b2 core file >364 string >\0 of '%s' #------------------------------------------------------------------------------ # $File: audio,v 1.64 2012/02/20 16:37:34 christos Exp $ # audio: file(1) magic for sound formats (see also "iff") # # Jan Nicolai Langfeldt (janl@ifi.uio.no), Dan Quinlan (quinlan@yggdrasil.com), # and others # # Sun/NeXT audio data 0 string .snd Sun/NeXT audio data: >12 belong 1 8-bit ISDN mu-law, !:mime audio/basic >12 belong 2 8-bit linear PCM [REF-PCM], !:mime audio/basic >12 belong 3 16-bit linear PCM, !:mime audio/basic >12 belong 4 24-bit linear PCM, !:mime audio/basic >12 belong 5 32-bit linear PCM, !:mime audio/basic >12 belong 6 32-bit IEEE floating point, !:mime audio/basic >12 belong 7 64-bit IEEE floating point, !:mime audio/basic >12 belong 8 Fragmented sample data, >12 belong 10 DSP program, >12 belong 11 8-bit fixed point, >12 belong 12 16-bit fixed point, >12 belong 13 24-bit fixed point, >12 belong 14 32-bit fixed point, >12 belong 18 16-bit linear with emphasis, >12 belong 19 16-bit linear compressed, >12 belong 20 16-bit linear with emphasis and compression, >12 belong 21 Music kit DSP commands, >12 belong 23 8-bit ISDN mu-law compressed (CCITT G.721 ADPCM voice enc.), !:mime audio/x-adpcm >12 belong 24 compressed (8-bit CCITT G.722 ADPCM) >12 belong 25 compressed (3-bit CCITT G.723.3 ADPCM), >12 belong 26 compressed (5-bit CCITT G.723.5 ADPCM), >12 belong 27 8-bit A-law (CCITT G.711), >20 belong 1 mono, >20 belong 2 stereo, >20 belong 4 quad, >16 belong >0 %d Hz # DEC systems (e.g. DECstation 5000) use a variant of the Sun/NeXT format # that uses little-endian encoding and has a different magic number 0 lelong 0x0064732E DEC audio data: >12 lelong 1 8-bit ISDN mu-law, !:mime audio/x-dec-basic >12 lelong 2 8-bit linear PCM [REF-PCM], !:mime audio/x-dec-basic >12 lelong 3 16-bit linear PCM, !:mime audio/x-dec-basic >12 lelong 4 24-bit linear PCM, !:mime audio/x-dec-basic >12 lelong 5 32-bit linear PCM, !:mime audio/x-dec-basic >12 lelong 6 32-bit IEEE floating point, !:mime audio/x-dec-basic >12 lelong 7 64-bit IEEE floating point, !:mime audio/x-dec-basic >12 belong 8 Fragmented sample data, >12 belong 10 DSP program, >12 belong 11 8-bit fixed point, >12 belong 12 16-bit fixed point, >12 belong 13 24-bit fixed point, >12 belong 14 32-bit fixed point, >12 belong 18 16-bit linear with emphasis, >12 belong 19 16-bit linear compressed, >12 belong 20 16-bit linear with emphasis and compression, >12 belong 21 Music kit DSP commands, >12 lelong 23 8-bit ISDN mu-law compressed (CCITT G.721 ADPCM voice enc.), !:mime audio/x-dec-basic >12 belong 24 compressed (8-bit CCITT G.722 ADPCM) >12 belong 25 compressed (3-bit CCITT G.723.3 ADPCM), >12 belong 26 compressed (5-bit CCITT G.723.5 ADPCM), >12 belong 27 8-bit A-law (CCITT G.711), >20 lelong 1 mono, >20 lelong 2 stereo, >20 lelong 4 quad, >16 lelong >0 %d Hz # Creative Labs AUDIO stuff 0 string MThd Standard MIDI data !:mime audio/midi >8 beshort x (format %d) >10 beshort x using %d track >10 beshort >1 \bs >12 beshort&0x7fff x at 1/%d >12 beshort&0x8000 >0 SMPTE 0 string CTMF Creative Music (CMF) data !:mime audio/x-unknown 0 string SBI SoundBlaster instrument data !:mime audio/x-unknown 0 string Creative\ Voice\ File Creative Labs voice data !:mime audio/x-unknown # is this next line right? it came this way... >19 byte 0x1A >23 byte >0 - version %d >22 byte >0 \b.%d # first entry is also the string "NTRK" 0 belong 0x4e54524b MultiTrack sound data >4 belong x - version %ld # Extended MOD format (*.emd) (Greg Roelofs, newt@uchicago.edu); NOT TESTED # [based on posting 940824 by "Dirk/Elastik", husberg@lehtori.cc.tut.fi] 0 string EMOD Extended MOD sound data, >4 byte&0xf0 x version %d >4 byte&0x0f x \b.%d, >45 byte x %d instruments >83 byte 0 (module) >83 byte 1 (song) # Real Audio (Magic .ra\0375) 0 belong 0x2e7261fd RealAudio sound file !:mime audio/x-pn-realaudio 0 string .RMF\0\0\0 RealMedia file !:mime application/vnd.rn-realmedia #video/x-pn-realvideo #video/vnd.rn-realvideo #application/vnd.rn-realmedia # sigh, there are many mimes for that but the above are the most common. # MTM/669/FAR/S3M/ULT/XM format checking [Aaron Eppert, aeppert@dialin.ind.net] # Oct 31, 1995 # fixed by 2003-06-24 # Too short... #0 string MTM MultiTracker Module sound file #0 string if Composer 669 Module sound data #0 string JN Composer 669 Module sound data (extended format) 0 string MAS_U ULT(imate) Module sound data #0 string FAR Module sound data #>4 string >\15 Title: "%s" 0x2c string SCRM ScreamTracker III Module sound data >0 string >\0 Title: "%s" # Gravis UltraSound patches # From 0 string GF1PATCH110\0ID#000002\0 GUS patch 0 string GF1PATCH100\0ID#000002\0 Old GUS patch # mime types according to http://www.geocities.com/nevilo/mod.htm: # audio/it .it # audio/x-zipped-it .itz # audio/xm fasttracker modules # audio/x-s3m screamtracker modules # audio/s3m screamtracker modules # audio/x-zipped-mod mdz # audio/mod mod # audio/x-mod All modules (mod, s3m, 669, mtm, med, xm, it, mdz, stm, itz, xmz, s3z) # # Taken from loader code from mikmod version 2.14 # by Steve McIntyre (stevem@chiark.greenend.org.uk) # added title printing on 2003-06-24 0 string MAS_UTrack_V00 >14 string >/0 ultratracker V1.%.1s module sound data !:mime audio/x-mod #audio/x-tracker-module 0 string UN05 MikMod UNI format module sound data 0 string Extended\ Module: Fasttracker II module sound data !:mime audio/x-mod #audio/x-tracker-module >17 string >\0 Title: "%s" 21 string/c =!SCREAM! Screamtracker 2 module sound data !:mime audio/x-mod #audio/x-screamtracker-module 21 string BMOD2STM Screamtracker 2 module sound data !:mime audio/x-mod #audio/x-screamtracker-module 1080 string M.K. 4-channel Protracker module sound data !:mime audio/x-mod #audio/x-protracker-module >0 string >\0 Title: "%s" 1080 string M!K! 4-channel Protracker module sound data !:mime audio/x-mod #audio/x-protracker-module >0 string >\0 Title: "%s" 1080 string FLT4 4-channel Startracker module sound data !:mime audio/x-mod #audio/x-startracker-module >0 string >\0 Title: "%s" 1080 string FLT8 8-channel Startracker module sound data !:mime audio/x-mod #audio/x-startracker-module >0 string >\0 Title: "%s" 1080 string 4CHN 4-channel Fasttracker module sound data !:mime audio/x-mod #audio/x-fasttracker-module >0 string >\0 Title: "%s" 1080 string 6CHN 6-channel Fasttracker module sound data !:mime audio/x-mod #audio/x-fasttracker-module >0 string >\0 Title: "%s" 1080 string 8CHN 8-channel Fasttracker module sound data !:mime audio/x-mod #audio/x-fasttracker-module >0 string >\0 Title: "%s" 1080 string CD81 8-channel Octalyser module sound data !:mime audio/x-mod #audio/x-octalysertracker-module >0 string >\0 Title: "%s" 1080 string OKTA 8-channel Octalyzer module sound data !:mime audio/x-mod #audio/x-octalysertracker-module >0 string >\0 Title: "%s" # Not good enough. #1082 string CH #>1080 string >/0 %.2s-channel Fasttracker "oktalyzer" module sound data 1080 string 16CN 16-channel Taketracker module sound data !:mime audio/x-mod #audio/x-taketracker-module >0 string >\0 Title: "%s" 1080 string 32CN 32-channel Taketracker module sound data !:mime audio/x-mod #audio/x-taketracker-module >0 string >\0 Title: "%s" # TOC sound files -Trevor Johnson # 0 string TOC TOC sound file # sidfiles # added name,author,(c) and new RSID type by 2003-06-24 0 string SIDPLAY\ INFOFILE Sidplay info file 0 string PSID PlaySID v2.2+ (AMIGA) sidtune >4 beshort >0 w/ header v%d, >14 beshort =1 single song, >14 beshort >1 %d songs, >16 beshort >0 default song: %d >0x16 string >\0 name: "%s" >0x36 string >\0 author: "%s" >0x56 string >\0 copyright: "%s" 0 string RSID RSID sidtune PlaySID compatible >4 beshort >0 w/ header v%d, >14 beshort =1 single song, >14 beshort >1 %d songs, >16 beshort >0 default song: %d >0x16 string >\0 name: "%s" >0x36 string >\0 author: "%s" >0x56 string >\0 copyright: "%s" # IRCAM sound files - Michael Pruett # http://www-mmsp.ece.mcgill.ca/documents/AudioFormats/IRCAM/IRCAM.html 0 belong 0x64a30100 IRCAM file (VAX little-endian) 0 belong 0x0001a364 IRCAM file (VAX big-endian) 0 belong 0x64a30200 IRCAM file (Sun big-endian) 0 belong 0x0002a364 IRCAM file (Sun little-endian) 0 belong 0x64a30300 IRCAM file (MIPS little-endian) 0 belong 0x0003a364 IRCAM file (MIPS big-endian) 0 belong 0x64a30400 IRCAM file (NeXT big-endian) 0 belong 0x64a30400 IRCAM file (NeXT big-endian) 0 belong 0x0004a364 IRCAM file (NeXT little-endian) # NIST SPHERE 0 string NIST_1A\n\ \ \ 1024\n NIST SPHERE file # Sample Vision 0 string SOUND\ SAMPLE\ DATA\ Sample Vision file # Audio Visual Research 0 string 2BIT Audio Visual Research file, >12 beshort =0 mono, >12 beshort =-1 stereo, >14 beshort x %d bits >16 beshort =0 unsigned, >16 beshort =-1 signed, >22 belong&0x00ffffff x %d Hz, >18 beshort =0 no loop, >18 beshort =-1 loop, >21 ubyte <128 note %d, >22 byte =0 replay 5.485 KHz >22 byte =1 replay 8.084 KHz >22 byte =2 replay 10.971 KHz >22 byte =3 replay 16.168 KHz >22 byte =4 replay 21.942 KHz >22 byte =5 replay 32.336 KHz >22 byte =6 replay 43.885 KHz >22 byte =7 replay 47.261 KHz # SGI SoundTrack 0 string _SGI_SoundTrack SGI SoundTrack project file # ID3 version 2 tags 0 string ID3 Audio file with ID3 version 2 >3 byte x \b.%d >4 byte x \b.%d >>5 byte &0x80 \b, unsynchronized frames >>5 byte &0x40 \b, extended header >>5 byte &0x20 \b, experimental >>5 byte &0x10 \b, footer present >(6.I) indirect x \b, contains: # NSF (NES sound file) magic 0 string NESM\x1a NES Sound File >14 string >\0 ("%s" by >46 string >\0 %s, copyright >78 string >\0 %s), >5 byte x version %d, >6 byte x %d tracks, >122 byte&0x2 =1 dual PAL/NTSC >122 byte&0x1 =1 PAL >122 byte&0x1 =0 NTSC # Type: SNES SPC700 sound files # From: Josh Triplett 0 string SNES-SPC700\ Sound\ File\ Data\ v SNES SPC700 sound file >&0 string 0.30 \b, version %s >>0x23 byte 0x1B \b, without ID666 tag >>0x23 byte 0x1A \b, with ID666 tag >>>0x2E string >\0 \b, song "%.32s" >>>0x4E string >\0 \b, game "%.32s" # Impulse tracker module (audio/x-it) 0 string IMPM Impulse Tracker module sound data - !:mime audio/x-mod >4 string >\0 "%s" >40 leshort !0 compatible w/ITv%x >42 leshort !0 created w/ITv%x # Imago Orpheus module (audio/x-imf) 60 string IM10 Imago Orpheus module sound data - >0 string >\0 "%s" # From # These are the /etc/magic entries to decode modules, instruments, and # samples in Impulse Tracker's native format. 0 string IMPS Impulse Tracker Sample >18 byte &2 16 bit >18 byte ^2 8 bit >18 byte &4 stereo >18 byte ^4 mono 0 string IMPI Impulse Tracker Instrument >28 leshort !0 ITv%x >30 byte !0 %d samples # Yamaha TX Wave: file(1) magic for Yamaha TX Wave audio files # From 0 string LM8953 Yamaha TX Wave >22 byte 0x49 looped >22 byte 0xC9 non-looped >23 byte 1 33kHz >23 byte 2 50kHz >23 byte 3 16kHz # scream tracker: file(1) magic for Scream Tracker sample files # # From 76 string SCRS Scream Tracker Sample >0 byte 1 sample >0 byte 2 adlib melody >0 byte >2 adlib drum >31 byte &2 stereo >31 byte ^2 mono >31 byte &4 16bit little endian >31 byte ^4 8bit >30 byte 0 unpacked >30 byte 1 packed # audio # From: Cory Dikkers 0 string MMD0 MED music file, version 0 0 string MMD1 OctaMED Pro music file, version 1 0 string MMD3 OctaMED Soundstudio music file, version 3 0 string OctaMEDCmpr OctaMED Soundstudio compressed file 0 string MED MED_Song 0 string SymM Symphonie SymMOD music file # 0 string THX AHX version >3 byte =0 1 module data >3 byte =1 2 module data # 0 string OKTASONG Oktalyzer module data # 0 string DIGI\ Booster\ module\0 %s >20 byte >0 %c >>21 byte >0 \b%c >>>22 byte >0 \b%c >>>>23 byte >0 \b%c >610 string >\0 \b, "%s" # 0 string DBM0 DIGI Booster Pro Module >4 byte >0 V%X. >>5 byte x \b%02X >16 string >\0 \b, "%s" # 0 string FTMN FaceTheMusic module >16 string >\0d \b, "%s" # From: 2003-06-24 0 string AMShdr\32 Velvet Studio AMS Module v2.2 0 string Extreme Extreme Tracker AMS Module v1.3 0 string DDMF Xtracker DMF Module >4 byte x v%i >0xD string >\0 Title: "%s" >0x2B string >\0 Composer: "%s" 0 string DSM\32 Dynamic Studio Module DSM 0 string SONG DigiTrekker DTM Module 0 string DMDL DigiTrakker MDL Module 0 string PSM\32 Protracker Studio PSM Module 44 string PTMF Poly Tracker PTM Module >0 string >\32 Title: "%s" 0 string MT20 MadTracker 2.0 Module MT2 0 string RAD\40by\40REALiTY!! RAD Adlib Tracker Module RAD 0 string RTMM RTM Module 0x426 string MaDoKaN96 XMS Adlib Module >0 string >\0 Composer: "%s" 0 string AMF AMF Module >4 string >\0 Title: "%s" 0 string MODINFO1 Open Cubic Player Module Inforation MDZ 0 string Extended\40Instrument: Fast Tracker II Instrument # From: Takeshi Hamasaki # NOA Nancy Codec file 0 string \210NOA\015\012\032 NOA Nancy Codec Movie file # Yamaha SMAF format 0 string MMMD Yamaha SMAF file # Sharp Jisaku Melody format for PDC 0 string \001Sharp\040JisakuMelody SHARP Cell-Phone ringing Melody >20 string Ver01.00 Ver. 1.00 >>32 byte x , %d tracks # Free lossless audio codec # From: Przemyslaw Augustyniak 0 string fLaC FLAC audio bitstream data !:mime audio/x-flac >4 byte&0x7f >0 \b, unknown version >4 byte&0x7f 0 \b # some common bits/sample values >>20 beshort&0x1f0 0x030 \b, 4 bit >>20 beshort&0x1f0 0x050 \b, 6 bit >>20 beshort&0x1f0 0x070 \b, 8 bit >>20 beshort&0x1f0 0x0b0 \b, 12 bit >>20 beshort&0x1f0 0x0f0 \b, 16 bit >>20 beshort&0x1f0 0x170 \b, 24 bit >>20 byte&0xe 0x0 \b, mono >>20 byte&0xe 0x2 \b, stereo >>20 byte&0xe 0x4 \b, 3 channels >>20 byte&0xe 0x6 \b, 4 channels >>20 byte&0xe 0x8 \b, 5 channels >>20 byte&0xe 0xa \b, 6 channels >>20 byte&0xe 0xc \b, 7 channels >>20 byte&0xe 0xe \b, 8 channels # some common sample rates >>17 belong&0xfffff0 0x0ac440 \b, 44.1 kHz >>17 belong&0xfffff0 0x0bb800 \b, 48 kHz >>17 belong&0xfffff0 0x07d000 \b, 32 kHz >>17 belong&0xfffff0 0x056220 \b, 22.05 kHz >>17 belong&0xfffff0 0x05dc00 \b, 24 kHz >>17 belong&0xfffff0 0x03e800 \b, 16 kHz >>17 belong&0xfffff0 0x02b110 \b, 11.025 kHz >>17 belong&0xfffff0 0x02ee00 \b, 12 kHz >>17 belong&0xfffff0 0x01f400 \b, 8 kHz >>17 belong&0xfffff0 0x177000 \b, 96 kHz >>17 belong&0xfffff0 0x0fa000 \b, 64 kHz >>21 byte&0xf >0 \b, >4G samples >>21 byte&0xf 0 \b >>>22 belong >0 \b, %u samples >>>22 belong 0 \b, length unknown # (ISDN) VBOX voice message file (Wolfram Kleff) 0 string VBOX VBOX voice message data # ReBorn Song Files (.rbs) # David J. Singer 8 string RB40 RBS Song file >29 string ReBorn created by ReBorn >37 string Propellerhead created by ReBirth # Synthesizer Generator and Kimwitu share their file format 0 string A#S#C#S#S#L#V#3 Synthesizer Generator or Kimwitu data # Kimwitu++ uses a slightly different magic 0 string A#S#C#S#S#L#HUB Kimwitu++ data # From "Simon Hosie 0 string TFMX-SONG TFMX module sound data # Monkey's Audio compressed audio format (.ape) # From danny.milo@gmx.net (Danny Milosavljevic) # New version from Abel Cheung 0 string MAC\040 Monkey's Audio compressed format !:mime audio/x-ape >4 uleshort >0x0F8B version %d >>(0x08.l) uleshort =1000 with fast compression >>(0x08.l) uleshort =2000 with normal compression >>(0x08.l) uleshort =3000 with high compression >>(0x08.l) uleshort =4000 with extra high compression >>(0x08.l) uleshort =5000 with insane compression >>(0x08.l+18) uleshort =1 \b, mono >>(0x08.l+18) uleshort =2 \b, stereo >>(0x08.l+20) ulelong x \b, sample rate %d >4 uleshort <0x0F8C version %d >>6 uleshort =1000 with fast compression >>6 uleshort =2000 with normal compression >>6 uleshort =3000 with high compression >>6 uleshort =4000 with extra high compression >>6 uleshort =5000 with insane compression >>10 uleshort =1 \b, mono >>10 uleshort =2 \b, stereo >>12 ulelong x \b, sample rate %d # adlib sound files # From Gürkan Sengün , http://www.linuks.mine.nu 0 string RAWADATA RdosPlay RAW 1068 string RoR AMUSIC Adlib Tracker 0 string JCH EdLib 0 string mpu401tr MPU-401 Trakker 0 string SAdT Surprise! Adlib Tracker >4 byte x Version %d 0 string XAD! eXotic ADlib 0 string ofTAZ! eXtra Simple Music # Spectrum 128 tunes (.ay files). # From: Emanuel Haupt 0 string ZXAYEMUL Spectrum 128 tune 0 string \0BONK BONK, #>5 byte x version %d >14 byte x %d channel(s), >15 byte =1 lossless, >15 byte =0 lossy, >16 byte x mid-side 384 string LockStream LockStream Embedded file (mostly MP3 on old Nokia phones) # format VQF (proprietary codec for sound) # some infos on the header file available at : # http://www.twinvq.org/english/technology_format.html 0 string TWIN97012000 VQF data >27 short 0 \b, Mono >27 short 1 \b, Stereo >31 short >0 \b, %d kbit/s >35 short >0 \b, %d kHz # Nelson A. de Oliveira (naoliv@gmail.com) # .eqf 0 string Winamp\ EQ\ library\ file %s # it will match only versions like v. # Since I saw only eqf files with version v1.1 I think that it's OK >23 string x \b%.4s # .preset 0 string [Equalizer\ preset] XMMS equalizer preset # .m3u 0 search/1 #EXTM3U M3U playlist text # .pls 0 search/1 [playlist] PLS playlist text # licq.conf 1 string [licq] LICQ configuration file # Atari ST audio files by Dirk Jagdmann 0 string ICE! SNDH Atari ST music 0 string SC68\ Music-file\ /\ (c)\ (BeN)jami sc68 Atari ST music # musepak support From: "Jiri Pejchal" 0 string MP+ Musepack audio >3 byte 255 \b, SV pre8 >3 byte&0xF 0x6 \b, SV 6 >3 byte&0xF 0x8 \b, SV 8 >3 byte&0xF 0x7 \b, SV 7 >>3 byte&0xF0 0x0 \b.0 >>3 byte&0xF0 0x10 \b.1 >>3 byte&0xF0 240 \b.15 >>10 byte&0xF0 0x0 \b, no profile >>10 byte&0xF0 0x10 \b, profile 'Unstable/Experimental' >>10 byte&0xF0 0x50 \b, quality 0 >>10 byte&0xF0 0x60 \b, quality 1 >>10 byte&0xF0 0x70 \b, quality 2 (Telephone) >>10 byte&0xF0 0x80 \b, quality 3 (Thumb) >>10 byte&0xF0 0x90 \b, quality 4 (Radio) >>10 byte&0xF0 0xA0 \b, quality 5 (Standard) >>10 byte&0xF0 0xB0 \b, quality 6 (Xtreme) >>10 byte&0xF0 0xC0 \b, quality 7 (Insane) >>10 byte&0xF0 0xD0 \b, quality 8 (BrainDead) >>10 byte&0xF0 0xE0 \b, quality 9 >>10 byte&0xF0 0xF0 \b, quality 10 >>27 byte 0x0 \b, Buschmann 1.7.0-9, Klemm 0.90-1.05 >>27 byte 102 \b, Beta 1.02 >>27 byte 104 \b, Beta 1.04 >>27 byte 105 \b, Alpha 1.05 >>27 byte 106 \b, Beta 1.06 >>27 byte 110 \b, Release 1.1 >>27 byte 111 \b, Alpha 1.11 >>27 byte 112 \b, Beta 1.12 >>27 byte 113 \b, Alpha 1.13 >>27 byte 114 \b, Beta 1.14 >>27 byte 115 \b, Alpha 1.15 # IMY # from http://filext.com/detaillist.php?extdetail=IMY # http://cellphones.about.com/od/cellularfaqs/f/rf_imelody.htm # http://download.ncl.ie/doc/api/ie/ncl/media/music/IMelody.html # http://www.wx800.com/msg/download/irda/iMelody.pdf 0 string BEGIN:IMELODY iMelody Ringtone Format # From: "Mateus Caruccio" # guitar pro v3,4,5 from http://filext.com/file-extension/gp3 0 string \030FICHIER\ GUITAR\ PRO\ v3. Guitar Pro Ver. 3 Tablature # From: "Leslie P. Polzer" 60 string SONG SoundFX Module sound file # Type: Adaptive Multi-Rate Codec # URL: http://filext.com/detaillist.php?extdetail=AMR # From: Russell Coker 0 string #!AMR Adaptive Multi-Rate Codec (GSM telephony) # Type: SuperCollider 3 Synth Definition File Format # From: Mario Lang 0 string SCgf SuperCollider3 Synth Definition file, >4 belong x version %d # Type: True Audio Lossless Audio # URL: http://wiki.multimedia.cx/index.php?title=True_Audio # From: Mike Melanson 0 string TTA1 True Audio Lossless Audio # Type: WavPack Lossless Audio # URL: http://wiki.multimedia.cx/index.php?title=WavPack # From: Mike Melanson 0 string wvpk WavPack Lossless Audio #---------------------------------------------------------------- # $File: basis,v 1.4 2009/09/19 16:28:08 christos Exp $ # basis: file(1) magic for BBx/Pro5-files # Oliver Dammer 2005/11/07 # http://www.basis.com business-basic-files. # 0 string \074\074bbx\076\076 BBx >7 string \000 indexed file >7 string \001 serial file >7 string \002 keyed file >>13 short 0 (sort) >7 string \004 program >>18 byte x (LEVEL %d) >>>23 string >\000 psaved >7 string \006 mkeyed file >>13 short 0 (sort) >>8 string \000 (mkey) #------------------------------------------------------------------------------ # $File: bflt,v 1.4 2009/09/19 16:28:08 christos Exp $ # bFLT: file(1) magic for BFLT uclinux binary files # # From Philippe De Muyter # 0 string bFLT BFLT executable >4 belong x - version %ld >4 belong 4 >>36 belong&0x1 0x1 ram >>36 belong&0x2 0x2 gotpic >>36 belong&0x4 0x4 gzip >>36 belong&0x8 0x8 gzdata # Berkeley Lab Checkpoint Restart (BLCR) checkpoint context files # http://ftg.lbl.gov/checkpoint 0 string C\0\0\0R\0\0\0 BLCR >16 lelong 1 x86 >16 lelong 3 alpha >16 lelong 5 x86-64 >16 lelong 7 ARM >8 lelong x context data (little endian, version %d) # Uncomment the following only of your "file" program supports "search" #>0 search/1024 VMA\06 for kernel #>>&1 byte x %d. #>>&2 byte x %d. #>>&3 byte x %d 0 string \0\0\0C\0\0\0R BLCR >16 belong 2 SPARC >16 belong 4 ppc >16 belong 6 ppc64 >16 belong 7 ARMEB >16 belong 8 SPARC64 >8 belong x context data (big endian, version %d) # Uncomment the following only of your "file" program supports "search" #>0 search/1024 VMA\06 for kernel #>>&1 byte x %d. #>>&2 byte x \b%d. #>>&3 byte x \b%d #------------------------------------------------------------------------------ # $File: blender,v 1.5 2009/09/19 16:28:08 christos Exp $ # blender: file(1) magic for Blender 3D related files # # Native format rule v1.2. For questions use the developers list # http://lists.blender.org/mailman/listinfo/bf-committers # GLOB chunk was moved near start and provides subversion info since 2.42 0 string =BLENDER Blender3D, >7 string =_ saved as 32-bits >>8 string =v little endian >>>9 byte x with version %c. >>>10 byte x \b%c >>>11 byte x \b%c >>>0x40 string =GLOB \b. >>>>0x58 leshort x \b%.4d >>8 string =V big endian >>>9 byte x with version %c. >>>10 byte x \b%c >>>11 byte x \b%c >>>0x40 string =GLOB \b. >>>>0x58 beshort x \b%.4d >7 string =- saved as 64-bits >>8 string =v little endian >>9 byte x with version %c. >>10 byte x \b%c >>11 byte x \b%c >>0x44 string =GLOB \b. >>>0x60 leshort x \b%.4d >>8 string =V big endian >>>9 byte x with version %c. >>>10 byte x \b%c >>>11 byte x \b%c >>>0x44 string =GLOB \b. >>>>0x60 beshort x \b%.4d # Scripts that run in the embeded Python interpreter 0 string #!BPY Blender3D BPython script #------------------------------------------------------------------------------ # $File: blit,v 1.8 2009/09/19 16:28:08 christos Exp $ # blit: file(1) magic for 68K Blit stuff as seen from 680x0 machine # # Note that this 0407 conflicts with several other a.out formats... # # XXX - should this be redone with "be" and "le", so that it works on # little-endian machines as well? If so, what's the deal with # "VAX-order" and "VAX-order2"? # #0 long 0407 68K Blit (standalone) executable #0 short 0407 VAX-order2 68K Blit (standalone) executable 0 short 03401 VAX-order 68K Blit (standalone) executable 0 long 0406 68k Blit mpx/mux executable 0 short 0406 VAX-order2 68k Blit mpx/mux executable 0 short 03001 VAX-order 68k Blit mpx/mux executable # Need more values for WE32 DMD executables. # Note that 0520 is the same as COFF #0 short 0520 tty630 layers executable #------------------------------------------------------------------------------ # $File: bout,v 1.5 2009/09/19 16:28:08 christos Exp $ # i80960 b.out objects and archives # 0 long 0x10d i960 b.out relocatable object >16 long >0 not stripped # # b.out archive (hp-rt on i960) 0 string =! b.out archive >8 string __.SYMDEF random library #------------------------------------------------------------------------------ # $File: bsdi,v 1.5 2009/09/19 16:28:08 christos Exp $ # bsdi: file(1) magic for BSD/OS (from BSDI) objects # 0 lelong 0314 386 compact demand paged pure executable >16 lelong >0 not stripped >32 byte 0x6a (uses shared libs) 0 lelong 0407 386 executable >16 lelong >0 not stripped >32 byte 0x6a (uses shared libs) 0 lelong 0410 386 pure executable >16 lelong >0 not stripped >32 byte 0x6a (uses shared libs) 0 lelong 0413 386 demand paged pure executable >16 lelong >0 not stripped >32 byte 0x6a (uses shared libs) # same as in SunOS 4.x, except for static shared libraries 0 belong&077777777 0600413 sparc demand paged >0 byte &0x80 >>20 belong <4096 shared library >>20 belong =4096 dynamically linked executable >>20 belong >4096 dynamically linked executable >0 byte ^0x80 executable >16 belong >0 not stripped >36 belong 0xb4100001 (uses shared libs) 0 belong&077777777 0600410 sparc pure >0 byte &0x80 dynamically linked executable >0 byte ^0x80 executable >16 belong >0 not stripped >36 belong 0xb4100001 (uses shared libs) 0 belong&077777777 0600407 sparc >0 byte &0x80 dynamically linked executable >0 byte ^0x80 executable >16 belong >0 not stripped >36 belong 0xb4100001 (uses shared libs) # Chiasmus is a encryption standard developed by the German Federal # Office for Information Security (Bundesamt fuer Sicherheit in der # Informationstechnik). # Extension: .xia 0 string XIA1 Chiasmus encrypted data # Extension: .xis 0 string XIS Chiasmus key #------------------------------------------------------------------------------ # $File: btsnoop,v 1.5 2009/09/19 16:28:08 christos Exp $ # BTSnoop: file(1) magic for BTSnoop files # # From 0 string btsnoop\0 BTSnoop >8 belong x version %d, >12 belong 1001 Unencapsulated HCI >12 belong 1002 HCI UART (H4) >12 belong 1003 HCI BCSP >12 belong 1004 HCI Serial (H5) >>12 belong x type %d #------------------------------------------------------------------------------ # $File: c-lang,v 1.16 2011/12/09 08:02:16 rrt Exp $ # c-lang: file(1) magic for C and related languages programs # # BCPL 0 search/8192 "libhdr" BCPL source text !:mime text/x-bcpl !:strength / 2 0 search/8192 "LIBHDR" BCPL source text !:mime text/x-bcpl !:strength / 2 # C 0 regex \^#include C source text !:mime text/x-c !:strength / 2 0 regex \^char C source text !:mime text/x-c !:strength / 2 0 regex \^double C source text !:mime text/x-c !:strength / 2 0 regex \^extern C source text !:mime text/x-c !:strength / 2 0 regex \^float C source text !:mime text/x-c !:strength / 2 0 regex \^struct C source text !:mime text/x-c !:strength / 2 0 regex \^union C source text !:mime text/x-c !:strength / 2 0 search/8192 main( C source text !:mime text/x-c !:strength / 2 # C++ # The strength of these rules is increased so they beat the C rules above 0 regex \^template C++ source text !:strength + 10 !:mime text/x-c++ 0 regex \^virtual C++ source text !:strength + 10 !:mime text/x-c++ 0 regex \^class C++ source text !:strength + 10 !:mime text/x-c++ 0 regex \^public: C++ source text !:strength + 10 !:mime text/x-c++ 0 regex \^private: C++ source text !:strength + 10 !:mime text/x-c++ # From: Mikhail Teterin 0 string cscope cscope reference data >7 string x version %.2s # We skip the path here, because it is often long (so file will # truncate it) and mostly redundant. # The inverted index functionality was added some time betwen # versions 11 and 15, so look for -q if version is above 14: >7 string >14 >>10 search/100 \ -q\ with inverted index >10 search/100 \ -c\ text (non-compressed) #------------------------------------------------------------------------------ # $File: c64,v 1.5 2009/09/19 16:28:08 christos Exp $ # c64: file(1) magic for various commodore 64 related files # # From: Dirk Jagdmann 0x16500 belong 0x12014100 D64 Image 0x16500 belong 0x12014180 D71 Image 0x61800 belong 0x28034400 D81 Image 0 string C64\40CARTRIDGE CCS C64 Emultar Cartridge Image 0 belong 0x43154164 X64 Image 0 string GCR-1541 GCR Image >8 byte x version: %i >9 byte x tracks: %i 9 string PSUR ARC archive (c64) 2 string -LH1- LHA archive (c64) 0 string C64File PC64 Emulator file >8 string >\0 "%s" 0 string C64Image PC64 Freezer Image 0 beshort 0x38CD C64 PCLink Image 0 string CBM\144\0\0 Power 64 C64 Emulator Snapshot 0 belong 0xFF424CFF WRAptor packer (c64) 0 string C64S\x20tape\x20file T64 tape Image >32 leshort x Version:0x%x >36 leshort !0 Entries:%i >40 string x Name:%.24s 0 string C64\x20tape\x20image\x20file\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0 T64 tape Image >32 leshort x Version:0x%x >36 leshort !0 Entries:%i >40 string x Name:%.24s 0 string C64S\x20tape\x20image\x20file\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0 T64 tape Image >32 leshort x Version:0x%x >36 leshort !0 Entries:%i >40 string x Name:%.24s #------------------------------------------------------------------------------ # $File: cad,v 1.11 2011/12/08 12:12:46 rrt Exp $ # autocad: file(1) magic for cad files # # AutoCAD DWG versions R13/R14 (www.autodesk.com) # Written December 01, 2003 by Lester Hightower # Based on the DWG File Format Specifications at http://www.opendwg.org/ 0 string \101\103\061\060\061 AutoCAD >5 string \062\000\000\000\000 DWG ver. R13 >5 string \064\000\000\000\000 DWG ver. R14 # Microstation DGN/CIT Files (www.bentley.com) # Last updated July 29, 2005 by Lester Hightower # DGN is the default file extension of Microstation/Intergraph CAD files. # CIT is the proprietary raster format (similar to TIFF) used to attach # raster underlays to Microstation DGN (vector) drawings. # # http://www.wotsit.org/search.asp # http://filext.com/detaillist.php?extdetail=DGN # http://filext.com/detaillist.php?extdetail=CIT # # http://www.bentley.com/products/default.cfm?objectid=97F351F5-9C35-4E5E-89C2 # 3F86C928&method=display&p_objectid=97F351F5-9C35-4E5E-89C280A93F86C928 # http://www.bentley.com/products/default.cfm?objectid=A5C2FD43-3AC9-4C71-B682 # 721C479F&method=display&p_objectid=A5C2FD43-3AC9-4C71-B682C7BE721C479F 0 string \010\011\376 Microstation >3 string \002 >>30 string \026\105 DGNFile >>30 string \034\105 DGNFile >>30 string \073\107 DGNFile >>30 string \073\110 DGNFile >>30 string \106\107 DGNFile >>30 string \110\103 DGNFile >>30 string \120\104 DGNFile >>30 string \172\104 DGNFile >>30 string \172\105 DGNFile >>30 string \172\106 DGNFile >>30 string \234\106 DGNFile >>30 string \273\105 DGNFile >>30 string \306\106 DGNFile >>30 string \310\104 DGNFile >>30 string \341\104 DGNFile >>30 string \372\103 DGNFile >>30 string \372\104 DGNFile >>30 string \372\106 DGNFile >>30 string \376\103 DGNFile >4 string \030\000\000 CITFile >4 string \030\000\003 CITFile # AutoCad, from Nahuel Greco # AutoCAD DWG versions R12/R13/R14 (www.autodesk.com) 0 string AC1012 DWG AutoDesk AutoCad (release 12) 0 string AC1013 DWG AutoDesk AutoCad (release 13) 0 string AC1014 DWG AutoDesk AutoCad (release 14) # A new version of AutoCAD DWG # Sergey Zaykov (mail_of_sergey@mail.ru, sergey_zaikov@rambler.ru, # ICQ 358572321) # From various sources like: # http://autodesk.blogs.com/between_the_lines/autocad-release-history.html 0 string AC1018 DWG AutoDesk AutoCAD 2004/2005/2006 0 string AC1021 DWG AutoDesk AutoCAD 2007/2008/2009 0 string AC1024 DWG AutoDesk AutoCAD 2010/2011 # KOMPAS 2D drawing from ASCON # This is KOMPAS 2D drawing or fragment of drawing but is not detailed nor # gathered nor specification # ASCON http://ascon.net/main/ in English, # http://ascon.ru/ main site in Russian # Extension is CDW for drawing and FRW for fragment of drawing # Sergey Zaykov (mail_of_sergey@mail.ru, sergey_zaikov@rambler.ru, # ICQ 358572321, http://vkontakte.ru/id16076543) # From: # http://sd.ascon.ru/otrs/customer.pl?Action=CustomerFAQ&CategoryID=4&ItemID=292 # (in russian) and my experiments 0 string KF >2 belong 0x4E00000C Kompas drawing 12.0 SP1 >2 belong 0x4D00000C Kompas drawing 12.0 >2 belong 0x3200000B Kompas drawing 11.0 SP1 >2 belong 0x3100000B Kompas drawing 11.0 >2 belong 0x2310000A Kompas drawing 10.0 SP1 >2 belong 0x2110000A Kompas drawing 10.0 >2 belong 0x08000009 Kompas drawing 9.0 SP1 >2 belong 0x05000009 Kompas drawing 9.0 >2 belong 0x33010008 Kompas drawing 8+ >2 belong 0x1A000008 Kompas drawing 8.0 >2 belong 0x2C010107 Kompas drawing 7+ >2 belong 0x05000007 Kompas drawing 7.0 >2 belong 0x32000006 Kompas drawing 6+ >2 belong 0x09000006 Kompas drawing 6.0 >2 belong 0x5C009005 Kompas drawing 5.11R03 >2 belong 0x54009005 Kompas drawing 5.11R02 >2 belong 0x51009005 Kompas drawing 5.11R01 >2 belong 0x22009005 Kompas drawing 5.10R03 >2 belong 0x22009005 Kompas drawing 5.10R02 mar >2 belong 0x21009005 Kompas drawing 5.10R02 febr >2 belong 0x19009005 Kompas drawing 5.10R01 >2 belong 0xF4008005 Kompas drawing 5.9R01.003 >2 belong 0x1C008005 Kompas drawing 5.9R01.002 >2 belong 0x11008005 Kompas drawing 5.8R01.003 # CAD: file(1) magic for computer aided design files # Phillip Griffith # AutoCAD magic taken from the Open Design Alliance's OpenDWG specifications. # 0 belong 0x08051700 Bentley/Intergraph MicroStation DGN cell library 0 belong 0x0809fe02 Bentley/Intergraph MicroStation DGN vector CAD 0 belong 0xc809fe02 Bentley/Intergraph MicroStation DGN vector CAD 0 beshort 0x0809 Bentley/Intergraph MicroStation >0x02 byte 0xfe >>0x04 beshort 0x1800 CIT raster CAD 0 string AC1012 AutoDesk AutoCAD R13 0 string AC1014 AutoDesk AutoCAD R14 0 string AC1015 AutoDesk AutoCAD R2000 # 3DS (3d Studio files) Conflicts with diff output 0x3d '=' #16 beshort 0x3d3d image/x-3ds #------------------------------------------------------------------------------ # $File: cafebabe,v 1.8 2009/09/19 16:28:08 christos Exp $ # Cafe Babes unite! # # Since Java bytecode and Mach-O fat-files have the same magic number, the test # must be performed in the same "magic" sequence to get both right. The long # at offset 4 in a mach-O fat file tells the number of architectures; the short at # offset 4 in a Java bytecode file is the JVM minor version and the # short at offset 6 is the JVM major version. Since there are only # only 18 labeled Mach-O architectures at current, and the first released # Java class format was version 43.0, we can safely choose any number # between 18 and 39 to test the number of architectures against # (and use as a hack). Let's not use 18, because the Mach-O people # might add another one or two as time goes by... # 0 belong 0xcafebabe !:mime application/x-java-applet >4 belong >30 compiled Java class data, >>6 beshort x version %d. >>4 beshort x \b%d # Which is which? #>>4 belong 0x032d (Java 1.0) #>>4 belong 0x032d (Java 1.1) >>4 belong 0x002e (Java 1.2) >>4 belong 0x002f (Java 1.3) >>4 belong 0x0030 (Java 1.4) >>4 belong 0x0031 (Java 1.5) >>4 belong 0x0032 (Java 1.6) >>4 belong 0x0033 (Java 1.7) >>4 belong 0x0034 (Java 1.8) 0 belong 0xcafebabe >4 belong 1 Mach-O fat file with 1 architecture >4 belong >1 >>4 belong <20 Mach-O fat file with %ld architectures 0 belong 0xcafed00d JAR compressed with pack200, >>5 byte x version %d. >>4 byte x \b%d !:mime application/x-java-pack200 #------------------------------------------------------------------------------ # $File: cddb,v 1.4 2009/09/19 16:28:08 christos Exp $ # CDDB: file(1) magic for CDDB(tm) format CD text data files # # From # # This is the /etc/magic entry to decode datafiles as used by # CDDB-enabled CD player applications. # 0 search/1/w #\040xmcd CDDB(tm) format CD text data #------------------------------------------------------------------------------ # $File: chord,v 1.5 2010/09/20 19:19:16 rrt Exp $ # chord: file(1) magic for Chord music sheet typesetting utility input files # # From Philippe De Muyter # File format is actually free, but many distributed files begin with `{title' # 0 string {title Chord text file # Type: PowerTab file format # URL: http://www.power-tab.net/ # From: Jelmer Vernooij 0 string ptab\003\000 Power-Tab v3 Tablature File 0 string ptab\004\000 Power-Tab v4 Tablature File #------------------------------------------------------------------------------ # $File: cisco,v 1.4 2009/09/19 16:28:08 christos Exp $ # cisco: file(1) magic for cisco Systems routers # # Most cisco file-formats are covered by the generic elf code # # Microcode files are non-ELF, 0x8501 conflicts with NetBSD/alpha. 0 belong&0xffffff00 0x85011400 cisco IOS microcode >7 string >\0 for '%s' 0 belong&0xffffff00 0x8501cb00 cisco IOS experimental microcode >7 string >\0 for '%s' #------------------------------------------------------------------------------ # $File: citrus,v 1.4 2009/09/19 16:28:08 christos Exp $ # citrus locale declaration # 0 string RuneCT Citrus locale declaration for LC_CTYPE #------------------------------------------------------------------------------ # $File: clarion,v 1.4 2009/09/19 16:28:08 christos Exp $ # clarion: file(1) magic for # Clarion Personal/Professional Developer # (v2 and above) # From: Julien Blache # Database files # signature 0 leshort 0x3343 Clarion Developer (v2 and above) data file # attributes >2 leshort &0x0001 \b, locked >2 leshort &0x0004 \b, encrypted >2 leshort &0x0008 \b, memo file exists >2 leshort &0x0010 \b, compressed >2 leshort &0x0040 \b, read only # number of records >5 lelong x \b, %ld records # Memo files 0 leshort 0x334d Clarion Developer (v2 and above) memo data # Key/Index files # No magic? :( # Help files 0 leshort 0x49e0 Clarion Developer (v2 and above) help data #------------------------------------------------------------------------------ # $File: claris,v 1.5 2009/09/19 16:28:08 christos Exp $ # claris: file(1) magic for claris # "H. Nanosecond" # Claris Works a word processor, etc. # Version 3.0 # .pct claris works clip art files #0000000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 #* #0001000 #010 250 377 377 377 377 000 213 000 230 000 021 002 377 014 000 #null to byte 1000 octal 514 string \377\377\377\377\000 Claris clip art? >0 string \0\0\0\0\0\0\0\0\0\0\0\0\0 yes. 514 string \377\377\377\377\001 Claris clip art? >0 string \0\0\0\0\0\0\0\0\0\0\0\0\0 yes. # Claris works files # .cwk 0 string \002\000\210\003\102\117\102\117\000\001\206 Claris works document # .plt 0 string \020\341\000\000\010\010 Claris Works pallete files .plt # .msp a dictionary file I am not sure about this I have only one .msp file 0 string \002\271\262\000\040\002\000\164 Claris works dictionary # .usp are user dictionary bits # I am not sure about a magic header: #0000000 001 123 160 146 070 125 104 040 136 123 015 012 160 157 144 151 # soh S p f 8 U D sp ^ S cr nl p o d i #0000020 141 164 162 151 163 164 040 136 123 015 012 144 151 166 040 043 # a t r i s t sp ^ S cr nl d i v sp # # .mth Thesaurus # starts with \0 but no magic header # .chy Hyphenation file # I am not sure: 000 210 034 000 000 # other claris files #./windows/claris/useng.ndx: data #./windows/claris/xtndtran.l32: data #./windows/claris/xtndtran.lst: data #./windows/claris/clworks.lbl: data #./windows/claris/clworks.prf: data #./windows/claris/userd.spl: data #------------------------------------------------------------------------------ # $File: clipper,v 1.6 2009/09/19 16:28:08 christos Exp $ # clipper: file(1) magic for Intergraph (formerly Fairchild) Clipper. # # XXX - what byte order does the Clipper use? # # XXX - what's the "!" stuff: # # >18 short !074000,000000 C1 R1 # >18 short !074000,004000 C2 R1 # >18 short !074000,010000 C3 R1 # >18 short !074000,074000 TEST # # I shall assume it's ANDing the field with the first value and # comparing it with the second, and rewrite it as: # # >18 short&074000 000000 C1 R1 # >18 short&074000 004000 C2 R1 # >18 short&074000 010000 C3 R1 # >18 short&074000 074000 TEST # # as SVR3.1's "file" doesn't support anything of the "!074000,000000" # sort, nor does SunOS 4.x, so either it's something Intergraph added # in CLIX, or something AT&T added in SVR3.2 or later, or something # somebody else thought was a good idea; it's not documented in the # man page for this version of "magic", nor does it appear to be # implemented (at least not after I blew off the bogus code to turn # old-style "&"s into new-style "&"s, which just didn't work at all). # 0 short 0575 CLIPPER COFF executable (VAX #) >20 short 0407 (impure) >20 short 0410 (5.2 compatible) >20 short 0411 (pure) >20 short 0413 (demand paged) >20 short 0443 (target shared library) >12 long >0 not stripped >22 short >0 - version %ld 0 short 0577 CLIPPER COFF executable >18 short&074000 000000 C1 R1 >18 short&074000 004000 C2 R1 >18 short&074000 010000 C3 R1 >18 short&074000 074000 TEST >20 short 0407 (impure) >20 short 0410 (pure) >20 short 0411 (separate I&D) >20 short 0413 (paged) >20 short 0443 (target shared library) >12 long >0 not stripped >22 short >0 - version %ld >48 long&01 01 alignment trap enabled >52 byte 1 -Ctnc >52 byte 2 -Ctsw >52 byte 3 -Ctpw >52 byte 4 -Ctcb >53 byte 1 -Cdnc >53 byte 2 -Cdsw >53 byte 3 -Cdpw >53 byte 4 -Cdcb >54 byte 1 -Csnc >54 byte 2 -Cssw >54 byte 3 -Cspw >54 byte 4 -Cscb 4 string pipe CLIPPER instruction trace 4 string prof CLIPPER instruction profile #------------------------------------------------------------------------------ # $File: commands,v 1.42 2011/12/05 23:14:02 rrt Exp $ # commands: file(1) magic for various shells and interpreters # #0 string/w : shell archive or script for antique kernel text 0 string/wt #!\ /bin/sh POSIX shell script text executable !:mime text/x-shellscript 0 string/wt #!\ /bin/csh C shell script text executable !:mime text/x-shellscript # korn shell magic, sent by George Wu, gwu@clyde.att.com 0 string/wt #!\ /bin/ksh Korn shell script text executable !:mime text/x-shellscript 0 string/wt #!\ /bin/tcsh Tenex C shell script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/bin/tcsh Tenex C shell script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/local/tcsh Tenex C shell script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/local/bin/tcsh Tenex C shell script text executable !:mime text/x-shellscript # # zsh/ash/ae/nawk/gawk magic from cameron@cs.unsw.oz.au (Cameron Simpson) 0 string/wt #!\ /bin/zsh Paul Falstad's zsh script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/bin/zsh Paul Falstad's zsh script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/local/bin/zsh Paul Falstad's zsh script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/local/bin/ash Neil Brown's ash script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/local/bin/ae Neil Brown's ae script text executable !:mime text/x-shellscript 0 string/wt #!\ /bin/nawk new awk script text executable !:mime text/x-nawk 0 string/wt #!\ /usr/bin/nawk new awk script text executable !:mime text/x-nawk 0 string/wt #!\ /usr/local/bin/nawk new awk script text executable !:mime text/x-nawk 0 string/wt #!\ /bin/gawk GNU awk script text executable !:mime text/x-gawk 0 string/wt #!\ /usr/bin/gawk GNU awk script text executable !:mime text/x-gawk 0 string/wt #!\ /usr/local/bin/gawk GNU awk script text executable !:mime text/x-gawk # 0 string/wt #!\ /bin/awk awk script text executable !:mime text/x-awk 0 string/wt #!\ /usr/bin/awk awk script text executable !:mime text/x-awk 0 regex/4096 =^\\s{0,100}BEGIN\\s{0,100}[{] awk script text !:strength - 12 # AT&T Bell Labs' Plan 9 shell 0 string/wt #!\ /bin/rc Plan 9 rc shell script text executable # bash shell magic, from Peter Tobias (tobias@server.et-inf.fho-emden.de) 0 string/wt #!\ /bin/bash Bourne-Again shell script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/bin/bash Bourne-Again shell script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/local/bash Bourne-Again shell script text executable !:mime text/x-shellscript 0 string/wt #!\ /usr/local/bin/bash Bourne-Again shell script text executable !:mime text/x-shellscript # PHP scripts # Ulf Harnhammar 0 search/1/c = 0 string =24 regex [0-9.]+ \b, version %s !:mime text/x-php 0 string Zend\x00 PHP script Zend Optimizer data 0 string/t $! DCL command file # Type: Pdmenu # URL: http://packages.debian.org/pdmenu # From: Edward Betts 0 string #!/usr/bin/pdmenu Pdmenu configuration file text #---------------------------------------------------------------------------- # $File: communications,v 1.5 2009/09/19 16:28:08 christos Exp $ # communication # TTCN is the Tree and Tabular Combined Notation described in ISO 9646-3. # It is used for conformance testing of communication protocols. # Added by W. Borgert . 0 string $Suite TTCN Abstract Test Suite >&1 string $SuiteId >>&1 string >\n %s >&2 string $SuiteId >>&1 string >\n %s >&3 string $SuiteId >>&1 string >\n %s # MSC (message sequence charts) are a formal description technique, # described in ITU-T Z.120, mainly used for communication protocols. # Added by W. Borgert . 0 string mscdocument Message Sequence Chart (document) 0 string msc Message Sequence Chart (chart) 0 string submsc Message Sequence Chart (subchart) #------------------------------------------------------------------------------ # $File: compress,v 1.49 2011/12/07 22:04:27 christos Exp $ # compress: file(1) magic for pure-compression formats (no archives) # # compress, gzip, pack, compact, huf, squeeze, crunch, freeze, yabba, etc. # # Formats for various forms of compressed data # Formats for "compress" proper have been moved into "compress.c", # because it tries to uncompress it to figure out what's inside. # standard unix compress 0 string \037\235 compress'd data !:mime application/x-compress !:apple LZIVZIVU >2 byte&0x80 >0 block compressed >2 byte&0x1f x %d bits # gzip (GNU zip, not to be confused with Info-ZIP or PKWARE zip archiver) # Edited by Chris Chittleborough , March 2002 # * Original filename is only at offset 10 if "extra field" absent # * Produce shorter output - notably, only report compression methods # other than 8 ("deflate", the only method defined in RFC 1952). 0 string \037\213 gzip compressed data !:mime application/x-gzip !:strength * 2 >2 byte <8 \b, reserved method >2 byte >8 \b, unknown method >3 byte &0x01 \b, ASCII >3 byte &0x02 \b, has CRC >3 byte &0x04 \b, extra field >3 byte&0xC =0x08 >>10 string x \b, was "%s" >3 byte &0x10 \b, has comment >9 byte =0x00 \b, from FAT filesystem (MS-DOS, OS/2, NT) >9 byte =0x01 \b, from Amiga >9 byte =0x02 \b, from VMS >9 byte =0x03 \b, from Unix >9 byte =0x04 \b, from VM/CMS >9 byte =0x05 \b, from Atari >9 byte =0x06 \b, from HPFS filesystem (OS/2, NT) >9 byte =0x07 \b, from MacOS >9 byte =0x08 \b, from Z-System >9 byte =0x09 \b, from CP/M >9 byte =0x0A \b, from TOPS/20 >9 byte =0x0B \b, from NTFS filesystem (NT) >9 byte =0x0C \b, from QDOS >9 byte =0x0D \b, from Acorn RISCOS >3 byte &0x10 \b, comment >3 byte &0x20 \b, encrypted >4 ledate >0 \b, last modified: %s >8 byte 2 \b, max compression >8 byte 4 \b, max speed # packed data, Huffman (minimum redundancy) codes on a byte-by-byte basis 0 string \037\036 packed data !:mime application/octet-stream >2 belong >1 \b, %d characters originally >2 belong =1 \b, %d character originally # # This magic number is byte-order-independent. 0 short 0x1f1f old packed data !:mime application/octet-stream # XXX - why *two* entries for "compacted data", one of which is # byte-order independent, and one of which is byte-order dependent? # 0 short 0x1fff compacted data !:mime application/octet-stream # This string is valid for SunOS (BE) and a matching "short" is listed # in the Ultrix (LE) magic file. 0 string \377\037 compacted data !:mime application/octet-stream 0 short 0145405 huf output !:mime application/octet-stream # bzip2 0 string BZh bzip2 compressed data !:mime application/x-bzip2 >3 byte >47 \b, block size = %c00k # lzip 0 string LZIP lzip compressed data !:mime application/x-lzip >4 byte x \b, version: %d # squeeze and crunch # Michael Haardt 0 beshort 0x76FF squeezed data, >4 string x original name %s 0 beshort 0x76FE crunched data, >2 string x original name %s 0 beshort 0x76FD LZH compressed data, >2 string x original name %s # Freeze 0 string \037\237 frozen file 2.1 0 string \037\236 frozen file 1.0 (or gzip 0.5) # SCO compress -H (LZH) 0 string \037\240 SCO compress -H (LZH) data # European GSM 06.10 is a provisional standard for full-rate speech # transcoding, prI-ETS 300 036, which uses RPE/LTP (residual pulse # excitation/long term prediction) coding at 13 kbit/s. # # There's only a magic nibble (4 bits); that nibble repeats every 33 # bytes. This isn't suited for use, but maybe we can use it someday. # # This will cause very short GSM files to be declared as data and # mismatches to be declared as data too! #0 byte&0xF0 0xd0 data #>33 byte&0xF0 0xd0 #>66 byte&0xF0 0xd0 #>99 byte&0xF0 0xd0 #>132 byte&0xF0 0xd0 GSM 06.10 compressed audio # bzip a block-sorting file compressor # by Julian Seward and others # #0 string BZ bzip compressed data #>2 byte x \b, version: %c #>3 string =1 \b, compression block size 100k #>3 string =2 \b, compression block size 200k #>3 string =3 \b, compression block size 300k #>3 string =4 \b, compression block size 400k #>3 string =5 \b, compression block size 500k #>3 string =6 \b, compression block size 600k #>3 string =7 \b, compression block size 700k #>3 string =8 \b, compression block size 800k #>3 string =9 \b, compression block size 900k # lzop from 0 string \x89\x4c\x5a\x4f\x00\x0d\x0a\x1a\x0a lzop compressed data >9 beshort <0x0940 >>9 byte&0xf0 =0x00 - version 0. >>9 beshort&0x0fff x \b%03x, >>13 byte 1 LZO1X-1, >>13 byte 2 LZO1X-1(15), >>13 byte 3 LZO1X-999, ## >>22 bedate >0 last modified: %s, >>14 byte =0x00 os: MS-DOS >>14 byte =0x01 os: Amiga >>14 byte =0x02 os: VMS >>14 byte =0x03 os: Unix >>14 byte =0x05 os: Atari >>14 byte =0x06 os: OS/2 >>14 byte =0x07 os: MacOS >>14 byte =0x0A os: Tops/20 >>14 byte =0x0B os: WinNT >>14 byte =0x0E os: Win32 >9 beshort >0x0939 >>9 byte&0xf0 =0x00 - version 0. >>9 byte&0xf0 =0x10 - version 1. >>9 byte&0xf0 =0x20 - version 2. >>9 beshort&0x0fff x \b%03x, >>15 byte 1 LZO1X-1, >>15 byte 2 LZO1X-1(15), >>15 byte 3 LZO1X-999, ## >>25 bedate >0 last modified: %s, >>17 byte =0x00 os: MS-DOS >>17 byte =0x01 os: Amiga >>17 byte =0x02 os: VMS >>17 byte =0x03 os: Unix >>17 byte =0x05 os: Atari >>17 byte =0x06 os: OS/2 >>17 byte =0x07 os: MacOS >>17 byte =0x0A os: Tops/20 >>17 byte =0x0B os: WinNT >>17 byte =0x0E os: Win32 # 4.3BSD-Quasijarus Strong Compression # http://minnie.tuhs.org/Quasijarus/compress.html 0 string \037\241 Quasijarus strong compressed data # From: Cory Dikkers 0 string XPKF Amiga xpkf.library compressed data 0 string PP11 Power Packer 1.1 compressed data 0 string PP20 Power Packer 2.0 compressed data, >4 belong 0x09090909 fast compression >4 belong 0x090A0A0A mediocre compression >4 belong 0x090A0B0B good compression >4 belong 0x090A0C0C very good compression >4 belong 0x090A0C0D best compression # 7-zip archiver, from Thomas Klausner (wiz@danbala.tuwien.ac.at) # http://www.7-zip.org or DOC/7zFormat.txt # 0 string 7z\274\257\047\034 7-zip archive data, >6 byte x version %d >7 byte x \b.%d !:mime application/x-7z-compressed # Type: LZMA 0 lelong&0xffffff =0x5d >12 leshort =0xff LZMA compressed data, >>5 lequad =0xffffffffffffffff streamed >>5 lequad !0xffffffffffffffff non-streamed, size %lld !:mime application/x-lzma # http://tukaani.org/xz/xz-file-format.txt 0 ustring \xFD7zXZ\x00 XZ compressed data !:mime application/x-xz # https://github.com/ckolivas/lrzip/blob/master/doc/magic.header.txt 0 string LRZI LRZIP compressed data >4 byte x - version %d >5 byte x \b.%d !:mime application/x-lrzip # AFX compressed files (Wolfram Kleff) 2 string -afx- AFX compressed file data # Supplementary magic data for the file(1) command to support # rzip(1). The format is described in magic(5). # # Copyright (C) 2003 by Andrew Tridgell. You may do whatever you want with # this file. # 0 string RZIP rzip compressed data >4 byte x - version %d >5 byte x \b.%d >6 belong x (%d bytes) 0 string ArC\x01 FreeArc archive # Type: DACT compressed files 0 long 0x444354C3 DACT compressed data >4 byte >-1 (version %i. >5 byte >-1 %i. >6 byte >-1 %i) >7 long >0 , original size: %i bytes >15 long >30 , block size: %i bytes #------------------------------------------------------------------------------ # $File: console,v 1.18 2010/09/20 19:19:17 rrt Exp $ # Console game magic # Toby Deshane # ines: file(1) magic for Marat's iNES Nintendo Entertainment System # ROM dump format 0 string NES\032 iNES ROM dump, >4 byte x %dx16k PRG >5 byte x \b, %dx8k CHR >6 byte&0x01 =0x1 \b, [Vert.] >6 byte&0x01 =0x0 \b, [Horiz.] >6 byte&0x02 =0x2 \b, [SRAM] >6 byte&0x04 =0x4 \b, [Trainer] >6 byte&0x04 =0x8 \b, [4-Scr] #------------------------------------------------------------------------------ # gameboy: file(1) magic for the Nintendo (Color) Gameboy raw ROM format # 0x104 belong 0xCEED6666 Gameboy ROM: >0x134 string >\0 "%.16s" >0x146 byte 0x03 \b,[SGB] >0x147 byte 0x00 \b, [ROM ONLY] >0x147 byte 0x01 \b, [ROM+MBC1] >0x147 byte 0x02 \b, [ROM+MBC1+RAM] >0x147 byte 0x03 \b, [ROM+MBC1+RAM+BATT] >0x147 byte 0x05 \b, [ROM+MBC2] >0x147 byte 0x06 \b, [ROM+MBC2+BATTERY] >0x147 byte 0x08 \b, [ROM+RAM] >0x147 byte 0x09 \b, [ROM+RAM+BATTERY] >0x147 byte 0x0B \b, [ROM+MMM01] >0x147 byte 0x0C \b, [ROM+MMM01+SRAM] >0x147 byte 0x0D \b, [ROM+MMM01+SRAM+BATT] >0x147 byte 0x0F \b, [ROM+MBC3+TIMER+BATT] >0x147 byte 0x10 \b, [ROM+MBC3+TIMER+RAM+BATT] >0x147 byte 0x11 \b, [ROM+MBC3] >0x147 byte 0x12 \b, [ROM+MBC3+RAM] >0x147 byte 0x13 \b, [ROM+MBC3+RAM+BATT] >0x147 byte 0x19 \b, [ROM+MBC5] >0x147 byte 0x1A \b, [ROM+MBC5+RAM] >0x147 byte 0x1B \b, [ROM+MBC5+RAM+BATT] >0x147 byte 0x1C \b, [ROM+MBC5+RUMBLE] >0x147 byte 0x1D \b, [ROM+MBC5+RUMBLE+SRAM] >0x147 byte 0x1E \b, [ROM+MBC5+RUMBLE+SRAM+BATT] >0x147 byte 0x1F \b, [Pocket Camera] >0x147 byte 0xFD \b, [Bandai TAMA5] >0x147 byte 0xFE \b, [Hudson HuC-3] >0x147 byte 0xFF \b, [Hudson HuC-1] >0x148 byte 0 \b, ROM: 256Kbit >0x148 byte 1 \b, ROM: 512Kbit >0x148 byte 2 \b, ROM: 1Mbit >0x148 byte 3 \b, ROM: 2Mbit >0x148 byte 4 \b, ROM: 4Mbit >0x148 byte 5 \b, ROM: 8Mbit >0x148 byte 6 \b, ROM: 16Mbit >0x148 byte 0x52 \b, ROM: 9Mbit >0x148 byte 0x53 \b, ROM: 10Mbit >0x148 byte 0x54 \b, ROM: 12Mbit >0x149 byte 1 \b, RAM: 16Kbit >0x149 byte 2 \b, RAM: 64Kbit >0x149 byte 3 \b, RAM: 128Kbit >0x149 byte 4 \b, RAM: 1Mbit #>0x14e long x \b, CRC: %x #------------------------------------------------------------------------------ # genesis: file(1) magic for the Sega MegaDrive/Genesis raw ROM format # 0x100 string SEGA Sega MegaDrive/Genesis raw ROM dump >0x120 string >\0 Name: "%.16s" >0x110 string >\0 %.16s >0x1B0 string RA with SRAM #------------------------------------------------------------------------------ # genesis: file(1) magic for the Super MegaDrive ROM dump format # 0x280 string EAGN Super MagicDrive ROM dump >0 byte x %dx16k blocks >2 byte 0 \b, last in series or standalone >2 byte >0 \b, split ROM >8 byte 0xAA >9 byte 0xBB #------------------------------------------------------------------------------ # genesis: file(1) alternate magic for the Super MegaDrive ROM dump format # 0x280 string EAMG Super MagicDrive ROM dump >0 byte x %dx16k blocks >2 byte x \b, last in series or standalone >8 byte 0xAA >9 byte 0xBB #------------------------------------------------------------------------------ # smsgg: file(1) magic for Sega Master System and Game Gear ROM dumps # # Does not detect all images. Very preliminary guesswork. Need more data # on format. # # FIXME: need a little more info...;P # #0 byte 0xF3 #>1 byte 0xED Sega Master System/Game Gear ROM dump #>1 byte 0x31 Sega Master System/Game Gear ROM dump #>1 byte 0xDB Sega Master System/Game Gear ROM dump #>1 byte 0xAF Sega Master System/Game Gear ROM dump #>1 byte 0xC3 Sega Master System/Game Gear ROM dump #------------------------------------------------------------------------------ # dreamcast: file(1) uncertain magic for the Sega Dreamcast VMU image format # 0 belong 0x21068028 Sega Dreamcast VMU game image 0 string LCDi Dream Animator file #------------------------------------------------------------------------------ # v64: file(1) uncertain magic for the V64 format N64 ROM dumps # 0 belong 0x37804012 V64 Nintendo 64 ROM dump # From: "Nelson A. de Oliveira" # Nintendo .nds 192 string \044\377\256Qi\232 Nintendo DS Game ROM Image # Nintendo .gba 0 string \056\000\000\352$\377\256Qi Nintendo Game Boy Advance ROM Image #------------------------------------------------------------------------------ # msx: file(1) magic for MSX game cartridge dumps # Too simple - MPi #0 beshort 0x4142 MSX game cartridge dump #------------------------------------------------------------------------------ # Sony Playstation executables (Adam Sjoegren ) : 0 string PS-X\ EXE Sony Playstation executable # Area: >113 string x (%s) #------------------------------------------------------------------------------ # Microsoft Xbox executables .xbe (Esa Hyytiä ) 0 string XBEH XBE, Microsoft Xbox executable # probabilistic checks whether signed or not >0x0004 ulelong =0x0 >>&2 ulelong =0x0 >>>&2 ulelong =0x0 \b, not signed >0x0004 ulelong >0 >>&2 ulelong >0 >>>&2 ulelong >0 \b, signed # expect base address of 0x10000 >0x0104 ulelong =0x10000 >>(0x0118-0x0FF60) ulelong&0x80000007 0x80000007 \b, all regions >>(0x0118-0x0FF60) ulelong&0x80000007 !0x80000007 >>>(0x0118-0x0FF60) ulelong >0 (regions: >>>>(0x0118-0x0FF60) ulelong &0x00000001 NA >>>>(0x0118-0x0FF60) ulelong &0x00000002 Japan >>>>(0x0118-0x0FF60) ulelong &0x00000004 Rest_of_World >>>>(0x0118-0x0FF60) ulelong &0x80000000 Manufacturer >>>(0x0118-0x0FF60) ulelong >0 \b) # -------------------------------- # Microsoft Xbox data file formats 0 string XIP0 XIP, Microsoft Xbox data 0 string XTF0 XTF, Microsoft Xbox data # Atari Lynx cartridge dump (EXE/BLL header) # From: "Stefan A. Haubenthal" # Double-check that the image type matches too, 0x8008 conflicts with # 8 character OMF-86 object file headers. 0 beshort 0x8008 >6 string BS93 Lynx homebrew cartridge >>2 beshort x \b, RAM start $%04x >6 string LYNX Lynx cartridge >>2 beshort x \b, RAM start $%04x # Opera file system that is used on the 3DO console # From: Serge van den Boom 0 string \x01ZZZZZ\x01 3DO "Opera" file system # From Gürkan Sengün , www.linuks.mine.nu 0 string GBS Nintendo Gameboy Music/Audio Data 12 string GameBoy\ Music\ Module Nintendo Gameboy Music Module # Playstations Patch Files from: From: Thomas Klausner 0 string PPF30 Playstation Patch File version 3.0 >5 byte 0 \b, PPF 1.0 patch >5 byte 1 \b, PPF 2.0 patch >5 byte 2 \b, PPF 3.0 patch >>56 byte 0 \b, Imagetype BIN (any) >>56 byte 1 \b, Imagetype GI (PrimoDVD) >>57 byte 0 \b, Blockcheck disabled >>57 byte 1 \b, Blockcheck enabled >>58 byte 0 \b, Undo data not available >>58 byte 1 \b, Undo data available >6 string x \b, description: %s 0 string PPF20 Playstation Patch File version 2.0 >5 byte 0 \b, PPF 1.0 patch >5 byte 1 \b, PPF 2.0 patch >>56 lelong >0 \b, size of file to patch %d >6 string x \b, description: %s 0 string PPF10 Playstation Patch File version 1.0 >5 byte 0 \b, Simple Encoding >6 string x \b, description: %s # From: Daniel Dawson # SNES9x .smv "movie" file format. 0 string SMV\x1A SNES9x input recording >0x4 lelong x \b, version %d # version 4 is latest so far >0x4 lelong <5 >>0x8 ledate x \b, recorded at %s >>0xc lelong >0 \b, rerecorded %d times >>0x10 lelong x \b, %d frames long >>0x14 byte >0 \b, data for controller(s): >>>0x14 byte &0x1 #1 >>>0x14 byte &0x2 #2 >>>0x14 byte &0x4 #3 >>>0x14 byte &0x8 #4 >>>0x14 byte &0x10 #5 >>0x15 byte ^0x1 \b, begins from snapshot >>0x15 byte &0x1 \b, begins from reset >>0x15 byte ^0x2 \b, NTSC standard >>0x15 byte &0x2 \b, PAL standard >>0x17 byte &0x1 \b, settings: # WIP1Timing not used as of version 4 >>>0x4 lelong <4 >>>>0x17 byte &0x2 WIP1Timing >>>0x17 byte &0x4 Left+Right >>>0x17 byte &0x8 VolumeEnvX >>>0x17 byte &0x10 FakeMute >>>0x17 byte &0x20 SyncSound # New flag as of version 4 >>>0x4 lelong >3 >>>>0x17 byte &0x80 NoCPUShutdown >>0x4 lelong <4 >>>0x18 lelong >0x23 >>>>0x20 leshort !0 >>>>>0x20 lestring16 x \b, metadata: "%s" >>0x4 lelong >3 >>>0x24 byte >0 \b, port 1: >>>>0x24 byte 1 joypad >>>>0x24 byte 2 mouse >>>>0x24 byte 3 SuperScope >>>>0x24 byte 4 Justifier >>>>0x24 byte 5 multitap >>>0x24 byte >0 \b, port 2: >>>>0x25 byte 1 joypad >>>>0x25 byte 2 mouse >>>>0x25 byte 3 SuperScope >>>>0x25 byte 4 Justifier >>>>0x25 byte 5 multitap >>>0x18 lelong >0x43 >>>>0x40 leshort !0 >>>>>0x40 lestring16 x \b, metadata: "%s" >>0x17 byte &0x40 \b, ROM: >>>(0x18.l-26) lelong x CRC32 0x%08x >>>(0x18.l-23) string x "%s" # Type: scummVM savegame files # From: Sven Hartge 0 string SCVM ScummVM savegame >12 string >\0 "%s" #------------------------------------------------------------------------------ # $File: convex,v 1.7 2009/09/19 16:28:08 christos Exp $ # convex: file(1) magic for Convex boxes # # Convexes are big-endian. # # /*\ # * Below are the magic numbers and tests added for Convex. # * Added at beginning, because they are expected to be used most. # \*/ 0 belong 0507 Convex old-style object >16 belong >0 not stripped 0 belong 0513 Convex old-style demand paged executable >16 belong >0 not stripped 0 belong 0515 Convex old-style pre-paged executable >16 belong >0 not stripped 0 belong 0517 Convex old-style pre-paged, non-swapped executable >16 belong >0 not stripped 0 belong 0x011257 Core file # # The following are a series of dump format magic numbers. Each one # corresponds to a drastically different dump format. The first on is # the original dump format on a 4.1 BSD or earlier file system. The # second marks the change between the 4.1 file system and the 4.2 file # system. The Third marks the changing of the block size from 1K # to 2K to be compatible with an IDC file system. The fourth indicates # a dump that is dependent on Convex Storage Manager, because data in # secondary storage is not physically contained within the dump. # The restore program uses these number to determine how the data is # to be extracted. # 24 belong =60013 dump format, 4.2 or 4.3 BSD (IDC compatible) 24 belong =60014 dump format, Convex Storage Manager by-reference dump # # what follows is a bunch of bit-mask checks on the flags field of the opthdr. # If there is no `=' sign, assume just checking for whether the bit is set? # 0 belong 0601 Convex SOFF >88 belong&0x000f0000 =0x00000000 c1 >88 belong &0x00010000 c2 >88 belong &0x00020000 c2mp >88 belong &0x00040000 parallel >88 belong &0x00080000 intrinsic >88 belong &0x00000001 demand paged >88 belong &0x00000002 pre-paged >88 belong &0x00000004 non-swapped >88 belong &0x00000008 POSIX # >84 belong &0x80000000 executable >84 belong &0x40000000 object >84 belong&0x20000000 =0 not stripped >84 belong&0x18000000 =0x00000000 native fpmode >84 belong&0x18000000 =0x10000000 ieee fpmode >84 belong&0x18000000 =0x18000000 undefined fpmode # 0 belong 0605 Convex SOFF core # 0 belong 0607 Convex SOFF checkpoint >88 belong&0x000f0000 =0x00000000 c1 >88 belong &0x00010000 c2 >88 belong &0x00020000 c2mp >88 belong &0x00040000 parallel >88 belong &0x00080000 intrinsic >88 belong &0x00000008 POSIX # >84 belong&0x18000000 =0x00000000 native fpmode >84 belong&0x18000000 =0x10000000 ieee fpmode >84 belong&0x18000000 =0x18000000 undefined fpmode #------------------------------------------------------------------------------ # $File: cracklib,v 1.7 2009/09/19 16:28:08 christos Exp $ # cracklib: file (1) magic for cracklib v2.7 0 lelong 0x70775631 Cracklib password index, little endian >4 long >0 (%i words) >4 long 0 ("64-bit") >>8 long >-1 (%i words) 0 belong 0x70775631 Cracklib password index, big endian >4 belong >-1 (%i words) # really bellong 0x0000000070775631 0 search/1 \0\0\0\0pwV1 Cracklib password index, big endian ("64-bit") >12 belong >0 (%i words) # ---------------------------------------------------------------------------- # $File: ctags,v 1.6 2009/09/19 16:28:08 christos Exp $ # ctags: file (1) magic for Exuberant Ctags files # From: Alexander Mai 0 search/1 =!_TAG Exuberant Ctags tag file text #------------------------------------------------------------------------------ # $File: cups,v 1.1 2011/11/10 18:59:54 christos Exp $ # Cups: file(1) magic for the cups raster file format # From: Laurent Martelli # http://www.cups.org/documentation.php/spec-raster.html # # Cups Raster image format, Big Endian 0 string RaS !:mime application/vnd.cups-raster >3 string t Cups Raster version 1, Big Endian >3 string 2 Cups Raster version 2, Big Endian >3 string 3 Cups Raster version 3, Big Endian >280 belong x \b, %d >284 belong x \bx%d dpi >376 belong x \b, %dx >380 belong x \b%d pixels >388 belong x %d bits/color >392 belong x %d bits/pixel >400 belong 0 ColorOrder=Chunky >400 belong 1 ColorOrder=Banded >400 belong 2 ColorOrder=Planar >404 belong 0 ColorSpace=gray >404 belong 1 ColorSpace=RGB >404 belong 2 ColorSpace=RGBA >404 belong 3 ColorSpace=black >404 belong 4 ColorSpace=CMY >404 belong 5 ColorSpace=YMC >404 belong 6 ColorSpace=CMYK >404 belong 7 ColorSpace=YMCK >404 belong 8 ColorSpace=KCMY >404 belong 9 ColorSpace=KCMYcm >404 belong 10 ColorSpace=GMCK >404 belong 11 ColorSpace=GMCS >404 belong 12 ColorSpace=WHITE >404 belong 13 ColorSpace=GOLD >404 belong 14 ColorSpace=SILVER >404 belong 15 ColorSpace=CIE XYZ >404 belong 16 ColorSpace=CIE Lab >404 belong 17 ColorSpace=RGBW >404 belong 18 ColorSpace=sGray >404 belong 19 ColorSpace=sRGB >404 belong 20 ColorSpace=AdobeRGB # Cups Raster image format, Little Endian 1 string SaR >0 string t Cups Raster version 1, Little Endian >0 string 2 Cups Raster version 2, Little Endian >0 string 3 Cups Raster version 3, Little Endian !:mime application/vnd.cups-raster >280 lelong x \b, %d >284 lelong x \bx%d dpi >376 lelong x \b, %dx >380 lelong x \b%d pixels >388 lelong x %d bits/color >392 lelong x %d bits/pixel >400 lelong 0 ColorOrder=Chunky >400 lelong 1 ColorOrder=Banded >400 lelong 2 ColorOrder=Planar >404 lelong 0 ColorSpace=gray >404 lelong 1 ColorSpace=RGB >404 lelong 2 ColorSpace=RGBA >404 lelong 3 ColorSpace=black >404 lelong 4 ColorSpace=CMY >404 lelong 5 ColorSpace=YMC >404 lelong 6 ColorSpace=CMYK >404 lelong 7 ColorSpace=YMCK >404 lelong 8 ColorSpace=KCMY >404 lelong 9 ColorSpace=KCMYcm >404 lelong 10 ColorSpace=GMCK >404 lelong 11 ColorSpace=GMCS >404 lelong 12 ColorSpace=WHITE >404 lelong 13 ColorSpace=GOLD >404 lelong 14 ColorSpace=SILVER >404 lelong 15 ColorSpace=CIE XYZ >404 lelong 16 ColorSpace=CIE Lab >404 lelong 17 ColorSpace=RGBW >404 lelong 18 ColorSpace=sGray >404 lelong 19 ColorSpace=sRGB >404 lelong 20 ColorSpace=AdobeRGB #------------------------------------------------------------------------------ # $File: dact,v 1.4 2009/09/19 16:28:08 christos Exp $ # dact: file(1) magic for DACT compressed files # 0 long 0x444354C3 DACT compressed data >4 byte >-1 (version %i. >5 byte >-1 $BS%i. >6 byte >-1 $BS%i) >7 long >0 $BS, original size: %i bytes >15 long >30 $BS, block size: %i bytes #------------------------------------------------------------------------------ # $File: database,v 1.28 2011/09/16 19:40:40 christos Exp $ # database: file(1) magic for various databases # # extracted from header/code files by Graeme Wilford (eep2gw@ee.surrey.ac.uk) # # # GDBM magic numbers # Will be maintained as part of the GDBM distribution in the future. # 0 belong 0x13579ace GNU dbm 1.x or ndbm database, big endian !:mime application/x-gdbm 0 lelong 0x13579ace GNU dbm 1.x or ndbm database, little endian !:mime application/x-gdbm 0 string GDBM GNU dbm 2.x database !:mime application/x-gdbm # # Berkeley DB # # Ian Darwin's file /etc/magic files: big/little-endian version. # # Hash 1.85/1.86 databases store metadata in network byte order. # Btree 1.85/1.86 databases store the metadata in host byte order. # Hash and Btree 2.X and later databases store the metadata in host byte order. 0 long 0x00061561 Berkeley DB !:mime application/x-dbm >8 belong 4321 >>4 belong >2 1.86 >>4 belong <3 1.85 >>4 belong >0 (Hash, version %d, native byte-order) >8 belong 1234 >>4 belong >2 1.86 >>4 belong <3 1.85 >>4 belong >0 (Hash, version %d, little-endian) 0 belong 0x00061561 Berkeley DB >8 belong 4321 >>4 belong >2 1.86 >>4 belong <3 1.85 >>4 belong >0 (Hash, version %d, big-endian) >8 belong 1234 >>4 belong >2 1.86 >>4 belong <3 1.85 >>4 belong >0 (Hash, version %d, native byte-order) 0 long 0x00053162 Berkeley DB 1.85/1.86 >4 long >0 (Btree, version %d, native byte-order) 0 belong 0x00053162 Berkeley DB 1.85/1.86 >4 belong >0 (Btree, version %d, big-endian) 0 lelong 0x00053162 Berkeley DB 1.85/1.86 >4 lelong >0 (Btree, version %d, little-endian) 12 long 0x00061561 Berkeley DB >16 long >0 (Hash, version %d, native byte-order) 12 belong 0x00061561 Berkeley DB >16 belong >0 (Hash, version %d, big-endian) 12 lelong 0x00061561 Berkeley DB >16 lelong >0 (Hash, version %d, little-endian) 12 long 0x00053162 Berkeley DB >16 long >0 (Btree, version %d, native byte-order) 12 belong 0x00053162 Berkeley DB >16 belong >0 (Btree, version %d, big-endian) 12 lelong 0x00053162 Berkeley DB >16 lelong >0 (Btree, version %d, little-endian) 12 long 0x00042253 Berkeley DB >16 long >0 (Queue, version %d, native byte-order) 12 belong 0x00042253 Berkeley DB >16 belong >0 (Queue, version %d, big-endian) 12 lelong 0x00042253 Berkeley DB >16 lelong >0 (Queue, version %d, little-endian) # From Max Bowsher. 12 long 0x00040988 Berkeley DB >16 long >0 (Log, version %d, native byte-order) 12 belong 0x00040988 Berkeley DB >16 belong >0 (Log, version %d, big-endian) 12 lelong 0x00040988 Berkeley DB >16 lelong >0 (Log, version %d, little-endian) # # # Round Robin Database Tool by Tobias Oetiker 0 string/b RRD\0 RRDTool DB >4 string/b x version %s #---------------------------------------------------------------------- # ROOT: file(1) magic for ROOT databases # 0 string root\0 ROOT file >4 belong x Version %d >33 belong x (Compression: %d) # XXX: Weak magic. # Alex Ott ## Paradox file formats #2 leshort 0x0800 Paradox #>0x39 byte 3 v. 3.0 #>0x39 byte 4 v. 3.5 #>0x39 byte 9 v. 4.x #>0x39 byte 10 v. 5.x #>0x39 byte 11 v. 5.x #>0x39 byte 12 v. 7.x #>>0x04 byte 0 indexed .DB data file #>>0x04 byte 1 primary index .PX file #>>0x04 byte 2 non-indexed .DB data file #>>0x04 byte 3 non-incrementing secondary index .Xnn file #>>0x04 byte 4 secondary index .Ynn file #>>0x04 byte 5 incrementing secondary index .Xnn file #>>0x04 byte 6 non-incrementing secondary index .XGn file #>>0x04 byte 7 secondary index .YGn file #>>>0x04 byte 8 incrementing secondary index .XGn file ## XBase database files #0 byte 0x02 #>8 leshort >0 #>>12 leshort 0 FoxBase #!:mime application/x-dbf #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0x03 #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 FoxBase+, FoxPro, dBaseIII+, dBaseIV, no memo #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0x04 #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 dBASE IV no memo file #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0x05 #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 dBASE V no memo file #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0x30 #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 Visual FoxPro #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0x43 #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 FlagShip with memo var size #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0x7b #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 dBASEIV with memo #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0x83 #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 FoxBase+, dBaseIII+ with memo #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0x8b #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 dBaseIV with memo #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0x8e #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 dBaseIV with SQL Table #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0xb3 #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 FlagShip with .dbt memo #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 byte 0xf5 #!:mime application/x-dbf #>8 leshort >0 #>>12 leshort 0 FoxPro with memo #>>>0x04 lelong 0 (no records) #>>>0x04 lelong >0 (%ld records) # #0 leshort 0x0006 DBase 3 index file # MS Access database 4 string Standard\ Jet\ DB Microsoft Access Database !:mime application/x-msaccess # TDB database from Samba et al - Martin Pool 0 string TDB\ file TDB database >32 lelong 0x2601196D version 6, little-endian >>36 lelong x hash size %d bytes # SE Linux policy database 0 lelong 0xf97cff8c SE Linux policy >16 lelong x v%d >20 lelong 1 MLS >24 lelong x %d symbols >28 lelong x %d ocons # ICE authority file data (Wolfram Kleff) 2 string ICE ICE authority data # X11 Xauthority file (Wolfram Kleff) 10 string MIT-MAGIC-COOKIE-1 X11 Xauthority data 11 string MIT-MAGIC-COOKIE-1 X11 Xauthority data 12 string MIT-MAGIC-COOKIE-1 X11 Xauthority data 13 string MIT-MAGIC-COOKIE-1 X11 Xauthority data 14 string MIT-MAGIC-COOKIE-1 X11 Xauthority data 15 string MIT-MAGIC-COOKIE-1 X11 Xauthority data 16 string MIT-MAGIC-COOKIE-1 X11 Xauthority data 17 string MIT-MAGIC-COOKIE-1 X11 Xauthority data 18 string MIT-MAGIC-COOKIE-1 X11 Xauthority data # From: Maxime Henrion # PostgreSQL's custom dump format, Maxime Henrion 0 string PGDMP PostgreSQL custom database dump >5 byte x - v%d >6 byte x \b.%d >5 beshort <0x101 \b-0 >5 beshort >0x100 >>7 byte x \b-%d # Type: Advanced Data Format (ADF) database # URL: http://www.grc.nasa.gov/WWW/cgns/adf/ # From: Nicolas Chauvat 0 string @(#)ADF\ Database CGNS Advanced Data Format # Tokyo Cabinet magic data # http://tokyocabinet.sourceforge.net/index.html 0 string ToKyO\ CaBiNeT\n Tokyo Cabinet >14 string x \b (%s) >32 byte 0 \b, Hash !:mime application/x-tokyocabinet-hash >32 byte 1 \b, B+ tree !:mime application/x-tokyocabinet-btree >32 byte 2 \b, Fixed-length !:mime application/x-tokyocabinet-fixed >32 byte 3 \b, Table !:mime application/x-tokyocabinet-table >33 byte &1 \b, [open] >33 byte &2 \b, [fatal] >34 byte x \b, apow=%d >35 byte x \b, fpow=%d >36 byte &0x01 \b, [large] >36 byte &0x02 \b, [deflate] >36 byte &0x04 \b, [bzip] >36 byte &0x08 \b, [tcbs] >36 byte &0x10 \b, [excodec] >40 lequad x \b, bnum=%lld >48 lequad x \b, rnum=%lld >56 lequad x \b, fsiz=%lld # G-IR database made by gobject-introspect toolset, # http://live.gnome.org/GObjectIntrospection 0 string GOBJ\nMETADATA\r\n\032 G-IR binary database >16 byte x \b, v%d >17 byte x \b.%d >20 leshort x \b, %d entries >22 leshort x \b/%d local # Type: QDBM Quick Database Manager # From: Benoit Sibaud 0 string \\[depot\\]\n\f Quick Database Manager, little endian 0 string \\[DEPOT\\]\n\f Quick Database Manager, big endian # Type: TokyoCabinet database # URL: http://tokyocabinet.sourceforge.net/ # From: Benoit Sibaud 0 string ToKyO\ CaBiNeT\n TokyoCabinet database >14 string x (version %s) # From: Stéphane Blondon http://www.yaal.fr # Database file for Zope (done by FileStorage) 0 string FS21 Zope Object Database File Storage (data) # Cache file for the database of Zope (done by ClientStorage) 0 string ZEC3 Zope Object Database Client Cache File (data) #------------------------------------------------------------------------------ # $File: diamond,v 1.7 2009/09/19 16:28:08 christos Exp $ # diamond: file(1) magic for Diamond system # # ... diamond is a multi-media mail and electronic conferencing system.... # # XXX - I think it was either renamed Slate, or replaced by Slate.... # # The full deal is too long... #0 string \n Diamond Multimedia Document 0 string =\n&0 search/1024 \n >>&0 search/1 +++\ >>>&0 search/1024 \n >>>>&0 search/1 @@ unified diff output text !:mime text/x-diff !:strength + 90 #------------------------------------------------------------------------------ # $File: digital,v 1.10 2011/05/03 01:44:17 christos Exp $ # Digital UNIX - Info # 0 string =!\n________64E Alpha archive >22 string X -- out of date # 0 leshort 0603 >>24 leshort 0410 COFF format alpha pure >>24 leshort 0413 COFF format alpha demand paged >>>22 leshort&030000 !020000 executable >>>22 leshort&020000 !0 dynamically linked >>>16 lelong !0 not stripped >>>16 lelong 0 stripped >>>27 byte x - version %d >>>26 byte x \b.%d >>>28 byte x \b-%d >>24 leshort 0407 COFF format alpha object >>>22 leshort&030000 020000 shared library >>>27 byte x - version %d >>>26 byte x \b.%d >>>28 byte x \b-%d # Basic recognition of Digital UNIX core dumps - Mike Bremford # # The actual magic number is just "Core", followed by a 2-byte version # number; however, treating any file that begins with "Core" as a Digital # UNIX core dump file may produce too many false hits, so we include one # byte of the version number as well; DU 5.0 appears only to be up to # version 2. # 0 string Core\001 Alpha COFF format core dump (Digital UNIX) >24 string >\0 \b, from '%s' 0 string Core\002 Alpha COFF format core dump (Digital UNIX) >24 string >\0 \b, from '%s' # # The next is incomplete, we could tell more about this format, # but its not worth it. 0 leshort 0x188 Alpha compressed COFF 0 leshort 0x18f Alpha u-code object # # # Some other interesting Digital formats, 0 string \377\377\177 ddis/ddif 0 string \377\377\174 ddis/dots archive 0 string \377\377\176 ddis/dtif table data 0 string \033c\033 LN03 output 0 long 04553207 X image # 0 string =!!\n profiling data file # # Locale data tables (MIPS and Alpha). # 0 short 0x0501 locale data table >6 short 0x24 for MIPS >6 short 0x40 for Alpha #------------------------------------------------------------------------------ # $File: dolby,v 1.5 2009/09/19 16:28:08 christos Exp $ # ATSC A/53 aka AC-3 aka Dolby Digital # from http://www.atsc.org/standards/a_52a.pdf # corrections, additions, etc. are always welcome! # # syncword 0 beshort 0x0b77 ATSC A/52 aka AC-3 aka Dolby Digital stream, # fscod >4 byte&0xc0 0x00 48 kHz, >4 byte&0xc0 0x40 44.1 kHz, >4 byte&0xc0 0x80 32 kHz, # is this one used for 96 kHz? >4 byte&0xc0 0xc0 reserved frequency, # >5 byte&7 = 0 \b, complete main (CM) >5 byte&7 = 1 \b, music and effects (ME) >5 byte&7 = 2 \b, visually impaired (VI) >5 byte&7 = 3 \b, hearing impaired (HI) >5 byte&7 = 4 \b, dialogue (D) >5 byte&7 = 5 \b, commentary (C) >5 byte&7 = 6 \b, emergency (E) # acmod >6 byte&0xe0 0x00 1+1 front, >6 byte&0xe0 0x20 1 front/0 rear, >6 byte&0xe0 0x40 2 front/0 rear, >6 byte&0xe0 0x60 3 front/0 rear, >6 byte&0xe0 0x80 2 front/1 rear, >6 byte&0xe0 0xa0 3 front/1 rear, >6 byte&0xe0 0xc0 2 front/2 rear, >6 byte&0xe0 0xe0 3 front/2 rear, # lfeon (these may be incorrect) >7 byte&0x40 0x00 LFE off, >7 byte&0x40 0x40 LFE on, # >4 byte&0x3e = 0x00 \b, 32 kbit/s >4 byte&0x3e = 0x02 \b, 40 kbit/s >4 byte&0x3e = 0x04 \b, 48 kbit/s >4 byte&0x3e = 0x06 \b, 56 kbit/s >4 byte&0x3e = 0x08 \b, 64 kbit/s >4 byte&0x3e = 0x0a \b, 80 kbit/s >4 byte&0x3e = 0x0c \b, 96 kbit/s >4 byte&0x3e = 0x0e \b, 112 kbit/s >4 byte&0x3e = 0x10 \b, 128 kbit/s >4 byte&0x3e = 0x12 \b, 160 kbit/s >4 byte&0x3e = 0x14 \b, 192 kbit/s >4 byte&0x3e = 0x16 \b, 224 kbit/s >4 byte&0x3e = 0x18 \b, 256 kbit/s >4 byte&0x3e = 0x1a \b, 320 kbit/s >4 byte&0x3e = 0x1c \b, 384 kbit/s >4 byte&0x3e = 0x1e \b, 448 kbit/s >4 byte&0x3e = 0x20 \b, 512 kbit/s >4 byte&0x3e = 0x22 \b, 576 kbit/s >4 byte&0x3e = 0x24 \b, 640 kbit/s # dsurmod (these may be incorrect) >6 beshort&0x0180 0x0000 Dolby Surround not indicated >6 beshort&0x0180 0x0080 not Dolby Surround encoded >6 beshort&0x0180 0x0100 Dolby Surround encoded >6 beshort&0x0180 0x0180 reserved Dolby Surround mode #------------------------------------------------------------------------------ # $File: dump,v 1.11 2009/09/19 16:28:09 christos Exp $ # dump: file(1) magic for dump file format--for new and old dump filesystems # # We specify both byte orders in order to recognize byte-swapped dumps. # 24 belong 60012 new-fs dump file (big endian), >4 bedate x Previous dump %s, >8 bedate x This dump %s, >12 belong >0 Volume %ld, >692 belong 0 Level zero, type: >692 belong >0 Level %d, type: >0 belong 1 tape header, >0 belong 2 beginning of file record, >0 belong 3 map of inodes on tape, >0 belong 4 continuation of file record, >0 belong 5 end of volume, >0 belong 6 map of inodes deleted, >0 belong 7 end of medium (for floppy), >676 string >\0 Label %s, >696 string >\0 Filesystem %s, >760 string >\0 Device %s, >824 string >\0 Host %s, >888 belong >0 Flags %x 24 belong 60011 old-fs dump file (big endian), #>4 bedate x Previous dump %s, #>8 bedate x This dump %s, >12 belong >0 Volume %ld, >692 belong 0 Level zero, type: >692 belong >0 Level %d, type: >0 belong 1 tape header, >0 belong 2 beginning of file record, >0 belong 3 map of inodes on tape, >0 belong 4 continuation of file record, >0 belong 5 end of volume, >0 belong 6 map of inodes deleted, >0 belong 7 end of medium (for floppy), >676 string >\0 Label %s, >696 string >\0 Filesystem %s, >760 string >\0 Device %s, >824 string >\0 Host %s, >888 belong >0 Flags %x 24 lelong 60012 new-fs dump file (little endian), >4 ledate x This dump %s, >8 ledate x Previous dump %s, >12 lelong >0 Volume %ld, >692 lelong 0 Level zero, type: >692 lelong >0 Level %d, type: >0 lelong 1 tape header, >0 lelong 2 beginning of file record, >0 lelong 3 map of inodes on tape, >0 lelong 4 continuation of file record, >0 lelong 5 end of volume, >0 lelong 6 map of inodes deleted, >0 lelong 7 end of medium (for floppy), >676 string >\0 Label %s, >696 string >\0 Filesystem %s, >760 string >\0 Device %s, >824 string >\0 Host %s, >888 lelong >0 Flags %x 24 lelong 60011 old-fs dump file (little endian), #>4 ledate x Previous dump %s, #>8 ledate x This dump %s, >12 lelong >0 Volume %ld, >692 lelong 0 Level zero, type: >692 lelong >0 Level %d, type: >0 lelong 1 tape header, >0 lelong 2 beginning of file record, >0 lelong 3 map of inodes on tape, >0 lelong 4 continuation of file record, >0 lelong 5 end of volume, >0 lelong 6 map of inodes deleted, >0 lelong 7 end of medium (for floppy), >676 string >\0 Label %s, >696 string >\0 Filesystem %s, >760 string >\0 Device %s, >824 string >\0 Host %s, >888 lelong >0 Flags %x 18 leshort 60011 old-fs dump file (16-bit, assuming PDP-11 endianness), >2 medate x Previous dump %s, >6 medate x This dump %s, >10 leshort >0 Volume %ld, >0 leshort 1 tape header. >0 leshort 2 beginning of file record. >0 leshort 3 map of inodes on tape. >0 leshort 4 continuation of file record. >0 leshort 5 end of volume. >0 leshort 6 map of inodes deleted. >0 leshort 7 end of medium (for floppy). 24 belong 0x19540119 new-fs dump file (ufs2, big endian), >896 beqdate x Previous dump %s, >904 beqdate x This dump %s, >12 belong >0 Volume %ld, >692 belong 0 Level zero, type: >692 belong >0 Level %d, type: >0 belong 1 tape header, >0 belong 2 beginning of file record, >0 belong 3 map of inodes on tape, >0 belong 4 continuation of file record, >0 belong 5 end of volume, >0 belong 6 map of inodes deleted, >0 belong 7 end of medium (for floppy), >676 string >\0 Label %s, >696 string >\0 Filesystem %s, >760 string >\0 Device %s, >824 string >\0 Host %s, >888 belong >0 Flags %x 24 lelong 0x19540119 new-fs dump file (ufs2, little endian), >896 leqdate x This dump %s, >904 leqdate x Previous dump %s, >12 lelong >0 Volume %ld, >692 lelong 0 Level zero, type: >692 lelong >0 Level %d, type: >0 lelong 1 tape header, >0 lelong 2 beginning of file record, >0 lelong 3 map of inodes on tape, >0 lelong 4 continuation of file record, >0 lelong 5 end of volume, >0 lelong 6 map of inodes deleted, >0 lelong 7 end of medium (for floppy), >676 string >\0 Label %s, >696 string >\0 Filesystem %s, >760 string >\0 Device %s, >824 string >\0 Host %s, >888 lelong >0 Flags %x #------------------------------------------------------------------------------ # $File: dyadic,v 1.5 2010/09/20 18:55:20 rrt Exp $ # Dyadic: file(1) magic for Dyalog APL. # 0 byte 0xaa >1 byte <4 Dyalog APL >>1 byte 0x00 incomplete workspace >>1 byte 0x01 component file >>1 byte 0x02 external variable >>1 byte 0x03 workspace >>2 byte x version %d >>3 byte x .%d 0 beshort 0xaa03 Dyalog APL >2 byte x workspace type %d >3 byte x subtype %d >7 byte&0x28 0x00 32-bit >7 byte&0x28 0x20 64-bit >7 byte&0x0c 0x00 classic >7 byte&0x0c 0x04 unicode >7 byte&0x88 0x00 big-endian >7 byte&0x88 0x80 little-endian 0 byte 0xaa Dyalog APL >1 byte 0x00 aplcore >1 byte 0x01 component file 32-bit non-journaled non-checksummed >1 byte 0x02 external variable exclusive >1 byte 0x06 external variable shared >1 byte 0x07 session >1 byte 0x08 mapped file 32-bit >1 byte 0x09 component file 64-bit non-journaled non-checksummed >1 byte 0x0a mapped file 64-bit >1 byte 0x0b component file 32-bit level 1 journaled non-checksummed >1 byte 0x0c component file 64-bit level 1 journaled non-checksummed >1 byte 0x0d component file 32-bit level 1 journaled checksummed >1 byte 0x0e component file 64-bit level 1 journaled checksummed >1 byte 0x0f component file 32-bit level 2 journaled checksummed >1 byte 0x10 component file 64-bit level 2 journaled checksummed >1 byte 0x11 component file 32-bit level 3 journaled checksummed >1 byte 0x12 component file 64-bit level 3 journaled checksummed >1 byte 0x13 component file 32-bit non-journaled checksummed >1 byte 0x14 component file 64-bit non-journaled checksummed >1 byte 0x80 DDB 0 short 0x6060 Dyalog APL transfer #------------------------------------------------------------------------------ # $File: ebml,v 1.1 2010/07/02 00:07:03 christos Exp $ # ebml: file(1) magic for various Extensible Binary Meta Language # http://www.matroska.org/technical/specs/index.html#track 0 belong 0x1a45dfa3 EBML file >4 search/b/100 \102\202 >>&1 string x \b, creator %.8s #------------------------------------------------------------------------------ # $File: editors,v 1.8 2009/09/19 16:28:09 christos Exp $ # T602 editor documents # by David Necas 0 string @CT\ T602 document data, >4 string 0 Kamenicky >4 string 1 CP 852 >4 string 2 KOI8-CS >4 string >2 unknown encoding # Vi IMproved Encrypted file # by David Necas 0 string VimCrypt~ Vim encrypted file data # Vi IMproved Swap file # by Sven Wegener 0 string b0VIM\ Vim swap file >&0 string >\0 \b, version %s #------------------------------------------------------------------------------ # $File: efi,v 1.4 2009/09/19 16:28:09 christos Exp $ # efi: file(1) magic for Universal EFI binaries 0 lelong 0x0ef1fab9 >4 lelong 1 Universal EFI binary with 1 architecture >>&0 lelong 7 \b, i386 >>&0 lelong 0x01000007 \b, x86_64 >4 lelong 2 Universal EFI binary with 2 architectures >>&0 lelong 7 \b, i386 >>&0 lelong 0x01000007 \b, x86_64 >>&20 lelong 7 \b, i386 >>&20 lelong 0x01000007 \b, x86_64 >4 lelong >2 Universal EFI binary with %ld architectures #------------------------------------------------------------------------------ # $File: elf,v 1.54 2011/12/17 17:16:29 christos Exp $ # elf: file(1) magic for ELF executables # # We have to check the byte order flag to see what byte order all the # other stuff in the header is in. # # What're the correct byte orders for the nCUBE and the Fujitsu VPP500? # # Created by: unknown # Modified by (1): Daniel Quinlan # Modified by (2): Peter Tobias (core support) # Modified by (3): Christian 'Dr. Disk' Hechelmann (fix of core support) # Modified by (4): (VMS Itanium) # Modified by (5): Matthias Urlichs (Listing of many architectures) 0 string \177ELF ELF >4 byte 0 invalid class >4 byte 1 32-bit >4 byte 2 64-bit >5 byte 0 invalid byte order >5 byte 1 LSB >>16 leshort 0 no file type, !:strength *2 !:mime application/octet-stream >>16 leshort 1 relocatable, !:mime application/x-object >>16 leshort 2 executable, !:mime application/x-executable >>16 leshort 3 shared object, !:mime application/x-sharedlib >>16 leshort 4 core file !:mime application/x-coredump # Core file detection is not reliable. #>>>(0x38+0xcc) string >\0 of '%s' #>>>(0x38+0x10) lelong >0 (signal %d), >>16 leshort &0xff00 processor-specific, >>18 leshort 0 no machine, >>18 leshort 1 AT&T WE32100 - invalid byte order, >>18 leshort 2 SPARC - invalid byte order, >>18 leshort 3 Intel 80386, >>18 leshort 4 Motorola >>>36 lelong &0x01000000 68000 - invalid byte order, >>>36 lelong &0x00810000 CPU32 - invalid byte order, >>>36 lelong 0 68020 - invalid byte order, >>18 leshort 5 Motorola 88000 - invalid byte order, >>18 leshort 6 Intel 80486, >>18 leshort 7 Intel 80860, # The official e_machine number for MIPS is now #8, regardless of endianness. # The second number (#10) will be deprecated later. For now, we still # say something if #10 is encountered, but only gory details for #8. >>18 leshort 8 MIPS, >>>36 lelong &0x20 N32 >>18 leshort 10 MIPS, >>>36 lelong &0x20 N32 >>18 leshort 8 # only for 32-bit >>>4 byte 1 >>>>36 lelong&0xf0000000 0x00000000 MIPS-I >>>>36 lelong&0xf0000000 0x10000000 MIPS-II >>>>36 lelong&0xf0000000 0x20000000 MIPS-III >>>>36 lelong&0xf0000000 0x30000000 MIPS-IV >>>>36 lelong&0xf0000000 0x40000000 MIPS-V >>>>36 lelong&0xf0000000 0x50000000 MIPS32 >>>>36 lelong&0xf0000000 0x60000000 MIPS64 >>>>36 lelong&0xf0000000 0x70000000 MIPS32 rel2 >>>>36 lelong&0xf0000000 0x80000000 MIPS64 rel2 # only for 64-bit >>>4 byte 2 >>>>48 lelong&0xf0000000 0x00000000 MIPS-I >>>>48 lelong&0xf0000000 0x10000000 MIPS-II >>>>48 lelong&0xf0000000 0x20000000 MIPS-III >>>>48 lelong&0xf0000000 0x30000000 MIPS-IV >>>>48 lelong&0xf0000000 0x40000000 MIPS-V >>>>48 lelong&0xf0000000 0x50000000 MIPS32 >>>>48 lelong&0xf0000000 0x60000000 MIPS64 >>>>48 lelong&0xf0000000 0x70000000 MIPS32 rel2 >>>>48 lelong&0xf0000000 0x80000000 MIPS64 rel2 >>18 leshort 9 Amdahl - invalid byte order, >>18 leshort 10 MIPS (deprecated), >>18 leshort 11 RS6000 - invalid byte order, >>18 leshort 15 PA-RISC - invalid byte order, >>>50 leshort 0x0214 2.0 >>>48 leshort &0x0008 (LP64), >>18 leshort 16 nCUBE, >>18 leshort 17 Fujitsu VPP500, >>18 leshort 18 SPARC32PLUS, # only for 32-bit >>>4 byte 1 >>>>36 lelong&0xffff00 0x000100 V8+ Required, >>>>36 lelong&0xffff00 0x000200 Sun UltraSPARC1 Extensions Required, >>>>36 lelong&0xffff00 0x000400 HaL R1 Extensions Required, >>>>36 lelong&0xffff00 0x000800 Sun UltraSPARC3 Extensions Required, >>18 leshort 19 Intel 80960, >>18 leshort 20 PowerPC or cisco 4500, >>18 leshort 21 64-bit PowerPC or cisco 7500, >>18 leshort 22 IBM S/390, >>18 leshort 23 Cell SPU, >>18 leshort 24 cisco SVIP, >>18 leshort 25 cisco 7200, >>18 leshort 36 NEC V800 or cisco 12000, >>18 leshort 37 Fujitsu FR20, >>18 leshort 38 TRW RH-32, >>18 leshort 39 Motorola RCE, >>18 leshort 40 ARM, >>18 leshort 41 Alpha, >>18 leshort 0xa390 IBM S/390 (obsolete), >>18 leshort 42 Renesas SH, >>18 leshort 43 SPARC V9 - invalid byte order, >>18 leshort 44 Siemens Tricore Embedded Processor, >>18 leshort 45 Argonaut RISC Core, Argonaut Technologies Inc., >>18 leshort 46 Renesas H8/300, >>18 leshort 47 Renesas H8/300H, >>18 leshort 48 Renesas H8S, >>18 leshort 49 Renesas H8/500, >>18 leshort 50 IA-64, >>18 leshort 51 Stanford MIPS-X, >>18 leshort 52 Motorola Coldfire, >>18 leshort 53 Motorola M68HC12, >>18 leshort 54 Fujitsu MMA, >>18 leshort 55 Siemens PCP, >>18 leshort 56 Sony nCPU, >>18 leshort 57 Denso NDR1, >>18 leshort 58 Start*Core, >>18 leshort 59 Toyota ME16, >>18 leshort 60 ST100, >>18 leshort 61 Tinyj emb., >>18 leshort 62 x86-64, >>18 leshort 63 Sony DSP, >>18 leshort 66 FX66, >>18 leshort 67 ST9+ 8/16 bit, >>18 leshort 68 ST7 8 bit, >>18 leshort 69 MC68HC16, >>18 leshort 70 MC68HC11, >>18 leshort 71 MC68HC08, >>18 leshort 72 MC68HC05, >>18 leshort 73 SGI SVx, >>18 leshort 74 ST19 8 bit, >>18 leshort 75 Digital VAX, >>18 leshort 76 Axis cris, >>18 leshort 77 Infineon 32-bit embedded, >>18 leshort 78 Element 14 64-bit DSP, >>18 leshort 79 LSI Logic 16-bit DSP, >>18 leshort 80 MMIX, >>18 leshort 81 Harvard machine-independent, >>18 leshort 82 SiTera Prism, >>18 leshort 83 Atmel AVR 8-bit, >>18 leshort 84 Fujitsu FR30, >>18 leshort 85 Mitsubishi D10V, >>18 leshort 86 Mitsubishi D30V, >>18 leshort 87 NEC v850, >>18 leshort 88 Renesas M32R, >>18 leshort 89 Matsushita MN10300, >>18 leshort 90 Matsushita MN10200, >>18 leshort 91 picoJava, >>18 leshort 92 OpenRISC, >>18 leshort 93 ARC Cores Tangent-A5, >>18 leshort 94 Tensilica Xtensa, >>18 leshort 97 NatSemi 32k, >>18 leshort 106 Analog Devices Blackfin, >>18 leshort 113 Altera Nios II, >>18 leshort 174 META, >>18 leshort 183 ARM aarch64, >>18 leshort 187 Tilera TILE64, >>18 leshort 188 Tilera TILEPro, >>18 leshort 191 Tilera TILE-Gx, >>18 leshort 0x9026 Alpha (unofficial), >>20 lelong 0 invalid version >>20 lelong 1 version 1 >>36 lelong 1 MathCoPro/FPU/MAU Required >5 byte 2 MSB >>16 beshort 0 no file type, !:mime application/octet-stream >>16 beshort 1 relocatable, !:mime application/x-object >>16 beshort 2 executable, !:mime application/x-executable >>16 beshort 3 shared object, !:mime application/x-sharedlib >>16 beshort 4 core file, !:mime application/x-coredump #>>>(0x38+0xcc) string >\0 of '%s' #>>>(0x38+0x10) belong >0 (signal %d), >>16 beshort &0xff00 processor-specific, >>18 beshort 0 no machine, >>18 beshort 1 AT&T WE32100, >>18 beshort 2 SPARC, >>18 beshort 3 Intel 80386 - invalid byte order, >>18 beshort 4 Motorola >>>36 belong &0x01000000 68000, >>>36 belong &0x00810000 CPU32, >>>36 belong 0 68020, >>18 beshort 5 Motorola 88000, >>18 beshort 6 Intel 80486 - invalid byte order, >>18 beshort 7 Intel 80860, # only for MIPS - see comment in little-endian section above. >>18 beshort 8 MIPS, >>>36 belong &0x20 N32 >>18 beshort 10 MIPS, >>>36 belong &0x20 N32 >>18 beshort 8 # only for 32-bit >>>4 byte 1 >>>>36 belong&0xf0000000 0x00000000 MIPS-I >>>>36 belong&0xf0000000 0x10000000 MIPS-II >>>>36 belong&0xf0000000 0x20000000 MIPS-III >>>>36 belong&0xf0000000 0x30000000 MIPS-IV >>>>36 belong&0xf0000000 0x40000000 MIPS-V >>>>36 belong&0xf0000000 0x50000000 MIPS32 >>>>36 belong&0xf0000000 0x60000000 MIPS64 >>>>36 belong&0xf0000000 0x70000000 MIPS32 rel2 >>>>36 belong&0xf0000000 0x80000000 MIPS64 rel2 # only for 64-bit >>>4 byte 2 >>>>48 belong&0xf0000000 0x00000000 MIPS-I >>>>48 belong&0xf0000000 0x10000000 MIPS-II >>>>48 belong&0xf0000000 0x20000000 MIPS-III >>>>48 belong&0xf0000000 0x30000000 MIPS-IV >>>>48 belong&0xf0000000 0x40000000 MIPS-V >>>>48 belong&0xf0000000 0x50000000 MIPS32 >>>>48 belong&0xf0000000 0x60000000 MIPS64 >>>>48 belong&0xf0000000 0x70000000 MIPS32 rel2 >>>>48 belong&0xf0000000 0x80000000 MIPS64 rel2 >>18 beshort 9 Amdahl, >>18 beshort 10 MIPS (deprecated), >>18 beshort 11 RS6000, >>18 beshort 15 PA-RISC >>>50 beshort 0x0214 2.0 >>>48 beshort &0x0008 (LP64) >>18 beshort 16 nCUBE, >>18 beshort 17 Fujitsu VPP500, >>18 beshort 18 SPARC32PLUS, >>>36 belong&0xffff00 0x000100 V8+ Required, >>>36 belong&0xffff00 0x000200 Sun UltraSPARC1 Extensions Required, >>>36 belong&0xffff00 0x000400 HaL R1 Extensions Required, >>>36 belong&0xffff00 0x000800 Sun UltraSPARC3 Extensions Required, >>18 beshort 20 PowerPC or cisco 4500, >>18 beshort 21 64-bit PowerPC or cisco 7500, >>18 beshort 22 IBM S/390, >>18 beshort 23 Cell SPU, >>18 beshort 24 cisco SVIP, >>18 beshort 25 cisco 7200, >>18 beshort 36 NEC V800 or cisco 12000, >>18 beshort 37 Fujitsu FR20, >>18 beshort 38 TRW RH-32, >>18 beshort 39 Motorola RCE, >>18 beshort 40 ARM, >>18 beshort 41 Alpha, >>18 beshort 42 Renesas SH, >>18 beshort 43 SPARC V9, >>>48 belong&0xffff00 0x000200 Sun UltraSPARC1 Extensions Required, >>>48 belong&0xffff00 0x000400 HaL R1 Extensions Required, >>>48 belong&0xffff00 0x000800 Sun UltraSPARC3 Extensions Required, >>>48 belong&0x3 0 total store ordering, >>>48 belong&0x3 1 partial store ordering, >>>48 belong&0x3 2 relaxed memory ordering, >>18 beshort 44 Siemens Tricore Embedded Processor, >>18 beshort 45 Argonaut RISC Core, Argonaut Technologies Inc., >>18 beshort 46 Renesas H8/300, >>18 beshort 47 Renesas H8/300H, >>18 beshort 48 Renesas H8S, >>18 beshort 49 Renesas H8/500, >>18 beshort 50 IA-64, >>18 beshort 51 Stanford MIPS-X, >>18 beshort 52 Motorola Coldfire, >>18 beshort 53 Motorola M68HC12, >>18 beshort 73 Cray NV1, >>18 beshort 75 Digital VAX, >>18 beshort 88 Renesas M32R, >>18 leshort 92 OpenRISC, >>18 leshort 0x3426 OpenRISC (obsolete), >>18 leshort 0x8472 OpenRISC (obsolete), >>18 beshort 94 Tensilica Xtensa, >>18 beshort 97 NatSemi 32k, >>18 beshort 187 Tilera TILE64, >>18 beshort 188 Tilera TILEPro, >>18 beshort 191 Tilera TILE-Gx, >>18 beshort 0x18ad AVR32 (unofficial), >>18 beshort 0x9026 Alpha (unofficial), >>18 beshort 0xa390 IBM S/390 (obsolete), >>20 belong 0 invalid version >>20 belong 1 version 1 >>36 belong 1 MathCoPro/FPU/MAU Required # Up to now only 0, 1 and 2 are defined; I've seen a file with 0x83, it seemed # like proper ELF, but extracting the string had bad results. >4 byte <0x80 >>8 string >\0 (%s) >8 string \0 >>7 byte 0 (SYSV) >>7 byte 1 (HP-UX) >>7 byte 2 (NetBSD) >>7 byte 3 (GNU/Linux) >>7 byte 4 (GNU/Hurd) >>7 byte 5 (86Open) >>7 byte 6 (Solaris) >>7 byte 7 (Monterey) >>7 byte 8 (IRIX) >>7 byte 9 (FreeBSD) >>7 byte 10 (Tru64) >>7 byte 11 (Novell Modesto) >>7 byte 12 (OpenBSD) >8 string \2 >>7 byte 13 (OpenVMS) >>7 byte 97 (ARM) >>7 byte 255 (embedded) #------------------------------------------------------------------------------ # $File: encore,v 1.6 2009/09/19 16:28:09 christos Exp $ # encore: file(1) magic for Encore machines # # XXX - needs to have the byte order specified (NS32K was little-endian, # dunno whether they run the 88K in little-endian mode or not). # 0 short 0x154 Encore >20 short 0x107 executable >20 short 0x108 pure executable >20 short 0x10b demand-paged executable >20 short 0x10f unsupported executable >12 long >0 not stripped >22 short >0 - version %ld >22 short 0 - #>4 date x stamp %s 0 short 0x155 Encore unsupported executable >12 long >0 not stripped >22 short >0 - version %ld >22 short 0 - #>4 date x stamp %s #------------------------------------------------------------------------------ # $File: epoc,v 1.7 2009/09/19 16:28:09 christos Exp $ # EPOC : file(1) magic for EPOC documents [Psion Series 5/Osaris/Geofox 1] # Stefan Praszalowicz and Peter Breitenlohner # Useful information for improving this file can be found at: # http://software.frodo.looijaard.name/psiconv/formats/Index.html #------------------------------------------------------------------------------ 0 lelong 0x10000037 Psion Series 5 >4 lelong 0x10000039 font file >4 lelong 0x1000003A printer driver >4 lelong 0x1000003B clipboard >4 lelong 0x10000042 multi-bitmap image !:mime image/x-epoc-mbm >4 lelong 0x1000006A application information file >4 lelong 0x1000006D >>8 lelong 0x1000007D Sketch image !:mime image/x-epoc-sketch >>8 lelong 0x1000007E voice note >>8 lelong 0x1000007F Word file !:mime application/x-epoc-word >>8 lelong 0x10000085 OPL program (TextEd) !:mime application/x-epoc-opl >>8 lelong 0x10000088 Sheet file !:mime application/x-epoc-sheet >>8 lelong 0x100001C4 EasyFax initialisation file >4 lelong 0x10000073 OPO module !:mime application/x-epoc-opo >4 lelong 0x10000074 OPL application !:mime application/x-epoc-app >4 lelong 0x1000008A exported multi-bitmap image 0 lelong 0x10000041 Psion Series 5 ROM multi-bitmap image 0 lelong 0x10000050 Psion Series 5 >4 lelong 0x1000006D database >4 lelong 0x100000E4 ini file 0 lelong 0x10000079 Psion Series 5 binary: >4 lelong 0x00000000 DLL >4 lelong 0x10000049 comms hardware library >4 lelong 0x1000004A comms protocol library >4 lelong 0x1000005D OPX >4 lelong 0x1000006C application >4 lelong 0x1000008D DLL >4 lelong 0x100000AC logical device driver >4 lelong 0x100000AD physical device driver >4 lelong 0x100000E5 file transfer protocol >4 lelong 0x100000E5 file transfer protocol >4 lelong 0x10000140 printer definition >4 lelong 0x10000141 printer definition 0 lelong 0x1000007A Psion Series 5 executable #------------------------------------------------------------------------------ # $File: erlang,v 1.6 2010/09/20 19:19:17 rrt Exp $ # erlang: file(1) magic for Erlang JAM and BEAM files # URL: http://www.erlang.org/faq/x779.html#AEN812 # OTP R3-R4 0 string \0177BEAM! Old Erlang BEAM file >6 short >0 - version %d # OTP R5 and onwards 0 string FOR1 >8 string BEAM Erlang BEAM file # 4.2 version may have a copyright notice! 4 string Tue\ Jan\ 22\ 14:32:44\ MET\ 1991 Erlang JAM file - version 4.2 79 string Tue\ Jan\ 22\ 14:32:44\ MET\ 1991 Erlang JAM file - version 4.2 4 string 1.0\ Fri\ Feb\ 3\ 09:55:56\ MET\ 1995 Erlang JAM file - version 4.3 0 bequad 0x0000000000ABCDEF Erlang DETS file #------------------------------------------------------------------------------ # $File: esri,v 1.4 2009/09/19 16:28:09 christos Exp $ # ESRI Shapefile format (.shp .shx .dbf=DBaseIII) # Based on info from # 0 belong 9994 ESRI Shapefile >4 belong =0 >8 belong =0 >12 belong =0 >16 belong =0 >20 belong =0 >28 lelong x version %d >24 belong x length %d >32 lelong =0 type Null Shape >32 lelong =1 type Point >32 lelong =3 type PolyLine >32 lelong =5 type Polygon >32 lelong =8 type MultiPoint >32 lelong =11 type PointZ >32 lelong =13 type PolyLineZ >32 lelong =15 type PolygonZ >32 lelong =18 type MultiPointZ >32 lelong =21 type PointM >32 lelong =23 type PolyLineM >32 lelong =25 type PolygonM >32 lelong =28 type MultiPointM >32 lelong =31 type MultiPatch #------------------------------------------------------------------------------ # $File: fcs,v 1.4 2009/09/19 16:28:09 christos Exp $ # fcs: file(1) magic for FCS (Flow Cytometry Standard) data files # From Roger Leigh 0 string FCS1.0 Flow Cytometry Standard (FCS) data, version 1.0 0 string FCS2.0 Flow Cytometry Standard (FCS) data, version 2.0 0 string FCS3.0 Flow Cytometry Standard (FCS) data, version 3.0 #------------------------------------------------------------------------------ # $File: filesystems,v 1.61 2011/01/10 14:01:10 christos Exp $ # filesystems: file(1) magic for different filesystems # 0 string \366\366\366\366 PC formatted floppy with no filesystem # Sun disk labels # From /usr/include/sun/dklabel.h: 0774 beshort 0xdabe # modified by Joerg Jenderek, because original test # succeeds for Cabinet archive dao360.dl_ with negative blocks >0770 long >0 Sun disk label >>0 string x '%s >>>31 string >\0 \b%s >>>>63 string >\0 \b%s >>>>>95 string >\0 \b%s >>0 string x \b' >>0734 short >0 %d rpm, >>0736 short >0 %d phys cys, >>0740 short >0 %d alts/cyl, >>0746 short >0 %d interleave, >>0750 short >0 %d data cyls, >>0752 short >0 %d alt cyls, >>0754 short >0 %d heads/partition, >>0756 short >0 %d sectors/track, >>0764 long >0 start cyl %ld, >>0770 long x %ld blocks # Is there a boot block written 1 sector in? >512 belong&077777777 0600407 \b, boot block present # Joerg Jenderek: Smart Boot Manager backup file is 41 byte header + first sectors of disc # (http://btmgr.sourceforge.net/docs/user-guide-3.html) 0 string SBMBAKUP_ Smart Boot Manager backup file >9 string x \b, version %-5.5s >>14 string =_ >>>15 string x %-.1s >>>>16 string =_ \b. >>>>>17 string x \b%-.1s >>>>>>18 string =_ \b. >>>>>>>19 string x \b%-.1s >>>22 ubyte 0 >>>>21 ubyte x \b, from drive 0x%x >>>22 ubyte >0 >>>>21 string x \b, from drive %s # Joerg Jenderek # DOS Emulator image is 128 byte, null right padded header + harddisc image 0 string DOSEMU\0 >0x27E leshort 0xAA55 #offset is 128 >>19 ubyte 128 >>>(19.b-1) ubyte 0x0 DOS Emulator image >>>>7 ulelong >0 \b, %u heads >>>>11 ulelong >0 \b, %d sectors/track >>>>15 ulelong >0 \b, %d cylinders # updated by Joerg Jenderek at Sep 2007 # only for sector sizes with 512 or more Bytes 0x1FE leshort 0xAA55 x86 boot sector # to do also for sectors < than 512 Bytes and some other files, GRR #30 search/481 \x55\xAA x86 boot sector # not for BeOS floppy 1440k, MBRs #(11.s-2) uleshort 0xAA55 x86 boot sector >2 string OSBS \b, OS/BS MBR # J\xf6rg Jenderek >0x8C string Invalid\ partition\ table \b, MS-DOS MBR # dr-dos with some upper-, lowercase variants >0x9D string Invalid\ partition\ table$ >>181 string No\ Operating\ System$ >>>201 string Operating\ System\ load\ error$ \b, DR-DOS MBR, Version 7.01 to 7.03 >0x9D string Invalid\ partition\ table$ >>181 string No\ operating\ system$ >>>201 string Operating\ system\ load\ error$ \b, DR-DOS MBR, Version 7.01 to 7.03 >342 string Invalid\ partition\ table$ >>366 string No\ operating\ system$ >>>386 string Operating\ system\ load\ error$ \b, DR-DOS MBR, version 7.01 to 7.03 >295 string NEWLDR\0 >>302 string Bad\ PT\ $ >>>310 string No\ OS\ $ >>>>317 string OS\ load\ err$ >>>>>329 string Moved\ or\ missing\ IBMBIO.LDR\n\r >>>>>>358 string Press\ any\ key\ to\ continue.\n\r$ >>>>>>>387 string Copyright\ (c)\ 1984,1998 >>>>>>>>411 string Caldera\ Inc.\0 \b, DR-DOS MBR (IBMBIO.LDR) >0x10F string Ung\201ltige\ Partitionstabelle \b, MS-DOS MBR, german version 4.10.1998, 4.10.2222 >>0x1B8 ubelong >0 \b, Serial 0x%-.4x >0x8B string Ung\201ltige\ Partitionstabelle \b, MS-DOS MBR, german version 5.00 to 4.00.950 >271 string Invalid\ partition\ table\0 >>295 string Error\ loading\ operating\ system\0 >>>326 string Missing\ operating\ system\0 \b, mbr # >139 string Invalid\ partition\ table\0 >>163 string Error\ loading\ operating\ system\0 >>>194 string Missing\ operating\ system\0 \b, Microsoft Windows XP mbr # http://www.heise.de/ct/05/09/006/ page 184 #HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices\DosDevices\?:=Serial4Bytes+8Bytes >>>>0x1B8 ulelong >0 \b,Serial 0x%-.4x >300 string Invalid\ partition\ table\0 >>324 string Error\ loading\ operating\ system\0 >>>355 string Missing\ operating\ system\0 \b, Microsoft Windows XP MBR #??>>>389 string Invalid\ system\ disk >>>>0x1B8 ulelong >0 \b, Serial 0x%-.4x >300 string Ung\201ltige\ Partitionstabelle #split string to avoid error: String too long >>328 string Fehler\ beim\ Laden\ >>>346 string des\ Betriebssystems >>>>366 string Betriebssystem\ nicht\ vorhanden \b, Microsoft Windows XP MBR (german) >>>>>0x1B8 ulelong >0 \b, Serial 0x%-.4x #>0x145 string Default:\ F \b, FREE-DOS MBR #>0x14B string Default:\ F \b, FREE-DOS 1.0 MBR >0x145 search/7 Default:\ F \b, FREE-DOS MBR #>>313 string F0\ .\ .\ . #>>>322 string disk\ 1 #>>>>382 string FAT3 >64 string no\ active\ partition\ found >>96 string read\ error\ while\ reading\ drive \b, FREE-DOS Beta 0.9 MBR # Ranish Partition Manager http://www.ranish.com/part/ >387 search/4 \0\ Error!\r >>378 search/7 Virus! >>>397 search/4 Booting\ >>>>408 search/4 HD1/\0 \b, Ranish MBR ( >>>>>416 string Writing\ changes... \b2.37 >>>>>>438 ubyte x \b,0x%x dots >>>>>>440 ubyte >0 \b,virus check >>>>>>441 ubyte >0 \b,partition %c #2.38,2.42,2.44 >>>>>416 string !Writing\ changes... \b >>>>>>418 ubyte 1 \bvirus check, >>>>>>419 ubyte x \b0x%x seconds >>>>>>420 ubyte&0x0F >0 \b,partition >>>>>>>420 ubyte&0x0F <5 \b %x >>>>>>>420 ubyte&0x0F 0Xf \b ask >>>>>420 ubyte x \b) # >271 string Operating\ system\ loading >>296 string error\r \b, SYSLINUX MBR (2.10) # http://www.acronis.de/ >362 string MBR\ Error\ \0\r >>376 string ress\ any\ key\ to\ >>>392 string boot\ from\ floppy...\0 \b, Acronis MBR # added by Joerg Jenderek # http://www.visopsys.org/ # http://partitionlogic.org.uk/ >309 string No\ bootable\ partition\ found\r >>339 string I/O\ Error\ reading\ boot\ sector\r \b, Visopsys MBR >349 string No\ bootable\ partition\ found\r >>379 string I/O\ Error\ reading\ boot\ sector\r \b, simple Visopsys MBR # bootloader, bootmanager >0x40 string SBML # label with 11 characters of FAT 12 bit filesystem >>43 string SMART\ BTMGR >>>430 string SBMK\ Bad!\r \b, Smart Boot Manager # OEM-ID not always "SBM" #>>>>3 strings SBM >>>>6 string >\0 \b, version %s >382 string XOSLLOADXCF \b, eXtended Operating System Loader >6 string LILO \b, LInux i386 boot LOader >>120 string LILO \b, version 22.3.4 SuSe >>172 string LILO \b, version 22.5.8 Debian # updated by Joerg Jenderek at Oct 2008 # variables according to grub-0.97/stage1/stage1.S or # http://www.gnu.org/software/grub/manual/grub.html#Embedded-data # usual values are marked with comments to get only informations of strange GRUB loaders >342 search/60 \0Geom\0 #>0 ulelong x %x=0x009048EB , 0x2a9048EB 0 >>0x41 ubyte <2 >>>0x3E ubyte >2 \b; GRand Unified Bootloader # 0x3 for 0.5.95,0.93,0.94,0.96 0x4 for 1.90 >>>>0x3E ubyte x \b, stage1 version 0x%x #If it is 0xFF, use a drive passed by BIOS >>>>0x40 ubyte <0xFF \b, boot drive 0x%x # in most case 0,1,0x2e for GRUB 0.5.95 >>>>0x41 ubyte >0 \b, LBA flag 0x%x >>>>0x42 uleshort <0x8000 \b, stage2 address 0x%x #>>>>0x42 uleshort =0x8000 \b, stage2 address 0x%x (usual) >>>>0x42 uleshort >0x8000 \b, stage2 address 0x%x #>>>>0x44 ulelong =1 \b, 1st sector stage2 0x%x (default) >>>>0x44 ulelong >1 \b, 1st sector stage2 0x%x >>>>0x48 uleshort <0x800 \b, stage2 segment 0x%x #>>>>0x48 uleshort =0x800 \b, stage2 segment 0x%x (usual) >>>>0x48 uleshort >0x800 \b, stage2 segment 0x%x >>>>402 string Geom\0Hard\ Disk\0Read\0\ Error\0 >>>>>394 string stage1 \b, GRUB version 0.5.95 >>>>382 string Geom\0Hard\ Disk\0Read\0\ Error\0 >>>>>376 string GRUB\ \0 \b, GRUB version 0.93 or 1.94 >>>>383 string Geom\0Hard\ Disk\0Read\0\ Error\0 >>>>>377 string GRUB\ \0 \b, GRUB version 0.94 >>>>385 string Geom\0Hard\ Disk\0Read\0\ Error\0 >>>>>379 string GRUB\ \0 \b, GRUB version 0.95 or 0.96 >>>>391 string Geom\0Hard\ Disk\0Read\0\ Error\0 >>>>>385 string GRUB\ \0 \b, GRUB version 0.97 #unkown version >>>343 string Geom\0Read\0\ Error\0 >>>>321 string Loading\ stage1.5 \b, GRUB version x.y >>>380 string Geom\0Hard\ Disk\0Read\0\ Error\0 >>>>374 string GRUB\ \0 \b, GRUB version n.m # http://syslinux.zytor.com/ >478 string Boot\ failed\r >>495 string LDLINUX\ SYS \b, SYSLINUX bootloader (1.62) >480 string Boot\ failed\r >>495 string LDLINUX\ SYS \b, SYSLINUX bootloader (2.06 or 2.11) >484 string Boot\ error\r \b, SYSLINUX bootloader (3.11) >395 string chksum\0\ ERROR!\0 \b, Gujin bootloader # http://www.bcdwb.de/bcdw/index_e.htm >3 string BCDL >>498 string BCDL\ \ \ \ BIN \b, Bootable CD Loader (1.50Z) # mbr partition table entries # OEM-ID does not contain MicroSoft,NEWLDR,DOS,SYSLINUX,or MTOOLs >3 string !MS >>3 string !SYSLINUX >>>3 string !MTOOL >>>>3 string !NEWLDR >>>>>5 string !DOS # not FAT (32 bit) >>>>>>82 string !FAT32 #not Linux kernel >>>>>>>514 string !HdrS #not BeOS >>>>>>>>422 string !Be\ Boot\ Loader # active flag 0 or 0x80 and type > 0 >>>>>>>>>446 ubyte <0x81 >>>>>>>>>>446 ubyte&0x7F 0 >>>>>>>>>>>450 ubyte >0 \b; partition 1: ID=0x%x >>>>>>>>>>>>446 ubyte 0x80 \b, active >>>>>>>>>>>>447 ubyte x \b, starthead %u #>>>>>>>>>>>>448 ubyte x \b, start C_S: 0x%x #>>>>>>>>>>>>448 ubeshort&1023 x \b, startcylinder? %d >>>>>>>>>>>>454 ulelong x \b, startsector %u >>>>>>>>>>>>458 ulelong x \b, %u sectors # >>>>>>>>>462 ubyte <0x81 >>>>>>>>>>462 ubyte&0x7F 0 >>>>>>>>>>>466 ubyte >0 \b; partition 2: ID=0x%x >>>>>>>>>>>>462 ubyte 0x80 \b, active >>>>>>>>>>>>463 ubyte x \b, starthead %u #>>>>>>>>>>>>464 ubyte x \b, start C_S: 0x%x #>>>>>>>>>>>>464 ubeshort&1023 x \b, startcylinder? %d >>>>>>>>>>>>470 ulelong x \b, startsector %u >>>>>>>>>>>>474 ulelong x \b, %u sectors # >>>>>>>>>478 ubyte <0x81 >>>>>>>>>>478 ubyte&0x7F 0 >>>>>>>>>>>482 ubyte >0 \b; partition 3: ID=0x%x >>>>>>>>>>>>478 ubyte 0x80 \b, active >>>>>>>>>>>>479 ubyte x \b, starthead %u #>>>>>>>>>>>>480 ubyte x \b, start C_S: 0x%x #>>>>>>>>>>>>481 ubyte x \b, start C2S: 0x%x #>>>>>>>>>>>>480 ubeshort&1023 x \b, startcylinder? %d >>>>>>>>>>>>486 ulelong x \b, startsector %u >>>>>>>>>>>>490 ulelong x \b, %u sectors # >>>>>>>>>494 ubyte <0x81 >>>>>>>>>>494 ubyte&0x7F 0 >>>>>>>>>>>498 ubyte >0 \b; partition 4: ID=0x%x >>>>>>>>>>>>494 ubyte 0x80 \b, active >>>>>>>>>>>>495 ubyte x \b, starthead %u #>>>>>>>>>>>>496 ubyte x \b, start C_S: 0x%x #>>>>>>>>>>>>496 ubeshort&1023 x \b, startcylinder? %d >>>>>>>>>>>>502 ulelong x \b, startsector %u >>>>>>>>>>>>506 ulelong x \b, %u sectors # mbr partition table entries end # http://www.acronis.de/ #FAT label=ACRONIS\ SZ #OEM-ID=BOOTWIZ0 >442 string Non-system\ disk,\ >>459 string press\ any\ key...\x7\0 \b, Acronis Startup Recovery Loader # DOS names like F11.SYS are 8 right space padded bytes+3 bytes >>>477 ubyte&0xDF >0 >>>>477 string x \b %-.3s >>>>>480 ubyte&0xDF >0 >>>>>>480 string x \b%-.5s >>>>485 ubyte&0xDF >0 >>>>>485 string x \b.%-.3s # >185 string FDBOOT\ Version\ >>204 string \rNo\ Systemdisk.\ >>>220 string Booting\ from\ harddisk.\n\r >>>245 string Cannot\ load\ from\ harddisk.\n\r >>>>273 string Insert\ Systemdisk\ >>>>>291 string and\ press\ any\ key.\n\r \b, FDBOOT harddisk Bootloader >>>>>>200 string >\0 \b, version %-3s >242 string Bootsector\ from\ C.H.\ Hochst\204 >>278 string No\ Systemdisk.\ >>>293 string Booting\ from\ harddisk.\n\r >>>441 string Cannot\ load\ from\ harddisk.\n\r >>>>469 string Insert\ Systemdisk\ >>>>>487 string and\ press\ any\ key.\n\r \b, WinImage harddisk Bootloader >>>>>>209 string >\0 \b, version %-4.4s >(1.b+2) ubyte 0xe >>(1.b+3) ubyte 0x1f >>>(1.b+4) ubyte 0xbe >>>>(1.b+5) ubyte 0x77 >>>>(1.b+6) ubyte 0x7c >>>>>(1.b+7) ubyte 0xac >>>>>>(1.b+8) ubyte 0x22 >>>>>>>(1.b+9) ubyte 0xc0 >>>>>>>>(1.b+10) ubyte 0x74 >>>>>>>>>(1.b+11) ubyte 0xb >>>>>>>>>>(1.b+12) ubyte 0x56 >>>>>>>>>>(1.b+13) ubyte 0xb4 \b, mkdosfs boot message display >214 string Please\ try\ to\ install\ FreeDOS\ \b, DOS Emulator boot message display #>>244 string from\ dosemu-freedos-*-bin.tgz\r #>>>170 string Sorry,\ could\ not\ load\ an\ #>>>>195 string operating\ system.\r\n # >103 string This\ is\ not\ a\ bootable\ disk.\ >>132 string Please\ insert\ a\ bootable\ >>>157 string floppy\ and\r\n >>>>169 string press\ any\ key\ to\ try\ again...\r \b, FREE-DOS message display # >66 string Solaris\ Boot\ Sector >>99 string Incomplete\ MDBoot\ load. >>>89 string Version \b, Sun Solaris Bootloader >>>>97 byte x version %c # >408 string OS/2\ !!\ SYS01475\r\0 >>429 string OS/2\ !!\ SYS02025\r\0 >>>450 string OS/2\ !!\ SYS02027\r\0 >>>469 string OS2BOOT\ \ \ \ \b, IBM OS/2 Warp bootloader # >409 string OS/2\ !!\ SYS01475\r\0 >>430 string OS/2\ !!\ SYS02025\r\0 >>>451 string OS/2\ !!\ SYS02027\r\0 >>>470 string OS2BOOT\ \ \ \ \b, IBM OS/2 Warp Bootloader >112 string This\ disk\ is\ not\ bootable\r >>142 string If\ you\ wish\ to\ make\ it\ bootable >>>176 string run\ the\ DOS\ program\ SYS\ >>>200 string after\ the\r >>>>216 string system\ has\ been\ loaded\r\n >>>>>242 string Please\ insert\ a\ DOS\ diskette\ >>>>>271 string into\r\n\ the\ drive\ and\ >>>>>>292 string strike\ any\ key...\0 \b, IBM OS/2 Warp message display # XP >430 string NTLDR\ is\ missing\xFF\r\n >>449 string Disk\ error\xFF\r\n >>>462 string Press\ any\ key\ to\ restart\r \b, Microsoft Windows XP Bootloader # DOS names like NTLDR,CMLDR,$LDR$ are 8 right space padded bytes+3 bytes >>>>417 ubyte&0xDF >0 >>>>>417 string x %-.5s >>>>>>422 ubyte&0xDF >0 >>>>>>>422 string x \b%-.3s >>>>>425 ubyte&0xDF >0 >>>>>>425 string >\ \b.%-.3s # >>>>371 ubyte >0x20 >>>>>368 ubyte&0xDF >0 >>>>>>368 string x %-.5s >>>>>>>373 ubyte&0xDF >0 >>>>>>>>373 string x \b%-.3s >>>>>>376 ubyte&0xDF >0 >>>>>>>376 string x \b.%-.3s # >430 string NTLDR\ nicht\ gefunden\xFF\r\n >>453 string Datentr\204gerfehler\xFF\r\n >>>473 string Neustart\ mit\ beliebiger\ Taste\r \b, Microsoft Windows XP Bootloader (german) >>>>417 ubyte&0xDF >0 >>>>>417 string x %-.5s >>>>>>422 ubyte&0xDF >0 >>>>>>>422 string x \b%-.3s >>>>>425 ubyte&0xDF >0 >>>>>>425 string >\ \b.%-.3s # offset variant >>>>379 string \0 >>>>>368 ubyte&0xDF >0 >>>>>>368 string x %-.5s >>>>>>>373 ubyte&0xDF >0 >>>>>>>>373 string x \b%-.3s # >430 string NTLDR\ fehlt\xFF\r\n >>444 string Datentr\204gerfehler\xFF\r\n >>>464 string Neustart\ mit\ beliebiger\ Taste\r \b, Microsoft Windows XP Bootloader (2.german) >>>>417 ubyte&0xDF >0 >>>>>417 string x %-.5s >>>>>>422 ubyte&0xDF >0 >>>>>>>422 string x \b%-.3s >>>>>425 ubyte&0xDF >0 >>>>>>425 string >\ \b.%-.3s # variant >>>>371 ubyte >0x20 >>>>>368 ubyte&0xDF >0 >>>>>>368 string x %-.5s >>>>>>>373 ubyte&0xDF >0 >>>>>>>>373 string x \b%-.3s >>>>>>376 ubyte&0xDF >0 >>>>>>>376 string x \b.%-.3s # >430 string NTLDR\ fehlt\xFF\r\n >>444 string Medienfehler\xFF\r\n >>>459 string Neustart:\ Taste\ dr\201cken\r \b, Microsoft Windows XP Bootloader (3.german) >>>>371 ubyte >0x20 >>>>>368 ubyte&0xDF >0 >>>>>>368 string x %-.5s >>>>>>>373 ubyte&0xDF >0 >>>>>>>>373 string x \b%-.3s >>>>>>376 ubyte&0xDF >0 >>>>>>>376 string x \b.%-.3s # variant >>>>417 ubyte&0xDF >0 >>>>>417 string x %-.5s >>>>>>422 ubyte&0xDF >0 >>>>>>>422 string x \b%-.3s >>>>>425 ubyte&0xDF >0 >>>>>>425 string >\ \b.%-.3s # >430 string Datentr\204ger\ entfernen\xFF\r\n >>454 string Medienfehler\xFF\r\n >>>469 string Neustart:\ Taste\ dr\201cken\r \b, Microsoft Windows XP Bootloader (4.german) >>>>379 string \0 >>>>>368 ubyte&0xDF >0 >>>>>>368 string x %-.5s >>>>>>>373 ubyte&0xDF >0 >>>>>>>>373 string x \b%-.3s >>>>>>376 ubyte&0xDF >0 >>>>>>>376 string x \b.%-.3s # variant >>>>417 ubyte&0xDF >0 >>>>>417 string x %-.5s >>>>>>422 ubyte&0xDF >0 >>>>>>>422 string x \b%-.3s >>>>>425 ubyte&0xDF >0 >>>>>>425 string >\ \b.%-.3s # #>3 string NTFS\ \ \ \ >389 string Fehler\ beim\ Lesen\ >>407 string des\ Datentr\204gers >>>426 string NTLDR\ fehlt >>>>440 string NTLDR\ ist\ komprimiert >>>>>464 string Neustart\ mit\ Strg+Alt+Entf\r \b, Microsoft Windows XP Bootloader NTFS (german) #>3 string NTFS\ \ \ \ >313 string A\ disk\ read\ error\ occurred.\r >>345 string A\ kernel\ file\ is\ missing\ >>>370 string from\ the\ disk.\r >>>>484 string NTLDR\ is\ compressed >>>>>429 string Insert\ a\ system\ diskette\ >>>>>>454 string and\ restart\r\nthe\ system.\r \b, Microsoft Windows XP Bootloader NTFS # DOS loader variants different languages,offsets >472 ubyte&0xDF >0 >>389 string Invalid\ system\ disk\xFF\r\n >>>411 string Disk\ I/O\ error >>>>428 string Replace\ the\ disk,\ and\ >>>>>455 string press\ any\ key \b, Microsoft Windows 98 Bootloader #IO.SYS >>>>>>472 ubyte&0xDF >0 >>>>>>>472 string x \b %-.2s >>>>>>>>474 ubyte&0xDF >0 >>>>>>>>>474 string x \b%-.5s >>>>>>>>>>479 ubyte&0xDF >0 >>>>>>>>>>>479 string x \b%-.1s >>>>>>>480 ubyte&0xDF >0 >>>>>>>>480 string x \b.%-.3s #MSDOS.SYS >>>>>>>483 ubyte&0xDF >0 \b+ >>>>>>>>483 string x \b%-.5s >>>>>>>>>488 ubyte&0xDF >0 >>>>>>>>>>488 string x \b%-.3s >>>>>>>>491 ubyte&0xDF >0 >>>>>>>>>491 string x \b.%-.3s # >>390 string Invalid\ system\ disk\xFF\r\n >>>412 string Disk\ I/O\ error\xFF\r\n >>>>429 string Replace\ the\ disk,\ and\ >>>>>451 string then\ press\ any\ key\r \b, Microsoft Windows 98 Bootloader >>388 string Ungueltiges\ System\ \xFF\r\n >>>410 string E/A-Fehler\ \ \ \ \xFF\r\n >>>>427 string Datentraeger\ wechseln\ und\ >>>>>453 string Taste\ druecken\r \b, Microsoft Windows 95/98/ME Bootloader (german) #WINBOOT.SYS only not spaces (0xDF) >>>>>>497 ubyte&0xDF >0 >>>>>>>497 string x %-.5s >>>>>>>>502 ubyte&0xDF >0 >>>>>>>>>502 string x \b%-.1s >>>>>>>>>>503 ubyte&0xDF >0 >>>>>>>>>>>503 string x \b%-.1s >>>>>>>>>>>>504 ubyte&0xDF >0 >>>>>>>>>>>>>504 string x \b%-.1s >>>>>>505 ubyte&0xDF >0 >>>>>>>505 string x \b.%-.3s #IO.SYS >>>>>>472 ubyte&0xDF >0 or >>>>>>>472 string x \b %-.2s >>>>>>>>474 ubyte&0xDF >0 >>>>>>>>>474 string x \b%-.5s >>>>>>>>>>479 ubyte&0xDF >0 >>>>>>>>>>>479 string x \b%-.1s >>>>>>>480 ubyte&0xDF >0 >>>>>>>>480 string x \b.%-.3s #MSDOS.SYS >>>>>>>483 ubyte&0xDF >0 \b+ >>>>>>>>483 string x \b%-.5s >>>>>>>>>488 ubyte&0xDF >0 >>>>>>>>>>488 string x \b%-.3s >>>>>>>>491 ubyte&0xDF >0 >>>>>>>>>491 string x \b.%-.3s # >>390 string Ungueltiges\ System\ \xFF\r\n >>>412 string E/A-Fehler\ \ \ \ \xFF\r\n >>>>429 string Datentraeger\ wechseln\ und\ >>>>>455 string Taste\ druecken\r \b, Microsoft Windows 95/98/ME Bootloader (German) #WINBOOT.SYS only not spaces (0xDF) >>>>>>497 ubyte&0xDF >0 >>>>>>>497 string x %-.7s >>>>>>>>504 ubyte&0xDF >0 >>>>>>>>>504 string x \b%-.1s >>>>>>505 ubyte&0xDF >0 >>>>>>>505 string x \b.%-.3s #IO.SYS >>>>>>472 ubyte&0xDF >0 or >>>>>>>472 string x \b %-.2s >>>>>>>>474 ubyte&0xDF >0 >>>>>>>>>474 string x \b%-.6s >>>>>>>480 ubyte&0xDF >0 >>>>>>>>480 string x \b.%-.3s #MSDOS.SYS >>>>>>>483 ubyte&0xDF >0 \b+ >>>>>>>>483 string x \b%-.5s >>>>>>>>>488 ubyte&0xDF >0 >>>>>>>>>>488 string x \b%-.3s >>>>>>>>491 ubyte&0xDF >0 >>>>>>>>>491 string x \b.%-.3s # >>389 string Ungueltiges\ System\ \xFF\r\n >>>411 string E/A-Fehler\ \ \ \ \xFF\r\n >>>>428 string Datentraeger\ wechseln\ und\ >>>>>454 string Taste\ druecken\r \b, Microsoft Windows 95/98/ME Bootloader (GERMAN) # DOS names like IO.SYS,WINBOOT.SYS,MSDOS.SYS,WINBOOT.INI are 8 right space padded bytes+3 bytes >>>>>>472 string x %-.2s >>>>>>>474 ubyte&0xDF >0 >>>>>>>>474 string x \b%-.5s >>>>>>>>479 ubyte&0xDF >0 >>>>>>>>>479 string x \b%-.1s >>>>>>480 ubyte&0xDF >0 >>>>>>>480 string x \b.%-.3s >>>>>>483 ubyte&0xDF >0 \b+ >>>>>>>483 string x \b%-.5s >>>>>>>488 ubyte&0xDF >0 >>>>>>>>488 string x \b%-.2s >>>>>>>>490 ubyte&0xDF >0 >>>>>>>>>490 string x \b%-.1s >>>>>>>491 ubyte&0xDF >0 >>>>>>>>491 string x \b.%-.3s >479 ubyte&0xDF >0 >>416 string Kein\ System\ oder\ >>>433 string Laufwerksfehler >>>>450 string Wechseln\ und\ Taste\ dr\201cken \b, Microsoft DOS Bootloader (german) #IO.SYS >>>>>479 string x \b %-.2s >>>>>>481 ubyte&0xDF >0 >>>>>>>481 string x \b%-.6s >>>>>487 ubyte&0xDF >0 >>>>>>487 string x \b.%-.3s #MSDOS.SYS >>>>>>490 ubyte&0xDF >0 \b+ >>>>>>>490 string x \b%-.5s >>>>>>>>495 ubyte&0xDF >0 >>>>>>>>>495 string x \b%-.3s >>>>>>>498 ubyte&0xDF >0 >>>>>>>>498 string x \b.%-.3s # >376 search/41 Non-System\ disk\ or\ >>395 search/41 disk\ error\r >>>407 search/41 Replace\ and\ >>>>419 search/41 press\ \b, >>>>419 search/41 strike\ \b, old >>>>426 search/41 any\ key\ when\ ready\r MS or PC-DOS bootloader #449 Disk\ Boot\ failure\r MS 3.21 #466 Boot\ Failure\r MS 3.30 >>>>>468 search/18 \0 #IO.SYS,IBMBIO.COM >>>>>>&0 string x \b %-.2s >>>>>>>&-20 ubyte&0xDF >0 >>>>>>>>&-1 string x \b%-.4s >>>>>>>>>&-16 ubyte&0xDF >0 >>>>>>>>>>&-1 string x \b%-.2s >>>>>>&8 ubyte&0xDF >0 \b. >>>>>>>&-1 string x \b%-.3s #MSDOS.SYS,IBMDOS.COM >>>>>>&11 ubyte&0xDF >0 \b+ >>>>>>>&-1 string x \b%-.5s >>>>>>>>&-6 ubyte&0xDF >0 >>>>>>>>>&-1 string x \b%-.1s >>>>>>>>>>&-5 ubyte&0xDF >0 >>>>>>>>>>>&-1 string x \b%-.2s >>>>>>>&7 ubyte&0xDF >0 \b. >>>>>>>>&-1 string x \b%-.3s >441 string Cannot\ load\ from\ harddisk.\n\r >>469 string Insert\ Systemdisk\ >>>487 string and\ press\ any\ key.\n\r \b, MS (2.11) DOS bootloader #>43 string \224R-LOADER\ \ SYS =label >54 string SYS >>324 string VASKK >>>495 string NEWLDR\0 \b, DR-DOS Bootloader (LOADER.SYS) # >98 string Press\ a\ key\ to\ retry\0\r >>120 string Cannot\ find\ file\ \0\r >>>139 string Disk\ read\ error\0\r >>>>156 string Loading\ ...\0 \b, DR-DOS (3.41) Bootloader #DRBIOS.SYS >>>>>44 ubyte&0xDF >0 >>>>>>44 string x \b %-.6s >>>>>>>50 ubyte&0xDF >0 >>>>>>>>50 string x \b%-.2s >>>>>>52 ubyte&0xDF >0 >>>>>>>52 string x \b.%-.3s # >70 string IBMBIO\ \ COM >>472 string Cannot\ load\ DOS!\ >>>489 string Any\ key\ to\ retry \b, DR-DOS Bootloader >>471 string Cannot\ load\ DOS\ >>487 string press\ key\ to\ retry \b, Open-DOS Bootloader #?? >444 string KERNEL\ \ SYS >>314 string BOOT\ error! \b, FREE-DOS Bootloader >499 string KERNEL\ \ SYS >>305 string BOOT\ err!\0 \b, Free-DOS Bootloader >449 string KERNEL\ \ SYS >>319 string BOOT\ error! \b, FREE-DOS 0.5 Bootloader # >449 string Loading\ FreeDOS >>0x1AF ulelong >0 \b, FREE-DOS 0.95,1.0 Bootloader >>>497 ubyte&0xDF >0 >>>>497 string x \b %-.6s >>>>>503 ubyte&0xDF >0 >>>>>>503 string x \b%-.1s >>>>>>>504 ubyte&0xDF >0 >>>>>>>>504 string x \b%-.1s >>>>505 ubyte&0xDF >0 >>>>>505 string x \b.%-.3s # >331 string Error!.0 \b, FREE-DOS 1.0 bootloader # >125 string Loading\ FreeDOS...\r >>311 string BOOT\ error!\r \b, FREE-DOS bootloader >>>441 ubyte&0xDF >0 >>>>441 string x \b %-.6s >>>>>447 ubyte&0xDF >0 >>>>>>447 string x \b%-.1s >>>>>>>448 ubyte&0xDF >0 >>>>>>>>448 string x \b%-.1s >>>>449 ubyte&0xDF >0 >>>>>449 string x \b.%-.3s >124 string FreeDOS\0 >>331 string \ err\0 \b, FREE-DOS BETa 0.9 Bootloader # DOS names like KERNEL.SYS,KERNEL16.SYS,KERNEL32.SYS,METAKERN.SYS are 8 right space padded bytes+3 bytes >>>497 ubyte&0xDF >0 >>>>497 string x \b %-.6s >>>>>503 ubyte&0xDF >0 >>>>>>503 string x \b%-.1s >>>>>>>504 ubyte&0xDF >0 >>>>>>>>504 string x \b%-.1s >>>>505 ubyte&0xDF >0 >>>>>505 string x \b.%-.3s >>333 string \ err\0 \b, FREE-DOS BEta 0.9 Bootloader >>>497 ubyte&0xDF >0 >>>>497 string x \b %-.6s >>>>>503 ubyte&0xDF >0 >>>>>>503 string x \b%-.1s >>>>>>>504 ubyte&0xDF >0 >>>>>>>>504 string x \b%-.1s >>>>505 ubyte&0xDF >0 >>>>>505 string x \b.%-.3s >>334 string \ err\0 \b, FREE-DOS Beta 0.9 Bootloader >>>497 ubyte&0xDF >0 >>>>497 string x \b %-.6s >>>>>503 ubyte&0xDF >0 >>>>>>503 string x \b%-.1s >>>>>>>504 ubyte&0xDF >0 >>>>>>>>504 string x \b%-.1s >>>>505 ubyte&0xDF >0 >>>>>505 string x \b.%-.3s >336 string Error!\ >>343 string Hit\ a\ key\ to\ reboot. \b, FREE-DOS Beta 0.9sr1 Bootloader >>>497 ubyte&0xDF >0 >>>>497 string x \b %-.6s >>>>>503 ubyte&0xDF >0 >>>>>>503 string x \b%-.1s >>>>>>>504 ubyte&0xDF >0 >>>>>>>>504 string x \b%-.1s >>>>505 ubyte&0xDF >0 >>>>>505 string x \b.%-.3s # added by Joerg Jenderek # http://www.visopsys.org/ # http://partitionlogic.org.uk/ # OEM-ID=Visopsys >478 ulelong 0 >>(1.b+326) string I/O\ Error\ reading\ >>>(1.b+344) string Visopsys\ loader\r >>>>(1.b+361) string Press\ any\ key\ to\ continue.\r \b, Visopsys loader # http://alexfru.chat.ru/epm.html#bootprog >494 ubyte >0x4D >>495 string >E >>>495 string >>>3 string BootProg # It just looks for a program file name at the root directory # and loads corresponding file with following execution. # DOS names like STARTUP.BIN,STARTUPC.COM,STARTUPE.EXE are 8 right space padded bytes+3 bytes >>>>499 ubyte&0xDF >0 \b, COM/EXE Bootloader >>>>>499 string x \b %-.1s >>>>>>500 ubyte&0xDF >0 >>>>>>>500 string x \b%-.1s >>>>>>>>501 ubyte&0xDF >0 >>>>>>>>>501 string x \b%-.1s >>>>>>>>>>502 ubyte&0xDF >0 >>>>>>>>>>>502 string x \b%-.1s >>>>>>>>>>>>503 ubyte&0xDF >0 >>>>>>>>>>>>>503 string x \b%-.1s >>>>>>>>>>>>>>504 ubyte&0xDF >0 >>>>>>>>>>>>>>>504 string x \b%-.1s >>>>>>>>>>>>>>>>505 ubyte&0xDF >0 >>>>>>>>>>>>>>>>>505 string x \b%-.1s >>>>>>>>>>>>>>>>>>506 ubyte&0xDF >0 >>>>>>>>>>>>>>>>>>>506 string x \b%-.1s #name extension >>>>>507 ubyte&0xDF >0 \b. >>>>>>507 string x \b%-.1s >>>>>>>508 ubyte&0xDF >0 >>>>>>>>508 string x \b%-.1s >>>>>>>>>509 ubyte&0xDF >0 >>>>>>>>>>509 string x \b%-.1s #If the boot sector fails to read any other sector, #it prints a very short message ("RE") to the screen and hangs the computer. #If the boot sector fails to find needed program in the root directory, #it also hangs with another message ("NF"). >>>>>492 string RENF \b, FAT (12 bit) >>>>>495 string RENF \b, FAT (16 bit) # http://alexfru.chat.ru/epm.html#bootprog >494 ubyte >0x4D >>495 string >E >>>495 string >>>3 string BootProg # It just looks for a program file name at the root directory # and loads corresponding file with following execution. # DOS names like STARTUP.BIN,STARTUPC.COM,STARTUPE.EXE are 8 right space padded bytes+3 bytes >>>>499 ubyte&0xDF >0 \b, COM/EXE Bootloader >>>>>499 string x \b %-.1s >>>>>>500 ubyte&0xDF >0 >>>>>>>500 string x \b%-.1s >>>>>>>>501 ubyte&0xDF >0 >>>>>>>>>501 string x \b%-.1s >>>>>>>>>>502 ubyte&0xDF >0 >>>>>>>>>>>502 string x \b%-.1s >>>>>>>>>>>>503 ubyte&0xDF >0 >>>>>>>>>>>>>503 string x \b%-.1s >>>>>>>>>>>>>>504 ubyte&0xDF >0 >>>>>>>>>>>>>>>504 string x \b%-.1s >>>>>>>>>>>>>>>>505 ubyte&0xDF >0 >>>>>>>>>>>>>>>>>505 string x \b%-.1s >>>>>>>>>>>>>>>>>>506 ubyte&0xDF >0 >>>>>>>>>>>>>>>>>>>506 string x \b%-.1s #name extension >>>>>507 ubyte&0xDF >0 \b. >>>>>>507 string x \b%-.1s >>>>>>>508 ubyte&0xDF >0 >>>>>>>>508 string x \b%-.1s >>>>>>>>>509 ubyte&0xDF >0 >>>>>>>>>>509 string x \b%-.1s #If the boot sector fails to read any other sector, #it prints a very short message ("RE") to the screen and hangs the computer. #If the boot sector fails to find needed program in the root directory, #it also hangs with another message ("NF"). >>>>>492 string RENF \b, FAT (12 bit) >>>>>495 string RENF \b, FAT (16 bit) # x86 bootloader end # updated by Joerg Jenderek at Sep 2007 >3 ubyte 0 #no active flag >>446 ubyte 0 # partition 1 not empty >>>450 ubyte >0 # partitions 3,4 empty >>>>482 ubyte 0 >>>>>498 ubyte 0 # partition 2 ID=0,5,15 >>>>>>466 ubyte <0x10 >>>>>>>466 ubyte 0x05 \b, extended partition table >>>>>>>466 ubyte 0x0F \b, extended partition table (LBA) >>>>>>>466 ubyte 0x0 \b, extended partition table (last) # JuMP short bootcodeoffset NOP assembler instructions will usually be EB xx 90 # http://mirror.href.com/thestarman/asm/2bytejumps.htmm#FWD # older drives may use Near JuMP instruction E9 xx xx >0 lelong&0x009000EB 0x009000EB >0 lelong&0x000000E9 0x000000E9 # minimal short forward jump found 03cx?? # maximal short forward jump is 07fx >1 ubyte <0xff \b, code offset 0x%x # mtools-3.9.8/msdos.h # usual values are marked with comments to get only informations of strange FAT systems # valid sectorsize must be a power of 2 from 32 to 32768 >>11 uleshort&0x000f x >>>11 uleshort <32769 >>>>11 uleshort >31 >>>>>21 ubyte&0xf0 0xF0 >>>>>>3 string >\0 \b, OEM-ID "%8.8s" #http://mirror.href.com/thestarman/asm/debug/debug2.htm#IHC >>>>>>>8 string IHC \b cached by Windows 9M >>>>>>11 uleshort >512 \b, Bytes/sector %u #>>>>>>11 uleshort =512 \b, Bytes/sector %u=512 (usual) >>>>>>11 uleshort <512 \b, Bytes/sector %u >>>>>>13 ubyte >1 \b, sectors/cluster %u #>>>>>>13 ubyte =1 \b, sectors/cluster %u (usual on Floppies) >>>>>>14 uleshort >32 \b, reserved sectors %u #>>>>>>14 uleshort =32 \b, reserved sectors %u (usual Fat32) #>>>>>>14 uleshort >1 \b, reserved sectors %u #>>>>>>14 uleshort =1 \b, reserved sectors %u (usual FAT12,FAT16) >>>>>>14 uleshort <1 \b, reserved sectors %u >>>>>>16 ubyte >2 \b, FATs %u #>>>>>>16 ubyte =2 \b, FATs %u (usual) >>>>>>16 ubyte =1 \b, FAT %u >>>>>>16 ubyte >0 >>>>>>17 uleshort >0 \b, root entries %u #>>>>>>17 uleshort =0 \b, root entries %u=0 (usual Fat32) >>>>>>19 uleshort >0 \b, sectors %u (volumes <=32 MB) #>>>>>>19 uleshort =0 \b, sectors %u=0 (usual Fat32) >>>>>>21 ubyte >0xF0 \b, Media descriptor 0x%x #>>>>>>21 ubyte =0xF0 \b, Media descriptor 0x%x (usual floppy) >>>>>>21 ubyte <0xF0 \b, Media descriptor 0x%x >>>>>>22 uleshort >0 \b, sectors/FAT %u #>>>>>>22 uleshort =0 \b, sectors/FAT %u=0 (usual Fat32) >>>>>>26 ubyte >2 \b, heads %u #>>>>>>26 ubyte =2 \b, heads %u (usual floppy) >>>>>>26 ubyte =1 \b, heads %u #skip for Digital Research DOS (version 3.41) 1440 kB Bootdisk >>>>>>38 ubyte !0x70 >>>>>>>28 ulelong >0 \b, hidden sectors %u #>>>>>>>28 ulelong =0 \b, hidden sectors %u (usual floppy) >>>>>>>32 ulelong >0 \b, sectors %u (volumes > 32 MB) #>>>>>>>32 ulelong =0 \b, sectors %u (volumes > 32 MB) # FAT<32 specific >>>>>>82 string !FAT32 #>>>>>>>36 ubyte 0x80 \b, physical drive 0x%x=0x80 (usual harddisk) #>>>>>>>36 ubyte 0 \b, physical drive 0x%x=0 (usual floppy) >>>>>>>36 ubyte !0x80 >>>>>>>>36 ubyte !0 \b, physical drive 0x%x >>>>>>>37 ubyte >0 \b, reserved 0x%x #>>>>>>>37 ubyte =0 \b, reserved 0x%x >>>>>>>38 ubyte >0x29 \b, dos < 4.0 BootSector (0x%x) >>>>>>>38 ubyte <0x29 \b, dos < 4.0 BootSector (0x%x) >>>>>>>38 ubyte =0x29 >>>>>>>>39 ulelong x \b, serial number 0x%x >>>>>>>>43 string >>>>>>>43 string >NO\ NAME \b, label: "%11.11s" >>>>>>>>43 string =NO\ NAME \b, unlabeled >>>>>>>54 string FAT \b, FAT >>>>>>>>54 string FAT12 \b (12 bit) >>>>>>>>54 string FAT16 \b (16 bit) # FAT32 specific >>>>>>82 string FAT32 \b, FAT (32 bit) >>>>>>>36 ulelong x \b, sectors/FAT %u >>>>>>>40 uleshort >0 \b, extension flags %u #>>>>>>>40 uleshort =0 \b, extension flags %u >>>>>>>42 uleshort >0 \b, fsVersion %u #>>>>>>>42 uleshort =0 \b, fsVersion %u (usual) >>>>>>>44 ulelong >2 \b, rootdir cluster %u #>>>>>>>44 ulelong =2 \b, rootdir cluster %u #>>>>>>>44 ulelong =1 \b, rootdir cluster %u >>>>>>>48 uleshort >1 \b, infoSector %u #>>>>>>>48 uleshort =1 \b, infoSector %u (usual) >>>>>>>48 uleshort <1 \b, infoSector %u >>>>>>>50 uleshort >6 \b, Backup boot sector %u #>>>>>>>50 uleshort =6 \b, Backup boot sector %u (usual) >>>>>>>50 uleshort <6 \b, Backup boot sector %u >>>>>>>54 ulelong >0 \b, reserved1 0x%x >>>>>>>58 ulelong >0 \b, reserved2 0x%x >>>>>>>62 ulelong >0 \b, reserved3 0x%x # same structure as FAT1X >>>>>>>64 ubyte >0x80 \b, physical drive 0x%x #>>>>>>>64 ubyte =0x80 \b, physical drive 0x%x=80 (usual harddisk) >>>>>>>64 ubyte&0x7F >0 \b, physical drive 0x%x #>>>>>>>64 ubyte =0 \b, physical drive 0x%x=0 (usual floppy) >>>>>>>65 ubyte >0 \b, reserved 0x%x >>>>>>>66 ubyte >0x29 \b, dos < 4.0 BootSector (0x%x) >>>>>>>66 ubyte <0x29 \b, dos < 4.0 BootSector (0x%x) >>>>>>>66 ubyte =0x29 >>>>>>>>67 ulelong x \b, serial number 0x%x >>>>>>>>71 string >>>>>>71 string >NO\ NAME \b, label: "%11.11s" >>>>>>>71 string =NO\ NAME \b, unlabeled ### FATs end >0x200 lelong 0x82564557 \b, BSD disklabel # FATX 0 string FATX FATX filesystem data # Minix filesystems - Juan Cespedes 0x410 leshort 0x137f !:strength / 2 >0x402 beshort < 100 >0x402 beshort > -1 Minix filesystem, V1, %d zones >0x1e string minix \b, bootable 0x410 beshort 0x137f !:strength / 2 >0x402 beshort < 100 >0x402 beshort > -1 Minix filesystem, V1 (big endian), %d zones >0x1e string minix \b, bootable 0x410 leshort 0x138f !:strength / 2 >0x402 beshort < 100 >0x402 beshort > -1 Minix filesystem, V1, 30 char names, %d zones >0x1e string minix \b, bootable 0x410 beshort 0x138f !:strength / 2 >0x402 beshort < 100 >0x402 beshort > -1 Minix filesystem, V1, 30 char names (big endian), %d zones >0x1e string minix \b, bootable 0x410 leshort 0x2468 >0x402 beshort < 100 >>0x402 beshort > -1 Minix filesystem, V2, %d zones >0x1e string minix \b, bootable 0x410 beshort 0x2468 >0x402 beshort < 100 >0x402 beshort > -1 Minix filesystem, V2 (big endian), %d zones >0x1e string minix \b, bootable 0x410 leshort 0x2478 >0x402 beshort < 100 >0x402 beshort > -1 Minix filesystem, V2, 30 char names, %d zones >0x1e string minix \b, bootable 0x410 leshort 0x2478 >0x402 beshort < 100 >0x402 beshort > -1 Minix filesystem, V2, 30 char names, %d zones >0x1e string minix \b, bootable 0x410 beshort 0x2478 >0x402 beshort !0 Minix filesystem, V2, 30 char names (big endian), %d zones >0x1e string minix \b, bootable 0x410 leshort 0x4d5a >0x402 beshort !0 Minix filesystem, V3, %d zones >0x1e string minix \b, bootable # romfs filesystems - Juan Cespedes 0 string -rom1fs- romfs filesystem, version 1 >8 belong x %d bytes, >16 string x named %s. # netboot image - Juan Cespedes 0 lelong 0x1b031336L Netboot image, >4 lelong&0xFFFFFF00 0 >>4 lelong&0x100 0x000 mode 2 >>4 lelong&0x100 0x100 mode 3 >4 lelong&0xFFFFFF00 !0 unknown mode 0x18b string OS/2 OS/2 Boot Manager # updated by Joerg Jenderek at Oct 2008!! # http://syslinux.zytor.com/iso.php 0 ulelong 0x7c40eafa isolinux Loader # http://syslinux.zytor.com/pxe.php 0 ulelong 0x007c05ea pxelinux Loader 0 ulelong 0x60669c66 pxelinux Loader # added by Joerg Jenderek # In the second sector (+0x200) are variables according to grub-0.97/stage2/asm.S or # grub-1.94/kern/i386/pc/startup.S # http://www.gnu.org/software/grub/manual/grub.html#Embedded-data # usual values are marked with comments to get only informations of strange GRUB loaders 0x200 uleshort 0x70EA # found only version 3.{1,2} >0x206 ubeshort >0x0300 # GRUB version (0.5.)95,0.93,0.94,0.96,0.97 > "00" >>0x212 ubyte >0x29 >>>0x213 ubyte >0x29 # not iso9660_stage1_5 #>>>0 ulelong&0x00BE5652 0x00BE5652 >>>>0x213 ubyte >0x29 GRand Unified Bootloader # config_file for stage1_5 is 0xffffffff + default "/boot/grub/stage2" >>>>0x217 ubyte 0xFF stage1_5 >>>>0x217 ubyte <0xFF stage2 >>>>0x206 ubyte x \b version %u >>>>0x207 ubyte x \b.%u # module_size for 1.94 >>>>0x208 ulelong <0xffffff \b, installed partition %u #>>>>0x208 ulelong =0xffffff \b, %u (default) >>>>0x208 ulelong >0xffffff \b, installed partition %u # GRUB 0.5.95 unofficial >>>>0x20C ulelong&0x2E300000 0x2E300000 # 0=stage2 1=ffs 2=e2fs 3=fat 4=minix 5=reiserfs >>>>>0x20C ubyte x \b, identifier 0x%x #>>>>>0x20D ubyte =0 \b, LBA flag 0x%x (default) >>>>>0x20D ubyte >0 \b, LBA flag 0x%x # GRUB version as string >>>>>0x20E string >\0 \b, GRUB version %-s # for stage1_5 is 0xffffffff + config_file "/boot/grub/stage2" default >>>>>>0x215 ulong 0xffffffff >>>>>>>0x219 string >\0 \b, configuration file %-s >>>>>>0x215 ulong !0xffffffff >>>>>>>0x215 string >\0 \b, configuration file %-s # newer GRUB versions >>>>0x20C ulelong&0x2E300000 !0x2E300000 ##>>>>>0x20C ulelong =0 \b, saved entry %d (usual) >>>>>0x20C ulelong >0 \b, saved entry %d # for 1.94 contains kernel image size # for 0.93,0.94,0.96,0.97 # 0=stage2 1=ffs 2=e2fs 3=fat 4=minix 5=reiserfs 6=vstafs 7=jfs 8=xfs 9=iso9660 a=ufs2 >>>>>0x210 ubyte x \b, identifier 0x%x # The flag for LBA forcing is in most cases 0 #>>>>>0x211 ubyte =0 \b, LBA flag 0x%x (default) >>>>>0x211 ubyte >0 \b, LBA flag 0x%x # GRUB version as string >>>>>0x212 string >\0 \b, GRUB version %-s # for stage1_5 is 0xffffffff + config_file "/boot/grub/stage2" default >>>>>0x217 ulong 0xffffffff >>>>>>0x21b string >\0 \b, configuration file %-s >>>>>0x217 ulong !0xffffffff >>>>>>0x217 string >\0 \b, configuration file %-s 9564 lelong 0x00011954 Unix Fast File system [v1] (little-endian), >8404 string x last mounted on %s, #>9504 ledate x last checked at %s, >8224 ledate x last written at %s, >8401 byte x clean flag %d, >8228 lelong x number of blocks %d, >8232 lelong x number of data blocks %d, >8236 lelong x number of cylinder groups %d, >8240 lelong x block size %d, >8244 lelong x fragment size %d, >8252 lelong x minimum percentage of free blocks %d, >8256 lelong x rotational delay %dms, >8260 lelong x disk rotational speed %drps, >8320 lelong 0 TIME optimization >8320 lelong 1 SPACE optimization 42332 lelong 0x19540119 Unix Fast File system [v2] (little-endian) >&-1164 string x last mounted on %s, >&-696 string >\0 volume name %s, >&-304 leqldate x last written at %s, >&-1167 byte x clean flag %d, >&-1168 byte x readonly flag %d, >&-296 lequad x number of blocks %lld, >&-288 lequad x number of data blocks %lld, >&-1332 lelong x number of cylinder groups %d, >&-1328 lelong x block size %d, >&-1324 lelong x fragment size %d, >&-180 lelong x average file size %d, >&-176 lelong x average number of files in dir %d, >&-272 lequad x pending blocks to free %lld, >&-264 lelong x pending inodes to free %ld, >&-664 lequad x system-wide uuid %0llx, >&-1316 lelong x minimum percentage of free blocks %d, >&-1248 lelong 0 TIME optimization >&-1248 lelong 1 SPACE optimization 66908 lelong 0x19540119 Unix Fast File system [v2] (little-endian) >&-1164 string x last mounted on %s, >&-696 string >\0 volume name %s, >&-304 leqldate x last written at %s, >&-1167 byte x clean flag %d, >&-1168 byte x readonly flag %d, >&-296 lequad x number of blocks %lld, >&-288 lequad x number of data blocks %lld, >&-1332 lelong x number of cylinder groups %d, >&-1328 lelong x block size %d, >&-1324 lelong x fragment size %d, >&-180 lelong x average file size %d, >&-176 lelong x average number of files in dir %d, >&-272 lequad x pending blocks to free %lld, >&-264 lelong x pending inodes to free %ld, >&-664 lequad x system-wide uuid %0llx, >&-1316 lelong x minimum percentage of free blocks %d, >&-1248 lelong 0 TIME optimization >&-1248 lelong 1 SPACE optimization 9564 belong 0x00011954 Unix Fast File system [v1] (big-endian), >7168 belong 0x4c41424c Apple UFS Volume >>7186 string x named %s, >>7176 belong x volume label version %d, >>7180 bedate x created on %s, >8404 string x last mounted on %s, #>9504 bedate x last checked at %s, >8224 bedate x last written at %s, >8401 byte x clean flag %d, >8228 belong x number of blocks %d, >8232 belong x number of data blocks %d, >8236 belong x number of cylinder groups %d, >8240 belong x block size %d, >8244 belong x fragment size %d, >8252 belong x minimum percentage of free blocks %d, >8256 belong x rotational delay %dms, >8260 belong x disk rotational speed %drps, >8320 belong 0 TIME optimization >8320 belong 1 SPACE optimization 42332 belong 0x19540119 Unix Fast File system [v2] (big-endian) >&-1164 string x last mounted on %s, >&-696 string >\0 volume name %s, >&-304 beqldate x last written at %s, >&-1167 byte x clean flag %d, >&-1168 byte x readonly flag %d, >&-296 bequad x number of blocks %lld, >&-288 bequad x number of data blocks %lld, >&-1332 belong x number of cylinder groups %d, >&-1328 belong x block size %d, >&-1324 belong x fragment size %d, >&-180 belong x average file size %d, >&-176 belong x average number of files in dir %d, >&-272 bequad x pending blocks to free %lld, >&-264 belong x pending inodes to free %ld, >&-664 bequad x system-wide uuid %0llx, >&-1316 belong x minimum percentage of free blocks %d, >&-1248 belong 0 TIME optimization >&-1248 belong 1 SPACE optimization 66908 belong 0x19540119 Unix Fast File system [v2] (big-endian) >&-1164 string x last mounted on %s, >&-696 string >\0 volume name %s, >&-304 beqldate x last written at %s, >&-1167 byte x clean flag %d, >&-1168 byte x readonly flag %d, >&-296 bequad x number of blocks %lld, >&-288 bequad x number of data blocks %lld, >&-1332 belong x number of cylinder groups %d, >&-1328 belong x block size %d, >&-1324 belong x fragment size %d, >&-180 belong x average file size %d, >&-176 belong x average number of files in dir %d, >&-272 bequad x pending blocks to free %lld, >&-264 belong x pending inodes to free %ld, >&-664 bequad x system-wide uuid %0llx, >&-1316 belong x minimum percentage of free blocks %d, >&-1248 belong 0 TIME optimization >&-1248 belong 1 SPACE optimization # ext2/ext3 filesystems - Andreas Dilger # ext4 filesystem - Eric Sandeen # volume label and UUID Russell Coker # http://etbe.coker.com.au/2008/07/08/label-vs-uuid-vs-device/ 0x438 leshort 0xEF53 Linux >0x44c lelong x rev %d >0x43e leshort x \b.%d # No journal? ext2 >0x45c lelong ^0x0000004 ext2 filesystem data >>0x43a leshort ^0x0000001 (mounted or unclean) # Has a journal? ext3 or ext4 >0x45c lelong &0x0000004 # and small INCOMPAT? >>0x460 lelong <0x0000040 # and small RO_COMPAT? >>>0x464 lelong <0x0000008 ext3 filesystem data # else large RO_COMPAT? >>>0x464 lelong >0x0000007 ext4 filesystem data # else large INCOMPAT? >>0x460 lelong >0x000003f ext4 filesystem data >0x468 belong x \b, UUID=%08x >0x46c beshort x \b-%04x >0x46e beshort x \b-%04x >0x470 beshort x \b-%04x >0x472 belong x \b-%08x >0x476 beshort x \b%04x >0x478 string >0 \b, volume name "%s" # General flags for any ext* fs >0x460 lelong &0x0000004 (needs journal recovery) >0x43a leshort &0x0000002 (errors) # INCOMPAT flags >0x460 lelong &0x0000001 (compressed) #>0x460 lelong &0x0000002 (filetype) #>0x460 lelong &0x0000010 (meta bg) >0x460 lelong &0x0000040 (extents) >0x460 lelong &0x0000080 (64bit) #>0x460 lelong &0x0000100 (mmp) #>0x460 lelong &0x0000200 (flex bg) # RO_INCOMPAT flags #>0x464 lelong &0x0000001 (sparse super) >0x464 lelong &0x0000002 (large files) >0x464 lelong &0x0000008 (huge files) #>0x464 lelong &0x0000010 (gdt checksum) #>0x464 lelong &0x0000020 (many subdirs) #>0x463 lelong &0x0000040 (extra isize) # SGI disk labels - Nathan Scott 0 belong 0x0BE5A941 SGI disk label (volume header) # SGI XFS filesystem - Nathan Scott 0 belong 0x58465342 SGI XFS filesystem data >0x4 belong x (blksz %d, >0x68 beshort x inosz %d, >0x64 beshort ^0x2004 v1 dirs) >0x64 beshort &0x2004 v2 dirs) ############################################################################ # Minix-ST kernel floppy 0x800 belong 0x46fc2700 Atari-ST Minix kernel image >19 string \240\5\371\5\0\011\0\2\0 \b, 720k floppy >19 string \320\2\370\5\0\011\0\1\0 \b, 360k floppy ############################################################################ # Hmmm, is this a better way of detecting _standard_ floppy images ? 19 string \320\2\360\3\0\011\0\1\0 DOS floppy 360k >0x1FE leshort 0xAA55 \b, x86 hard disk boot sector 19 string \240\5\371\3\0\011\0\2\0 DOS floppy 720k >0x1FE leshort 0xAA55 \b, x86 hard disk boot sector 19 string \100\013\360\011\0\022\0\2\0 DOS floppy 1440k >0x1FE leshort 0xAA55 \b, x86 hard disk boot sector 19 string \240\5\371\5\0\011\0\2\0 DOS floppy 720k, IBM >0x1FE leshort 0xAA55 \b, x86 hard disk boot sector 19 string \100\013\371\5\0\011\0\2\0 DOS floppy 1440k, mkdosfs >0x1FE leshort 0xAA55 \b, x86 hard disk boot sector 19 string \320\2\370\5\0\011\0\1\0 Atari-ST floppy 360k 19 string \240\5\371\5\0\011\0\2\0 Atari-ST floppy 720k # Valid media descriptor bytes for MS-DOS: # # Byte Capacity Media Size and Type # ------------------------------------------------- # # F0 2.88 MB 3.5-inch, 2-sided, 36-sector # F0 1.44 MB 3.5-inch, 2-sided, 18-sector # F9 720K 3.5-inch, 2-sided, 9-sector # F9 1.2 MB 5.25-inch, 2-sided, 15-sector # FD 360K 5.25-inch, 2-sided, 9-sector # FF 320K 5.25-inch, 2-sided, 8-sector # FC 180K 5.25-inch, 1-sided, 9-sector # FE 160K 5.25-inch, 1-sided, 8-sector # FE 250K 8-inch, 1-sided, single-density # FD 500K 8-inch, 2-sided, single-density # FE 1.2 MB 8-inch, 2-sided, double-density # F8 ----- Fixed disk # # FC xxxK Apricot 70x1x9 boot disk. # # Originally a bitmap: # xxxxxxx0 Not two sided # xxxxxxx1 Double sided # xxxxxx0x Not 8 SPT # xxxxxx1x 8 SPT # xxxxx0xx Not Removable drive # xxxxx1xx Removable drive # 11111xxx Must be one. # # But now it's rather random: # 111111xx Low density disk # 00 SS, Not 8 SPT # 01 DS, Not 8 SPT # 10 SS, 8 SPT # 11 DS, 8 SPT # # 11111001 Double density 3 floppy disk, high density 5 # 11110000 High density 3 floppy disk # 11111000 Hard disk any format # # CDROM Filesystems # Modified for UDF by gerardo.cacciari@gmail.com 32769 string CD001 # !:mime application/x-iso9660-image >38913 string !NSR0 ISO 9660 CD-ROM filesystem data >38913 string NSR0 UDF filesystem data >>38917 string 1 (version 1.0) >>38917 string 2 (version 1.5) >>38917 string 3 (version 2.0) >>38917 byte >0x33 (unknown version, ID 0x%X) >>38917 byte <0x31 (unknown version, ID 0x%X) # "application id" which appears to be used as a volume label >32808 string/T >\0 '%s' >34816 string \000CD001\001EL\ TORITO\ SPECIFICATION (bootable) 37633 string CD001 ISO 9660 CD-ROM filesystem data (raw 2352 byte sectors) !:mime application/x-iso9660-image 32776 string CDROM High Sierra CD-ROM filesystem data # .cso files 0 string CISO Compressed ISO CD image # cramfs filesystem - russell@coker.com.au 0 lelong 0x28cd3d45 Linux Compressed ROM File System data, little endian >4 lelong x size %lu >8 lelong &1 version #2 >8 lelong &2 sorted_dirs >8 lelong &4 hole_support >32 lelong x CRC 0x%x, >36 lelong x edition %lu, >40 lelong x %lu blocks, >44 lelong x %lu files 0 belong 0x28cd3d45 Linux Compressed ROM File System data, big endian >4 belong x size %lu >8 belong &1 version #2 >8 belong &2 sorted_dirs >8 belong &4 hole_support >32 belong x CRC 0x%x, >36 belong x edition %lu, >40 belong x %lu blocks, >44 belong x %lu files # reiserfs - russell@coker.com.au 0x10034 string ReIsErFs ReiserFS V3.5 0x10034 string ReIsEr2Fs ReiserFS V3.6 0x10034 string ReIsEr3Fs ReiserFS V3.6.19 >0x1002c leshort x block size %d >0x10032 leshort &2 (mounted or unclean) >0x10000 lelong x num blocks %d >0x10040 lelong 1 tea hash >0x10040 lelong 2 yura hash >0x10040 lelong 3 r5 hash # EST flat binary format (which isn't, but anyway) # From: Mark Brown 0 string ESTFBINR EST flat binary # Aculab VoIP firmware # From: Mark Brown 0 string VoIP\ Startup\ and Aculab VoIP firmware >35 string x format %s # From: Mark Brown [old] # From: Behan Webster 0 belong 0x27051956 u-boot legacy uImage, >32 string x %s, >28 byte 0 Invalid os/ >28 byte 1 OpenBSD/ >28 byte 2 NetBSD/ >28 byte 3 FreeBSD/ >28 byte 4 4.4BSD/ >28 byte 5 Linux/ >28 byte 6 SVR4/ >28 byte 7 Esix/ >28 byte 8 Solaris/ >28 byte 9 Irix/ >28 byte 10 SCO/ >28 byte 11 Dell/ >28 byte 12 NCR/ >28 byte 13 LynxOS/ >28 byte 14 VxWorks/ >28 byte 15 pSOS/ >28 byte 16 QNX/ >28 byte 17 Firmware/ >28 byte 18 RTEMS/ >28 byte 19 ARTOS/ >28 byte 20 Unity OS/ >28 byte 21 INTEGRITY/ >29 byte 0 \bInvalid CPU, >29 byte 1 \bAlpha, >29 byte 2 \bARM, >29 byte 3 \bIntel x86, >29 byte 4 \bIA64, >29 byte 5 \bMIPS, >29 byte 6 \bMIPS 64-bit, >29 byte 7 \bPowerPC, >29 byte 8 \bIBM S390, >29 byte 9 \bSuperH, >29 byte 10 \bSparc, >29 byte 11 \bSparc 64-bit, >29 byte 12 \bM68K, >29 byte 13 \bNios-32, >29 byte 14 \bMicroBlaze, >29 byte 15 \bNios-II, >29 byte 16 \bBlackfin, >29 byte 17 \bAVR32, >29 byte 18 \bSTMicroelectronics ST200, >30 byte 0 Invalid Image >30 byte 1 Standalone Program >30 byte 2 OS Kernel Image >30 byte 3 RAMDisk Image >30 byte 4 Multi-File Image >30 byte 5 Firmware Image >30 byte 6 Script File >30 byte 7 Filesystem Image (any type) >30 byte 8 Binary Flat Device Tree BLOB >31 byte 0 (Not compressed), >31 byte 1 (gzip), >31 byte 2 (bzip2), >31 byte 3 (lzma), >12 belong x %d bytes, >8 bedate x %s, >16 belong x Load Address: 0x%08X, >20 belong x Entry Point: 0x%08X, >4 belong x Header CRC: 0x%08X, >24 belong x Data CRC: 0x%08X # JFFS2 file system 0 leshort 0x1984 Linux old jffs2 filesystem data little endian 0 beshort 0x1984 Linux old jffs2 filesystem data big endian 0 leshort 0x1985 Linux jffs2 filesystem data little endian 0 beshort 0x1985 Linux jffs2 filesystem data big endian # Squashfs 0 string sqsh Squashfs filesystem, big endian, >28 beshort x version %d. >30 beshort x \b%d, >28 beshort <3 >>8 belong x %d bytes, >28 beshort >2 >>28 beshort <4 >>>63 bequad x %lld bytes, >>28 beshort >3 >>>40 bequad x %lld bytes, #>>67 belong x %d bytes, >4 belong x %d inodes, >28 beshort <2 >>32 beshort x blocksize: %d bytes, >28 beshort >1 >>28 beshort <4 >>>51 belong x blocksize: %d bytes, >>28 beshort >3 >>>12 belong x blocksize: %d bytes, >28 beshort <4 >>39 bedate x created: %s >28 beshort >3 >>8 bedate x created: %s 0 string hsqs Squashfs filesystem, little endian, >28 leshort x version %d. >30 leshort x \b%d, >28 leshort <3 >>8 lelong x %d bytes, >28 leshort >2 >>28 leshort <4 >>>63 lequad x %lld bytes, >>28 leshort >3 >>>40 lequad x %lld bytes, #>>63 lelong x %d bytes, >4 lelong x %d inodes, >28 leshort <2 >>32 leshort x blocksize: %d bytes, >28 leshort >1 >>28 leshort <4 >>>51 lelong x blocksize: %d bytes, >>28 leshort >3 >>>12 lelong x blocksize: %d bytes, >28 leshort <4 >>39 ledate x created: %s >28 leshort >3 >>8 ledate x created: %s 0 string td\000 floppy image data (TeleDisk) # AFS Dump Magic # From: Ty Sarna 0 string \x01\xb3\xa1\x13\x22 AFS Dump >&0 belong x (v%d) >>&0 byte 0x76 >>>&0 belong x Vol %d, >>>>&0 byte 0x6e >>>>>&0 string x %s >>>>>>&1 byte 0x74 >>>>>>>&0 beshort 2 >>>>>>>>&4 bedate x on: %s >>>>>>>>&0 bedate =0 full dump >>>>>>>>&0 bedate !0 incremental since: %s #---------------------------------------------------------- #delta ISO Daniel Novotny (dnovotny@redhat.com) 0 string DISO Delta ISO data >4 belong x version %d # VMS backup savesets - gerardo.cacciari@gmail.com # 4 string \x01\x00\x01\x00\x01\x00 >(0.s+16) string \x01\x01 >>&(&0.b+8) byte 0x42 OpenVMS backup saveset data >>>40 lelong x (block size %d, >>>49 string >\0 original name '%s', >>>2 short 1024 VAX generated) >>>2 short 2048 AXP generated) >>>2 short 4096 I64 generated) # Summary: Oracle Clustered Filesystem # Created by: Aaron Botsis 8 string OracleCFS Oracle Clustered Filesystem, >4 long x rev %d >0 long x \b.%d, >560 string x label: %.64s, >136 string x mountpoint: %.128s # Summary: Oracle ASM tagged volume # Created by: Aaron Botsis 32 string ORCLDISK Oracle ASM Volume, >40 string x Disk Name: %0.12s 32 string ORCLCLRD Oracle ASM Volume (cleared), >40 string x Disk Name: %0.12s # Oracle Clustered Filesystem - Aaron Botsis 8 string OracleCFS Oracle Clustered Filesystem, >4 long x rev %d >0 long x \b.%d, >560 string x label: %.64s, >136 string x mountpoint: %.128s # Oracle ASM tagged volume - Aaron Botsis 32 string ORCLDISK Oracle ASM Volume, >40 string x Disk Name: %0.12s 32 string ORCLCLRD Oracle ASM Volume (cleared), >40 string x Disk Name: %0.12s # Compaq/HP RILOE floppy image # From: Dirk Jagdmann 0 string CPQRFBLO Compaq/HP RILOE floppy image #------------------------------------------------------------------------------ # Files-11 On-Disk Structure (File system for various RSX-11 and VMS flavours). # These bits come from LBN 1 (home block) of ODS-1, ODS-2 and ODS-5 volumes, # which is mapped to VBN 2 of [000000]INDEXF.SYS;1 - gerardo.cacciari@gmail.com # 1008 string DECFILE11 Files-11 On-Disk Structure >525 byte x Level %d >525 byte x (ODS-%d); >1017 string A RSX-11, VAX/VMS or OpenVMS VAX file system; >1017 string B >>525 byte 2 VAX/VMS or OpenVMS file system; >>525 byte 5 OpenVMS Alpha or Itanium file system; >984 string x volume label is '%-12.12s' # From: Thomas Klausner # http://filext.com/file-extension/DAA # describes the daa file format. The magic would be: 0 string DAA\x0\x0\x0\x0\x0 PowerISO Direct-Access-Archive # From Albert Cahalan # really le32 operation,destination,payloadsize (but quite predictable) # 01 00 00 00 00 00 00 c0 00 02 00 00 0 string \1\0\0\0\0\0\0\300\0\2\0\0 Marvell Libertas firmware # From Eric Sandeen # GFS2 0x10000 belong 0x01161970 >0x10018 belong 0x0000051d GFS1 Filesystem >>0x10024 belong x (blocksize %d, >>0x10060 string >\0 lockproto %s) >0x10018 belong 0x00000709 GFS2 Filesystem >>0x10024 belong x (blocksize %d, >>0x10060 string >\0 lockproto %s) # BTRFS 0x10040 string _BHRfS_M BTRFS Filesystem >0x1012b string >\0 (label "%s", >0x10090 lelong x sectorsize %d, >0x10094 lelong x nodesize %d, >0x10098 lelong x leafsize %d) # dvdisaster's .ecc # From: "Nelson A. de Oliveira" 0 string *dvdisaster* dvdisaster error correction file # xfs metadump image # mb_magic XFSM at 0; superblock magic XFSB at 1 << mb_blocklog # but can we do the << ? For now it's always 512 (0x200) anyway. 0 string XFSM >0x200 string XFSB XFS filesystem metadump image # Type: CROM filesystem # From: Werner Fink 0 string CROMFS CROMFS >6 string >\0 \b version %2.2s, >8 ulequad >0 \b block data at %lld, >16 ulequad >0 \b fblock table at %lld, >24 ulequad >0 \b inode table at %lld, >32 ulequad >0 \b root at %lld, >40 ulelong >0 \b fblock size = %ld, >44 ulelong >0 \b block size = %ld, >48 ulequad >0 \b bytes = %lld # Type: xfs metadump image # From: Daniel Novotny # mb_magic XFSM at 0; superblock magic XFSB at 1 << mb_blocklog # but can we do the << ? For now it's always 512 (0x200) anyway. 0 string XFSM >0x200 string XFSB XFS filesystem metadump image # Type: delta ISO # From: Daniel Novotny 0 string DISO Delta ISO data, >4 belong x version %d # JFS2 (Journaling File System) image. (Old JFS1 has superblock at 0x1000.) # See linux/fs/jfs/jfs_superblock.h for layout; see jfs_filsys.h for flags. # From: Adam Buchbinder 0x8000 string JFS1 # Because it's text-only magic, check a binary value (version) to be sure. # Should always be 2, but mkfs.jfs writes it as 1. Needs to be 2 or 1 to be # mountable. >&0 lelong <3 JFS2 filesystem image # Label is followed by a UUID; we have to limit string length to avoid # appending the UUID in the case of a 16-byte label. >>&144 regex [\x20-\x7E]{1,16} (label "%s") >>&0 lequad x \b, %lld blocks >>&8 lelong x \b, blocksize %d >>&32 lelong&0x00000006 >0 (dirty) >>&36 lelong >0 (compressed) #------------------------------------------------------------------------------ # $File: flash,v 1.9 2009/11/08 01:30:01 christos Exp $ # flash: file(1) magic for Macromedia Flash file format # # See # # http://www.macromedia.com/software/flash/open/ # 0 string FWS Macromedia Flash data, >3 byte x version %d !:mime application/x-shockwave-flash 0 string CWS Macromedia Flash data (compressed), !:mime application/x-shockwave-flash >3 byte x version %d # From: Cal Peake 0 string FLV Macromedia Flash Video !:mime video/x-flv # # Yosu Gomez 0 string AGD2\xbe\xb8\xbb\xcd\x00 Macromedia Freehand 7 Document 0 string AGD3\xbe\xb8\xbb\xcc\x00 Macromedia Freehand 8 Document # From Dave Wilson 0 string AGD4\xbe\xb8\xbb\xcb\x00 Macromedia Freehand 9 Document #------------------------------------------------------------------------------ # $File: fonts,v 1.23 2010/09/20 18:55:20 rrt Exp $ # fonts: file(1) magic for font data # 0 search/1 FONT ASCII vfont text 0 short 0436 Berkeley vfont data 0 short 017001 byte-swapped Berkeley vfont data # PostScript fonts (must precede "printer" entries), quinlan@yggdrasil.com 0 string %!PS-AdobeFont-1. PostScript Type 1 font text >20 string >\0 (%s) 6 string %!PS-AdobeFont-1. PostScript Type 1 font program data 0 string %!FontType1 PostScript Type 1 font program data 6 string %!FontType1 PostScript Type 1 font program data 0 string %!PS-Adobe-3.0\ Resource-Font PostScript Type 1 font text # X11 font files in SNF (Server Natural Format) format 0 belong 00000004 X11 SNF font data, MSB first 0 lelong 00000004 X11 SNF font data, LSB first # X11 Bitmap Distribution Format, from Daniel Quinlan (quinlan@yggdrasil.com) 0 search/1 STARTFONT\ X11 BDF font text # X11 fonts, from Daniel Quinlan (quinlan@yggdrasil.com) # PCF must come before SGI additions ("MIPSEL MIPS-II COFF" collides) 0 string \001fcp X11 Portable Compiled Font data >12 byte 0x02 \b, LSB first >12 byte 0x0a \b, MSB first 0 string D1.0\015 X11 Speedo font data #------------------------------------------------------------------------------ # FIGlet fonts and controlfiles # From figmagic supplied with Figlet version 2.2 # "David E. O'Brien" 0 string flf FIGlet font >3 string >2a version %-2.2s 0 string flc FIGlet controlfile >3 string >2a version %-2.2s # libGrx graphics lib fonts, from Albert Cahalan (acahalan@cs.uml.edu) # Used with djgpp (DOS Gnu C++), sometimes Linux or Turbo C++ 0 belong 0x14025919 libGrx font data, >8 leshort x %dx >10 leshort x \b%d >40 string x %s # Misc. DOS VGA fonts, from Albert Cahalan (acahalan@cs.uml.edu) 0 belong 0xff464f4e DOS code page font data collection 7 belong 0x00454741 DOS code page font data 7 belong 0x00564944 DOS code page font data (from Linux?) 4098 string DOSFONT DOSFONT2 encrypted font data # downloadable fonts for browser (prints type) anthon@mnt.org 0 string PFR1 PFR1 font >102 string >0 \b: %s # True Type fonts 0 string \000\001\000\000\000 TrueType font data !:mime application/x-font-ttf 0 string \007\001\001\000Copyright\ (c)\ 199 Adobe Multiple Master font 0 string \012\001\001\000Copyright\ (c)\ 199 Adobe Multiple Master font # TrueType/OpenType font collections (.ttc) # http://www.microsoft.com/typography/otspec/otff.htm 0 string ttcf TrueType font collection data >4 belong 0x00010000 \b, 1.0 >>8 belong >0 \b, %d fonts >4 belong 0x00020000 \b, 2.0 >>8 belong >0 \b, %d fonts # 0x44454947 = 'DSIG' >>>16 belong 0x44534947 \b, digitally signed # Opentype font data from Avi Bercovich 0 string OTTO OpenType font data !:mime application/vnd.ms-opentype # Gürkan Sengün , www.linuks.mine.nu 0 string SplineFontDB: Spline Font Database !:mime application/vnd.font-fontforge-sfd >14 string x version %s # EOT 34 string LP Embedded OpenType (EOT) !:mime application/vnd.ms-fontobject #------------------------------------------------------------------------------ # $File: fortran,v 1.6 2009/09/19 16:28:09 christos Exp $ # FORTRAN source 0 regex/100 \^[Cc][\ \t] FORTRAN program !:mime text/x-fortran #------------------------------------------------------------------------------ # $File: frame,v 1.12 2009/09/19 16:28:09 christos Exp $ # frame: file(1) magic for FrameMaker files # # This stuff came on a FrameMaker demo tape, most of which is # copyright, but this file is "published" as witness the following: # # Note that this is the Framemaker Maker Interchange Format, not the # Normal format which would be application/vnd.framemaker. # 0 string \11 string 5.5 (5.5 >11 string 5.0 (5.0 >11 string 4.0 (4.0 >11 string 3.0 (3.0 >11 string 2.0 (2.0 >11 string 1.0 (1.0 >14 byte x %c) 0 string \9 string 4.0 (4.0) >9 string 3.0 (3.0) >9 string 2.0 (2.0) >9 string 1.0 (1.x) 0 search/1 \17 string 3.0 (3.0) >17 string 2.0 (2.0) >17 string 1.0 (1.x) 0 string \17 string 1.01 (%s) 0 string \10 string 3.0 (3.0 >10 string 2.0 (2.0 >10 string 1.0 (1.0 >13 byte x %c) # XXX - this book entry should be verified, if you find one, uncomment this #0 string \6 string 3.0 (3.0) #>6 string 2.0 (2.0) #>6 string 1.0 (1.0) 0 string \= 4096 (or >4095, same thing), then it's # an executable, and is dynamically-linked if the "has run-time # loader information" bit is set. # # On x86, NetBSD says: # # If it's neither pure nor demand-paged: # # if it has the "has run-time loader information" bit set, it's # a dynamically-linked executable; # # if it doesn't have that bit set, then: # # if it has the "is position-independent" bit set, it's # position-independent; # # if the entry point is non-zero, it's an executable, otherwise # it's an object file. # # If it's pure: # # if it has the "has run-time loader information" bit set, it's # a dynamically-linked executable, otherwise it's just an # executable. # # If it's demand-paged: # # if it has the "has run-time loader information" bit set, # then: # # if the entry point is < 4096, it's a shared library; # # if the entry point is = 4096 or > 4096 (i.e., >= 4096), # it's a dynamically-linked executable); # # if it doesn't have the "has run-time loader information" bit # set, then it's just an executable. # # (On non-x86, NetBSD does much the same thing, except that it uses # 8192 on 68K - except for "68k4k", which is presumably "68K with 4K # pages - SPARC, and MIPS, presumably because Sun-3's and Sun-4's # had 8K pages; dunno about MIPS.) # # I suspect the two will differ only in perverse and uninteresting cases # ("shared" libraries that aren't demand-paged and whose pages probably # won't actually be shared, executables with entry points <4096). # # I leave it to those more familiar with FreeBSD and NetBSD to figure out # what the right answer is (although using ">4095", FreeBSD-style, is # probably better than separately checking for "=4096" and ">4096", # NetBSD-style). (The old "netbsd" file analyzed FreeBSD demand paged # executables using the NetBSD technique.) # 0 lelong&0377777777 041400407 FreeBSD/i386 >20 lelong <4096 >>3 byte&0xC0 &0x80 shared library >>3 byte&0xC0 0x40 PIC object >>3 byte&0xC0 0x00 object >20 lelong >4095 >>3 byte&0x80 0x80 dynamically linked executable >>3 byte&0x80 0x00 executable >16 lelong >0 not stripped 0 lelong&0377777777 041400410 FreeBSD/i386 pure >20 lelong <4096 >>3 byte&0xC0 &0x80 shared library >>3 byte&0xC0 0x40 PIC object >>3 byte&0xC0 0x00 object >20 lelong >4095 >>3 byte&0x80 0x80 dynamically linked executable >>3 byte&0x80 0x00 executable >16 lelong >0 not stripped 0 lelong&0377777777 041400413 FreeBSD/i386 demand paged >20 lelong <4096 >>3 byte&0xC0 &0x80 shared library >>3 byte&0xC0 0x40 PIC object >>3 byte&0xC0 0x00 object >20 lelong >4095 >>3 byte&0x80 0x80 dynamically linked executable >>3 byte&0x80 0x00 executable >16 lelong >0 not stripped 0 lelong&0377777777 041400314 FreeBSD/i386 compact demand paged >20 lelong <4096 >>3 byte&0xC0 &0x80 shared library >>3 byte&0xC0 0x40 PIC object >>3 byte&0xC0 0x00 object >20 lelong >4095 >>3 byte&0x80 0x80 dynamically linked executable >>3 byte&0x80 0x00 executable >16 lelong >0 not stripped # XXX gross hack to identify core files # cores start with a struct tss; we take advantage of the following: # byte 7: highest byte of the kernel stack pointer, always 0xfe # 8/9: kernel (ring 0) ss value, always 0x0010 # 10 - 27: ring 1 and 2 ss/esp, unused, thus always 0 # 28: low order byte of the current PTD entry, always 0 since the # PTD is page-aligned # 7 string \357\020\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 FreeBSD/i386 a.out core file >1039 string >\0 from '%s' # /var/run/ld.so.hints # What are you laughing about? 0 lelong 011421044151 ld.so hints file (Little Endian >4 lelong >0 \b, version %d) >4 belong <1 \b) 0 belong 011421044151 ld.so hints file (Big Endian >4 belong >0 \b, version %d) >4 belong <1 \b) # # Files generated by FreeBSD scrshot(1)/vidcontrol(1) utilities # 0 string SCRSHOT_ scrshot(1) screenshot, >8 byte x version %d, >9 byte 2 %d bytes in header, >>10 byte x %d chars wide by >>11 byte x %d chars high #------------------------------------------------------------------------------ # $File: fsav,v 1.11 2009/09/19 16:28:09 christos Exp $ # fsav: file(1) magic for datafellows fsav virus definition files # Anthon van der Neut (anthon@mnt.org) # ftp://ftp.f-prot.com/pub/{macrdef2.zip,nomacro.def} 0 beshort 0x1575 fsav macro virus signatures >8 leshort >0 (%d- >11 byte >0 \b%02d- >10 byte >0 \b%02d) # ftp://ftp.f-prot.com/pub/sign.zip #10 ubyte <12 #>9 ubyte <32 #>>8 ubyte 0x0a #>>>12 ubyte 0x07 #>>>>11 uleshort >0 fsav DOS/Windows virus signatures (%d- #>>>>10 byte 0 \b01- #>>>>10 byte 1 \b02- #>>>>10 byte 2 \b03- #>>>>10 byte 3 \b04- #>>>>10 byte 4 \b05- #>>>>10 byte 5 \b06- #>>>>10 byte 6 \b07- #>>>>10 byte 7 \b08- #>>>>10 byte 8 \b09- #>>>>10 byte 9 \b10- #>>>>10 byte 10 \b11- #>>>>10 byte 11 \b12- #>>>>9 ubyte >0 \b%02d) # ftp://ftp.f-prot.com/pub/sign2.zip #0 ubyte 0x62 #>1 ubyte 0xF5 #>>2 ubyte 0x1 #>>>3 ubyte 0x1 #>>>>4 ubyte 0x0e #>>>>>13 ubyte >0 fsav virus signatures #>>>>>>11 ubyte x size 0x%02x #>>>>>>12 ubyte x \b%02x #>>>>>>13 ubyte x \b%02x bytes # Joerg Jenderek: joerg dot jenderek at web dot de # http://www.clamav.net/doc/latest/html/node45.html # .cvd files start with a 512 bytes colon separated header # ClamAV-VDB:buildDate:version:signaturesNumbers:functionalityLevelRequired:MD5:Signature:builder:buildTime # + gzipped tarball files 0 string ClamAV-VDB: >11 string >\0 Clam AntiVirus database %-.23s >>34 string : >>>35 string !: \b, version >>>>35 string x \b%-.1s >>>>>36 string !: >>>>>>36 string x \b%-.1s >>>>>>>37 string !: >>>>>>>>37 string x \b%-.1s >>>>>>>>>38 string !: >>>>>>>>>>38 string x \b%-.1s >512 string \037\213 \b, gzipped >769 string ustar\0 \b, tarred # Type: Grisoft AVG AntiVirus # From: David Newgas 0 string AVG7_ANTIVIRUS_VAULT_FILE AVG 7 Antivirus vault file data #------------------------------------------------------------------------------ # $File: fusecompress,v 1.2 2011/08/08 09:05:55 christos Exp $ # fusecompress: file(1) magic for fusecompress 0 string \037\135\211 FuseCompress(ed) data >3 byte 0x00 (none format) >3 byte 0x01 (bz2 format) >3 byte 0x02 (gz format) >3 byte 0x03 (lzo format) >3 byte 0x04 (xor format) >3 byte >0x04 (unknown format) >4 long x uncompressed size: %d #------------------------------------------------------------------------------ # $File: games,v 1.13 2012/02/13 22:50:50 christos Exp $ # games: file(1) for games # Fabio Bonelli # Quake II - III data files 0 string IDP2 Quake II 3D Model file, >20 long x %lu skin(s), >8 long x (%lu x >12 long x %lu), >40 long x %lu frame(s), >16 long x Frame size %lu bytes, >24 long x %lu vertices/frame, >28 long x %lu texture coordinates, >32 long x %lu triangles/frame 0 string IBSP Quake >4 long 0x26 II Map file (BSP) >4 long 0x2E III Map file (BSP) 0 string IDS2 Quake II SP2 sprite file #--------------------------------------------------------------------------- # Doom and Quake # submitted by Nicolas Patrois 0 string \xcb\x1dBoom\xe6\xff\x03\x01 Boom or linuxdoom demo # some doom lmp files don't match, I've got one beginning with \x6d\x02\x01\x01 24 string LxD\ 203 Linuxdoom save >0 string x , name=%s >44 string x , world=%s # Quake 0 string PACK Quake I or II world or extension >8 lelong >0 \b, %d entries #0 string -1\x0a Quake I demo #>30 string x version %.4s #>61 string x level %s #0 string 5\x0a Quake I save # The levels # Quake 1 0 string 5\x0aIntroduction Quake I save: start Introduction 0 string 5\x0athe_Slipgate_Complex Quake I save: e1m1 The slipgate complex 0 string 5\x0aCastle_of_the_Damned Quake I save: e1m2 Castle of the damned 0 string 5\x0athe_Necropolis Quake I save: e1m3 The necropolis 0 string 5\x0athe_Grisly_Grotto Quake I save: e1m4 The grisly grotto 0 string 5\x0aZiggurat_Vertigo Quake I save: e1m8 Ziggurat vertigo (secret) 0 string 5\x0aGloom_Keep Quake I save: e1m5 Gloom keep 0 string 5\x0aThe_Door_To_Chthon Quake I save: e1m6 The door to Chthon 0 string 5\x0aThe_House_of_Chthon Quake I save: e1m7 The house of Chthon 0 string 5\x0athe_Installation Quake I save: e2m1 The installation 0 string 5\x0athe_Ogre_Citadel Quake I save: e2m2 The ogre citadel 0 string 5\x0athe_Crypt_of_Decay Quake I save: e2m3 The crypt of decay (dopefish lives!) 0 string 5\x0aUnderearth Quake I save: e2m7 Underearth (secret) 0 string 5\x0athe_Ebon_Fortress Quake I save: e2m4 The ebon fortress 0 string 5\x0athe_Wizard's_Manse Quake I save: e2m5 The wizard's manse 0 string 5\x0athe_Dismal_Oubliette Quake I save: e2m6 The dismal oubliette 0 string 5\x0aTermination_Central Quake I save: e3m1 Termination central 0 string 5\x0aVaults_of_Zin Quake I save: e3m2 Vaults of Zin 0 string 5\x0athe_Tomb_of_Terror Quake I save: e3m3 The tomb of terror 0 string 5\x0aSatan's_Dark_Delight Quake I save: e3m4 Satan's dark delight 0 string 5\x0athe_Haunted_Halls Quake I save: e3m7 The haunted halls (secret) 0 string 5\x0aWind_Tunnels Quake I save: e3m5 Wind tunnels 0 string 5\x0aChambers_of_Torment Quake I save: e3m6 Chambers of torment 0 string 5\x0athe_Sewage_System Quake I save: e4m1 The sewage system 0 string 5\x0aThe_Tower_of_Despair Quake I save: e4m2 The tower of despair 0 string 5\x0aThe_Elder_God_Shrine Quake I save: e4m3 The elder god shrine 0 string 5\x0athe_Palace_of_Hate Quake I save: e4m4 The palace of hate 0 string 5\x0aHell's_Atrium Quake I save: e4m5 Hell's atrium 0 string 5\x0athe_Nameless_City Quake I save: e4m8 The nameless city (secret) 0 string 5\x0aThe_Pain_Maze Quake I save: e4m6 The pain maze 0 string 5\x0aAzure_Agony Quake I save: e4m7 Azure agony 0 string 5\x0aShub-Niggurath's_Pit Quake I save: end Shub-Niggurath's pit # Quake DeathMatch levels 0 string 5\x0aPlace_of_Two_Deaths Quake I save: dm1 Place of two deaths 0 string 5\x0aClaustrophobopolis Quake I save: dm2 Claustrophobopolis 0 string 5\x0aThe_Abandoned_Base Quake I save: dm3 The abandoned base 0 string 5\x0aThe_Bad_Place Quake I save: dm4 The bad place 0 string 5\x0aThe_Cistern Quake I save: dm5 The cistern 0 string 5\x0aThe_Dark_Zone Quake I save: dm6 The dark zone # Scourge of Armagon 0 string 5\x0aCommand_HQ Quake I save: start Command HQ 0 string 5\x0aThe_Pumping_Station Quake I save: hip1m1 The pumping station 0 string 5\x0aStorage_Facility Quake I save: hip1m2 Storage facility 0 string 5\x0aMilitary_Complex Quake I save: hip1m5 Military complex (secret) 0 string 5\x0athe_Lost_Mine Quake I save: hip1m3 The lost mine 0 string 5\x0aResearch_Facility Quake I save: hip1m4 Research facility 0 string 5\x0aAncient_Realms Quake I save: hip2m1 Ancient realms 0 string 5\x0aThe_Gremlin's_Domain Quake I save: hip2m6 The gremlin's domain (secret) 0 string 5\x0aThe_Black_Cathedral Quake I save: hip2m2 The black cathedral 0 string 5\x0aThe_Catacombs Quake I save: hip2m3 The catacombs 0 string 5\x0athe_Crypt__ Quake I save: hip2m4 The crypt 0 string 5\x0aMortum's_Keep Quake I save: hip2m5 Mortum's keep 0 string 5\x0aTur_Torment Quake I save: hip3m1 Tur torment 0 string 5\x0aPandemonium Quake I save: hip3m2 Pandemonium 0 string 5\x0aLimbo Quake I save: hip3m3 Limbo 0 string 5\x0athe_Edge_of_Oblivion Quake I save: hipdm1 The edge of oblivion (secret) 0 string 5\x0aThe_Gauntlet Quake I save: hip3m4 The gauntlet 0 string 5\x0aArmagon's_Lair Quake I save: hipend Armagon's lair # Malice 0 string 5\x0aThe_Academy Quake I save: start The academy 0 string 5\x0aThe_Lab Quake I save: d1 The lab 0 string 5\x0aArea_33 Quake I save: d1b Area 33 0 string 5\x0aSECRET_MISSIONS Quake I save: d3b Secret missions 0 string 5\x0aThe_Hospital Quake I save: d10 The hospital (secret) 0 string 5\x0aThe_Genetics_Lab Quake I save: d11 The genetics lab (secret) 0 string 5\x0aBACK_2_MALICE Quake I save: d4b Back to Malice 0 string 5\x0aArea44 Quake I save: d1c Area 44 0 string 5\x0aTakahiro_Towers Quake I save: d2 Takahiro towers 0 string 5\x0aA_Rat's_Life Quake I save: d3 A rat's life 0 string 5\x0aInto_The_Flood Quake I save: d4 Into the flood 0 string 5\x0aThe_Flood Quake I save: d5 The flood 0 string 5\x0aNuclear_Plant Quake I save: d6 Nuclear plant 0 string 5\x0aThe_Incinerator_Plant Quake I save: d7 The incinerator plant 0 string 5\x0aThe_Foundry Quake I save: d7b The foundry 0 string 5\x0aThe_Underwater_Base Quake I save: d8 The underwater base 0 string 5\x0aTakahiro_Base Quake I save: d9 Takahiro base 0 string 5\x0aTakahiro_Laboratories Quake I save: d12 Takahiro laboratories 0 string 5\x0aStayin'_Alive Quake I save: d13 Stayin' alive 0 string 5\x0aB.O.S.S._HQ Quake I save: d14 B.O.S.S. HQ 0 string 5\x0aSHOWDOWN! Quake I save: d15 Showdown! # Malice DeathMatch levels 0 string 5\x0aThe_Seventh_Precinct Quake I save: ddm1 The seventh precinct 0 string 5\x0aSub_Station Quake I save: ddm2 Sub station 0 string 5\x0aCrazy_Eights! Quake I save: ddm3 Crazy eights! 0 string 5\x0aEast_Side_Invertationa Quake I save: ddm4 East side invertationa 0 string 5\x0aSlaughterhouse Quake I save: ddm5 Slaughterhouse 0 string 5\x0aDOMINO Quake I save: ddm6 Domino 0 string 5\x0aSANDRA'S_LADDER Quake I save: ddm7 Sandra's ladder 0 string MComprHD MAME CHD compressed hard disk image, >12 belong x version %lu # doom - submitted by Jon Dowland 0 string =IWAD doom main IWAD data >4 lelong x containing %d lumps 0 string =PWAD doom patch PWAD data >4 lelong x containing %d lumps # Build engine group files (Duke Nukem, Shadow Warrior, ...) # Extension: .grp # Created by: "Ganael Laplanche" 0 string KenSilverman Build engine group file >12 lelong x containing %d files # Summary: Warcraft 3 save # Extension: .w3g # Created by: "Nelson A. de Oliveira" 0 string Warcraft\ III\ recorded\ game %s # Summary: Warcraft 3 map # Extension: .w3m # Created by: "Nelson A. de Oliveira" 0 string HM3W Warcraft III map file # Summary: SGF Smart Game Format # Extension: .sgf # Reference: http://www.red-bean.com/sgf/ # Created by: Eduardo Sabbatella # Modified by (1): Abel Cheung (regex, more game format) # FIXME: Some games don't have GM (game type) 0 regex \\(;.*GM\\[[0-9]{1,2}\\] Smart Game Format >2 search/0x200/b GM[ >>&0 string 1] (Go) >>&0 string 2] (Othello) >>&0 string 3] (chess) >>&0 string 4] (Gomoku+Renju) >>&0 string 5] (Nine Men's Morris) >>&0 string 6] (Backgammon) >>&0 string 7] (Chinese chess) >>&0 string 8] (Shogi) >>&0 string 9] (Lines of Action) >>&0 string 10] (Ataxx) >>&0 string 11] (Hex) >>&0 string 12] (Jungle) >>&0 string 13] (Neutron) >>&0 string 14] (Philosopher's Football) >>&0 string 15] (Quadrature) >>&0 string 16] (Trax) >>&0 string 17] (Tantrix) >>&0 string 18] (Amazons) >>&0 string 19] (Octi) >>&0 string 20] (Gess) >>&0 string 21] (Twixt) >>&0 string 22] (Zertz) >>&0 string 23] (Plateau) >>&0 string 24] (Yinsh) >>&0 string 25] (Punct) >>&0 string 26] (Gobblet) >>&0 string 27] (hive) >>&0 string 28] (Exxit) >>&0 string 29] (Hnefatal) >>&0 string 30] (Kuba) >>&0 string 31] (Tripples) >>&0 string 32] (Chase) >>&0 string 33] (Tumbling Down) >>&0 string 34] (Sahara) >>&0 string 35] (Byte) >>&0 string 36] (Focus) >>&0 string 37] (Dvonn) >>&0 string 38] (Tamsk) >>&0 string 39] (Gipf) >>&0 string 40] (Kropki) ############################################## # NetImmerse/Gamebryo game engine entries # Summary: Gamebryo game engine file # Extension: .nif, .kf # Created by: Abel Cheung 0 string Gamebryo\ File\ Format,\ Version\ Gamebryo game engine file >&0 regex [0-9a-z.]+ \b, version %s # Summary: Gamebryo game engine file # Extension: .kfm # Created by: Abel Cheung 0 string ;Gamebryo\ KFM\ File\ Version\ Gamebryo game engine animation File >&0 regex [0-9a-z.]+ \b, version %s # Summary: NetImmerse game engine file # Extension .nif # Created by: Abel Cheung 0 string NetImmerse\ File\ Format,\ Versio >&0 string n\ NetImmerse game engine file >>&0 regex [0-9a-z.]+ \b, version %s # Type: SGF Smart Game Format # URL: http://www.red-bean.com/sgf/ # From: Eduardo Sabbatella 2 regex/c \\(;.*GM\\[[0-9]{1,2}\\] Smart Game Format >2 regex/c GM\\[1\\] - Go Game >2 regex/c GM\\[6\\] - BackGammon Game >2 regex/c GM\\[11\\] - Hex Game >2 regex/c GM\\[18\\] - Amazons Game >2 regex/c GM\\[19\\] - Octi Game >2 regex/c GM\\[20\\] - Gess Game >2 regex/c GM\\[21\\] - twix Game # Epic Games/Unreal Engine Package # 0 lelong 0x9E2A83C1 Unreal Engine Package, >4 leshort x version: %i >12 lelong !0 \b, names: %i >28 lelong !0 \b, imports: %i >20 lelong !0 \b, exports: %i #------------------------------------------------------------------------------ # $File: gcc,v 1.4 2009/09/19 16:28:09 christos Exp $ # gcc: file(1) magic for GCC special files # 0 string gpch GCC precompiled header # The version field is annoying. It's 3 characters, not zero-terminated. >5 byte x (version %c >6 byte x \b%c >7 byte x \b%c) # 67 = 'C', 111 = 'o', 43 = '+', 79 = 'O' >4 byte 67 for C >4 byte 111 for Objective C >4 byte 43 for C++ >4 byte 79 for Objective C++ #------------------------------------------------------------------------------ # $File: geo,v 1.1 2010/02/23 23:40:07 christos Exp $ # Geo- files from Kurt Schwehr ###################################################################### # # Acoustic Doppler Current Profilers (ADCP) # ###################################################################### 0 beshort 0x7f7f RDI Acoustic Doppler Current Profiler (ADCP) ###################################################################### # # Metadata # ###################################################################### 0 string Identification_Information FGDC ASCII metadata ###################################################################### # # Seimsic / Subbottom # ###################################################################### # Knudsen subbottom chirp profiler - Binary File Format: B9 # KEB D409-03167 V1.75 Huffman 0 string KEB\ Knudsen seismic KEL binary (KEB) - >4 regex [-A-Z0-9]* Software: %s >>&1 regex V[0-9]*\.[0-9]* version %s ###################################################################### # # LIDAR - Laser altimetry or bathy # ###################################################################### # Caris LIDAR format for LADS comes as two parts... ascii location file and binary waveform data 0 string HCA LADS Caris Ascii Format (CAF) bathymetric lidar >4 regex [0-9]*\.[0-9]* version %s 0 string HCB LADS Caris Binary Format (CBF) bathymetric lidar waveform data >3 byte x version %d . >4 byte x %d ###################################################################### # # MULTIBEAM SONARS http://www.ldeo.columbia.edu/res/pi/MB-System/formatdoc/ # ###################################################################### # GeoAcoustics - GeoSwath Plus 4 beshort 0x2002 GeoSwath RDF 0 string Start:- GeoSwatch auf text file # Seabeam 2100 # mbsystem code mb41 0 string SB2100 SeaBeam 2100 multibeam sonar 0 string SB2100DR SeaBeam 2100 DR multibeam sonar 0 string SB2100PR SeaBeam 2100 PR multibeam sonar # This corresponds to MB-System format 94, L-3/ELAC/SeaBeam XSE vendor # format. It is the format of our upgraded SeaBeam 2112 on R/V KNORR. 0 string $HSF XSE multibeam # mb121 http://www.saic.com/maritime/gsf/ 8 string GSF-v SAIC generic sensor format (GSF) sonar data, >&0 regex [0-9]*\.[0-9]* version %s # MGD77 - http://www.ngdc.noaa.gov/mgg/dat/geodas/docs/mgd77.htm # mb161 9 string MGD77 MGD77 Header, Marine Geophysical Data Exchange Format # MBSystem processing caches the mbinfo output 1 string Swath\ Data\ File: mbsystem info cache # Caris John Hughes Clark format 0 string HDCS Caris multibeam sonar related data 1 string Start/Stop\ parameter\ header: Caris ASCII project summary ###################################################################### # # Visualization and 3D modeling # ###################################################################### # IVS - IVS3d.com Tagged Data Represetation 0 string %%\ TDR\ 2.0 IVS Fledermaus TDR file # http://www.ecma-international.org/publications/standards/Ecma-363.htm # 3D in PDFs 0 string U3D ECMA-363, Universal 3D ###################################################################### # # Support files # ###################################################################### # https://midas.psi.ch/elog/ 0 string $@MID@$ elog journal entry #------------------------------------------------------------------------------ # $File: geos,v 1.4 2009/09/19 16:28:09 christos Exp $ # GEOS files (Vidar Madsen, vidar@gimp.org) # semi-commonly used in embedded and handheld systems. 0 belong 0xc745c153 GEOS >40 byte 1 executable >40 byte 2 VMFile >40 byte 3 binary >40 byte 4 directory label >40 byte <1 unknown >40 byte >4 unknown >4 string >\0 \b, name "%s" #>44 short x \b, version %d #>46 short x \b.%d #>48 short x \b, rev %d #>50 short x \b.%d #>52 short x \b, proto %d #>54 short x \br%d #>168 string >\0 \b, copyright "%s" #------------------------------------------------------------------------------ # $File: gimp,v 1.7 2010/09/20 18:55:20 rrt Exp $ # GIMP Gradient: file(1) magic for the GIMP's gradient data files # by Federico Mena 0 string GIMP\ Gradient GIMP gradient data #------------------------------------------------------------------------------ # XCF: file(1) magic for the XCF image format used in the GIMP developed # by Spencer Kimball and Peter Mattis # ('Bucky' LaDieu, nega@vt.edu) 0 string gimp\ xcf GIMP XCF image data, !:mime image/x-xcf >9 string file version 0, >9 string v version >>10 string >\0 %s, >14 belong x %lu x >18 belong x %lu, >22 belong 0 RGB Color >22 belong 1 Greyscale >22 belong 2 Indexed Color >22 belong >2 Unknown Image Type. #------------------------------------------------------------------------------ # XCF: file(1) magic for the patterns used in the GIMP, developed # by Spencer Kimball and Peter Mattis # ('Bucky' LaDieu, nega@vt.edu) 20 string GPAT GIMP pattern data, >24 string x %s #------------------------------------------------------------------------------ # XCF: file(1) magic for the brushes used in the GIMP, developed # by Spencer Kimball and Peter Mattis # ('Bucky' LaDieu, nega@vt.edu) 20 string GIMP GIMP brush data # GIMP Curves File # From: "Nelson A. de Oliveira" 0 string #\040GIMP\040Curves\040File GIMP curve file #------------------------------------------------------------------------------ # $File: gnome-keyring,v 1.2 2009/09/19 16:28:09 christos Exp $ # GNOME keyring # Contributed by Josh Triplett # FIXME: Could be simplified if pstring supported two-byte counts 0 string GnomeKeyring\n\r\0\n GNOME keyring >&0 ubyte 0 \b, major version 0 >>&0 ubyte 0 \b, minor version 0 >>>&0 ubyte 0 \b, crypto type 0 (AEL) >>>&0 ubyte >0 \b, crypto type %hhu (unknown) >>>&1 ubyte 0 \b, hash type 0 (MD5) >>>&1 ubyte >0 \b, hash type %hhu (unknown) >>>&2 ubelong 0xFFFFFFFF \b, name NULL >>>&2 ubelong !0xFFFFFFFF >>>>&-4 ubelong >255 \b, name too long for file's pstring type >>>>&-4 ubelong <256 >>>>>&-1 pstring x \b, name "%s" >>>>>>&0 ubeqdate x \b, last modified %s >>>>>>&8 ubeqdate x \b, created %s >>>>>>&16 ubelong &1 >>>>>>>&0 ubelong x \b, locked if idle for %u seconds >>>>>>&16 ubelong ^1 \b, not locked if idle >>>>>>&24 ubelong x \b, hash iterations %u >>>>>>&28 ubequad x \b, salt %llu >>>>>>&52 ubelong x \b, %u item(s) #------------------------------------------------------------------------------ # $File: gnu,v 1.13 2012/01/03 17:16:54 christos Exp $ # gnu: file(1) magic for various GNU tools # # GNU nlsutils message catalog file format # # GNU message catalog (.mo and .gmo files) 0 string \336\22\4\225 GNU message catalog (little endian), >6 leshort x revision %d. >4 leshort >0 \b%d, >>8 lelong x %d messages, >>36 lelong x %d sysdep messages >4 leshort =0 \b%d, >>8 lelong x %d messages 0 string \225\4\22\336 GNU message catalog (big endian), >4 beshort x revision %d. >6 beshort >0 \b%d, >>8 belong x %d messages, >>36 belong x %d sysdep messages >6 beshort =0 \b%d, >>8 belong x %d messages # GnuPG # The format is very similar to pgp 0 string \001gpg GPG key trust database >4 byte x version %d # Note: magic.mime had 0x8501 for the next line instead of 0x8502 0 beshort 0x8502 GPG encrypted data !:mime text/PGP # encoding: data # This magic is not particularly good, as the keyrings don't have true # magic. Nevertheless, it covers many keyrings. 0 beshort 0x9901 GPG key public ring !:mime application/x-gnupg-keyring # Gnumeric spreadsheet # This entry is only semi-helpful, as Gnumeric compresses its files, so # they will ordinarily reported as "compressed", but at least -z helps 39 string = # gnu find magic 0 string \0LOCATE GNU findutils locate database data >7 string >\0 \b, format %s >7 string 02 \b (frcode) # Files produced by GNU gettext 0 long 0xDE120495 GNU-format message catalog data 0 long 0x950412DE GNU-format message catalog data # gettext message catalogue 0 regex \^msgid\ GNU gettext message catalogue text !:mime text/x-po #------------------------------------------------------------------------------ # $File: gnumeric,v 1.4 2009/09/19 16:28:09 christos Exp $ # gnumeric: file(1) magic for Gnumeric spreadsheet # This entry is only semi-helpful, as Gnumeric compresses its files, so # they will ordinarily reported as "compressed", but at least -z helps 39 string =39 byte >0 - version %c # ACE/gr ascii 0 string #\ xvgr\ parameter\ file ACE/gr ascii file 0 string #\ xmgr\ parameter\ file ACE/gr ascii file 0 string #\ ACE/gr\ parameter\ file ACE/gr ascii file # Grace projects 0 string #\ Grace\ project\ file Grace project file >23 string @version\ (version >>32 byte >0 %c >>33 string >\0 \b.%.2s >>35 string >\0 \b.%.2s) # ACE/gr fit description files 0 string #\ ACE/gr\ fit\ description\ ACE/gr fit description file # end of ACE/gr and Grace type files - PLEASE DO NOT REMOVE THIS LINE #------------------------------------------------------------------------------ # $File: graphviz,v 1.7 2009/09/19 16:28:09 christos Exp $ # graphviz: file(1) magic for http://www.graphviz.org/ # FIXME: These patterns match too generally. For example, the first # line matches a LaTeX file containing the word "graph" (with a { # following later) and the second line matches this file. #0 regex/100 [\r\n\t\ ]*graph[\r\n\t\ ]+.*\\{ graphviz graph text #!:mime text/vnd.graphviz #0 regex/100 [\r\n\t\ ]*digraph[\r\n\t\ ]+.*\\{ graphviz digraph text #!:mime text/vnd.graphviz #------------------------------------------------------------------------------ # $File: gringotts,v 1.5 2009/09/19 16:28:09 christos Exp $ # gringotts: file(1) magic for Gringotts # http://devel.pluto.linux.it/projects/Gringotts/ # author: Germano Rizzo #GRG3????Y 0 string GRG Gringotts data file #file format 1 >3 string 1 v.1, MCRYPT S2K, SERPENT crypt, SHA-256 hash, ZLib lvl.9 #file format 2 >3 string 2 v.2, MCRYPT S2K, >>8 byte&0x70 0x00 RIJNDAEL-128 crypt, >>8 byte&0x70 0x10 SERPENT crypt, >>8 byte&0x70 0x20 TWOFISH crypt, >>8 byte&0x70 0x30 CAST-256 crypt, >>8 byte&0x70 0x40 SAFER+ crypt, >>8 byte&0x70 0x50 LOKI97 crypt, >>8 byte&0x70 0x60 3DES crypt, >>8 byte&0x70 0x70 RIJNDAEL-256 crypt, >>8 byte&0x08 0x00 SHA1 hash, >>8 byte&0x08 0x08 RIPEMD-160 hash, >>8 byte&0x04 0x00 ZLib >>8 byte&0x04 0x04 BZip2 >>8 byte&0x03 0x00 lvl.0 >>8 byte&0x03 0x01 lvl.3 >>8 byte&0x03 0x02 lvl.6 >>8 byte&0x03 0x03 lvl.9 #file format 3 >3 string 3 v.3, OpenPGP S2K, >>8 byte&0x70 0x00 RIJNDAEL-128 crypt, >>8 byte&0x70 0x10 SERPENT crypt, >>8 byte&0x70 0x20 TWOFISH crypt, >>8 byte&0x70 0x30 CAST-256 crypt, >>8 byte&0x70 0x40 SAFER+ crypt, >>8 byte&0x70 0x50 LOKI97 crypt, >>8 byte&0x70 0x60 3DES crypt, >>8 byte&0x70 0x70 RIJNDAEL-256 crypt, >>8 byte&0x08 0x00 SHA1 hash, >>8 byte&0x08 0x08 RIPEMD-160 hash, >>8 byte&0x04 0x00 ZLib >>8 byte&0x04 0x04 BZip2 >>8 byte&0x03 0x00 lvl.0 >>8 byte&0x03 0x01 lvl.3 >>8 byte&0x03 0x02 lvl.6 >>8 byte&0x03 0x03 lvl.9 #file format >3 >3 string >3 v.%.1s (unknown details) #------------------------------------------------------------------------------ # $File: guile,v 1.1 2011/12/16 17:44:33 christos Exp $ # Guile file magic from # http://www.gnu.org/s/guile/ # http://git.savannah.gnu.org/gitweb/?p=guile.git;f=libguile/_scm.h;hb=HEAD#l250 0 string GOOF---- Guile Object >8 string LE \b, little endian >8 string BE \b, big endian >11 string 4 \b, 32bit >11 string 8 \b, 64bit >13 regex .\.. \b, bytecode v%s #------------------------------------------------------------------------------ # $File: hitachi-sh,v 1.5 2009/09/19 16:28:09 christos Exp $ # hitach-sh: file(1) magic for Hitachi Super-H # # Super-H COFF # 0 beshort 0x0500 Hitachi SH big-endian COFF >18 beshort&0x0002 =0x0000 object >18 beshort&0x0002 =0x0002 executable >18 beshort&0x0008 =0x0008 \b, stripped >18 beshort&0x0008 =0x0000 \b, not stripped # 0 leshort 0x0550 Hitachi SH little-endian COFF >18 leshort&0x0002 =0x0000 object >18 leshort&0x0002 =0x0002 executable >18 leshort&0x0008 =0x0008 \b, stripped >18 leshort&0x0008 =0x0000 \b, not stripped #------------------------------------------------------------------------------ # $File: hp,v 1.23 2009/09/19 16:28:09 christos Exp $ # hp: file(1) magic for Hewlett Packard machines (see also "printer") # # XXX - somebody should figure out whether any byte order needs to be # applied to the "TML" stuff; I'm assuming the Apollo stuff is # big-endian as it was mostly 68K-based. # # I think the 500 series was the old stack-based machines, running a # UNIX environment atop the "SUN kernel"; dunno whether it was # big-endian or little-endian. # # Daniel Quinlan (quinlan@yggdrasil.com): hp200 machines are 68010 based; # hp300 are 68020+68881 based; hp400 are also 68k. The following basic # HP magic is useful for reference, but using "long" magic is a better # practice in order to avoid collisions. # # Guy Harris (guy@netapp.com): some additions to this list came from # HP-UX 10.0's "/usr/include/sys/unistd.h" (68030, 68040, PA-RISC 1.1, # 1.2, and 2.0). The 1.2 and 2.0 stuff isn't in the HP-UX 10.0 # "/etc/magic", though, except for the "archive file relocatable library" # stuff, and the 68030 and 68040 stuff isn't there at all - are they not # used in executables, or have they just not yet updated "/etc/magic" # completely? # # 0 beshort 200 hp200 (68010) BSD binary # 0 beshort 300 hp300 (68020+68881) BSD binary # 0 beshort 0x20c hp200/300 HP-UX binary # 0 beshort 0x20d hp400 (68030) HP-UX binary # 0 beshort 0x20e hp400 (68040?) HP-UX binary # 0 beshort 0x20b PA-RISC1.0 HP-UX binary # 0 beshort 0x210 PA-RISC1.1 HP-UX binary # 0 beshort 0x211 PA-RISC1.2 HP-UX binary # 0 beshort 0x214 PA-RISC2.0 HP-UX binary # # The "misc" stuff needs a byte order; the archives look suspiciously # like the old 177545 archives (0xff65 = 0177545). # #### Old Apollo stuff 0 beshort 0627 Apollo m68k COFF executable >18 beshort ^040000 not stripped >22 beshort >0 - version %ld 0 beshort 0624 apollo a88k COFF executable >18 beshort ^040000 not stripped >22 beshort >0 - version %ld 0 long 01203604016 TML 0123 byte-order format 0 long 01702407010 TML 1032 byte-order format 0 long 01003405017 TML 2301 byte-order format 0 long 01602007412 TML 3210 byte-order format #### PA-RISC 1.1 0 belong 0x02100106 PA-RISC1.1 relocatable object 0 belong 0x02100107 PA-RISC1.1 executable >168 belong &0x00000004 dynamically linked >(144) belong 0x054ef630 dynamically linked >96 belong >0 - not stripped 0 belong 0x02100108 PA-RISC1.1 shared executable >168 belong&0x4 0x4 dynamically linked >(144) belong 0x054ef630 dynamically linked >96 belong >0 - not stripped 0 belong 0x0210010b PA-RISC1.1 demand-load executable >168 belong&0x4 0x4 dynamically linked >(144) belong 0x054ef630 dynamically linked >96 belong >0 - not stripped 0 belong 0x0210010e PA-RISC1.1 shared library >96 belong >0 - not stripped 0 belong 0x0210010d PA-RISC1.1 dynamic load library >96 belong >0 - not stripped #### PA-RISC 2.0 0 belong 0x02140106 PA-RISC2.0 relocatable object 0 belong 0x02140107 PA-RISC2.0 executable >168 belong &0x00000004 dynamically linked >(144) belong 0x054ef630 dynamically linked >96 belong >0 - not stripped 0 belong 0x02140108 PA-RISC2.0 shared executable >168 belong &0x00000004 dynamically linked >(144) belong 0x054ef630 dynamically linked >96 belong >0 - not stripped 0 belong 0x0214010b PA-RISC2.0 demand-load executable >168 belong &0x00000004 dynamically linked >(144) belong 0x054ef630 dynamically linked >96 belong >0 - not stripped 0 belong 0x0214010e PA-RISC2.0 shared library >96 belong >0 - not stripped 0 belong 0x0214010d PA-RISC2.0 dynamic load library >96 belong >0 - not stripped #### 800 0 belong 0x020b0106 PA-RISC1.0 relocatable object 0 belong 0x020b0107 PA-RISC1.0 executable >168 belong&0x4 0x4 dynamically linked >(144) belong 0x054ef630 dynamically linked >96 belong >0 - not stripped 0 belong 0x020b0108 PA-RISC1.0 shared executable >168 belong&0x4 0x4 dynamically linked >(144) belong 0x054ef630 dynamically linked >96 belong >0 - not stripped 0 belong 0x020b010b PA-RISC1.0 demand-load executable >168 belong&0x4 0x4 dynamically linked >(144) belong 0x054ef630 dynamically linked >96 belong >0 - not stripped 0 belong 0x020b010e PA-RISC1.0 shared library >96 belong >0 - not stripped 0 belong 0x020b010d PA-RISC1.0 dynamic load library >96 belong >0 - not stripped 0 belong 0x213c6172 archive file >68 belong 0x020b0619 - PA-RISC1.0 relocatable library >68 belong 0x02100619 - PA-RISC1.1 relocatable library >68 belong 0x02110619 - PA-RISC1.2 relocatable library >68 belong 0x02140619 - PA-RISC2.0 relocatable library #### 500 0 long 0x02080106 HP s500 relocatable executable >16 long >0 - version %ld 0 long 0x02080107 HP s500 executable >16 long >0 - version %ld 0 long 0x02080108 HP s500 pure executable >16 long >0 - version %ld #### 200 0 belong 0x020c0108 HP s200 pure executable >4 beshort >0 - version %ld >8 belong &0x80000000 save fp regs >8 belong &0x40000000 dynamically linked >8 belong &0x20000000 debuggable >36 belong >0 not stripped 0 belong 0x020c0107 HP s200 executable >4 beshort >0 - version %ld >8 belong &0x80000000 save fp regs >8 belong &0x40000000 dynamically linked >8 belong &0x20000000 debuggable >36 belong >0 not stripped 0 belong 0x020c010b HP s200 demand-load executable >4 beshort >0 - version %ld >8 belong &0x80000000 save fp regs >8 belong &0x40000000 dynamically linked >8 belong &0x20000000 debuggable >36 belong >0 not stripped 0 belong 0x020c0106 HP s200 relocatable executable >4 beshort >0 - version %ld >6 beshort >0 - highwater %d >8 belong &0x80000000 save fp regs >8 belong &0x20000000 debuggable >8 belong &0x10000000 PIC 0 belong 0x020a0108 HP s200 (2.x release) pure executable >4 beshort >0 - version %ld >36 belong >0 not stripped 0 belong 0x020a0107 HP s200 (2.x release) executable >4 beshort >0 - version %ld >36 belong >0 not stripped 0 belong 0x020c010e HP s200 shared library >4 beshort >0 - version %ld >6 beshort >0 - highwater %d >36 belong >0 not stripped 0 belong 0x020c010d HP s200 dynamic load library >4 beshort >0 - version %ld >6 beshort >0 - highwater %d >36 belong >0 not stripped #### MISC 0 long 0x0000ff65 HP old archive 0 long 0x020aff65 HP s200 old archive 0 long 0x020cff65 HP s200 old archive 0 long 0x0208ff65 HP s500 old archive 0 long 0x015821a6 HP core file 0 long 0x4da7eee8 HP-WINDOWS font >8 byte >0 - version %ld 0 string Bitmapfile HP Bitmapfile 0 string IMGfile CIS compimg HP Bitmapfile # XXX - see "lif" #0 short 0x8000 lif file 0 long 0x020c010c compiled Lisp 0 string msgcat01 HP NLS message catalog, >8 long >0 %d messages # Summary: HP-48/49 calculator # Created by: phk@data.fls.dk # Modified by (1): AMAKAWA Shuhei # Modified by (2): Samuel Thibault (HP49 support) 0 string HPHP HP >4 string 48 48 binary >4 string 49 49 binary >7 byte >64 - Rev %c >8 leshort 0x2911 (ADR) >8 leshort 0x2933 (REAL) >8 leshort 0x2955 (LREAL) >8 leshort 0x2977 (COMPLX) >8 leshort 0x299d (LCOMPLX) >8 leshort 0x29bf (CHAR) >8 leshort 0x29e8 (ARRAY) >8 leshort 0x2a0a (LNKARRAY) >8 leshort 0x2a2c (STRING) >8 leshort 0x2a4e (HXS) >8 leshort 0x2a74 (LIST) >8 leshort 0x2a96 (DIR) >8 leshort 0x2ab8 (ALG) >8 leshort 0x2ada (UNIT) >8 leshort 0x2afc (TAGGED) >8 leshort 0x2b1e (GROB) >8 leshort 0x2b40 (LIB) >8 leshort 0x2b62 (BACKUP) >8 leshort 0x2b88 (LIBDATA) >8 leshort 0x2d9d (PROG) >8 leshort 0x2dcc (CODE) >8 leshort 0x2e48 (GNAME) >8 leshort 0x2e6d (LNAME) >8 leshort 0x2e92 (XLIB) 0 string %%HP: HP text >6 string T(0) - T(0) >6 string T(1) - T(1) >6 string T(2) - T(2) >6 string T(3) - T(3) >10 string A(D) A(D) >10 string A(R) A(R) >10 string A(G) A(G) >14 string F(.) F(.); >14 string F(,) F(,); # Summary: HP-38/39 calculator # Created by: Samuel Thibault 0 string HP3 >3 string 8 HP 38 >3 string 9 HP 39 >4 string Bin binary >4 string Asc ASCII >7 string A (Directory List) >7 string B (Zaplet) >7 string C (Note) >7 string D (Program) >7 string E (Variable) >7 string F (List) >7 string G (Matrix) >7 string H (Library) >7 string I (Target List) >7 string J (ASCII Vector specification) >7 string K (wildcard) # Summary: HP-38/39 calculator # Created by: Samuel Thibault 0 string HP3 >3 string 8 HP 38 >3 string 9 HP 39 >4 string Bin binary >4 string Asc ASCII >7 string A (Directory List) >7 string B (Zaplet) >7 string C (Note) >7 string D (Program) >7 string E (Variable) >7 string F (List) >7 string G (Matrix) >7 string H (Library) >7 string I (Target List) >7 string J (ASCII Vector specification) >7 string K (wildcard) # hpBSD magic numbers 0 beshort 200 hp200 (68010) BSD >2 beshort 0407 impure binary >2 beshort 0410 read-only binary >2 beshort 0413 demand paged binary 0 beshort 300 hp300 (68020+68881) BSD >2 beshort 0407 impure binary >2 beshort 0410 read-only binary >2 beshort 0413 demand paged binary # # From David Gero # HP-UX 10.20 core file format from /usr/include/sys/core.h # Unfortunately, HP-UX uses corehead blocks without specifying the order # There are four we care about: # CORE_KERNEL, which starts with the string "HP-UX" # CORE_EXEC, which contains the name of the command # CORE_PROC, which contains the signal number that caused the core dump # CORE_FORMAT, which contains the version of the core file format (== 1) # The only observed order in real core files is KERNEL, EXEC, FORMAT, PROC # but we include all 6 variations of the order of the first 3, and # assume that PROC will always be last # Order 1: KERNEL, EXEC, FORMAT, PROC 0x10 string HP-UX >0 belong 2 >>0xC belong 0x3C >>>0x4C belong 0x100 >>>>0x58 belong 0x44 >>>>>0xA0 belong 1 >>>>>>0xAC belong 4 >>>>>>>0xB0 belong 1 >>>>>>>>0xB4 belong 4 core file >>>>>>>>>0x90 string >\0 from '%s' >>>>>>>>>0xC4 belong 3 - received SIGQUIT >>>>>>>>>0xC4 belong 4 - received SIGILL >>>>>>>>>0xC4 belong 5 - received SIGTRAP >>>>>>>>>0xC4 belong 6 - received SIGABRT >>>>>>>>>0xC4 belong 7 - received SIGEMT >>>>>>>>>0xC4 belong 8 - received SIGFPE >>>>>>>>>0xC4 belong 10 - received SIGBUS >>>>>>>>>0xC4 belong 11 - received SIGSEGV >>>>>>>>>0xC4 belong 12 - received SIGSYS >>>>>>>>>0xC4 belong 33 - received SIGXCPU >>>>>>>>>0xC4 belong 34 - received SIGXFSZ # Order 2: KERNEL, FORMAT, EXEC, PROC >>>0x4C belong 1 >>>>0x58 belong 4 >>>>>0x5C belong 1 >>>>>>0x60 belong 0x100 >>>>>>>0x6C belong 0x44 >>>>>>>>0xB4 belong 4 core file >>>>>>>>>0xA4 string >\0 from '%s' >>>>>>>>>0xC4 belong 3 - received SIGQUIT >>>>>>>>>0xC4 belong 4 - received SIGILL >>>>>>>>>0xC4 belong 5 - received SIGTRAP >>>>>>>>>0xC4 belong 6 - received SIGABRT >>>>>>>>>0xC4 belong 7 - received SIGEMT >>>>>>>>>0xC4 belong 8 - received SIGFPE >>>>>>>>>0xC4 belong 10 - received SIGBUS >>>>>>>>>0xC4 belong 11 - received SIGSEGV >>>>>>>>>0xC4 belong 12 - received SIGSYS >>>>>>>>>0xC4 belong 33 - received SIGXCPU >>>>>>>>>0xC4 belong 34 - received SIGXFSZ # Order 3: FORMAT, KERNEL, EXEC, PROC 0x24 string HP-UX >0 belong 1 >>0xC belong 4 >>>0x10 belong 1 >>>>0x14 belong 2 >>>>>0x20 belong 0x3C >>>>>>0x60 belong 0x100 >>>>>>>0x6C belong 0x44 >>>>>>>>0xB4 belong 4 core file >>>>>>>>>0xA4 string >\0 from '%s' >>>>>>>>>0xC4 belong 3 - received SIGQUIT >>>>>>>>>0xC4 belong 4 - received SIGILL >>>>>>>>>0xC4 belong 5 - received SIGTRAP >>>>>>>>>0xC4 belong 6 - received SIGABRT >>>>>>>>>0xC4 belong 7 - received SIGEMT >>>>>>>>>0xC4 belong 8 - received SIGFPE >>>>>>>>>0xC4 belong 10 - received SIGBUS >>>>>>>>>0xC4 belong 11 - received SIGSEGV >>>>>>>>>0xC4 belong 12 - received SIGSYS >>>>>>>>>0xC4 belong 33 - received SIGXCPU >>>>>>>>>0xC4 belong 34 - received SIGXFSZ # Order 4: EXEC, KERNEL, FORMAT, PROC 0x64 string HP-UX >0 belong 0x100 >>0xC belong 0x44 >>>0x54 belong 2 >>>>0x60 belong 0x3C >>>>>0xA0 belong 1 >>>>>>0xAC belong 4 >>>>>>>0xB0 belong 1 >>>>>>>>0xB4 belong 4 core file >>>>>>>>>0x44 string >\0 from '%s' >>>>>>>>>0xC4 belong 3 - received SIGQUIT >>>>>>>>>0xC4 belong 4 - received SIGILL >>>>>>>>>0xC4 belong 5 - received SIGTRAP >>>>>>>>>0xC4 belong 6 - received SIGABRT >>>>>>>>>0xC4 belong 7 - received SIGEMT >>>>>>>>>0xC4 belong 8 - received SIGFPE >>>>>>>>>0xC4 belong 10 - received SIGBUS >>>>>>>>>0xC4 belong 11 - received SIGSEGV >>>>>>>>>0xC4 belong 12 - received SIGSYS >>>>>>>>>0xC4 belong 33 - received SIGXCPU >>>>>>>>>0xC4 belong 34 - received SIGXFSZ # Order 5: FORMAT, EXEC, KERNEL, PROC 0x78 string HP-UX >0 belong 1 >>0xC belong 4 >>>0x10 belong 1 >>>>0x14 belong 0x100 >>>>>0x20 belong 0x44 >>>>>>0x68 belong 2 >>>>>>>0x74 belong 0x3C >>>>>>>>0xB4 belong 4 core file >>>>>>>>>0x58 string >\0 from '%s' >>>>>>>>>0xC4 belong 3 - received SIGQUIT >>>>>>>>>0xC4 belong 4 - received SIGILL >>>>>>>>>0xC4 belong 5 - received SIGTRAP >>>>>>>>>0xC4 belong 6 - received SIGABRT >>>>>>>>>0xC4 belong 7 - received SIGEMT >>>>>>>>>0xC4 belong 8 - received SIGFPE >>>>>>>>>0xC4 belong 10 - received SIGBUS >>>>>>>>>0xC4 belong 11 - received SIGSEGV >>>>>>>>>0xC4 belong 12 - received SIGSYS >>>>>>>>>0xC4 belong 33 - received SIGXCPU >>>>>>>>>0xC4 belong 34 - received SIGXFSZ # Order 6: EXEC, FORMAT, KERNEL, PROC >0 belong 0x100 >>0xC belong 0x44 >>>0x54 belong 1 >>>>0x60 belong 4 >>>>>0x64 belong 1 >>>>>>0x68 belong 2 >>>>>>>0x74 belong 0x2C >>>>>>>>0xB4 belong 4 core file >>>>>>>>>0x44 string >\0 from '%s' >>>>>>>>>0xC4 belong 3 - received SIGQUIT >>>>>>>>>0xC4 belong 4 - received SIGILL >>>>>>>>>0xC4 belong 5 - received SIGTRAP >>>>>>>>>0xC4 belong 6 - received SIGABRT >>>>>>>>>0xC4 belong 7 - received SIGEMT >>>>>>>>>0xC4 belong 8 - received SIGFPE >>>>>>>>>0xC4 belong 10 - received SIGBUS >>>>>>>>>0xC4 belong 11 - received SIGSEGV >>>>>>>>>0xC4 belong 12 - received SIGSYS >>>>>>>>>0xC4 belong 33 - received SIGXCPU >>>>>>>>>0xC4 belong 34 - received SIGXFSZ #------------------------------------------------------------------------------ # $File: human68k,v 1.5 2009/09/19 16:28:09 christos Exp $ # human68k: file(1) magic for Human68k (X680x0 DOS) binary formats # Magic too short! #0 string HU Human68k #>68 string LZX LZX compressed #>>72 string >\0 (version %s) #>(8.L+74) string LZX LZX compressed #>>(8.L+78) string >\0 (version %s) #>60 belong >0 binded #>(8.L+66) string #HUPAIR hupair #>0 string HU X executable #>(8.L+74) string #LIBCV1 - linked PD LIBC ver 1 #>4 belong >0 - base address 0x%x #>28 belong >0 not stripped #>32 belong >0 with debug information #0 beshort 0x601a Human68k Z executable #0 beshort 0x6000 Human68k object file #0 belong 0xd1000000 Human68k ar binary archive #0 belong 0xd1010000 Human68k ar ascii archive #0 beshort 0x0068 Human68k lib archive #4 string LZX Human68k LZX compressed #>8 string >\0 (version %s) #>4 string LZX R executable #2 string #HUPAIR Human68k hupair R executable #------------------------------------------------------------------------------ # $File: ibm370,v 1.8 2009/09/19 16:28:09 christos Exp $ # ibm370: file(1) magic for IBM 370 and compatibles. # # "ibm370" said that 0x15d == 0535 was "ibm 370 pure executable". # What the heck *is* "USS/370"? # AIX 4.1's "/etc/magic" has # # 0 short 0535 370 sysV executable # >12 long >0 not stripped # >22 short >0 - version %d # >30 long >0 - 5.2 format # 0 short 0530 370 sysV pure executable # >12 long >0 not stripped # >22 short >0 - version %d # >30 long >0 - 5.2 format # # instead of the "USS/370" versions of the same magic numbers. # 0 beshort 0537 370 XA sysV executable >12 belong >0 not stripped >22 beshort >0 - version %d >30 belong >0 - 5.2 format 0 beshort 0532 370 XA sysV pure executable >12 belong >0 not stripped >22 beshort >0 - version %d >30 belong >0 - 5.2 format 0 beshort 054001 370 sysV pure executable >12 belong >0 not stripped 0 beshort 055001 370 XA sysV pure executable >12 belong >0 not stripped 0 beshort 056401 370 sysV executable >12 belong >0 not stripped 0 beshort 057401 370 XA sysV executable >12 belong >0 not stripped 0 beshort 0531 SVR2 executable (Amdahl-UTS) >12 belong >0 not stripped >24 belong >0 - version %ld 0 beshort 0534 SVR2 pure executable (Amdahl-UTS) >12 belong >0 not stripped >24 belong >0 - version %ld 0 beshort 0530 SVR2 pure executable (USS/370) >12 belong >0 not stripped >24 belong >0 - version %ld 0 beshort 0535 SVR2 executable (USS/370) >12 belong >0 not stripped >24 belong >0 - version %ld #------------------------------------------------------------------------------ # $File: ibm6000,v 1.9 2009/09/19 16:28:09 christos Exp $ # ibm6000: file(1) magic for RS/6000 and the RT PC. # 0 beshort 0x01df executable (RISC System/6000 V3.1) or obj module >12 belong >0 not stripped # Breaks sun4 statically linked execs. #0 beshort 0x0103 executable (RT Version 2) or obj module #>2 byte 0x50 pure #>28 belong >0 not stripped #>6 beshort >0 - version %ld 0 beshort 0x0104 shared library 0 beshort 0x0105 ctab data 0 beshort 0xfe04 structured file 0 string 0xabcdef AIX message catalog 0 belong 0x000001f9 AIX compiled message catalog 0 string \ archive 0 string \ archive (big format) #------------------------------------------------------------------------------ # $File: iff,v 1.13 2011/09/06 11:00:06 christos Exp $ # iff: file(1) magic for Interchange File Format (see also "audio" & "images") # # Daniel Quinlan (quinlan@yggdrasil.com) -- IFF was designed by Electronic # Arts for file interchange. It has also been used by Apple, SGI, and # especially Commodore-Amiga. # # IFF files begin with an 8 byte FORM header, followed by a 4 character # FORM type, which is followed by the first chunk in the FORM. 0 string FORM IFF data #>4 belong x \b, FORM is %d bytes long # audio formats >8 string AIFF \b, AIFF audio !:mime audio/x-aiff >8 string AIFC \b, AIFF-C compressed audio !:mime audio/x-aiff >8 string 8SVX \b, 8SVX 8-bit sampled sound voice !:mime audio/x-aiff >8 string 16SV \b, 16SV 16-bit sampled sound voice >8 string SAMP \b, SAMP sampled audio >8 string MAUD \b, MAUD MacroSystem audio >8 string SMUS \b, SMUS simple music >8 string CMUS \b, CMUS complex music # image formats >8 string ILBMBMHD \b, ILBM interleaved image >>20 beshort x \b, %d x >>22 beshort x %d >8 string RGBN \b, RGBN 12-bit RGB image >8 string RGB8 \b, RGB8 24-bit RGB image >8 string DEEP \b, DEEP TVPaint/XiPaint image >8 string DR2D \b, DR2D 2-D object >8 string TDDD \b, TDDD 3-D rendering >8 string LWOB \b, LWOB 3-D object >8 string LWO2 \b, LWO2 3-D object, v2 >8 string LWLO \b, LWLO 3-D layered object >8 string REAL \b, REAL Real3D rendering >8 string MC4D \b, MC4D MaxonCinema4D rendering >8 string ANIM \b, ANIM animation >8 string YAFA \b, YAFA animation >8 string SSA\ \b, SSA super smooth animation >8 string ACBM \b, ACBM continuous image >8 string FAXX \b, FAXX fax image # other formats >8 string FTXT \b, FTXT formatted text >8 string CTLG \b, CTLG message catalog >8 string PREF \b, PREF preferences >8 string DTYP \b, DTYP datatype description >8 string PTCH \b, PTCH binary patch >8 string AMFF \b, AMFF AmigaMetaFile format >8 string WZRD \b, WZRD StormWIZARD resource >8 string DOC\ \b, DOC desktop publishing document >8 string WVQA \b, Westwood Studios VQA Multimedia, >>24 leshort x %d video frames, >>26 leshort x %d x >>28 leshort x %d >8 string MOVE \b, Wing Commander III Video >>12 string _PC_ \b, PC version >>12 string 3DO_ \b, 3DO version # These go at the end of the iff rules # # I don't see why these might collide with anything else. # # Interactive Fiction related formats # >8 string IFRS \b, Blorb Interactive Fiction >>24 string Exec with executable chunk >8 string IFZS \b, Z-machine or Glulx saved game file (Quetzal) #------------------------------------------------------------------------------ # $File: images,v 1.72 2011/12/08 12:12:46 rrt Exp $ # images: file(1) magic for image formats (see also "iff", and "c-lang" for # XPM bitmaps) # # originally from jef@helios.ee.lbl.gov (Jef Poskanzer), # additions by janl@ifi.uio.no as well as others. Jan also suggested # merging several one- and two-line files into here. # # little magic: PCX (first byte is 0x0a) # Targa - matches `povray', `ppmtotga' and `xv' outputs # by Philippe De Muyter # at 2, byte ImgType must be 1, 2, 3, 9, 10 or 11 # at 1, byte CoMapType must be 1 if ImgType is 1 or 9, 0 otherwise # at 3, leshort Index is 0 for povray, ppmtotga and xv outputs # `xv' recognizes only a subset of the following (RGB with pixelsize = 24) # `tgatoppm' recognizes a superset (Index may be anything) 1 belong&0xfff7ffff 0x01010000 Targa image data - Map >2 byte&8 8 - RLE >12 leshort >0 %hd x >14 leshort >0 %hd 1 belong&0xfff7ffff 0x00020000 Targa image data - RGB >2 byte&8 8 - RLE >12 leshort >0 %hd x >14 leshort >0 %hd 1 belong&0xfff7ffff 0x00030000 Targa image data - Mono >2 byte&8 8 - RLE >12 leshort >0 %hd x >14 leshort >0 %hd # PBMPLUS images # The next byte following the magic is always whitespace. # strength is changed to try these patterns before "x86 boot sector" 0 search/1 P1 >3 regex =[0-9]*\ [0-9]* Netpbm PBM image text >3 regex =[0-9]+\ \b, size = %sx >>3 regex =\ [0-9]+ \b%s !:strength + 45 !:mime image/x-portable-bitmap 0 search/1 P2 >3 regex =[0-9]*\ [0-9]* Netpbm PGM image text >3 regex =[0-9]+\ \b, size = %sx >>3 regex =\ [0-9]+ \b%s !:strength + 45 !:mime image/x-portable-greymap 0 search/1 P3 Netpbm PPM image text >3 regex =[0-9]*\ [0-9]* Netpbm PPM image text >3 regex =[0-9]+\ \b, size = %sx >>3 regex =\ [0-9]+ \b%s !:strength + 45 !:mime image/x-portable-pixmap 0 string P4 >3 regex =[0-9]*\ [0-9]* Netpbm PBM "rawbits" image data >3 regex =[0-9]+\ \b, size = %sx >>3 regex =\ [0-9]+ \b%s !:strength + 45 !:mime image/x-portable-bitmap 0 string P5 >3 regex =[0-9]*\ [0-9]* Netpbm PGM "rawbits" image data >3 regex =[0-9]+\ \b, size = %sx >>3 regex =\ [0-9]+ \b%s !:strength + 45 !:mime image/x-portable-greymap 0 string P6 >3 regex =[0-9]*\ [0-9]* Netpbm PPM "rawbits" image data >3 regex =[0-9]+\ \b, size = %sx >>3 regex =\ [0-9]+ \b%s !:strength + 45 !:mime image/x-portable-pixmap 0 string P7 Netpbm PAM image file !:mime image/x-portable-pixmap # From: bryanh@giraffe-data.com (Bryan Henderson) 0 string \117\072 Solitaire Image Recorder format >4 string \013 MGI Type 11 >4 string \021 MGI Type 17 0 string .MDA MicroDesign data >21 byte 48 version 2 >21 byte 51 version 3 0 string .MDP MicroDesign page data >21 byte 48 version 2 >21 byte 51 version 3 # NIFF (Navy Interchange File Format, a modification of TIFF) images # [GRR: this *must* go before TIFF] 0 string IIN1 NIFF image data !:mime image/x-niff # Canon RAW version 1 (CRW) files are a type of Canon Image File Format # (CIFF) file. These are apparently all little-endian. # From: Adam Buchbinder # URL: http://www.sno.phy.queensu.ca/~phil/exiftool/canon_raw.html 0 string II\x1a\0\0\0HEAPCCDR Canon CIFF raw image data !:mime image/x-canon-crw >16 leshort x \b, version %d. >14 leshort x \b%d # Canon RAW version 2 (CR2) files are a kind of TIFF with an extra magic # number. Put this above the TIFF test to make sure we detect them. # These are apparently all little-endian. # From: Adam Buchbinder # URL: http://libopenraw.freedesktop.org/wiki/Canon_CR2 0 string II\x2a\0\x10\0\0\0CR Canon CR2 raw image data !:mime image/x-canon-cr2 >10 byte x \b, version %d. >11 byte x \b%d # Tag Image File Format, from Daniel Quinlan (quinlan@yggdrasil.com) # The second word of TIFF files is the TIFF version number, 42, which has # never changed. The TIFF specification recommends testing for it. 0 string MM\x00\x2a TIFF image data, big-endian !:mime image/tiff 0 string II\x2a\x00 TIFF image data, little-endian !:mime image/tiff 0 string MM\x00\x2b Big TIFF image data, big-endian !:mime image/tiff 0 string II\x2b\x00 Big TIFF image data, little-endian !:mime image/tiff # PNG [Portable Network Graphics, or "PNG's Not GIF"] images # (Greg Roelofs, newt@uchicago.edu) # (Albert Cahalan, acahalan@cs.uml.edu) # # 137 P N G \r \n ^Z \n [4-byte length] H E A D [HEAD data] [HEAD crc] ... # 0 string \x89PNG\x0d\x0a\x1a\x0a PNG image data !:mime image/png >16 belong x \b, %ld x >20 belong x %ld, >24 byte x %d-bit >25 byte 0 grayscale, >25 byte 2 \b/color RGB, >25 byte 3 colormap, >25 byte 4 gray+alpha, >25 byte 6 \b/color RGBA, #>26 byte 0 deflate/32K, >28 byte 0 non-interlaced >28 byte 1 interlaced # possible GIF replacements; none yet released! # (Greg Roelofs, newt@uchicago.edu) # # GRR 950115: this was mine ("Zip GIF"): 0 string GIF94z ZIF image (GIF+deflate alpha) !:mime image/x-unknown # # GRR 950115: this is Jeremy Wohl's Free Graphics Format (better): # 0 string FGF95a FGF image (GIF+deflate beta) !:mime image/x-unknown # # GRR 950115: this is Thomas Boutell's Portable Bitmap Format proposal # (best; not yet implemented): # 0 string PBF PBF image (deflate compression) !:mime image/x-unknown # GIF 0 string GIF8 GIF image data !:mime image/gif !:apple 8BIMGIFf >4 string 7a \b, version 8%s, >4 string 9a \b, version 8%s, >6 leshort >0 %hd x >8 leshort >0 %hd #>10 byte &0x80 color mapped, #>10 byte&0x07 =0x00 2 colors #>10 byte&0x07 =0x01 4 colors #>10 byte&0x07 =0x02 8 colors #>10 byte&0x07 =0x03 16 colors #>10 byte&0x07 =0x04 32 colors #>10 byte&0x07 =0x05 64 colors #>10 byte&0x07 =0x06 128 colors #>10 byte&0x07 =0x07 256 colors # ITC (CMU WM) raster files. It is essentially a byte-reversed Sun raster, # 1 plane, no encoding. 0 string \361\0\100\273 CMU window manager raster image data >4 lelong >0 %d x >8 lelong >0 %d, >12 lelong >0 %d-bit # Magick Image File Format 0 string id=ImageMagick MIFF image data # Artisan 0 long 1123028772 Artisan image data >4 long 1 \b, rectangular 24-bit >4 long 2 \b, rectangular 8-bit with colormap >4 long 3 \b, rectangular 32-bit (24-bit with matte) # FIG (Facility for Interactive Generation of figures), an object-based format 0 search/1 #FIG FIG image text >5 string x \b, version %.3s # PHIGS 0 string ARF_BEGARF PHIGS clear text archive 0 string @(#)SunPHIGS SunPHIGS # version number follows, in the form m.n >40 string SunBin binary >32 string archive archive # GKS (Graphics Kernel System) 0 string GKSM GKS Metafile >24 string SunGKS \b, SunGKS # CGM image files 0 string BEGMF clear text Computer Graphics Metafile # MGR bitmaps (Michael Haardt, u31b3hs@pool.informatik.rwth-aachen.de) 0 string yz MGR bitmap, modern format, 8-bit aligned 0 string zz MGR bitmap, old format, 1-bit deep, 16-bit aligned 0 string xz MGR bitmap, old format, 1-bit deep, 32-bit aligned 0 string yx MGR bitmap, modern format, squeezed # Fuzzy Bitmap (FBM) images 0 string %bitmap\0 FBM image data >30 long 0x31 \b, mono >30 long 0x33 \b, color # facsimile data 1 string PC\ Research,\ Inc group 3 fax data >29 byte 0 \b, normal resolution (204x98 DPI) >29 byte 1 \b, fine resolution (204x196 DPI) # From: Herbert Rosmanith 0 string Sfff structured fax file # PC bitmaps (OS/2, Windows BMP files) (Greg Roelofs, newt@uchicago.edu) 0 string BM >14 leshort 12 PC bitmap, OS/2 1.x format !:mime image/x-ms-bmp >>18 leshort x \b, %d x >>20 leshort x %d >14 leshort 64 PC bitmap, OS/2 2.x format !:mime image/x-ms-bmp >>18 leshort x \b, %d x >>20 leshort x %d >14 leshort 40 PC bitmap, Windows 3.x format !:mime image/x-ms-bmp >>18 lelong x \b, %d x >>22 lelong x %d x >>28 leshort x %d >14 leshort 128 PC bitmap, Windows NT/2000 format !:mime image/x-ms-bmp >>18 lelong x \b, %d x >>22 lelong x %d x >>28 leshort x %d # Too simple - MPi #0 string IC PC icon data #0 string PI PC pointer image data #0 string CI PC color icon data #0 string CP PC color pointer image data # Conflicts with other entries [BABYL] #0 string BA PC bitmap array data # XPM icons (Greg Roelofs, newt@uchicago.edu) 0 search/1 /*\ XPM\ */ X pixmap image text !:mime image/x-xpmi # Utah Raster Toolkit RLE images (janl@ifi.uio.no) 0 leshort 0xcc52 RLE image data, >6 leshort x %d x >8 leshort x %d >2 leshort >0 \b, lower left corner: %d >4 leshort >0 \b, lower right corner: %d >10 byte&0x1 =0x1 \b, clear first >10 byte&0x2 =0x2 \b, no background >10 byte&0x4 =0x4 \b, alpha channel >10 byte&0x8 =0x8 \b, comment >11 byte >0 \b, %d color channels >12 byte >0 \b, %d bits per pixel >13 byte >0 \b, %d color map channels # image file format (Robert Potter, potter@cs.rochester.edu) 0 string Imagefile\ version- iff image data # this adds the whole header (inc. version number), informative but longish >10 string >\0 %s # Sun raster images, from Daniel Quinlan (quinlan@yggdrasil.com) 0 belong 0x59a66a95 Sun raster image data >4 belong >0 \b, %d x >8 belong >0 %d, >12 belong >0 %d-bit, #>16 belong >0 %d bytes long, >20 belong 0 old format, #>20 belong 1 standard, >20 belong 2 compressed, >20 belong 3 RGB, >20 belong 4 TIFF, >20 belong 5 IFF, >20 belong 0xffff reserved for testing, >24 belong 0 no colormap >24 belong 1 RGB colormap >24 belong 2 raw colormap #>28 belong >0 colormap is %d bytes long # SGI image file format, from Daniel Quinlan (quinlan@yggdrasil.com) # # See # http://reality.sgi.com/grafica/sgiimage.html # 0 beshort 474 SGI image data #>2 byte 0 \b, verbatim >2 byte 1 \b, RLE #>3 byte 1 \b, normal precision >3 byte 2 \b, high precision >4 beshort x \b, %d-D >6 beshort x \b, %d x >8 beshort x %d >10 beshort x \b, %d channel >10 beshort !1 \bs >80 string >0 \b, "%s" 0 string IT01 FIT image data >4 belong x \b, %d x >8 belong x %d x >12 belong x %d # 0 string IT02 FIT image data >4 belong x \b, %d x >8 belong x %d x >12 belong x %d # 2048 string PCD_IPI Kodak Photo CD image pack file >0xe02 byte&0x03 0x00 , landscape mode >0xe02 byte&0x03 0x01 , portrait mode >0xe02 byte&0x03 0x02 , landscape mode >0xe02 byte&0x03 0x03 , portrait mode 0 string PCD_OPA Kodak Photo CD overview pack file # FITS format. Jeff Uphoff # FITS is the Flexible Image Transport System, the de facto standard for # data and image transfer, storage, etc., for the astronomical community. # (FITS floating point formats are big-endian.) 0 string SIMPLE\ \ = FITS image data >109 string 8 \b, 8-bit, character or unsigned binary integer >108 string 16 \b, 16-bit, two's complement binary integer >107 string \ 32 \b, 32-bit, two's complement binary integer >107 string -32 \b, 32-bit, floating point, single precision >107 string -64 \b, 64-bit, floating point, double precision # other images 0 string This\ is\ a\ BitMap\ file Lisp Machine bit-array-file # From SunOS 5.5.1 "/etc/magic" - appeared right before Sun raster image # stuff. # 0 beshort 0x1010 PEX Binary Archive # DICOM medical imaging data 128 string DICM DICOM medical imaging data !:mime application/dicom # XWD - X Window Dump file. # As described in /usr/X11R6/include/X11/XWDFile.h # used by the xwd program. # Bradford Castalia, idaeim, 1/01 # updated by Adam Buchbinder, 2/09 # The following assumes version 7 of the format; the first long is the length # of the header, which is at least 25 4-byte longs, and the one at offset 8 # is a constant which is always either 1 or 2. Offset 12 is the pixmap depth, # which is a maximum of 32. 0 belong >100 >8 belong <3 >>12 belong <33 >>>4 belong 7 XWD X Window Dump image data !:mime image/x-xwindowdump >>>>100 string >\0 \b, "%s" >>>>16 belong x \b, %dx >>>>20 belong x \b%dx >>>>12 belong x \b%d # PDS - Planetary Data System # These files use Parameter Value Language in the header section. # Unfortunately, there is no certain magic, but the following # strings have been found to be most likely. 0 string NJPL1I00 PDS (JPL) image data 2 string NJPL1I PDS (JPL) image data 0 string CCSD3ZF PDS (CCSD) image data 2 string CCSD3Z PDS (CCSD) image data 0 string PDS_ PDS image data 0 string LBLSIZE= PDS (VICAR) image data # pM8x: ATARI STAD compressed bitmap format # # from Oskar Schirmer Feb 2, 2001 # p M 8 5/6 xx yy zz data... # Atari ST STAD bitmap is always 640x400, bytewise runlength compressed. # bytes either run horizontally (pM85) or vertically (pM86). yy is the # most frequent byte, xx and zz are runlength escape codes, where xx is # used for runs of yy. # 0 string pM85 Atari ST STAD bitmap image data (hor) >5 byte 0x00 (white background) >5 byte 0xFF (black background) 0 string pM86 Atari ST STAD bitmap image data (vert) >5 byte 0x00 (white background) >5 byte 0xFF (black background) # Gürkan Sengün , www.linuks.mine.nu # http://www.atarimax.com/jindroush.atari.org/afmtatr.html 0 leshort 0x0296 Atari ATR image # XXX: # This is bad magic 0x5249 == 'RI' conflicts with RIFF and other # magic. # SGI RICE image file #0 beshort 0x5249 RICE image #>2 beshort x v%d #>4 beshort x (%d x #>6 beshort x %d) #>8 beshort 0 8 bit #>8 beshort 1 10 bit #>8 beshort 2 12 bit #>8 beshort 3 13 bit #>10 beshort 0 4:2:2 #>10 beshort 1 4:2:2:4 #>10 beshort 2 4:4:4 #>10 beshort 3 4:4:4:4 #>12 beshort 1 RGB #>12 beshort 2 CCIR601 #>12 beshort 3 RP175 #>12 beshort 4 YUV #------------------------------------------------------------------------------ # # Marco Schmidt (marcoschmidt@users.sourceforge.net) -- an image file format # for the EPOC operating system, which is used with PDAs like those from Psion # # see http://huizen.dds.nl/~frodol/psiconv/html/Index.html for a description # of various EPOC file formats 0 string \x37\x00\x00\x10\x42\x00\x00\x10\x00\x00\x00\x00\x39\x64\x39\x47 EPOC MBM image file # PCX image files # From: Dan Fandrich 0 beshort 0x0a00 PCX ver. 2.5 image data 0 beshort 0x0a02 PCX ver. 2.8 image data, with palette 0 beshort 0x0a03 PCX ver. 2.8 image data, without palette 0 beshort 0x0a04 PCX for Windows image data 0 beshort 0x0a05 PCX ver. 3.0 image data >4 leshort x bounding box [%hd, >6 leshort x %hd] - >8 leshort x [%hd, >10 leshort x %hd], >65 byte >1 %d planes each of >3 byte x %hhd-bit >68 byte 0 image, >68 byte 1 colour, >68 byte 2 grayscale, >68 byte >2 image, >68 byte <0 image, >12 leshort >0 %hd x >>14 leshort x %hd dpi, >2 byte 0 uncompressed >2 byte 1 RLE compressed # Adobe Photoshop # From: Asbjoern Sloth Toennesen 0 string 8BPS Adobe Photoshop Image !:mime image/vnd.adobe.photoshop >4 beshort 2 (PSB) >18 belong x \b, %d x >14 belong x %d, >24 beshort 0 bitmap >24 beshort 1 grayscale >>12 beshort 2 with alpha >24 beshort 2 indexed >24 beshort 3 RGB >>12 beshort 4 \bA >24 beshort 4 CMYK >>12 beshort 5 \bA >24 beshort 7 multichannel >24 beshort 8 duotone >24 beshort 9 lab >12 beshort > 1 >>12 beshort x \b, %dx >12 beshort 1 \b, >22 beshort x %d-bit channel >12 beshort > 1 \bs # XV thumbnail indicator (ThMO) 0 string P7\ 332 XV thumbnail image data # NITF is defined by United States MIL-STD-2500A 0 string NITF National Imagery Transmission Format >25 string >\0 dated %.14s # GEM Image: Version 1, Headerlen 8 (Wolfram Kleff) 0 belong 0x00010008 GEM Image data >12 beshort x %d x >14 beshort x %d, >4 beshort x %d planes, >8 beshort x %d x >10 beshort x %d pixelsize # GEM Metafile (Wolfram Kleff) 0 lelong 0x0018FFFF GEM Metafile data >4 leshort x version %d # # SMJPEG. A custom Motion JPEG format used by Loki Entertainment # Software Torbjorn Andersson . # 0 string \0\nSMJPEG SMJPEG >8 belong x %d.x data # According to the specification you could find any number of _TXT # headers here, but I can't think of any way of handling that. None of # the SMJPEG files I tried it on used this feature. Even if such a # file is encountered the output should still be reasonable. >16 string _SND \b, >>24 beshort >0 %d Hz >>26 byte 8 8-bit >>26 byte 16 16-bit >>28 string NONE uncompressed # >>28 string APCM ADPCM compressed >>27 byte 1 mono >>28 byte 2 stereo # Help! Isn't there any way to avoid writing this part twice? >>32 string _VID \b, # >>>48 string JFIF JPEG >>>40 belong >0 %d frames >>>44 beshort >0 (%d x >>>46 beshort >0 %d) >16 string _VID \b, # >>32 string JFIF JPEG >>24 belong >0 %d frames >>28 beshort >0 (%d x >>30 beshort >0 %d) 0 string Paint\ Shop\ Pro\ Image\ File Paint Shop Pro Image File # "thumbnail file" (icon) # descended from "xv", but in use by other applications as well (Wolfram Kleff) 0 string P7\ 332 XV "thumbnail file" (icon) data # taken from fkiss: ( ?) 0 string KiSS KISS/GS >4 byte 16 color >>5 byte x %d bit >>8 leshort x %d colors >>10 leshort x %d groups >4 byte 32 cell >>5 byte x %d bit >>8 leshort x %d x >>10 leshort x %d >>12 leshort x +%d >>14 leshort x +%d # Webshots (www.webshots.com), by John Harrison 0 string C\253\221g\230\0\0\0 Webshots Desktop .wbz file # Hercules DASD image files # From Jan Jaeger 0 string CKD_P370 Hercules CKD DASD image file >8 long x \b, %d heads per cylinder >12 long x \b, track size %d bytes >16 byte x \b, device type 33%2.2X 0 string CKD_C370 Hercules compressed CKD DASD image file >8 long x \b, %d heads per cylinder >12 long x \b, track size %d bytes >16 byte x \b, device type 33%2.2X 0 string CKD_S370 Hercules CKD DASD shadow file >8 long x \b, %d heads per cylinder >12 long x \b, track size %d bytes >16 byte x \b, device type 33%2.2X # Squeak images and programs - etoffi@softhome.net 0 string \146\031\0\0 Squeak image data 0 search/1 'From\040Squeak Squeak program text # partimage: file(1) magic for PartImage files (experimental, incomplete) # Author: Hans-Joachim Baader 0 string PaRtImAgE-VoLuMe PartImage >0x0020 string 0.6.1 file version %s >>0x0060 lelong >-1 volume %ld #>>0x0064 8 byte identifier #>>0x007c reserved >>0x0200 string >\0 type %s >>0x1400 string >\0 device %s, >>0x1600 string >\0 original filename %s, # Some fields omitted >>0x2744 lelong 0 not compressed >>0x2744 lelong 1 gzip compressed >>0x2744 lelong 2 bzip2 compressed >>0x2744 lelong >2 compressed with unknown algorithm >0x0020 string >0.6.1 file version %s >0x0020 string <0.6.1 file version %s # DCX is multi-page PCX, using a simple header of up to 1024 # offsets for the respective PCX components. # From: Joerg Wunsch 0 lelong 987654321 DCX multi-page PCX image data # Simon Walton # Kodak Cineon format for scanned negatives # http://www.kodak.com/US/en/motion/support/dlad/ 0 lelong 0xd75f2a80 Cineon image data >200 belong >0 \b, %ld x >204 belong >0 %ld # Bio-Rad .PIC is an image format used by microscope control systems # and related image processing software used by biologists. # From: Vebjorn Ljosa # BOOL values are two-byte integers; use them to rule out false positives. # http://web.archive.org/web/20050317223257/www.cs.ubc.ca/spider/ladic/text/biorad.txt # Samples: http://www.loci.wisc.edu/software/sample-data 14 leshort <2 >62 leshort <2 >>54 leshort 12345 Bio-Rad .PIC Image File >>>0 leshort >0 %hd x >>>2 leshort >0 %hd, >>>4 leshort =1 1 image in file >>>4 leshort >1 %hd images in file # From Jan "Yenya" Kasprzak # The description of *.mrw format can be found at # http://www.dalibor.cz/minolta/raw_file_format.htm 0 string \000MRM Minolta Dimage camera raw image data # Summary: DjVu image / document # Extension: .djvu # Reference: http://djvu.org/docs/DjVu3Spec.djvu # Submitted by: Stephane Loeuillet # Modified by (1): Abel Cheung 0 string AT&TFORM >12 string DJVM DjVu multiple page document !:mime image/vnd.djvu >12 string DJVU DjVu image or single page document !:mime image/vnd.djvu >12 string DJVI DjVu shared document !:mime image/vnd.djvu >12 string THUM DjVu page thumbnails !:mime image/vnd.djvu # From Marc Espie 0 lelong 20000630 OpenEXR image data # From: Tom Hilinski # http://www.unidata.ucar.edu/packages/netcdf/ 0 string CDF\001 NetCDF Data Format data #----------------------------------------------------------------------- # Hierarchical Data Format, used to facilitate scientific data exchange # specifications at http://hdf.ncsa.uiuc.edu/ 0 belong 0x0e031301 Hierarchical Data Format (version 4) data !:mime application/x-hdf 0 string \211HDF\r\n\032\n Hierarchical Data Format (version 5) data !:mime application/x-hdf # From: Tobias Burnus # Xara (for a while: Corel Xara) is a graphic package, see # http://www.xara.com/ for Windows and as GPL application for Linux 0 string XARA\243\243 Xara graphics file # http://www.cartesianinc.com/Tech/ 0 string CPC\262 Cartesian Perceptual Compression image !:mime image/x-cpi # From Albert Cahalan # puredigital used it for the CVS disposable camcorder #8 lelong 4 ZBM bitmap image data #>4 leshort x %u x #>6 leshort x %u # From Albert Cahalan # uncompressed 5:6:5 HighColor image for OLPC XO firmware icons 0 string C565 OLPC firmware icon image data >4 leshort x %u x >6 leshort x %u # Applied Images - Image files from Cytovision # Gustavo Junior Alves 0 string \xce\xda\xde\xfa Cytovision Metaphases file 0 string \xed\xad\xef\xac Cytovision Karyotype file 0 string \x0b\x00\x03\x00 Cytovision FISH Probe file 0 string \xed\xfe\xda\xbe Cytovision FLEX file 0 string \xed\xab\xed\xfe Cytovision FLEX file 0 string \xad\xfd\xea\xad Cytovision RATS file # Wavelet Scalar Quantization format used in gray-scale fingerprint images # From Tano M Fotang 0 string \xff\xa0\xff\xa8\x00 Wavelet Scalar Quantization image data # JPEG 2000 Code Stream Bitmap # From Petr Splichal 0 string \xFF\x4F\xFF\x51\x00 JPEG-2000 Code Stream Bitmap data # From: Rick Richardson 0 string GARMIN\ BITMAP\ 01 Garmin Bitmap file # Type: Ulead Photo Explorer5 (.pe5) # URL: http://www.jisyo.com/cgibin/view.cgi?EXT=pe5 (Japanese) # From: Simon Horman 0 string IIO2H Ulead Photo Explorer5 # Type: X11 cursor # URL: http://webcvs.freedesktop.org/mime/shared-mime-info/freedesktop.org.xml.in?view=markup # From: Mathias Brodala 0 string Xcur X11 cursor # Type: Olympus ORF raw images. # URL: http://libopenraw.freedesktop.org/wiki/Olympus_ORF # From: Adam Buchbinder 0 string MMOR Olympus ORF raw image data, big-endian !:mime image/x-olympus-orf 0 string IIRO Olympus ORF raw image data, little-endian !:mime image/x-olympus-orf 0 string IIRS Olympus ORF raw image data, little-endian !:mime image/x-olympus-orf # Type: files used in modern AVCHD camcoders to store clip information # Extension: .cpi # From: Alexander Danilov 0 string HDMV0100 AVCHD Clip Information # From: Adam Buchbinder # URL: http://local.wasp.uwa.edu.au/~pbourke/dataformats/pic/ # Radiance HDR; usually has .pic or .hdr extension. 0 string #?RADIANCE\n Radiance HDR image data #!mime image/vnd.radiance # From: Adam Buchbinder # URL: http://www.mpi-inf.mpg.de/resources/pfstools/pfs_format_spec.pdf # Used by the pfstools packages. The regex matches for the image size could # probably use some work. The MIME type is made up; if there's one in # actual common use, it should replace the one below. 0 string PFS1\x0a PFS HDR image data #!mime image/x-pfs >1 regex [0-9]*\ \b, %s >>1 regex \ [0-9]{4} \bx%s # Type: Foveon X3F # URL: http://www.photofo.com/downloads/x3f-raw-format.pdf # From: Adam Buchbinder # Note that the MIME type isn't defined anywhere that I can find; if # there's a canonical type for this format, it should replace this one. 0 string FOVb Foveon X3F raw image data !:mime image/x-x3f >6 leshort x \b, version %d. >4 leshort x \b%d >28 lelong x \b, %dx >32 lelong x \b%d # Paint.NET file # From Adam Buchbinder 0 string PDN3 Paint.NET image data !:mime image/x-paintnet # Not really an image. # From: "Tano M. Fotang" 0 string \x46\x4d\x52\x00 ISO/IEC 19794-2 Format Minutiae Record (FMR) #------------------------------------------------------------------------------ # $File: inform,v 1.5 2009/09/19 16:28:09 christos Exp $ # inform: file(1) magic for Inform interactive fiction language # URL: http://www.inform-fiction.org/ # From: Reuben Thomas 0 search/100/cW constant\ story Inform source text #------------------------------------------------------------------------------ # $File: intel,v 1.10 2011/03/30 19:51:00 christos Exp $ # intel: file(1) magic for x86 Unix # # Various flavors of x86 UNIX executable/object (other than Xenix, which # is in "microsoft"). DOS is in "msdos"; the ambitious soul can do # Windows as well. # # Windows NT belongs elsewhere, as you need x86 and MIPS and Alpha and # whatever comes next (HP-PA Hummingbird?). OS/2 may also go elsewhere # as well, if, as, and when IBM makes it portable. # # The `versions' should be un-commented if they work for you. # (Was the problem just one of endianness?) # 0 leshort 0502 basic-16 executable >12 lelong >0 not stripped #>22 leshort >0 - version %ld 0 leshort 0503 basic-16 executable (TV) >12 lelong >0 not stripped #>22 leshort >0 - version %ld 0 leshort 0510 x86 executable >12 lelong >0 not stripped 0 leshort 0511 x86 executable (TV) >12 lelong >0 not stripped 0 leshort =0512 iAPX 286 executable small model (COFF) >12 lelong >0 not stripped #>22 leshort >0 - version %ld 0 leshort =0522 iAPX 286 executable large model (COFF) >12 lelong >0 not stripped #>22 leshort >0 - version %ld # SGI labeled the next entry as "iAPX 386 executable" --Dan Quinlan 0 leshort =0514 80386 COFF executable >12 lelong >0 not stripped >22 leshort >0 - version %ld # rom: file(1) magic for BIOS ROM Extensions found in intel machines # mapped into memory between 0xC0000 and 0xFFFFF # From Gürkan Sengün , www.linuks.mine.nu 0 beshort 0x55AA BIOS (ia32) ROM Ext. >5 string USB USB >7 string LDR UNDI image >30 string IBM IBM comp. Video >26 string Adaptec Adaptec >28 string Adaptec Adaptec >42 string PROMISE Promise >2 byte x (%d*512) # Flash descriptors for Intel SPI flash roms. # From Dr. Jesus 0 lelong 0x0ff0a55a Intel serial flash for ICH/PCH ROM <= 5 or 3400 series A-step 16 lelong 0x0ff0a55a Intel serial flash for PCH ROM #------------------------------------------------------------------------------ # $File: interleaf,v 1.10 2009/09/19 16:28:10 christos Exp $ # interleaf: file(1) magic for InterLeaf TPS: # 0 string =\210OPS Interleaf saved data 0 string =5 string ,\ Version\ = \b, version >>17 string >\0 %.3s #------------------------------------------------------------------------------ # $File: island,v 1.5 2009/09/19 16:28:10 christos Exp $ # island: file(1) magic for IslandWite/IslandDraw, from SunOS 5.5.1 # "/etc/magic": # From: guy@netapp.com (Guy Harris) # 4 string pgscriptver IslandWrite document 13 string DrawFile IslandDraw document #------------------------------------------------------------------------------ # $File: ispell,v 1.8 2009/09/19 16:28:10 christos Exp $ # ispell: file(1) magic for ispell # # Ispell 3.0 has a magic of 0x9601 and ispell 3.1 has 0x9602. This magic # will match 0x9600 through 0x9603 in *both* little endian and big endian. # (No other current magic entries collide.) # # Updated by Daniel Quinlan (quinlan@yggdrasil.com) # 0 leshort&0xFFFC 0x9600 little endian ispell >0 byte 0 hash file (?), >0 byte 1 3.0 hash file, >0 byte 2 3.1 hash file, >0 byte 3 hash file (?), >2 leshort 0x00 8-bit, no capitalization, 26 flags >2 leshort 0x01 7-bit, no capitalization, 26 flags >2 leshort 0x02 8-bit, capitalization, 26 flags >2 leshort 0x03 7-bit, capitalization, 26 flags >2 leshort 0x04 8-bit, no capitalization, 52 flags >2 leshort 0x05 7-bit, no capitalization, 52 flags >2 leshort 0x06 8-bit, capitalization, 52 flags >2 leshort 0x07 7-bit, capitalization, 52 flags >2 leshort 0x08 8-bit, no capitalization, 128 flags >2 leshort 0x09 7-bit, no capitalization, 128 flags >2 leshort 0x0A 8-bit, capitalization, 128 flags >2 leshort 0x0B 7-bit, capitalization, 128 flags >2 leshort 0x0C 8-bit, no capitalization, 256 flags >2 leshort 0x0D 7-bit, no capitalization, 256 flags >2 leshort 0x0E 8-bit, capitalization, 256 flags >2 leshort 0x0F 7-bit, capitalization, 256 flags >4 leshort >0 and %d string characters 0 beshort&0xFFFC 0x9600 big endian ispell >1 byte 0 hash file (?), >1 byte 1 3.0 hash file, >1 byte 2 3.1 hash file, >1 byte 3 hash file (?), >2 beshort 0x00 8-bit, no capitalization, 26 flags >2 beshort 0x01 7-bit, no capitalization, 26 flags >2 beshort 0x02 8-bit, capitalization, 26 flags >2 beshort 0x03 7-bit, capitalization, 26 flags >2 beshort 0x04 8-bit, no capitalization, 52 flags >2 beshort 0x05 7-bit, no capitalization, 52 flags >2 beshort 0x06 8-bit, capitalization, 52 flags >2 beshort 0x07 7-bit, capitalization, 52 flags >2 beshort 0x08 8-bit, no capitalization, 128 flags >2 beshort 0x09 7-bit, no capitalization, 128 flags >2 beshort 0x0A 8-bit, capitalization, 128 flags >2 beshort 0x0B 7-bit, capitalization, 128 flags >2 beshort 0x0C 8-bit, no capitalization, 256 flags >2 beshort 0x0D 7-bit, no capitalization, 256 flags >2 beshort 0x0E 8-bit, capitalization, 256 flags >2 beshort 0x0F 7-bit, capitalization, 256 flags >4 beshort >0 and %d string characters # ispell 4.0 hash files kromJx # Ispell 4.0 0 string ISPL ispell >4 long x hash file version %d, >8 long x lexletters %d, >12 long x lexsize %d, >16 long x hashsize %d, >20 long x stblsize %d #------------------------------------------------------------------------------ # $File: isz,v 1.1 2010/03/27 16:17:09 christos Exp $ # ISO Zipped file format # http://www.ezbsystems.com/isz/iszspec.txt 0 string IsZ! ISO Zipped file >4 byte x \b, header size %u >5 byte x \b, version %u >8 lelong x \b, serial %u #12 leshort x \b, sector size %u #>16 lelong x \b, total sectors %u >17 byte >0 \b, password protected #>24 lequad x \b, segment size %llu #>32 lelong x \b, blocks %u #>36 lelong x \b, block size %u #------------------------------------------------------------ # $File: java,v 1.13 2011/12/08 12:12:46 rrt Exp $ # Java ByteCode and Mach-O binaries (e.g., Mac OS X) use the # same magic number, 0xcafebabe, so they are both handled # in the entry called "cafebabe". #------------------------------------------------------------ # Java serialization # From Martin Pool (m.pool@pharos.com.au) 0 beshort 0xaced Java serialization data >2 beshort >0x0004 \b, version %d 0 belong 0xfeedfeed Java KeyStore !:mime application/x-java-keystore 0 belong 0xcececece Java JCE KeyStore !:mime application/x-java-jce-keystore # Dalvik .dex format. http://retrodev.com/android/dexformat.html # From "Mike Fleming" 0 string dex\n >0 regex dex\n[0-9][0-9][0-9]\0 Dalvik dex file >4 string >000 version %s 0 string dey\n >0 regex dey\n[0-9][0-9][0-9]\0 Dalvik dex file (optimized for host) >4 string >000 version %s # Java source 0 regex ^import.*;$ Java source !:mime text/x-java #------------------------------------------------------------------------------ # $File: jpeg,v 1.16 2011/01/04 19:29:32 rrt Exp $ # JPEG images # SunOS 5.5.1 had # # 0 string \377\330\377\340 JPEG file # 0 string \377\330\377\356 JPG file # # both of which turn into "JPEG image data" here. # 0 beshort 0xffd8 JPEG image data !:mime image/jpeg !:apple 8BIMJPEG !:strength +1 >6 string JFIF \b, JFIF standard # The following added by Erik Rossen 1999-09-06 # in a vain attempt to add image size reporting for JFIF. Note that these # tests are not fool-proof since some perfectly valid JPEGs are currently # impossible to specify in magic(4) format. # First, a little JFIF version info: >>11 byte x \b %d. >>12 byte x \b%02d # Next, the resolution or aspect ratio of the image: #>>13 byte 0 \b, aspect ratio #>>13 byte 1 \b, resolution (DPI) #>>13 byte 2 \b, resolution (DPCM) #>>4 beshort x \b, segment length %d # Next, show thumbnail info, if it exists: >>18 byte !0 \b, thumbnail %dx >>>19 byte x \b%d # EXIF moved down here to avoid reporting a bogus version number, # and EXIF version number printing added. # - Patrik R=E5dman >6 string Exif \b, EXIF standard # Look for EXIF IFD offset in IFD 0, and then look for EXIF version tag in EXIF IFD. # All possible combinations of entries have to be enumerated, since no looping # is possible. And both endians are possible... # The combinations included below are from real-world JPEGs. # Little-endian >>12 string II # IFD 0 Entry #5: >>>70 leshort 0x8769 # EXIF IFD Entry #1: >>>>(78.l+14) leshort 0x9000 >>>>>(78.l+23) byte x %c >>>>>(78.l+24) byte x \b.%c >>>>>(78.l+25) byte !0x30 \b%c # IFD 0 Entry #9: >>>118 leshort 0x8769 # EXIF IFD Entry #3: >>>>(126.l+38) leshort 0x9000 >>>>>(126.l+47) byte x %c >>>>>(126.l+48) byte x \b.%c >>>>>(126.l+49) byte !0x30 \b%c # IFD 0 Entry #10 >>>130 leshort 0x8769 # EXIF IFD Entry #3: >>>>(138.l+38) leshort 0x9000 >>>>>(138.l+47) byte x %c >>>>>(138.l+48) byte x \b.%c >>>>>(138.l+49) byte !0x30 \b%c # EXIF IFD Entry #4: >>>>(138.l+50) leshort 0x9000 >>>>>(138.l+59) byte x %c >>>>>(138.l+60) byte x \b.%c >>>>>(138.l+61) byte !0x30 \b%c # EXIF IFD Entry #5: >>>>(138.l+62) leshort 0x9000 >>>>>(138.l+71) byte x %c >>>>>(138.l+72) byte x \b.%c >>>>>(138.l+73) byte !0x30 \b%c # IFD 0 Entry #11 >>>142 leshort 0x8769 # EXIF IFD Entry #3: >>>>(150.l+38) leshort 0x9000 >>>>>(150.l+47) byte x %c >>>>>(150.l+48) byte x \b.%c >>>>>(150.l+49) byte !0x30 \b%c # EXIF IFD Entry #4: >>>>(150.l+50) leshort 0x9000 >>>>>(150.l+59) byte x %c >>>>>(150.l+60) byte x \b.%c >>>>>(150.l+61) byte !0x30 \b%c # EXIF IFD Entry #5: >>>>(150.l+62) leshort 0x9000 >>>>>(150.l+71) byte x %c >>>>>(150.l+72) byte x \b.%c >>>>>(150.l+73) byte !0x30 \b%c # Big-endian >>12 string MM # IFD 0 Entry #9: >>>118 beshort 0x8769 # EXIF IFD Entry #1: >>>>(126.L+14) beshort 0x9000 >>>>>(126.L+23) byte x %c >>>>>(126.L+24) byte x \b.%c >>>>>(126.L+25) byte !0x30 \b%c # EXIF IFD Entry #3: >>>>(126.L+38) beshort 0x9000 >>>>>(126.L+47) byte x %c >>>>>(126.L+48) byte x \b.%c >>>>>(126.L+49) byte !0x30 \b%c # IFD 0 Entry #10 >>>130 beshort 0x8769 # EXIF IFD Entry #3: >>>>(138.L+38) beshort 0x9000 >>>>>(138.L+47) byte x %c >>>>>(138.L+48) byte x \b.%c >>>>>(138.L+49) byte !0x30 \b%c # EXIF IFD Entry #5: >>>>(138.L+62) beshort 0x9000 >>>>>(138.L+71) byte x %c >>>>>(138.L+72) byte x \b.%c >>>>>(138.L+73) byte !0x30 \b%c # IFD 0 Entry #11 >>>142 beshort 0x8769 # EXIF IFD Entry #4: >>>>(150.L+50) beshort 0x9000 >>>>>(150.L+59) byte x %c >>>>>(150.L+60) byte x \b.%c >>>>>(150.L+61) byte !0x30 \b%c # Here things get sticky. We can do ONE MORE marker segment with # indirect addressing, and that's all. It would be great if we could # do pointer arithemetic like in an assembler language. Christos? # And if there was some sort of looping construct to do searches, plus a few # named accumulators, it would be even more effective... # At least we can show a comment if no other segments got inserted before: >(4.S+5) byte 0xFE \b, comment: >>(4.S+6) pstring/HJ x "%s" # Or, we can show the encoding type (I've included only the three most common) # and image dimensions if we are lucky and the SOFn (image segment) is here: >(4.S+5) byte 0xC0 \b, baseline >>(4.S+6) byte x \b, precision %d >>(4.S+7) beshort x \b, %dx >>(4.S+9) beshort x \b%d >(4.S+5) byte 0xC1 \b, extended sequential >>(4.S+6) byte x \b, precision %d >>(4.S+7) beshort x \b, %dx >>(4.S+9) beshort x \b%d >(4.S+5) byte 0xC2 \b, progressive >>(4.S+6) byte x \b, precision %d >>(4.S+7) beshort x \b, %dx >>(4.S+9) beshort x \b%d # I've commented-out quantisation table reporting. I doubt anyone cares yet. #>(4.S+5) byte 0xDB \b, quantisation table #>>(4.S+6) beshort x \b length=%d #>14 beshort x \b, %d x #>16 beshort x \b %d # HSI is Handmade Software's proprietary JPEG encoding scheme 0 string hsi1 JPEG image data, HSI proprietary # From: David Santinoli 0 string \x00\x00\x00\x0C\x6A\x50\x20\x20\x0D\x0A\x87\x0A JPEG 2000 image data # Type: JPEG 2000 codesream # From: Mathieu Malaterre 0 belong 0xff4fff51 JPEG 2000 codestream 45 beshort 0xff52 #------------------------------------------------------------------------------ # $File: karma,v 1.6 2009/09/19 16:28:10 christos Exp $ # karma: file(1) magic for Karma data files # # From 0 string KarmaRHD Version Karma Data Structure Version >16 belong x %lu #------------------------------------------------------------------------------ # $File: kde,v 1.5 2010/11/25 15:00:12 christos Exp $ # kde: file(1) magic for KDE 0 string/t [KDE\ Desktop\ Entry] KDE desktop entry !:mime application/x-kdelnk 0 string/t #\ KDE\ Config\ File KDE config file !:mime application/x-kdelnk 0 string/t #\ xmcd xmcd database file for kscd !:mime text/x-xmcd #------------------------------------------------------------------------------ # $File: kml,v 1.3 2010/11/25 15:00:12 christos Exp $ # Type: Google KML, formerly Keyhole Markup Language # Future development of this format has been handed # over to the Open Geospatial Consortium. # http://www.opengeospatial.org/standards/kml/ # From: Asbjoern Sloth Toennesen 0 string/t \20 search/400 \ xmlns= >>&0 regex ['"]http://earth.google.com/kml Google KML document !:mime application/vnd.google-earth.kml+xml >>>&1 string 2.0' \b, version 2.0 >>>&1 string 2.1' \b, version 2.1 >>>&1 string 2.2' \b, version 2.2 #------------------------------------------------------------------------------ # Type: OpenGIS KML, formerly Keyhole Markup Language # This standard is maintained by the # Open Geospatial Consortium. # http://www.opengeospatial.org/standards/kml/ # From: Asbjoern Sloth Toennesen >>&0 regex ['"]http://www.opengis.net/kml OpenGIS KML document !:mime application/vnd.google-earth.kml+xml >>>&1 string/t 2.2 \b, version 2.2 #------------------------------------------------------------------------------ # Type: Google KML Archive (ZIP based) # http://code.google.com/apis/kml/documentation/kml_tut.html # From: Asbjoern Sloth Toennesen 0 string PK\003\004 >4 byte 0x14 >>30 string doc.kml Compressed Google KML Document, including resources. !:mime application/vnd.google-earth.kmz #------------------------------------------------------------------------------ # $File: lecter,v 1.4 2009/09/19 16:28:10 christos Exp $ # DEC SRC Virtual Paper: Lectern files # Karl M. Hegbloom 0 string lect DEC SRC Virtual Paper Lectern file #------------------------------------------------------------------------------ # $File: lex,v 1.6 2009/09/19 16:28:10 christos Exp $ # lex: file(1) magic for lex # # derived empirically, your offsets may vary! 0 search/100 yyprevious C program text (from lex) >3 search/1 >\0 for %s # C program text from GNU flex, from Daniel Quinlan 0 search/100 generated\ by\ flex C program text (from flex) # lex description file, from Daniel Quinlan 0 search/1 %{ lex description text #------------------------------------------------------------------------------ # $File: lif,v 1.8 2009/09/19 16:28:10 christos Exp $ # lif: file(1) magic for lif # # (Daniel Quinlan ) # 0 beshort 0x8000 lif file #------------------------------------------------------------------------------ # $File: linux,v 1.42 2012/02/07 21:35:03 christos Exp $ # linux: file(1) magic for Linux files # # Values for Linux/i386 binaries, from Daniel Quinlan # The following basic Linux magic is useful for reference, but using # "long" magic is a better practice in order to avoid collisions. # # 2 leshort 100 Linux/i386 # >0 leshort 0407 impure executable (OMAGIC) # >0 leshort 0410 pure executable (NMAGIC) # >0 leshort 0413 demand-paged executable (ZMAGIC) # >0 leshort 0314 demand-paged executable (QMAGIC) # 0 lelong 0x00640107 Linux/i386 impure executable (OMAGIC) >16 lelong 0 \b, stripped 0 lelong 0x00640108 Linux/i386 pure executable (NMAGIC) >16 lelong 0 \b, stripped 0 lelong 0x0064010b Linux/i386 demand-paged executable (ZMAGIC) >16 lelong 0 \b, stripped 0 lelong 0x006400cc Linux/i386 demand-paged executable (QMAGIC) >16 lelong 0 \b, stripped # 0 string \007\001\000 Linux/i386 object file >20 lelong >0x1020 \b, DLL library # Linux-8086 stuff: 0 string \01\03\020\04 Linux-8086 impure executable >28 long !0 not stripped 0 string \01\03\040\04 Linux-8086 executable >28 long !0 not stripped # 0 string \243\206\001\0 Linux-8086 object file # 0 string \01\03\020\20 Minix-386 impure executable >28 long !0 not stripped 0 string \01\03\040\20 Minix-386 executable >28 long !0 not stripped # core dump file, from Bill Reynolds 216 lelong 0421 Linux/i386 core file >220 string >\0 of '%s' >200 lelong >0 (signal %d) # # LILO boot/chain loaders, from Daniel Quinlan # this can be overridden by the DOS executable (COM) entry 2 string LILO Linux/i386 LILO boot/chain loader # # Linux make config build file, from Ole Aamot 28 string make\ config Linux make config build file # # PSF fonts, from H. Peter Anvin # Updated by Adam Buchbinder # See: http://www.win.tue.nl/~aeb/linux/kbd/font-formats-1.html 0 leshort 0x0436 Linux/i386 PC Screen Font v1 data, >2 byte&0x01 0 256 characters, >2 byte&0x01 !0 512 characters, >2 byte&0x02 0 no directory, >2 byte&0x02 !0 Unicode directory, >3 byte >0 8x%d 0 string \x72\xb5\x4a\x86\x00\x00 Linux/i386 PC Screen Font v2 data, >16 lelong x %d characters, >12 lelong&0x01 0 no directory, >12 lelong&0x01 !0 Unicode directory, >24 lelong x %d >28 lelong x \bx%d # Linux swap file, from Daniel Quinlan 4086 string SWAP-SPACE Linux/i386 swap file # From: Jeff Bailey # Linux swap file with swsusp1 image, from Jeff Bailey 4076 string SWAPSPACE2S1SUSPEND Linux/i386 swap file (new style) with SWSUSP1 image # From: James Hunt 4076 string SWAPSPACE2LINHIB0001 Linux/i386 swap file (new style) (compressed hibernate) # according to man page of mkswap (8) March 1999 # volume label and UUID Russell Coker # http://etbe.coker.com.au/2008/07/08/label-vs-uuid-vs-device/ 4086 string SWAPSPACE2 Linux/i386 swap file (new style), >0x400 long x version %d (4K pages), >0x404 long x size %d pages, >1052 string \0 no label, >1052 string >\0 LABEL=%s, >0x40c belong x UUID=%08x >0x410 beshort x \b-%04x >0x412 beshort x \b-%04x >0x414 beshort x \b-%04x >0x416 belong x \b-%08x >0x41a beshort x \b%04x # From Daniel Novotny # swap file for PowerPC 65526 string SWAPSPACE2 Linux swap file >0x400 long x version %d, >0x404 long x size %d pages, >1052 string \0 no label, >1052 string >\0 LABEL=%s, >0x40c belong x UUID=%08x >0x410 beshort x \b-%04x >0x412 beshort x \b-%04x >0x414 beshort x \b-%04x >0x416 belong x \b-%08x >0x41a beshort x \b%04x 16374 string SWAPSPACE2 Linux/ia64 swap file # # Linux kernel boot images, from Albert Cahalan # and others such as Axel Kohlmeyer # and Nicols Lichtmaier # All known start with: b8 c0 07 8e d8 b8 00 90 8e c0 b9 00 01 29 f6 29 # Linux kernel boot images (i386 arch) (Wolfram Kleff) 514 string HdrS Linux kernel >510 leshort 0xAA55 x86 boot executable >>518 leshort >0x1ff >>>529 byte 0 zImage, >>>529 byte 1 bzImage, >>>(526.s+0x200) string >\0 version %s, >>498 leshort 1 RO-rootFS, >>498 leshort 0 RW-rootFS, >>508 leshort >0 root_dev 0x%X, >>502 leshort >0 swap_dev 0x%X, >>504 leshort >0 RAMdisksize %u KB, >>506 leshort 0xFFFF Normal VGA >>506 leshort 0xFFFE Extended VGA >>506 leshort 0xFFFD Prompt for Videomode >>506 leshort >0 Video mode %d # This also matches new kernels, which were caught above by "HdrS". 0 belong 0xb8c0078e Linux kernel >0x1e3 string Loading version 1.3.79 or older >0x1e9 string Loading from prehistoric times # System.map files - Nicols Lichtmaier 8 search/1 \ A\ _text Linux kernel symbol map text # LSM entries - Nicols Lichtmaier 0 search/1 Begin3 Linux Software Map entry text 0 search/1 Begin4 Linux Software Map entry text (new format) # From Matt Zimmerman, enhanced for v3 by Matthew Palmer 0 belong 0x4f4f4f4d User-mode Linux COW file >4 belong <3 \b, version %d >>8 string >\0 \b, backing file %s >4 belong >2 \b, version %d >>32 string >\0 \b, backing file %s ############################################################################ # Linux kernel versions 0 string \xb8\xc0\x07\x8e\xd8\xb8\x00\x90 Linux >497 leshort 0 x86 boot sector >>514 belong 0x8e of a kernel from the dawn of time! >>514 belong 0x908ed8b4 version 0.99-1.1.42 >>514 belong 0x908ed8b8 for memtest86 >497 leshort !0 x86 kernel >>504 leshort >0 RAMdisksize=%u KB >>502 leshort >0 swap=0x%X >>508 leshort >0 root=0x%X >>>498 leshort 1 \b-ro >>>498 leshort 0 \b-rw >>506 leshort 0xFFFF vga=normal >>506 leshort 0xFFFE vga=extended >>506 leshort 0xFFFD vga=ask >>506 leshort >0 vga=%d >>514 belong 0x908ed881 version 1.1.43-1.1.45 >>514 belong 0x15b281cd >>>0xa8e belong 0x55AA5a5a version 1.1.46-1.2.13,1.3.0 >>>0xa99 belong 0x55AA5a5a version 1.3.1,2 >>>0xaa3 belong 0x55AA5a5a version 1.3.3-1.3.30 >>>0xaa6 belong 0x55AA5a5a version 1.3.31-1.3.41 >>>0xb2b belong 0x55AA5a5a version 1.3.42-1.3.45 >>>0xaf7 belong 0x55AA5a5a version 1.3.46-1.3.72 >>514 string HdrS >>>518 leshort >0x1FF >>>>529 byte 0 \b, zImage >>>>529 byte 1 \b, bzImage >>>>(526.s+0x200) string >\0 \b, version %s # Linux boot sector thefts. 0 belong 0xb8c0078e Linux >0x1e6 belong 0x454c4b53 ELKS Kernel >0x1e6 belong !0x454c4b53 style boot sector ############################################################################ # Linux S390 kernel image # Created by: Jan Kaluza 8 string \x02\x00\x00\x18\x60\x00\x00\x50\x02\x00\x00\x68\x60\x00\x00\x50\x40\x40\x40\x40\x40\x40\x40\x40 Linux S390 >0x00010000 search/b/4096 \x00\x0a\x00\x00\x8b\xad\xcc\xcc # 64bit >>&0 string \xc1\x00\xef\xe3\xf0\x68\x00\x00 Z10 64bit kernel >>&0 string \xc1\x00\xef\xc3\x00\x00\x00\x00 Z9-109 64bit kernel >>&0 string \xc0\x00\x20\x00\x00\x00\x00\x00 Z990 64bit kernel >>&0 string \x00\x00\x00\x00\x00\x00\x00\x00 Z900 64bit kernel # 32bit >>&0 string \x81\x00\xc8\x80\x00\x00\x00\x00 Z10 32bit kernel >>&0 string \x81\x00\xc8\x80\x00\x00\x00\x00 Z9-109 32bit kernel >>&0 string \x80\x00\x20\x00\x00\x00\x00\x00 Z990 32bit kernel >>&0 string \x80\x00\x00\x00\x00\x00\x00\x00 Z900 32bit kernel # Linux ARM compressed kernel image # From: Kevin Cernekee 36 lelong 0x016f2818 Linux kernel ARM boot executable zImage (little-endian) 36 belong 0x016f2818 Linux kernel ARM boot executable zImage (big-endian) ############################################################################ # Linux 8086 executable 0 lelong&0xFF0000FF 0xC30000E9 Linux-Dev86 executable, headerless >5 string . >>4 string >\0 \b, libc version %s 0 lelong&0xFF00FFFF 0x4000301 Linux-8086 executable >2 byte&0x01 !0 \b, unmapped zero page >2 byte&0x20 0 \b, impure >2 byte&0x20 !0 >>2 byte&0x10 !0 \b, A_EXEC >2 byte&0x02 !0 \b, A_PAL >2 byte&0x04 !0 \b, A_NSYM >2 byte&0x08 !0 \b, A_STAND >2 byte&0x40 !0 \b, A_PURE >2 byte&0x80 !0 \b, A_TOVLY >28 long !0 \b, not stripped >37 string . >>36 string >\0 \b, libc version %s # 0 lelong&0xFF00FFFF 0x10000301 ld86 I80386 executable # 0 lelong&0xFF00FFFF 0xB000301 ld86 M68K executable # 0 lelong&0xFF00FFFF 0xC000301 ld86 NS16K executable # 0 lelong&0xFF00FFFF 0x17000301 ld86 SPARC executable # SYSLINUX boot logo files (from 'ppmtolss16' sources) # http://syslinux.zytor.com/ # 0 lelong =0x1413f33d SYSLINUX' LSS16 image data >4 leshort x \b, width %d >6 leshort x \b, height %d 0 string OOOM User-Mode-Linux's Copy-On-Write disk image >4 belong x version %d # SE Linux policy database # From: Mike Frysinger 0 lelong 0xf97cff8c SE Linux policy >16 lelong x v%d >20 lelong 1 MLS >24 lelong x %d symbols >28 lelong x %d ocons # Linux Logical Volume Manager (LVM) # Emmanuel VARAGNAT # # System ID, UUID and volume group name are 128 bytes long # but they should never be full and initialized with zeros... # # LVM1 # 0x0 string HM\001 LVM1 (Linux Logical Volume Manager), version 1 >0x12c string >\0 , System ID: %s 0x0 string HM\002 LVM1 (Linux Logical Volume Manager), version 2 >0x12c string >\0 , System ID: %s # LVM2 # # It seems that the label header can be in one the four first sector # of the disk... (from _find_labeller in lib/label/label.c of LVM2) # # 0x200 seems to be the common case 0x218 string LVM2\ 001 LVM2 PV (Linux Logical Volume Manager) # read the offset to add to the start of the header, and the header # start in 0x200 >&(&-12.l-0x21) byte x # display UUID in LVM format + display all 32 bytes (instead of max string length: 31) >>&0x0 string >\x2f \b, UUID: %.6s >>&0x6 string >\x2f \b-%.4s >>&0xa string >\x2f \b-%.4s >>&0xe string >\x2f \b-%.4s >>&0x12 string >\x2f \b-%.4s >>&0x16 string >\x2f \b-%.4s >>&0x1a string >\x2f \b-%.6s >>&0x20 lequad x \b, size: %lld 0x018 string LVM2\ 001 LVM2 PV (Linux Logical Volume Manager) >&(&-12.l-0x21) byte x # display UUID in LVM format + display all 32 bytes (instead of max string length: 31) >>&0x0 string >\x2f \b, UUID: %.6s >>&0x6 string >\x2f \b-%.4s >>&0xa string >\x2f \b-%.4s >>&0xe string >\x2f \b-%.4s >>&0x12 string >\x2f \b-%.4s >>&0x16 string >\x2f \b-%.4s >>&0x1a string >\x2f \b-%.6s >>&0x20 lequad x \b, size: %lld 0x418 string LVM2\ 001 LVM2 PV (Linux Logical Volume Manager) >&(&-12.l-0x21) byte x # display UUID in LVM format + display all 32 bytes (instead of max string length: 31) >>&0x0 string >\x2f \b, UUID: %.6s >>&0x6 string >\x2f \b-%.4s >>&0xa string >\x2f \b-%.4s >>&0xe string >\x2f \b-%.4s >>&0x12 string >\x2f \b-%.4s >>&0x16 string >\x2f \b-%.4s >>&0x1a string >\x2f \b-%.6s >>&0x20 lequad x \b, size: %lld 0x618 string LVM2\ 001 LVM2 PV (Linux Logical Volume Manager) >&(&-12.l-0x21) byte x # display UUID in LVM format + display all 32 bytes (instead of max string length: 31) >>&0x0 string >\x2f \b, UUID: %.6s >>&0x6 string >\x2f \b-%.4s >>&0xa string >\x2f \b-%.4s >>&0xe string >\x2f \b-%.4s >>&0x12 string >\x2f \b-%.4s >>&0x16 string >\x2f \b-%.4s >>&0x1a string >\x2f \b-%.6s >>&0x20 lequad x \b, size: %lld # LVM snapshot # from Jason Farrel 0 string SnAp LVM Snapshot (CopyOnWrite store) >4 lelong !0 - valid, >4 lelong 0 - invalid, >8 lelong x version %d, >12 lelong x chunk_size %d # SE Linux policy database 0 lelong 0xf97cff8c SE Linux policy >16 lelong x v%d >20 lelong 1 MLS >24 lelong x %d symbols >28 lelong x %d ocons # LUKS: Linux Unified Key Setup, On-Disk Format, http://luks.endorphin.org/spec # Anthon van der Neut (anthon@mnt.org) 0 string LUKS\xba\xbe LUKS encrypted file, >6 beshort x ver %d >8 string x [%s, >40 string x %s, >72 string x %s] >168 string x UUID: %s # Summary: Xen saved domain file # Created by: Radek Vokal 0 string LinuxGuestRecord Xen saved domain >20 search/256 (name >>&1 string x (name %s) # Type: Xen, the virtual machine monitor # From: Radek Vokal 0 string LinuxGuestRecord Xen saved domain #>2 regex \(name\ [^)]*\) %s >20 search/256 (name (name >>&1 string x %s...) #------------------------------------------------------------------------------ # $File: lisp,v 1.23 2009/09/19 16:28:10 christos Exp $ # lisp: file(1) magic for lisp programs # # various lisp types, from Daniel Quinlan (quinlan@yggdrasil.com) # updated by Joerg Jenderek # GRR: This lot is too weak #0 string ;; # windows INF files often begin with semicolon and use CRLF as line end # lisp files are mainly created on unix system with LF as line end #>2 search/4096 !\r Lisp/Scheme program text #>2 search/4096 \r Windows INF file 0 search/4096 (setq\ Lisp/Scheme program text !:mime text/x-lisp 0 search/4096 (defvar\ Lisp/Scheme program text !:mime text/x-lisp 0 search/4096 (defparam\ Lisp/Scheme program text !:mime text/x-lisp 0 search/4096 (defun\ Lisp/Scheme program text !:mime text/x-lisp 0 search/4096 (autoload\ Lisp/Scheme program text !:mime text/x-lisp 0 search/4096 (custom-set-variables\ Lisp/Scheme program text !:mime text/x-lisp # Emacs 18 - this is always correct, but not very magical. 0 string \012( Emacs v18 byte-compiled Lisp data !:mime application/x-elc # Emacs 19+ - ver. recognition added by Ian Springer # Also applies to XEmacs 19+ .elc files; could tell them apart with regexs # - Chris Chittleborough 0 string ;ELC >4 byte >18 >4 byte <32 Emacs/XEmacs v%d byte-compiled Lisp data !:mime application/x-elc # Files produced by CLISP Common Lisp From: Bruno Haible 0 string (SYSTEM::VERSION\040' CLISP byte-compiled Lisp program (pre 2004-03-27) 0 string (|SYSTEM|::|VERSION|\040' CLISP byte-compiled Lisp program text 0 long 0x70768BD2 CLISP memory image data 0 long 0xD28B7670 CLISP memory image data, other endian #.com and .bin for MIT scheme 0 string \372\372\372\372 MIT scheme (library?) # From: David Allouche 0 search/1 \ 0 string llvm LLVM byte-codes, uncompressed 0 string llvc0 LLVM byte-codes, null compression 0 string llvc1 LLVM byte-codes, gzip compression 0 string llvc2 LLVM byte-codes, bzip2 compression 0 string \xde\xc0\x17\x0b LLVM bitcode, wrapper 0 string BC\xc0\xde LLVM bitcode #------------------------------------------------------------------------------ # $File: lua,v 1.5 2009/09/19 16:28:10 christos Exp $ # lua: file(1) magic for Lua scripting language # URL: http://www.lua.org/ # From: Reuben Thomas , Seo Sanghyeon # Lua scripts 0 search/1/w #!\ /usr/bin/lua Lua script text executable !:mime text/x-lua 0 search/1/w #!\ /usr/local/bin/lua Lua script text executable !:mime text/x-lua 0 search/1 #!/usr/bin/env\ lua Lua script text executable !:mime text/x-lua 0 search/1 #!\ /usr/bin/env\ lua Lua script text executable !:mime text/x-lua # Lua bytecode 0 string \033Lua Lua bytecode, >4 byte 0x50 version 5.0 >4 byte 0x51 version 5.1 #------------------------------------------------------------------------------ # $File: luks,v 1.4 2009/09/19 16:28:10 christos Exp $ # luks: file(1) magic for Linux Unified Key Setup # URL: http://luks.endorphin.org/spec # From: Anthon van der Neut 0 string LUKS\xba\xbe LUKS encrypted file, >6 beshort x ver %d >8 string x [%s, >40 string x %s, >72 string x %s] >168 string x UUID: %s #------------------------------------------------------------------------------ # $File: m4,v 1.1 2011/12/08 12:12:46 rrt Exp $ # make: file(1) magic for M4 scripts # 0 regex \^dnl\ M4 macro processor script text !:mime text/x-m4 #------------------------------------------------------------ # $File: mach,v 1.9 2009/09/19 16:28:10 christos Exp $ # Mach has two magic numbers, 0xcafebabe and 0xfeedface. # Unfortunately the first, cafebabe, is shared with # Java ByteCode, so they are both handled in the file "cafebabe". # The "feedface" ones are handled herein. #------------------------------------------------------------ 0 lelong&0xfffffffe 0xfeedface Mach-O >0 byte 0xcf 64-bit >12 lelong 1 object >12 lelong 2 executable >12 lelong 3 fixed virtual memory shared library >12 lelong 4 core >12 lelong 5 preload executable >12 lelong 6 dynamically linked shared library >12 lelong 7 dynamic linker >12 lelong 8 bundle >12 lelong 9 dynamically linked shared library stub >12 lelong >9 >>12 lelong x filetype=%ld >4 lelong <0 >>4 lelong x architecture=%ld >4 lelong 1 vax >4 lelong 2 romp >4 lelong 3 architecture=3 >4 lelong 4 ns32032 >4 lelong 5 ns32332 >4 lelong 6 m68k >4 lelong 7 i386 >4 lelong 8 mips >4 lelong 9 ns32532 >4 lelong 10 architecture=10 >4 lelong 11 hppa >4 lelong 12 acorn >4 lelong 13 m88k >4 lelong 14 sparc >4 lelong 15 i860-big >4 lelong 16 i860 >4 lelong 17 rs6000 >4 lelong 18 ppc >4 lelong 16777234 ppc64 >4 lelong >16777234 >>4 lelong x architecture=%ld # 0 belong&0xfffffffe 0xfeedface Mach-O >3 byte 0xcf 64-bit >12 belong 1 object >12 belong 2 executable >12 belong 3 fixed virtual memory shared library >12 belong 4 core >12 belong 5 preload executable >12 belong 6 dynamically linked shared library >12 belong 7 dynamic linker >12 belong 8 bundle >12 belong 9 dynamically linked shared library stub >12 belong >9 >>12 belong x filetype=%ld >4 belong <0 >>4 belong x architecture=%ld >4 belong 1 vax >4 belong 2 romp >4 belong 3 architecture=3 >4 belong 4 ns32032 >4 belong 5 ns32332 >4 belong 6 for m68k architecture # from NeXTstep 3.0 # i.e. mc680x0_all, ignore # >>8 belong 1 (mc68030) >>8 belong 2 (mc68040) >>8 belong 3 (mc68030 only) >4 belong 7 i386 >4 belong 8 mips >4 belong 9 ns32532 >4 belong 10 architecture=10 >4 belong 11 hppa >4 belong 12 acorn >4 belong 13 m88k >4 belong 14 sparc >4 belong 15 i860-big >4 belong 16 i860 >4 belong 17 rs6000 >4 belong 18 ppc >4 belong 16777234 ppc64 >4 belong >16777234 >>4 belong x architecture=%ld #------------------------------------------------------------------------------ # $File: macintosh,v 1.22 2011/05/17 17:40:31 rrt Exp $ # macintosh description # # BinHex is the Macintosh ASCII-encoded file format (see also "apple") # Daniel Quinlan, quinlan@yggdrasil.com 11 string must\ be\ converted\ with\ BinHex BinHex binary text !:mime application/mac-binhex40 >41 string x \b, version %.3s # Stuffit archives are the de facto standard of compression for Macintosh # files obtained from most archives. (franklsm@tuns.ca) 0 string SIT! StuffIt Archive (data) !:mime application/x-stuffit !:apple SIT!SIT! >2 string x : %s 0 string SITD StuffIt Deluxe (data) >2 string x : %s 0 string Seg StuffIt Deluxe Segment (data) >2 string x : %s # Newer StuffIt archives (grant@netbsd.org) 0 string StuffIt StuffIt Archive !:mime application/x-stuffit !:apple SIT!SIT! #>162 string >0 : %s # Macintosh Applications and Installation binaries (franklsm@tuns.ca) # GRR: Too weak #0 string APPL Macintosh Application (data) #>2 string x \b: %s # Macintosh System files (franklsm@tuns.ca) # GRR: Too weak #0 string zsys Macintosh System File (data) #0 string FNDR Macintosh Finder (data) #0 string libr Macintosh Library (data) #>2 string x : %s #0 string shlb Macintosh Shared Library (data) #>2 string x : %s #0 string cdev Macintosh Control Panel (data) #>2 string x : %s #0 string INIT Macintosh Extension (data) #>2 string x : %s #0 string FFIL Macintosh Truetype Font (data) #>2 string x : %s #0 string LWFN Macintosh Postscript Font (data) #>2 string x : %s # Additional Macintosh Files (franklsm@tuns.ca) # GRR: Too weak #0 string PACT Macintosh Compact Pro Archive (data) #>2 string x : %s #0 string ttro Macintosh TeachText File (data) #>2 string x : %s #0 string TEXT Macintosh TeachText File (data) #>2 string x : %s #0 string PDF Macintosh PDF File (data) #>2 string x : %s # MacBinary format (Eric Fischer, enf@pobox.com) # # Unfortunately MacBinary doesn't really have a magic number prior # to the MacBinary III format. The checksum is really the way to # do it, but the magic file format isn't up to the challenge. # # 0 byte 0 # 1 byte # filename length # 2 string # filename # 65 string # file type # 69 string # file creator # 73 byte # Finder flags # 74 byte 0 # 75 beshort # vertical posn in window # 77 beshort # horiz posn in window # 79 beshort # window or folder ID # 81 byte # protected? # 82 byte 0 # 83 belong # length of data segment # 87 belong # length of resource segment # 91 belong # file creation date # 95 belong # file modification date # 99 beshort # length of comment after resource # 101 byte # new Finder flags # 102 string mBIN # (only in MacBinary III) # 106 byte # char. code of file name # 107 byte # still more Finder flags # 116 belong # total file length # 120 beshort # length of add'l header # 122 byte 129 # for MacBinary II # 122 byte 130 # for MacBinary III # 123 byte 129 # minimum version that can read fmt # 124 beshort # checksum # # This attempts to use the version numbers as a magic number, requiring # that the first one be 0x80, 0x81, 0x82, or 0x83, and that the second # be 0x81. This works for the files I have, but maybe not for everyone's. # Unfortunately, this magic is quite weak - MPi #122 beshort&0xFCFF 0x8081 Macintosh MacBinary data # MacBinary I doesn't have the version number field at all, but MacBinary II # has been in use since 1987 so I hope there aren't many really old files # floating around that this will miss. The original spec calls for using # the nulls in 0, 74, and 82 as the magic number. # # Another possibility, that would also work for MacBinary I, is to use # the assumption that 65-72 will all be ASCII (0x20-0x7F), that 73 will # have bits 1 (changed), 2 (busy), 3 (bozo), and 6 (invisible) unset, # and that 74 will be 0. So something like # # 71 belong&0x80804EFF 0x00000000 Macintosh MacBinary data # # >73 byte&0x01 0x01 \b, inited # >73 byte&0x02 0x02 \b, changed # >73 byte&0x04 0x04 \b, busy # >73 byte&0x08 0x08 \b, bozo # >73 byte&0x10 0x10 \b, system # >73 byte&0x10 0x20 \b, bundle # >73 byte&0x10 0x40 \b, invisible # >73 byte&0x10 0x80 \b, locked #>65 string x \b, type "%4.4s" #>65 string 8BIM (PhotoShop) #>65 string ALB3 (PageMaker 3) #>65 string ALB4 (PageMaker 4) #>65 string ALT3 (PageMaker 3) #>65 string APPL (application) #>65 string AWWP (AppleWorks word processor) #>65 string CIRC (simulated circuit) #>65 string DRWG (MacDraw) #>65 string EPSF (Encapsulated PostScript) #>65 string FFIL (font suitcase) #>65 string FKEY (function key) #>65 string FNDR (Macintosh Finder) #>65 string GIFf (GIF image) #>65 string Gzip (GNU gzip) #>65 string INIT (system extension) #>65 string LIB\ (library) #>65 string LWFN (PostScript font) #>65 string MSBC (Microsoft BASIC) #>65 string PACT (Compact Pro archive) #>65 string PDF\ (Portable Document Format) #>65 string PICT (picture) #>65 string PNTG (MacPaint picture) #>65 string PREF (preferences) #>65 string PROJ (Think C project) #>65 string QPRJ (Think Pascal project) #>65 string SCFL (Defender scores) #>65 string SCRN (startup screen) #>65 string SITD (StuffIt Deluxe) #>65 string SPn3 (SuperPaint) #>65 string STAK (HyperCard stack) #>65 string Seg\ (StuffIt segment) #>65 string TARF (Unix tar archive) #>65 string TEXT (ASCII) #>65 string TIFF (TIFF image) #>65 string TOVF (Eudora table of contents) #>65 string WDBN (Microsoft Word word processor) #>65 string WORD (MacWrite word processor) #>65 string XLS\ (Microsoft Excel) #>65 string ZIVM (compress (.Z)) #>65 string ZSYS (Pre-System 7 system file) #>65 string acf3 (Aldus FreeHand) #>65 string cdev (control panel) #>65 string dfil (Desk Acessory suitcase) #>65 string libr (library) #>65 string nX^d (WriteNow word processor) #>65 string nX^w (WriteNow dictionary) #>65 string rsrc (resource) #>65 string scbk (Scrapbook) #>65 string shlb (shared library) #>65 string ttro (SimpleText read-only) #>65 string zsys (system file) #>69 string x \b, creator "%4.4s" # Somewhere, Apple has a repository of registered Creator IDs. These are # just the ones that I happened to have files from and was able to identify. #>69 string 8BIM (Adobe Photoshop) #>69 string ALD3 (PageMaker 3) #>69 string ALD4 (PageMaker 4) #>69 string ALFA (Alpha editor) #>69 string APLS (Apple Scanner) #>69 string APSC (Apple Scanner) #>69 string BRKL (Brickles) #>69 string BTFT (BitFont) #>69 string CCL2 (Common Lisp 2) #>69 string CCL\ (Common Lisp) #>69 string CDmo (The Talking Moose) #>69 string CPCT (Compact Pro) #>69 string CSOm (Eudora) #>69 string DMOV (Font/DA Mover) #>69 string DSIM (DigSim) #>69 string EDIT (Macintosh Edit) #>69 string ERIK (Macintosh Finder) #>69 string EXTR (self-extracting archive) #>69 string Gzip (GNU gzip) #>69 string KAHL (Think C) #>69 string LWFU (LaserWriter Utility) #>69 string LZIV (compress) #>69 string MACA (MacWrite) #>69 string MACS (Macintosh operating system) #>69 string MAcK (MacKnowledge terminal emulator) #>69 string MLND (Defender) #>69 string MPNT (MacPaint) #>69 string MSBB (Microsoft BASIC (binary)) #>69 string MSWD (Microsoft Word) #>69 string NCSA (NCSA Telnet) #>69 string PJMM (Think Pascal) #>69 string PSAL (Hunt the Wumpus) #>69 string PSI2 (Apple File Exchange) #>69 string R*ch (BBEdit) #>69 string RMKR (Resource Maker) #>69 string RSED (Resource Editor) #>69 string Rich (BBEdit) #>69 string SIT! (StuffIt) #>69 string SPNT (SuperPaint) #>69 string Unix (NeXT Mac filesystem) #>69 string VIM! (Vim editor) #>69 string WILD (HyperCard) #>69 string XCEL (Microsoft Excel) #>69 string aCa2 (Fontographer) #>69 string aca3 (Aldus FreeHand) #>69 string dosa (Macintosh MS-DOS file system) #>69 string movr (Font/DA Mover) #>69 string nX^n (WriteNow) #>69 string pdos (Apple ProDOS file system) #>69 string scbk (Scrapbook) #>69 string ttxt (SimpleText) #>69 string ufox (Foreign File Access) # Just in case... 102 string mBIN MacBinary III data with surprising version number # sas magic from Bruce Foster (bef@nwu.edu) # #0 string SAS SAS #>8 string x %s 0 string SAS SAS >24 string DATA data file >24 string CATALOG catalog >24 string INDEX data file index >24 string VIEW data view # sas 7+ magic from Reinhold Koch (reinhold.koch@roche.com) # 0x54 string SAS SAS 7+ >0x9C string DATA data file >0x9C string CATALOG catalog >0x9C string INDEX data file index >0x9C string VIEW data view # spss magic for SPSS system and portable files, # from Bruce Foster (bef@nwu.edu). 0 long 0xc1e2c3c9 SPSS Portable File >40 string x %s 0 string $FL2 SPSS System File >24 string x %s # Macintosh filesystem data # From "Tom N Harris" # Fixed HFS+ and Partition map magic: Ethan Benson # The MacOS epoch begins on 1 Jan 1904 instead of 1 Jan 1970, so these # entries depend on the data arithmetic added after v.35 # There's also some Pascal strings in here, ditto... # The boot block signature, according to IM:Files, is # "for HFS volumes, this field always contains the value 0x4C4B." # But if this is true for MFS or HFS+ volumes, I don't know. # Alternatively, the boot block is supposed to be zeroed if it's # unused, so a simply >0 should suffice. 0x400 beshort 0xD2D7 Macintosh MFS data >0 beshort 0x4C4B (bootable) >0x40a beshort &0x8000 (locked) >0x402 beldate-0x7C25B080 x created: %s, >0x406 beldate-0x7C25B080 >0 last backup: %s, >0x414 belong x block size: %d, >0x412 beshort x number of blocks: %d, >0x424 pstring x volume name: %s # "BD" gives many false positives #0x400 beshort 0x4244 Macintosh HFS data #>0 beshort 0x4C4B (bootable) #>0x40a beshort &0x8000 (locked) #>0x40a beshort ^0x0100 (mounted) #>0x40a beshort &0x0200 (spared blocks) #>0x40a beshort &0x0800 (unclean) #>0x47C beshort 0x482B (Embedded HFS+ Volume) #>0x402 beldate-0x7C25B080 x created: %s, #>0x406 beldate-0x7C25B080 x last modified: %s, #>0x440 beldate-0x7C25B080 >0 last backup: %s, #>0x414 belong x block size: %d, #>0x412 beshort x number of blocks: %d, #>0x424 pstring x volume name: %s 0x400 beshort 0x482B Macintosh HFS Extended >&0 beshort x version %d data >0 beshort 0x4C4B (bootable) >0x404 belong ^0x00000100 (mounted) >&2 belong &0x00000200 (spared blocks) >&2 belong &0x00000800 (unclean) >&2 belong &0x00008000 (locked) >&6 string x last mounted by: '%.4s', # really, that should be treated as a belong and we print a string # based on the value. TN1150 only mentions '8.10' for "MacOS 8.1" >&14 beldate-0x7C25B080 x created: %s, # only the creation date is local time, all other timestamps in HFS+ are UTC. >&18 bedate-0x7C25B080 x last modified: %s, >&22 bedate-0x7C25B080 >0 last backup: %s, >&26 bedate-0x7C25B080 >0 last checked: %s, >&38 belong x block size: %d, >&42 belong x number of blocks: %d, >&46 belong x free blocks: %d # I don't think this is really necessary since it doesn't do much and # anything with a valid driver descriptor will also have a valid # partition map #0 beshort 0x4552 Apple Device Driver data #>&24 beshort =1 \b, MacOS # Is that the partition type a cstring or a pstring? Well, IM says "strings # shorter than 32 bytes must be terminated with NULL" so I'll treat it as a # cstring. Of course, partitions can contain more than four entries, but # what're you gonna do? # GRR: This magic is too weak, it is just "PM" #0x200 beshort 0x504D Apple Partition data #>0x2 beshort x (block size: %d): #>0x230 string x first type: %s, #>0x210 string x name: %s, #>0x254 belong x number of blocks: %d, #>0x400 beshort 0x504D #>>0x430 string x second type: %s, #>>0x410 string x name: %s, #>>0x454 belong x number of blocks: %d, #>>0x600 beshort 0x504D #>>>0x630 string x third type: %s, #>>>0x610 string x name: %s, #>>>0x654 belong x number of blocks: %d, #>>0x800 beshort 0x504D #>>>0x830 string x fourth type: %s, #>>>0x810 string x name: %s, #>>>0x854 belong x number of blocks: %d, #>>>0xa00 beshort 0x504D #>>>>0xa30 string x fifth type: %s, #>>>>0xa10 string x name: %s, #>>>>0xa54 belong x number of blocks: %d #>>>0xc00 beshort 0x504D #>>>>0xc30 string x sixth type: %s, #>>>>0xc10 string x name: %s, #>>>>0xc54 belong x number of blocks: %d ## AFAIK, only the signature is different #0x200 beshort 0x5453 Apple Old Partition data #>0x2 beshort x block size: %d, #>0x230 string x first type: %s, #>0x210 string x name: %s, #>0x254 belong x number of blocks: %d, #>0x400 beshort 0x504D #>>0x430 string x second type: %s, #>>0x410 string x name: %s, #>>0x454 belong x number of blocks: %d, #>>0x800 beshort 0x504D #>>>0x830 string x third type: %s, #>>>0x810 string x name: %s, #>>>0x854 belong x number of blocks: %d, #>>>0xa00 beshort 0x504D #>>>>0xa30 string x fourth type: %s, #>>>>0xa10 string x name: %s, #>>>>0xa54 belong x number of blocks: %d # From: Remi Mommsen 0 string BOMStore Mac OS X bill of materials (BOM) file # From: Adam Buchbinder # URL: http://en.wikipedia.org/wiki/Datafork_TrueType # Derived from the 'fondu' and 'ufond' source code (fondu.sf.net). 'sfnt' is # TrueType; 'POST' is PostScript. 'FONT' and 'NFNT' sometimes appear, but I # don't know what they mean. 0 belong 0x100 >(0x4.L+24) beshort x >>&4 belong 0x73666e74 Mac OSX datafork font, TrueType >>&4 belong 0x464f4e54 Mac OSX datafork font, 'FONT' >>&4 belong 0x4e464e54 Mac OSX datafork font, 'NFNT' >>&4 belong 0x504f5354 Mac OSX datafork font, PostScript #------------------------------------------------------------------------------ # $File: magic,v 1.10 2010/11/25 15:00:12 christos Exp $ # magic: file(1) magic for magic files # 0 string/t #\ Magic magic text file for file(1) cmd 0 lelong 0xF11E041C magic binary file for file(1) cmd >4 lelong x (version %d) (little endian) 0 belong 0xF11E041C magic binary file for file(1) cmd >4 belong x (version %d) (big endian) #------------------------------------------------------------------------------ # $File: mail.news,v 1.20 2011/12/08 12:12:46 rrt Exp $ # mail.news: file(1) magic for mail and news # # Unfortunately, saved netnews also has From line added in some news software. #0 string From mail text 0 string/t Relay-Version: old news text !:mime message/rfc822 0 string/t #!\ rnews batched news text !:mime message/rfc822 0 string/t N#!\ rnews mailed, batched news text !:mime message/rfc822 0 string/t Forward\ to mail forwarding text !:mime message/rfc822 0 string/t Pipe\ to mail piping text !:mime message/rfc822 0 string/t Delivered-To: SMTP mail text !:mime message/rfc822 0 string/t Return-Path: SMTP mail text !:mime message/rfc822 0 string/t Path: news text !:mime message/news 0 string/t Xref: news text !:mime message/news 0 string/t From: news or mail text !:mime message/rfc822 0 string/t Article saved news text !:mime message/news 0 string/t BABYL Emacs RMAIL text 0 string/t Received: RFC 822 mail text !:mime message/rfc822 0 string/t MIME-Version: MIME entity text #0 string/t Content- MIME entity text # TNEF files... 0 lelong 0x223E9F78 Transport Neutral Encapsulation Format !:mime application/vnd.ms-tnef # From: Kevin Sullivan 0 string *mbx* MBX mail folder # From: Simon Matter 0 string \241\002\213\015skiplist\ file\0\0\0 Cyrus skiplist DB # JAM(mbp) Fidonet message area databases # JHR file 0 string JAM\0 JAM message area header file >12 leshort >0 (%d messages) # Squish Fidonet message area databases # SQD file (requires at least one message in the area) # XXX: Weak magic #256 leshort 0xAFAE4453 Squish message area data file #>4 leshort >0 (%d messages) #0 string \

DESCRIPTION

Top

Template Toolkit Language

Top

Why doesn't [% a = b IF c %] work as expected?

Top

Because the parser interprets it as

[% a = (b IF c) %]

Do this instead:

[% SET a = b IF c %]

If I'm using TT to write out a TT template, is there a good way to escape [% and %]?

Top

You can do this: [% stag = "[\%" etag = "%\]" %] and then: [% stag; 'hello'; etag %]

Or something like:

[% TAGS [- -] %]
[- INCLUDE foo -]   # is a directive
[% INCLUDE foo %]   # not a directive, just plain text, passed through

How do I iterate over a hash?

Top

This is covered in the Template::Manual::VMethods section of the manual page. A list of all the keys that are in the hash can be obtained with the 'keys' virtual method. You can then iterate over that list and by looking up each key in turn get the value.

[% FOREACH key = product.keys %]
   [% key %] => [% product.$key %]
[% END %]

Plugins

Top

How do I get the Table plugin to order data across rather than down?

Top

Order the data into rows:

 Steve     Karen     Jeff
 Brooklyn  Nantucket Fairfax
 NY        MA        VA

[% USE table(data, rows=3) %]

Then ask for each column

[% FOREACH column = table.cols %]

And then print each item in the column going across the output rows

[% FOREACH item = column %]
<td>[% item %]</td>
[% END %]

Accessing Cookies

Top

Jeff Boes <jboes@nexcerpt.com> asks:

Does anyone have a quick-n-dirty approach to accessing 
cookies from templates? 

Jonas Liljegren answers:

[% USE CGI %]

<p>The value is [% CGI.cookie('cookie_name') | html %]

Extending the Template Toolkit

Top

Can I serve templates from a database?

Top

Short answer: yes, Chris Nandor has done this for Slash. You need to subclass Template::Provider. See the mailing list archives for further info.

Can I fetch templates via http?

Top

To do the job properly, you should sublcass Template::Provider to Template::Provider::HTTP and use a PREFIX_MAP option to bind the 'http' template prefix to that particular provider (you may want to go digging around in the Changes file around version 2.01 for more info on PREFIX_MAP - it may not be properly documented anywhere else...yet!). e.g. (untested due to lack of existing HTTP Provider - patches welcome!).

use Template::Provider::HTTP;
my $file = Template::Provider( INCLUDE_PATH => [...] );
my $http = Template::Provider::HTTP->new(...);
my $tt2  = Template->new({
LOAD_TEMPLATES => [ $file, $http ],
PREFIX_MAP => {
    file    => '0',    # file:foo.html
    http    => '1',    # http:foo.html
    default => '0',    # foo.html => file:foo.html
}
});

Now a template specified as:

[% INCLUDE foo %]

will be served by the 'file' provider (the default). Otherwise you can explicitly add a prefix:

[% INCLUDE file:foo.html %]
[% INCLUDE http:foo.html %]
[% INCLUDE http://www.xyz.com/tt2/header.tt2 %]

This same principal can be used to create a DBI template provider. e.g.

[% INCLUDE dbi:foo.html %]

But similarly, alas, we don't yet have a DBI provider as part of the Template Toolkit. There has been some talk on the mailing list about efforts to develop DBI and/or HTTP providers but as yet no-one has stepped forward to take up the challenge...

In the mean time, Craig's post from the mailing list has some useful pointers on how to acheive this using existing modules:

To: Adam Theo <adamtheo@theoretic.com> 
From: Craig Barratt <craig@arraycomm.com>
Date: Fri, 18 May 2001 17:06:59 -0700

> i was wondering if there is anyway to fetch a file using http:// or
> ftp:// and include that?

Here's one way.  Set the LOAD_PERL option:

    use Template;

    my $template = Template->new({  
        LOAD_PERL => 1
    });  
    $template->process("example.tt", { stdout => *STDOUT })
                     || die $template->error();

and then use LWP::UserAgent and HTTP::Request:

    [% 
        USE ua = LWP.UserAgent; 
        ua.proxy("http", "http://your_proxy/");
        USE req = HTTP.Request("GET", "http://www.cpan.org");
        ua.request(req).content;
    -%]

For FTP use Net::FTP:

    [%   
        USE ftp = Net.FTP("ftp.cpan.org");
        x = ftp.login("anonymous", "me@here.there");
        x = ftp.cwd("/");
        x = ftp.get("welcome.msg", stdout);
        x = ftp.quit;
    -%]

Normally ftp.get would write the file into the current directory.
Instead we pass stdout as a second argument so that it is written
to stdout.  We set stdout to STDOUT in the variables we pass to
process. 

Craig

Miscellaneous

Top

How can I find out the name of the main template being processed?

Top

The template variable contains a reference to the Template::Document object for the main template you're processing (i.e. the one provided as the first argument to the Template process() method). The name method returns its name.

[% template.name %]     # e.g. index.html

How can I find out the name of the current template being processed?

Top

The template variable always references the main template being processed. So even if you call [% INCLUDE header %], and that calls [% INCLUDE menu %], the template variable will be unchanged.

index.html:

[% template.name  %]     # index.html
[% INCLUDE header %]

header:

[% template.name  %]     # index.html
[% INCLUDE menu   %]

menu:

[% template.name  %]     # index.html

In constrast, the component variable always references the current template being processed.

index.html

[% component.name %]     # index.html
[% INCLUDE header %]

header:

[% component.name %]     # header
[% INCLUDE menu   %]

menu:

[% component.name  %]     # menu

How do I print the modification time of the template or component?

Top

The template and component variables reference the main template and the current template being processed (see previous questions). The modtime method returns the modification time of the corresponding template file as a number of seconds since the Unix epoch (00:00:00 GMT 1st January 1970).

This number doesn't mean much to anyone (except perhaps serious Unix geeks) so you'll probably want to use the Date plugin to format it for human consumption.

[% USE Date %]
[% template.name %] last modified [% Date.format(template.modtime) %]

How can I configure variables on a per-request basis?

Top

One easy way to acheive this is to define a single PRE_PROCESS template which loads in other configuration files based on variables defined or other conditions.

For example, my setup usually looks something like this:

PRE_PROCESS => 'config/main'

config/main:

[%  DEFAULT  style   = 'text'
             section =  template.section or 'home';
    PROCESS  config/site
          +  config/urls
          +  config/macros
          + "config/style/$style"
          + "config/section/$section"
          + ...
%]

This allows me to set a single 'style' variable to control which config file gets pre-processed to set my various style options (colours, img paths, etc). For example:

config/style/basic:

[%  style = {
    name = style    # save existing 'style' var as 'style.name'
# define various other style variables....
    col = {
    back => '#ffffff'
    text => '#000000'
    # ...etc...
}
logo = {
    # ...etc...
}
    # ...etc...
}
%]

Each source template can declare which section it's in via a META directive:

[% META
 title   = 'General Information'
 section = 'info'
%]
...

This controls which section configuration file gets loaded to set various other variables for defining the section title, menu, etc.

config/section/info:

[%  section = {
        name   = section  # save 'section' var as 'section.name'
        title  = 'Information'
        menu   = [ ... ]
        # ...etc...
    }
%]

This illustrates the basic principal but you can extend it to perform pretty much any kind of per-document initialisation that you require.

AUTHOR

Top

Andy Wardley <abw@wardley.org> http://wardley.org/

COPYRIGHT

Top

Copyright (C) 1996-2007 Andy Wardley. All Rights Reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


/misc/FAQ.html last modified 10:38:14 01-Jun-2007
vmw_balloon.ko.xz000064400000014370147562761670010110 0ustar007zXZִF!t/[l]?Eh=ڜ.+@Jsh0R]=0Th'p`BV"OCW6l{Qt]Ng~J7=еvEr^{[F 2H"&~3}"W-͂boI쏏Nẍ́ ˙ճ W'ȵH28%hK%h; sz$([0nQlHT6u|%`_2_?XfKt>?U e ,C>s[^g ШGcHf]M?AmHE=c,&.6ݾن9kQ)4 AynGx7E.]e7`,q4;J3m7jL(kP6 ct/oEZ#Qr`N"\*gOqEH%#\sm3V%́6>\e&Ȗ Vd~2&UvU1 ^WaZFkǗ7'ˏpKK4?,M5,Y#ڿF;29(=U +NEҞY/bEkP Z5D{)Nk݌ U4Yb}ژoj힛%8u(ar3ụ\Z2bd*_$vpykO RDh7D! B=jC6%:-8OoI\lFSM ܜ|> DLlbdƈeTm+-T.G"BEg+&3R{`4>aH^gHJDi^@En_iV0K}l5 T!nT*s&O-~I0͊½W'ZUx1^ Kp}bQTkD(h$BGs9,է?iއ$/h݀^ lf3 -{t]>uPeyIǷЖ]S ߺ~XNU<ՍdH l=QP@F_6L+z[uPP"_yi0ܙ}6=M3|ԋ=W "1~|pv jn\BR#|'-D&{ɯ]ϓss |:ku۠X絏hMcg۳NfOh\$b{-mYB=Iٽd ?*ؗo\˴ك%B<%cK`W_}QByӱpVO)9):k w۳ s*gږ$#˒Q$l3Y|"9 ;T-Iݫ ?V9D4Gdm5'mjOe $ VGg#ʋЬ69ETt$R7f ]T%lwS(%hFJX oLŹDx,>xmIq jcgY_# fZޙ;Zw\鑨/TWEPo}46DVHRXCsWGnݖh )x`ĶR3'[@2*гe1ڴr_F͖-uʹ4כMۅ9a &"q#&?)K(/-ܺYM%*4 `b&$V"+Rt]V暱R51dz4*^I;.ޖKUj aAwG$ 0F>)$A[~yA[lB@S  y<˽bDt2Z y~XbaW#SNa>>;i"l`"b+GZ6_mArT8 \%rᆆSFQX|I!> D]uKX!$ ^‘l$sM)(nV4l%+ 84pH cVws0{u'Yb14'(tKq<㖱Ya$6᳏MgSsӎW+8ƿq2`4Omb8toM qi`d݇o$tJoszm#:~ꎷn:!:9>ϷQ~!+~D Ix׉bnګK{K<U!1kXӾmJ_6/cmxQDNi!T#qNԿE^QVqfq: Zt$߃.T_# 47c[ (< 6t4H`0]L ![Bhja<:\t|I+qiUFW h"^&3ȩ|k||LY'?5P^sZ5eJU}D.isAް?]NqQ_3!g3ρ%9 =Y0UtĹbw,:^E'W<((p4Ƕiԇz7&ߺI6 :iLA":(E&Z!Ֆ%@GJpђd1i[1Yc>%a OƫSP}-y'ڽ9UEowQ+›T,|/K1t7e>v]XGAg=|L$^m{0bx8F8J[G8ٓ?o韠>D>K$dlba et?\|#otH?KEx[5_D#v3|<ԛW-t< w%нt #& 0 n d5T螺5t[ J40hrgaӒlRtTǷaV ߺ'!'贋j76}7>eqDx6rҁz.f :Qӹ:(E;hr? hMfc(_^մuZ}_ęL#%А~=P DbL.Z4Í-IvIDI\:ť>~NG'dΔڄd]A)HHzEvry8*\0ZGB\!=P=_{0)]q[A. hXAGE~IG\΍$:&GfW6+ [U 2xJaY3dg$O܂<.&̡* ɫrE_~j gna\P1B C=%0XQyLl2^MkVKwY`iD6WDc$T<86kLu6)8Iebh|t.vXw2a4F,b:3NyZ+?qvuo>0ȺԖ9+p(y#%,$$[m:"Ĥe Dd`ORHI3սI:y~P ͓m8l^tkhrðCHclBWŤ^e1>pRZNMh'_Xl{Gh} 'f ,m~7 &QE[|Z"2!^4* if1 =@[И1P)o3굞E[\MZ; @cӡnڅ8+j'OfgO1>7}>":诈,k @tv 7_*cAåʼ 7!UJ*0p jn\p` fբVfzkؕ>*I;Qs~% DT3GaPgW"ίֳN.{a{%ڟ7frOg. {' ؞3ۭg6+]B< :yH2`;.X,xʣac-N%7[E;`UlhX[}]쁶7Y^Փ+-٭qiO iֲpS{̬9 O A@+f56h1anzSv?q$Bhe\Y?swȼo%ҶcTb⤨BTJ#a8~<1$?R1r-V5u֮,-4*$SJ>3Y]ULDpu?JCEcI9\|+%C>)$&\ǝ:f ئ $K#ohY&X: o4=9 oǔ;;_̬O0ao:ǭT_3̧e8cn5p}[{xHtFgDՏ2#TBevœxUGIB[J٤GYc럠(d<.tnԧ@+HJՔɰ3'{pDSkx}u_ e,$\sJ#BnO?`[Z:s"b"efO=ԯEf|\lc=l‚AQ]څ)e~TQAAaLG͂Ş\+$0DS2IN2I7ũS)E}(8V>u^E ?M &Wm|jx"4hz!5 okE!Vouu!RZ[~^[ |D J1=vqo}YL,G\Ls՚'2C]V/`-{&LѕBGr鵼yE p'xi'o  3ͪmBXtb 9L!0P!b2Ӆ Ů ^3߷xދ$epo0rӪ5Eq_نKYTQS-(2!kN[<`kE| :SxK! Ơo/vn_mZuۓJOtUimXgAAl8 ;PxJxpX{ICYwת#ݹ"T/h/.~MCfPԐ״e &Sc<ĝ$^;~YyJƠp֬%G_&J[ux:ݼKK0N⿎4pP¦+>[~5Dzp9*7(i ܆oܖÁhxmݓ"8r$#P-+"4+T;yXFLPPO]F5E`3P N0o@Xdrx=⼻ZAhH@@OB?gjHG/ 9SkՋZ0ͳqp**0J{ٍX+;cAӿۓ5(}O^xAG'KͿLoq @۞3 h44 V\2R!_Eaڈ9-K7t/])&UWS(| 84]AA\Jwq÷# C k L%̮]2~+ .ژ,IE!O.qPjJʺʻmԹe=>]9K˰7h¿;?.3HּPFd6 :ť|2?Xh'jf {@A^&ա3Zt}S9{"}S31NOχsaôo9)O?( <.Q>bw̕&uu茴5li]:Hk L}˅5Ra\R >wv1|&jK B>1%N2$S3mWfݓN5 >ijˊۢ С1G. u^<*ԒT"$^]b(W=^9YGϬOKO2\#DEeaGzѷh!gR@45(pR)z qubm0UH,wo%!o߆0}?6;eW7$0 ]jCQ^3t^vJGDa OX~n.KT}{;@1u2F<6|L|ͮ04)>I F"UVEVI HJ[En[JoT83@\&~& ceYMá3dƥP_,f1O辳w>qêWN(Nk2#36١ˍ o m-ç{WDJ1#e;{=X`LsBg0f ]u< l0>SvSIhݸϙ7FǕbkR[=tU~{ CzkFw.ϏX͔O75kݝG a)U([I_!>o TP\3eY. XPo!]G@'>ljmLHc{Ev=Lrh Y5r nc>84zu KRn+EFP+ ~z7, Z,\Rh&-<z&u)aRԊI?_-tR6|bSO`F`LTZMO8t[%#j_|d1hhM U[s[8EB~UNSWa^=7PPH_F"da%G$n7.bÆ(SCCIIxKq& [.&ۦ%"3ƒ4^FX@U՘}JmWl!|Lx]絛A;\*U š C&4 9NCǷ\e3Ȝ@Zyo"#Y ia٦ǖa?#m$2kLUXq/v,Bse2`zu\O[U^X"**yyH񁗻5N5Ȇ4&Mt1¢P T<#UlEk30)_V;6E7/K?Ɠ anJ,ʤhЎc OˋgCD#E* BAt?PN+mԌ :3N%^ qIt=h_>/cy-ۨAط:[&jeȑ̤oHn=0A&l&NChs 0D2qɬȿ*wة-]Ͽ菱Gm[wP'B=F @h8 ki#œ-qRw=d=Q*e|IȨ f*5^ӓ/DzW||]JpepPd .YhO__>5{Sk#@cM-b$z^cK28ixu-#! 2t#l?4r `ĉ*+pC}# uWdkHp\ 1!Y@0? P30C1AjsǴ-_ FXY*]Jw5n?5[͗^f?ąi4{~"us]?P_Y$ƩJؓr]Jw"KB 4ƩXH]{X5LcBi`@x  hǪaa* hx z&IکeȮ؉< ,f/Wt($a<\+0Hd_M9L\tټ/ģm?,-?} }|~Dǃd&u2gYZaltera-stapl/altera-stapl.ko.xz000064400000032110147562761670012543 0ustar007zXZִF!t/੔4]?Eh=ڜ.+咂[Bm"*eYFV S=bj&T@z5ֆp::<ܼ5Xn~PXo<f#p iH6W+"mdJ0b:R,q?7 \D 2Wt="⸖nNWZn73F=ڡ-|js?\b XO,F!2_1Ve rDp1څv5ZLź,Wr_+@nT8!hAmՅ74:J5$6{R 8wd:f qawkt'pί4>"V = Y7'_ޟ&`O I e:clE q! ռ@ʧ"6׍.P:_ՐJ,Ҟy۩vf(/k@:z,\ @Ra7p )7J zc 7“c\ 9HvXnPҙw)dm ŷUΏ/i[_ښ8NZegSW(b$Aadx=Z.TFm8aCA3.(e+ p!/BYvE'#}80|{4 99|Hij松b,#i iq.r}t`4#w(T#|G4l ȅoGi",>i҅M΍X`A?Z;Q@`&&qʐ X(#wtV+?m%[Ew2,ri7ES:)/EC`/YہgzOk2#8'6% zۇP%ؔ@[iy_W4c!)ޙ/ք kUwRJL]~iX#SZ҈Z!qJnNcr)Gw ΙnoV u>8XY:D0*`p UI $KER;p 'UrI:S9j}&`ݠL٘F=lx\P=3_;3 ɳ"'Ն9ʤi0,ⶥ~;MƭO ;YDC$< =b5?J/ ok _ A8UrESUh̵ [nQ9|O҈3,Qwu-HWjgIw_صv*f]3Vx?濒O f.lXo=c4ώӥWEfa^kB3zd!1^QwV FmR.zR+m; `tE}7H 9>Uiz4wkjC}YHh*P=_h+Ijfcfp% |xOU8[Wh1o7PZV㚱@)9UENWנh !k3PN2奅c R|K!}L2_PYU\׻7:Ȑ#JEg!;$ѩV/'A\NZa/̣"^hA=M$<Aw3xOqMuʅz v?BGn.&M Cbh!G" ,F:BFE)C5;D-KtL@L GfgI $|43b@;d zĺ`EB܊ ggJu !- =UxsSc% ^ K~pffXO.Llff(_-ȏP{Fe}u,#ep9TŘrcL>|Uf~28ȻبDI4c١{ ݈]uda")yAۮ_#8!CoSAό &s;\*]%B/5*Dd%Y4Iϲ2"r<_Q[UrlÜmJ0qBxL_o[\oFћ"$}7p {K sYN `{mEk(JxwQzOZ=x9?'",hBj_P;۱1PNZvYhhOb y,jRR ,mrc! 0"Fܠ:-\f^|^l)^9R% Eǵ;@ӞtlspOeh4753솞"RK$nkW"ft&qND()zOFFZꫡ@g Y=T I]M*HldJ7LeWİ 5Ajv@KUv_a e' i4IgqǍHۙ"^p:՘u![ْsKCt [z޹it7 mvh>aLݓxKgE^I2'.ר3`X BaSsyc]=e},"Hfۦ~BCR{+PC[N0Rv.S󠄙2w~[w"H׃O tI6Og(1*\#Hc`#"y/-O7i51xIKseRVY?̡ 6V+s3ɚ;Rt@[{iqZf_Ðmz [DC׺imE@-LD$b Z'C)(TlA!ݽqcIz7Fa*OOniR W&z2Y}y \haCJWMfl)CC*%ƓMz t]*'Da?CˡKdh-~3 7-=*2>Je]ruÐyT}H^A²s]@G3JC\Jv[h0(XHVfs91p=Z)bR(b}G:u1څGhtYʎvt3~, kޚ`"Jw(ju#x`BEa40EFPg&Ƒyb&OGy7Odi{Ϫ%Ti`⁒R, 3ݞSC0ބUq$"X!'^2\>#>}dv DlF{j9[ԝ˸Л+xeٻ*ؙyT6{zf*EkgC~9V2>84`R,1y/BڦԦuj/U(DVp'51ا~½BJj8ND6.2l {|ʧdHـj90&Hb\@+`_(`mr}ky}M&[m2JͩXG0 ӹ>|2/ 7B-iIHНj%P@Q7Mn?jsоs4[8߶ 9 zP†녖$݌[Ɉ,n)rGR{>+ҒY!mیf?c,Hb^~DtA) Pidżz{`bOJW׀"tqFq}%TckJX?xH?'< C6W؂ܒxo4-}|>Ph>tw EYjߧ|D"Mxa`waX=@1SA;damF1 >uEP T+CV.aU^}1{iˇCQ'? KI'zX WIR,v9po8C-=|Lb[`+Ru^tjJX Qege#>GTQ\mw[YZehg \J,+ һgxѠ-6W.}4&+T׶VQ#[ET_#s"EbX8dSˤ@5UyfIzC ]h[n5"9 9h*ĎxY%L@Φַ7ieq mR`Y& x ;wd\4t( &_Q_UmP:p#Z;C'ȟWSu L4 L x|\FYzrwI&Y;Fg g,' -o{%VO6KsJ ޿R.d-ư}P':K)΅]ߺL|nR)mvٗ!B4iOF(8 HԀSMxY@lDYEi5eV˛HEnLDPh!&v w!JtnB?nc_p5ѥxgoCU?LU 1톁y6@ ̗Bw:mbhЊvuBHOL ]K9 @ǘf#/poXT\[cCzO.'chYǴ=Cٿ9"$O1>=L݂s~KѥB)aJ`C B#\; [w su"XhxiZރO GE =p}ޤmxSBaC`HM$=3? J|C+4v٫!M~,͇"xZQM5 %OV'og~ ܄y3Q sXQa٭6Dٖ;JK;Bz8&3w%&hM8{ˌm34s*ߧp[G#~rSRfP0,<Fԃ )u [FE58zNi[;MڰB fXív$?YjmElbHŮҼ"?%UM1BWUeԛ=;Mq:>uTR:L p@Q}KbH(B'I zމCщ|Ƥ-([uzq%cz졬.(r7h 0:iB ۉQCl-%WVUMiDkYJk爪 9JFNۆ jn)?)nqdyKZ -W?akxk[8{ <c+P=iޜ7H- K6K 3#NYmlʔk$]IqZ:Ư'5R:'l0.L 8M5TMޅLĶ@Ōܲ ühydmhsb \185<߃uqwEmd a 8'cGt7 e8~pGƖݤ1M\ؒ#Qg;d~W*#Bĺb Pi9F=xn!|鼜ʨ2J%P"`̑[kE% ~ Td/م0F^ Y+#2c )-Ku&66yr93> bҝ peT,_w8D <@$.蛢u嫵Fr麇߻]Ȥ&{j LMw'orcq76$>V&Rejm"`G.Sm٣w'HC>iQ6`K25](5n2" )ʂPJAj%aOI&v/7.Q?1 2OB Jp4@|g7 s`_JRv҆k*˒Db(?|b\;D0/A_ÇJDzOrQB_nEA֮͵Uu 6B'JeƶVM`'nLFKɯ,@cmnPn}VI/JhQ=:_3x;ڹ_g/he⟣dܕ} t}9P[Rr$1qr谿: š 㰞'&D>q%BMC4:CmS)T[x+VGq fJA#ϸD(==zEJgSFi"͌,ƑBҸ1 P]N-Jwd_}>'hI3W 1;97*SYV{S3X3KnB 49.Qqh);QDTx,t2Lmdi8`WHbK9sVjiGqO1ְ@F0B(ܙ|;emG9L'H}Rd.p]کlnE8oYe>-/NKW3 z!Oʊ|mr!Pf(]8ތygQU2Fwb֤қ̣h 3Y&p^:$^ptVߡn|W;GM7yz nɂ$yw/ &؃C2|ӊzGS&5L:_I%$+@ _+nPE`n޿|LSqܢRI;!)%$agnz)Ubo.4^5LP3U j^s+VKpJ]aݜ^PTSsɕ@H,G( 0T`L(YRl= j,Z?:U_K^,{V/*noH|wԭBo'LIIgM|], m)^}W28d;VҥTQk~lEt&/ae$^7G|!,APYX-skK:ayZ]㣉1 pFvCK%^oj׳_tw1^V/R!EW˻6Vy,x^eiivPn!7u $E=i$uR(.틫NLP7|SO+JC_͜?:nG)$_2b:LzG{_zJ;q#kpo"s5Ӹ#Nio9E菣w2#~-'`-D–F ww9b􆷜ar-,)]Ay]v({N1%d&NK(:b"<Իɿb]i JiYfr㊕rE:i*/R-0*mL=esm4nP._Vs{{m_0ZAlOZƣAGC9yC3hۨ]sx/ϔ+.vP2c +EJ5_ s^C VcŸU˒y6ezgH9]U/tfӵ}ps1٤8ը5B+ *˓;ʱ&ig?%_3Ԝۓ3Ɉ?|8O-MUwWe.T x[ \yz<(iBsw>jrn Y1%"SHCfE|U(21p|p߈vLt3)~ Ž<f wr_9~ J Eb>C9 (C /E^C*!3r2uR\ 鸪)U9AΌHsx _0 \WMZi@mnH6>n.] qNoJuhg*N+c 7]3aI'dZ5$静RڢPm߿Z+(i+"m”͸F@gZZl ܂hCF1 SD5*w[ jWvf%zR.|D+B&Fʳ_pli7(, ߛo͛9\]*t29YG 6J[wV|kr2"w5ֹx:nxLP\I^^((߶ k-|m*etIx};{SG8F>Jge^d}5ፏϙ+> 4_ݻC'OXtӳ\O"Ͽ`Y Щ̐"g_~QM"); 9S`kOXgrEΩmM=h9P5_(Yy3}K`;((;s!;+_HyRWzt^H?`Z鰬5=|F8;pԧ/4..#ǫ ڼe1.f m=f7 1!CC˰d?DZhO=I$HSÞ\$@SA.cmG=*fzD|+DhXU-/ot&]?Sֶ6DPH|:hvB- hCqeWջacgA"OHyӪ{d2 |NoLĘQ:R˺z܂Jgr ;c;XRG㳊`:#z%@2_np3nAĝhYє~z! N&4i%T+LrG Jd !eCLS7CK(4]Wܼr(ܱ X(}gGЙ KEF|e cLxTSº ۑ޹;R&cҔRDt虫@;I4p[*;dRaOn{yBLE~+υA_uK\2C~':ݔs/*&;jaۤ WFuN TXPPW7.7^Ƕ~(7wu]88M?ܡLҸIojh[$44f~Iy|Y+Io ^C|UGrfa,WiHvrh_Ñ׼j h-YŋL(OK\<o>DjQ WGgY!aՌWBh Xb#,id{'㶅7L@T߈YRtā'|ŚA[ui;!?Hfٛp>&O6WV~SNq6{zpo (yh TovXИ#׈*,3_cj}[rSŷWFeuD:A:)q?~xpdpuGfMNIOQrV}&-mPN[Ѧ ^ˍX" 20[|1:!T»:?O eNa>xVs=')~6t"l$"$05ދxB/ik$~^% -.^_Nub܄9sjWq[_ѳx6=pKTb% r4I75^U*?[HӦE2idpoJ`y\Z., Q1 50(h$h!WhQx8? Nb59Pc 㔈O۠&}y٦)0GCi4U2EbOAnY V$^tLxP=Zfu8V})vt/'02se[X61$&X7,CFDQTJgY6:~es/:bp@]%n"haȯRN+ zb΋V-| %o!7wxzPG4VyXٿ19 I8ˏeTDI/=:ߒx.eP yn3B暈hwn_CbL)6f ~bp!TT'6N^DvcЧ:YQJfL?^A:hPJˌݓ_9x}62sY*5 C2'|߬!}UfKhnp?r&:%Z٢"8P* }+z8;lbEep'$Ř:<,^/v1y8k(j!*>O$BGlבX1ͥ|ZټjЏM2Qxj7t&x22&qHBhKoGK-+nWjo4?9k *%' K-boRT 4J!oƛG:ʙqxѿo ˑ5_kNPNśxJÖY;IN$!ڜeprv>FiS!&\!'Btz}˿&{ +\. ij/VMJJl ZY1ܠn7e<6\MuJUV0ЖoY~n8{V_iLu_$~ϥ;fw7LIs/p7zEtB>R(U$@$@iajAgYZenclosure.ko.xz000064400000012620147562761670007564 0ustar007zXZִF!t/YtM]?Eh=ڜ.+υ4L*0R^Gbd~mdト N X l|v3XD y7/\?':wy01N~ogM\yf&&gvƘf"sb0<7dst .=r:@EQg8> =v?G#D1PHA74C4(CX8*%L݇ 8,']/fm(n@l%G*}lsFlhѱp09xq[10DPI3Ğ69F':IuV?KZSGDJ8(^ba ,`wLBI)B<O4 sB*eB|QG*k pJиzw;t[rhkokF;˶L늣jJ4m"pnﮯ"qBi"8f3jSWqN*/ 2q?vјHol@ܺM h˘Kg2У2\۟u<-e!lPV\:n A k$hZz-L<4[}tΌ߉TVH {,)62ol]smH"%L gFE y >?>r;%7vCkޠ >9nE+@*:|BOF٧q:$t;"o&|k*?ˤ|͜ eȐX` lwptR֖a:e!P[66K<;BxU5N6\N/|jK9r|z>ROw}sA@I47.o"GBv] 5l.0ѸN(d&GWO"yHlў(0"YmtZ"aTuiOkg<F]*GDv/9L^%v pOw;ZjpPʏ {G*,}ET.ng{d?`雬o;x$1!RC_03wc>8n,>CP@ aP~Ok?x:Ws"nɤ0rO޳oK"04Rf̎Iy f1Ɖ_ߡPMǮ@=9^QBid$-fΎtČMdDB==beQD*/;WgѲcfT+>HsJ'knt{VE=LPky`&kz٠r|T1F[Fs.wwbNvN&1pՇ qq9ŽOƂ;8ejke0q'%'`|ټDL*]1 0?NJs-*فZI\o#dMBnq^83+=+n1VfJWy5ӍoH]z﹏h7ju퉻佅q".R̖D¬[Y)֔%&v^"JKe|Y+ӧsPZ]xN{+7Ci0; Mwx0e>g_d0|UoZ+@:n9Y\ ?G*M6P:`ö2wam|Ycd~bYIlqU]ip Uurә'` .s#lP4?Yx*d{϶lC9Cѓ&z |"pK -cUx}s睌OlEM4 #,^/tw/_Lh7M3 =NX^1"˷0&7+vn0VQٽ `֣o{w=Q!laojN߂-U\jۗ(hV k8¡7#Qa[X&7SUn%h/n/}Fb,m~yPD*}pӚ7qjU!\ o89g t y_00Qrk+c]6m|$Rޕ<3vb!h1D~.JT.SѓI V/՘-9;8UNpgյ9xP-#xে| ۀYP'N}l' QOJM$1\vokCLYUޞ&!*_:8#@c6Yr #ч @t JcA-yPs_I"k8Z#skSt 5lPe.勰-s"f=5OOok d-y(]kj{uZ>ߜPYizN3T{b?VowEԣ>$71y-FCyJNBejo-OkI[߃N`+}QojV\1Ύ ;dw^VKqwIQWSL>J"KkDU @Qt3\!K%>~!tPJ'6 0H(=6{1?`eOKJ&ږp(5' (*-|ݯWO|Ae8c|.290[ѐ v5Y*[,vAn@е/%:>1T?GnF@NEiN6\ mA,8ɝPz???@ӏG.I6cA pސctΕ \cy$R5 IyMf>{ -oEM0ǥy1p+,W &e~N)/U exEXdrBw7D] ǖ.ȯwA/&# .0ϧX]C׵K@_f¹^Q7<` F`;bu;Zv26N+,"Qs\R" aخLԨ[ޚd8\ŏ![ P"+Yb8'ϡX碚z[&o1xHmc;wмT\Qw #:@4wvHBUF(*TgYZapds9802als.ko.xz000064400000007020147562761670007535 0ustar007zXZִF!t/5, ]?Eh=ڜ.+13h0R_NnѐCW:#uyy,Gjw% nbjB=g.;Ez8 >&ROD?,Jh6lk t3Pɕ-_M.7a׷z 3]-.9}Oj - ~ JcOSyd \Wڤurb"R2r]ud:2TY7}H#B?AN;VzKncq>14{%|u=ߑBO\J8BA&w6^I+"y([k `Md0ûhhOl4_S?ӭ~R'|G op9{XlU ᴚ6|f(61b]|&k +hڇ>{YhGIL:|kSIgc Cf7(iWs 9߆)q6hV\1 .:0%iZXIb`.)9IپQyw[OinkmOq ~$VsBtwpJ 2kG}sn6݉46O#vHɁm챭hv$JPv@{Ma~秚r5<~)fҏ FO"m;|6,_,3)j;{}̵llzƩfH|UQ@'F{6o8)glUe2ZQ?-z4m'(C,uTk施>vL\( '~u.z<`%uj{!~+x,^Pᗧ (D/qjw bOx1p5zh?qc 6ZSTlWoT I}T j闃h춎6zD";2ÑA.m"(i̗N^Ԗ9=C$Xɦfe7:A5 ׺vHGwʹP\bR;6q*ؙ;>-B"k(mwj,ף1X)$~Wj#7cD7tg]-Ue<y%"̾5ol}@= ᒖE4a^uV⇗W bqtbSuznD)v b\͉ 1~ zf*(zdX 9z- 4eǫPՔ=*DlX?HH a j{ ۃ! 9;rH[:7z9{o)Z:jCT! sG ;nKUf~ZcgH_Oj;ɲ3zr |`H;U.gNF Ȏiqޢa~qaK% g&IJ6UU km颃P ܋49Beeℤےo6N;@zy!hmk<4 DDm3';8q| "`֡L‘Cc.x裰iiMmGAE_M%O<.t2h0K*|Yy XiFmJŵ@ D})㧸ռ L<AvNGo_VgaEk rxsuJ乛Ka${uS qPd{Ȓ$PҤQEioC;a9Q g{ Ȏ|FAJyxT)0 Zꁬr+?CF%/Һq/=YU5^\&f8ݗ&LGZ&Uq,B N۸R#~b.O:wpT׀wly>@(rݭ3$ЉC{|*ߵ*\XjJ&%c ьh)CrY UeAY^eG{ [0te3d`zai@EVu/|34qBD>S>diV?ެ 衺HfUF 7u&31ФZ\YxZ9_}k\L"ٺ*bmN$ ˕{țq-qem,e-\ =F`o) Nd!]cMUdn Po:#ѠU:CnIhMf #R7y2aYu*2ӄ8g geUmjm5-] n6>ǩɢ´\q,{wA uZ6b̓Pi\n ޾+|Jrx17Rhࠩ$^2'sHZ=<$@b%a}]ýr8IzM q[e_sͤw;]B:Uq5  ;ՙ u&u| E+}i0s(4s^lHt.$۫ Gѿ]FLb^j' V>9 . 0.@zb5Fvq[p̲՛:GI% Ui17pB ڇVo> S*d< }FO籶aJ1#o2l<2S-yKɂAqwn :v\`b"Z_R7?{A3ك`PGz]Y&׬ _Mq^U#R%6㣨/\p(a)\[ #~V/*_apK@E؝'rI*_!`|7].<77U>jR L:AN`+eb61]NLKD2lHRCtZj&OgYZsgi-gru/gru.ko.xz000064400000065264147562761670007753 0ustar007zXZִF!t/Δjq]?Eh=ڜ.+qgܡ35>H ?~M2C 0gUeǧ˯y屣whѣ>ÒPܸn$99WrRgN ݯ>`͆:rFY>Q H0*ՌqDZO>&cliOq<Dbj$Ϣ`>[pxre;=?s&H.tXGUoxbApֺbL Q&',3H̶Tj?/M:<.hH>SV3_IZ~% duq`<<0sm36$j"a7m++O')+Hs؏:*^ KS")!싣)mo1@fPKS"V~Ӧ1F[;eٿNzB&hؗlejVnlFfs)VզLX6t I^'\:w\c& Mkb4#LEO ڢW;KkL ߿k)zp1/ &r7nԵw`2_<}a&`洂{+hDrK(GVG0iII&# N.'GmS}o5HHc&231S")`gJ R6񯂉$7V'-FeO$R'vrt cbOvw0inz6tpˇyKʇ 620d 24*0+ٽBϫ][^ySHtR_cY>-L]ҁ;jj"rʞ舐T=vfB^͉@Fˁr}#y3>FX7?p!t'@z)j8__Zd xE}u_ "iC4HcԺa *,8HM-r ӛGY aϼP$(Aj/ɘ=swRa,b z9WàM'~BVԔ\ە>Ihi!=gw3P_IBwqg+`$ +Ky \E`o|QV"#Vx˓ R!D}WkEoׯ ذNǯ#Hma stkGʡk|&fʁu6R3a_1O#ͻAUuq~HlO18jeu ˚p&ԩ*a6[ܒ4{W, O! B MP 5 CXЊzŔ~h.tRGH7(5w)r' 9Px_6/$7EYL~=nyz9S`xIqbz8>Kå/@ hѤYh.PS֮4( yV4bv٣1N\-nKެ6Q`H9N4AWK%YQ8tV TB"RKF BLBP_Ri%T1#xY>\1ͨ*y{U.8y2J]~ H@N,voXdj݀蟐]I݆ޢ3d5heMrK68Gx +| nC @@hv}To.ٹa@VCsU:Jit %&Zԣ{)F?&AK7OՓa $^Ntg΁..wp ŊQ,ʆ<Ӌ8͘Ca:Slb63gø4W>Ѿ9,<`ntab.34+)_0I)Y~) Bd)G"J+i*W!F5:j.^^`[MMKr@9;*!X>dÏQef7R0F[ߘ4d;ӃSQ7%:"FܱcD)'E᧚LP6ڄ$ 3Ej2y,cS1482(4>@(hcF2R0Kp-*i[^]Nh%2p K*!{@[#ɼCyM^Zv:gUʌ N͗)/B@bDz7JvχP@Z̓RJg 7 b)s,j 5v9@ 7 sQYͨq>*yn:@S :EV1BBlZf 67wG:~Se ]~6DRԦS7؈KMΠrl`(SdPڶ(nohD2eSܽK}U&)-v_pJUPg ~{XR=C:|yr:X7gT|1޻ S/C.ZL˰}^0qYu=_]f}C7*$l/& <'b9Jdٗ O?re`vu)4jqtJ[R"yLy9f|ZF#/,2-~ዻ2rׯF@/?H!=8i`a8kutom8W-=N2 C[mзA傮Spso9{rE+Ϙ*hYZ {2C Ԫ:sGyʨ5GN;Kx@_08Sy]mC~.dv2@[>>0:ct׻9+c_"^CU{8-0*Y ZJWddEʧh{\kZ tTyF+4r؉qxj+mGZXa ??fIWbDۡ zJ.0U72iN͓rQ0ƛͱI#hV~oq;ԹX*b o[4(=?9$ԌڽfMDw4YPn-y{w 0/ ğua/eB+Ej?ڡT%0ly'чN/2٨Kn0Mt<оFp*m\ :Ϗ8]0;8[?20Ep`[F hDUՐ̳^J$kְ 3e\.9t}j߆,_gZ7^z)/649r-"6͊}jjYR1?&F$͔AQ/vWEKZD)"F`G>2fkY+"=4k ,ʛ'7Vm^lL(K 5è28 'E]9jLO:R7aʢlƻU|kf@ s~DK>ԓrTvEqe"2 kP^zm6*Y(gC}]~ǎRŚ!oX5|WZGGB ֆ]Z)ҡ<9so|± LR=ExK`'So%tXsAGK߰\YBAHSAJpXw x ɇ;)\r10[52ƿ d& wROmɪкdB| W`A15vVJ9kp C.=铍/4ʭ(3Ӊy4󧟋]W OD ъzq KQx!Vf{rI;F4hۓ|͵[ 4Oj\TZįcPE'~bc!/bܳٞtI8SL 4NH3>>` -%X<{ X NvAf{x}o$F/ ܾ%8IVvlBRL%)`ϏsrFü^7*ڮ"wSDx=Nolz"z&e( u=MK\ |Sa2;8X M>g+\\nzAH.O!tmD"#Nda]!6k>&݄ꤧumKMu8l c]f.#x`SHD/*XJLw{ȺBK. |q{1^I CCޯ5WkZ4K ]vh]֠dX1pCN*QEfy 'cH>&w"F7I3pMjW~+_"0955<(}F߹/d%\L8ȽU]m+4KA۫l#[UG V}K],W2ֵD7 5Zl(:9/w i|.X9zAi+NUOx̼5e+UnS)ormzv-;{ ;GwcOi 2^n(W9[eܞe+B/$G-h0)óyRn1 9o6aWs=O@U"w K-(<ҀgNG9⛱Pr8cį2:o}ו {BTwe H4}Ul0t0 h0x7IdE[03QY̰B6ȳ[.:z7 rFT^E U@FztʰQoeb,G-89Ib_?(f -K릀Wj)- HoABQW!B#ԓ]n7^ONߊ̭xĎ?Vq:ۄzc&PJ6F;ÏWƖ'i%Ë-7?,=e(X (`XU҄@~hNƷuJFEլHqڙ+ȶ£)&=BfoəJ2 Ab7ûٶ%liˠ/c{{C'n~T^r3#w~ 'I1lf.;sB[0e{):\Kx'{d.0)\OqmYSWj*LlLܼP7t^s*ͪ|S>cy2ծln?AWUx2U;a ꐜzgGV][$d\b>P:jyع@k.z]j j_`%F2!>ŀa{(^7,4 /&Bd4 p.(X#t-#챩GG5ҷ  HM/  Չ{Chނ{/(j{[ӥ4yjVp s)IF49Mu;w~ LB2R/W3@_0:ppTUGNwY!LA\(1K3$/H:R"J'~[-m-Oao4\E/_5cNt :0j|{yGºWI8a)n<䑻kѳ_r@ EE1l=Dv*0 I64.:k\wJFYAhfyf!Dbh:pP+*mss E/@N#4 v-Y޻q({Ldu^$ $aSmckvā.5>n8"vpH5}WW:%q U,-ՊB}QzdIDGbabf 1d^rm6Y1b#OgB0^Xxv~EN%pQņ Xu)^V__a1yd=:*VyX#3]'0j'JmnЊZ}.}+8rMi12Tٿyn^QS娿dd"F$1B-?nR8*o6n|ކZWyI t ͗ qC"+YHQR:7Aj!JODX쮂/ص7T% );ޓ_vnߪM̵۩d;ejz#[K{}{nɼ""(${.@^ [S<& "F~ ,D[˦|qϚ k( ^NmiY[{ L֠{2ClF  ɟ/cj"TnI&p~~!"M֤NC3G~>M0ҿvr: {5i%Y5h €ݖc 5UqIR?.ka9<@+`XXPm[B.<;Zࣾ5(z֋e>V?d' ,nTgP:DžL^r5+}1n/~7m33e[("=\ʟԚoy5Y1oTn "]1 ;e,;a>AܴmUIyFDEERMT9ܧp,%,ydn;nxew$/qF(M֧Vm@8fj\q<@<sxPK%umj6,9UPAF(xOp/87Ter#\(#M5rRڑgđ_\kߋ09 G׶ZhFIyt:HN|%?w:`mrFs= Dy b% v a9Fi%C!I`nѽj(z M%p!NBr9GEOIVX@Xu5(K_4lWwC6p` `s;#$aS㫴 @/0J&8H>ߏW7#s7g|rkwj5):L/C>(Sp,gi>n߆ҾWtڊZ܅." &D$SFtN1%sj!cB"]k ${ؘ'tEfdAfOxC :BS9ލ*L7cݶ?mv#$]Nlt4rYA*03\DY<?7d6:+/,w |R-ӱ1U(Iv@K,[?{i Esc,p=Yt0{2.S@Q@=FJM:E˘fHƽc?!u4X$D};M*G^U/H2Puj"5C(Hh|"^oñ۝]mgw,2I,{Ң־k(F/*J/=x5kX== gIQ Ym!jsQQIaaVDּO}3kL]d=v9\|(6Q\!޹7(sm X+iG8.A8 Ύx6Q(wӇ>x,(cԕ:LmxL6<[-$߭ ek?LO~"FW_fF$54&SoRU^(VyRMkqq8jF_RYfا p[0bƠAtzdM\}T= %dG%Hj,+~7nO1Ai'?7+{0Nk\728s/| v_8]H槛ppl>EM5ՌYIEUCh2aȸ$xQ@Y⹏(p)4m$; qDei`jZ#$BϡhLڧ^Jc|'.=jfYZ7}*XY`R6M*rx%TXf =k{>pT{.O\t8n<ǷZ4.ƱY74t[kpGe_ey8`p2|uTP'h-0MN$G بcv_mUh`h*"~xņ4shy1b:cr,O0.V#D$S7B{3 uaS'5 G9}n|a6o &r,T!<'Jn;gZs5&\.!նs=Qs|nwl7NJx Oȱ8),a]jyy3B`")(';, f c~:pHcK7[,+3m6X\lN 1ٯ)0or_SALĽG-rTj/"gMkpX# կ(xr/YZs:CL tp5oJvz._ anc,AFYᮙm!Ԕ.4Y.] +/)|c}LP&pgq{~xkEՐf*@!K֙ dU4ccV.{jŘVp~L e iDMP~ڕ-]S(0ړV%{ /1PAj%eD_s?Ww uĭtP1|e`8$"pE*[x^&0Htkî'N`5H(FD3$m9F\p.E뙰1P:} < Ƃ)kzMi>^J unjz+^l֑(X?HSR,lP{9ޕ^~Ü2 t\f UN5ohaG2Df۱q fЌ #UN\@ĵ?蹔|r _ժEbl6{ )JON4k,4||Y 67N>ʏ]/, %Ϊ>F#X Iko Ф 4ᤍ*%\NyW/~6#*u≯B 1ZmRC@xIe٤A:,G ZE5U)#V%ZiR\GUP0 V N潷GNF šlke"M@{{v5W1f Ʉ'簡YjXwLE=g}1[L9[C] rQ[ Lz߳\CWq b# T8TFe?sR""KtmDG\:qkqf:qDn>+OI5:~| enCvy流5 $zټɸd!Jh7`fFD.+\4Zegޔ<Πא>Tf7AMq` Rpeҿۑ)˶h֟`6܉' Qo)mW- vd PxuS! a6aR<1ǰSJJk\:uwO;O0j ƫ<ka%|7!}Gj܉&ݑ;Ael/D)؀.3Iel㠳MGTfchj?1ҊzqʉOzNHh?5ھyn,_,`,'L]!=~d4'"[OKs4?\Y$PԪC@eՒGwTmOŅšg1ݠߴҹGA՗U]GqC߾lp}iicCqQx> sWx ChI`$p@)ʮ2lg5&'nGiu=.IpbM[Nx}\,1_;80@ Fƽ;8Ǒ}CTu(AG{|*cjzohAb;MfzҟwwB+ {xZ;-y2%NC6g$ b3)g ?"xFFa^'4w6fƴ 4L'^΢M6+B}}% ɨkwW!>dQIJx !{l/N"9Ѥm8M6@$cEӓ=%fO3\:S+D;SCd5QAi= ͏>=,OQuM5L6rJ@D7 Z_n|Os4w?K'n)g@;@m9r,GF h˔|\cQwZciC 7y&~v"V; N=[ t^[]+y\ 3e%虸&e[+-Md.dI`Q:T3/֥ϤN?3%6V%sw]1![+\D{7fx2 o%ŁOpdcR]:P5 _ @!b 텭2ʈ My q=g`&G/p]%x5G=Ia <8Njq/=?ːʴ-t#yA)Ty(Aˆi5ªBLG+K>3h@e"8 ꌙ"i8n)¡LM631$BkGi1F@(4Y)cpYe%jD@~d r-POb't  Y.EXԼ0GE20yƈ7tN %V)k٪l'dQgn?UER9]Qp O}4bt ~R8ҋ0fa7{`(cS~T)mmhn&t64m=1꧶ef~5u}S6/\g]㹛mǬj/I֝nߓpbTagL0c76 B-dZrc#'6ᡅ0 At=a8*<}qP劭 > -lCUՙ[J8zrWxldX̚\yXdwf7jC buzMڶ_lD{v=EB"PjjՀD :̈́C[<`c]ڸ34PO0s-Zp;%e|f:Xԣ7*ZcdSF|g?͑5@8 #T JR,ğ**yKGx>$_Ʋ#-LzVOSŝ:lmNly𾕷rK-` n喝ӴNǛSxwmW=ͽ>vح|k,w)뙲C@`gbX%WRD++j*7Ą$E5 /M+V H~ffΧ1.Am*d.g<^&{7 |0MU*b.u4MUq)hs`Vz}xfڪy.B&gh{]ix[UP["^Px}c}v02? c5$fwT3 %eTdum+rYkh }?2oQw-Riy= jaǕ[qJ\>oųC?~xM2JQ܇Ni})Mb+;,{M Yq"d-y۰NbVۚKKVհ}28jT4nd( kQA5v%M(ØQRsGe,zG:/o ;r ρ^Ox +} 3#9AU%"RLJ!,//9 cBxrԧ,K0y~,*gYh5̨YP=>iC GGшEч`5Μ9dݗB6QY,zjlom 52ЙA$#!Vs 49T6UzO) ‹9e䊻KT$:8Ӵ{%TҀi{/ɫ9p*yȀ=Z6\)jQTY<W`)z6ϛ0W4P[M{r(yW :d\GZj/%>^y O TݜO3 C kޑF([ѬO\fK$ U!&njYp$c|B̈*9h>swg}-36oM=~ =lqpDF21 !&  ԧ6& tReʯ[ǯa2_IȻN<ҰڛT=4!j p{+m,5%LSy+?'͡a=UNՖW݋:e CI. 1}Y~F"3$ŠX b"<Aq ~oXՔܞa#,[u1i=}>z,_+ _nc=d!&.ɺϼ{ۖ(+Y{bgGӻ>ցj,I3qG}Fm W'jOj!XB/MlRr"RcCM1W -ۚrY5u8i[yIw.YUe" =4af*R LBnQ5aZbšBP!7Toxs—J֧L>y}|r7%Z=6|FXPV]!f5^!\MɊhy~*6;#or'8qOwbW]?2oE}3uTr U7"*t6SuJs[+pwAc~]6MAL{@6+MYNǥc[pXX?`t``CMF5b z]WAU QwF%{lV/[51wfg%7c' s)*:җF]#3_8qاsRvY#t 5W$61Q,ChY%G'-nk 0v@ Q+bQJ*y}w:B%>/X9Xռ(滟Xkq澡D]a]WXBJT][K|jqhHC" cnJU@鑶ar.4R&.%_i|',zC`#Tnӝ@]a#w[٪2|@i֣#(apW_t#Wej9l)&vJw:tBMJ1GInNߙ^as0DsEp,d팡Em5!}mn~S~H&xMHUW!^GK0DA?0[1*a`MP[Q <f.M;.@Oc>Oa?/]ϝo ו#r˰ӊgBDggq[Ri]a*-sH&}p>?D\^4)-UWsmRǎ6 !tj RSmRAD ڧ[Vo'(0q&Yxſ7dqKյ$c S'p9֧9mp-E_ <ݭ#绘 "#!E?j!uo ,ʦhz_[|k-$0$MʻePE؄che=c>8aϷx-74L2C?BHN2yEPS݂ѵaM&qTPOqri5T4'p>bleF{h^,lYEY2ͧ;\QjTk?T8? 41/ WPM 4]>ۭl(l`7CES^۔:}Z Heӧpw٠OcV,Rk\z(52a_U+vjiM]#3,߈Xۿh+"OIZ1AۻSkJƐn=3I :)R6|geHU$YN gpͬӣ\=ta*GR+Y>a4 -CШ_40 _Y e򲊬acb^5BvnMJh ђA?m̰OxVE: ki^?؉y q^ v93dfTk;j [S }Gy>3ߤ<<-N)<*9fṿ%ZH;@ :}<Ң nbQA%eN<9QxZ1f*k*xS%P!װjXod( &\et\%/<W֝v "TP"a4ez.`*-z0}{qJ0 ,#DdE+ y&4!O'08լ!<QkCXY4O >t-nVM3C1~#Ү{<>n÷Q Ʀ^=͌!lf5K=j8g+3v<ǂsoo =DN^4hKF|/ 6!uf0900KW EVNin|k 7 ~OJYw"LT=ɳs*4K7)#-y;]‡oҺz;$_>RS%qFROpME*`xӐjJʽ!u~ّr@e&ITpEGbNt\;&ÑmӗFTd/J#SVDvtPee]mkcF)USiBX(-a4L#E{]A{we ikM|3aloxNf2ġ"bԴb86}|ىqDƓe[*őFF!Dgp%rVөm'Z>B 8@o'HEOm\ ]kjxnx`~Ϸ֏DD.MVdJ[ZV++.,Cvf6>69Sɀ~7%XyڻiC>${ brH1DT(]>vAw9(tB<ю[5 P[V/?( \B:+L~# N.J;e5e4?r>p9%h}63i5:!NQ]4{= N9T&h_Ri:|hS* Ш]B5ryS`}AEk`d:DI&yh}ڼDƋ=ho:5]j]p$bS$R&m߇t1XdM49[LF4%_wla^z+]U .L֓ImX` 3߉Kn@^@:)o T\=ۀ?:9]<ȭwAXe^& % @U!R*#J)N@raW`]:ཤ+hǦyqr:xvG-#]O^j?Xk㾽XGc_eFr]DiZ:D^S Y<X TMvGax+B%;]xL:;c_ ;G(3a>vYa?nr>v5ucqdM,p͵M*1eCwEnTEpZSd#1Nslpzfz (вaps ,K56YPē:\&qu&/OK@^*8Oz<84Ῠ(0=? ͳJrjHIDm!1:. 9K:VZR'U1Z,:(VF*܆ɏhnݐZ;C'&lƄ&һG&&aM~Ej}^Ⱥg9C`v=$!7^$;cs 8g'߲֘ʲ R8hA)3.aw ,_Bo"T|Gs EL1l Sɭ?Z Lf-L)0.΋Uj<{&8qشXG'ૼ ȳUX݂zM(MHJpVЯM8/Nj^%&`&r2;aD\߄iI}2.VoO|7t| Jd%8KCE&1>w8_j .' (HR _sGF(9KcJm&x;:`1 dHCi3x*g7_8ZZa>MINAƿ6cz)plWek~&ɃBƫ&IB~5uAJa^>TgI^oD MZ F6=! mj=t7gXc=!g%-|e[mʭug.W`|bn9i$2ͼ:5"B^fvhR=qN;9zԎI˿x_9gYZisl29020.ko.xz000064400000005710147562761670006753 0ustar007zXZִF!t/* ]?Eh=ڜ.+ˢo(q6w!N^ڙΝ$V&z@j!DNiSD@#:M$kmO:tߨQxzv8C ~ܰ l&׀w+1N\Q]z+aPOM"_wtArwJwv8\x@"R~hO^־FNN3/'SeT;uNêw2 A\'"[v)ݧWslHQ8Wݽܘ2\/nBhκWc<+ojM*E:3c 7:G kG[3H{ԆS/i7d1|`8HN׮"  DDkv/)᫑Xة >:b0 0W1|b@/ \oMځ*?K>y=Fmt9 =mws8JCy&qpLHq7d1;gQ5GhJ{ꢗ*[ BVRR$@\ܦ +Dٜn3YRL*${`KWa}vq߂/e^/0$ph yp84uBM׽,5(Er,uPAO}U4ӒFAxLq o.qrm!^:S/(Yb+%w hһfFZݷ ~fAV-qz'^dG-pK ,D0ɭW"Ge+u%~îkqV<ŀ0 Q:]=ï U-w[q3HmH-5MɧJvx8f˜}\$%GUSp|1@\z$*IsKtb{[YO:p4/Mj%D >1םSHB\"_~w2t~r~G\c̔,:9P؋nR>*!!|uu^/IK( v(DŚWZ*̢M ѻ,>3O}*Ѝpњ|K,IlKn)ϧ#9d\ OM,Oxp6?_zb.qsP5 2m,fV| )}Lt-Vr[ ^7{]Nv8d]_]^?f< {I'-֛5b#2M{O( mx)tADW{I+chsU(',mqvfs9lsQP3$ڷNyPOc^_, p8gW[iuIP, 'm}VFUbi;xH@le*w:\)ڨd/fp44h Sg 7AevSeXԃ.K,@[\{?v,n5h^TEJR.\6v/:{ ιkKE25sdX4% W y/TS~5A\΃VN1te}ǹ8@D^VBI2?Ϡ'|JьcADiy`9OZ D磲FBk#|s(9Sh]-p.CtIANfӧ ,_8+6H<#td.)'D Bk\cQ2ZbY,wd΋ )V8 >X8.  #Nc0F)Kw]Q`;z_t<]m 28s.x{7-F0ԤSI[yKf-U%8:s/>F"%t)٘E$M=k[`)[ YYeh3* rȨܸǷ# T6=gRǼ ;OYs~qEC<~צ0y4W:]9$;,oܓq7 ;[r^QݑC2eKFRynz+ ^+2XozU Сdr@/rtj%jMPJpaTߝpט#\#9 ~ A;t*&L<8ɔJ \S"Oˍ?jM/g'Α@jvB®ڨ:M՟b`&o Q@ʻ1ҎiZsVz40nF.Ø/EKqU]V>gYZhpilo.ko.xz000064400000015400147562761670006677 0ustar007zXZִF!t/^]?Eh=ڜ.+9f)*Eohw-BOB| ߉" G&XKd"U}S/Ç575M*{8)c-쯵teUu5R&Jo"O0[2DI]mz{ȓ&BW˞cCJmaXSMrO~,a˦~/pն'+o Tz a]Sy$eGIQ;ч.ꋣu ܴw_N\H2%[}Lq-#֞aT$d_2%MT&3;F-BQ-j踷>\*4|n[qe#9RhRhE0Գ፵{Koj 1˞3uʩSQ$n3=* mD0FZ-P? ~beɊ?^(2L;ȣ(6-n+|#*ݧ f~].99MٌJiu6 HxsUy/7/݈AL/Dfr`ݡac=J=L,Vg[P{RG7ma'Цj%eCN\8J3DrgK%<" ÖA}b}p=V"Ӱ8Wk2,zFڬ' z1 sͩ+{MCݼQ6񟴓'͆o-J-WP?xSiC82gE >r| ӭ G*0*otvE,aL6) G5lԂmK6tO3BªXU3J^ShϬUBgk=0ba$'jaӫhY_A>@.ZbNyW8~iuRCLQ_ B5R|oD-ZMYOh}yhUܨ! ۑ."A6: e&"L =gE _$$wu6rs 7Ñ6 e87Knp:Nw%!>O]\8 St:LI:t}mSZ7IU`HE Lq#~ c[QyGϺ%*J^5+C*֍S3ڃ8_7߆ڟ<.S,W)J&`f]{-U۶6_309qAtՁ)qVmnq{os2oB'{#s썲>u,Dn' `]w94ޫiC@sp nm'D2g4+ŰjZGuxc!k;!@ߴH!p`fEyJҒ8HmoY &1.+mϨ}i7gNk=s^\"I m^+IW%7PXRJ7YM/`FUjɶlŲv__Ȃ\t#P-!9!z'Н& s1$s7HTN}8⮑LQ빧]N],n5&=3$͂=C+bѧ>aqO398PXT%)ʞF^mw֍œRt,9Zw V?hL4SU߼GhmS Hl^yLGA ~xtw:ƞZ (R )V36xF:o.mb6 -[ pS9^氞 mEDbKaZĶԐ q98fhD;iIzrB5&i]S k(2u  [Iad"p];Mk;t6sb׻0[+9dg`"n4nǤ%uO?0_z}$o&2[&f2 (l&˛"øvbX1:41O-&1ہ7F "wte^c>g3CSЖ + :wtHӬ]o0veSk u.8gʍHˢ")yvOVkܱ}܁< -f0+S+kBa!O/ G:i*}nϛf_ pTf|w_:T'Ƽ3nS {pן1? 3n|cWmݕ-b٥0D819$͓z[:\䈔I0"-jY#6[]HckIJHG& νJ?q.f75G9+LcGzTwZ-)vJAWrB6CPD,"qC@zmNGow%ޠ2 V,hu:p`B-zr ^Yhu9MS))ӄZ~&1/H㴯O ;Vw ^vC~'6M{L:V{?cvKdG}tՂ&!ȍ,\w <6/da3>?ť}&\ GѲ OR[sUF{D61|raМaIWzvOkwBx _\U݉L|飏X?TQul LFw"5 Y"Mĭ+}Ly=I Q'Z5 7fd̥ 8U| :XeH|MJzar (9d-臹AӹlbɃb ~wRK;1% ]H+8I8t?𕰎-\a;klߺ5e.vYNrk9Ҋ44&FM ,NnLp,?yžun&z2`#A9xsfj@e0Cu-nʹ5]q6ZKРTZXΉN(8-BB&n׍:%xQ{~YF _ 0U~܉kuXH  I$WݡCI2JHLŜgXJVq\e RSL&VckLz31 Oy>2Ɗ`P2Pܫڨn|% t [h.wxZXhM>sa5X:@5mDo^uTEml(3z)0n԰ᒌJt5iVwR M=BUd 5P J.: Eo$I^ѵF_S 0pN-GN^F+ KJ_k<~>ΜCKC?e t#j=Tf |C7 ʾ:s%z7REye;îbXSH1i[ h[PG&m86SWk!1%Pí )TQ'1k+1`˿7{F#|$GKE`}NW++SN ̡#5}W+ߣ/X'[e*XE KyZj?VE'g%@Q*hߪ}h9, <'l!.5n?nb(gܩZ@A Vcsy*BqFIor7_!= Xq`<7f ۊQQJ{|hZhWpLc a[B'fB`6Le5~Bbv3)8[O ݗ؎/z, NssL`)l/7frJLgCVyQ&t!i@LCݥ( Ce&3"Ph _f˚]C<9GG)oS=ļtBanž{Ml2e Ȩ=i)if|ӎlK`MxxP,[!hX,\COxNZ{ Gl3 r0s)< ae8DaNZ\`7#^3Iȯk˗ҁ#z{~g1I{|ip@Ϣ)-QW땣 [[-?~9h1d`c,VPElklϞbbSINV=s޹jDe]fhx')ֆΛn 14◗6bAEM&k>{[EP=~wO7&I<%y·(EܘnbΡ+[NKg rЃb|'3о-T@DP$5u1D^?6 I/͈(WRɅȈJvW"f\㶄"Gm9%Y9s2<r0Y(Rg=!^m([wSxz-xz]KYSD]xcZ;KC_-lǍǬ52GgYZioc4.ko.xz000064400000010424147562761670006423 0ustar007zXZִF!t/B]?Eh=ڜ.+p' Zno_0R`~xlhcw.2x)6$ܷX[ݕ10xK{D ~_ZـM ^g-pLэ&t8#]#?~_ ^ zv9S_HU6] $*qB}7Wt?Qވ"N~##}N H]iF^_V53 ˋ CV<4Nj2{P"y_-.a g#'w $цy/_YUQNR`يؘ+j37 3gW8x@n@mp{Y&'Y\yͳJ4'0d}\Wi Iq1L?We#P:WJ^鳵#4y(j @m&dPzY3~/c늩AU1Kv7I޻ wޓvQ,o2yP%CF'5w"[ngΕK߶6LC &WemdEkXT=hRBn.IPR#hA&OFXYV"6i.2ѕ+_.la=)o%YT`[jƾ5Ќ>+0Žݿ {CAOs=d;>n;r^ƢU7AQ kcg.eE\r/ X R$>!}Ej´zG!G Pѹ$uNsY-`"Cd pOz4Ƹdiq=rG 3lpkYM]߲F,t(+9I~H|r1Z02d!. \U]M:.8ZKo8)/(o$m9f^u*VR)^O/G~$1$>zCv~ɉ5QmM;glpK17i5rKl1_|=!qNY];Pz0Ien`!qQsLx7N ᨹoև~ObA5 6,QXnZ\e/ sr#cVȏLdKntp%d7ixfɳ>5s:hrtRC;E*6ziF:~ ,#]e$G8@+UEƇ$GT/SP`Q1={ef7\Y3*%p-{E%r;bJݝzD^ůFn֥iM?Y`r+\Mv]u1Tƽ]*fG;ep.OT)[lyijA?Gaz0k]i|:.?HH!~гSrnbHhҫ_Gʳ ϸtT/kNÝ[^OE Skor,Ұ,[IFgpO(k} )GU? N 0ב!Pe{Ģu/̺$|k/8l1;ě?%[QDE n8~X XSA Ww8pxtGLﰓ;X)\d,jj ˼Μ$>I ҚDŽ&_[M'i2rؘZlzWœe&!?އZu|$ϸEkؔ] I!%jm-w@5Qjlg"(*b1#G^8"ˉ\;~If7"thaH`r)9Q J '٫&Ni[أx-" KCA )zW^pn~GN䭢F9uC1&6?pp@aY7#TIJ"]6'>M5i5oŒ]Q7{\Np: \{f6 k>U#:pi;/fo'gWa<ғUe -|l il@#F |]Gz;ْP 4b&Q{~r'hb"5-\#<|Hԇ$ӵԒZ)w h72U*u@7Dzy%?lfZIU~4=,wvHL9`| 8|CCI 0p>P^2=gYIͽE.Dhe y4Uj̾qE7a*[$t>Ik| mEuӧ s t-v40't$!唾7PK؂:= `IV.Fؖߑ 6.wyk <׷wWwI p4'Y&ɕW LkKަY&f2B|ǚ4stjWsh~Iv_C |\y+b'^RkS8 -<&˼Fo5egYˈB; %p w/`&^Z! 1alo* ByRʵFkϴb$9DRkB f0 jrK"j^Xc}0%:L6nR7)6<+=hT]\\jY ̸8g&}tK3\'_'~vK1IRPD҆I'<З܊<ݒF{xXV@;*pta]mU\ GtCdF7xh2궦ݍx#IXaCanm'&|g!mv9r$SDRL?0AαxL+TT ץ֤{W miZbzݭIan 1X3zv6MHw|ڋ2!zp`pRxZv !s wS1$yQ7E;KcӨ '+Tdytgq-CM>]=|Ltc\X_q\gCCO8?O/W2\7I3Blfh-cEa~7jFp5q=kt`ClfTan[!P"5gYZbh1770glc.ko.xz000064400000017170147562761670007170 0ustar007zXZִF!t/~6]?Eh=ڜ.+Zp~cJ; #;n|s+QJ.іH.!ߘl8w(h*5bF֍.T~`Jw"'m Q=>¸{?Vb'][9ѱ(t#y\$,I7m\wt`*cAɉB̌/. T0R~OX .^fYՈC_ }i^LO#8))")LCo.]YҮv5|VӔD  ݧ: /Ǩ`K)t)L`yC4N873.},ޢTR`5w;Wd"x.t;9  Ǹ+8ꮗ*~''6Ϣ9dt|@,Jvlz1R^f(;w78;A,SO@] [\~Y]/ ESnX&HlI!wX@1Fb=č9]8*cW.vepR_|s_ugT@@ ,Lk\_)[dt}դNc Ҟqы %b oDsrx:ֲ5vA7ZkI>w9)6"@cꈛmHۙ&,ۙLu"PpūpD\3ַ!Q>ߗ؃%9q`H7+.>|n R4LZ ?DJTt~rk@P2b|ׂ ͕(G}P>7z+מ#Ap7wdcҗTNt@ro_Y'bVdTIɧ:?zd%iG>0DVt igX0cRŔ[.ZJog*j4wU`2mv +ڄʊ׃fqPp}Qf|0@D;)=ʎ$7+YJD03A)U`bB #}ْ?ӎ{z5zfЁ$` h+_"(ɠǺ&~`vضu5᧲y+t]Z}:<ʟ*%f8fd pgmѮ`?RBYလsKIJ`4T9+^M!W6uWvD8\wƾ[V]0azIY=rٶK];7P99ZPou^:&.V =܏ݐ]> @b$%AwUt$npvd>.3'Vdu"ΛV[\4=z$T<3 LcpTS籪D/*õ5 y Lvt6|Y@)(s w\g&rC|t*uLxhi,Wj~> *F пo{@Y؅0i{tGVGf0QET?&7~O,Z[86\dӝiYQF%-i`Ls`pRÅlNyYokYbP/,<1?qsh׊~O5qqP84`?!5X;y̦;B$t̼jsJA63{:漬[O=>'jC]gzm[1d4QaeXF f{-}f/< AST*5x/n6lΝB_~$0-%} `I-[y]%ofmnBn()ZˆCi>1/*$ǘݟڛN$m?z?ٝEv#-eCqwbخ]>͑^F]o-JM ăP{Q$69\ψJ.j!(WFk.m]r(4+wlA!y|\;nlo04O:^OP{ ogr,5#F5KB<9qv~52,#ŠlV42\wF\^W&+?D#99ċ|I0fΡ}YDwWT?zf|-m; O_']JKN'\bIƒ}ɌYݫb[ /yha0r# _ Xm l+ H8EY2b܇ZQ%U\OCG(5B9!!É [fx{ޗ Y=f1m~ϩD(:P'im2<|h5 SʩQj1v`8MJ\hJ}@tS(#`Ѓ1vӾ(?Lrf`Evӏ8?v%Y!S~IL>k>@La9nwdETzٴr;{ ?_soa"x[RWBlqi\IY(S+ T<И@)¸8c1GEk‡CtP@*yA.TBr/6IVPrSFB3X`fã?H!lG{1ᘠZ*wU~;c7咎Y s( S}{mXшnQHBiBߣ.S őFlik:a+(~bC"HRͯ!'y؍>QazQsDhl:6Hb{;-]9d>0'Lv$vwY>Bٓ(fYxSXU83@\>Hz#G6K}:Oe@rF{j8jeE{epE/8/n:/Z:y3rwuL8x#5A,3iWr]j9=>=K{|P4`'r)7;,1]FZB} r"҃7y2T0j.!U' Tг)`%i֩C<5XVvlίF\11 I:MѦmP!TU:R>7?P˅lRS@+ zSrkdAqY:d7^4|]?3-"gERϲDI ~(7|2-|U 'O AoI ԋRhOc8PHܦ0Q X0w\;CdjSqM oWc~~]Oj.SA5 :%ؒzvGeM7h=ITmxBz/@S剋u1PT@74S Zyr,0W9qkgydv7A>*|aRUzl[{ap2B!/KusQB(wx##6_` A_;ݷCa^cGN͔=~"xnO2F5/{؈7Ւ_oa% ¿ePn_rR s^1u4&1l|?[59+VqY|WlD:K/weQqYpTrչ @YiMi3>l[G؂&{qH&򑩎)ϭtvƖ8 #㘭f UzBb:h.CTs .=UVKBM.MID`qlQ YCM"—d f7y,H sa7'TJ>(xTonS][*tvNRI3xmf {0ESs$ {]--7ܝeghDԀ$\zbOrRC,ϷS+ y'8a }J`CK٨ mObݟnǻ4nl{"j%NRe\q%%o_;:ځm`@}!)/R.(<1;, ɠ5T!yRq@c莋!7MO0Z'4k.XKp0cEV[X#~K,rFeԯeKamٸ(/BBtFݭIox1 c% ARotOɷyMK\lsn.L=د'V ~tچE àЄsl Yࣶ7%˯NкԪ.rT^3w&W>d\G{R:^\~ t~yebylczT]:a~o9(Bo/ܶN?V*V΋| n>&Dw^ڏot5b6. >_ε*k|A]9[|=^l,t@4br`6 R;R;bvID~R/C8<ƣݕ{{A~ ܸ_ZIk;9Ux;Yxon[G՝ȆY$zG'w zVB02'lVIGWa3w,l5> Ȃzd1xN !XL;byͬgoqM61t/HJ&A] kʐ[7_ 9:xxHZl5sqh/ł4Tɖ<$~<k9~/C)oPyoj+I2f{r]#_w#Ђܺ::L:5h郙TioFNʿ܍б> dJ7}7}4IЛ?;ykwii3wOJ^b[S(ޣʄ2T{who9B+fSD8#) P@ NX=^;EIbDkPB/H> >$d75pۓԪ3–vY `%l{c0N-fڮJ1& ϗm$h W]H}֣%8B_H ; 9p[%J4񕙅GJ#͍zoʵ 0xÑM_Bi9[ÙFn4 jqY\;lOwesKB\?t2›2$qheg 9sy2t&G s&KavG=*AW+8=tX{`XbzB܄rWBo艋^^AaQ\IĈ.Xg|>=Kq+@A}gJ^h68α,Tї\~JhEuͷ0ɟw)3:zj9,dzؘXM ʄk_{7ִ{,Ab6+,j]T:ҷ=qKD0N<ujpo'ޣ4 IZwǕ~WzV8v NdV|Ixx~0]ƌ ( @RB::.Rz(locɥkO4ю19]jzi#U]v! iFRΎj]~59 Wr.w3MG@ sk_3-ˉ8 G1$W:}~X[8P{nâ ']IU[I(I y [ q9`aRJ^}2M a81HT1*tM U`'TP:Q6O8f@7w-8/s_ĤiѰ;A8~<+r`px l!C?)gfWCZ R]I1W m,ɴk8mXNb7ɖ#;KN LVlHE1*@`]Sƒ}V4pFc[X#S!vhq4Z<) gYZvmw_vmci/vmw_vmci.ko.xz000064400000072260147562761670011251 0ustar007zXZִF!t/ttp]?Eh=ڜ.+$ f, .4.`^ 5C9Bz݋F"--P.ҠP@D˰7C}0Ȝ/)PmR6wqYɺyWjɑP(򔅑⢁8}CJw1Si24+p8]vIjd_®UUrDaݏM̺$nsw"Ymjf"rML})FTŁRAXs1Lk5F6N ^6G)J腶/S`ӨV{Gz)=!ٯ?(pOS/yI~!3r2sS7 Yk "6ߡ#P3Aice@WЁ8|uFP'AVK_J`IHg!vdJ3t4FйMrWvҰUGXPy2k@MSL'*(Bw*eBq`M"Sɛ:QT%}Xشf &R\S,:q:QBu63/c%R7}ƣS0{-sYZ8s? RLIn-i;u 8X9EsrLS|CeL=g2?9gi:ى 1Eg/u|id"Z`;zoa s}H+-׺ǧzefw>ZvV$!%0eǧ;Su5m= (ZIo\\Tv'!pLsjr#-arG44/4M>SY=2 ?Nj~d# AJϙ%ܥI"<JHUKArgο gjT!i%bPͬ PN8j;jKڡ56_{mS& 8/N`3UhXR\\2!w%T+5kNlzPe"Aᒿ4I3[qGga1N~#x \e,U^n߽<Sxw[54|W)?r_P%:\np^&$\7 r$|LBh^_mup|\P%n_n,grOЏd@m,lO$-lح7 yD=m^,CkS$WRf4WS4N SQKɈC{S e@GNgӬ#ȈjT]+\=InMQUbH=@bAD~m%#sro[~xVO] ]uO\{9 +KU@R>ў&Rln>$a@م\'yʛ81AoXUYEiXU@!:PPB}5 ‡ +p_'E~jDEAR(H<(2[RmfGH!/y\JUIa=:˅. 6pPP6^S^3U SKbs5W}o^6_s1[ jpz ښűr븪% Q7T0p}y}8o`ka'm{wnLԹ1ʚ u߾i%!$PPB|TiM+jr`c`NXL=vZB\ns HO)k+ =2~TK2|k&rf4k @mpj1 ٧v'$'!*0A, &q֚8ٯ o-bri@J^pyCB ێ 0!XJ .*U3BkI\.~Jԣkh[gÚ6 ڪFQ~ATPeuM«˯ɰ?fQuRC9[͵E sTX0WYVdh.t 3aI+wW}D'!%;rOH2YJͨqYi_!̆]<6H5[Gp;fR ϓTvs]T֤K~&Gg'|ח$uBs%e_K%^%F]pgH6QFn  .؄?a'ݦ?C /kN4@04ԡė``׏Vku;5M#<߿bف/(Wf|An zS4gG@kn9J1zeΌkTgNu-s+j KŇy{"a&kb?oiZ*&W(ʔыl:^Y#<dObq ?|Pww Nj( ~?V?W|Z[PIE ͠!d5.<T+DV`Ht '6s5.eՉ2 0-MS M^mnMATl|W1֧iv1*0v*aJTL3?0 W5dM̅<u <跢/:UQ]j9R#j \WK®K۾o|(YzB\lYMH};lb^SRDHOyG x6{C"d`FbGF.efMjγ>2'VXIiJ'@swSV,FK{&t`HُUbcNh> h"D3Tv M6)wwN?VnDg|c]{8S[aTm-Z?fZC~3IrEv7+]ػ;Q&Dv!Uɕ퐴w|q$4y։ PU?J7R&uXYnb'C$Ռ["to_;eT ן"Q">#_W)I `4!L- B]yE!^ $d9 "!bvA뮾 PIGxޞۄ`oU|"᪅' e$rW|t MM8Yz!r9N};}r@Gnǽ໼_gz̧CX:qRR-$c#.'w BT}7u| Ũ7mui;Furf 4  Um?Ws 7yր{/H ,X'S*w$jR vD.@l|%sL־Z^hZ-bel?!vgXC+:u;(*VĬAwRƶݔ"*N_T%8q?16LZ97EhnP*:ѿ=buuLd-%|3P ~iK [B2q  JA'*P3VfQM,3qf뫨 A0Mwl=[eHW`+.KB 牴&W1  %gJpq=kbN2KC}eK/VӪR l5PS^ ܫ[nϋǧ B `גלA/ѠyQ_z`t_b * &{KyH^LX!r ^٧El/EM2! 0IV2\KRT^m{y$R%@ E yrhj%peN4u1-fX34jU݈c_)&z7$ }-WNj:eEN>ȍ9o >}WarZ?n4:MnޤA%V`ܲ4ݗ9UR1I8;ʗ>&j _18Iן1?+@!ydIZ?Xot"Ld#Xzn052:V{N4&tl ?jNFcfv5q gw1{ >loFtN0gڛf}"nK85"[w:\Bb>q ̊u-,;zK$Z;ږe'Q4\6p2QAHb"-Rxx$+o@I?{JֺoTV%@Fs()n'Rg mW Vv]+;2y{jè},Lm#GaZ*K9Q:ʩl4*XZTYte4nHqC`t2Rѕ[Znxw}ӺW}LԐQ6 v6u[n"6_&<2'P SЯte\ !z.K.HX~^z!B?~#wIXRl1im#nW/F]fLF*?^ .eu&rtdm9O.~p&kĨSb\-Ba[nK:$Xot^f"Y)W ("9!O[IC4nU J`PeKʪM]%]af|K !ؘ0ϦW7o߷wO&İfE2c WH-#ȼFFoc ۈW&M,3O°ݸX[[!5x _PnPKoEڴ](goB /f:<D6Xc1+@ұH<D.Aڨ2PwٳAvU{im}/6ߟH_"=Y(rh؜' =x7'"J7 #ܿJfono4J fAw~-Om(G 5t~|svk׺P2Hx1Ɣ ~udLT$\FS.ƫxά+dEˏIG ax n."Չ >Z4Xt*g5?u 4vdUu IމP_["& a[錈n631+~ Ս)>*'eGQ NbRΞd"ss>[3Wm"_hǵFLO.HC[%HiVfs|nftDjΐ C?}'pk+^L!+c43 JX^VrC 4j,尞׀QBX ҹ?%4"FG3L#J   ox>@湉貕nԋlJtt5\>Ũ rnsY96hwPΔ=hn *OwSx?USևG-}]`IEt̠6%:z4Mq&.L^ LÆKAP*df]Z4ݥs@/ Z0$v:u>_<GY`a a^jIyKVqjXwe{SIҰT3r0-aJ[Mᶘ IUf@wQw0h*YW$Q-~αNR#:^@?A,ik~VB{D˵$aPB=ZLJ @7WHͣ's}UcHt3^e"uҮ6&>-vf8_#W}F\ӰWssf;[K  >k}U`p987J讌zdo5F-'h?ڐ- _/ji<23- Ħ1KBE9u~/O x;8O0{r)վ}hp,"۽>c=EN>ZQDDWeO, Ƿg mCr %aǵ2_dDJRMrM<|Hu1cDZT)CRyw&kD]8M lUo8'?W;&&>'~wmg?!+?R0R)eoecE5'GoOJ9yRWǿ:2>w27Q Wk#ɧ\8<D_.%@F9 'džA_[۰ټ ;tmEb΋edtx[k\P$q3WiEJm)14%=#H4Eo7AER1,/8Yi+ &YRbF-Rp {kOUH+abn*"qGղ1]޻z, @S Z kW&$kms;M.>G> ~ c2BP@.u F6l0^d> H@ ^?V]8,aɷ]FQ"*XO=ߑ+`얇z-x&"ql? FY_9߇MŸy2g7p B!6st 6$ڶуB.Ml@G8Gϣ ʫ;˱x+͐Lr"e~=s6.b{4_QpBmϝthHH2*@/|4(4,ޜ}v\eSxs_(U*gDE3ФHT{ف͟SRHA<~LfPs+^ \FKUu?i.aAeu\Ӫ8,>SfN !l,,ԈAl/0kVz%sK0ϯ(C}D=5 CV~O7ƮKU~rݩPK@Dv7( &l̢ѡmqv/P;2̡ª5@r3F0B:UegiAAq xfnԊ/6^`|,J,[-\.p8Cl#gF—wNbx'?i!~ZѭZPFBJ0+=~Q8O|v87LmjtP87y(+~?uqh+,1Ϙ=p.Q,2_:" Ӣ\HIdt1-QVϨՓd L;#1mQ3`α#q/"%_ra+шcp~4?mň+[_4gH,TB ˿T2Ca+v GE+f'Zng BC8c"?:G^HJF=ЙzatOff&|g.똂F׋4xXs?B*"䘕bI2"l͢ROKnS)2rDyJb_*r+=n7dЂtl<Brᵄ0FkQwL(`ۀ|{;{f;տouUIp- L͡ sU!3#dQˎs.RCr&@x 61R ;rSK6_*hf"ST/Q764Eco 'y禘nϒ4f"j1>:R%-SOU+ƹjQgv0 &7 ۍ9-$! +QT/(tkvc{J2bk&ddU"?t/(e`;uQ?|DxQ޵tGap FrgEktҪG*`}JT3lno/D6q+&jDMu,rEtTYFF{D8;DlQ~j@H B|{R( U|4fQxkk䱧ZF#ڒPm-F#A(!{I^n:a,u(x57*zXl:r9̳qI%2V8  Xmd ASnד4gj$2D:g1sXaҜw{+iD˪bYjleCƞÁKjuENs07stq_u=%?#"yg~ұDuYWUc@b0e(嬞s>>1&L;>Q)*!<~jE覩qs}P=  2䷙R"s GsԼɅ3^^It>j{ފ^# {9)n4GfG6",c.@4 N葭A Pl.jX8"2sDAh)xEo(5L'svU:86)cp7z!Rx-.A-^ݖA\k8U. =2~JʾNΩ*TG4C ^C+M8`i30bo*!1_UiC-H+ -'F=YVI>ih1ub(-s-wR`V) 11Fhd>Z;j¢Y{cG*p:ƨ2@bЎ۴ 믅Ja;Y Y`+jsSy3xuJ7᪮9sg΂k͋8-+`F*}.6uP@,S'4+Fe8*R\@1J,:>i=M$o<_\iw8G5繉Jʊ*yϯ*'Jo^x{!pXWC_o37rqBWhjy dCD 0{XcGK o-/SKt,{mp¢[V}FU_ӿB.{D:~bԃ^GcT'QiG zF!D̛3a!Cbl pqLx>kBM8ȫ Ԙyv$'%K8M9/ *"-FQqKIzwXӇOϹ9 \ 39ވ[yߤl7NTW?HQ$`v8\ J, ;B^UJ13.hogr}VF1ɓC|`-#k:Ŕ 4'kĞw[ɼ(h4 }C+tP=~8h]Q7wۃXAdozkD[ǯ!,5m%X Fd{#\&eFZAk} Ymo.V]5{]LzW4yZ1]IHg c7^D!r=Go%7q2jg:$d|7A/fP>kTtѭ=~>t"2v:,ywZ h9'j*/2OM{-|n@`ǘz*)vu\HwbT𡈉4Ʈ1eLHUSx54:#?@6^q$E^`Pap"6`6m \"z| % б5Ƈ_B3[kmG(p2n3"JjéaUjC|RϪ L3CE>MsěۯD n0؅-x#J<  r] Po8 2KdJJpj4 DG= \w:T NĂϊDW=e42ݧgX}uk-`Gzdl;83vDܙ.kI7vj*X. X^&jUӦ7)coتOTݢ$koZ9E._B4~aX>i*4ood2MQKd s[e%:IrEfvBǻ&7ͥuNh?SG&Ol{ڞ[@d l-Vύ#LHLlكB!!A)°ZJȫ좫oi 4Ȅ:7߇iFYH!z*[ZFPEۿ8G[]tb+]:Xp*b! ^Hm-q犛dTŷFsEuS-X^TvVYw GG$mxhZ@1|7lk֬ݙnFz,]$5_r=t-9hOg0M Pb%Wfs2t_|>TmlIpuEB+RyEX(NOg6/|+4۬ KL)37RX䯦~)èVfeԺ٫ڡAMnɧ2cf;>D˜2qƻPV%h,4"'9']q wP"lAam"@D*=I 0ݳ*v_"(Tē=a i{Μ䝔T wq5Rok_~/;'a#1BFV"^ psW/7P6 &lE' =I/YګGy$!t(u ^*'VC,m QH$Z K%5sr^o/91* dيXd)#~ӏNރ40A۫)Qwhd=-'b䫀Qv-TN!QB$v5k2NWa@fT:yx[I,T A"/ D^#L"%m8L4 8ڌi#fɶ;t}ѹt/S6Σ~C*F!IPޮ29YXC7<O_?=]3MWۯ_2m;Ў}"@# D4Urp.9e6rn0^)XY XBHC\dQY6M\Q8%W廅nc?ComMyO}[##&jpIʣM3Qa*Rr#DS`rmgv24QJYH-cڵ3ߴ R]6 q(Ư)㪨ψZD<r%;rGM"溿t.v.]K.Cxg#EOVݠ?%Q8*/;ySMr]Y &\-BIyC OՇ'  3R| s`ٰ<Ŏ&ZRC[jK|rN}l4M3~ oèsF#1%l;kN#kƯ7,BzIc:lBK yyl1(r-lakg8*=]5#=1gf#h嗶Pk _ږ:iWr,\w~&g(='}Y{ )a cO[}YȽBٙ495i*nY\)NW,D A*f Vt&4ϔ`I\9\%iVN-WO0\X?o8{x_d,}8 z ѫֲh6~7T^Y/[YŔU"o:u;5C) L1LZX+j,yff#(ssY.C]!-G.½Ek̴8;!T7蜤;ȕ OpwzҮ~]demv.tZS^2&F5=s|Iս?x|_UF]%}ˏQ‰Ѫr1blJzxo I aE:6(\nГ3ڭNֽ3"n~9A [q; NM *hlݲa_]/'2!-*b׏0@L$Aet6:ܘkjɆ~CӏcQρ2R<1(l!~V|W_bsⴢ9c@DOpP6m&7NJCmc%ısE,'<^\}Nׄjr{@c'Q2FzI="(Z볫NUEDFsgok>peȊ @u}{ x&LB>e?-r伵G)7вf(4-dn k%duށ`R|'=+me]MhZ-1*nfQ~5\>WZPwW@m/ N%fqJ :bS<bzI36x SHYφuј(`) ma߯U |t tg<=^?ǒ_HImC>NI a"}iٔN@g3&/ڄ#t c} Э=ehGvĿlA-|J.Tۺ7pLnr'cٹ"囱_~ }qr\l{}^xݫ?o>> >IفXol4Бm锕c&&u +0ܺwa-7[>'(sl[WR]cA^~}Qu/ ]nV@gwY072VlMdkAX`홷||aŎWQOB0*zaU Dr4乏G.QZX.`v R0LХjB'T CWu$ %59w.͐jɄ@wf2 Mq*|`W??=2=ޓ1527|>҉1C>8mk~ |}bFg[آ3_N[߿3|m*os.*|H6*Ȁ**lq5M\ X1vV/ F'mWB4esݘYu{zPt̻AK*;pBCHҾ'Jw|Jw|ͻ$/owq>={#z|_FG2]'2vǒZ@w G\m:}آPFbk$* ]vzavd/߀+_0>H7Kg&5`V/lhyNU'I(rtR@9XQ'0$!%?tP1=Ft-«OXW/%SQ97R2eiñO/K0a)=xm#Ƀk a^dD|ֈx{~ ΙZ"owx>jUEdNϞ=0靶uJbʮK;q.ʢ?=+dq"qEofC?GKi |g6/^Ua)yΝOpQ KRC IL.j1VGE84Cdvjh<ʏ%^Wp ҀE-1+k_:8NBMI'g5oKdߟ#{ l<[0RHWdc Q< UV٤_Bxfb̈WŪ 2Ps- }wցe&QXz^%As- IEOɫ.<ӏŹ5v]VZu-_QFk<Êr-3SA AGB_G熺>+\v4- ;ݻ,uIřF(HhP[tgfsҨGU-!I$@;K<Bvv 0}*Vsv?{؛5.ؘ: pĔT/7&]?ɪZt!6RAX` v4j)Y??FUj`AA ޷t?8B]M'f]3ReKk+*w O9 d Gˉ䏘p}W -1ΗW{;>ju<XTF(Kˁ‡ƦK P@tQS8 1#X s{ԧ/\'ZB\$L  uAgkb[fw%<`G=I*[uڑ }n|{t{T-֒G߄%bL@0IrA[yQ/؂htu<Dekh袆lI u|"nz' {ݣAO1ֽ, Ar0yes]:lžn,Dg[O;eAIw,H24|34G-X\pDqZ|0C SBu\t ?US)є&l\ .㘞հgjlkc(\-@?>p{>Nnv1#Mfi_tGsc `w@ZN1ɰB-eUw=Z C~^,6&`3T)q5g2\%}ve=95^hQ]i{t['-t@324,B$D! NZ#/ }5!Nujjs,; v3,YZjxIlZf2;j⁽F|a+m*f Wooq3&ψ%{-]z"^ ROaxKIJ`e/榱YUaLbC@Š&[Ϧ.Hk։9P/M8jqW}࣐g!3K$tf%6'Yx?!?jS^A<g)p_4jN¸}OWO3ϰ88\ wO;cW&`H/12g>eO']A ˱dўV0k*ډnC+TRr [fsbLHGfvs ?=KefAFq2F{0L$a^/N_w3P%̒=ExX._- ~.GdE2\b㨐%>tO ]u1PC6D9aC`0C d| Ġ KCii}~y:w?qRp)Vs{Un|@1t"lXd@PH?P#@0)CĽw6AZ]%RWIX0ά|#Q:s90@k+K>c&p3cwybsT,s SּzIYxh /n ckj+@ˈſxSPJ@]0U۔LSQ5٭{2lqJȁ,`ei? m!#7z;/&L8(9׼O%f2b RvxCHZ`m,$rt_YP2"%PLyPq!: dySB*WWؾ2A:)->@'cB NZab\;KrMN z ̨-<. 8g$nթ%s=eEnz0@@zBX7#1 xK8mb?xB z(^XK$Fobio37<*cV>c~*m"~^;-oK^'W[,?<G) fv-~vz@843rT7Vv';4ʻtc͒ bò})w>UnwXP@ *?88Z$'RۘNG65K^O12>*\$a1$q[ jqxW(cx/%ڗP:Z#)Z" A kd%ݡ{UyD!C{'y 7 Cy!\> *W1OmA~i'ص!K%4{I*#b1,`sU#Pg i;̥uܞ31/~2v_*,$>b1T?NEcb0QԶy%0JRjP-w쁈Ǥ8[‡ _KMvG}U},pP[%"09bZĴ-JsE_v/pؖ򝿻? p'bV⡻yA`7 0bFvio~ r慠xpDv{q3&`n: JWPvNE1N.+3̇D17BvJU1+RPrTk65GD3,Oq[k?VpsEzE@sHzv#W%A,vRqBq cDŽºJl:h{;H'[Bvtl%Dwz>1ӗkj^Yh(@Hf ab;.jr#ަ@$Fb #i)։sBjћ;h[4C8X!TLC͙A.Ѓ,\,9~QP? IjU3IS:,qi.<‹epnLB0& P8Wfn1s55;ob#Jh1L"q|u,q7|FH@Ϋ̦4 F"^K["0s"ψ..dvl~@ߙNU XM3d._ǁ|ÎSqu % Y E"ܔ8J H;fVM7IQGO%FtkzkEmfD0f4p6|"׬<+EqG9F!_ܶTnbm[d UdV)n8^=fz<0k" Bj&@>j@}+|HmkHQݕ=\WӜ91Wd^|DUШ^'#7MATŎvguRnQ̨ l,h8`ȚymaL1>{UkdGN|_LN3nqzp o-D)x"'H;;j~I")~O0ƹY:q :aǘ0BW>˾Wxr9K.< lF+F_ә©9@= u()ra9օX0Pj+?Hb cl $Y. q78~ޱL&_תǔD8~: +C^QO%$K㿎Fc8,"}jp6V3:%(Ыnj)47lt~M9 S07&+qk_ 3LZ_a|j2K #hd/"UasΟ#ȟe# +9Kmg} PwQXfl(7p3UD¿SG$+Q)̓0тat5_ue^1f F&I)Se؁'H5 T qWg92 5M-dAhY^JwR+k|]&#+wOC=K.dn "$BwS5Ol5Crp%8Ћ' 2T9Ӑoc 7}Y6>.߷c#ox,6a&W^w?M!R)xS1fGRWtUOHDe-:ăw IQHQS-49-/%M}KandX UĹ$xK}s!Y%p{OPm_pSq׀,SlW ҖCDܤ1P$+niZ .@* BBIl_"FiD9u)_󂟴/J%U+;ܻܽ;{ֈAj'4K^9'^wyxSډ Y>>!ХpFB 1<'4Z2m);Vw.93@(ovtj1gYZpch_phub.ko.xz000064400000013440147562761670007356 0ustar007zXZִF!t/Z]?Eh=ڜ.+ZDsp~cLHZt2ZGvOICo;tܽ~yұЈːt$D|Je[X"EX#T1o)<s 9 Kjɟì2YNFM7fZPWh%&6LV\ա5DEi3zQ>CvLV#B "ZS- cFc_^Sa&CAU8„.l~]sfc=;jg;j67LC}0yיk7_8q'$7Pnt7c@^@qrCf+Io*$0.~ İda8wO38oYk -/[6wysb8괁ng{^\<&>Q2x: ӶYqz`HO7Eh:( ,ɦ%KW÷c]-QvN;PڹNdڵ8$Wo.`$7LuU8>.,)2 r i epZU[\ !9 1K3Jr{TOGŸ1 eM1NVW݂ V²|@*Z=$9^N5>UAy[1pf,6Ԙx=g7JMΪ8s')웏~P~4sm4%TϿF ~ Hx?=u@s;Oα)Ѻ+2E@w_ZH 2M33M7' b[pDQkwgcL`V7 :Tq48c.5{wwk''"y q'^)֥)U[Ec.YGPbV.ͧ4C3-!SNiscyVhŅFX.~>ŊQNAn17~T=Q+2 weJkJq3{cD6expݩ&/XpSob.qXቝ8Uc[hJڔ4^m wąVE ?MHƙ_VǿpW *4A5d1cBN]Kr9#Gis7;4RINJ'Ж++WiwXLpDL`-yǰ+D Q<MvD"i0=\н7@e)Rm+> xc!Ce]e0stJP+t,u\Xl|b9gKA6b}bgc6v`#0١_2ږqWTuN%ϵ@U5lc{q}xuǕ(,:pNEtKX cvw#Ųe%!ƫ-t?bw6kҺq(Ituiv.3inHx#@[6wzj *b%,A9 Yh+k,`ɣLY޿; ;v,='p1^TNlBpKvHVp %#ک:/lƨ.o6eC_Q~Py|՘pKIҺ"ì?.R&"oz%k{UP׺])b'o'i'us>(]Hԝ q‡A ,Szq`QGuěĹDYӥzgtmfrBEI2OD]uGc~*@Ժ3Z*}\UִUoy-C7Bz愧"Y)"URe(?lB6H/Y&A3C❰F NVMv3<) mND Kcm? g'x}4_R2Iҁ%/׵?v'â3OMLXqq->̓{p}!>+#ˊ&f=SY*E{0DLa]wᖍf7TѫVFuJ^-#1:1UaRn8Rm̉>YkX9*B z 9Yנ V}7WݧO$QH*S/w?[Ǡ@H6f;$܆T8CiĨɹ^0. =N50>B=\5U3o^<!["PNd,Hlʟ=(czـ4E|K ᄬjJO*bC<=mrއ/1Q߱ŽݼD4,|Kfw rE` Zq wUy2!VA;?)9b+1h"E!3>O:\!}+tX"9aFeda*Ը PqSA9|y $Km52rTn*t`Qa&/;*/3l UkǸ!rR(2ax.m7|ݢ΃w>?w,@1gkPtn7wѴzJ*; c+W+5)iz9>w|ɫ(WEV;:'ZBW9z3i̴i'wq9(%XlťwUPгDLUѽ>q¹dΣt9&wxPhHcQAMܫv;rVKJ}Xes Ft[^=Dvn ߈VKϦH-L3g+[1 H9z"9dC@Cy 5 =B`2&(68*кpZR{"".4̣޸]Ejq92OY.D ->daVӵ%kp]e:;avys"^wpS%[X4Dvb{:M:*?Ä]  (P~C?j(~WXI~DvOY %DSZÈL̑RR̪/+W3+*I1f_ Xq8"0OӻH:S6AF΢EFW>u׉=ὕB4H4_yƢ`qVO2фZ ]wpE -y\0:16E.$`a9}9qǾ\o{ `F{! p:Hπ?@ajz{V3Fo<|P+,|&,R@9}zUׁp/ZU f.MPcWuDHKȱa;|`)*q0HyJ8Bw{wF bv78 g'GjrK]H8ePbƓ5y. 㹛r_?1( 5 hIU( [=9&BkRUiϔִmxHP= ം%i ]H7g:v_HqgT*fNZhTyFHQY(O#1&4 pXKm=$(1euQ?rBLPj 1`Dt5LW_ ˡx l6"Lِ>.fliud ̎Tqs=-O]+7 8\2N+]C Os4ER(oHWnq8zZл1Fz3~҅ыW:gHWT"w^V0:)p65w{RiLm@L7ڂ;qt(5bqqVUS( AmiɁ,?nSD5aH:`֕~*5dw'j'C fջO̅fk@J){h:dgUPIj᝘E,K3$@7gl] ?' OgBm}qAlUmCPB߻JLx;!K?a) zqgi-4"xGBPgcߖv7H*k[MFi1)eѯ߮ǎ$5d-OT9޹5#a4zJ1+/Qv먁:h BrsN;-RX؞R^b wap_9j8τ=]V$腴Wi$࢓!iDMQbqdawV\YT/4_%+q`Ku K Wq6|$5Hav @4K'xHSv[# w㽼w'ca !JB,#B7 N:DsRh j-:2v NY.ֻi΋A>UVO(|8-lWcʏxTI!-5^zk;x\w`: Fv㧹7s@SdSsp^l%_u!|y-?R"[m{{#MjǑƫ 0L``ǍA@D~~"=<)QO;1Pʃ?|RBئS vTf\[:Id[ѱ)W:9S*̨ǽ/csa [{7ׂS0x<::BwƖ#?S66 8zSX& HdU 0z&.kսZ1Ƴ5C$3hoc#9 #Y/e uAGo:g*)\d+"|-^9y7L - ZDlc‰̐]{/kW7n N2%%K>5:k$`?̒$3J{ߖ ],<~7|J4x3ָ ) 0k_g)>roaQ%>5㔿3.Yd7R񒠾;O8ԚOadҖy{eS:+2uؖϜ0+¶Q}jnA(}m urf.*؄-tPAk{٨36m9HPO//3l3T:#խ@aeoSvdH`:m`MR4o 𾜼"#Iw Ƒ`z۷\:8-OPxG^É p*kzU4v~ΐm#utR~8詩"2)uYHÊ`ƛ>{J"#&_YqwCu.1w6 QNʄ>~RK} ÏVqCLt,5sZע,2n7kmwZbNjcuRw0`#$J#.5+*g`x0\&KVG}U5 ȋ =iقu[U]ʟPӁٚ|T)ZiF}żTw *FJ/A_i;QF 8THP2Ęv,F[spI*a!ȥۭ0 )8/N! G:XNS֫Zu(k|Ec[;VuZ|PH XfWpf۾oHT5(ޱARx׈%淍R>j5RCY 8VbE`VGi2<5't,9:=Qi]J ORHqB 4_yG `|hk#wՈ),FO=D( L4{˅@`&}Ut|h=Gp[r҂b ]Y0 Ecq>!0H+-u3˕$ɍ.a\W1JNgR "y2@Br!P bjId+w˺u.vj/$B{gU<8C/y)}FH4߅._?Q]H =a֋#edt/  +pYF"˕rr^*Ume@L9)-frݭ.a)DDs5˓Qꁍ`T8F5[|~NOaY _TGOF%Q}1Q$,5tzt;O%0r]ÇoA I blu+%?uq_W]O̤YPqr(W#|p{^>}Z'0bϰWC?؈m~F`שT8LğX^̲5%A:f2x$fYI8[%O;3+& Ń?7/R!>\c' ]&WE/E.;_7&|e[W;-n{gM10W /;N2"@ ,HG$PCGG4J6 ,p橜'­@KB9/aoN$'Dӊ!T[wr0*ٌ=!ɵrqNb@n%+vr-ɾl"S/LBF1+ ?k U о5v;BYΎkw*ڗ+?MKDkDnVwI640l]2ױ19fD:U;ढt RMWիX%$Ut|w6ʘˌH@{$Y~dOIm3{A} w] @Kj/d$#ujb_:J:d?|[q|?QfބP^^QEUq-b]=i`[/L]?5g=qA-kP繹EʤR:M:' 1vf$ĀK5G^ZΕ&7g. ?aOGPV `/-Ey1\T` U9k~ 6'B\ݘHm/q 5PZwa5+] EPk%MpPݜ璸MG19=|zӮ 8Co ]GՀЮ!#_Gޙ 89 K#bV )QQ{t0ANy%>{SղGmEx(OŘR5:|aW2è_&32Tp:[,kNx!л޹bw*{#o_OF`xRg إ;ѕĻ-~aR b1bKTK@|._YIJS/ߚ׃#v[@lp+5 Gf /2N$a5J?Ǵd]`KQ}{c &ՔzHʼ5gEUpg m5TFRf0j=/V-c/-R>݊]橽wk4 1T)9<|AY$##YcQFab/f= L(Ric:z_|LK"Jc1e's:Rꔵ|V AIj_uIw D )o^iUӀ<)lxF ` Pu=4.3[F7σuQ (<O5R"\'M <;=бOȚJmF Ъjl}Sc2ORymxpG0q'/Ks7<{wr WQc4f~šZi[8v(;Y+۔xnwZZCUԆr\o2|&QuQ,Ǖ.B`QSècdR`$"E5~ pl:rm*qlIԙT 86iAmJQ ѽei=LiM6o %Կ06v['\dF:nLAΡ YI;xKī~QFNIqLXHπLuyMj^1M$#wHk@<:l9fr)9}6\@n* ""~AY) JEEL:<dk'3o׻IKKrl¼'3>ؤ@3a_ekaxz t(mH>8*/EXcɑkQz4SMl#|PPjHJ˻R_ڃUa{tǁ͘##l^ Oѓn:ͧP,';5-E9&:RU< 6W%:*Q9& t[ݧ}V%Ụ0ޖ5lȬx7#72gYZeeprom/eeprom.ko.xz000064400000006734147562761670010354 0ustar007zXZִF!t/, ]?Eh=ڜ.+Ρ3p~cLI. w(N(uq'3 z3P7duCd0;iIˬ[Cd#A1 UHG4 ,?OG-bT->jѶ/Yw-P ڶƥ̢S@HID0o̬?`A*b, 1H&\0}D6BewEDyЪ zrOஉ)6!֦@3YUaYDŽdhG@E;^`, fA>#x&J[3 Q5 ;0O߉t4pL8OB=CN_in\$<8Gj>F֡\ChA:aHfJ)A0oD— x $eu5 /1SVj#:*v훵R5Љ/b.ms'&#Gz{^4Ǹ㛳MLV6HXӵN- ,Sy 8L=``1;araN2YBp;&&f[XR3⴯]κ! ٍ9 zX?J@z23˰.uf>o`:V!{mU;L|lŽ{\:,<=!Ӹ>6_/R-^Ѯ%oJ򕊐XڋO!W<ID$}yŜ' "ôCh(^VMP28SĹ]7 \amO`{4A=_w٢-wh'Y7v.=y8mFZ0Fb~S2\Ⱦ=;NR>>K~,2Aȕ!-ͰPQ9oHcFz'f!s͈2~ <(L"cX!J\scL Μ}(5p dVZzgxHLQ_yf|7vB^|mk.㗸&Vk$/Fb\#螿q𓏔!xŭگҢqD;Ț&+~ ~ŷz׃H-Qx$ rhk%p'#"F5!lE1yhGGT;f1YU]V?$eyVh!W~|M5bnϞB>j3M6=l=>B 6]tB_M۴La60@Eg>+$=]ՙ:~ GQ:)24۬wʤB/J"C EǼHm%&;bݾ,"ɚk'US⍵qC"%FU~\d_A#T{Gd7;hHcH qވ=9:׫-K~8 !N."fLstLmJD'C!jkyTB6?Z!/8Z"n(/N1B>B Lݭ1]'yAB׉0+=_6Heh0^?\1%8}H[׉ 1V]v7(3#'^e!CMꦙ zʇ{@v57mp]7Mg2KQS e\x5]޵]꾬,ĬUiml|yV i|`{9wu>%kO~:ɫQmQ So]5\,9"rlʰ:lE! `CZ:m mIĖ&әrwFgy756-MȾdG=:RBt3͟Fʹ-5R("0z! 2YTgYZeeprom/max6875.ko.xz000064400000005650147562761670010200 0ustar007zXZִF!t/'L h]?Eh=ڜ.+ɏrZ s(e( >WZ {>[%UFQFH7Z|&yO"۪Vtr4 :>!èKZ8{6Fd3/ZEV/HFT'SFylc X(08[uLs04V0;VrPdx$oXh,Rt8XgFn@Zsa|;v>M`M`e#a53"ґLƎ%/ı Ef()f##)lύL գ|!3/-1D Mxv귧(xpH`v8Nw[6h-EJ=nmcII6sqMB. 曵R ğQQb  r E-Y8\Ī~{=* {lܭQӰ"X'ċ9[0zfY*0:mTв_y[jا!1`^k;~dWOwiERfS2K+c9JLJc84OJYb`mr)͍f9:9A@Lva%zVJ*4 ,6]*{(BIK1h1\l19K }HGS3Baܚ;y{ %I(q7x%}?<ElZ~Ţ? -Jm[ 8ON(6\t;[Kf r;?@b*RFW*kyhϔ%/mns/_dn`G)Ϋe=3VˁLŒ21Z'VbX.:bM}Lي> D& 'N&F%;kdcZXuWÝ⛏h ,]&Ky ?}&tL1 լTEzs[;u7A [ø:_ÄDž74Զ̌=/4Bu4V19bˣ5Z [r\gJ*r#]*>rMVa lMW8s(LS|ij2۸68o,ոZ}l;^P2kkؘko+5-NKᑣ|,+|4W fP<큫>+P]ƠT=YEP ipc֋{񡾒QYMHK5!CGK'K~ޘA3۝FQWOAA ggWوfizoX篔}ln[ %xqHw=to ЁckZ>JJTlc\kh4Eӽz@AKYa J'^H}]> >SEK6 *=MW ~WҌY8#e;~m uq|ώQ[Gʡ7P 刄F]zc39;Gʯs% u29zLlן &Pu 8s5՟'  P`=l,ɳN]EfxM3g T\$!IT_N) h[ǷxxGUa.m\Xˌ}4Zq6e@_1:٩_ @dXB2HR{Y?EIlD-ѿWߵ6|0"P ƀ,;ƴkDz$d_ړ&6Sgjg"}8j%Zʱu!CĿo߀+Ec H2% 1of37naݍN<9uGc;V)8o}Fݫϔ855LPZ} ;V5]y 2lL?2LF+ MƏr U[Y^ЦnPB_ׅC2WB])H=?OǘS\k;5T.8'[6t'9 ߒÜ9 tP'qZm#hE+3-֡ Mx̥YX+}{V"I窣ƒH$#=W\>0 >tZ$]ӏYlbtyYz ܸ^>?b!&]\Z]8I1O&T`)\^8R/?Jގ-Ev; ^c2)-Jړ"ѣq F˹g͎wAnXH ao6f`%%+~hZI& +"mO0YUK昇R52TD N@^_dȴ8kn!| Vl<ھEpH/NO/}p\$Z6Y@Dx6KKzܺFFӂuN$ԗ%~h[3> -FHt.퐅e%d ,Q^x+c]S8)q2:Qu1RQS˟h{COEy#&`)b~҆aK cLHN Gk^|Ax9@n@3Șv;n?p Ʈ6©vڊ9S ;XkRt3_`i9H֘ 9¦5@J""\1wzdpFzk S`׉ɡl"ߌ؅ipN_jgYZeeprom/at24.ko.xz000064400000012474147562761670007635 0ustar007zXZִF!t/F]?Eh=ڜ.+U|a5Ύ5Ν{*oz(-`FlsLWStA(g"5AΘB`bV \ljXrb+nI[b{t |aEsۿg PEo:ưCo=$!;S877a·h/';,󟕗+uVeN OƥS䔬; &^םD] xBh. B-g C3ZP^ Lu%wO"@UED{=g5 ـ9>Glm`uH:_%6099BhgMFIRb H#}`=}eDVEfd-,}akq27oػ+`~gQkLlj̰/p+ K(y R-! n6h*Oq"E)^Hݚ*wrMw}cd'e&SK)lT$}:`kBJ11*CI*9-`2ɲ?zaQ=L8@FM >C#~۫\l4i?3 aKQP '5L?mN ɐ=.ک0aQ8pž }Mmz]5 :ˇ<G|[ݪk=;L@.Y6͎ 6m?1ĹcNC+lX* ,> 8t+XPe<͢ITG/Ki| 3EP̑ &|GU:YvR#TM}It|Spux+J77L߃Li93􊥻dև #8}fQ ZAKHWAnƪco[}Wk޼#؊L:fh`I">nu"UM"Lw(? ]T $Uʍ#LpLp7Ead|'{&< \[.*2ȸԞޏB*_݌ M1u(,-pV]=^X9UOu, @/zֻ8x]}wlFn,vlՍ$Tod:ii*!.*.c1m? (R8-:wy.Ow oL vk !)|+2MKn%OaT`O4FS5azjJ` r7@P.FG4pYxQ+FcQ@u6 J -g~2\:RA3@ Hr0(fPWݶ1"PJ>UO~drL/h{`W\jl( 5s<%*ʌ (ťnιafճ"Im&4Q7?ށmw[4k8{.v%st)hIYXtٲP5!Hn۞oK0{ϯT/enɟ`~: JWpvHM vi]~hhʠ8f zjmx#1ŐcGUtxo܌fw_wx mh,di [1D /ٗ9D5:bu'e4zF"KׯUu=9p_QEpud*8NL>[tF;N~%vGAGӐD\cOs^7/!Ge1Tђ)u{T:nwb 5OGUCniW{=L / >s<1'LvߜaBIQ ῲ+k7oI Wk+Rkc]Q\-~ !=ҁX"*ر[\y(nLdA 6ყXRO#?o+O䑺DR 4:f*;4i"HZ9fd;"z@;MZ%|WR&$;#|>"cRA@ETO+V1@׿%aw7NABQMW=Dzڭ(ϯIL48S rb<9HWpKmjeP&CLC+T5&⣑#_Qz(D&M5va5wU%t(pn}!fbJw4 Hyds3ȿV)[V j' AtXޢ|-}'Yk (d8wQLD|ὴWi1m)CKERI# DE2@ϕqOEsKlU^qw h*"ٞG_W7z̄;J;O?T+u^>Tb+Ɇ]raيjV`8=7|Y% #t I0Y@3= zUNΕm?hSZèq VoTd Hwj ˏ*<]Biv-l KĔR(YsDdH;'_ N H oLN3?rG`H F!Aր;2·O[( ZjK(pufKF1@2E$ v`|gH'RUXvCT1!'h; F^lS; Fzszj+ja^o_iH]dPQoGt'&`oOevFDM:58dM}>[;v#g_hD?#L\c4a_{לchXHTSgW&ǚ_ ܩ^Ӻ=l"J1 I,JT ~u73p_ i'i{݅)fFMyE?|p^kGD@ȄJ/RQ+ϤdiH*+YЛ729naF]R,>v8]ء m5BO F]C# ?' N!O I9ﳊ&wy1uOKh$6`x~{!btJ=j,lM.ŪCcJiG͆U^6*:nkFO b*=B&z"P.C>m^_p:TGiG̬l>ї[UP]\(J]C31J{\)1[EryZ3珵vKT#RɇL#@QW}!:TB6j ]MX k`g# nummM,M3=F8[ӎlW3Z9G糪Jί{#|:"Sfǫ _Ҕƽ,Q) h2j!C1ݽx؊<0̕#a^wʚk.JPԂ%t<)Onlr +s/vIvs3iE[i|Q > mVIm8hy9'*Zjw@I0cl<9)"!:|?%toR)MvVx>}_}X β!-~fcvyarA+×?F;ܞ$<2,ĝ#*8xmv_޶[ˬ֤v]h|:-l2{faّمB0qA2M+%)Yl^pq ] @\>PpAH'\&3qZG pt|$ GC ͒[ӯNCO*M7HxF c> ~Er=ʓ'p7ŒWfak[aױVw& "9B³?CMp Yj7;QY%afV=2=]V8O~?9:̼+!"} ؜ WbRC/]qӁ29㝹B֦vxunYM> +vmѲ$X^*O7<\HO|4?!q^?ÐuO]΃0- GRռܘĽLAh{s{(XcAñP-$[$s>E N-bpT2X($drXw ީ=Gk]zMluDx'7PcLZeDUSbs2{v) e+p| (oxzZA ֳ'E8-yt_O V!P^%3a2myngDfn$qȺjو>uH-7K\%e\ +J_F]+x)+902T=.'3%ͽPR< dJ?I@&KZA谏!c=RO*iPН<8.0Ӥ_I,a]l:0gRuR~۶qbr穳&C ?fFTz0s`vڨsE-3 QPr*HC_i_$'#GjJ 8n Ywp?ߑ>_ ᆬn/`nQI ;:rsdpnm.N1e\zcXB@* "!,VB4xg EugwE A\PQ6aL/aR9+fڀ.Bx[^*̻=8a:r?Q! ,('ݓeaRZx?jύO% b^o@֕u~(ω꟟rFF<?JFUaECs;/lYGDR23d3Y|;md&(b&ҴscUjو}jt5M䔼&$ߞ !8 ً3/7ʚ }+>C~ .Z=5z˨/RRzMY:Wt67H-\ijʍSPၼ`Ĭ\=-42GDܸ09 ~1#Ȓg?l v$IjC>儈鲻 '31, ]x[HM&&3*TqpT;}p$ʦEĽyM D`8ρ.N:.Cx% I0V02Cg坮gYZsgi-xp/xpc.ko.xz000064400000060444147562761670007575 0ustar007zXZִF!t/|`]?Eh=ڜ.+̭.pg1j餸d/ "4l Yʃ{7},Ew m %Ze2[+HwWZRWTF1As".v ^汀U,8MZGE ,6Lay fQ=0˓ ;o'Оs")1xE- ` g[Ֆ"`4AlQ !sD= 9vB(%zK5ɯ{i=aj &J1nHo28pC!)\i%HĘkl0wYD~@%>ea k"g$][* @t}cݸo?AcsfvC(N<(HF[=%д{R@;`1ɞ6OQ ͠`Evڵ߄9CM8, a% }d6,C TE9i@*ǐX;|7Gn{UچA(%j/ѿk5өg!WjOݱ'wUH=@2rk21+%x/W0ں_[$:6-NVU<|ӻ7^g$o-tH 3bH{nZ7Up>X8(yGWjs_:7FU2>MŻ{> K|^?*:h}!{a@ *=jŝse"Ǡ?'/FQ4DHg +w#r:7IOZTNꐛ>"|^m6$HSxiB]s5˿y:z)MZD羷}(1xC:^(=I\\E1;]Cuѱ_,YK^-{*o܈6=nGMXşÇ`iVd`ˮ*$9Z!*7Ե·G1p亝$2YO&'C8*BEo#ʅB8e=j9l:kB)+wcgb FcQK{"r1u;1LU&߮jez3|~_i-b˰^C+jQlv 2$% Ӑ3QW5ӕX#<a0nk[XERA ù0bp-bu8WE=nT'+-.t-\Lm7aYm=](d ʴ:h/U>l&h0]ea"7`Yq*cÐ̬;P H*dĪ&)F"צ""7eTٜXI &SÿZϲ?2IN,x/0IH@h3,Qm_⹬vV콺kG'MpFg f#E>² uT6w7]6Ss D*W@T/^ۓ/ߡO2uɨgY0TTzuuZ3͞\7 7f}29Èy!Os5Ķ]70C )|8p]N"SQjEM GG-h)M-W՟s#'"uAe7ZcM[EX;jeQEі2M9xA,9;I+S( c.Jyk+F/ٿD)+nsSG(a`f&|=8-뎓1)Qюǜ) eYEJHM rDږ|>$'r$LI8ԗ(Ȩd{>IΦPϝ[JBe|fDEȀ(ܮXQlu Va^ʾ&1]fo<}QE脱h[KiNjX輯Ev#E2(+qPh{wӏ-T2x c&x_^/& 2.yי{8AfP9͓*hR(ShHŤ VwOVhihBW-ucw]hRWƄpv{OK. o*vxM4TcRcѠOw0T3(ۚwmƄ#LQ 0g38'bpM:r ^ŰK؝|v'$ -T=*dί*j!YZō?wً=OM0^%yW,#g;T(Qq/U14-rHG&bxÃ!igf_` !ZO7"v&Tg ,Wљێ>;z? 6//r;ڗ|\@k.m9UeZU;eĈ%8GB1 ¢1wiI$o݃CL#EhŠei2r.MΝ"N}aczے|\% ϿOYo2O`m@ &iF!ַE<.ILbK =b+&`.kC ?U6&qX\HЍ0M2ry ;E GQr)aQ.K^oaJ]*0 `5_`2˷!vD5L}dS+_4sf,6;QMǺAju߮CN(Z ]/ܿI5(LV\Z bnP%]Ð|l-T*\*&OcKU [m@35%'6;Q!X3-!mLe8;`GJq|$(L~mfqWsK$1aSOget~fiu3આUc4uhq&*?m Bo7İg<AuH*ߍqoQCZy\r&$V\#zu#[z,3fe!%){slۄz?n lN~޹:պq76D5Q/Uߑ$lUf ȃ6cSzѹf`򅪩hi \zRuA8upj61Wz\kMRC38I2? 4, 2ey9+.$[BK݌ >!BJ:[#!4ˏ&k.ѴGؕﲓ&+P ;"Iػ<a/hVdܧnGU:Q&=&lRomhl!UVܽ;Ev 2C7҉RQL!9`9AOj DC&cm }rlVNYCDZUJi?Kluﶘ<N\Iw`L tzʘlFqa{ޥZŌ2c!Y4Q3o"Nqc2VV^"=QҖd23y8L76<ƴW0m){dqsc$8YL(r*Y ޞVSgMaEKJDĖ6rL7҂p1:FR]W8yЊqe* -qݸJq)iu>w36/Owd_{l4ˡ68e{\v~3QH QW6\#&ex k%J.!<7o?&. r9L" Ra i{/"SM:Tة`>1}t]*և\c̖ Q.~z6dY:|nD/!=+kZC(UerESdfIuX w6ip>tjky<+B- NsWbyR]7ծc[6$#z;bem)h6A-ꌩSytqq=Y>>W?1rrJ:rJzj仇Maڌ=>|TNԇFYK/a#y9 )ykfZR6/)AׄQ0L#d<*3n.U|Rcss2tm%-\gعXYdR0I)s>֢ Ϯ6V=`Խfƅ298oU; 2hP'a49ĭq4BO{ӎ/W+6Fx́v=]J*MK_9ȿ023PcrpwEjigDgrlѢj$ؐg7%Ո_̍0>InaCYJMp j)*>~nIt[o;-/Yi ߭@Ʈ_>u>@B`*4͢<ɖ*?Uݤ;zAYcѝ:(Y>D X/YGillљ1h#o%Gz!kE. Ǜ^@aQ|<=JNr{8a. ,cIyiRX2 g'M<7k0zsK֍HLWchWpa%}BW;iɸ9zVE!JAlCp)JL4M\Q1M`h*5nCgR"cPr7 ^q6g$ƞ,91z:ISruVsĮ0$"Dfwސg:m~ܹBٞ|~kJfnL}P.{4ko\JH zt lD Ѣt?^xl c*[j'ýou9e :~ZQ/WjjDhyzsP[&܇]s\JE֤jm]͸err:j׊$|)f+FhU!|A1{[<l=pYF47 0u42/Aָ`ҽr.@z#c~wFZ C\p&YA4n{1pq\@v/c'-#v+/x3~g=ͬMLAF@.P^6('8aS{ymJHJƬ15#ugK% Gg鼻?W3djd|= ϯ6G#,(#MLSZ<Ӵ^/v8Ҩ*y#pWp>/w34`p= N/a0! ks=Sf@A6`Y}]lEr͹.@ǒeZQ0: E?r±+G:;-ZںlԌN<$FcǰQW !,>޿_AL<729Pޏ=^ fʚ;|!b(~ɘUP%T:FԶfA0?f,WZkR BzFz__3y.65y_5VwXMDF+nn/X.٩Fkv`:^ITOK^9&Y яmqђmF/j&ғkhE Dō~WuGŒ7`2H}< )Rz\BrTécA=Pfb3]zjzُ4HvY=Jf5kH,8:# (ێ Cϟgrj̽R.M6MbF6Ho5f_{RFrΡ5YWJud+Y$]m;?YY3§2-x49/| HmC1%% }xI}?(0:ΛͿGWHM[J#mE;NZVL*` P fE%0pvaɭ'U6?7%Yn MId;s~<Ғј6syUI]xj8c.j`@}6975JJARXv./XRuf;vk(1Z`xMmOH_HHZ8}E3 !S,d@Fq4/m`X %yuw.xbr-i6*>bvr>Cfr uʒn1AKڿ<,k %4G6GK~>)[o"}( \ ~qxʏ*_ sY 59 Z&#_X O" hW2X\1,F} 8|e |njR]@B Vt7)k{=-8U/5) A4 o-zf5 6kh2.Yad섶|.ʸ\GދoA *\*':ҧedg )5ڙ!Z+~jm=SIҐ T9)pѓ`2M[zV#=߀;N+& 1/H!e6 <6nc6 {_|< n_:)YJb7pX9|JcR9+$P, dAL s"[yP l&kd;KW_1&xظl+% DVUHM K!Ya/lIQLv}U8-tUMB[]N6"Gn(4Ц#@}L;~)֬')p=+džй9Ǽ>/=Kuuh#& z8I>楠Vj*)m>tx܆~ތՐvِyN`sR g/k~]_5}5 Iy3RivGǵ``3554(t\M#UWy( ǝ Y"լ{C|E*nJ.ZU,)0?T0\ "ܺI!;˼! qY Mn?c7L8\XG˜bΕ2G/v _6 bpˈD2NILtB2vV]O~'2#;ƞHΕbr(+iHo]E e64Ug6&U-81"ip9g(<2.x \FiWEcHad7(j 97;֧f}(CZQn$m3rUߡg3?rxgƠVNFgwղ-L1Yp:sCĠΩa I s`=o&C,ծ c|f&3BSˠbh! }>!WMP9p.ڟ|E:B7g2|ť[UJEz^sE-ñ-1.68]@i4C⮣5L`LR4]3l `_9٠qe(O 0VJj209!ӂ&(cyek|. :T#%\ʃmO*Itޅ2ǰum^s8'i$(ݩiX ;Y]Y sͶnCl>?O_glϵ@LG]2KܡU[NtǍUnR\\,2v .c4;M[u9dʵu?Wu( Fo[6MfP\2j& /4@B'OTg5`촶EK_ﵹsCp΂i΃io 7`柮t1;0oX3ބyKc/FawH п 1\Q:R=O#wskű=@ -_ Yz$`g uݥ8UR+ʸݷwO9|V"[;< rJLSM,RN8G#R+U 7Xq'f@&4RWZg|' (uDVQ-䓁 RΘt6'@ Э)+$+Y6"Q|RXYۨ9QrrAv.ø}$39HM,zfY2cɌAϰ6kj6b٫C.R OIl:E7齶\^ipxiwXŽn1ЉB$GYG|OL{x ˩{ЋSz@3T@#Q_yvu%{Kٟ,XFS_JOBt] *-i &q cM,P#9UJX2̳_Am ȀH8d9 9m>S[25^9pEn?>YbCXHpyQu+wEo08am:l@~t(] /l3 ςtlڛzOA.ܬ |O` WtWPw@ TY'N F9 kQ@Nނ"S(˂UˏᜄY|ㇼUコ֯5PILCk2-9/VCmd?ӫ&30P0;ƙ> %($,mj5lF7u1t˟[K:Gj25w_[H-6|\y̲mtL'5,dK!7C(Drnp/aXK7}mߑi.R;S a3cZXH4m46SQeki{T1jV59ǢVui{Z!+"epA׭V3@5gW$M\\qK$ҍ lWl. d$ezg0$hhWY㫗ԋy$ct:'oS|zы4fj5▢:D'^letBfm|U VSQIZ,wtjh Q6Ìl,^07B(m\NF0;"1<] 2n4j(QȮdxߝ'GME"Nlzv#*MlqO.*܀JC9ҶTcprSӆ[l<#_~ڒkBn93d,QD"!zIxW"ÝdmV!P,pa\ koX0R فe\)(*;.2|†+[Jkc-\Hl~c`3KV6hLɀ=a9 (_p9OQeHJEM%>d) <]bى!5.zʛѴT̖؀-qHV9G͚ެp~"* P鞛@>qL;0 q3u0lo;C)٠-NPI!lWkhwK \tǦ7J9= !;=]_lxe.WM,~uѽf}UVdGkf` 3m#QVziNQ6o^6Yq넸1 Mr&̗&.~%J>W<0D7t<sk6c "<0lU?_CƬ])j6j),/B֧$ o~~&(&nZ킦z*,u<ۉOqf:(J*&d .@{dn/= U&LKZ)^ *COtWU {"V=ضl p"T]>ڔ#^l" A(_)̌?4ItS>^'} dBxͼ-YG]< ǰn Nݩ^@m?F-\?kT\`bCܣ$Cy:֣8({ wn1iQr ×gPhq#3Q۠uD/#@WLQ-t.]U ; T 7kyܙqJ]\t`dR} enb/ ӳIS_Aꛖ4^eD6. r+6^H18Q%{8F`Ɂ56{?iӤ(QNd?\r"'(<eUN&j>';KCϢE/d_ϫb!"@2,"w.5OӞ͚ӞѭG f v2Jwh)Hlcra-D=[x'@B7N91sy@Eo@vpma%^n:qbjXHAJBST(th=_> QR߲eXuM'yت@#Z0DgEͶ->Vw^F#At7EvķxTp%f0PM8}Ӈd׸B0nx7Ka DV{ (60αX@NPL,q#N#9mז?!V8G։hEXAe8[ٟ]b8JYz#?+-~D"G'BYis=qgW6gjÛ< r Zx{Z)ɐ}% 4D̚0z%zZp*H]㺨%f!k%A6c|4ϧSn;Ia/E;y"5xhgb14 *Qi`Sad,!VdrAvMOxHU< UY ]qV.O&3aluZLJg->`ћ=cÞuZ];/vxj*o8-&Dcea )%/׼{qN.G h(օ J0yw _/xG"iVdSTm؋0-Uގpu2:K3PWv{5 AMO{UcС o9ZXX| p.w *Q%#C$@뎛/K3%)CQe=ʙc&LW܊p8u0;`|d696A5?6 ng5.nပFJw >R0} P+zՓIN }SM$@7MpԴjQLƕRX_=sI2Q,r\ ۛ(O_0J@|ArtTM- 󄜿M[S[l=hU!i욊 ;~]dr+A"L4IvWPǻz Ϳh.?WKjKd dΚkMwȤ75.#}z NOHRoYO U!'>k3BM( Vx.{pfT,==k[ish`lk^?ax}p߶bڙ8cȴ+Є.?W=$s- ZHKISm5A L-afq2v11ZrVS>+&6kM' ^ݙ(zP! ; wRM5\8'Nak8~o< E&Ɔ36c{1uz(:`SzW[_m"A[ݶ^FD~E"T+]b0XzrDH[vGus4VI}M>?6HcuΔ'g2+0yχ&3 t}QHb,OGNdZO+Ls!G} \M`Cs΂ȥ$R-2'wܐ+"aaW-,:@.#CjMb?,Hꈋ|:tquE(cC*3]= X`nZ}Qض55*Sիr1**t1n'&G#5 wxGFGĠ^D_^\dB"VL[f5K*r'CLc`9˪l`4< rZU?} $|qwD5n^pHdWHI3'C9LjnIcUf;tp gє]X)$9z= Iukoό~"Zü=Qn|V [VD^B([ie^ANO}[Kƥ-,GTdU(Y3p=aBhMrރajӬtE*[#x|jcR(3g S4_Z̓_XL UHv*z ͶIPKzTlHԳRiYMx%}`5u+I<]*ERc@RaZ7IT9¢F* [eLQ'HApʮܱ"{9E Z6f]5k.MVIOc'h~goM ҟ,wisXԤ>+s|y`Y!jb)v;qB;p{ )!hĽqVkRQ^[1 ^q#m0mٖ0pΝaLQ.]vFTAN+m(8_ NiQ@>ekx2J%B&#>$ R 4(U<++\X2i3(P &M!C账:H񓶳|yT Kf1SKŵXKLE"\jbLwå)90P#jIX?Z|L; BꋱYqM]}Zr~TsA㲌}Q@{:qZTAޫx xӒmAZ]^BÍx+d|W?ԍum{T?\@݅Ӛ3C3N|gAR(0`"0LϮd?Ε먘m#.5r֙ Fa u<wތ~ywgFdKY"-'*E 0YmYA6ʣJƆun&'o"-Xs4̻bkXg^xS p PGa`@"cU<6eD>\bÛIwg#}9g$ߝRC!la9ybt^<,՟!æ]AI}eˤb(yoJ]ER\rx 1,^`ctx԰9~v5Rw @dy^X9~!V dK0؀>m Sskac-2c'3+}y;>gClRִyːx(z.",;H<ݩ~3c0ۻX_l @4([A^g?6a#JV0O n7D?z:A |BsQzcm{?''nWK"MɱA.]%c;b@ )ȵ#3~p7'?GpAW )~H'onr|ĻF0Oa4hÞ* ?TA_*Uxĉ$Wˉ㒜~H(sBr 4e!WB6Z yNg8K:莹M7CxKNkBݧE"V^J{zN Y ^T Jy\ ݭ}aiFJp@<<-Fh|ޠUA)yBfܻ.v,BylJg'q),Nы$5qOb.$; ˏ<1mݬ]ro /цˊGe /0e/sX ݇9K~ Ol{v.Hn ej;x^Z2*#hASX zPql9=IM4O͍ZYjr>kN,O^og$ 6lOaBf{x[nlD? 25 k~8V6p7ώ8UlaPɗNV㳝"+~ ?Y:4)IXHA(,;n1U{bC.<€%x1p%k|ʿ>G !Cl8z u-sA`3NEg។[ 8p7>A`U y*! `ؙ"/d-[էIvp،ϫ5ZYL"~Ԁ{XT!·*6؂vBHԽ<%bSCQF`<k"|JJG9lZA1yQaA@D#u tMAaqJֻz Nn/ifSS-kY8uA֛etȄTh 5R+lh)XMPRǃA~;%[MHrGK)k4b9{WCҲY]7I$1'DWs,:K^YFN+i׻nje XT!a¾9 eo8Z3b T<7K&JwjWxpb81SU.(PLv}4XE ) hVIsw4Z)C}! ?sC'5hU\?V%珿 36bMɳ,WёLJ,]55kR[tJz6i#A'^}Xp4{TO3~(% "LЩ3/cډu?K-*_]#o9U mcm3]ױp(^{@D:gCz-KT2ؔ2¡9c}Cq??EZbdzT-g'TPVfh(]Yj€d9edhlP?|PmdU^&چ~ovgLjJl<wS&A`l5SQ.S`RY+Et%@tEn<I Q]C &1jř.|6H Pi `97< VLxV+WYh7PH"3& P3Dȷ] Y bmkmB}Hfї h~ޣaM];< hH:`0VTTL1#ŬĈBcݤs[Ci`j\|5_3~V[EPZqA=5q˚Š?|XL!ָhll2n}*ӵF W5G(EeyN)wCYv&]`TXoQؕ?CcޚuUУ\ luDb?`9>  =mhu)ˍAIN/JbÍr)YTW[&f#ey%vjCNw-$PtǀZMwZ"T[)J#wM4F$ʜEǠsnpt:BJYR-qbC]"XcGZ lGF a9FhM}9xP:4CPJy٣DSX2PVx6ߨ\i9z Og;I%&LC' \|I[6,f, lwUfc"bȌ -:l sdܩij@rnlp%OI=]Wة ˹jM."M? 6p >% cP,& _g8!B@3|*[ gYZsgi-xp/xpnet.ko.xz000064400000013450147562761670010134 0ustar007zXZִF!t/`]?Eh=ڜ.+xmBWe'By}hZ<-^s Ӧl$6&_ٻD$~ωT܇}^9":s%Me' ~V+I 呯~^멁Li&Ԩٜ9LNͫKBU1h?>뀤äub[cSֶc#~my[S߽hHYϕ|i)v iL@"&vA=Wv,"йz< ttx+]f>9Lv.o 䋝]5ii<l6Pq,95=K4:4Q@k" f 1R}]@_ѵr$9̅o5n4jr;4]][;jF\mWy:?m ʼ+eKZ1~xAr^65%$,1/uGldJ6*!ɯĈU ߩHWi\ϻ#vTp5wdmp]1g$gkiex:孹޻d'C|p;(QNTw! Џu$~et`j@dv;pkynhuHD l2a 7!sޱ0cWq.\l_ObxWS<OI5g:*Ȃ=˟4z: pvUbO2VJ^Ҵ:2cw!]gNEdjg&)lfP1ʀ ;&^=r%NkN_i}j-EAlk t!E=37-Hvܙ̀m)S:6] ]Wvb|ry;!_}]CjëDsr>lbOFb݊I. ڡ%s7{-Ut8NjY\u{[zJ)ՐcYTZ ײE7QW7ϔI1C=nibԝE7 Ec2oĕ F@q%bFzMr2|boR iSnҁF!ځe'wKI|!z6͑F4k)ٽo0ڐY3ѫTz.gT7K6ۤWQgnX%-L[lthFcg5yͽIq~!&8UFpkcn&^Oil.IBB}ĝE ,k  >B A=YԆ`1 7Fىq[m36xy+eĥS#n ?YI}T@cw ݟCl*CQ!Ék1k+ }M=܇S L]0d2,uiF q"͎mEPIu4ZМ%#@h*0=1^ ftڨ:16qT\V*5vk;Xg//_幱[R 酱J<]#)0g:BFd>AysԣxX&LAI﮿'> )9aY+ nBnіь&pNnX}΍ dQ ),+5VK2Ou uhF!e;Q76U't+jh u !bI'fPEIRTc%넍|hG2HTA>py|QVgOTnyF]W◼kJZ/&lgz;;:hZҞDbH($2 M".kX:]+R.(T̮|W.탧[BfF6pP~w;@Z gb>ᚻTfAخ7s_ۿiɃfsWQoL(i4 k Zz+>FI S$VĖv9:W h0q9GIJLxut$u8v}'j_o*n ^Pc䗡fa:谘*ܣ,_{ZN*㸬ڒ #RbbapXyP/߹A2el;O"\yp8#4R9R,C,6&q$7LD]ο Wbfl/IFP2As?>ʔíxJE[T3R)&68φ GGZt8V.~ 0X{rT fa-&(&\b+>M;d};$iҥGK]jB}(X8QTvȈJP#5+xNׄ ]#B]>CӄJlk(v̈́{8+ ״Facsma*O?8YyRA?v}ZGp.hMkfJ,A0Yu#s-nA=~ ܸ?=]*8rzzIWmMb,3DN%]/eQ8Mtʋ%WZ7jk_Fo{5LgeӊMm*Tq¦ihI̼d7f־{Qv ZǨ Ȅ^=~77ڼ,+G`@SQlL[7<Nx@?ItMEs=6q7%l%X3GA*X-5s1+ߥK8N9n9'f>{8 +! œa.:\'Lk69y"=;.Yؕ$j:< ]JbdKMO KoO[\གྷmzo"x{?($&)4GZoWyWx=E:^Ő)ŏ+k c eڈVC6yI}Eeϥ움\mYfVS3\҄p}54P8կ^ eH .ޚqLCګU=7Z~459c3Q[;i%e@4`M')zK0宄 ubWe?sbTW#bΆ"\~2Qt7lC1zS;OG(JBytزDU kzSm ej QaX=iH'TE@z*~cJ<]刋ˠ(Wd%1HfrӚS25[J6Cq ѳmU$Eh tb)H וdaGYrfE 2m  l//H)Oʹ?(V*4eNPL8x6ْ(-w=q}C7r}$q䯪b|TQVa,B8..ol4RþGN]b҇+>s²+UrkBߌ̡MsQk[nBy9D~qq;׸`4`֏\`Q1*ܜU"|tAYG8]+3B/ҹc"#d>Z a]SqAc o6)l=xʼOcI[4dd[ZZBǬ0([zr;h6a Zh 5!q22J,ދe1tY. YD0yLWlZ;_]:z_XsG ?CvkBf'l JC/rȭWe:X3񾂖38d%g: ,W7.gYZsgi-xp/xp.ko.xz000064400000010754147562761670007431 0ustar007zXZִF!t/N]?Eh=ڜ.+ɐ8^ s)mD;AP/_(fhX&Zhuy̆$kZ\,XHu;ܭ8lI cY|Ϊ8(W}\d|o% 6q% %7ASTyFg e<#[N=}&-ϙXtuw Ľ5y&tZmuS1榌{Qwf-72`{ڌEjWLY<.4 K.xwȪd=yd"fͤ/by-G)o8|$֮YI4hDb2Jm{mxT\,K*d1mpJ[e4袰1XH&z`Qub! Z#|V q\*J-t.T1=PH+/B訓uH z =^@srC3KQ:ʹmrwO}*@w9kB~Q*58_3 *IAf"Vx}d$ǠZ %fjh8BqM'홒.NKӸM$}6;Ë4d`yZ6*ߝjFK<,Wr@4z ~ں[)㠵r d rrd%u7'#/L%'D5g@4iX8z/×6%"w@mp3Dߖ.N2g~oTgQy.Խ̗{!9J;a@Is 6s=A1{Ks5Q7fa|x?:?3{V:FkV`1Ga$>wQ_l*zeTT!iZtڜ'xIlG6!Vٺ|lv1 dOeuSmH 0ԭSvĉe ZR8G(u.&ҴâL?v{9oz2\BJW>yk'ح0sܪ߿pX~!KTM 'n3-]ND ~uzwmw$QvXi,EpOD7D:&qZ_9;,3r4mv儣+K.f:|tGm(̿,b˪ruMM7ZJuyf'&oȟ\VvsFFʅ``wF 0j{,˜}RTv=_mYWTo'e,JϪ["Ǿ^BG|ff0)8ݬ*w?V8q~7Jzz?3wvX,6e 9h+S-gA!`bh1͛tgEz-0}hpQn 2fB7B{T~E)AT[CDKOF߰p T@maoNnؚ̩hT1L8Pr)$T.L%h?e (%.*`dfZT5a]Ǹ}N<^uGDr_#6ЦA~}]Q?!.R&m`* yb7iI8&h4P˻Rf;F3$:vUǟq$P0v]҄PԍKJbCuK龓(>oJY^/Nư'^hT#{蓾c m}l;DBk'`Y> J~6Ȩ!Bvp#yVRVX\iesT|FZ_:aJ"<~Ef"wF 2M;Tz`'G'+]R6E4E>xgy;Q l|: `?ψEKZ#ߧ?6_WlQΈ_xgp0q.15y#fkpaV@d:0ժY'E",괜@v7 M# xyk?:6\1uC8*Y%&" ^{TKa-hZ)%S$Sa:LV]&aO1\+\;6f900֮n~*5%Zχ&)ө3T?8_H{pP/lBq]iYJe>^MDy'nag`1MKQƨn$l 4{ƈȟxYxdAEьd)\\I9`xoUrhsp9ɲ:.O{:lIUש.)RѢG-@`QWCe/=M4nLg= ^txa:^+ ^@ uoHw0mp# Qh_⎧FJR18*~ δ^vk `_DJ`I~5eĻ">v$V(p@Z%cʘzW{(V[PJ !x-^)x:\KUDWZ0}+>v,Q}M6=GŹq-)Ǝ6gׯ3uk~A8\sy#:gYZtifm_7xx1.ko.xz000064400000011624147562761670007416 0ustar007zXZִF!t/G\T]?Eh=ڜ.+̌G4oqiYw7Oi{f`Φ߰T?t&s 0F}s(DM2zj5phc4^WgVl (_ ôWjNᛢQL;M[I1(mSlN֎q54{=;*nwVP"_v\4:69πZWS'>A 􆗪6ƪº8I5 h&fۮT42AzG?GktWu2xsWh3gԣR,,;Y8Tqbb9[ &CYK k?}3*4Dhn0(JY߃:/ "~쁟"c/UVbv,7٬-=_hR.!r$pyU,qՓko{xZ2;'p\<ߥS'[ޯ JffT_L[KŸqt:˥8?`I'תÐ/ ٦CMIY=HoroKa:ڟHtn(Xr^;!Wp&LU.GMT읪ٓ7!M [k=3;\tL#&6s-ӮT3|Wu+sIY<..-,S\N2c"=2^`gVF ?qnl2m4yHOlcF0sS6:c @&^yݗd ?N LUKۧT6h5G֘*i~kR{,3wN SBCys"r:eޙ؃*˵r8ۛ-vDfj| o6*܃ MBҩ'2KW.B8 g_M98~R֩8~PH+]6lO(yZ[+4xH>ڌW 7௄jd1b)sz`:1S[M^Hބ[nQl$r\i FmKkD֔LeϪ_NsKOKrnnұMHV$s=ke1O8 ߊK\=PudhPۤQeWbWEFoRhCx- b|`Y,FȜ&O[LFi)Fh,is y #T|_WռU]Q`Jqm iUEh7K ng8q!9̴WֿVPL!o&Z% W_g! 3|$dj9fx؇`aӳ@D+ZzѺZw_q]^ bJXtkW[j7ft[fɌx/XE>K`a/`!`e oHek-Wv̯OVSv1Xʾ}m qyQݑ+-o`Ϊh1!7w c(H0U lr-MV~ kOEۦmM EB`eRCIFVxzb0p|MP3'00"|) L߽]e3!l 0Ps*zL|VCP{bU͗~oeuН1@xl@Q0M*JBL Ŗ(ثj[4eZɓ}cá;}u#0TY G :!Ctr 76Ce)2B#3ӇotI|B]XLGL-,u zp J iRǔ)9jN\xzY֚m?`0^zX ,_O!]^e!&&ݎqȾgYZtifm_core.ko.xz000064400000011460147562761670007535 0ustar007zXZִF!t/Q]?Eh=ڜ.+ε>HJiUmxH^qh6H՚ rcik+$ulɴxoy׆al>rrJYhl"EYihKJ)0_~#~ @ DX/KYm`{f!ajTiD-m%T2|gnvצWXeF&SٲЅP!f MUb NL*_=*)j76ca0>?QgO_Wv-B@׾~u6ARV5;% ZW铌 '1TMї]zDO <ۛ>.#:E'[7wy?16;xŠx |F.A[Zwz-:X|i[0 ty(dȲ! 1,&}6ҫ63m1 ( | c`ɍ$Jğma T5-襠 P&]3|Cn`Jzac銆{^Ea%³1s}+2( vfP#aWZ;8s`#i(x=zzw)U]HGZSaqRm^Ո"l"`GR7ޭ&M*;Z^c3iVvF0|1>,q+ Q2D| M t$CRybO}k WB2;&˼*ɳA;όv"W[${lC- -vpD_rKʔf"rH8+͙}\77 ѓOj> Eg:(SgH_o6Yy;Jxi^ ǥvJZUtC又M:."(07$ݍ{Y|U,abRY`D`/Vf(]Ǹ2 ODY17#)X&(7qOo[󳽜5t) B}MA<+p甚@OY ]y٢ mwB7$M0$/ZBHB]K-o9jCt 2)x.+ q5ɴky@?d+tWClQNGs^w$\R{Ax^ Z,3v5^{Q}z ޷"Ԣ+<_m_L7&:D\MK ʛb`cs^-vI!=$i 1\ M[P wۯtJ3ڶ=ٔM?1m3~~*-o.1d%ܔdb9LV4[hXP Sxμ]mwzΔlW7|{BrJLg~+q7{r;Hk%f CRZ ?MeS4党gɋj`>qLv|h騦 bIgP>HD ?rV Þ簘L`[}r>yq>6LxŎ?a@7&<(\63~m%.&Ghٺã37 x=U [{0f_54`q8rui Ӝ_ X7dh@ڃ* @,w5AGt~-_ _~yZBfj L'JIR(5[ y׬h{zyuCR{FyUu1x,Zb\RgTe|8?糓:KB6v,Nu2{f뭯|JFE4-su675<2o+u y T=nwU1E1\s,*V,\F2(ꈫЀ_C{l8ja8{>exz͜^4iyҽ Ri* Mt0$09>8 ʿJ(>pnWͳIW=4z'y~Ӕ)T;=IJ] +239`vVLx!s̊_D{lӊYz} N*Pnt-a2S#uYPY, $| ΒkXA `-(Q!(TwBmюC`E+D'⛮2C%}NTv|8|DMw]fw B)£ՠO߅> ZYdjI"zFo k5[읾1UVqS$گRp84jqleb <)^4nYWF3gǨ~tFh.Gvj ]Eč5T }ܗ@{Rc&Տ2pK4L[ғ.JĎ\lo0917U bL"q+)ZG9&z i.J28rhS TJE:Qc6;͠ti7!Ce8PvO妑jtiqÁ@VCjeDѭU ~lF-TzKF1+~p|ӄG^620c裐'ٸM>~\hȁ3Ir/h`o9;6%`y$1N1S7N lD+|7LQD6 &y9P \4bْxȽe G2r}qu^=*x<)x6;)"Fq8a1:yYL9e*s-y`Q}o-/A}6)ɴu[ff(aBaT5:6W.;b-:\ƴd)g*OO?ʻnS?$qR"Ft`iڢDcе]>bjuۉ#+&WF3}%& Oyx ~knlE-%.̎r!lAAQC,eom x^&`${09./ӫϿ<,[$Kˡ$*RHpK7lI`zy2NS`Ϻk\Dov?!օ~*{U${d|RRbk ?o=AZ-y'N|e7ou杯 5G^;je{[D?雱hkU@bQObOS鋪iڅ_WO]˦ @(5K4/<"_J䆳oBIZ7M +<<.Ʉ'ňgՎwP8 ͪ鯹TOCZ)@$&^w $5σҪ$ )Drj+, ڭUR!!˳IӍTQJ@Om)iEhTO,Vò%Ǖ~7bu.S&qF#z얶.CZ]8#:Lya?V49К8Oef*7e?8pe;֩F}6\&B!GE x*UYfKCz ݜVř1*&Pmrӏl\U;4ʻ1yϢg2ָ`]c>.: 'Gw~4TBYBIل+T">SK|C/l]qetPV턂 y?Qp浱"D/֋/Lϊy9+n7YYEVQ H)4C*Gߛ!)ltvjkշ[fu@/Lթj.鍡h=!Je tvȑ<h~I X}";H̓je! ? &:m> TM1AMŞ}>^Њ-|F֒}_xu J >ksNA_^au*d KSrVgeڝSA}$ɚkR;."F=j!V2+{08lKZ~{W(TOʏ*J'R03:6)h٢p\!hb]-6V`*W/}fk&"3)'[M}QN_\ةc<]л5~\ׯ)[5$d&*>M-?I%&#]KM>qhzLX:.~ӧ>]nkiU{)^RmRp6^qatf&үIiuq˱sNa,K1( Ӎ eK7T_LIYOfW~\AD0iʒ5jb{ |a3ܝB"uM^D&hd9gYZmei/mei.ko.xz000064400000106214147562761670007114 0ustar007zXZִF!t/▌J]?Eh=ڜ.++q -#{LG!taR_rJޚ9) i6GD-FZ1aRu;b``SP٨[Ͼf =E;L? r`/VJ7P_ c l B2CCV 4%aQxhZoc~F+62HL/eٖ^=(b~ s/uI8kq3Mu˷SVP/ 0 hFCd4rjtR U\ͦWԲoXd6>90(ЧK؜s aIQo~uL߄T6mzoOݛ}0| ]hI&gGdU:vzb$;1ِӊ[<`;e%2h3!<_Nu0 Bdۏ*OtFx1 H&"N3' YXw}rq5s^pIP ̛-p !Azu-ק˜U<5`{ۧ \\ቦ1BJ~vyvGx>ms9;L/d_MJ&kKr>|l E!<&oá ehV615\GplUWio@C't9CCvq7R&yqkYbQ\UqѮFC8u"K! .6sj0?gi1ҫW<~QO!pC ^bS8t"b`};HYNY@=mq\/*3 j'Ttp(ˤxɥ/%sj([O!ᠼ<_\λ^( ҵ3#T횰dʶX35^1Y[W /a3^ X{L^!F'[=&:$60т~H&j Rzjsz7LRUi; HSbr=~wu|l-歄SnňѦ/Ii2"HI'G"<Z $VQ6[σSXnΪtjz&He3@Z0ir?^ū*Ḁ@md?@o@U $EIۃpIQ##[PV3](,3njJFwHi+sszATo v2}cJNi㷹نjxM|CLmcqr&Ȟ v|0GBJ/1QdyuŇlO}5^=O.y{yE c+0~[2B9rIƍk]X/,RhV=gϹRVO'W|yҰҦZNḒDONG@Ff6ry}ͮ6n3zj*Ԑ-dܧAS,\XƽDftH xPѽ;<@>U$c0L"/s=6׵ATY4t~ 7xB8j&hJ? Ðb{L9Kʻ=KJ械 |$qI H.:9K4 j,= 2upc vLZʵu!M: `Hbx ^[-]k- >tlۛ8?2t {'5LI3/{b>@Kurr(B}^l8`,qo: 0}XTػQ8 }*HG'-,X<2_ [Y C\XtQ[`%8EV #Zu4Z/rbkzosF sDd|MWs;{+Ls&&.iEwe ܰ0ܥ\:~"OvK0j">[z f;ҁ}?lo|5 }%%N M߽T g'3|~֌H78RGRFABq"SbOd8cTZi |w-奇^_WX.gkBDZȤhp13+O1=2 )hx6D},GHzV~W?^$*>J[HiMOmO CPA= fDZWH6"wEe7N,An8g:*G}؄$w As!NEl6:E~(u49 3Anw@ŞcZF|Tzz_r0: bK?wfil~d4κ;͹CСns+#E׭PGS\ĥ@9E~ͻrfB` ^ $5% $( wKn;d <U5-;}~CT^ma&N%,_V"i,{-$~93rpa`"4wP %;Bo,(b]mڐ?SeɁ,Ly%o==찪&8$r59R95 V݀?h}kTh6tH LLUաh. [1[.ے)5bj?+瓎gg^Tu rŮ.,]IR!.Rk x85}N#`ДN=ImBłp qBrLj,lVRGyI3aG{:GYc׃QPL'I&PEw'7QuDjf2-lB ?``j??-Dv.SP9lo)\Q)ݐ=%d ]:WIS/4Zkx2$2B2pq$i޿jPrUV#ƌ}XEyeR_w\8 I1L^=Z2[\v!4x-x4v!qL!/BiRtr7(9R8Z[nyi;$jOf3EN=] 4eyL;Vh$aiϖpĶlNV4DgL6UPBpLyMI򝰙C7]5#BV'b^%D=:ngVJR uLUW=> vvjAbYoj\eEŮsF*u)2?SM'K L6rƂ2lƾ斩(X Zy5U:J/!q&3W쟒&F4^*hܑ/^3BG'$&qI< VQ}$'VzB=5e١yTK C]:rC.yLoyuwL|:M5XGMK2> |Y~<Ħl|o/h/(?K7_|ERF]qF-f1F2mUI}aPb{j[h'5(06Ni-~/i쾬'PMJ!F6{ӴGr㸺vZuI)pgÄZ*rZx:袸V~FpH:+>2k3=KĶqIG(fUHVԜٍNnlN 9ڙT%fUT1q4F:qC S .IDKO:/'LּrC6@_;:$]9oO*0RL<*f w5ypt iA -F#ٱyB+%wZxx}Qi/#KFx /8$A϶.ue #ӉIQ֩(2Br{I楷멸 Ϧׂ[ H q{RE<[og8{}\]S@hzgѸ~+B~s@;\KO$%]zvXlS>e [(ճ~!wTW3bib77ۊs` E1tpA35pVFZ-r>č4> [4l_pqY }hrYFA uݖ^'lO$`Nԥ DPxr=۹gb*__ {ЭV joE $w(pC¡6dMQeG1f!W?MJH"`?tXi\:ITŦr z f\s]Lrs; sPj|mɃ-h`뒞 ׯ̑y";^ PdR'5~MNuCN9zUM6OAkYS`k|/=2E9Qwj ̗.ko>? zwXx' F;Y?,:x zz#1*Ox1)|CC,Z,)u; V+Ө 6Gz Z|:640zeHstP,enl3a$yL[Rpg<&iEk|4=}X:${5Y+kTC 9O[[IU I̛qr,rPvb퇡)3b(v728+1adhM8q"UV0" Z#[}ctK`וcIۗk %x_wNp 1}_\[g˪݋@#}[VvH7ϔCZR2Ix>"" Qf{ rf>)4N ]3S2Egh0Wzj%͉=+Zbܞe'A'LqJiZ#}־(8•X% ~2&ئηV#, S)!p#م4wGY׆+/~$qZvHa9P;@\̾lUS{!cIMh*b8Iq5fJ$c/V;4V.0xn׶)}r,,NGQNXbUO$;8YAD}V6ZtKkNiwk_HQ6u+JY/مzV1fy`'4S|A.b5j.0,&00e;94$!K2=J}Dp 2] :D$BO^+) ElJHN aTiOZ^^ +ϱsNO2G4k:ꢰD:+}Vȓ+ 6܍w+f6zT,7+| ˼aYm2K *X+ɭS'ȓ!QGA+kI W(Sk-Vֆ4V_IHWHA\rDuTE(ZXP#wጦ:?k|"4oD\+j2@ߜAJwFrFPR=~MĮ|j|,KB^a<_͈DQ*vmt ݞA𫰬cLyD~w;CZ.~ SyOG#Lmy4 Q+ΉGnaXf5b1<3Mx)r4܃9[&T]7ks3岝3F:`Q睔tgn`{;lza5SA+!D߼ײĐݶ>0F^z4z+#u\&˷SgqOpAtV8DeC1Ϥɂъ-ru87T0Ri;D2_S-GȢ3HT"3#*-iފd>{ ގ ϫ`u̙εv,I& Iq~VW&m${Zљ];HT1+~1L2iv6 +]K7>uctGL_%;,^*ݟ1Ae| OB>H'޺3`qKHK?}gSj^y )=6Z1f1R %vD|;z_VG q\\emv6y^ &hBDMhU,CLZpUEnJI+u O5_{]Խ}WZ'VoXBA= -x`Y (QvmGYD7V$5FKZNPOUKZh wltuzIamjfaY1 ݋1 St򖹷qwQٸ\nA,{OKzS#WoH;Mn\K,Bx{%vYyM25v; c|,-lq6r٥h~yUY[fAFB;$M_ۼ &\ iiweR\/PvgKzNzE"/p=@^ӫѻ.c[C^Ӆ1gxuZ((tl/vx+NJ6t#Em&Y3BNwrLKolܦw#j`W^aR 1w 萠k1y2 Xl ~ v}ʟt'0Z;uރ}r>06Q'o5`?zV3IXS״uYpBnЯ'u7 \W2<9O~M@!qd+{ْ jq47Tgwz`|?i`P>)eQ ( l-I3Ssu8av`WM$Caj9I|tUFddIfi8q@XLhhtͪ롚fZ\ԇ>n:A)ZtuiZ6No(^TQ臩83i@Q B_B;[<ȼxӴ5 &sD'(ʬ/ vCgyV+'`~*-1d\P*kA-Pm-zCڡȪƛhux9yn@~./*{_SY7P}w*~Ovq$ypO1nw)&% Ka"GݲCT%sZ:lY O ʄRb飛JKb+ǪAA ^"@P UFP&ғSdmֆΙ4 AMPwzvQ,v8s*@CDS2֞EYt#ODި>pk#!g*b:]Pyd0VšQP:ym.:I}ks9gQŽ{ÎHT]@ATY$+n:PJampxB^!V:Lb {Fe$S 8oFJ9<Ҕc%VCf c(v>S~H$ԃ"AAA/=ZRkNYޟᚺx$ٳs{s`]]OӢ玧Q1&#yѶ'@U9?;0p]U#Sdnn})0I ~'mt`8 ?_>p|?n^&fYG=K٠.}M=2ίg:ahyq%A)5{, :=iw(MfF$tu#{rϫ.v88Qs2446> wO\6`Y8Fd 7 {vGpbSDrja6wl3^xf|D= 2O t%M[2)i Hu\̠=V$MVrNEL%R=g{ImSqQ e*u9fTCǬ^k-'kCbPxA ZEe@M:YE`ë"Tw;JYrٌH@7=Uzdf8U#JB#$6= ҩDM*.$oA4<\8gt,W٣m5!%NxqX\5dVV :g@óc64/+Au Y!GM4LRkf? }4 ʶUC理Řd>!gú_.viq[#C.c܀%Onʮ4ƙw72ޢueKȨtSrt S WZ-Z8hR2Cg5uh\iхoV+NL G1erdSih.!̗KOV-H.|<Ѳp d@_w}[05eIYjȟ[⿊u3cӪFaR V# w)# \0yf2\TR~a{t17xC6k rV̯ [c& (*qVtu{{Mֱiue|-?3V3}w5euP=9?S_؇E]m%MCE주Xd/k[ꔡ*h~5Xqe\#sw5Z#Ҫ'*˜}g¹"c]/ 9 )sGSʖkl2CXQ븬n J`v!+.׈|pt^mIJ(5Ҧ#[[9ئm:̴}SEvd7 cT!:|\FsIh*& 4VB4Apeѐinֈ/ǒ++E IY3a;2ƅtug*dEٟJJ`➊&n5lE!jӴo93<#qR3%l'Y>Cv" ~sg'&I,2&W6bƯ~E<`+ VF൭ZD.wzh )5V/[ڬFrN|$F(Ke?TgzD9ck臤j聛7wx,n}ɦn$EC&0QƁ1ql$`O@elN!jF9 0:~:j:h]Έ'x,:r "N::wQSajA!4R Mŏ4|_ނuR-ٞE'MsT ) A~՟=7S4/;"sg@aL,O 42@ŧg}$EWo{N~'j? Ba@!KHtוIێe>nldߔ1ܞ,yNlnqs,\mGvc %T#=R Q4Ԝ=)'MQWpu3O#M4Zlvy,a``]ǧZO>4O [ی)4= dKMY)$i9%k_G:\Y2(kbG]s 52]/1߁0~7}8:pC +qj8nc`?s~ET$U.ZM$]2"aCg^IXWVv",u=%B 3CYĮL~2q93ӂOt4k% bk=0pQֿo%]p-zn -} b*=Bך,A&F/a8_9ޔ_$hCQc4$#F}p;\3@~}"C(C97^p+Κ'].i R_*wAEyzYp9-q~:e3 ,}So7lvViwo8^X"{lb29FewI)ޫT_! $bҭBx9y ѽT'Xa3wWwA8!Y.NYq ic9NYRvn0u  (MC:Y5OGDyF0@P̱Z;fGwS33V"4P/uP ]f y5+fsEQڬ>"AcS8|#r'K5Ә8Se#}._}DfQdL.VRZ<>}1_õiM׍)a(&"}a3UBIi^ē=y ":*J@1s~&W<>uQwܪemMvp1й٠8VI;*IRX1s=*iv Xc<wn![Q(7~|>q6{TL==Pgf׍`7–f9LmgScze3 ~V:f^N'^2n!ƭN k}Syջ@Jq+<<_>b"Kk Sw8DYt0bRά&4>v b-w> j( YsSUR^c\:15q$ E|,{0[L(x7Q$> 6ՙ8Yr1ȓ$V3*ߤ}B^$wcC:*Z;x=x6S&-_>Nfz}}b~0P L#ڻ|aitu-6 E{!TWI=w,Wձ[{H~!lk<u_ }4dM|7vJ~ #nF2$fp'ueNUEH^=xiDifv;.$%gi`'[31Gջ$_7ƨ IC犽iWh 6,X*W1/~vSPTbn!`m,*o; OvHU<>"%!mM9{&[ЍQhS"ѨKK ӱzyLa1\!B{J[DU~8^):Ctk)2E`[bM9dzy,m۶`rx&es*=" zxJ:.g@?Y7/yRT f@ .\>pDr(>VY(}5fNF4=4smKF*`;&?:GsMȸ0UTn&xUNwYϟ"嘾?!; ؿΊRR'@<앖HK|4W)؛v T)ig0R4JRvXT6cK crcUR@ߺ>!#n@Ҿ#ҒrQwɵs@4n?mWd ~`M8?)#]v9<SX 7Z.FUI} sHs..`~j+E7QጳꔬojaIXZE`7 y_$Fy=CTk]5ERp+ b|EPQD v:8)h{kA=ORKh/G>K.b>_ TR,d9PV<0VDa~bI{>Vٰޯj%Me.ŷ%Z% ^L>6mq3ֽVF% N3ށ3O/RyW},R)å;c8^y t2JtNH?~߈I^hic޻v}[A4cFTDLdyi6ԁlѾ5|XIEUAc =dשU-~ [lRA t&O8#DNbmpZ]`rw(3sA6C^ŝ}+{nlDNh*!c@L\B h tM*w s[).,Z4fchoo!szcA<2qzr/V>zcPв@Y~ _ _κ=d,2r`$|/SFv*c.2{uM&Y߄#cwqͥgZ3g9{M x`Ñ(kBz0#;YJD]:fjTy> &uuy8fRWv9 8o2w縟5ק+Dh2  ^IڒtrJ2un{Uײ!/zk %(t"8ϙQoЭ67^Y龆"\$:ku ڪy3J8M6pݝESu/;&Pu8ʹ~sD3WP ECm)^_( +w(1Ff TzRn1NbL]#Oq|q {&(H;$*Q2J!]*w3 s*$u5 v8 p{ug;-oR[Xڳo)ʆlQj2Pȑjj\䢭o5#Ua] K0j,%L!MwMdFR_ & 1959P$IQK5ҽNlȓ`'.(շd6V`/|I/dR~?m-ѩsdzܺ-#ZS/疹>Eè FK,ؖݬW cƩX e8WT8b50Gb Ei ZzPX@4zTX% {%a,$97hP[;UDn%YHtOhT)+<,jeX</؍PThREFRR%[ګ3tv/oOV2@ˆ]0vB`~6i\Vw(~-S ىHRA]RlH"{W = l $n\R15*$ȟed([@ dh SWQyVVIqɐͨW^4up@>&Բz&Q , q+P0[UC8oXmӚ4}hӨ`iZ{b_ɧZ4ttk]cB*Mjdqn$~:~l./ rz/x~H'"{DmZZC~6"0Mæ vjM{!77ôg޶ XEs^YW[5j1& pZncS%?p/[Véy]l'r$(O}֋O'B:F?k ?%c)̠[Ax]*ej(H}$4GA 3y]O|ZC-sB[ah4ViAzqx0׭}Դ\~$ 袑b kU^kcM0WRʸ#[Ӎ@Fq߃c|/ҼuEoXP-|7sc!NX(-7.N"~(qqk|H fgOѓ塲cy,0!,\??BO !U)a~3q窊6~S^~ *k:-BڦqJ{,^'Vޙ5QRp,j.BLH2<-˖K-n >+68:`FU5k/5uQ˺Y$hi7ׄDI`=H6$@q)"~t,t q>=u,2۷%X&+X/Q۞!~M 32 ~`WG,E8U .ذ#>:BwZzȼ. bwDEIh2'7{_`Qzv{$}Uݤ:i Cc>Ͻh . ĺ|' u/qYҼCۖ8)r7n⑇GT{U _t﬍4숯?E4ו\ iw[ڸ:1PpvS:^.`ݎ t̤ln͝Ei0ғjԞ6,1vplkҚcg{c`ݫoeSZJ9lGDJtei!s=h]r~yPnFRYs pHI1Mߦ.n/Ǣú+uxԓWw*ݞªa2m̨:+~خe#cy{{U {ozEL S|Vht o7\0Qv[f@8͋u:PGx=Z@b_\b'}o=_k5XM+/^nϡ6t "uWl`B?&=b9!ƏsfgcJM{2akDm{7&t/+R hkOO-ePbzVIBqrDLC }:^+)>̈́rCn/_we?ӀߏjI{t:=:C{Z4;뾤^ P8tD!!yde05M?^VQCja!q8wĝbd7F`k) L;AKnze[]I.faPڹHdm;ݟTSo${.*LٸB(.}{qPO$Qj"Oؕavd[7$ *ˍx'?sč#W:3 * aU7YfSJ_ @hosmnr~?_(QH[RkSѕH, r!ltIߩǹOWj7E\raWH d^{3$r4G#^X znz^(v"Ɖ]jZ(1N@`({jsqRq"!^B sMzy}d/pa_s6ڏiH= p) 15Vq=a @Џ{F)*wMSe9WZ]PFD)LT.:uP?N+Hjy6̘ Nb"IƫH%{l^c_їRl]gun=~+UTV1Ct^7-à $ =  VI NuE4?-Ԛu^R ӪByfe+C[?gY um{5\N\o.rVN\@"@_{|6h\!d^7f&&%چF~g%?ۏ OHPFQnz33$=m]yiWcGy3uU+ Q@G=- mʸߧ_lsU?\B޽B\2DjQL]')Ķ|0 +$BH9`JN@O]wnRZJtOMN-ÙXkb$_1OxP{y*`՝7ר$Z/K}7_kH։mۍ?ˊI|jC\V5(9Rn/|7`u?$XC[w7.+yC(ǯK5'&ŠbjyrwmRB/^EJ=a0} 9%iYÜ +<{r+3v} M3GYg:kL'+=U#M(sE(hZ٭w "Ip @]M]M?\eU3EA,ڄ9Z D ='-ַF~#ˇS0!GbIv) rae^,Y++r35?E[7YMnSa:Cye8rxyݾf ` a@'C\#y>&4U?g˙\2 zRU9SRMw-U#j;25(Mn07?W{7_t.d/UuԃAQE%"q S35R%&f*[Z ,DLJfWWyW? 7_{ST˅Y=E$wcҼSL)n~xWC3&tAH71e9@imYD$k1CϧkGϏ3):buYɧݽIޥ :9a=G͹qj.-0H$\&˺e679i8J6gbpC2]XoP*&=o,:t!7Ť7M3=K䡐#x SL٤CZ;nGM3/ 5t;qxQV6Ӏxes _fG8=Co)P}XIKqxnPcY'L dsU~a] ;Մ0U Ue ܉ ,ʮz⚒^4LNà4=-i>^qQ@і 'Q2f`k[ڿ?:սmBO;LGB4͔7X( }GCt*&HO#dNDt  EM,$nn&3AZ!ez`)Oc/Sj[nO 8g\Ӭ͊ : ~`j4\YfCӲQ+ԹGn+>lY7\KXW\Dː|R*0H 9~f_FYDUਯ3x)Paa;%]odר& \([ ČA%C 6xL̷{s e1:,%4[4Vn9Yo@QA#DZWnbj֒P5 \'4hYi:on&wS,#Ɓd}f7.!WN'WGT!Ryd"٩+s!0>LX,m:9U\ w3x%B!$1RK5ބoR\BJa:. =ϧCf{NÈ J^|F2 JiweOufAezИH_9ڌ]MB˻dT< !1޵G"P:O#{=V.e U7RB_՟躔[,ƽ`"!ڭ6#u |.MB 60]$#L3.IyR:Ӭmfم`}TzT8r9/#e}~Q6 i]Ys.p"?H_]d\|W#SOxX&d\Qc-"VuFR_g؍3dD38} >) |Z Qx#YŤV!].na9ӰYh' DG)>."b Mek߽>-/=/4q:QpI:CΞ2uocԑ,{vfPL~ uhؤ4Tb]־-]?M^L"'s@m:;t2ײsA#YF=/=!+GJt6KH6) 4X%*,jiwP˧ Wf>_(yyw2K+f]vVZ&c箮Uo_&P(HXX&{@4g?2@y;Sq3b4ۄo4saMeUI`^_u MjXݷu$ݤ(࿀[{x$Afu)Lr.4Gwtmֈ_17]'* %xgp(l* |m@_?Rn<EeM,fGSC滊ًJE^Z7$ܘS`_wiETMwFRsN1%Q6&TxWhhkx9GsR꼠{Ъ ~H@/R8VlO@(^Jm}LTĭIޓFFhy<2 fP$MI"mJ) ztAԺdQ;僡7}J;aGh@egp3eS-zG{>T@߼]Q@21;ʍnI摶 DnǴJcpBjҜchl[i e*쏷*% f9O~ѱWKPBCo7X }P?[]mtZ:l){]$7mID-.nKۂ{͠Ҥ*"W]nG[}EZ*>DAP!@}Z?_ CC'bfKW Zu6)7O݇@I|Ӝj*0ؕ.f xI[.ݵ^8eAmrbZ׌ziqj|*gcx0 ,PLst9/~9Z9t2*,ʃdX<_XcW2Q7%v:'I-g Ǚެ0 I~zF@%:m sRlj pkqT[#ORtԂӆ}%̙^8u6|P x{62H [ohQ!{d'تwݔ_"3'bPA'3.eu;:Hft=N~Hƨt}1!&k!!;1ތ&űbĔq<~;{|iE@?C}+Am.R!ߏuGL@]UOdq\B5SN/cg&U8 d}5^wPᤆ$5'V810"-.R_-Z_|Lbq$t hB0Sv$aWK`v,ī:u'M_9v޵")W/4b=Mw:w*ۮPiV݌d5gVz+=nE|6Pʞ-9bs4 юw7:/ "o&l|]y-kB97::qq[ހȒ5AeI+DW =tMX˰'ۭ~FPÄG5ZeṫJzpm_y>!k.G {oX/̎@YxC=)T<L|DVS}efcӢl֪[;xMh^/^-z9?d̩ ͱ˙Tcm)ٔJC| C9#LbAFkz$9^(5W 3RLD @ջA fgg>'gyzj~Is;3~op䌍N/MǣAZ([smQ~R]`#Hjv\@Imp-qUγwY_ qcGd|SG\m=n=KS~dZL2fXUWoh(t05994u(ӐF&Īm[Ze\dέ<L5 "Zu۷̦AVʴm#d` i ! K 6  TD?5ň nEѰJzVBuoø3.H'5"|܀pNն4Pr{Š]k0v6B@#OlX}9@G%63E4#Zd퉏[m#͘+2:'D8:åϹsV8bP}vU丛hd´#7ةۖc;7NIp 5g V“ ]'{ Ļ>͂Y.qvBǕ:;QbpfG=dJ*' ff &6am0 /$wNʸ j-pO]G]EdƊ-! |gܟt[ ~?!cB% sgPzn#gc7y᎐ꇂ>T nrr ;Sߝ(C^<`W"p=Lē~2h ΟqJ.&$ֻ|϶r;ˋ( D@ Z_ig:8ot3!9,fɩ/`ڨCS"e~>Px_|:d"f:™4ġBKy%/:}aeV2į4Ūqb$(:Na`mzb}t7y4GgzH$4,s!8%e*r/^^Y[8OM:)[ZFmn< q㝤f[*L`wzϬQ1㥼0x>|î y[ۙb[v)etB|+DWaCbf" \ 7]&g˟>$?Aa!8z1F.^'l0jQmKzV0{stf(ja@CYolǫqBI4R]@Q:,of& R>z2oopiFpIlYk^?pINUO0ۛcQy X=C$nT' Vouva(GD="xS~6$ {FeJ3=}]⨶EC>6{ߺr'ʜ {)/$TC$_Kh- ttY:yɛ@щ+37vG1yrc{EeVXP8Xn_ e Q,8kL]s}2[>x'q,eX^@k6GQ0tK T18[;Fm!7IFb0>E $ČDW66ӱ<R1iF7d6,H2 )OnѯxB3: s豇UH_N0JzV>ԣ1?7Cƍ Vwxa#z+8bB9^Mu:1D|$)gvy(p>hwy f~_lZdS@&jt+1*,I~ά(9k_dg!sƎEk`W_K f`I|{v C _rJ$UE$'j"fZ>F=rVw%cC'o^WTҌrUls|lqc`/WFζxm~5q\}*)m+lg*D0kIB 0&kvF*C±N 딬ZX"kLLmm}Vuۇ(m.h+#>l4f(gG3`w9yxBcoh+iSĶ11ro4-%^*A7p<*:$t{L rgD l2 7G]>G?DG(59'gA }rVazGpϢS;/KqF -_9춎- @^ZZ3w9Y&'h+Ir qM7 JD*;om'Ӽc^t\ js _NX(Nz@F$6 a _`Xn;d/0e#$K %4Dù b%KǓ9"c h<"/ɔFڔ&Ҋj8,ϒ.Uq88,gIJiˑQr*Ms4J*;@԰o=4 8 pE ֢ xoԴ>^Vvﵰ@l WA 'z=J`C!^( gDђ^+A4ţD W/} 솼hWKfc6 H6ͫh=?tqE8@AЏ#ZeԢ:ua<&Ş]a[w1'w1Ʃ(wJإ#ڐYeRȥgީ!4e9|K_Rf#\|a,LWpBL!94'ůCVqe!v'٦:T9EzgVOTZQnqpԁ `-F1ᕚy7Zed X$LQO[_ze}S;NZbIόIlSy"@EṪJ =DNL%eao;AFu߸|;'_dN3LgrgO YR[\SZ+Ffv[M<G)6X6?Ku p˜1"佸x{'HZڕ>FE H-3mxr<h˥INI עz >bnjmNߟ4"p+ U〉Ku>$֡'kS?C*rJC,cLb1Ŋ묠inK&XW;O2hʰۊTpbQXՉ51oY8&'EC ZSEއ56~ ڊL*s:..' sMZHltm*Yk]x,+9~L3}Lo% bGEo+ɍ\OUǾ}MuҒ0vQdM cBtsdsQEf5x!/-KN`?3_ƻ8I13y5aPbW s6T3uab8Bj{ϐob)"rcQ5X Lq1\a5O?Pb' 1@P_6T媎ȧܐq|iP5ǤsB2߼[8c\z#\+N߶r]9f'ا?sƝ.$; t%'%Đȗβe7PO,3X'ЂhdD$G *&mw̘bZm֖OSӨP-e Zk[U|]ٗMUד4w#I/3rĚ -=ݬY diYh'IXǕROd_7b%Q n2JaYN%n8L!wkV`"noNޚ',e4wY%4о4_$'E{Q`mgO2Dx:v JfćekIx&W*O6 fhx$YgOH[NYGY4 z~F֕\],KvCE1~MG @~;{ L-(l mْ,wE$޼dWdT2;%1Hd"s $>9pu F7T ,GI*<]gf*WdNߵ}E\gXR05^&ېWF@Q&5bPJDy/~?hrpvz}bC ĥ0ʡ\!NʉZI|[5MeJ"Aя0̲p w[f fQ]sUr{dԅ՝L+DE[-4E)] 9Б?sCzNUT ϰ='!w1J:SA,:))[.`ߨJdE &A7L3aHRNhz\@i*9!>^$!1j (/}wc(;䑹9)1pѴ'-uP(zTh!hlZ^MRt2w#3~O&] k_%aб=UxIsKu!|rUe%L@_cbMyҾvW#As;e[3kD AڥR1XqqMƨ,wLOq-Ώ);uD"[xvBufE4IDR3JF@yvbp܎@oĤoaVKJCf$ԯhmTIP U~ڇ"=5 I-*5JtW-LyUdBts9i˰T18ep3@Lk ~ZvN6Ƃ5k_[M 9UVTz6H+i'ʗdIJ'MB_2ˆ̛ /nQuq$bt(S ~fwqbʏ*N yL=mRIJl)b䲕ē^p(%A9H?}V={޻U6%y[x)FS$+m$|/'ׇ1F0)r8e3M_);I H0B{|e=x'QC{ǰpQR ]!mEM{11jزWH`IeeZz|{9-qK}YWZ96;U6H?)i'G>q^7ϼ.BJp X_p)_: “va66ﲂ)BK5Q v{DΔ/nr &H۔՟뼎9Zmqŧ[0^MI7lNs`KPL`*u=ͤ5ctnaYҾvɪ$&%a}<<\JD13Gvdo)vgR oLf߸߽*{e`t˃Q!2Gx;y񽴙%#\T& $J'my7lO20\YO5E@AЮD}2e͇d>$e@AfR~Ҏ@|ֻ|4:VټS/Ȟ%tiUC|@^^c!5jq[PdWhkg:d0]O}eڥ6:(臓BB ˓CZoo`~X M*.ƿ]I8s3L:$v1 fbh.+/Px[{=]wB* VpR?an@~esm ]~o5>(?TOz ʦ:>q̍J(^ u6&1{aw#N˻G9 lu6aL p3YU:Q Xll8W_rXn0y}gS@7a8%H<-~M"I@m؏ [&A~5zj4tv:H?Ljբ XڏVHEXmm@>`i?$ b5O(nMFK+{QyDZ GGi e,yxPHI !I}h O:j̎bn~A'DņkǮ|֒6br]̔eXn;Pge S]n$q+A_ۢ#ݸ);Q~S'*v4p'"䏆PZ 1MvַyEۧWP drدH:AIm X?3xwE2{h[G9W1ETCq X\bip* bvykkRVUZv̌ej=PSA3*ȿƓWcQd*sPLņ=%fD 7\D! L^5q(*XҡZ"4~6C^mѦ~.F1_Z'LJa Vb- |]PqZO3i/+9G3Nĭ*-fYJ^\1YmU˽i?s.)Qw*9*bUB>f({aS Cϼ?6>EPm .SP~MDfnma%k/)֘ U=ܕVfݛCo-3zSoҮXϯߥ<"R`ܕIL(@ƛz"7.H# vq;k "`%QT4yɰ3shUS柗=&tKYˍ20JTu(Nv:|ɥ2i3n_[{a{\,kO3 ECn?"E1 A,]xqRn 9V$w?ǵjg[k]Q4VR-Nv&^R]Ɇ} xE*z[| c,?L|.F^ PjĔx>m^v&3P QF+ΦgSbZ RC G\W!׶E$7"2h-'&HA(^|+LQrTH׆lmt nC{aޕDe,ıL-Xu&A>[KR)6>B)?l!d?@85ҦRVsRʺES:اFG*%3GKլPe F\㛕VDZ"j&oW X(Z6? 4Eei ̄Dd=oήX3"Rȧo [̉uJfzV(tYhvnoNd2zF|XQ'XbZlja)(&W 펙 G #;NP82C87+~]j]XM7=3QХZoRuwa:sn9VR\l< Ɗ4-mc_/2HΎpq~#br՜ȇau ^}-3W:Ux(uD:'pDq03զx#{WEv܇Ãu}MXuHN*"MiY$%FϫDX1 1%G𕑢l?!-i#RiĮBVXTM~ڒgd%iVMkwj߼,3YBXvk|y}7ޤC iJf/FX_f3QP:tij|Sy\3Ύx ~0N XpvQ⃕O+.`L96x@,~9M;yӜZ/EPAz{c,[Zb-8\#l8, L=(- Jd Ǩ׫@we :@Au覼O,..Hm3_¢X^Qttӳ܅_զθn/Q0{xGG3%/VG:OH,JVA;XeeE'#c>sd*O%BJO_&[JFqY maLWzseĆJS `-v 0 d|j&$ģK%X8.#>s禋#?Ѳ1&! CKd?f&o} g?(۟2$[QI[E?;&~c)n[R9 lQ˞ %m$\}]I [.ԉ>SDNecUiBub7Y_.Bnt#eF.Q6l.+$0tPq [y4o,mm \-cH.tç pTDFMX׃ڕ9Ǡf-.hHJ8N$fǜ9|'CC̔d>\:ă;jX)70CvX|ͯE N}ƝR(2^S+7q`Ct fJB9 İK#"KPbOׅ&vt Deq~x6@u iuRha.V΄:FCy9oD}]"kby? r/\ ]u=6}@- |ZNbsUdqVF}Qܜ d/7֫J.Ǵjr(5?rFxt6.)6P25l__˱ &׍&"Q[ "풇ǽxP:O׃#(a-3;t3\2#|oY>hP w򶈝f'ukE[|]]f%Pd $ &u&AiB6\I#65M-}P}$*nwR'zCAl[/_3L,`GNQ2&+3qOlFO.nyNM{dRvdfTnUB~M M1߸nAt 1n9a4oisntKfp>UJELkQvw7]sW}k%3.v#!}7?_< F;%Q 6hj7TzkS\\D HR  ZHhAL;ھh֑y+ڞ[RӓgįND-=rGNJ7 z#.s rb WQ `AQy9G$| 'A(Pa*G5nP.Ю- !^i )ƈ'[) 6|:&vGV靨YJuStJpb~񅃾u4b3yZ&y H1ݕer.=xۗCl:m<_ix QH|M呈7=\w4K-\KF'Z ׹-WHo9$S%w'>Gn Bך)Iy2dtB$N~PפMxO#g *EچsY_$rhzRu!FHgZ[;S$v2K^Mr* K2?X50!}Ԁ5 Q ^dJ"\ƨ| Ɛ(fO5XwL^2kgG8 ~0E;>E uHn!ZO"V0; Eގf^DmO !8KmfN0ăF2H" a"3Lī~z&zg}>w:SJظNNko׹y7Z3cZ,hcGR[zYsoai/%@͵: ~ @P&fzR ܥ#bC8öM~WU -} {:;3YME^jFug75K\b1e] 7"{kqM;3rt(Y:-ͤg:4(_oap k,}Dt/s * @a~ m0E@y7?2F+y:#'Lд.XpZ\݄$9-G6! ЧԱd7ie($ 9r} s/iT@v]rc8Z9wnR8o;NZN&PE[PSRܞ\z(2u %3T BSOynnIG_"N8we]e ƧFLFZ, %n5)O'NDN,LOFx%d@ב\y Q^9bwVxJ#nc``Mm'=f/>0^u,$9 >+{<;Ϯ !b^ 08cA[f BtS8C˕kI<|zW_be06JSiP/@?0y`q5b"#0"4VBU@rNFQeG"?Ȩi>A” RJ+ םὙ)!]X 2NyUּ0!=u# 'InCP5,3yU,A–Tz'2 n G4D8Y7<**eM %5D߻fTtrsGf;:M'ڕU?d~\`2"7_fOWg[5ZArJ@%pϥD(^(cv'K-n..s&E*ɯ]KBtӎS o 0RU;GXca h]o1^Kr+E#yˏ"[ \i-5z9XgACtz x+Z2Ϭ+cMOmH_ڻ8P@jM`#._z;m~CK M%L&<2Mx, tD)}Lo 209DwU@ A{0j8!hO bן85,0zJ08VZ*'L uMLX.2}'( uZ DD3 7\@G%=L\ܠw/p90ScNKi=aS"n.|J>$_~mYh]7C] r̀梨(!>oN/4waX*ؽ0҆4|_%\P/*n)dZ iU|K> 2bCUd4:e ztd|9z5+v7})vq-A%c9py){$#rqHYhetxB|+0k}z=.6.%%{WN(̇c{H 0I%_S)]oZa6; @FY`KD'i*O[=Ss2^S]G2C_\7jrl*O+CG3Iv:㷮ˀ@ FGbo5y,be*SQ *50DV͉+#Er \EV=@l}cK`x nbj oI.8rJ饸AX`#-Y`p=6 j8caU}.(pkMJ>[͔17X׶)1e9YMPM^b1w__=p_:|/@3!{8KDո1bJghEJ`=h&"=cFJYz†Wx6lnK;?u lHr)ބ߅+{yl\2IIy$O]{M6PN;< nCªn*5j`Uk`W-0J;zLv|4[(d!me3Q?~5+m߻?`MHdhPZ5{6kR{J{&W(#_3Wp*\_&b5H_Ԉ\D+.r+'έ`Aeq;zYiO *-XF'(פ,۲@8׻up)$'+MBeUħumnƒ"!YCAÌMƿ~oR`JMBxf+LMФy}0u$S4 1WDDx5w՗ /Ccj7*H #~/~'!0 w4Nյ7#RpEAye}"[e c[@bve@vw5x"lr0T} ^-c#4Z-irYy׊xᏇ;_xIEh|+~CVv ?UR+5{?ۜOe,{ƈȺP0hذ~MS̬QuՏA̚W?k@bPt% AG(Pp(NFQT4eZx7vB}G%(DCuaz,Ů?-_-0?RڵLXcMD)aRwEt!z-y_UMDБ@:"^]Wl&c5sBs>|s:Pf&ʨ] KпNKT"SDNYT+fCCͮ| ǜzNA07;B_Bk!e?§e~&ZIe6z<4V`;_z? HזV2& 49mT^,:TAu߄b_blf#?Q%>%n ȣ6׬G2#?%VdV F$mnBsW&@; G(C'r9/;vSѱ$f\s|N:źC֕\S\!v#IZ%`{9K55/2B[ɱ','W[ZpWnPk]\b.kg=/? R@-ObʧG k=s'q?fcW:,(@s9Qe` xxJd+ĩ[Af3 [Lk5 -\ǫ1 -9#) Dz?!AW^2*u CP;o25w(Ug0oWklPH4B _0f.wL6PSz1aMǸh:OlmD& 6J ӱ::s7?5,+3US(xևKsmLwe@ˡ~prEuZBf'! 碬5Nio?;^We}]Ľ|.f4Ot|t驓q b.,ª?hY@u }#J(sA}p!H+^Whݕ,6 eeGʑ\1O}Y&KWzkD'՗]U٩F9 |vVoQHd5U˯5+U^ ]Uy8rEzMcsCWOU:&zMxFC?3/+k 54xZ'HvgIf"{+T^L[!:݌zT鈛 `]<}2]Oig>zwmh7@h|b|Y>T2rq< 3`R ¼7upcFsȮnKtb$Ɇ֊}Ve(_?WpdjqXVcnO`K9Z`Zk'o7y-ufL+# jYG:HJ:Wb<ˑViBQ@ܖdzgѲ.GYAڼsB ![j Ĥ]%cR!UVu˰LF83: vC,xHeUBQh6!SHt4ٿM#cV7%ΐOR]TEH?pb/:Uÿ6M 9v0^/@ O@r4iծq")pAsr0"5C^X*8I{GI|(_:@r? |b .ƤP&_|X/qSBGSg+^}?(yB<6RZ-zVi]J& RۦrLMb;ul[ *y+V6S~T1Ho QOK !2 :/ǸaɝTd`/*'ҏ`8v=)12ZqW)יOAH)?.TL41vd~ CI8 ;p)n@%EOkN}EeL4w5'Kuh4r0Ey Iٌ%Г{.$1ؕip*&o n ,g5dQ9ɧ=9 hObzN->Šû~63#KBx2%*ac) ō+]1 8 C9 J3Y ^7PWʬ:*k[a x" g{>e q(V.GX6چK2bi͟X+k߈hPT'pqQݮXU wU3OUdƎ5F6nrB>7́řfpDt֫D9+Hzq"$xpVyH?Xf4^@y߬ة'꘻aKS' aKCͿJĚ @ G>HeTq $5-fǠn WLټ!ah'&;g/f=?~Dd"p{.+7 #;٨$]~{z!i緸3ڲUzxQ64 ':M U3 Y[,-ޞJuP"'2qK-u 3bhj(3TEI怖HeAn׍p[?peLrψ³j'y"V_dFygYZtsl2550.ko.xz000064400000007400147562761670006703 0ustar007zXZִF!t/3]?Eh=ڜ.+>Ӆo;UM]W0(`򡹂E>K(uCȃ{w(n sExeTLɵbc +:/R׎SG[?q\uZ΢b:prSnTj=z"~ɼ\=ymD\fejCxp$V`ܰGԪYR3E0/e[T\"1@{ESgX1*H^D 1Hl{#jΏ7s $mghjS A[DeeR)T*pі;2{Y؜"y$3÷^nzE2b_lKF_l࠾i~ѿnʹwz 9Y2O@ea:3񴉛mo$s2e~Zota*BƨG]r `նUv7NAo^D` A/=lH Tr] JJ1:GqSQx,4H-z((-kjf΂H]4B֣΄βJ喢1E[,*ᦋ.95 :+n˚~'6V@d58:;-I:p6UL;M&g*#xBzޗ;9}(dt84J| b=$;ւkvյJ}Oa|jHm;zCUv/ GJQX֬SOT/< ]@dͶeqdmX[9/1i`rIDe҂w'R8 Z̭ ˥ƴ-.Eh6¦ᥧ3o[(_p_?qh Zys7J`6Ab%n@ q:ZЙz2'iy@]yWQ6)vfxНK")qϑsϲ \ToM㷮/]/?&(7NuE]ƣe5 Mq'$_ض'XWX?x'JNu AU6j2.C;h&nH_jTvcJtAs^l*KVzT\=Dp RsL׶)ؾY֘Ѩ0#d$XU>oqЋ<2EgN=KĄYfI,!QG3G@S4]2_5#M믅J^W/WMf"9 WdD/_rHb@\3Dlh)qddtlO,GD=>'` X obmѣP{!SVQ]9(?ΑՉV\ |n4Jխߙ*INn |e|gJ5@iU붕Pغ8<)lg9w$Fw/S:e1JTםD>$d ޘ71¬m%o.PhIUBv 0wF1fAy0ZgI8%-઱?++KtJ f*fAJ}0ƒ+]h2p0tӣU);_SտGF9BD%`@g,!ps9"lFȕXkaP PQF_lS%V"z9@Ko?FPc Ki$yb3+4Zm׋mk7sΏ`_~aW0:a/?/ʽ:$~@2ZaJh< 33FTP2'{3vp e}밶څ|K<0Н:Z/-M "pY b,Us $jU. oFŚJ'~L Z{&/ M%vI"Y*]!⥗ 3(aܙ)}I?ME MgBu2f=L86ߍ<_?nf0HJ`otaɉ#nžDF*݈_k8zŕx*/zeUf Po(k,O/0FeW;+Q.XSV<4y(6a l }ڽo.#24A, 55w f ThbWk`LgSg\ }#s& KϛP@1geJ8,Kկ)+Cӓ &`7&vzD}6:%角e`ހU4~y͝lxx\iFEE{%ns߮^.-g+{tYFBS'5P6g+حcS3m[|wU^,2aO uYYp$Os/ OC|p'_јǘ?eW~mq*%=0VӰRKFJ'EGsV>;ꓨ8PUGD,*I|HӬ#g ˫Y3YLb#5d~™ol;I.˩5Hh:UF/yzEK]1C %s"(tb{{YƺqInϳ xe&`g FCP%^z࠲ gw6uxăX0{ڋ[3&' I&s[͜tD(ʂ^YrDR{RGm~qv}U6r]Oܶ t૞U~ öfgYZlis3lv02d/lis3lv02d_i2c.ko.xz000064400000005550147562761670011572 0ustar007zXZִF!t/+$ %]?Eh=ڜ.+ʃRw-U )egmP[<~fr.~F<9+ *3\u3]iHR0ʶm鏭&4om iPmQU/mWsh&`^$H Ε)>olenN<`̪7DbfRMѤO'e"|I:BiVQv|\ks4sD)mMykH"xNm4Q4$jI,Uҗ(by /L):2tⵛ5LC00Ӂ8Ee@N*ipɍ^9GnTu"(CH9JD4ͬevh[H96b~v#cdl{OOZq!& lx&j&!oJ3χ)@IPcs$S&}*S]%@ ^lޣ"35N-.Z4kЄUln8v\1"6 XZtjSHc|í,]#siʺ'=ti!w~bc= tҺfߧ6 e?7EW&6{gR ި \0Ĵ6E×/8/BĶ^t~rά'.Ť2.-z>vn*>QwV!nK]2N@zZ1pyU2PbP=HP7줵ېd>zv {A ο9PǧB} Fw*Pvc l12r=J2YYjwjhMyM;|{9W|&-o`,9!L9~(&P @#"OvOߺBx&@^.-ز1'dTF;/5?}B:ߡoa$Z ɛUip>mi+fl~ف&coz>jvf@p `YعR;Ck4z)ƌ*X4A6G>>Kċb?BQyu7LX9#בEK@[[byM!ݻJr"58^gAJ%k$.HZYyة^&g,P0]k0)⫋cI!o[ʕNBCvZp)|r^(حʱTHн$QB$>IIVf$R&ИjwUW]nMBzwDM/`nES0o@X\fМM"yt3S/iT2)w\HkDl/D cntu2}}B]y]dNAdm8R|lB1y2ȏNKaiuh_VGnRyvu/3砩i_(r I9j=lp#]7AU{3`tH}of"15+N? >壷ŒFo1hh'/&K?Y -Z3ua8Ųۯ@ni*$>V|S2jW/:way ̕,62wGS85\a.>n13j!G7\gQ$Oy2)Ҵ.)4LALl {#>EԢ34T ,qС 46ӼBhZQDJWӲLnѕ{\R*;+Ф+wu6pPbd m~<˼̈́;ߒ:n!HܦXiM?F<59WAz vȹxN=wur˶:!} \R}^^I1’SGXA[ oC]bfG=)í]rSԸެz[Xl3:!d3=pɿxrr\~Y0_A;h!^Na$b.M S1LfF3/Potb4ry÷t:(^ S!#;"'IR !I'i`KAq`2A.)E~J||V-*&?A/,ts%:|@+48?{D,pcuo¶?븧%G 6lGE'AYNB Ru4p]ybYѝbƴi^l&=_W,tQ>xlX5ns,>Qiư㨫eeL1:şn(5C46K0M_@5b ?n9F@,H2h3B]^-j<>CN\wq_puUGi$4%SGpH\FVDEUS4bdfag-8V.9K\22OA Xx8fVgYZlis3lv02d/lis3lv02d.ko.xz000064400000020740147562761670011033 0ustar007zXZִF!t/!]?Eh=ڜ.+NFSV6Wry"l[e_rLw-b,$u@}h̀Ýuűbb'Oc *g'\:JS }r kLS!aAD} [K9"'(/Q_ϩCQjyB ƣ0VeqYEAݡjY |{N7Tp^JP> wĎ28qϴpYFmmMx8\!u/Aj ^4ŁE|'6V* @:2;^n:2v CF7Vt+ϔ=L<=pɾV^ ј& mfH|N ;jSS-5c]QR$WW E>D}8FSp$ނ ṴhA[ed|}BTgbdf;C#LΫd |Sкk\o|E?=.PN("\y>Qɺ!ii~a(? Z>eҩ 6ҟ zA܈D97ȁ|ND9YH4‹.ZI05%9Җw,"v)'nq2_DwPԦfl:wv`Ui hj:QQ*TJcYNP}% Vz{0sA'SG<LbʇjfunRK p}-n,^ +5RF?Oݯ t}V7|4ݘTEjE$b@a Bp.iZ_W-R I=Rwmt˙dac]. jƏ>@APKFFQn_X̾7+x畂A}s7<Ď#$qBJ d/Y٣CA/{( qgk w@*@ޚUф&j; J.;$2׭QfHs̹j_oĞ(qh)ʁbLn{K[k\ȶXwk2ZpL,3HzݛW=ݲ"%"\\>ѕۄ_Džd*r[Tu5ՙfj3r8ݑJ+ȳG 9y['j3I*启Bb=2Du q@6wqv2\ԍXoqՒs t]uϏp d,Sެ YQ:_Iv{ WGi~X{ME}=*0J!7?*uϔUG`{³>u@pM},eff݇=}'TdJtz:{ s5]AKm&':k^WP.[S:0 nIz|DY2T6PEUd:|'0P2$f#|TiѤ`R8hmw^GqX/#!Mf9SWZ4Bn409nݲ4Nef@ m݉'Hj9we.a!^AkfR:hvX,t6y:a"v &I(qkξ7o ӲJMj7+i)J1 vsz(,|0.>Լ ("-$[_%FQ݀=mi(~8a9R-s޵3_/tٹ݆7;?#fY;YAn$7,)݊x^YI=SH{De -$`U4>վT*'9: _ V@+ʷZڒP 5XuĹ |(+0Л4{%G#_:W/Wq3>)6EϜaJĄ:@Nո7;`7:`Wo9GXVd3 u`4Biܑ܎nw>VK v%4J4=mEelM`% .\󯜄7g^`?%XnaanZH/f٘x;Ql;@'LkdAD}bcOI2?*ɂn&Ϊ~g+*$хHƶhC;@&|!'dN ]^UB+rźN[vgX/.i((zFtD* hnyGiLWl34Bd_9UZ8hY\tKo?,ɠL]&548XaT0WX.Gw3G8gm/٤yJ($iLoJ}ǖUhl%=)K$Ij{ !lJCOw>X),{>AobܖO,0l'cXndm /Fc.Jn/[s#,z7]/݅L`1Ql9-*׀lǞ79ܳ+!ud)b\Cډ/:'iyN_ @-H(ܙSRCmz I|Ku9LoibMU0D_ͤJlĥDyMH, qѪK,lbs,nJPk\,^6+N' NJ̊\}pQbt o3kޓ޼[`ޗv0v0z@ӄ 3)1- vziGA#O$&jbD@]hY3& n=H&s(, ‹ ilh ^g/~FOE+/`ج淭g=4*+FE˄Фb?D|*쑌/[fW/0HQϚQm$%a]!lqAT }E=5sk (D6D= &{9oQ˩u=kk5ZRrC!*O06eo2UwVPYCBe\uE?bӑ5hV.E뉮-̡iVh=~~V9# [N!"Z:kբJ^ҙL_Q1Mݗ8;amuT ŒEp=v{d~ez?L|qN_p xS=eX/'þ@ ˤ qi ya/BBvJF`@pB_ 6;>AR1n ˣK;O!aq2_I4( U&>+Ôn:r\q^$h,;s%=tedİ &1+vz^#W)̺p~o~=(-5 ÓX2]:ʼn+ Gþ鍹Zawv !l\P̽X$֣9-jM? /K0=XA$ǺGaZ۴Eb-<,UhçxycJ:K*:&y>[G;V"xP?=统5k Xq'Gb314 JvW ]OBkq8Zzk;Q=mZd!ZFDyhG2uvcj=[`Fe10rI{[ Y-II`,:HҔ}J4eTRjjm/uX9t)^_e$zDZu:WbRd<|[{84u.=ܩfiC .7(ƸXyRt&VLh"[-΋,{ysPoy_fMxCh([U$cݤDؽ NnV>[搛.H5=i~VNE>:+qXJ܁ZBNk6Hm:\ ڡm ?_Mu>AGy +Și7H÷僮AV*J=ori?))]6?P5OQH":W JlH3"'x@W@jME @SX(ɓdB Un͔Wߚ F_W} '%Ӣ7VH-Vv"B<h7Vné1Jצ|,prg bW/?0~w+-WmEc-ޚ9mHQp9tAҩ~ABt \jk7 5.{h qaOɇ;ߡM^,o\@fa_ {5[HvE.I.:N4+UH=uXL:j"mY">eԣgE>Ф~md9?lTL_XJ,)xlgCn];s[55c.YKΐ`zlkHAg%S!ս_R4d+W~F' â.jo(vnΙ0tJB!b %]N_dF/ZZˮ{,hM𦻸ɪ^~ }'Aޓ"E^&';m-16䶠Y84Gb[m3-=ad/h3͑ބiw41mIp433z^i02AU" #T&Ď K_A`H͡;Y1_9ڙO YP*'$7y?b&XFЊLF%ﯗadߜCM@é6jm[F0\: h+Zt{bey:k"-k_[ޭ'D ,NS_/F%ȩm2+ *RJa dч T* 1Pa_f]C\sb4Z~aM6H[ɚNW&fs9=Ⱥy`_"A$521>=(=cwѼc^{P>itF6he @j]ZMaBJUX",Wթ@i2Z,}eĮf8++_lb|[䗭Y,Gw-g2Z6Eεޜ%`r#y2ɽDn֣i ,_y?6. ~b#keecTd.l7/&k%hDV% 2C6?3/CΜhIJSd{}*!P>/%$_ڼ:^HnnZ.Elq|bwDM$dN<߀d!XwaM:H(4R#~|HVl,>&$No ui~=`}HYHn>hA3/o7?lg+·6yySNm :xgKQ@ƫE{SsDғ'М-,cFH`/j(rJW pN=dҚO_D-:܊4$ʆj`9쟯 M hxMVǀaVb)w`p)tɾzUȧn40E~dM5DŽ{5sG7>juT)_eaO`kANJfadn*E?\|n9-B) 9y-LR(<4 {髛[k|!*0oi9;=F[+G&Cr-PcڋR0!C{_۱gYZsnd-ua101.ko.xz000064400000023450147563751050007171 0ustar007zXZִF!t/&]?Eh=ڜ.+ɑJ s))J6ا6,N5:j<@1Y;=rcgÌ4CINijIߪP1Git>ڂbݫIϔ_,гJ.z1k-hjN-zK&S[hx!/"2ю %56)MR.*6nV?Z#)l.n/jM,]eZ?BXه>yy?&iuj[5)BMxC!7 3Ѫ*4^DT끤)X*KWypwS}넞+P#XbdzS#eWvFan".g w|CG2Q8k-Pme 9yKkW/VRnkXːf+^ڧxI!MucUzh$ԫ6!e}a!)”bqe帨‹g›13Je!*Z`POu15z{u t{a Mq~Y+ATinǪIؒ\S-Z,uFҥ(SBӅLof^>"CbxCEOt5|iuZ%=uK .o*BZTm4Uv}L_ZBޱ:F8Rv1VKmJ >tesH=𒨒BotⱄY `EZT#8K% 'ovf[]Cdjݟ̌/meQlkdt@ɞ(|kq.[|k$C)jm.&f߹i(r$ 1x-5LRU }D]Vpvӗ`O}P p5U;WW=,arJܫmN{F7'o,̑@ezi/D<}@/eڪdK/^uۜoҗr:I YY@w:9gzo:X/h][~R \(-QO[ʾ7Ki 6`!}3MeN!9RR#vޕXh2"/[y$=*fh(I^,hI$;{z]w ]'=-Ma} O_צ<|a8'-!ɍ8kNdiLUDEJ ?QXm]nfJ%=Unp)xSɪtHxOnvg+;\/̌V,'#{Ka X R-D-BG1|@-!iB/ XQO?xBvZH{(q1C0A:aX!Ny'1j ~]%k x5#_0@pw/)x$6|Q}ov\)ydRfknwQ ʏ#|O}W*Heq;PQlB&+fSI>K9Rҝ:4/O윐xOt;'Po,L2x~Q1̾y&%fyNR榊O koofʁ]_5xcD?%Smd@H ~v0A/0yak'ɏ Ԟ*,`nbDU-!B6.~fzs[m|@m T}E-\ Y->L,7.as(ks%% ڷfk+t@N:.TG3X,>^BK `= *`=za| W^SQV5܇KXVUwOh\>D/KCP8zQ(>:"Zq]Y3*պ2^ѥ7ЅU-9|6)4$Aޏ,^^(|H0-Xf C0 . MݛJ /6KK+5F'M -0U"!HT"* BF."O^]rCn8A/,G Bʻ\$ br#3Y]m.MGWa<pjKO?`$j|wQ0]hFᩩ-A qL,o]\bFBWq k٦3i^4_TQ~_˫`]֙}OO>WtzhJP|aI'V?Eo.JIn_N2dϣkju~ek"}knK(qTw9/.;iDL6y s0!+l mXG*Vې1XT`"m3~Ƥ?zWa?(Lah "9d$e%aS, Vs (]v=_"y-D$u4g١kqwK;w aK!u@^uYQvc4b'2-O52휈bO4얕fM_V1&?^2nt +D~RAT+ʸ.>ĺM%ȥΥǞOcZķ0[ilkpGMTJ&0ASQȾ63`irD~oIR52}2TK9LCM6yh[tZa  =c1i>RYf# 3;~W;9 D`Nr$d 6RHHy (rנW\^KN~B2;'q>ȅG5mYXҐ{ if`[nlrv)Ѵp8G~qHݼBԚ̏C(tM311 ^F;ug5ŷY":/cV-pNx :p&m]] lJz! Ҽ2}34y]Z-"JPȁ)WOÏiOB>*|ˇBp -D6m~ȝy}&*npct)ە7oCL0;SL@Fs8_%L6_Y:%Lբ n$~v>dI'͸eF,RO (bIv %G`!Z=NֶJ=OfscU}q!s@rǖ> ٔaҙ f)@9{i]<[oG,0i hVa<c!+|E|쮍pvdNy'R$0sy.^xn}eɽ) TXc̒di2˃c#\NAIRv=ȵ1Ƿa^\s{UOhhC>=sAJT!=zݍ^|UB{?-H Z:uӦ1c" )Ӥɨ?SKӏj|AT}/80%2T d" E˅CP)H,FGkqirdϲZj diAb= *$YcYo}W 0U\rBsuFkx]_5^~xEeI/Fܺ~ ջY~2frOL1)f- '9(9nZJ#vUXlm.|$XꣃH%Lʍvr+ ڽ*f`',9o>b:Ok[AK}rI)M`:7_IEG\؞ bz͞k[p×IӇEtF-/1f Dh' jWi8?mZzO B!N1ȫ.YIn<ل*h*Ϡ4 'v%W9}J-Fg5K@ϐR.~4-.20qp5EE zOq{X.pdt!AcuWh{AJש/sEZ߃;_G}/8~ms/I͉[9w338U\8tI4!LlGVmQBa\3LKp^?I*o%9e*U@|Dv$&Ԛ 5/5s_׀ϚeNzrsed\=e'9xzFxi[{yS}5h?N҇IjhLn~#] royI"x3Efgޣ,4-C%APSՓIH];O=L)n^ %MP by[÷&t\tkkNW̝,3f`i+6#C*($.s)w]-\PVwqo`## Xy:wJh[>'Žp>Ȓ=u+gEzjDz^ES]L,+Ah(\TmuT,,'g,~y 7a+fA RJt;3"FzG?ù}C,X۬QKmosXB9s ctB-='O/I^ᨨ\Q1Ukb~"g1k:TƳ D 2ůf.х*Ѯd7}4TQYp6ʴIm=zgtdиv*KrȔ s#97ZKX|y~dҩ`塇(vaCbZƝq̗b{C?c-ԅۏO|>駟FBfm2зX55}4sԆ&f߫-a<ی9Lu 0`*w`(][4VG|IYb;hS^ zK)z; 复 9&4CbLL\+1/<1~'gI8ǵd V< &`>j{̌|ֳ"& S{2J)ާ[-υB j-d*ݲ/#*t?ATns&HEj݌oB?j+3X"8UK9ӺeΡb붊Yl O#ݰu+M, ~6EWīTb` H)|Q7e$GԌ/ RG8A?6T^qh S˓,v%xQ1Kµ0ŠVX'hO%𐈕 -d*`߻'&$Y9^S3R1֩>~=&}2JL'D!St)8#n9hpec6]73M| utT"R 4?8bib w}?ͫNžG>^ְ tۉ+ m}SĘQfMU^7el&qt vbE0Gyx)_9gPNsJJ Fe63D_Qh Į-g; $cX[i霻Owj/F!VT9 $0m>yj+@jϹ3xxw@Bd] ]MMYCɇˇ{3Җ/$t omDV-PaTř3$_UT W? Kc -LK/u1e$P"Mn.a*bZB3$bٽeҬǽXs>5]f$GeE!wϥ$FC+߬ 1@rQ2}BζQ3Xކ%b qXI'F1Dő')l,M:0995W6GIjvXr]TT3yyW2Ző1z H"I"|mmWhk@^[LP D,4aL{mȗ٭ 5)nٴ73y;R@iml:8^PK,aY#%bh͖ -Qj(Œb^1DaI3VYEdY+=.ʱJbĩF?o8wRD](_ ܕy:DB7HdZ@" 󵛸-AM-3ƒ[ vF T|Z Mף=yw#*u<1! ߭+XYrg (Ft4f牟9w@Q˙WJ֥ET2(9.` ׼+D耬=]ss+Dn`Ec"Nc赚y.ynl0dE$BR iFQ=2^ꖣjO5]$~#jV{ jv"_,dVӁVE*4yj0 h]Jȩd8SO|Ik̪.aG.25 -F?$&DZ:)'xt?H}y t]IWckS.5j=Ec_>[]:3ɪcĺ/Ҫ*[&!IqOPIM ;LI Ɠ,X>ۢzM ]|;z Hd3[|ٯv"SjE~xΨJw=#8raw/%Ckc6EZ,; >2 X4zP,5"fdvr3Qs͛kfS?r?=YJ!8ѽÊa<?B,ݟN9rM:2qrOk)SCWY{w&$Z= dDSZr@ [Aku{LPou"fjm`r ՜ It9V'rMoxqEfE7hﯽEpTX Is ۝,b=X.O8GqO (l(>*=x; vsl\бC/|/Ⲳd?']]%&L}o0lys5|1venAGe^ (8UCf*20f|47oHVXWGZ.jzt8 y* 2c_u?e""@]og3T%l;[TO7\$O^؆qz3c19`̖G&%0m ͑/sHqEZWGoh7hȅMc%I(&}˺sԊ@s@RZ}E^@ܺJ&yPL5 #v+W!?{Ią\˚_=P**UE$tr e -J gsyV~)e D {XPN1(W3Pci7M7Kbgc"P]pc͢rJ_+y]2l>SP8?yȧOKP_x-H7RΣZMϺ%4۾>78ԙ4fOJN6}RԬGM]񿜕> (oH;V:B4E0+F\Q漾\/~tFm~eSQ,GQϭc +Qzbmt_rOP`&yԶ}Nē8 aBa8wWr]?A6qq0L jg&h3,շCw[7tL`h,,|z{WVjVXVk#El޶[o#ʼnBzJ rw82.-o"Ҍ$> B#6wjg}y O{讪ֱ\ M#C?-5aqfH ^HW :ċHK37gij-Brd݁Ϲ:"4[t缧9Y͎׀ A55|8!~6)hF35 gTSØ7AvONxB2xNCp5.{ ɗނX)T0+[bTiO$8kԛQTs"rc1|HcioA3XѴ8z`ء>ADu&hX _W ׃ BaN^95ro{ 0d\JF&mDΊׂ`ILAf2e)]@ 'j|o n}< 4r)Mŗoe.,PwmUYgYZuss720.ko.xz000064400000015674147564244100006626 0ustar007zXZִF!t/l|]?Eh=ڜ.+Лaq.ejfd<UL ) izq*4 bi*CK~PbnBuiq=: G40cVCŴH~v7 |V?Sup=s7ne*vg6^N꣋[5}M 5! eŨ $-$s@j;(-HфQ>k6hg#HȞR aBWscD= *Axd!/ѡ 9A, W[zR8@ÁQFI %eKRD@rf5 kysxkeXT; ᯬMÙYqk)j"3V PĬ-vdӔ ۮ4#eFFr8L۵2 -Zq]p{:<=k CWDŽոv* %L?S~ݠ/t&82^09t(UTz Um7%`PfМq^O×L%(U\|?5!A&o9#܃bt;J7K'+̱J)b*|*07|Cn;Оċ=С5 zm/54'u'Ә4X)֨(W+UceڱS &>9 >%O$OːGEm%Zq74?d|lTeAIq-3b-EYXЭ{ߍȀ;8<Le+#8ݞ@F'KyGMٻqV>ꝉݲ 8'UmN+ǟz,AfZX|?:ۋB<Ŗ3)vׅS>JfvSQ͋!ԃkmMH2N٨xi.GKfL8t_-Η#R'.Jx׳-=. s@fF|myB>xVw̼ZX9i|!"iQ,r"AE:R%$w<-V0/qbq}5'#KGL5oE]E`KIP`6I  /4R[o_r jBϏu֢`R xz%?'prDuZ]%6!{, v6ٝ-rk9'`T}n t'FNUM,ǃo}k =*t=~q̧xn+1-qpH^e.3LHXygmX+$y%]kOI$+TX),+T4isNFJ)K:Df \M:\]=bOwd1AL\q],AFr@=a fd2JPsPŷXJ =Q|cSW65~ߙ}(=D͒YrVOA+.t=f,o&;%a"ٷ_'q!!{o@ E0i EE.#C<}%0?Tg^69yHd޴n mSSK -MIevSߌ#F3AMf˽&2@d?ĉwmEZRP[_0 #:߂4➞ͲQǐ֋R,/@C.^BBDOf}}^ߊ  luQ;3cq`2 w_-җ90=,X79\ĭ61641QIרRkw 0,_)KI7$H<)zZbMW-0Rlshܣ Bx'n{N15l3P- 0DSG!E/7lA#.!7.%SMkc{@e(gzn*ͦF2XmZeվyJ>ȊnA"tۉGyaY+{7!m&L&pt6qP \^K?V+t1Kf,eX$p,;  {IAiV"a4YMkИj&I{C9KigUWG7b]fa_Lt}.X2o7E {ˁW& ˧zNlVTS|Wj&4}|1kBÙONCkHL@l⳽ʳoͯ : ~I N>VڊKK$R(D#ܔ}ۖ(i݆/䝲Y<0u? K 7,hJRhU岿"B5 0u;Y6R,#b*?vX)M3C ߈J y>3-wdn}i+l6|`7ejWQyǖ4E'N}K|8 stxŎ$v3 _[C}"oYhcQ:uyD :@'hLL *Ԝy82zl4-PRolZCp()ئWN|Ɋ, + @;81\Di{/lH։{Ѳ%q15,]ׁP3cd)苋fr?PY9eh*]4֯ӰNfpO5o1Sǎ v{\דƤLB{MZ1eCc .O&,l1k#(?x\8rM講vF:d "w)Bb%pY$m}FEDYeLEd`>6?`-أ 7Ti]*zWւ!9P ?bCuPvObaG>8إ^)`"aDvGſ[C}Pi'?gICYZjie9L* @acߪb=u? \rQ*Qb^rO)ݤIaشʪZ" 9gy_A2qCQ"Yͳ n ]=bted+Ojl^[~S!YG2|S mcvmFq%$Lž`F~] '_]vz\QBevv gD _6X(UǜTef;;_ٻ57.EJ}"6W!,Q+Iex6sZ9rUz&?q<{Mj5ЃUrp#)Fֶڸ;NELz=*9Oxu~k\+Jw/\%0yZ(b R`_ @'C9!%6H `~DNM?3%;>B+[bKV!x9 wTWyQ(oF+}APSߺdp\W]ݡ%PSBmۆu ^O NxEKr(㔦Aʙ)U?/6vO}!R )5Mhؓ_zOlsؙ ˮo6VxA+ eÃ(gEw@U<^2 mWLo]7tҪKCSTx#IޢoP!{B1 B{kƹFA`)j9KHɔ^׋hv?[UE9m圆aHC<΁׻p#F v?LkRm\y1b:x̯G7iTCc_M.=⼘Y-}Oצ-l4'4ҽC28;BM3(mu%7ޟsFoƍ~·@P{(o3gWW&l$f&VD;I;ʜ7j J&WVGħO\&5jp9pu.OqPl]~|tC.nk~ޓ`_p??D}ȪLd_'X8m ;6(R߾rwV'$n?9|E*j[-vCS࿪5{+1PZS@g (_ ǣN42 H|,lj_fWKSPM#jXK*P΀_t"~N9V81,0}zs}W?8}+g&8/4WIy[Rk}9(Bc M?s Vl 46A~&QT1=< NNؠN͈Ks,u|qb@If L7lQ9>BlU/bsӍ|rY pƆ¶ M}y}a3+8>$sgjfK>.ΆQtX7hp?NY#K7[w +=7r t98쮠IAұ\y&+4>TYC2DbAjVR`LqO)zM?axZRg-R=BO`H{Fv̪0yv.,OQqqѹ`ۛBO-wz`agibOCF>Zf?Z'"H#;Z`| 7W@Jc ;O/5\e_,RƩPԜ|]pcYPAjZ(\XkRNy9/9jiG{:)8ٻ6 Hv"ASlڑ*k \d 9v=bHF̸h1{ WH(y UE}gh.r4Xy8|7$n #Gl ~*W496jIpcip*/Vk#!-ulж#w)^Oc&[}>m>DC?[Qb[NB.m30rDfi8GVU63P#6bJs]Hחg\7c~Z~])dh1%ӓA8YI8L%3^#|{Wo#q  0n%cU6 \L$R? #[=1(|dSz \9S=ܡ~%3Fx3Zl}Cd bˆsy~'\⑚땣F3Zh.MNp\w@5|RY-MGja p }ďr5Py?DE&驻einũj_p"$Z.QPEVĤI2m~hE3&'Nh[,IJg+lb>(+kΠ$f !@Sr=EuZ({boApznH#?gd Ա`A|qSبJQۡ&8agQZ+yI1;/q3>Sp*gUF26X mv]T{R4ѷcHؑ$v3pGTU6$NG,#= l33n-LZ\ -_կ*.{nffI,澂vMcTX;rAIY\cPY|61kD:DVWܼ\uó#Ҵ )3[L6 ;9F OoKzF |[O 5 c\D`sH+%Wv5pEŸ6d?J~b! '_!bݫjׅlҼiu~CC(_VѨiG9~&.7"™I"4 <:b4X 4In}Gys ^9*he-P),#$S'i"@֡OځMdjxm|٨3i/C3dsK`\3%f0V :ۢʽGWRgݠ0WBĿcx:QY==+)X2YWtq58Yn Zz#{V(=fBsw9(J<2|ڴpI/;bM%V F=.'v|3[#s3h$'kj 3"JPј#cRkM(JC<dJj[j[)ۭ{Ri֗~W6q*pCz9g8pЛjŷbtL# R/_btZS^ˁVUyw@MXt`ߢ3Pk|}Nj`CgZ.JC 4,f[>9{b+4WLGHy@t}Ad6젡@6kPOH# 6݉J #T H{gpמ!"Һ@(!$^r:eVu~mXHy=![%WUE~@ DaAs \  a> Dp[*41OHQz DWC% Rh#Jjgz1"Ņ2^PgYZezusb.ko.xz000064400000004740147564244100006703 0ustar007zXZִF!t/ ]?Eh=ڜ.+ +cf>LJ,G 4@%w#!E!#tjoUO̓Djzq[!H)mŽTF˛ KtZIЦOCZ@% jQCFS%KOӻI1=nJƱa䋙9*FztHTRDhNމ&j ~MLJDH+(myI;#× $T~ݒ64mЗH&m ,[_pxEݟh'Py0{ΠD7rkX]%q22m~@ëVT&hյ@$֮TST YL+Е ,-xYBT _gBяkp-YB9 0ZQNKaQaDraB ݎ/lloFPRNrVq9"bNz4zL  *-&H,i lЕ!h8M,߫\cxynZKRY\AĘfE&ђ_(W7x6FKb'&T-+`yGwD>-O;H=Ыvvʼ~PWɡ:FF5|jo#2A2vxN4f.NړCIHyDleNґ0}f|$2G+a}u TpJ2~LX__fL%JD~>S2ݰx&YS*FD WkHt{ \ #x[E%V<$OhX-2+a %~7͐\}y^LJ>:H" U#ŅOљMiywY0E+,bWBK:~~_fm֪g|fYwMQK) @tq/hA:9Sk#FC.+ z<푌+JO玄M#wcnv% CbWp(.+4tF#7W̮:ξxp#jAWy*[^꠰ug_{"A%&_ckTz+s3Tp;+_꺵*e@ A&h?Ә]͛|m˾%+!̩GݦkH3&uruiB4FsMRF-훻2O=JZhRH!Ԙ+aG[?yD}U8O1k1 k䏤^ %W+o-2U]Hd!=pOXvkE֡tH۵hƫ`@W}$ퟠTS=8)4=dDgYZappledisplay.ko.xz000064400000010050147564244100010231 0ustar007zXZִF!t/;t]?Eh=ڜ.+dR' qP }U}0<Zua={W}!HdS'PXsRo87?J]ydc| ڲ?t5] W3TW66EVFX9AxHR8띾Ca7mӚՔÿ0%X4o Ӱd XS)>ꢡo ɩJ^>]GgO ^VE-Y* |S.1}cZu9ӶV`W8.Aeӥc>~Rp=MJJDzc> `wo0ur l\~@RMs<16D a`_ 1@9f!'sNi׿c훒C%ZE8j*׹&kk@4 g=ņ4&f8U S$(¹Fu;^r4]Hi݋Ѝl0w®E7:\WG9sw#V$fNO+pk]VԄ8io5&7ܨKk2)f͒zGj%5r]Y7-βgnʑD^@Q ƽhj lґ{\ u+Nڷ25,]5 O-_5+pk^dy,vo7c6 VxⳡRJ&n7kN,bpF~vc(Vp^-2S1 7d{!%/8rV \0on3^w~Hm_wr~+ LK!K~+Le`C*H'ʫK2ψ&so8|E띪kf)ʠΎd,jO&MmS@JE'P 7F VVeBoy߱$]SX>]y7p #S 8Ϙiсgd6bW;*h?eFu}h6:k@0cǶNX \( xP!9߶`?)ŌҞaN~_&X\,.Al Cv ٙt*z|] ~ɉNN1!R`{Z $hL6Cb }|g[)#,|(m)h d)4**bToD˃XHN T+޵$"LTy.,="RiμhƤO.)T>7fӛCX(*̭9)`H>x3f띢".(hmHuWu^&_ t6#I!M6|_=POqK~рlfA d\t'B"~ qݸ}uu/_1N;Z,*'Nƕ2Xiv T}2f҅^f-j% VV &3yƛUA*ai':D g)nvh>4n,rj f9R؏֢ONi+FHIsc1¹">AT9]`7Ad5KU] ɿ B芭" 2Q5@w}zz5"Г((*a? Vev:F/Y"0Q0Tۀ\<~g]ӌe>6x(]8kH)!!* (h"tqe#.J)s*0q.֬:R )Ӝ.sP U#|wXx8`^rY"Çkؙo:)#ZZZq DN#6}>"kelϪ2^+Oz*XGwYfc!dbiqB 7j/!GN߉ܪ[4OAݡDF^VnbDD'd6APsMn6XR\Snh[;wg?Y[7哵&ًC:b`TE7T\)]8kʉyVc>z/W/?=1lOʃNPX7SĖή{[(wdcyũw1jG{18c%>K[v0La\)oEQF 6؆ }୼M35ZED;BcK^,7BqiWCD;Li :abP*Jm\Wa *V=V dĐkђR7zjWYh@Vؕ?̐IرÈQ}sJֶK\e8M'1wYg@9]O8K0$G+Hy%| rYhŠ M;LO`сX@5{>@jwt\BH4yGA4BkX;F5P3'5 Qvz)/\m>ꖾζ|{3 Ά-G,PԒC@[rYɹ'>*t_vstfcaXI~'%QUO28NH[^A '4+tN,;2~^ۇ('r_Sw!Sel6lf&%I* ԿabyM9x[䇳?j;0Vl2l6(7 0cw"S˻!"n )`{SBYBc!"< +>G6Mt`~x "Qdi*hWDU{j#x X-ίR \] 9+,xFټi™PA,~)ձEI͛vf-: gdrn% EƽV+$[`U묣 nԄy 񝤛r s fLOn jBu j%ϡ:ADՎ2B:D'6z0 u&,!H~ * $>(Qf\: ֤a(ӌ@޸l@Fҡv qdeP 0(G`Y ?Yqޜڰz>nԨ ՚Ԝ߇iE+*핵,只 S3R O:uloyp0 yԲ퇹E3wlu;m0T,omi{p n \Y) ՌН3OJa< ȸ_3k?x Uy4 *>r$6d b2=Mv}&јL|eg;?vԻC#:1\I7F+eMs}+ <B@=;!ڍ] yZ}8>$!ɭo7ōIՠ@յY\a*f!Hͪl~f:_4|.?<]Iz\8 hU*,ЫQg8=v%*]Zr:@+@b l4Sx3(팠ZGbP/`0@;|<A(+oJSuUCw8:Zewh8ޞ՗B#8 :[$_9M$#vyGL9a|({ov}/ex@Uw($ccHqB_CQ) | $OW;I,e>=zzeWS}v-@)Jo qoQ4Qx3M`.-g`KMs)j}¿D'ғeC5\,I^4wP$Rѧ#+e- + ;W.5<ضyTuD_WU*\Y AW ̮2~1^90P,q}kx!H:ȑY:2[& 2ڋ>lTeG,1ъ.c\f:`Zgdu\I;>)owj6iIІ p2ii{'1In<mUTzXF?,ƛ$fX^Rp 314LpA% `;IKӎj-JJ$i9km <= #D(8 Es>bX32~_WA\Z3`@QChs@zJc4>@/ĩ'*#}~r{y 1Ey2p$ [9l~t ۿrbs,[56iJdȝR\7V ra â)dv'UGf,~F 鸑}bhPjT++0 SeMBK.} %H$?qLkXfOiL xXpuЦ vHC'6RN oSff4ZLPo}*L[+-T:{%iۏnd@ʯv~. sMOڞνv`qoٵ˴wTQ~QVq_nۚI H#՛8(QÃ4l4{DkdWFCmb05/b*G/1i8 _J}G۸/0Aq7&˛X)-^ܷv  ykxA (_ls.D Z8Ѥ2-pd?~VX(A{5& 0$:vyu䩭AǎJ*ˍuge𰍈iD^e,eDڤ)$ɽnJmӑbtܼuAG٦#Y /tlH.:8y&VP8$_u.p#x} sEGODȴs"4?][i>T _nJoQtqEɪk_^s]E{!Ew4U xh`Kp/KK3W&q(36 @aM3Ylǝƴ1EF?%M-s(c9Ed~.ky=]YCSN1Et^$ YQLn6.o!뫷b0Z6اSp 8PKߔMW3ɯX?a}@Q%yd.}>B}3[@r!Z*ԱqJN H65<ΚIC!0+O,/q5y.~gT_*A&L ~^\,=Lcnfo@P[d#]wSBb.b's]^dTr]gBtT|7H 6.טPpFϢz? Qh{g,R`aʷP I0@HLR{`S;f}e3p'3n=\xOYv/]Z6,hiDek^!;0l$g3Q?@4&2eLu2]P3? ЏPsgi1ʹZ7N?|~DB^<44m7gu XvOtsT6^SE6ç!DDQ|^[{iGmB9B^1ZRRRsi/OIޚigTQ5Eu-"eKe% +l*l(]3і BF`Z1_~0J8Ez"q&)M zqi^H2"'կSˈ4TTxȅm0#RQU+;V̳TAK- WօM߳(϶oMFypeFg )a.;K][J,  d'V" uwaW ED)Wc00O_k%*lԛ1 @Π"g;Yg1.-4] w9P68gtpOb1biX3kKG[{C'E΂bGZ;b#Y9 z!9\:VWGAbr 1wZf"ʦR"Ÿ@09qӗ9j^mTS$hN|jbcܞXޯRM_6 vi4o^&E&I2fo}dT8J8#J HV01+PJT9pJ&b7iAnS.`۬mT UzncGǑep?q9 %68w4\V~"rxx-5)UT8meZˍ6~wgvs)vTѦFn7F%"V;@9|& ڠm4 dD'p6M43&#_Q ?9'>OħbGJk!8+;}0 4a,쪿RAG8A%2O ꥬ&.*J{#1i%[. 4쑷D"eQUFiI=<ޤaHlV9zW܃ܭ^fkI1?J8WRBfKB\c'"`785GvOI(qv_dX06q0LӕTi&OMS0(;T|lAY,[QJjFիHB )s+l֧-e1sӽdA fMdW[Ӻe&h߁hT%͆035 aYs #.!WGf͎8]Lֺ<%[u:lގТOiCr`hNQmV~:uwwq& a{*z~8>bwL>xiߣqYT`?A{s 2'DeP\pa:] -pvՎwxa(">,d ; jMHZOijΘU0COH3*R14876IGcO s@K5 +2.F[< ځGEeY,ɹӤ?+' y ocj^mϤS-_^stIdt l.Knx]54d(?D4-Pi^5"Ir?u =~ STz (Fs7^%kfCQN&8pp?iVy V.6H˰Vo0pDOIu/^ f} ^ou]Kܙ Z ~mAa ' Z*6<;t:zqiz=  t;h E:)%a&M\t0=Gϧтhl5'᷉s?)b#(7һтOy\{xCQ[a@س&3 ,rE^j92/Do&JG94v񢅱xÚP \ bT yPu*#q%3 *rE@M7?sY \nN|XE [Qǭ[P ]!wqwQX`K JZ$D5CNu&@JN d5xRq k Mp٣z<r8$j$pIUY3L&۪lsĊXM6.uڰ>kRp 8.E@Tj8ejypRr Pd:4rCrM*W0*A:?`a|"i›48d92aSkPN&&uqYxqI%v  "u G+ER0&H_?#f% g6ccm2+,"AתNNaɮ'KH IT;,ۑ]dw.` 2zTv& i}w^*<+I8\W1xBD9ʗU7^(ݎ`%yD灢i@x g]; po0fv%7qUWBY^jV<<=[́ޫ1o@VW?nx:xmq&KFME[ECB%X3vCI007z$Y兡siڂ fH]26њI~#R2lAsQTz C#=yqCkVgYZisight_firmware.ko.xz000064400000004630147564244100010734 0ustar007zXZִF!t/ W]?Eh=ڜ.+τ~v: lp5ZjNfSEI~ouGYU{/gK.̃UWbkn͛X>&KARU^{v#I˭4=>tM4p;ևF\P?ɪ~T!{Torj.vXKم,jl#|+C^_Ҧ)G]{zC+gbPJz{J"ΛmY߬&'VMd`R{&26'bzhHٺ?4?,DR Y6;؍6 f+N]0%B+Xq_iCj2wMqG]WTK|(,$& +L˜󯳩/w苷 aWLtʊR\U=1,+`m#A֋)")F7_0D27m%,SEӥ>ᐔSM ﱍcv:\$eC\t&ۀ#0v* #?O W9Z Xf|'jʒW;ktd#I4YDcP~3_qNuHֻ8p6՞ӶG)R7w,:؇S5I!#텂v@{?k[XYw@|_V顬wW\ Ӎ _\^jqcAqoNϛh۵1AOU۔R$&8\~pkgtRMW[ cˤDDļxnEWBz£}\y3e&gU95/9orzhT|oI.H\9rUI/ChW"Wo{Pa>K\sA}JvUe-[?OՑ̪{@JmU4 0#? c6_G`*zeF4W3+lmDDPc ȩ\ld(7Y5h_Ysr>f.` FYf:ǵWepR7- u~n7G"@vCj#.a[Oa&LD|!!qNdxjQ`Ӭg,#g=`/ <#UGr+U0kïl6"LY,8|Μ/#:~tKkm }#%#**~E,Egix@5˞mNs-HMKz3Kk#9"g](LWS\].36=}џP|éWÜ-(ct#7ey!Wz{-єpLuŎZ8"Yܷ/ uG18d²6KPꬆ@+E*Iѓu>PDb8/KSmP :K!jWGٚ>Em{WL<uD*)C(2RB`d0φC/MH <21=@ x#fc?$/TbxQ1Mݟ' ۙ*L */Oю2BHh܂(4ЍpK|5"r?gOgYZldusb.ko.xz000064400000015364147564244100006670 0ustar007zXZִF!t/s]?Eh=ڜ.+9ҙ3Oi; GZbLB솒qr0Tj44eYЅ3e(R#+1b+&,<ICc>uv!_i#Z9"q~t3O=CW<<ׂUMDMKlGd<\G+]ظCvsgR\1'L'~{M.F|:Ux}HgX/ۭ}dἒF XSl(V0y_1>k,Ϧ6MP_nzhT=/&xDn{˼4~o2Xqx~V.5o!R&#E5:[3lSV>tr n|Z;n_BGq=c7~r^q?_1ent({/#17sFX"wKz>ٷJyHY")sӦ^תffp&fGC 㶻yXtqp>_\Icl h7xZk/%+<~jDͶm$/86j"K'T}5xn'B.JM'…T #x.=S]>DCOщ ۉRdɗN˻zQ|SGusܴƨ8ڰA\(a/exG¼u˶_< ŰP?46ѩDbvb|N& tjlfb?Zhlhl^}(d\ :U=2l-p4z M.Ĝz6R/o}ۯfeyxYVM D@E\sk ͋ハ~$ Jpya/3k®3 O&H ť:[iqƍdIN~4iI8Fhʼnd:Kp"ҩuY-w dHl"F!" dһ1y[]IH~߼֟ϼ-B 9ƣNh 8os%Qo$ǽVfChѬ)'# sc'νԻcdVKE5?v հRߋ&\ǔ})hlUK{Fo4V-aWQE/H& 0ʞ /LFӖs# R5a8W7rfNEH&kSP-{U~=(BjĽ)1$9P={Ig@@By[X NttoU`݂ʆ?K&tu54t c/m䈭 m#_FgӥtIze6aI%<9sV[vy@h5Q*_,!-_P8fS<[t2-ִghFgw.Q̹;ܦ%db.]ѹ`P.k(6j<Ҡ׽t25$6rGO{/="65'퀗?(Т"[T;KIeN8xt?oo Ë7 :A@h5 ˄%(g^0 g;V1E^gƿN7kϻ!£C+6_ΟD5h:l :IL-jOV/t L,VhD-Z5+垐ßol%)l&gMS/wn12Hz4V;hlꏪGOu-h$EȦΕ_Cl[UtNNꔔ=KKcn$J#P=CE|jhM#'|:h5(wz>0uvY-1]=דO9j RW۝ zWCFcu&洓SI='GvmJ7ԤX*.e*3qrOKZI?鶎wl8Hx2\~`i,q:|ƒĹ@бv"C̤ɭ5y "5*#fP*.ʆS"f[@hi;s0shcZiEZ9 x{2¬މcaW-{d^_RsdXrK}nzx[ƞҫʀ0ښg"V;_aTBۗɻ/08Qԯ;3aayήTdw)?Og&k3sw&!HfeP Kӥ-3Tn帑̓(N0a .+VCf)(~*)Y[oO Pz6Dǜz4Xx~siG m*B?=t H=Gv # ѧ1#6Hc'xH#b,l/L^ho' ] ,r _Թ {KH׊u{D 6,0g~'Pd[B\POehC_3Ъ"6%UȺjI#~aLL R1OϗA7QVCh䈈΢O& xrT)潓8٫rHc^ax`t! Kef~jiX1Xe3R"V#Y~#kfK:`auvOĸivsϼ]^=t-&I( b4k 1 2Xx!(Iod  0 $ot`7GeCء(zSn sM r'ŋ8e&F}l$:[g4 A@[YE+Ԫ?,i.3PDxbuT4aHE)wE MxIa5tuP߆g(^ AvWNFclT_&),3TX1WYW?4xu'/6XW=K\" ҳΟ_G^Wp1YSp:YqZhi5kC<Ř5u$jÚHGMrPWm9F^)Rܦ.<!M9 ]7+`,T~L1AP E$V8eb0*-{_3+__侰B]1N0{ $27^av'\ObTAQdTBp*l O.ɭeYgv=#j,s坄5;ƍbWFh-E:}p I&:r&ض%RE~+l2",utLPChܱ`w(͸HxY-;{MɹKbvGK` ܰ-f(5mpnckW?fꢸȢKG?5r=DԞ* i)V^AҶӮ% sD ܋A}KG)o ψɿ@ {—UJ`URW;ڱG5:Bg70Ą0P"晆b cBEq]+{*\G+FON2{ڈV!c*(M,g}Gx37R]a5kW/j%z:v^=L(0"`N@2' XO0 }q.YѰn7¿f*C.~d}lu8FK{-}r fe#u42Y|C [lRoxJ=?ry~.a/6tg uCgڅ|5hݽo,@Jookq ݖUU%#^aP>6P9Uj 2Bغ?<ۺ-ҩTTgLcIuفm;?dUTLY?=QuAg0MY1S~X;+:zs)m1 {'R>w$h;nzhRNSn-c=) ?Z7}yi#^k#/3eymlT[6H>K aXx9)si<. ˅ģ4Vnɜ>ظ"ƫo8HxdD#rۂ.MF\IIUQMU#~](#(2vxbe)|Źdg {^JV_Ӂ5sX~oNRh#z1lA[u㒩5ڿd9f'# x29Jq 2cqP)[F:qTⰭT Bs!a_鰁*t*EJyUZ<3;T}}L@.#RG$/&@;4d&ǞFJ0%ٜv TɤGǀn&wpQeBۑS$ǚ 2/#rpZԅq4Bނ잦yBM,1ef ,7?BpޘaEC/ͳȮpZ@"zzpx_}킎1]̓j9J#Kaٷ/-Jn3ZO V߉v V׻ׅm{\FqI,0 4"Ͽr{Dfv2VEu~ M" Q!i+M3 ՅA$>E._N.ip+8G# -J5k[( a\ji!ZrA OEM\<,C=p& 4Zw*}6_DQ+Sw wWi LcԒԘ⢠HfBOr_,(BM7L<}䤞Bk(WH˚Z}-2ټ}%o$pH6b~27C8lkPSzqT ފϧ3J ~5aCDgd& *2ޝ̑_@`~u5^"M`)[i'pʳxZxT>.-(٢ dZME% %+m^b^3/rH,Qa*]ѵDg`SjGִpojNbX 1~Y~z6ʑhEnhiiG&>O .G^ȏ/sGKdmD6cWwIBhlBygbew.8]Y5!CqdhA3Jˎb;ouA=>ݿHRr')W pdf嗰L6b ({Rgo3XIH̹ 9V/m瑲OveCr= EtqZLnthu>p9 Uݎd.Y?E]$O].-80Aԭ5b9gYZusblcd.ko.xz000064400000011764147564244100007033 0ustar007zXZִF!t/H|]?Eh=ڜ.+b ;oˈ?bғN6uUʕh*)dﵙw>i󕣨:̄|DcFδFsJ)C K?W[J8gs`o{Dҹh/C]ਮ)^Fs%P*}M%pY|L{U9x0Td#I{> x5{cbcvT#J{ ,9|Ai8zsF1ⅉwsKT΄̜նްir@ͷʉik%u68i(YLH29/>a?waRG[DS:2D8szS0-J2)m&-t$V nxXHwP ԒMSvzE@D[@Drc:'716 .zV=51YAQ'pG>:FK钭c_V;=}yO> f>AKc7HQ}N:ro%້pa `Y|ae*X"ko )ꀺTqH ;ރ|6~8 ?Xu@-:wrR@̚lMwU:I+4߻=`8~s4qּ`Xx^b xZ lߔ2#/7VJHcU-% WdxGGoq1l3q$t?a1az7 8. Q6(i UlcJ!Dɥx ʼn8( ,USRXO,pR?z<~EؿHҍٓe3z4⸴߿i>c)@H ȠYa륌fNUUޠs4Wٜm%qb񼊣l=rO,(Z9m›¸yV&@´nbĮ ўܽif 8@2&pW&Sf.=ֵw^}A]?<[,95]bQ+Tsm(]81@(J]i0=] & kj˒ʋ8 .[bz jv$ɼa]M$[%NGZ7zNMi…,*Ƿ ,1m"'XWޙٮwvƻL?3V '`C)H H,<i]1KFnmÚQ 9^¿ʾhrԓ6K?t;BJcq%RdI4ϱ\HXnkڏ*^!'[mUD_5WJ5?T,랙oCiUv?O.&!2%㲯jBkJ'Ӭ־O]B:)E$oyI>uP-rwꢡ׆O> s"=, umN9o!w͛~7Kv):CU{' a甿 "h5?I"5L W | gsfP+ih(e(nzOpV Fk7 '-׳Eކ$r~%jj3Q3g4Ӱbկ=*Qݍ ՝C'A ;to ԘJh$5${LVN}4n+Q['qXry.༭WzqV>\"mDz Dz"6kAPϏy> 2"0EB#@>={*ӧWP.ׁQ^7Y2~>I}gw@F0nz*IVXC2$t-f +3ev\YUQHʦ;ѝHqoGgB TLE,͖А '8cP F1,AQjQ^ćUi|2D/x N<|6K_Lކj~ ~P.ob:uBB?3Ǔ1gf?fŶ̬^ Z0bl_LW+쮘3r߬W\0M qqa ,HҒ'o!ĘOFݩL&g(n36BA em2⃫SZ% n J.͌Y>[o> :.8ՠڀqPGϲ  Uj$,V›M]6m\&2..uL ۹|\O3/,BMCjZݙx|/wʽ|'tBS^wφD @V -Y%אG@\s ɂF3Q=2Ix<> SU]V1UL {)#BfdaS2ly]#oq i볶>K,nR_*CuS/ץIvDWScjRi"KŲt:ϗ萌{r6d5cb Fl"^((^<…tWՑcRfԝnll1U6q̀ǶIPם}@}kAA!,:hت_o4VѷAÅxrf];ctUTnJ2Kfw X\D6 o׋ZK0"$p'.M~\TV%5z.)aXZbUk=aIr XIu!pc:)4Pdg֋#~x;=IHΕ7_KږYlҮDD%a7@e|b 7^\,A û]WJmf=[' 4*3EBI핵[v`DtVwȺ9ƃ՜AnH %!uc*V/pd$=dBt8NI`a)&Zϥ^G`>"ix27#gձ9gsWD%\I_"3^u 4Ka9@N7IH&dvT zxZ,z@+#ZLjJw VTFӺ>1\Ӟ3d2@Zyf>5Ӑ]>Л(ThVŰh5"+xS/9/ܨfzE H Gr<^YfBQSa.2<=qzICbP+ =ц&%ZNjJ<^Ӂyw$.35 #Z{n^&l+ f[z`Us,oh!,>tq!T3@=pЍ_GYj=%*k"}'R gYZftdi-elan.ko.xz000064400000035434147564244100007422 0ustar007zXZִF!t/:]?Eh=ڜ.+НVra˥et涯7~ܿ]AX3!K[9lR!w\?OLDzi ڙ_i&+ƥj@%[/'B- nki:J-g>/kZD%Zxnch8ŰLeHbV _ 224٫~seӨ]oÏvb(Iecs ˅%PU.Wio` :o5^aӸ,i>Eyj:MKyު9 gߺԘ>|k>Pc>tc$=2f^c+MXx*<ÖT.M 'xY IgQkٻl3o_r&O gˤ93+*:nG87Z̻N>kp@lKA~qo$}p[bm~DtWtY8A|.fߛ>`|RiO EF"' M*6L}8sT}/DՂ '^xspU;xqQ)JX/l FZZ 1ѺfKag`ܭԭp{bƔaǧYZUFLkjs-٠O}wrj@VG }1%v*pIk]i_N5Q.w^OE/!^"b5?3F|ūeFO2h Vs\ k` +uzS `ܧe!UE˷DlFCf|Bh52˦8ysf{i ii677-/c$l00R)䤴1cS%˪%[ v">)&s\9q}|*c ȿ!(˲Jy&km,GW}g_f:DWtHTOt Ng3Ihx%Q0PPJ҃D7>S%(. W񠬉@C.p'HVAcm  )EY\c&`p9+v~tHxv3VU)Reƭ^Ʃw>x S)́M@۽$/~+qPtf)@U7FA(NBlQ0Jֳ7霪I#38^fYsR& Mw;=߈Jߖ07&(wole!@s[)˾wpk op ׷ېa'0/WwT8mh(8b(+z'H ͣnO tr̵܋.rC>\Jޢo NrͰ*Y*¹ًoprz9sMb=LCzdPmùLZ.-ItB1ҽYEhiRAF,oaEW%R+SyY&wo-36$D# ,J)!eiʯFTXjN=^l "`5)#d/Znv4>b,\?s xm~6݆E0 ^(s C/\!tqI5,# $0Sw.0T7,j]54Ϗ昭qDX!p`5zi*F*XQl8\& ى\jgv>I5 G}#6RJV4R(I /KhJҹq[n/4]<b^śWs oy/Jh 7kJvǣbblI7yJ?k+ 89HgHIjoi!RvECW>`95@烴𻯓xXѦv-aci5[y (l%=cX?es[vÕ200tssε'NN(MDj/ eGG)UU`k2$VXA*Li=K=YOzn#\&ת̚;֎xe`E]>xV+zmb?+7QQE_: ЄY3odzm$νr俴=S0w-$zxP<&.0LY_^EMzR2 ٝ֌Bjڄ]" 5y;XLW 4R|Nܙ^RoDHK;^Xbqi/綑ZЕ1~Z6_@xO2"CB/($.;1r yߍln j2P 8i٦mY\D5 8~ rFWK0d~F<^F/m'YFĮ駣\B/t`+\Y8]uE;w$6~@P84UqdBc𗫐0m%[K=,.c:e'!,DC̀ӊߨAؒG;55}\+<ا\O&4%Mo+֒eqlLχŀ!J$XAh,t=pf'#ah6W8l|ka,lG4gC 3őwU_0y QVd&O .SlDa\]=E>`6~/H&-gxoA,FP' 10FeGn~'X~Ӏ֖"*Ż:*a-YnxNBMaEtLѓҴN ô~Hg;g;0xTguv@ϸ %ߌwڞPN1W&Љ.K):tñFBH!n cEc4.߻IxX]M՗ו((uG&\+mw։>`J4@(5Q!.YSs&-٬!(+!T" } f:oB+)8VFhہD?FbU6NZkOy99]K3A(*"t l.᧳-LWx6S z NxJ<= 1ڼ%JR.cWyzC/ 7{|ޖ?f˾],Wmuh;RdOZ֩9~]GԓGd$~# .(2v},gm(@g]H> `эLs4qEBk&fZ^h:&yzSΚS)n4AH߃{eB˧RdREZ֦&*zWZZNƕixU4~1ŽN 9\Q12Xs9}TИJev[j-dv­C °O|wPMʜ*A{g0:}bߨjfGW. 9轌H9Wn0 )v>FY~c°vpź-|2r%O'^ިSZ8=p0?/sr,+G$ڊ;/E G=gIf} 5j;c eŏj"?隨ar e'@ űo;lOw4tqW\/7JNWkƽɶ\N)>NdMX*:)t)&{f?~laCXҟa8Ĩ>vL 4֣qFbP#bOVxʫCءncM_9|@eI$l*Zswz0wQO^A MY7|($ o0GuqWJpg'̦#8rsD5*-0GZ̸OЖ#X H;@mw{&~u/諉 jEY%'W {~]PNȎGw%;_ r9Qq۽ h"؟Z5@-rr4sYS> 0a  vDV~IUsOcAp.} Q"m(L@!z}tCa2b߉N@>\mƜ,IX^_b/yBl_[pݝ$BQMk X"M[E<.%:7Ir KL r1^Rvjƫy]q-y^5F_e>`EJJ* lc~iB֙W0;D]s&n%taB-[`jG#,>6| `_<?f2ajyNd8nͥs2"=6KROfOs4 N:'K|&NF{<[+lb 42Cu>@%xfVFDU~_ [tEmLTjww v;|ce"#y_;Fœ\=Ѝв/4\ u0 IKO{%=M 29%o2?%%`|̠Gk\{iq1pjj\;NKY]:I$`\?1 =94I'gً6J Y/co%**0ǝ(ij3-M4d[-=L!c[L1ߋ[)[\XOb-f@qP@]~g8P[1u_Je=oX,# ~6x~.J2A/3G* ZDzE>:)bV3L9i{yMeYzb HcUYZip2B0^gJ  O٪s8$v-^ŤI:AԠՖ1ַ*2O){j@P!NW\w&oz ZUqi }Q 4DwŶ) pYIe1+k+:Ÿ\iE_ j\xݤfxҌ1⪁NvkB)C@ 6I*[ iG{h8"hnoZp+M t҇h8CȋsSN@8{F#7qZg-qGɗ?,N (͆2*ԽKyW%*IuҜH i(+Zd,N/}#mV C+Y(ZBp[,3e'T:1ʎ­WvyUYzfX3 3(7)Z]{īqy'6Kcrb}y-l/l깖OYOYTÚDn/ݲͨ}=@/!Jn﯌x!w^ˤ3K|lYDmqAMBjZV3O P?h'l`)UHg/ftH;N }:Cwc;j KS`ţ;cl{vE\'ȼP^zo 99L)LrcNtW$NQ;P7km:"{6"y}q+}z9RL"[/=_BiO68XoN5K\eYIJ/Qă8v("*`2{C8%لmy%gHsǧcu,6V;9 }3/^ĸ#`sHF7p4&g~jN!iYUXK_Q!<:o@SݑGFOy:K԰f @#Y7 !{ 3'Ṋ`΅މdEe˪)nKcXS-EZ_mED7wl?qd6TQ|.ʞ#m׊/JMa,d"B#!g3RKL8A,.qwh+Y@NOMbn|^{%vg$H!fU84v5wW[.8I}y_AI~†6Ex:Lj;fRP7,|Y;]k.o|FCӎ-oܫkJ7?*cyR#־9S+ Y:I=LW5 y;_#%yBo}g'J,0oGl w_Nldʊzf2wbY0~F.sF"H'm~A<H0YFw4_X (EԲy޳kB%DDdf8QEuʁs솙PuCS2REn|aDPnG~|Gvv1Qΐy>?xl#ATw+/f+ A(ixc?a|DIcqKi3xC$p^Tf=(6%GO$"I¯]FVڨe,"fyof%M򯽌 d!ՠ]#ӱTmB-%kфwB:.&Z}4h:=* චk&@k,@zJU4Gu(ۅy!0 ][մ9~!\$ljۖ(\c{S5d[;- /K`åxzrJZ4s;J'fEfe^ܩ |a3M>ᥒ%٢Db^cK,%Qp0^5Sk|;; m!׽.b80Jd7 KY)>*zʾ*q&⇹&D vNw9f qQ/G.Mýsa5(PSg[PBVܻ/T3} ۺ&'z{)VףHn؎zJ[P Zm5d#E//*WD/1 d]2L7 m|=e5"U@B^+/[o7:t;|=č*<+^aMQOB/' % b:t4&#y~LRvV4f= #, ld P229@($,lE0cc{m2k3H+eL},_Kws3M}h[&Lq◚<,ʲ5Tpb7 K3X~5g俜\4 " DIӏYWU^_t]dkB#7-W'۵aS^rX1[ㅜ|Ce]( L6je̠S6+gND-=,b;@XFus+tߊjGQze@,$#?-]q0WHt;b1 Q(F-`')[R"=PBь.![Y( 2X1R%@wݚgp x#,kCrD8;s?YZWK?lD*fcX f eI{D8s_ A}88 ܖ)4\r𿶬pX;5 R.%)2&x1\|CD[y92`T".Ƿ])QnQ"9gCFgrǽҏzc=ح# mŸ.\Hqwl~`뻩<2 ER[>ng9Z:dH [ T:ӛl5kD[ & X/՝pد/+I=ڏ0z$>u>с.ڈ3s*F FLB)a!nc"X rK'ly?XcE^nWW3!.0f-$B_7@<sUחLτўlj>Za2pp  u-N Ktx F.i~0T }RIPijyp֖o'EYN73hO &Ÿs.ҦAS;sGq^9*>7SZO(=-E۞ ˧r.J + 5p~{"sQ]B^ϪM]F砜hD\ \3E: #aĤ16kzd  Z Uׅ{'~m^m_2Q@j-^GtbD3a>2eR\>{Y S1}e qòxBf1Z|#0VBVK0l2Am)d]"e9cF;EnJD:П;$Jj3Au6;+h8%To+ȴ.r_V}#3'B 7][du{M=. 5{Mu?dl|喭ޏZS-* /#+:_jN06T C)eG+kw˜diR o`y~zEzoq|DCd^׬l48'8t%I!8Za4WrA# *sH,ni 3TvQôpY$ˠ:퍮s8OC?]l5\ʸf4Q }`VXa`jy%~eECeC'nEvFFuq\l\ӫ;E)ق:4 Tlgf8B{Q;W0K`n~\케42;\R~N\Qoئ[)C):(2ӳ0.P!0OpX)/rgT6tK< x?bmlM,ta=N 0~XbA>';ug;V#l+ *;Jy iٌ9  s8u*tGb@B ~2צyt:=[|U.WD: R'j+m h! ^$V<Ѵ$hVpY T X_H7a_3OLms;ϱX4o׊_\J59v -1I5϶-0_7#ZwA{j~ݪe.a v,NUzT8YCS)H[B{ I&y{ "=-)]$7MQMqS^K BCS7ݪ`wX|{#E9םߡ8=Q!X#AYJYH0,퓏3YLd5h_$Gi1w~Zaˌq%!~<HRt :QMM3Y1ráHHx$,~2g%NY YH>5 N7F>̧WA~Ų9dUέoB$DپA=3ij tw M{JMG'~"IIo~M7U0H0IL#g@ 'CrUNz4_K~R~Úk84]?e>!~tYP'}:,+0S{C VE{2BYԆ>JRG]cr)}FuMyBZn,LjjǤ-jd[R5X?$b$F.?8ĬI,Q(,*Ƈ&,J{ Bewԓ*|{zI1d"Q`9g8+^q7QRshcQB%* 0Ǥr.%=;JMStzlgD1idi1Cp]4-\ʸ{$N I_0f\v] ]qI]y3ꡀRuxՕ;RfK}`Fcܪb9)ZxK6VE6A'ds>THrAwUqEګDɭ;c r-٭ Oߊn3XۥR Lvr MOl͇  iu-JRKޫMO5:u]U,Iua iUО;Ii&`Q[lMFVcne͋ʕU)wAK:TCõNcaTʷ) XW1ࢽ\ z%Wu5E$55Y)$Y H7,đưl p-`M]cIB9uLgYZemi62.ko.xz000064400000006544147564244100006501 0ustar007zXZִF!t/. $]?Eh=ڜ.+δ^p~cJZvP5#@$O2@ѓ-;al&*!54;4CyLkM谍O^~*F1.z >A!tuvj$ӾԿ?9ȲR}O0y#Έ1j(O|Pa޽ }?QkJL>@r r5 B%K^{Z@ſ|ţ nCtJ=,<ǂw:%ZrTIG =̈;SlR| g?^%}c6'!z+GEw1+oxIbZx̬s;:Q9NF:', ط59_4 q#nlq~O`B?V/yszAj ˳҄*VQLwmƴbBM5t)Rd<  &ʭ:k*wi,Rb^r0M :Ę{<;kcw9r\lfbɐ}h#^B =ۮq/"Sk'o;S ##2C}GU3>O4">E|VʼnpG0J`k Xs6^%fݽN Dl'V6@llOW濴ӠPՀoSM F @v7!X>чE&PV.MScUjd}[;?WPeW'YƩ~M>pbNJYƌXIZJsn$5}wǺ3yWR3=n,@cڪTֵYCeAzd7:ÿXq?г+[NWq!W7O `r)f̓A\E^ƂمKx'* F=4*&|u`wMʱĻ ?= s2㦦ɹwy[lQoZVyұF_Ӊ,({3程}%iF/ ل]aE]GIKV{yκJSLȼΥCab9],zW)EBD2*U*t-!`$ULߌK ,`=rGdB9=S zᝩdbR|<)WbT׀ >2Gs> ݢ΅n/\8ZY?_tgr.F9i62Ukk"sf9\q%󅴣3JNx΄w e 8=a?ӧ Ȣλi]=:|]krQxhOag* łC<`2A Xbn=(v54ԭ$/(!`c7kQEE f/s[qݐ{B뼧Hgp+4DP\|PZ:F Ad,vMz#>wN84)LPh AJm$˪%ss%_4G]Gn:ho$5%k%NlmR:=5oOf2ͼl2n5đL{'p",l̍w*GqgQY8 Ȉ1jC7uM=Y+v5 W߭dz& ׺jN H]Z\Z'rƮK]_mWtB}Q0Ư Iqf+t3_xlǥ_E/~c9}ˋ)&"oKri`dܳĝKr!Df1^~vC'9ԧ3F: (#]}&IBA"I4ѵ С Ix/0 R|9^6^Hq̌BZS0.LE)FBa]y|V7 oե@Cu1S(Ϙy7MyX%87c2߈k8,3K HN?U'ݺr># @|Q:G ^$l51w)6pmXD256|w {m,U*b:ԓf #io }}4LHDA-Z5#"~8Y)a1wWJVg?IUž] q%y쇂2szѮHPn|w=}U:䴑{"Bk17b*PuPL|Oj?eqDPјNd_UC jKSJ{ VLfau;`<4#dNM*DʟRE?O(qVIU|H$ ^U>Z^ _*Cb0qIx\aұgYZadutux.ko.xz000064400000016414147564244100007066 0ustar007zXZִF!t/x]?Eh=ڜ.+Va!iNejeWm8j\(HW(Ilo21W5o'!Kf(e5x-ԩl! JoG9ARGjy8h;hp(kե0_'жߕG7C̐ :) it)7:?%#pc?'"> Z\>l ܕcV qWڝ s{ p: s*аpBc+zcm΢ƛQ,w{MixqE"4/ٕ8Z'w D4fp=`4*ՍG#ҎØ#e(Vd.vH`DS"Q8ZXwŁUe|V4'P2uЅUNm_/ߛ#zΆ˒aŀF8&+݆`:1cgıpAȟk ؘv 0 *W@ttT'Hń8^ @N\_R*= BdȔ̲Ѻ&u;é>SӁ_<Oag3NCX^E$ (-#8p#]xD{]0 Zj(rjƽSb0܇84kJir; J?*yҰtۂuu<6wVrb` 3[+ :'-mbY.zk~eY'˴Fb̜@)[?d[U$}X4KZA%aAt͒5K=݆,z[CgH^w{aK~Mw ,'Jh`c(9P}޻C *e=%Մ?P<K| ^"7DMѫVo*b-ˡQzjY4qknfK*aPRΪmQ> YP w@P̕QdM3{ yP|TmJa1B-N ]3F,A| $2㌎UuN#sy"S~S{rpC6VȥJ8奈mۥ4啬M#ujEt0@Xbb_Sʇ;n}ȭeK D]:JʥGaM|w_OLgXs$[[0!.lrBM6%耏+Jy\1;~HnHp#ndjiΘKnMNşz@];e$xI/{zjb-و4l\QqBw"J|@f?xT:LK[=,tE|%|gd mȢ;qW& x 2TėWzg-lP +܈fnc=Ė/ہ#{)QQP9CoϟQ\јUt;.TtF2pM@#7Y)ZMA65 .)Xw?m«BW_RGX>*æۧ3xNCҡW_wlL/B]Ib6|NL]vI s3l, -)-K`XCon|ƪ!OR#d BՔ@~X$S<`pd,9ߛTG)E3|þl:} .X7z~ԯZ`УAR|Ӵ=%;B80:'&hLNJۯ"E \t]쒓2ee:K)R=8=nI 捚\LȖL4%vNQM_Bǧaȯ!֘ o\!IE,'!q9YY3OL~a2hcTC3HhmaMpu'onλiy])1k&VNX >JNmw&Lil 䇏NdS@cH#K Y5RvSg2D\%n60D\an7vI%|Hf9 pP y"=8zOF=dC{C IPY vnn(ؠ ;5'Pˑ/;4i\"@) {@ ,@Vnֽ(5bZc0 Hwװ?>JCavJڝ(3;#W d qrqlXD_0(/woYJNoޭT%Λy:vKwHt]`QO:spuwg!́'H5tε{v )mUb +Uq\LKs̮0#&Rywфt践 ݯ[tn 3>GTuv𡍚;O &wJEګzIȕ&  ՙ#8[n~vź[4Lov?5BzKe]?&TGգ\5ćgIt`@j_E(PHby´W25<dxPxuP]Y|4UIW 29_g#k?g2t#s8 #QO~'lq?+LpbRIEJQfuV^ KsR% |iuƝθPu3w^l\i'`-(G"Q\ޅwFM:j!#5VzsYttO$7 CTSouaܙF9 L}f}K#ͧ`.*;29;51@Dߦ8"x)xKޟM)*o5m}GdCru2RCʫH܉%r|1!E=X]{]}cSvJ'y3 [CN0B=V̲ל39::є*4`8+y? `g>. |Lb i*?U% oX4ʂ!ez@XT-c)fB:?'mAV=x| V5^􇫅E'-U:$6s|t]([S' PB8Je-zՅ,oM0RS:8 g,z^gm :2C;fD8yXy4^'rɠƩ6XHQ,U/~tgf ~DۜPskTOmNTح'f.GoējCݜcX(󹙚w_7 *Gf MhnGDP&XQQ  * r$9QA^H44n_G(BA%xx" Fu!kB~-w,MO/j2qդЫ(&>w|>`ciey6@755!.ysQ7r dX祂y/*019 KԆ R'\kPnJS c٦M#Nn +ť/V}0/]0?D #PMYK.;շj$݄ESODv?-'=cٲttE3zJp9,͐ᒻuw~P OySBWExS8@-c5gʤ@h}UVͩ(=~4/ǫ$(XĈ({:.aFnLR=f}A}s> l2aD" dĆ} +&Hec2ڷa5E ?tgDSF}і^+Bi\S y'^۠U|qI%DU ʴ 7{1Ȉ:^+: u!&ML`uhM؅|p0ZЂ(dBԏ؅& V,y:i ^qiq)դG0Wt028Vl4_UU}i1NMoz~oc %0 9\ŎS;eFWXLibDqROCMl{z[W8kʋ/./qC&C9ƣB΂cbu3m#MfX%"U,~g[QEX#rZUAM+QZB;% N50y2Y4C{o <"Upj%8 >FXwbyVJ2n ף́,˚tWʸWo^c)Z;f9WgYZiowarrior.ko.xz000064400000015770147564244100007575 0ustar007zXZִF!t/f]?Eh=ڜ.+Ϙ_ Zno_0Ra26bbA5ޖLo }?<+9vwt*r]^;{=|FvSTUs 1[j9@c|Xx`d`:o R2eϽs5m.#Z Zu>" |:1tOx|Jjk2BBNgl-Ү@VFe4WcRYR_9I8c빖lU3d-O4.ɰOs `.%Ȓ O -b2o{T ƏYD E ^/T=i5WJ.7%P$X( s 0 },K/MQ"?w{>ib)DbW]`(d s+rI9ǚXg~[S>Rz9rƼ%}6Qg9qhխa/ sZ?!iOrdr!FR*d ^(C a{G:̂?*owTە.k :}}goTo-a)xe(TWlI<֌F.kQټi5BM֊&8fMD1EExj HbiT9vHKY=o% lӅDҿ==E՗H2ft@BFsv~5Dq/Yb% 3,fH[1 YшG X i9w;*:z\ wKI(rl[5YqopJ`Ӈ/(V8C,g4vTdn(7 `-$yxsjfXƷpl Eby(Y;<,hV;^,ǟ^\T~?Á%brOJXƤn)tk[A=F{&4Kqv(0ըBІR>p ^(PEߜfQ[ѤpלD.hh,_|rGAX1 uL,&"%,RHXOeYs8ƞ̃4 K .pC7K:\dψSνJTeΡ kbk24;qɆ,z84:`ehTE˽:ҭiO4 K),` (9gҦ>H*SWL$)C#bdhv\}X4ݥOfs~#8cs//@2gO`z9nVdflF# y.ЪV>{%6Ѻ 2]5]frBob)2Ro}f`wORrYY3zss4UBYwt@E2,^%ؤ3higBKwb-f {(%w]O{+?1ө{vni@WLL4D GZ: F(un6#Q"GQi_ ݜ;)wE`kb/Bc;B~E!N}Zz8uJw86itk0}㋆=QZzjA4&09.ʸzFh;4:*ٵ=U̿)o['s 9߭1~[hc(Xe+zSX}R=p6BH>ؒU7y3x5$ Х*@R &V[Jym%A=_hOZ+w'e1do1t؇׋&qu+967ijq>۷cE[9:xUZǎ=// O'JR7G{X^#0HDĦqxAüKO4 ucŽӟ\T*JQt&|wخ?#fIH> i1 F0A w+H9` [au $rhVF:ւC}(v!UP~5 p3o*P%No[C}}$&ߺTH,0tW~7@od+" dCdQ7ꔆ 3.J]M)EEFgUCeP-v<*DH80 Jp^gTd6.I'#$ paL~Bf->a݅!ByN]R)LEF"y/Ff8\5h Dq.Wn170RīB7(E϶D#ib1_;y}ph~/Od{ H#u;Έ9ۦ4s7ST˟ g4"LO xAR4#~jIF~L]X(L"HfrG>JvnA^zpu/o~x^@;8exLX _|gLxԽ욵]y8EIŎh[Uh->yYU@Nՠ"2GAΫ CRƋi!']\uռVw/ *IL2h-yNID,)؏x s>/uospIU/jߖnŀ u,@ u6d(y$$vj2º>đsshڶIy[HdF..8i"᪕i `QB5y%q)9.⼸wg& zEtcQK R&;%/V_\6cur"r}$D0ԝrzW mJ(TIcff>2 IpCA䳰Mܮ=E{J絛%'{fU6M%)Ey~1r!e~;a!"ߧ\ ];RIsXZ2~*\-rUDE8if(^s+Ҟ|jJi μc堆굧m*,fkqm"!5a Ma>үCd5t]ı(9&N;q麉ø렷)V)3U B|]T- sLuRp, ڸ|ʃj2,S= pV?Q"z!<ۺkCm=Zzeנ/S<)3C⿳QAU+zXk]1&{H]ꓫzggt ~~m 8uF ~O!u~QXԞÆ>^F/" #1BiT QbPnjPWM~P H$[#@H1UCW庲R)GgX!1z v ޕ&Z T+PtZ?K' -b&b(Aʐ h P:DN$} v4mbjF}C 6m3E}.QZ<~\>rO`3(ԖwWz >4o9s ysm*7Ý 5 ^s8PL\p!|Daf_~E2|G+H y-ٕRNa=KB7cni~8җ} $*{uxv*t)S۫n^/cM_yUn!bh:O8٬7Mʻ])& 5ɼy 3Jg3]ĥ7`(z7詔&Ǡ=ۡ~ru B\97ʮha9|84Q?0ҀQ\.^ފمn/Sš?]1fMjnt֤NG@h᳽ G y)fL-QkgZЦ 2Y)6yRw0#&v=zkд[Dk+<+K+og 5^UYn1a?V,\ې4gR?E>X םq$ιe- CgB.K5n zy3āڃmFgyyXSEҁ i 2xVOԼ?2.#7NZG ''2 3|H"PjmDw;o%n`6*u/+;R\{epHաs~,;bυS\h]j[2Ә2%叚[zTu53eZQ%F%#C{ ,:!D%4mc@OnWfEhZWn ."\JN*'ME| .  "cz~%?^s]3+VU@Eb >኿&nvXӆ\p$'pyKJFk 6G3.>>^`x6w[y aW/ވ6q6^U {8Xʭ`{+NYaB~{e!캙iqveE3=g\Rp_Cf]cZ&2*v4iI aU?πPo8 Oǿw&=2L|M{9\"NHHNNɴKŮN pwI6^vh=Rãl%Z64᪬MǷ{'y0SiP":H =F.,8Ӫ˞ $VX5*h%;ǤEy>tm1ZJ{R$%TrBe&$g|Ti(k t"wJsŸh42l3g.r2coa:qځцr<++Ko5<]h Hh;~<3w1xoφܲ9ym[їD͜NB41k)K}"-*9Y(Fn10}m1vز1VMV9RcovE"WΏ@b+ߦTCl1)?*vXիB~XJXgoQMN-݅FX2p '9d pğW6! u\j>LdǺ{ljJ!sx$1} ɝFxzGvڍ2\gd-u_º iWޭ"0@QELJ]y:yz 8l5Y)`ϼ_5@uR @+f$h sI3Lb0%` HU*@Yb,YK|j8/C9(f]u/" Ek8b*sg> WRam9Ȼ LF|7`|6nxs^1bh59sA|_9Yeϼ븆(*uEy#0~,jzң9 _W廎P5W }Ckh.`?DA&[0"DUbcM!]E|rLc>- u wUQk+5;0fq>m$7FIE sh<y#)F'$'(q/g[9vVʽ<6wIMjQ@=BkR6$dv͘*ah~kь"*@Fӊ-?L ~Oި_s(Iڴot-ud~E/14OyM4iYҨԟftO}S*TC*`}' +bͿ8/k[U'0 $ 9Y- Qבږ[fd9=N[sX9vJjkP~Ke8Ѕ buVE$"kFJy`zS絸\j1bL~ .@=xq$ӽE[ߢp#,<[6'xVʹ'e}HU@_ySro,;Huf.V/hdQu Еw ;H|@<1 z(ܠ65_sRiK'ݣ#k:Ck*e|QADZ m +d@MaSmPK̢i쎖<$3wn/Q>{Mu9vqVrCs+}"fQ eWIYTֱ\# Eܼ\{r4+F"7o{x.V*BE5nEPE=h~B|J|:5Bqȁ!8 bbGMXhz,щ ?CpNNrT25Ue5<П?VT@N(Y} גϊ)[ ΚDxu6V i~9o +wQol[Ι!>]kM$1{yy5l}\H#1Ƌ׽oj2pIyo|~ׂ3C&H ?Vֳqu>Xp"#e7/)eyGQ #zF\hKx`XT7,;^8} ^ ZR\ϼ֟O_!^$[\}pN~xkq@Ga,X::}DZʍly9lFO "TnцT Ϲ OMꤧz !{FNk$%KBV `9+G8DͿMj÷OǰWƈ <]vzPa+)*8>B*PCpqJ.6!9!cܻ95RND*eꔳ_C=ع;~ ,rB`k~\d& $備B-H*t.o^Ѵz;]iVלEw b& &}ӂ+9bF:2pg5~hΫ,L c3$jMgI^!3z]X*< k(8cǡLBd[|qVE5e2 *`=MB ZN)ENFy،fh4 'Qm Uɂo uḠKW_#V+o̴ۺ8 Lan28 uU\4Yx,*I9#EmyF#2Pd娶r"pX*8fu>[٩ ؀l%x>i)8tAƎ(R$!h2ޝ<=¬}t6zjFnc?'/?W]1z]v\:!`t8R0FQk! >y$+8s)X0I]\K :ѭө`D+˶Ʒ6L{̓v N548ۀ(0wg|b2;d7iDN_/4?*vĮR>xPHpPaАrv^  ѮFaodsU[qJ/Cd|8ʣ!͍qc;h[`ڦRbZ^Nmnv JJi\q-i *¤C#J ӽ1 iݥ*.D\BCH:S>"aO_NI8+x&OZoFzza3Oe X VAAّ ~8r0*\3TR5т7j쎺BNKuj+T]x֕,99˓}6q73Ch0>u z+n =]\ZD[]Vdo̒W>hD ކ#(RyгG%S1Y\lJ}ard"6o\-\ Jl9Z2%w\F-yZuI!"j ^Do^ . e@I[$wlK~]W;#å%{1mcU'D Ggկ ;&Ήj{8n"'ԊTd33'<ceXPʠHwDpŵzLv%z}F|c767%ǎuUw8j*Cgc2kx& q%/00~ R:K*.b*͸F6ex6f _2 {jS 9J(pII?r/٩{F]ິ_GUC?Y 20_p HMW_u|̈~ň0jE6b;q dݟ۟ ֍bm/K !V[*Zk1sLʾppBcYI:9녲!0[[*{kyADhebPxCCsaH̆q*#R6 HGkv"cQb+`,| &ڟQ|`kkhwӽ0źoN4ųzqzLh:Q@!)ȴP(Jo$ZY72tW+n4|%OQh_TukF|p-J:L[wG(. NbXrC|MC~>HvgNV(ڪœ}*_ kg{|o j ӦS)yc&_]@yq-e;7,KV-߁̞=j*BoXcpa|pW_v1@%~-g!q]m/yΤ'3|qCU([D&+T4BtmI:jJbFA;cyz~ikae-%91nMaӪ˄B7wy"Pգ~ÿ'T-M8m/vfda!S]ϙPB-BF6u\#I{4Dd 2I1G0t 56({.s q9Į}B{+dWw|}</kLvaJ,V}΋nĽ X8 ?,LMC:I#oNˬ~=gAԱ:{;-tQeLk5Ik>{ond% XA{KA>'6=ov 0# |*jc"  gMXhK7x}b]F;(Խ V!2%oPJ Ħ96\ypImT*QVYrϼ36|dx~f"y+{IZR߳8J|fr wu˻WVTR#}l3LrD^ IŌJW:lydC!dKm 1T`67 ~K㉘098޼gd3׍/(S^eAOEme#Ƃ}$qw ־&Ř"08z&$;hQS4g?F>YAL ܖ# x.?Ϙv uQPh+5kd5ɮ%p<2bb^OeHuDV>b_T7ǧ?&'70iF#xqwTLL~(]safv't$(svTv`u. 3lS|fEg>TGq{*L "ڌY##TG3X2r]xָڕֱoPEApEЭE׵ङ\mu`%c ^S'ǜV>(j0G u ,S(G"^<&̻/ 7r Dgs(Zm)?pFQIaI`oOc9.ĸc_m>2q@ܩיbv.F6N?7oj9!je }m& ZFj& 鮚b}u c((xlR'QͣC2i*n]R挡ٶyL\_gR du,TYDFj3O~Q\]X?=]I`cxD!pi,MA!&+t_eh˃ /ˀb;o"ޒʉ=7,*%fްтWUfZEmW}AWa6w=P T)͞Wh&r-ZK4'Nug…N @{.,5ˍhLç5fk%Ή݀(;M$#v9)œFd=Bj>jgуx*X*^m#IXb QI6 \f,9zOxH13*:/M7`vN7~@Ar"YL'1HUqUK5mF{ =+&J[XiAiz*bP%@Ζa.#lpN=7ro`]s4pt`ݚ:(LQ('Nx!#|msQJAgVo?. VW ‰{b1&9)_"?^<[ taYnkRmʒbwp& FԠT_o7D8`6=5 FXG֬qn&S/b'k!6jA}nk(iG=0  qWƒ{4jΝ|eDŸ)% %AH*ƨLpQ].7$x/"wq)E3GG ٫='(t{&V|Bd0(Щ滋s8[bFG& 3La2sK1/[IS;4HSd)AxFr$L,=I7b*i?aF³Mw҆S1;L F<ؓ Oq]Lnf1eWϲ47%*4M,5f{*sEPffwF'#*f;Ygff?iSeY⢢1qr)7=k7W+Vy`ݡ9:y'G.y(4HQ(WI)uES0_ /h#Va缼Q&^mWי{_E 8jv?E&wՋ*7}7p)dcf{KUlOHN"g7M^dȉL+||E]OD,KKp ~xgR1 Iʡ͜ }| Oj{`u83\ybp{.y?(.?}RzAA#glc ̭kRAzfGCh{'DhPM z=vŤ3'Q \_*.gYvxZKRk T f6ʴzqZB+[֛Kzİc ukL] 88.;g~@+ Bch4;iYCPo#ࠀo\9Pt2]_1iMAj$㻏8CzT'/xьw|WJײmֻQ[ >Wҧyyqqt5|)T&e nK:b=[:z Tm\S Pg(;| avFۭOfMrRuYde7C籙*mTGР6eTAP(qUl->hըg5_z/an cK+Wnr"Y ^c2\\5NRoqnNza2 5g-9Nb^;w5; vv+CksZaIL$)#~jjNSJIA&.7/oYs_P:ڃJm"MdϨ(Whqu'f&aS~L~8#st`E\M5'A~b@K _o`eHnːNM(%S -?zWbPe6KJ4Z>Mb8D(%Kӊ牫M{CU2pIw^mldR=-V^4p*pI %O LWۗM@mN9=0"d֥s '_C~TT!m& DX"8Y 폮L!3dcukn^s4 ;6/W/M~11hŨ{C| 4ͫ?6 z.L84 Ŋ@8VrYF_{<&LbK5g_׶o~(fmX-wsBx$I~YRGPCCe5LwoP WeI9+(ۿ,=>b &.z5/#7 'yM$ fwT'p~Βùq;GҴD<@ E3 Jix6Bx֊݇M3x]yޟp&Z16W ^A؜'d1)Rl[GxMt„]f{_sZT J*E#).e-Z F Z <~~H4ZfLi!26M(?sDcȯͷQǦnwѹFAFN'w/-e)JҘ/s 8D9Kf8$[~ AjЬkMw,rjPVPhQ>Ŗ&#L0 RCqtNȠ>kbӛz>I`+3f,%v0~*azagX9XbJͻD W8(/W,U>Zq o_ >O"Q&d׋4B`eUSH]n9Ve^*fcTkk/GDHJO*O7p i o"q"xԦ(RJ.KiV+˨c79 0g &me_kGKjt=$ؒYd\$ uẘ/?๶!GXD- #Յ}eHQ\b#!4*o2kdjT8T#^>dv 3!OzΌV{J3s98M_19#6iݰK2zfQiopP#4X% *ϕyMP$gQ WR.,Wh~Be`)m(vtit[$k9= ߋ$ZM[oVe}R8~ Q>b_ :ĔGlpkj&뷅}QŏxHuJ`+3jEVҡ.D]nOK:3&Ғ\8C6r}tHFJBr73'UpDv_%TLPNñ^2zps_w"9 ^fwOS!-ƐJZ,^QNFi͊V)-A }T5#8ⳕ7+%2n h@;:DՈ `NwD}"ѯw ؠ<, 9g?%>~L˂Up# n7[/dE bѣ ϔf%xdmQ槝=~Q< qJR0U_&a$s d B}wWD>o !3X/W(խc ^Pgwe`Qo^3Idkf/:qxXU4,0 ж9dm< E0FeQ^ʱ>lq-#33Ef3j>Pft!`.Jo!vB10q{eMFlػgB_󄬭+r%j%9%^૭Av4Er]B:AEr^}l-ƹR5tn }8Q>Q-WZF0YQ0l啖)Ä 7.Kqy4q.)|F1k\7zNOb`^jӻJkh +!iuPgGsѵKM~duHzo1J$fnFE>>(!sotzhl%eLAW-(}H'oBY',>85X$M @ Oioiм)_ =)đPD<axW B(g.!!E%'TC .X^ŋ\N uKGM*OU$ÿ0K<|$=,B煈Att 7 *f|C4E,b>G 9[cdӻHꦨԺd9SﭕUIUva5yӾ HK s9ⰆˆgY^@<"l&BX'sXjTdHZ GVx#Nx&B)ԥb(='bI5]WyѹoE:d` $NqFF_=(5T8ڌsDK΄ }D"/`fEep j 8FN4>n#cGWh4?/E9a&Yro-U_""oǍSSQb1+݌1Fї6Nœ5o5(#vƌI%"*SvC⧝ bB-['APDy `R/vCcw*q~7|+<0!o]̈́a!ΤԔMǥq|Lޔzkleڏe< 523ζS) |VC^U'Q} >9eY,3!Ėq8+ݕoT<"=\FӎB+lppY%f@5_VvmL~+,iC,<:qpޠ o;vl2`~"]ԱL}M}nQJڹ*ЄjV?RCsu74(pߴr9=¼Ùi; ? gjri6v2bF"p*ljѩH(<7GX1*=*o.Bwͥek_"ÑʅcɛmZ "0ƪ7_ Nl4^zf>ˮUDpK U~W:LeTCu'wO| <وhN%9;o罺ASW,GBvu`~v4٦W=z`Rxh7PR, Q.oD `O6-T*VP.8|Iܗe+!mC cFEgtܛWϛHF4Dh9;vCd{sIv1u }ܓ{ ZVQ2np Q꬙G9[pmeQ`D9PUf9}uT*vLSRo7'(6a΁uPt\C/$#%^G{$\\~ kLU1Bv7ՇOR=}6J^枨Tb;81e|PdҠܳ{&L8Q9?/U^yG뉻L-<gxU %E?YgokiKT^~D QN39WmB3j2B^XACtztJ0uя-:^z\_-,avNޜu:77Wq"biK@zG:ḢQj@ ,k9k.XK#ip $9giQJ˝XovaTze{SL$AG#@x,Nq};9\BSV#6C&'"I9:i-0TGfI5!&M إ)4Pr%\D> ?Y$3 r"N0s^K75_@1wC3KݥTWm,ZEoF] +("sq~,c$1 X;˶j*r~.Jp@~/a+WNiE<Ǝqzl jd$Ubз!,,_k&=# 0 OV$oeq/Ǟ0Ц 3g+Jv:q۔"Zt?9; zȸ1",`Ѕן/\Ł=$VDZeIQ׫YSoHJ3L GInb5OC7oSV>6ME@0xY9{ZB?HiPv+`5ؖ7nmQ&A0 ΟT>5"-8mpB?0P $@~Zsն0e nbH&yQ\O@oTx*pfwn4y jtpW5UFS΋y*`g2,zI7Z\/VI= :#r9SAy|rPM|^_]M*dLŢjL+# "mL@i9m}q<)05CKMeLemWmM*jbdGrYlHPl[_aqwA2؁B;h%5W}A̴'U\+3Z@31ʃfSy=gW9@&8":6T6`W6쮹W!hm<D+)Ɲ+lxon?/C`m2PI . SB8,1G2i,[-QO`҂dgb( |ى(yvzcFӟVӍy'QGGC6Z [d4!{!OYt0=N'*2AeSI5~XɗnjqgtBQXq:z}dcM/wR2յG9MnGU BpJ|:Z.81l هd4lR ޗ9.H̞.*9HI4IW^O ,b_(Cv|xLk;r+T_e1@cprӸ^s mяND>OgHm~O -y"m řIogia9/sJ)9鵇4NhGuu_i35] dWB/z"jZև67OAc`?O.^`0Jn@q(3UX.m E[j]0eaJˮl@QB/yl# !7M2ŪD9$yIƅLCw= bbUŌV +a6jrG n$З=4僥=ʼA0-sn5ڸ-"8aE2L`r !R/e ~HiXdP M  *11gO&n !|i{3=”N,quX4!sL-s ̟.?iH!TV)?Ϲ:;V :P~& 9=-r{]\{#^VPjWc=Bi#FljTF?yм%?~M #92¨zIB &^iV[fiGY”iQzAiS ]-Qz%/\Cq!6h0m@7'H|P04>~ƴo auϪl8 rkf'>zYۅk+ QzX5?ft-]k,h._0TPcb <_&j1* 7? xH%dOaFؗjn6dOGD tЏF!&e~-7]'{d̳LFk&twz6kS 1 ZLJ `axMhZ#ue;~zӅ#pb}z+t]h 4Aasȗ4ǶW{a~QBcA,1)#4~6Nw(jOϾăvgGVҜ,zpQZ]{ dq)]V;8üSv>T*j$ 5K<^ Um nӏʪaH1HV.isH?*WM|`y+3 pVxR4Eڵ ,C$E6`?i}O\0'8| ԼCaѦ!UنQـ>no|FOmq-\ 8G/cvtv}}\ǙuyWCStU]`6}s:Ӏ MIԔCO\T8q [`|)—31}^ѸW=)4P6Ǫ+'z.5thoq6`ZԩX{Iúlafj,>!ih>V0ͳR5 oY OåFd ?[8'5O$NAt&;-Qexql'S:pYK"֜rȰ wdlC 5$}HAg8b̔ ~jep_L`fE)C2jr\E3*4|'p4'/mE޼,^+-bLN{e# QՑ ~EC3`j %N#_4c|mq!A\ KYAI0a; pN(˖4ưKU[DfHH&KEAivYUbcE۳#$$qh{ 4UB/_gpR<zDU[P.!ڷ|͠^XRbJ$g(XB$2o%kg{@iEp ;X=AP OTcN=_\S6~ * zɭJ/O 0`k "SC3q9BkkDF'9=҅m2K5vx}zD 9\UG#р_Kn0R=س~jD{:w$;dBvJ[VO<ttI {;6J_Nd6',Q&YS;mI"ه13F[ղD<>uJo1F[ưXYv\mbȿ6 LD18:)Hr ZfhHMNㄽcF|UNR~^Yxr eܰXnHnϴu5R<7'|ͳ>7Lқ UB+?R, WL!*}/&AdFб_`Dp.:iԎ^ 8CfYx=QLm"&)6Y77χ9 I#DxqI2bdo Q>GދC{(px3q;3g([W f׫%\R:4ђFR`Z -cPٽ Tpôk j,Pup w9>vW,s6@~4#&^GX\U39!cT_yg/6&8O$bܵ@'PnfܯzP"a,Ի"ys6vFD|j;x&KVlE:|l,dtA#x†Fxz9iSv8W*ǔiFwp bRb8N51@-[Nem;7C'H߂H4|rU9ÊK I$ފ, c6,*JJ 9>7i䉇GoɊg֎AH{-\bt^#Kd`5KeԍܽUb.RS2dWھC:_ܔ#Dl$S%]W^kb8ʂ)0 =T]9/IaR5%5mM?{tחSI(KTe3è2 DoFK.{Q4IYs;|ِh+ q:Sh z'[0>|/\]l6&4G ndPBMujE7HSZV"/( C?YtXf6FQ~~`=,/Cxt-kviDཀT7ǵ٘sgaUŗx="kJ YFahU_+E b`Gv;ZDD3qFKw:F:#C4ʊꔩ<__'?7˥E{{ݍ`wi'WjEz6}'%rp 9':u婻G+n8mRH+MS -m+|cOi ZIUNT U;c3lG8 <F[E("̀} MmaRftv).Z{\~™S\=`$LcclTd%ciVL R,QY@vƫ!w QAx 52B& M0;beM Eih{>wvX4L =sBӣK6W&?3F *'Ru͌5Oj.0>6oiYGˎdRH/m  ^̨bdMKomFNJ˘n3O%z7̜jۃx1e{7?Y `jy-K k (BXs 1"Olj5*Vﵒ9d ~? ??w)L3=ֽ8A To0֧cݜ"NtǙ */rWE¸k?t"g➼n# McB;"*U6xT-2pmLED`5цH-D\ J;]ɀ^-k>+ g7U>ml'(~A[* t*M]׍.w^#TH2"v*R`+8t䫛"d977rHɘIFDbrA`%+:fQQ5Mɾ'ŢH0j^4  G]xIpPGY0cS~ZVX eKmcxb즵Yz_7##K,뺱a.cW^ScQ''3h9IjlJu}V@UkobMlwe3Zg#r %Lq&~PY_ND*q+J rek+XIWvb -PŖMӏa8|MR$I} 0:#6ڬL{ lgjD,*zfP[v+<w6ab:ϋ,FEO| 1c.ni4e6KWI,)"2!$21*2^:zqȜv:sP$V5 l1!LuXA6T({*W#.u^pV3W} p[yퟛ]^x91?ӗhQvUΒt$5|8!;XN|LE uynO]`D*W%Ut$"&) ~,jVBf(CC `"kh,$G1N # d{Y*}fȁ` RI%/ERs.O>eD {WRCXe-3\H,X쓹n+) W/'Ckސb.O9/r*Ώ(jyC ~EH\4 =mOyZ>ΦJ2N)R!; z5gFXƽR N4|^/) bB ;fʇ<5O 5nIJJ48?+Fkgh2.0g5fli !U^IۼIE-~Qh10*kn_\h$9zsD􁫏:-,FjgP%E UEL"r6 VsS߆uP.Jmsbiwd@A&q>Rƴz|̎E)՞8m_e@ H]z>+இ._ヴ3ݮZд-ɒIف(`2bSMJzѴ]NPNienH6vd]VJ# ڎa$ 15 dd:xFv{78ݯXyNjG)"[tJҾ)$)ˮ1Ww d0n( 7Ug׼d= .ḇCitaq"*2;N0PIJ5H"BL^z!v]i>q N4⧿d οwdrjJϽ/]Q@qryګH&@v*0QH vq ?E~iO\٬x:=x,FjȺ4dԊQí[4@h55V6ieDFV,gd1tWe`֝2ϴI]UpOEn?rTo ]v¬br bڣW f |+*SxNw}qp#UՐq/Ţ:/C Rʝ1ỢV$8,lGg4H̃{*XmW}k`ʔ䥕@+[J,a&#ªZ#G:Z(1>Rz!Mm!Tc+fM>.HvV|3 WiQ5zߺ"t" !s,!N+G(6~%5S4*lMbm*ӡLgN|i{kw v)UrG%aFn-ŗq^[O^ipkV3X\>#X8&0ӵOkF7N4~ȄP!;採 enYb@o[Ǥp{$'vhY8 d"#,DX6fԕ'\ڴ蛈Y }Σwhuާk#Nr/2*{f .x*1|G c^%;&,{\@4eJ]IY:hnntzGVo6Q"j OQkj!PY%~o{)u;"T/Ѥ5Ik' Ţ@N칂~Bʧ#-+TrٙvLq&J6I6`GlV󑪁0HAP W jQY]܎8ONKS6Ztjل#Γ÷xUҒ⬳'C؂fPW0h+z<<uVojqT3Èu~>S+sM+~87konih< Hyo}8 6&)sJAǃc,&uSZmb !}vx+!%?\e k+i-ef"vȪ?`ʪ.JbЛ0",e"\B]@bx+%]QtQ60/'f ֍%צo:[ݏu׾eiڂg]S`35ӽ_Ylxax8ԊVNGde&CK!ϣ(Za @n=rSYzJxwf]K !x@0saTs|0{~H4. T t:Z2S'oFGV_d/x C޴tp #]vxrnЉ'šS~d ʓR/ f n}~?)KV0D4 TpŁwًPlI <'K@qwDei$+S௎t -4vmصiZ@>J ,Ȁ䡴5AjjDkSVA*Yl߆\Ġ&hÓ3:EYQ3;¹hӮܺإ&?M:7kO!X$i vO=֙BTUh7v"[!Y AdL]kҡH!2+@kۢĴTOwʊu³+}łm'v)ĀmLj`P 2**5oLrSpG^_w PXsUEjV5T`?Y+$pk߽tFud.y>PVAL?)_CqwplM_3˦g%><c)+?`ݎXӢICrCLg8W$zs1ATI"񥌻0܌! mRd`S gL4x>ՁRg&a?SgHFO0*bȅVYC sǧ.z O ~ sP ZC8D®vHxXN* t)1v>uQ'0l 3QFozW Խj3t R6&pL…eдH;E$++5Ԍ;7?t^&O|S3V[`E[I9I9 <]RVQ|/T29,f:)M$Li±I^X/SxlM-UkeUP1š$mk(Cy&qڱrdvHat[ 7czR񃰄D!gYZlegousbtower.ko.xz000064400000016474147564244100010303 0ustar007zXZִF!t/s]?Eh=ڜ.+Z ]9ΛY.Zlh6!fih w<IJg3ԝouP+zJԝ]{aLb H/9u.wOM)0sɪ4Ԍ:A lhN(u#{eś×I8u^e?_iT ,֫EOepH,{jigkSbdլLZ 遘iQ!M9ݶ̩V)2WomDH%5AT5ͷ"@@zޝَ@6wWhPzDz([;pD"`NM="Y3`Cmqn҈$i3G#|E2y.D^[r /i5/D5縪}(1+XϺDZ҈Ng}jL.1yB,($ λl_77އ酢mō) Qd5sWAfqFe8XAv`ۜ]8;.j*tSMsSJCnUӘaX)3TTz˴ko6S?VCȾdV4}0`}.4Sp6pPkڡ~ ܕտ_`835F2JGMq< Ӟ)>4;ā5,d;p$0xkQྲྀ 0 sZ D Px!wɿnR Bh"{V-]+hGj9o1ˀhc"ʆ-r1 "b/8ȟ?!H1nrp;?l%*9H8A iT|_4+NL?NDO*QK$q3w;lB@pphAalfZ5/A M,ַ@͊zvذVtaz8g^:pT< Fn [_qoSr˖bkӬ*3\L<eόc3*Ob%T̮!cs~1ۄzVE_RQs) L*KE'v*-4cPj+ɵrw͘eH෸Mv:m5 <a-ȌЭ_ Gko=Ӓ4d-$MAA)!!2sKgϜZz1o hqkѷ1,%Lr֋ >x1L L*HtsVM$=9.w+{fj$Ƨ!ǍMO?$}go{%F/l~^}j;R7ϳWkS>ˌ&+aI9G(H/9\:Vit1O6[t\qEMS5&Y݊NqS(] <6 |PHDCU:YGP%σ~;iz'`0Pv>>4*KzXur7)AX?kTh^4fBɞa`ffPjk'Vf&Kr!qsߑ,%(ZPkHgޞṭD>Oʢ`uN;jhT ׭CtQn﷕ɲq= 8(u#&G XF]0\:)zwy[Q`M|JoևJĽm%%kKԢbvq EUJ`! 0XxKFN/M2\n'?Z}Ky:>|mX~s?=3-!}>%#nzڀL@G(3FnTVe^:삗U k?XHp$͹B0-0!^t$mUHܤ8qmGI%K# (a3:7;lGrET0l{pR| HYъ X&x"p}!v cv?ˋh ,EB#O"X2N2E꛳FX"2Ѷ)Gvpk5 ޗEOg{xmCRh.&WiD;r5qP ^n@Ǝl$H]Oә/PlNOB5I]f=$׾b_㜧2dN,JpHV\ fvBWb:΁Yuq EL?Tw1)Is4цU獶--SԐЕ^>a /TgݗֲcƞtPZE)\2ʷȚq]\Q:kǘӻ Q R@̅ʚw0kZkUZv6n/l߫lŨmɄ,8{?CyLy`FU+ " _DpE&P:&4s[ ϐr$"4^J&Rώǘ$ۥh%|ouΗ{\.6mҸ4ooQ 7-`varQ֠)rNѠ2]ދLn (oI?J2 &{lklhԝ9wg Crd3[c5ի;Kx޲ ި|-{U) L2m>R)E<* 0EOĦS r T95QYXC8Ά5<%AvʸUe;6 `_Hp{5H%8-#[Q0kJv3Tj),V茳74Zl7#fv@` t;u@! YQtY#4w=![5"94Fp,{- 2\&q)7 pl9]]RkMǪֽ*v6.EabCB1fM*R^_p߳Aoaڑ[ͪؽrQV;(az=<lst B-!Ls_@Zf%[.FBUɴ ёnV`*Qeד-b{xx-MTPsYJ%$uW%םW -g4vP;nw„Nb);c75Pyʟ[#[Y')͖EQMC(B !jGr4ZV+ gFe7E?}iv^];o}5ALtaG$e$*Aэ6}fQnjʥ "<[Lz- 5Q0M!q | 439bH[G㹮 C# Y=8lcCL9Ja?swfO(ykj_"6dl]VXqs2~UOyf^e [8ܼ|mYHRCb:/Joz>R*'c]K@ℌO%=;2;^ܤi4epd7.nzզq ; xV˫i-D3E৷m̃*v`)HiebRֿpS`hO7vd@I3Q`[lAmuDwBO;amb3V]4:G|(Q"=$?k3jQ7["e(B4x'jį]INcPQĠ i9vE .g&^ޘ 2ڰ w4ĥh+u>d Rnb]b4)XzSRYJ8 d(#ܸe}|}}hn%IxA֨nKvK,6(rWȞkR4ӳ[EQPTx%e/L7nVM>%:.ӀH߽D0s:R 5Kdi>Ⱥfw(E_Y؂,iShgX;i <ֱƁPuW3o xfc26Ϟ,"%.ϝ^P$3?P׮xV, 9L#(PsBx^{gQݰ@;yĞU7':Nl}i{o"/> i >0Fi#Rl߇NqTmIޅFkݩjUv4d:ve^ W!iTc=lJIZ5ze@s_Y#!Wgɬ_qu 4cQ Ĝ{ E@FN(,=0)hM }p^K'+4H}[_.Jh4c:")yPbq8 3/Up:NC&tNX ʞATa=RǦGȷwݳـDҤ{&9kI038qw؞Fizy}]4ߵc]m h0[zUf>%YniF6lރ,_PEC0g|= Dp'<(g»]JC˚ݞ;}fqx7`NlW[b.>xwiB4zCdX-ȏ|P$ԉ9S 2 PΥ?Qy5plJ5e݄mnjfNdfPANH*[ laBKf^CUYbeo~r^6 :ɤ:9q߁_06@ ~R{?Ib(,@wd*iIמd8׀w+BۊA!~Jc?E U4hy( (V.wWZ:; 2zMtC(¼!x!-*b%Um&+r Z>>5  H[Cvd7[ǑХ&`8(^-#$9[:|VQHaJϚ j@fSئz麯u&4` T k,"A̓\Bv{ûυT}4pP;?᪠Ϩ\ҵő~v!IpG>dQpfΡ&dS|Q3xIJG ':vQ0dᑟ ӲqI?:`. sD-#k'8G(. i#/p*zٝ;1~7h^b=cp7muO&Syai&Rt=ʟ ,4PpoX TĴLi\H-(qhL`dy~[(zkrc@H&VQ]t:kgYZpowermate.ko.xz000064400000010474147564244150007564 0ustar007zXZִF!t/8$]?Eh=ڜ.+Dp~cLply˞G΢p2X6d%, kjqWO^R 4EPuL`v1\>-mڡG, eХc],޹'Ej=cJGtrFF;)1%ԬzXd[Df\$.M(%Eiٲ%tBVM$mCG:T >"ѢŪ ʐm I^X2X^Vw5NCH S2O+C] O*z8hױ֒`*m,pQ5D%nsC%yl9cQ#8ֈ9WQa lX/5jn4ƥn ι!t+íN}b2(oV'At`e7vadCm^ّo;l!b00~[a9.:jK5KW[3W="G|ϙőfTL].bC b'"$F;-~!vJXUG $Qnˋ69WKH#b 5wF`3̞OdeǛ!ަOSHqz?WaT kQ/<ȓ4VzQfdeH=2>C!*=Z`G$BDM'8*-6bjg[ 7cO1u&Zv&qj[bLX[b/mGHO|]&*/Y, _\ v!޶iGV5HWeEj(t u umDGTx!,%V \u5@p~w7?teA㘥wuǙj4,tPT=&7ZtGql 3٭?_~t~h6Mig߯|;u62\154&l7)?NYCeb@l[ m.- 6{#${)xG=z Laց=t3\$μ-H>2QоN,ƝQѠ|rUd| ?IL=` ͼQ)ɀ: ZsXodPRxds߁ d}T7-åcI1<[KO[AaB--BBBs U$3'Ptnɨ@Uy 5 N Hgop0S [M31S)c':m lGNձm@fF ^Q4#;G(H p曚}LP`6jyuѦ˱F\A>i Y!<[ VhDê2$PQe2}|Ƌjac:Fpjd|sT*Fwlx sO- Hx IoP t)ͪo F< 2eVd(!È:[li w<C0 ,5ZT9d+g 9D,YaWW}R }\g2jO}";q8lvnVAP <1 IN-Jw#`qO}j$a 1-J}[D n9ˣ81i'JJ?)떽4he_nQ;h.3~,4jmK%lV^慧s iYEc!mh~uHc ^h҇yx˔1)%z$|$n2YoC%_{aYNu֚-` 3Fc)WKV'Ֆ~ dhGgNW7^ȥx5PkaρX'qT*dQ•Z`Zċ_BQ2NZ߅5*U%/ܚ@T9&b)5 r-%͙pǞ1Gu7f7M !l'UZabPo=vή@E-sCTſC̸)(2{ EAOr*FGbrT9K/t7=V#bwxҾ%*U=;'% Pf)Ĩβ {hIn!eyeP]®/uȳh911X6*IЂ p}=&d$.zgbg'Cx&u!v[8"*Dbj:χpTVu9^+B8v-j)fKҭ D*aͷwvefbRiUL/5PFƴdT(>s< ie㭗9($!|6W\] Al#}>I"0EJӼ,o?+_Ä(1yqFf"A>1(-m,WfsiN NY TߞaP2Gڎ F`FM:?|"̤@/OB %:G-&(<45{hc8?S̃}>IqKØ|< sXIO<; f'ekMDDz db*s,6xTOA}` qyU"( *7GEE".3yývF\jthga $Q:S!$ \=%ji  6y(~Pde~n _.héU!I>y D:JiNo)>O&Z62Usus>+Ecf^?;ڛzQEsOyY筹Mو%Tk.?8 8ʈUVPFp{c5& X"iyܧ0sw+^ 0E`Κ<3T Xr..wLny$?)D(N)ks&LrK_LqpΫ8S\pȮ \'k,#U#?3"&٪S!ُ $^#1wVyCˤq<|tܧSO򇑿TD G2I#%C DGzxW,'qw-evGd= }*hO!3Z+6L>DVr2 SFҬu)1Y)6gGE1=Vu3s?\a%~$UN8?YJ,`FF8eZ(jՈ⚸b!s <% J3ݥtؘPAtᗧR"i%|E֙YN(c@L58"'%I!Yoж}ND5֯C': oV;4Ht@J*buA3F↢w_}N 5Jƭ;Ѣq 1"8Xޮ];2k+;I&(Vspc?y1RBbl,DzYfHtd|j4ꆞL6\.PZ!T:g3>ʿ0 ٌ/Xaa(!{^h<)|Ea(Vtu2#W0er/?Ji%"tyX~]t慿dR@XGCHB:=gr)Mt~[S$+YsĠxPiK N ی`v&Gs@l\!/*P.>~յ־%*;thg@HN%Cm}ʹl8;>kMd Q)zHw(~#|c ꣅ}ύd7ME4vXK==`Q&cR=>4/m%qL~w.ڬLٹ͎yјZ7t &Tm+hc@yK4TZd#T 0b/ɷQ'/(X6t#a)ȗG/TCb3G3EXr*4ɶHȽb^ǥ%*Odŷ BdPl˔ڇ8xe64:t?38]- H=]cP^s⃸8FN΋"pR5Z5A%4y;h5ar7jЀh sqm?]/ꃗQvD{!}U~V$n~2N.rtPv^zUa}L ϙXH, %VhnG%NJIfh+m@ QJ9QK$u 13wvxe"K3욿"ܭX6! ~Cy s ey܊l 9I,K@=9P/嘦p,zt6:|o߬AhԚZ0-]σ?]e+3g3Ed;'x c`}ҴF*"@s7&G A72 붖B|)X,-U ęrDEj_b}QT5GRiUt2p^iv$”\xE# hf9ͦ %Q1eC_kfdkU2_`ECثmp7}ٹӰ.V_(y|vtpkDO6qBȍb1%FWӧAQNV-ldd7LcG sy=(eeڴ 6+ø[.H3YH&C:z: i2b $2厚Y/ZM0ׂ47vֱ]˓sBKj5-2 u2^su-kpJkՃ=>8zzc4-M{nG|C2tpbNpg}q`3ǩl~=F'j:#ԣf i1#0V8R`D}h(6ۼU#l=ttMF:}y]2/{OcOEhaN8 `/!"|9{\`Wt bQ4RsZcoLu]v- =| vBn؁Vna,a/>uJ.ih8=u( ]^yȷ:kٯ~çx:Mp|.Y¶:.qd*gzO,R:=n}iN}I"/ϳFb)n/~lc8,H3؃bX' L 6F_-'\Шym^4eŪC.^W*u?D|E3n/;k x%.8O):ȞS NzI s%Vs*Ou 6eT7.X/1 SJKwHsjF 9ϜcOt8RY%| 6~pi^aFQI>y8 s='Vy>tIlR@;X ~.\ٿXP܆,æB t,d󂇡,JXq73B,S-Nl;:%NM&ϐu-RSI-R%W)8|MRS{X$XϯYuf1v{&A xAOZ\SRk&  iXfy4gvK>땋)xzBMx7ܯ#=<1y.;gg@Բ{jF鶫 R&NOϐ;dڝ {"lz 8ѿ<7OdԊ 0+@RGS|Π٧[8)21/ܜFݞ-H זMsq W0+P(߾kgYZrotary_encoder.ko.xz000064400000006140147564244150010573 0ustar007zXZִF!t/* ]?Eh=ڜ.+q^_#cf6[s1z*wW^HU5mSzem\RB& 4`fS-m<*Mg.5Px-IA;߆9m+pnP&c2HD-59;4IN:˜[QE&zw#W 4aѷ1i~FwY$?@-Jg5bAL]TQLx@kv m=#8 ɴb^vbwA9M%-'э nz!P]PrF<׭W7Y /q+ }w]8+~<^wUޤLTU\? I1܎4qCrJ+2wm]D@j@r+ R뼀;*|EIYeoP؁ zzeE-'%L ɚWbF|2jb%;TDz A9,@>4=& cZB}F-T|㜹 H` !q2(:}#Qhfj.$Pq}2BkK|<)ç%/T0 _~dԗ"۔`4:2\{<`SjFSҷ6=ښ)"yfWu)͕v{)Ɖx?o~!`g(J60?Ho!៏a@hq0d\2RHNoNf2Q2<ןV̈́]؝ֿ~~&^\DK-і7@ްh i5Ԏ3W[Z<."Km[[=Rv=iB@NT.,Sۭ؆]֠{ؠ>ÛPC|j J7Twk0Ee+DȂ[=N2C4<#kAMKݹ=ٝsx 7&,:ܭ| C>]]^ޏx0MRw[eaQf-ݬs,g_Y‘HlCuO U)(a쒆y#ɀ2fd& \)iDU规+m<; 5<v8BK_U} +QlTn%M{sl]w{=jD B፷w`@&bro}ȹgN4P#&ͤ%[K#mC5 G|ϧ((p6-+cO TM.gi?QXITш;13W Q/oUO!Y?0ˀ鉁R;QJz)O€'nN+l 3ҵ^&)6p 姳W|\L22É iΉaOlma2cZ^0q3d{Fȴ3Ғꕍlh;$ 䃧3OAyݖ]f]N.7|7]g.^1Km_sNɰ'-x#DO j% 55,w9RF Eyyh`#cRYKy9[i[Zln^2Rs#P􄄸a*Glpv*.dY 9ps"5voYUf_] 9G2o'䧴GI(Ed|* (^ZS|睌\h/I9sn%x!Sr$e]ZO'͏~i>H%sKʏM-`1s;%~*跫G /X\U!@ |ʐhG1SgI=RÕpI_Vf X.?=_=ҋ;|z̢a%IJw7T2(A7h6ɭM*XﶿG䔥XMI7tm ^o xK eCg{Z3Al=J޷% ï+b㎫5Uˇrjg-:\32z h uZ[$8i"lM{h.OX썞)_]ϼ<|&w˫Za^t|y?&'0J{,mo`6:1{86*{:VJ7}*HfF;MLUmZpD$vuj<_"A$'щ־#p#&%4hjj`Xv;o^ԺyjQ8w)Ph*Hq?؛>OƒGL@Hy!awUu`騐h=\v H%a(=%IUgFjz PaZw |2Xqe\ !zbxHhoS]'!-t@KJ)8\ͅS]\ٗbx\s)dƐk6Ar>9 _iflC_8EeiH3upũ$^Ș]Op2ԆaR>@٢4Iet$5pDܱ"݇{l)=zj^oJ-,#3A5V=cKs<ӏIE޾i'G{+dP+XO3g5ƚ~$|_Ks6UW*4'`kYGN+۪+! [DG'榥 o۴KT3KgYZcm109.ko.xz000064400000015104147564244150006405 0ustar007zXZִF!t/\]?Eh=ڜ.+ζjR34L*0R`ЙV+-:6ЎG+0Zs_^:6E{ffg׏Bp<`jvE QZܬk@a6ɺ$k{I)7O1P:PR3/\D2?Ԕ&4t'>R NgY> އYkbl~_JI=m1 h 5uح@[5)Js )8zܻ`@}FJpĈK ㄺvMYu"E bEXo{YM{~,u$cp,j~RDJeӏtݣ?/1z$VUVߦoU.vo? OU؛Q;򜘯/z'Ħ4ȩx֪G`f,U.=29 /> ]28*Gu!,'WJ13/wy͏ezmj ]m&rhNZ/zo9ƴzFZ 1ZǼ u:F{tlBpWH x=R Z:D[XJEѹ%4|Cj41~us/%SMS&SYa|ZJںQ W {T7rqm,E)xb0_xϝ? GDgW4~0 ΰ'xZ@T.Lsd0jm^ضbᄀ<! A|M.[8t@$e>Oj_l<_U($MsYԏ& Y(>A{u[cRP$6 ;?ӐzXW֦gvI͘-u]`v{$ѷt^Jroa1[K!GgMehᛕyi8A!NDv>գ10JM|w˅x7yc%1[TEw%I=$}w$UQ9B9JL%&"ҏ9nJ E$Ro-YKV2ˊzI.|N/G]W@@4w.&$(@gC(=/F( 7hM*kp39#+^.sй:(j, z2p;BXpJ r͙Ȏ1.)ZƷEdT')#fof#0B`7+X䒽GK|Y+J5/ av2U,g3=l˖f>R/Ǒ9R-;/3[δP7NuMY L9& : Y&|2aN1@  |M/w]ü߽C6b&8x堜@[eKn%TiO\`3mh:@܈{*zߕ"5*$i^j@Qs#.@+aגedֽTd89 EBajLU>jWl҈RuABX2/)苙ݗeй]°bq'?Q&⃾Lh:YmB`ajr}R#>䩛cxL3P/ xRNrOQ#"P'Iծ #4~DD;}%-ux rq%s[&QSsTAT,}J"8\_p ;;墇TBmO[=OaLCH>ǣkvA8u}swTuf%Z [R/gF"z,C>Uw@P|gH5ܩ4b}B5z#)¢ҙX&uYZSu;.PR>3C 2x?A@twy_G̻.de: TTxZ֠:@*Z&hmzkͪ}[($ntwo` =eK"i܍5u+T\H z-M!ɣevn(d-YD5n8_\P]CE''Q@XJ}e0|: $SDoxa^R5Kkf}:[$#vU9ST#褯))a^0q6(k֎R^W|=c#dD0rOdd9>hochV}/%zzyx\Ǐ k%x/u'~vTFH5Ojͱg:n$X؉d (JY&$ ,#$=^8o5lAІUꨪ o!5BR+MI}-|XIū?}D6uܢ6S=As6WI؍vZ cdYHI9;3ǙO1ef3c+YRj īw)x'HOxrXƾlM NwD.a #w1[ӀW8ņO-p(>Ǡsܐxȱ}T3-d~/V7B$8T-K4eSI०3g[nM-!s/Ň܅ih+ `x-TR@%^ZAf |/P8jtӝmzvqR7wʺ/ ubˑ3^1N b>g5 }uJ,g5˕W=4(!+h2kk H.6CS;Н#roRL$g;4Ww]t IQ㳷D_(,fGCOEc)ogS_ogMGe6rL ِݗyA31ڼ}cї48Ki)WE ^z[Hjhj>*aCU2EZ0!c:B塤@5+ey$7`U 5}Z"_ )%vgOBWz0b :azT5Iv"=wE`,Hru+m2E֠S׉6oF#|w@ȈEJ3iH3"|OIzRqHe^f:\nFlu/f;L{ni<ߺIH.M̽{̠=t7 CQ~[}%TH0)G\-BdHܴW8n;▪T>tg1 kAbѵZʅ RY*W m_$ރ5"w||mnmJnܳ(ǍzEk~(;eBLң-\(pd+X r ׮qFSpI]p=0DSt jB+,? ㍮ϝ.eԡB=-]ȣ9Ϋ92H/%nՑM>P E.:yQߌ|V9 ¡ 4TXߐyYD omȟ{ky&Vl|,Ba":1ԇE\~S!/l [_0t?`@!TKJK, &բ]ə|u.9mV/߶d-qBO*zmh߲Txk zR5# β°pع {Z91̪+1̚r-Fy#07r$CQ?PO,:k}ݤyVJ'Mv/|?F <7W8h[cI`|BD,-#Bh& 7(bM[$ )${5ў@nR`<*' :E5} 16L{w&I\\6!AԾVCny#^y(q[B:w`$iYg= 7IV9Kq_.wA;m1! N}wm`˅ys z%=̙'p[@"Z.4o,%vS @+@ ]7a!'!Eϫaw뫕ES W{ʱam 7hLYڸ>` *(S.k,-\;\AWYfsL[;\H=yracH :L4OY"R`E]D^%j YhgyXyP;unGE ѽDb=A[Fq6\]dǘ2iSYTN_O<$ޞA/:oKEEz&hp %K8ffgYPKe-絶:;8c(7f-G-}BC \T6QUۭÏg4cV@A"6p =Xn0 w7CI(F-i Kg}0Zb@l腷۔-iʆýh@6db[G &UV7\PRkdL}栈;AY`oIZQKw2wy{R\C66 Suظx?ō٠:v>2^+-HE+m}f堤hVh2#j~[&L ̚ dB3Tr]=ߋ=[vֵ _"N*ԢhFbӂx dxxkhB4?p7=s>EIHV":If.GfsD-L|-u k?0,=/{wLGL|֞6WvׅԧTjۺ9cl3Mh+0~FA8Wb%E6Cv_B)"AP9əM񰀆*cE dyGA-1hj@4+g=\~ I&gw"/Vw1:peҶTha8{8|Fw S(Ou:Z0U|gev9 ;fhJ *)m#': 6݌6.ԟ|āYa8zwX BAM+4{ ӵ` 7ʬZ Y6W,{tvK,/jwf"Ja gjNf%%fK+!Fi 8bBTɝ*}`Xg#同&xp,.Z0ڟ!^@\uezo+@MW 4ݬjgYZapanel.ko.xz000064400000007244147564244150007022 0ustar007zXZִF!t/4|d]?Eh=ڜ.+͟ gSa& FYg*-tIy_K]i :Lܑ"E#+bU[&M-։JGD 2*^ s}Y G2wiYJBxnpc,7J S.calW9D-o;DAn7`RZod؄T^kdC(@SqN 5*|o8iDْjOvsؠۤd r]"V /]渽,y yֵpnެU>60P!چ<ԚK%h b-32ZLw ͏8E"dS Wl;rC]ɿF%eH_=h4>֕,d&@=prI ϐcׅXl.ƧB1TD2WkfW_/>"|p7 މ/9LN7 MW+J5BLc:E6*A|!)ؐ*I\T|x8Ťn0C0(f,cI>@kLRSԷU pڲ,K˔":FNkn-d[^,-ѱX7<( 'E1߽ؓ~ . :ҲSD ʃ1:DWgݠev}T2`pW"y{i"vh\ЋJ(}'$VY^:&*m5 `&_E倖gzwJ@]p1YYg> (fO14'oxE3bF^ Y F4';mr;ys~q7έx+A2ݏ{m<6}lKbY o=LnUsWz~eNӏBY[U{n|XnCd}z`d"z6 U+L,k.=[\}thj &N},/9@WI!m7y_Em;' :~3UZz ] ,XEkEH/CYTZꐼΐWgOf%XQ^jkﮀ!UyjŖ4h$ŕӴᠱ|.A ,?ݹv>"++HKי~CEE^j\ 8'b?.(FG)xh" (2 '.v3sX@W˜gܷh. 3inh cbÞk"+$'S-%ZKn.$pHS]̢'Db!.'Q" vRd#{;տS.Fqǰd0OmZXw }{7&~=:<"6bs7fq|_(lAgGx(GlezH-Q%Xe -\] r/2A){sQxC=-Wc/QQPqT0)Oye~e^ O  ɤ ʛLtגO #LvD@{PC[Iv*hO(*s탃k]sW3ut#@4T wWčM3^nB ;6d{?+6Cz.3^Cq]pXr _-!k܇$s FZj qi82E($&Y3( a,:] *q$/*:D,tA^ܦgz{V;,oE_4Df+]JR7]N _&?FJ6ȻҒ)-4|S?G%)k9YH5nqtV j17W]^ 1~Rز(X?K$?O?xjkߺb081"Ɍ> {ڰNCߨ{=YOl)U2P??XsnܩB\T$ "hң]leEAh9$LGFa ,Mӌue!s*_tۃ>i3fʉ4}0j}Fț h]wgYZpcspkr.ko.xz000064400000004570147564244150007063 0ustar007zXZִF!t/" 5]?Eh=ڜ.+>};UM]W0[,'^9^RB=n"j )q>|kuEVo4M(Ha4N$t|tJe_D18&R%`)ҕ+0%nKw sze,n]"]SX+$Ƹkpz_=^Ң:&2:?q3oO5К8[@5ם!e39$ aa.|:Eżןa8 V!V>~yg1OY` *U<ʶ]$6j/i4jrÍ/aChptX/&L5ɑgm[F;+8Y֧ WDyB{qnA =sѐ-Jge&~ PMxGL*9G2սbke*\n咭 ?}]F)`g/ 4GKۥ@_ԕt>\/}W@+vS$"cik"2(DYu+z,]Q~F'RAUG_]pqL'󝿴Y_Ç*3|iRjJ"_i[aQ3V vBOYOuFVE9&IKX<-RydP<.gͱ.2V`#@E/FAO0 ZNhSΝ!2U\?201BK`o XPq/Kza4ҀCC%刨t˽wqIPhmhmO;ZV al*% AAtF4_KiS0|/Ɨ9lMZE=VUO?,(pn(C*R m<䆴Ysc{E}2l”=\y;+Ё^FUAi4i@Ʃ9Ws jl'B.C xLP )wjvI|'(ŠGtC$dِQ($t6qҮX1h$oK혜 Yўlp˹]9R3uv"{T"{>eE}ZX|]sJf3>$!sbDU Vrm\R@{d # ^GY~xi21-lN[a34i:\ڕ 4Rq #_vu$˱oo^?7,O.Hru$Dw86H^n2xonLA"ſF́&V+wlGprwRE_z2˿|OI=uJ]DH<#2U}Y%rǩLyw! &A8-e~!ͼ+&HoSO'5v> gxof 5*gn~=t7Z7#(ۺ1McxGke5O!՟,&[wF70s #55O؟J]A-:?8P"Ê]| bh5gDNՕo΂ C;PnSc|$ E*qKotCガC[О.|&_aM`| $)QJ(07Kg):)5򇿵xCoK.p;>^zi!Z2H٤l9ggGsu&n#lbz-62߶}z25wN||Ɍ 4B%f/GF6㕫 *rD^4mf괞:e‚ dv竼to 1IB0\LHm|=j\9i,t("w@"g[${ ơ+Xe v1+t }$x!,8:7rl9zǹ%dc/hoL01#wQ=x(DxPt,Ė$L<^$=24Ì5AP)jADgYZatlas_btns.ko.xz000064400000004744147564244150007716 0ustar007zXZִF!t/" ]?Eh=ڜ.+?o;UM]W0Cá/#h֔يe o]ƑmA{]قYPR+@#4D`%^AVSњeQs3@E7[z[`+e4PIH\S[jIR=|}Ȯ=oߙ^J-pۨU)H0QF:-^"E}<ϊml@ -jA|P\}S?`ݑAHsD(X>Iv'P} IGRdU ߒS􆋩9]<,CfarA{+gD&e*A}̺W^}`>_.6喿8$A6I2' FG NH˽,A6%z$b/BJ=&\3?ǎqBe?0bލQXϒ$Ϣ胦=VJRVuWkƑJOi6(2b>ڤ vf[4:$מ]ҺN@{=WFа]4ڤC3᫖ZERF3)Ef1*̛gd6kCoy"cYk VP405A0Kdֈwg ɜ범sv%^EX9! H6(pSw[l^ ٛp*&]EY*+?kd_8َ'}pXh:BH:8W-$BN{ZjnzIݽ.*1r "NV63 kn Q@?.iWތOMVv&o(ܕpJku ܩ.m_n.j,_‰sVQ-i^^8z.Tلl:'Zr/!(l?%|; ,ƂT ѫe"HPȧ* l?ik]BАW|oIIHS3Rdr>׸gWOD;,rtbx6kǓ,v#sp(ߛS߬%r!}iᡭX/i9E:ܤ"v;<( fȯ)AEʡZ?厖u19s4h9/4)fDxZ>EK<7|0 F.2WI]n.bY V4*zT L N# L;u|T{h49pFdW!-D签5ow=i'/GH¾Yfr]L&ƿ@k.Lιxf3A |pq8 2vp^0U~q!p>3K:Bea%Dl=z}.Ad}OM2fva 5P/d|meilx*%a0pJ B;PVbY v.??bsŒ<R+kz-0^:=XW1V=:k$ʤ6g-^;*.\K6ty& K58^g,Ε7Gy8ZABg:Ai6i)#k05J1jw3!^mK|ǁVU]Ѐ_ k"hE"?ٿ_jMrʫ2k SU̲"X!ip6pSm]?ѶW|4HT.p7f!}~N=F2aMitROBh5E\71os $0{!&| C +2Rd |@WZmFCN@lm 3( P$!oqRN2!''kl [ E~ gYZyealink.ko.xz000064400000015660147564244150007217 0ustar007zXZִF!t/` m]?Eh=ڜ.+VaIN.ejfʓrO24C1(:]QGn$'؃a߰ȃ5oalv2t ph@ (.^ cM7VʹI%tL+5e[t򗻔虸%m|Pwo[ Z?w]^çе` PiT䷕ZY8cc ar3B Ʉgq kHB%AĜ,ހ'1ޢ3N>x?ꭏYfe2ޝ5T_i|8V$3Uu Xyr51n'│E}/9B={Ӡ '{q^ $ "~pX 11 "kUV/+7?/t VcJkW㠕ɞ. ~WN],VQ^lr:!3\x))54 1ҵAN!VU )DK'3lX;!ʼn!Ea18}.^ }m" Ĭ!_j1z,RpP47ϤaK\mtN\m E)ުɳQoN@K}D5*C4пb'EBnLf)䪏e1RsaɃYNn!lb\-0X? v|U=YiW`p**D棄$tIzf- -xy!nć /&q \ s cRݝ!ml]6 ">yH~ŀ$Js/j0*y{sQWblRLJDSes)>a<9.2t &N4C }A+65 STO#a";Sk(l#'x%cL55̠OO΅BG5 v&FfۆR/Q;LtNcm/ypُ| 5wŗ_@ue T?gN=дV U?ByI*MƗK)D\,`ɥ؞n!,cvXLX]:_8F憌Bw4ډp Sʴ5*ɬ\X_tE霹=Y]@1d$ ڂ SoX+YjMy K%sCHP̕6? !"Gm/Uey &] M B*;ls]9B%L6FdK)3A9vȖ}'27ip >uU[͚ ~*8E-֎bV0.F0I5?<)3NNe;a$0 ^޺h/ݓ-ڤyzTWyڌ3)Uڭ'GA e5w剆\~AyBߏ'15jUnwjuxMHR<ďŇD􄉜?u'YEp7XDHBܾ"4Q2zV^mȴݜ2かx.bH.qfCl둗"&4 p"dDۦ&Y1Qfw>-r 8 X N]F w*7*˕| Ne3D isH\W53f?w -l 8iE%Pj ECstJvfix n^ ͓6};ZL6-yf$ & }`]@B1k9yDФX:ii_ryiݑ?N&Ёv)L/p,ofA߾f8I2O, ۙa_Ҥikv/.x&h=0=(I2+Lkvgc[:m5W+q9ʄw׻&gb/m3V zSB^45nɛZ!q+S%<WwBafoPΔԁYkPuAxqCD泧k޼#Ê0fus!Ro#Fi '/QXs2{?ikikUSLr{wa/1Ӧ+]%ꐉ$q5*؞#MDsS-mkg .6=arXhsk6}͈+grs `\4uuE>_*HstbrqmAF7#5n+R?ѽcG7w3&B;`٠3mWNcoB jK%CR@m戲8s(wwD*fu4 cjhΉ%yƴ݂[iDʁVȗXG6umEMih̜L0QyOc]YG EDau#u]do:" fktXfl85U$ZYgVUXĪp#~ LܰnpG5L"0c:۸tsu'Q({qSАZ3"MBBx@yy&s.+=񷝔B9svbM0$&`W>a@_36 | .yLuKxċQ*p02SmjL[05Z D~ qCs(=v@6s`cJ !+6Udp|MXs":3mƐB4Žc~C]xN2̩Y^9ng 뜝Q wMĬW{) ꝧ'91i"k/r=&iF4 O=wMo\J+<5# tKay6u]?Q 15};X>Z $^: h5P#ҷ(odMi߈ QYVq!MG[tij/V Q'.nI?,Q]abM:ӓ Ր|.U6)Dž@ ^߯Gj y.y +'1YcDy"vĐM,ќ bբ ]Hز$D5OLM pJ + vk|.7"7Sg,֥Y6]_2o9L|Hf]$C #Uc-h] 2hglg6 t0ZA ez |^5&Tf8 oĿw%zj^ͱB_+Z^ųWB5_`Q$ޣ =T00nCSP}rJ.62]-:qw%l=Gb5v?,nԳ=f%`.oP؜i^.J~OΉ0~ 7\,'Gu.5emo9 i!G^,_ūe:?! ɴyR^T{M!˻zB]sq:@c˵wvжmlpg)/,A(e+WO6D/ OȘf^QڙDU,hz",0bYCD@qg8_lBĤQy; L}1%^!u4D I|&-K٪L0L&/4+~q m$ 48m`x(`>b'i]/fhuw342F0Pњ8昨Ċ{:4;V#OAQ/iөor`Jըs4QB +y;73^py|>;@@$db7oq#(Kܩ !4k)߿IE{u$"XR"^5%V$'+3rtɲ@-ݢ*m;徲q?9٘ `mKMߴGV. !~;VǠNAN@},=?q;jtN8.*{qa9LCe2gz'yO7VxL$X=ToIxe?gyzzBVR0Bs{6/JWoӡv7*f5 릍*mvL/ l*NT+ybU/ȌBSZiL-js$3~by}XLy׽I1cb)~[P2fD9]!4WYmq ?2Ú6:'S0Wu? n>]PPAdreO>1:,R %B QX!.ڡG4se6:8Ҿx6d K&LVoS x^VݝDO'ͦbŸ!DVS~(tG ;2~JB/g%JlStqoYP#Nd[N1 YnXCV`Er>Y8"4!6>%L: nVjfQ|G7S9ׁ@f1QF˜di#nej:_4/<23<4h&{_+xK#)aSTTヱsB8uufNRyi.oT 4a[)*wD ó\b]}Vu|P i [Y琰bK5G{!s y3Ǎ3*'kpˏiH+ܘjC<]z` uuH$ f)>t//魼@ˍuȖ˷apy.șdDHLlStzţ3_Mg,PDA{YVê Q9&'_1hݳpȽuS&TJɔbtcUGƩMY16RX?[~U*z:݅n)ja[f{S xYң ϖý/w5di*_F `!*X$SzgGf=EJ1깇 JIK$tY}\׉8ƙ )?-D @7`&na׏auGɢЗJkb&Veb;';FF{I4^߸m-3|$ܠ fjXtx#vp6 N! ~”ǔ+j~, qeg(PR%79@xū`*n-T}tOΈA'>:8`J֝l;f[(U?>$m{U،Z%8U]+%[C8cK"?MX v{P11&Ԯʏ Z"X*g:m p" r6AJdJP>wIvj!(,tǢAqsaO=<ФYɱl eE A}oxDpq1aQE9zH;;yYG1dgcB Qt.|br>`܋G^#ɂ8 4 yj *R}Ft!"-NxyAP aѼ/TAր5& )n:-B׵-Bǟψ[!㏛1btTs8f,Szh`Wi* WJ|Ja^6j5 Y%YIߠ:zL)T)=ߵLh8`N8Qa${ލ>{9H}ȹ-=8䑌Q ow2g;/l"6=#c>FU17 Z@m%7_CN;߻Qn٭>x8Td}z)Mzxqj~ڋD-"Ιwɠ&9%/o6E^&Y'+ݍ4EڡoDWWzpH&şuܠD :+ ?5mx OY;Yk}$v(O7KT\gȵ\&Xݣ%W 3F_-x+}žCU0 YB~D95Wb&]e oSj0q1ݟ;㻏23Ą#yWznciFRΨ+D ᐐTK%.Ѳu$ (8d̤CGw$wW/SkemŢ.\9ԑ8>1’S( krT0;JuvѤq ;~4.yO;ՄSG\~#SXi6iNnQ t(@­Eٶ8-4|!؛a&s*+{dٶ쨂ef&N b"?չ^"$?o[PR_f$q>N1,' 7w&zSo!9v +p:n;u()5:+ 7Ֆ?'Yb- Z!qc<{'ȷ|ڲ_lZB(_ lt%S+U3.X&([~״C5ɸ5OF(Vqo4MهRd]TO6:v iOw)p7D"'5L;aK p $ ^3 n4`#ԧ}HJN5rerXNeۅ܋HyDZHEY)HuCZ^=gE#zo K6' K>h]0opذ^.'M/iθ.C҈YwtԛT.  Z(@a"l|śVi̎yVk+ XӎsԱMqH(hF؅+WpQm:p& ׉?zնkټC|/K[V撩 HZ mO<|gE 97*)|>,#" R u]GՄ13%6Csڇ}0?9nw5oY Wr?e"uy*i %FZ,k"i^VgYZxen-kbdfront.ko.xz000064400000010644147564244150010161 0ustar007zXZִF!t/>tb]?Eh=ڜ.+Y"~v: lT%b5_4KlɥL1f{e[[uKn#D]% IƠE(kM=Qܖ("b Yx++Ш_UOIMDŽdq]=Lk{RfL qFlC]?hH V9-pȤ_,Fm4^AY:g{D`T1[rCJTr+Ju٩(N︂3#cǣ+LɱHDq2-35/}ΐܠCwŴ{*=)^!mÐl1WYM_2?# hM DF؞VlBr˰vfDcD S0oվ?/u-ӷ𷔖Y"wn˔}/@6v8ԼQS<5^>Lub9<< =XI7>+)sjb?uR*m$ *^ ͅ5S7c)5ly׎D/SVLj;`vܢ|$[K;+8%:U;qK~J:e܄jsڊH!i@ +F~ibH0]n 3~g(A^k1;&X=" \Z "zeHtJYŊR[t #k;u=2F^㭂?6&vM)',"q[*@Wd)1/v/7 o,x{D@QM^e+noZ FsOߩM jVd/XCF0*ϖ/;hбpdW!Mu4dU3C݃˙ u[fKUbʜT߈#\/2ȸN c >HqũtTBgDmϲmwT*lXv[P?7QђI8 jlh%kx_C)G^NɑbLԆ%hU!2dv&T^DTlz6]gs'wfB5 b<+?TȒ[H.|܎Z{0D b#)QYc̉gNQ:\RQ"g6ź<ߌʨ䝆?Lhiafb]OՂukz<,dlZa%2;2WN`8&1?my+W󅍰Tt>^Xޓ+vq0..EV%]?"Uo?ŰSE@%鐌p[osև*vpptP S6(*hYI>[T "-(0B'=Xv1Q '~9ԏs@bsxx+Qz籮Q8P/ ^H(XIY5_񃈼ψ'DkgV7ս9H ]n̊>G at&q m7FdD֗5nSYIG ٺD5@%M֔bfkI,gdAHS޳v%@1!"GA Nynp}*F|fw Y ;%Y)|5ځ~f̪עv X!t] r-L(9Q$4n߼[E ʩNk)_D{ j vh*I }c ϔkt}tlK NGVWJ֣c()G / C+p`*U։aB6}$)PЎ.5nZYkR+3|9*Q8W b\&m|X ڧ"28gxWx:BJr uP韤{!fQv)Ov~H͔*>;Eb} NvAc5_*qٌZzA5GEďyfa۞Zep-4~LCϊ?L;-yO]i RYQ1>B+¼rcfLZiyAs#5xH2Y7 J"ڠTfOS&#נGH $= 'm*Ibkɘe*P.n(7 A|\_e8HOMQ5gCV)m0,P:$>֥],$u):̋b>07?fVD&#SH TahlpUĠCR"؀bx5Ֆ\=NܓI$4;GA+nj6@M8JXeXEC%zX'R}U \2 8OB;rN+_Ca3P%{ψ`f9K 90S:Y2!M٧!r_Z 2r;%8d)zI=-͙(LW0!E/}:qY?K=M|'FAVfBK~*XxU 䦝IVr䩙HS]Zt.R:R?{-wUv dQ? HgCܣI#$q!_²lgj۫XK]dͱtJZ|W-~~r.?Qas ,р7GD<E^,K}W~qvLRٿ=}-Oh"v3i-HbI+l 1KZU + ~D^"n?aKg,x"|qgYZuinput.ko.xz000064400000014674147564244150007113 0ustar007zXZִF!t/W{]?Eh=ڜ.+ε]G Zno_0R`(d&a!4-#ͭ:!Lq~ 3]ʾ멸_VzRp\}^3 )Llx\d5|@">ʴlڠaoU m^kMߐ ʌxӾ`yg7wܸjՖ>{S.bZdzb=bԿV^Xetfm8ܲ"JknDF4F2|L]bDg!R_'=h( TkxGthMqBt͜HZP HNX#[.g@A _!*ÄCuma˸Keބ7߃,S=ED_Ѿ G`F(@+d !ۭ X4WA5^=a`%Ht&sCT]X1SLʸ,İBј,kD纚\+:TȬ^t 0u0 ^5Bm,Mrl9wfe!0kla]{>&K5L*)y̚<0VsAィ>E;@ojƐЮt(}MK{"h%s?2lL1k1.Xӹcy"53i'p4=М9&7DhC8^T9ݒ} F(*Y(SD#yId}νшcB2K6Ep>tm2pC&SYM -t8f>͕9y59`A9:N0nM=~!󑖃Xv2Pq,5^v qӽKjTBXk ^~vf w:rX3)3za? |% hx!RSy&_xJTݰӯ:e6 :<[;%kB })~#4o-9 ]EBϖ*`rO!uS7BWaj^p( Nm6ܨ)ĂObABL"9뽛qqiׂy Է9$zyq%mXjR8 KbѺ^7I !ו3͓yL$񮮳_ NG@&D?`BTrIcw ȱ,_Su0FMQS%J01;5({Z|Ǣ)LY=R ӀeT^J+Pl]X؊G8:VG+{D Ӝ\d =?Sѭ W.GvCnOhZ΁'s׎P>E r}n24?j\Q'0O!|F j>~'2m"L!:6skڀ qC}&X𱄥2#G)3R#2fBvǛS%6&/;T@vbP|9*z+l"h Mt3:fL0H*L9EƺG&&B$a[+?:}2jqPSqJ外ƶ>o*!|,wl.}0zr,,m;Wb6!]Cr$1[ʔJv!oSԟO1m?!L -qV)[ɨS;ge[Ƭm/&b+9iE2AHYIp:/ Y /UwCxm,h&<ңkYۂp=7NcBg\kFF8DF3i-l(K _t&Fk ƒY GQFR#& ʜKXc`^0ȥ8 ?ڦ"Jѡѯ!In3}?pG s¥)]K%5 ߳ vX=Ο" naQoG۽d+qV/%{i-kq 9_u~PI=QЊk!k7b@10{ۉy6e؟(3Q\8@D1_Ooy0ᅓ?N*o}+sZaՍdߣxd⽠b9ڼݪq,i@NYM!,l y+vR ?TwOה5m3:6b})Ϛ{Xa! ,wE= -fOPApc:s$./}wS`sb_tIA(%gI3P`-h /}ʮ`Q҂[6j C]ʼ˒Iq(Z:Wftm0e(⹆ل^si. VIF\¤Tf,j)퍂Tzm@]`аL-#9+&/ 3.O'+) zUl`@RC=T[-v#ъ 2^F"8D*blQԺc+3 HmJPE^)=žsnle!N8$F!w*" P0Fu< Y̪4sxe]08!m1I+iԩb F%>\<O&X.Q:%u' t7Yr7>o}UKn,*wIנ[ -k8zDdQ`2FKa6\X y⍦7 b,6gONf6$pi"*q5g;=YSlXw]+ӥm{r*+0-s ʣViI3UN=`#Ob`]KGǙBm().R>bC.h'^Bcr|.:+mLk;2his6Uŷ b|`|eNh$=K΅ YhpH5i8.9Q*25S{FHK^?jZ2"IUtf6RŪ`QBڍNߴG%Sb%Jo(nȺ]Y+ԁ_\:{2¶%@ S[.yjO’m+;iA'Ձ01afY?… XM3خ kΒr-7q;4gk`7"ny!`ԍA(GڷReORaѤ;m7q$'eTq0_.9btf @SLVXg{O#].Q*9T.x{ׅ8iV͒LW%eS)|Ҽsr{`$Vb3-s& DhؔRGUS9( eB7%vk K!;cNP!^  \2HhI\qcw˶K-VS-MVpaQ`gptDv!aO&@R#0WZ R1w90kF.Oƕy#]jF"Uʺ܀XZR bqj95iKcM@oL4}D6~LI*$0jɅNd<;>& -uEײ @vb0ع89i慼bU2]!9fL {H苸 /4\w]mLn͗t_^z^plG8Ψ(}EZ7Q>\xawට?obX#G< /?+OQ5Qq53]AYC#3;qH8eպc/JRpN`lJR*,.r>?}.b'uebBpn}K^o-ޙO6a~(E?&:̠V"^%3'XkO͟ _,}aJ o 1ayCFD==ӌi׶̤,,D";[M0*}xgjbp& d U4eQ%% 2oVʉȘol\Y1`{;%z3\a5`t$/) \+!CkvnUCMxHZiZqe*wZv@(pI("σkE'1\E+q)F~Y^HH5!'h2P}H$?vGˋTjߖ : H.0G+g=.bFGqB&!UW?tOMlo1-%R FǦAxowf[ڋNh բff9e8䖋]%%Hß1-'"M+0Eotg" b6WP= ϖK/O#:cu߳-P:ˆ:ߌ QhMG'.v#ةD)~|*gxN78Pͷb' D?(N}?`M}T)ٛqZhEB[/ӟ[=`1Ey% ό4_bLaz6Q--[Ӓ! 5@]iu[ >BZ4D^of BT$d`^s3'N6k-`C<$MԀJ*TQ8~9$Rp>U.gn ^O_\IZMPv3%(0 iyQS$"f)u|,pKhT6*mCK̈+tPzU4ﺂT^5,)RƌbXDdwfo|@i%uhxN Uy`l"a&U!PVR]9lzK!Uk3l)^CPR-5 ou}3/ =>k iȸPS2`lU~@swG?<5bU;|B I WWRtDqmw*oM[J `?>>}9]Dxa|<ĽB+qr47gU\Y%ؔ)j%VLJ!_gI(i1+Eհ!a԰_=S[ج\oeƩD:r֊چxSY^ ۮ`X-ek,IzOB~Ҷ|?M g^K^AӍ)"5rĨcgi obCA!8>󩧐˞Qʌn0m=] ҟ'`"쒟qs}ZCzGIiB+syBuirLlTK[z{4&~J,F{5ڔe[dyE|pѳ~*PBXKܼ]ţ`lЀ8jc\jٱ['vV |+{F ѽ5ŷ?1XDqP1b)Sb\'jZH~t+4rk|' HA]H=@TeZ )y5(kp*cQ0"`O J?GmY|RqSe<gh]Gb0C\$C: 6Mv2=޹ʰ?DF١VL e13sa ~_&E6'-hץa_6 Q[k?I.?ӕi!V O&iy1*YDO3(ͅ2`ه;H&*ȊgjFޖ EWր-OWdϊ460K?,RMm{Zx9ZM*l7Tu e֤߱4fMNrg&ϲY$_\P6 {cTan{3k.|G DFٵܽiL ^6 =|1eͲcc I7Ofo&Wʼn*{zG+|E3Ts60?\ CXʿIۺ~.}}~"=|8Ki䲋KdrR;! }sOS0ll:ܚI3N&* f$&ġRJW|-| .U"F/O`ZWz,?XÊ0̡?>J Ѻ2}l:ItDH6296Dz@lP@;\k yIfg( z)L20e nj&wӯzft.?O0sNB|V,Z t-(? IeW0vaⳝ+OvY_ވ9ܸ`/nx w,⇩g| M(!`⾢ U;)N|eX+ mtO֒y(0a 6΄B=Gϑv5tPT8vl pD᳌~lnb (-eOawf%,B& pނ>|@=bD N-z[3U`%45nqU`3AGXN_;? ;oFo uԠT#z%5ph\WrR {AQdx.U+HUBhIn'Xmp@{RFWaz?ުr8I:.ŀ} ԏ{>C^((г XͅduC!LJOCFvJ˨r$m{sj)Y^MЩ MYǺduBAoJ3#n/ Qo"i͉m&fv\@)ڷV{Ql}K M޻- cM5Xl}DRf'Ӂ" e m)YðȾ'Po :I @fd`[7DKc }Q2 H[cu|RԤ/Pȳ_J!9Q`Ks}n/ѴBkTqL4҇ $ YEClq)=X_5"fR*Kt8f9Bl=|&*8ХhΈy l˪mLF?S.? ?(FDHh'f@LS?560AP_1Z$Ԩl ¦7| Cƙ nOlbFvVp$EfnR"f-BڕJPCi(^v곗}K+:= c1yQXD6Nt, pLڰcݞ=$P^KJίOKV'^_2fn~xLׅU^c5C)K+6 =B,<)SռPѫ4,xO HI[/UD.|6㮁%ז7'5s y [j6q窙49ĠFa13h IL)F$U{Cf&ښ(\HTc|XqFk*.Q"TDC2&Ы*ȓ~R{]`IJJi2\4Q?!N ET(y{=tu% d\ m|e"Q obu @Cԥ fYX%E W⡫H:fE<7&v$g䥠1;V$k©܂J~G*JnMPvꐒޛOG+9aGEۋ+ٸ7'ʰ'|܍tl"QQw;eC, Ѱ"ٷy5ƛ,Ґfw.0eZ$?\%i7V6_Lo@xR$uP!V1Z JQ4z>,-wpeJ+죚A#u~8)FsN2Rʳ?etU\ Eo`S>VlGHɎ<|BoP`^tbL'/; FuX4E~wi~2:SՓPnOr؎Sf) z-,/sxψa6$.SfN@V$Q l#6DxbFdئ3_~SBOwJ{A+hNjB^n}C{)BJȇV1:Q;R8r}nzRރ09p;~ObҒ5"";,;hs?7芅=+$ˉH#GjøskLNU;Ff\Ws5E#.b ]ڑ^SD:WV5?f651"8.Mٿ'id/%:XR$E*צÔEO\q-Q[b{pppZЄg:yXSM'c oʳOtչ{6@!IGXiK 'ízӀ#9Č$j2Lxt&5/9/ *ɽ1]x|v90lq8{حb%&di"Du𱺟c/uwꖓEm,fL6Ȼ{`0~IJ@2IB6!>U'!IYIHpvsMc) -7sksI(W=0wcjNQ4i.+yaz[Č ."oW Ê}3ދ4Vʥك ˕_OudxXiNzrAdU v :WEj+, //p*|64H9W͈'G SS'D$|¬b` ]C'9An_]2ewX=$<I@Dn\&Z *VYG9'H+l(7ᑭ^6aۻ1/S+Z{Fa'T`/4;,PI }R#d}whUlCnjPo(" "T/c)?4䢆zհ#ooô5R!`2EvqǠD,!T?qqӜBC]l2i~h|vCZ|])6.o#Ww!roIKD@$aRbJQ §vNlR:ҽڢsU'ӻ]sgenerateenvironment.pyo000064400000006717147577201360011403 0ustar00 Xc@sddlZddlmZddlmZddlmZddlZddlm Z ddl m Z ddl Z dee fdYZdS( iN(tArg(t HmacKeyAuth(t BaseCommand(tRegionConfigurableMixin(t Euca2oolstGenerateEnvironmentcBsPeZdZeZedddddejgZdZdZ dZ RS( sRead environment variables and euca2ools.ini(5) files to discover the service URLs and credentials for a region, then output shellcode with the corresponding environment variables for that information. This output will contain secret access keys and should be treated with care.s--simpletactiont store_truethelpsOuse a simpler output format intended for consumption by scriptscCstj||jdS(N(Rt configuretupdate_config_view(tself((sO/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generateenvironment.pyR 2s cCsi}tjj}xW|jD]I\}}tj|}|sa|jjdj|}n|||s   generatekeyfingerprint.py000064400000004754147577201360011717 0ustar00# Copyright (c) 2014-2016 Hewlett Packard Enterprise Development LP # # Redistribution and use of this software in source and binary forms, # with or without modification, are permitted provided that the following # conditions are met: # # Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # # Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import hashlib import subprocess from requestbuilder import Arg from requestbuilder.command import BaseCommand from euca2ools.commands import Euca2ools class GenerateKeyFingerprint(BaseCommand): DESCRIPTION = ('Show the fingerprint of a private key as it would appear ' 'in the output of euca-describe-keypairs.\n\nNote that ' "this will differ from the key's SSH key fingerprint.") SUITE = Euca2ools ARGS = [Arg('privkey_filename', metavar='FILE', help='file containing the private key (required)')] def main(self): pkcs8 = subprocess.Popen( ('openssl', 'pkcs8', '-in', self.args['privkey_filename'], '-nocrypt', '-topk8', '-outform', 'DER'), stdout=subprocess.PIPE) privkey = pkcs8.communicate()[0] if pkcs8.returncode: raise subprocess.CalledProcessError(pkcs8.returncode, 'openssl') fprint = hashlib.sha1(privkey).hexdigest() return ':'.join(fprint[i:i+2] for i in range(0, len(fprint), 2)) # pylint: disable=no-self-use def print_result(self, fprint): print fprint # pylint: enable=no-self-use __init__.pyo000064400000000233147577201360007046 0ustar00 Xc@sdS(N((((sD/usr/lib/python2.7/site-packages/euca2ools/commands/misc/__init__.pytsreleaserole.pyo000064400000005456147577201360007625 0ustar00 Xc@stddlZddlZddlZddlmZmZddlmZddlm Z defdYZ dS(iN(tArgtMutuallyExclusiveArgList(t BaseCommand(t Euca2oolst ReleaseRolec BskeZdZeZeeddddd dddded dd dd dddd gZd Z RS(s Release IAM role credentials The %(prog)s utility removes the credentials created by euare-assumerole(1) by outputting shellcode that deletes the environment variables it creates. Use it inside an eval command to make this process seamless: $ eval `euare-releaserole` Note that if the credentials used to initially assume the role were supplied in the form of environment variables those environment variables will need to be reset: $ source eucarcs-ctdestt csh_outputtroute_totactiont store_truethelpsfgenerate C-shell commands on stdout (default if SHELL looks like a csh-style shells-st sh_outputsgenerate Bourne shell commands on stdout (default if SHELL does not look like a csh-style shellc CsxkdD]c}|jjd sM|jjd  rVtjddjdrVd}nd}|j|GHqWHdGHdjdjdtjDGHdS(NtAWS_ACCESS_KEY_IDtAWS_ACCESS_KEYtEC2_ACCESS_KEYtAWS_SECRET_ACCESS_KEYtAWS_SECRET_KEYtEC2_SECRET_KEYtAWS_SESSION_TOKENtAWS_SECURITY_TOKENtAWS_CREDENTIAL_EXPIRATIONt EC2_USER_IDtAWS_CREDENTIAL_FILERR tSHELLttcshs unsetenv {0};s unset {0};s5# If you can read this, rerun this program with eval:s# eval `{0}`t css|]}tj|VqdS(N(tpipestquote(t.0targ((sG/usr/lib/python2.7/site-packages/euca2ools/commands/misc/releaserole.pys Os( R R RRRRRRRRR( targstgettostgetenvtendswithtformattjointsystargv(tselft_tvartfmt((sG/usr/lib/python2.7/site-packages/euca2ools/commands/misc/releaserole.pyt print_result>s   N( t__name__t __module__t DESCRIPTIONRtSUITERRtNonetARGSR,(((sG/usr/lib/python2.7/site-packages/euca2ools/commands/misc/releaserole.pyR$s( R!RR&trequestbuilderRRtrequestbuilder.commandRteuca2ools.commandsRR(((sG/usr/lib/python2.7/site-packages/euca2ools/commands/misc/releaserole.pyts   generatekeyfingerprint.pyo000064400000004026147577201360012066 0ustar00 Xc@sbddlZddlZddlmZddlmZddlmZdefdYZdS(iN(tArg(t BaseCommand(t Euca2oolstGenerateKeyFingerprintcBsAeZdZeZedddddgZdZdZRS(sShow the fingerprint of a private key as it would appear in the output of euca-describe-keypairs. Note that this will differ from the key's SSH key fingerprint.tprivkey_filenametmetavartFILEthelps*file containing the private key (required)c stjddd|jdddddfd tj}|jd }|jrhtj|jdntj|j d j fd t d t d DS(Ntopenssltpkcs8s-inRs-nocrypts-topk8s-outformtDERtstdoutit:c3s |]}||d!VqdS(iN((t.0ti(tfprint(sR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pys 3si( t subprocesstPopentargstPIPEt communicatet returncodetCalledProcessErrorthashlibtsha1t hexdigesttjointrangetlen(tselfR tprivkey((RsR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pytmain+s cCs |GHdS(N((RR((sR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pyt print_result6s( t__name__t __module__t DESCRIPTIONRtSUITERtARGSRR (((sR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pyR#s   ( RRtrequestbuilderRtrequestbuilder.commandRteuca2ools.commandsRR(((sR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pyts  generateenvironment.py000064400000010673147577201360011220 0ustar00# Copyright 2015 Eucalyptus Systems, Inc. # # Redistribution and use of this software in source and binary forms, # with or without modification, are permitted provided that the following # conditions are met: # # Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # # Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import os from requestbuilder import Arg from requestbuilder.auth.aws import HmacKeyAuth from requestbuilder.command import BaseCommand import requestbuilder.exceptions from requestbuilder.mixins import RegionConfigurableMixin from euca2ools.commands import Euca2ools import euca2ools.util class GenerateEnvironment(BaseCommand, RegionConfigurableMixin): DESCRIPTION = ('Read environment variables and euca2ools.ini(5) ' 'files to discover the service URLs and credentials ' 'for a region, then output shellcode with the ' 'corresponding environment variables for that ' 'information. This output will contain secret ' 'access keys and should be treated with care.') SUITE = Euca2ools ARGS = [Arg('--simple', action='store_true', help='''use a simpler output format intended for consumption by scripts'''), HmacKeyAuth.ARGS] def configure(self): BaseCommand.configure(self) self.update_config_view() def main(self): env_vars = {} services = euca2ools.util.generate_service_names() for service, service_var in services.items(): url = os.getenv(service_var) if not url: url = self.config.get_region_option('{0}-url'.format(service)) env_vars[service_var] = url auth = HmacKeyAuth(config=self.config, loglevel=self.log.level, **self.args) try: auth.configure() except requestbuilder.exceptions.AuthError: self.log.info('auth configuration failed; info may be missing', exc_info=True) env_vars['AWS_ACCESS_KEY_ID'] = auth.args.get('key_id') env_vars['AWS_SECRET_ACCESS_KEY'] = auth.args.get('secret_key') env_vars['AWS_SECURITY_TOKEN'] = auth.args.get('security_token') env_vars['AWS_CREDENTIAL_EXPIRATION'] = auth.args.get( 'credential_expiration') env_vars['EC2_USER_ID'] = os.getenv( 'EC2_USER_ID', self.config.get_user_option('account-id')) env_vars['EC2_CERT'] = os.getenv( 'EC2_CERT', self.config.get_user_option('certificate')) env_vars['EC2_PRIVATE_KEY'] = os.getenv( 'EC2_PRIVATE_KEY', self.config.get_user_option('private-key')) env_vars['EUCALYPTUS_CERT'] = os.getenv( 'EUCALYPTUS_CERT', self.config.get_region_option('certificate')) return env_vars def print_result(self, env_vars): if self.args.get('simple'): for key, val in sorted(env_vars.items()): print '{key}={val}'.format(key=key, val=(val or '')) else: # We do this in two steps so we can put all the comments last, # allowing the output to work inside a shell's eval statement. for key, val in sorted(env_vars.items()): if val: print '{key}={val}; export {key};'.format(key=key, val=val) for key, val in sorted(env_vars.items()): if not val: print '# {key} is not set'.format(key=key) generateenvironment.pyc000064400000006717147577201360011367 0ustar00 Xc@sddlZddlmZddlmZddlmZddlZddlm Z ddl m Z ddl Z dee fdYZdS( iN(tArg(t HmacKeyAuth(t BaseCommand(tRegionConfigurableMixin(t Euca2oolstGenerateEnvironmentcBsPeZdZeZedddddejgZdZdZ dZ RS( sRead environment variables and euca2ools.ini(5) files to discover the service URLs and credentials for a region, then output shellcode with the corresponding environment variables for that information. This output will contain secret access keys and should be treated with care.s--simpletactiont store_truethelpsOuse a simpler output format intended for consumption by scriptscCstj||jdS(N(Rt configuretupdate_config_view(tself((sO/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generateenvironment.pyR 2s cCsi}tjj}xW|jD]I\}}tj|}|sa|jjdj|}n|||s   releaserole.pyc000064400000005456147577201360007611 0ustar00 Xc@stddlZddlZddlZddlmZmZddlmZddlm Z defdYZ dS(iN(tArgtMutuallyExclusiveArgList(t BaseCommand(t Euca2oolst ReleaseRolec BskeZdZeZeeddddd dddded dd dd dddd gZd Z RS(s Release IAM role credentials The %(prog)s utility removes the credentials created by euare-assumerole(1) by outputting shellcode that deletes the environment variables it creates. Use it inside an eval command to make this process seamless: $ eval `euare-releaserole` Note that if the credentials used to initially assume the role were supplied in the form of environment variables those environment variables will need to be reset: $ source eucarcs-ctdestt csh_outputtroute_totactiont store_truethelpsfgenerate C-shell commands on stdout (default if SHELL looks like a csh-style shells-st sh_outputsgenerate Bourne shell commands on stdout (default if SHELL does not look like a csh-style shellc CsxkdD]c}|jjd sM|jjd  rVtjddjdrVd}nd}|j|GHqWHdGHdjdjdtjDGHdS(NtAWS_ACCESS_KEY_IDtAWS_ACCESS_KEYtEC2_ACCESS_KEYtAWS_SECRET_ACCESS_KEYtAWS_SECRET_KEYtEC2_SECRET_KEYtAWS_SESSION_TOKENtAWS_SECURITY_TOKENtAWS_CREDENTIAL_EXPIRATIONt EC2_USER_IDtAWS_CREDENTIAL_FILERR tSHELLttcshs unsetenv {0};s unset {0};s5# If you can read this, rerun this program with eval:s# eval `{0}`t css|]}tj|VqdS(N(tpipestquote(t.0targ((sG/usr/lib/python2.7/site-packages/euca2ools/commands/misc/releaserole.pys Os( R R RRRRRRRRR( targstgettostgetenvtendswithtformattjointsystargv(tselft_tvartfmt((sG/usr/lib/python2.7/site-packages/euca2ools/commands/misc/releaserole.pyt print_result>s   N( t__name__t __module__t DESCRIPTIONRtSUITERRtNonetARGSR,(((sG/usr/lib/python2.7/site-packages/euca2ools/commands/misc/releaserole.pyR$s( R!RR&trequestbuilderRRtrequestbuilder.commandRteuca2ools.commandsRR(((sG/usr/lib/python2.7/site-packages/euca2ools/commands/misc/releaserole.pyts   generatekeyfingerprint.pyc000064400000004026147577201360012052 0ustar00 Xc@sbddlZddlZddlmZddlmZddlmZdefdYZdS(iN(tArg(t BaseCommand(t Euca2oolstGenerateKeyFingerprintcBsAeZdZeZedddddgZdZdZRS(sShow the fingerprint of a private key as it would appear in the output of euca-describe-keypairs. Note that this will differ from the key's SSH key fingerprint.tprivkey_filenametmetavartFILEthelps*file containing the private key (required)c stjddd|jdddddfd tj}|jd }|jrhtj|jdntj|j d j fd t d t d DS(Ntopenssltpkcs8s-inRs-nocrypts-topk8s-outformtDERtstdoutit:c3s |]}||d!VqdS(iN((t.0ti(tfprint(sR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pys 3si( t subprocesstPopentargstPIPEt communicatet returncodetCalledProcessErrorthashlibtsha1t hexdigesttjointrangetlen(tselfR tprivkey((RsR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pytmain+s cCs |GHdS(N((RR((sR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pyt print_result6s( t__name__t __module__t DESCRIPTIONRtSUITERtARGSRR (((sR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pyR#s   ( RRtrequestbuilderRtrequestbuilder.commandRteuca2ools.commandsRR(((sR/usr/lib/python2.7/site-packages/euca2ools/commands/misc/generatekeyfingerprint.pyts