libmaxminddb0-1.2.0-lp150.1.3 >  A Zܸ/=„5,2ꊇٚ0$!yth_ w9_C4H?GC1W5z%"ZQ\`2A)yP)Y{ HKӪ=s8Iԕ+Zг|7wYp ŅF&H_ t+D *oa%D"Y/"s]0l/د2ϯ`5W1} 3c6e1b5fa445c0bb034f8f21355f6501f9fd6ab0afd505136a41a62c6c514ed3f3da9579ba7359d0f810e6c33865004dab7fd137WPZܸ/=„yUV2%1` )w@uRpL,_h9Pz/UR+^afPQ%C: 8}ŸxMY+C8#~I]$*QVS4|]DTv  αZt"5}tAh=ȔЋ[0-QN&bZ^4lf4NбfxF|K(RY_79.O$qYP4| _Drżor$^XR%hO~M!1 QFZ%:֖m >p@ ? d  Ilpx|     $  $4t   (89:L>t@FGHIXY\]^Fbc;defluvwpxyz Clibmaxminddb01.2.0lp150.1.3C library for the MaxMind DB file formatThe libmaxminddb library provides a C library for reading MaxMind DB files, including the GeoIP2 databases from MaxMind. This is a custom binary format designed to facilitate fast lookups of IP addresses while allowing for great flexibility in the type of data associated with an address.W @lamb036openSUSE Leap 15.0openSUSEApache-2.0https://bugs.opensuse.orgSystem/Librarieshttp://dev.maxmind.com/linuxx86_64X,^A큤ZZZT x#587064d45ece5d32b6b877b59da9e0c961bf1e05e7c9d4b0824a9529f10f3b24cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30libmaxminddb.so.0.0.7rootrootrootrootrootrootrootrootlibmaxminddb-1.2.0-lp150.1.3.src.rpmlibmaxminddb.so.0()(64bit)libmaxminddb0libmaxminddb0(x86-64)@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1W @VLh@UTT@p.drouand@gmail.comp.drouand@gmail.comp.drouand@gmail.comp.drouand@gmail.comp.drouand@gmail.com- Update to version 1.2.0 * Four additional fields were added to the end of the MMDB_search_node_s struct returned by MMDB_read_node. These fields allow the user to iterate through the search tree without making undocumented assumptions about how this library works internally and without knowing the specific details of the database format. GitHub #110 (https://github.com/maxmind/libmaxminddb/issues/110) - Changes from version 1.1.5 * Previously, reading a database with a pointer in the metadata would cause an MMDB_INVALID_METADATA_ERROR to be returned. This was due to an invalid offset being used when calculating the pointer. The data_section and metadata_section fields now both point to the beginning of the data section. Previously, data_section pointed to the beginning of the data separator. This will not affect anyone using only documented fields from MMDB_s. * MMDB_lookup_sockaddr will set mmdb_error to MMDB_IPV6_LOOKUP_IN_IPV4_DATABASE_ERROR if an IPv6 sockaddr is looked up in an IPv4-only database. Previously only MMDB_lookup_string would set this error code. * When resolving an address, this library now relies on getaddrinfo to determine the address family rather than trying to guess it itself. - Changes from version 1.1.4 * Packaging fixes. The 1.1.3 tarball release contained a lot of extra junk in the t/ directory. - Changes from version 1.1.3 * Added several additional checks to make sure that we don't attempt to read past the end of the databases's data section. GitHub #103 (https://github.com/maxmind/libmaxminddb/pull/103). * When searching for the database metadata, there was a bug that caused the code to think it had found valid metadata when none existed. In addition, this could lead to an attempt to read past the end of the database entirely. Finally, if there are multiple metadata markers in the database, we treat the final one as the start of the metdata, instead of the first. GitHub #102 (https://github.com/maxmind/libmaxminddb/pull/102) * Don't attempt to mmap a file that is too large to be mmapped on the system. GitHub #101 (https://github.com/maxmind/libmaxminddb/pull/101). * Added a missing out of memory check when reading a file's metadata. GitHub #101 (https://github.com/maxmind/libmaxminddb/pull/101). * Added several additional checks to make sure that we never attempt to malloc more than SIZE_MAX memory, which would lead to integer overflow. This could only happen with pathological databases. GitHub #101 (https://github.com/maxmind/libmaxminddb/pull/101).- Update to version 1.1.2 * IMPORTANT: This release includes a number of important security fixes. Among these fixes is improved validation of the database metadata. Unfortunately, MaxMind GeoIP2 and GeoLite2 databases created earlier than January 28, 2014, had an invalid data type for the record_size in the metadata. Previously these databases worked on little endian machines with libmaxminddb but did not work on big endian machines. Due to increased safety checks when reading the file, these databases will no longer work on any platform. If you are using one of these databases, we recommend that you upgrade to the latest GeoLite2 or GeoIP2 database * Added pkg-config support. * Several segmentation faults found with afl-fuzz were fixed. These were caused by missing bounds checking and missing verification of data type. MMDB_get_entry_data_list will now fail on data structures with a depth greater than 512 and data structures that are cyclic. This should not affect any known MaxMind DB in production. All databases produced by MaxMind have a depth of less than five. - Add a build dependency to pkg-config- Update to version 1.1.1 * Added `maxminddb-compat-util.h` as a source file to dist. - Changes from version 1.1.0 * Previously, when there was an error in `MMDB_open()`, `errno` would generally be overwritten during cleanup, preventing a useful value from being returned to the caller. This was changed so that the `errno` value from the function call that caused the error is restored before returning to the caller. In particular, this is important for `MMDB_IO_ERROR` errors as checking `errno` is often the only way to determine what actually failed. * If `mmap()` fails due to running out of memory space, an `MMDB_OUT_OF_MEMORY_ERROR` is now returned from `MMDB_open` rather than an `MMDB_IO_ERROR`. * On Windows, the `CreateFileMappingA()` handle was not properly closed if opening the database succeeded. Fixed by Bly Hostetler. GitHub #75 & #76. * On Windows, we were not checking the return value of `CreateFileMappingA()` properly for errors. Fixed by Bly Hotetler. GitHub #78. * Several warnings from Clang's scan-build were fixed. GitHub #86. * All headers are now installed in `$(includedir)`. GitHub #89. * We no longer install `maxminddb-compat-util.h`. This header was intended for internal use only.- Update to version 1.0.4 * If you used a non-integer string as an array index when doing a lookup with MMDB_get_value, MMDB_vget_value, or MMDB_aget_value, the first element of the array would be returned rather than an error. A MMDB_LOOKUP_PATH_DOES_NOT_MATCH_DATA_ERROR error will now be returned. GitHub #61. * If a number larger than LONG_MAX was used in the same functions, LONG_MAX would have been used in the lookup. Now a MMDB_INVALID_LOOKUP_PATH_ERROR error will be returned. * Visual Studio build files were added for unit tests and some compatibility issues with the tests were fixed. * Visual Studio project was updated to use property pages. GitHub #69. * A test failure in t/compile_c++_t.pl on new installs was fixed.- Initial release (version 1.0.3)/sbin/ldconfig/sbin/ldconfiglamb03 14604624001.2.0-lp150.1.31.2.0-lp150.1.3libmaxminddb.so.0libmaxminddb.so.0.0.7libmaxminddb0LICENSE/usr/lib64//usr/share/doc/packages//usr/share/doc/packages/libmaxminddb0/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Leap:15.0/standard/4b05e6a250647324dc29ccad35df2a71-libmaxminddbcpioxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=37917fe291cfd0ad0e52f7f48be11f369bb8b152, strippeddirectoryASCII textPRRRRR=ެsoglI)Xutf-8cd83238bc305afb124bddf2a115b0a818032d2317d3cc52765ddf1b60547014b?7zXZ !t/2] cr$x#N?[64}O;'~F; 9[ne PdF)Ki_zL_I}Ԕ_3|qÏ`'N\OI/G#mP{~`ށ 'ڶu9oD744ؿ< N]FQbj,a >s&wdsL>eUTGq:\[ >}Rb`H3*Y)'vu5 _o2){""ҥfQ֡b,j*MoqͿt?<|>2 mxIdK1ExN52ZN h~R]= D=;vbw43!Ĺ<ۉikP$hVͬGQ9("ȸzˆ?.%+ĕdlitdM"~[fk՛ ,1xdTInr vyCB0L G ExkD '@3WJ_ vWx^r:Ib-%c 0{sW{Mp Z+>8iߢ[u=!S7 o\7{p}zm=fOK޺qN*W[gS(= xXFn^x[^R3 e%0PM|Vj60 imP{& 6'[[938Ftkbe<۱yxDAA4\`D\7]l1cl&ـD* γzvg?K2HӫtNoxPq"y=+emOIY DjF?M@J-&'6妌xF^9MTn3$"tߊej{e :Ķb>S3O9eu{cT]DTΚ<hBcpE|M%&WYPv#KZr53D%ao@ ri~:!4$Ѭ  HkmaНWK{7)x!8"ʙѱN|$ _OOwy پ|И>𜻧p _bD{J`wvf0",Z}e5x\2$T(#%oy2 -]NY#J+^a-$`XIX]4~6̫&lkƕ .o[SOq ',b*dBj3fǒ#bRhMatv6x+I_mEV]E(XVl\WTxeᗏ 5jP_9+ۇ?8I2WxD XmE,OȄ5i$n50.LI}Ox=`(DQnCO5L6>tmNx]D6qiУvcEZaZ!grfZ);L.g9| {9M1/ # .,%0-Л0 AEF ֿl[ N0Ŀ4/1p%E.kha9f 0 y'Vr<Ьx#𭞳V\Tw2P@Ű%Nԉkט-i _ac :jnc&Uks;T)?PN0PsSdGUo몄j&/[ z 6JBZ-1xUS&mmwHJu!IkA~;qk:ɭ~E(.G]YL9 ^tS_JƝ^ˑXE(T|ULiY{yVrG`>z@f o +Җ7yhKji3+T6o5f˶) EQ~8E(O3I.yUlh+?1"EJ kG|xaxj!g0O{|oȽC BI@;qn ??"ڰ"C,z4$eH/ h'7ָIT_*|!^C5slޕ*y7R]+6Â-@ub9H>>ؼt  <$MSR "_Jž/pÛ]Q{1": ;>}<^IToSZKvob$'6vmD.'~"K5} { l\rqIletsW=4b&Y@#<~!N[dҘ"6cREB>x6xHd题YF8 T+S[1&f+!~lp/+"egcE 0՟RhG -SHqH?!q)VUfڧ$G&( v RρB-`;5|\]]yj00,NI*e 5fQg/qs5]oxzLS>OpĪ((}  %X s<PH5l DZ9(7hʜT ;&/*WZ);a >A0\9VACP BﲌX<-Ӟ+F@p!I]r29H+fN2q[5/XqWNXV!1Կ:ɚB™>f);ؤPHyqC7)JKm ( 5 p&+4eFaqt_~ӻ0s_uuPV7? !ڈg/1: FʹLz6J,'I~0a:H QEBT͜)ŐGlh?H1]lʧ׶J3n:<"C[Ϗ0QU%J!HBCf 29fc'Zj= )簷 sݦyt)pVqÏ?,8h&JoY7%f!^0&Tt’.`7.cVGvع0:YWMn![po[$׹qF11NSOž'L9ʡ BML!:!r8FZApM?zӶMx+w謼q3#z=,F msZ'.Gx+ֵzr0=:h)Cb#yby3ު)HW"aeivcz"V8"4?l(}0+1EĖP(X(j=a~SL"m<.#$oAm-:; i8rE{\sKOfƟ!=*Nrp"Z582 kmܔ@\T%FĞ%uP>wǺLĩ/χ 綠mnp&0` C2M4%g4|X@5( eomeT^BCjK GyC?Oo,yFy$P݁+q|Fsflw]Ql$/IfP߻_&ζ܊d`Ԟ) dĚo[:xM3ˀWKml >0kژ6w$ErdAoUjCcjڪ4qq-}ʁb37s, i~XooPKZT"_ SbE4w[lW"%UW+ znT&i'  |@wq헔|&/D{2g7tluw"1<Љu*hM $xwI8Jqk]ON3;,虲ujg6eg%9&_:g*Xx $NDZbk(&Ş~ <cpړ龞<$“WJ=-` ]f /B8 y ?'869wnUI KnXqgǁ Wf /3tKu삠 l[Q Q?PHv|ɡ~{-_ԐsRQO,w~|6E*9ofNNnkF" ,ND iZC0)XRmlQc\B8~3=+ XK&gJogx(iO!::Z ;N/w!:Cw&9QbRy;ٜB%vKa8߼+=ߌG-'']Qᩛ&A'٭xݲe:]X}>U^Q q^EV~]^\iZ/YYgG>3Ԝ "~$\W5ק$,6@BjH;z9E,z)T[ 62A}, WCEO"ƹ0Hblч֫B# qff5f;e,MgՠuyQ3Hȗ giXKJ"!@g;/uzbd`ɽ8,Lmv7a<.ȞH(<eX]uDx2ˇeQӆcĠ-u9v)[>x/kś|QJOgiPQǀcn2*Zgz| lrCe[!n2̹Jg d7VjLF ʢwѷzkYCE,ĨG({t}<"05]Y PO !l兺C#=\Ux/<%OlcR(4)<ʆ>S]ꐃlh@+-&<)CٯƬ+V !,. HJS tӧg@x{sG-y/`P $_ki_ّ:_[C:ZYҭ>D(gԚ:F04@@HR-y\ HܶjΑy lUJ}$LEb35=JoN}x3EK,K%$aJ_w( '=:MwZvp^ H^ڐ454Z붌*(!fLO=/s M`)lš]_'}f??ᤩ|B ZR۴#|IE'Es&x{ojD lС=ןPHp<$lR_mKR=i ˣ %&|8]qR.@~+x t 2 \nhC՞:#RuM{%a2qam{&Wp#a_,n[*2UpÂ}93G̤AJr] Mɚ+1#(BEC*7W#Nu>[|,`Y˱]G&Z]F=]Υ쏴 )q޽^;?8יH0#6OL&RxDO'%)aa}GA0q5`#k܄h-8\Œ9X$W%8Iqznj vǠѷ.4dP[RK3?J}OOsFˊ)L$\io = )B9a;fϘ@aY:x^JA~. s+饒"sC?&Bn[ XWLS$.zb@rIͿ g:*>m)3f}YB]߃7ΓP~|YYľ(χy?ؕQ5]bܽjNr BPNߩ˥4cͿbsIQ/Ф倦pmJaQL)I5/s&t9(S45ʴp/5*4rpR6*_e}=3G*K׿D=6Β,u-Tp]i1B!.H(vkzy&UhVc|L {AAy sr|ynΌAEV̈rW0eǺ֨LbrJ!t\HX\Hr/eEu Z4)BBw#| /m* Dc/؁rj`zCj _^EGtC;]0[P>3/_CZ9|T7.'rx*DXv- HHOaΙ@ϐ!ƣ5K_̪(d3JbNPNڠ9#t•<&"咼4ZȚdm+:Mh,ت9ɂ^дw\˖a(Uэ1xᅨU}Y$'0Rv^. jJ4cȎKTؿ'Mu硷[T`tli.KATie|=5dȑW‘o~]"f2L_|=g?SYh~LH/HCZb #-4;d9+I|KMdyPC _3MhU@ބd* ~yYgfxȇ# (-I넜܋F/ʰ9>p{׭1 *-|={z/B"/fiQIw^)cy`BIt)eW =3UN=C~]>Ru^ۼBmmQTqmI+!3dCh,J-#FZ@@.!ոJο,d?Hs &ρ#}V~FQ0y8`h`^XuG°yҩr` zLJy0 hh53 $ГT8Ꭻ\ yiղo'Hr~Z8fQcL έ35b4an8X |"GWRԦ-&Lz) Ж)Tf_(KUUͺxUsuOaFcC`ƁԿЉIz1{Եa`F !I"2kEy|UռEJF󛟔0a IEIH>cVh-]Kp\|`>eї5qt1`ZeaD~{"%a%* (F]){eSxaW={Bj>l_)t[*bDŒZW z>3zkAAxҷ1ڹ 3`W쓐I^ٙ&ʚ~?찔\S(QydfǏ@mx>5\}҅l5NkBW CY[E6!_R;kM]$%p8jLXw;8s-oxú24?d xFgflq&/t\/K6$*قy,5o?&wq=ý^5s;!|S 9/oKbX@s4"@#Ȩa$@ҾOQB 7}i;D f$3bqX9^9&Hhp]d[G9 F\'UG 4V g|.g&mҝ,ޘ&'ԲHǷ| .:;Obg%TtkgiNz^/5Ge:? (ip\1[zf Ɠ] TF@G_n &hSOis9Ef#ԝ28F d80'g2q4p_]&|DIM4f_ހ?HmR Z@E&EČ(t@+{G r iy)N΀>𿌽X36aQkȝXu}ӸwvK0I%ޫ`&}R9: N@(yol+AW/%Jm6(h^0YP;/< H 'uD5Kf&[:b.E:XXfSdSXqUD7E|Jc{=K#2vT sddK4)K|zĹTH 'y5ҁӤ.,IcPhk+egk Mqfs|u*n?'DM;D'RX8WS.\UHc߽,옐5[Y'(lo"bhBpeʸ^~k1j3y m }RZG yKK)U͏gf"!{1')94"R4;ܨg3xm ӢOp RRI ؇Aօ8Sv]a+ ΂Μ5cIÆdjBq•vΙEU vŢfn߸_vd+l'IL-9*0P'='/j0#թ<;0T!sӇ-'!c.:NT!H䪞1tVI(9>`~l;R/fkWlt7FbϽWa~Y_$?9͛5.Q]oc(Rz![]I[_s,ϡ~$ީ7̤w.!XYԥP㎠> IqC}W8ޮXk%|Ir3WQ!t܅:q#KpڰazG.sy511!0YEiĤeе!Ja?j+\n0@L]1$WƗ 1}(Žj`{1E|;4F!i0""p c^_)S_n1Bo*m>UIEd"C!IooTX{LK,oH”aF"KjDU1IOOGtڃ=}nk7s[^21+K=㨀YDXf{qqi<2 .l^ދ#Ye{đ_[g9S}ue*ۤ$TШNܣL. &| 0n(B q%[Brijnb9ԭ/`wOl=tZ {!^R([e8i*ǭB!aXD4XMypo5L1eU^9h`P=-/O+Wp",iaUSreRjMSȭCF*@Ss+ ;eH CzY@/M>sHecA7$Et> 1i31 S'h#<̳:<[j,Rq,l=X!D:Nо.M~*/ͅ6Oݰ!iZ Xf /4A R/$fʶgKr si:QVcjw$yf&q7 eE.yr6uB8:qȓ&5eĦBxQ#%l:])fG%p8&orU"⦾pp܇?!  [qg%X ׮>Us Qk?74.( ] K?;A`)XrBv8a=`&>tŃ<3NCɭf  YZ