Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
PK!/*YYshell-1.1.4.tmnu[ # -*- tcl -*- # ### ### ### ######### ######### ######### ## Overview # Higher-level commands which invoke the functionality of this package # for an arbitrary tcl shell (tclsh, wish, ...). This is required by a # repository as while the tcl shell executing packages uses the same # platform in general as a repository application there can be # differences in detail (i.e. 32/64 bit builds). # ### ### ### ######### ######### ######### ## Requirements package require platform namespace eval ::platform::shell {} # ### ### ### ######### ######### ######### ## Implementation # -- platform::shell::generic proc ::platform::shell::generic {shell} { # Argument is the path to a tcl shell. CHECK $shell LOCATE base out set code {} # Forget any pre-existing platform package, it might be in # conflict with this one. lappend code {package forget platform} # Inject our platform package lappend code [list source $base] # Query and print the architecture lappend code {puts [platform::generic]} # And done lappend code {exit 0} set arch [RUN $shell [join $code \n]] if {$out} {file delete -force $base} return $arch } # -- platform::shell::identify proc ::platform::shell::identify {shell} { # Argument is the path to a tcl shell. CHECK $shell LOCATE base out set code {} # Forget any pre-existing platform package, it might be in # conflict with this one. lappend code {package forget platform} # Inject our platform package lappend code [list source $base] # Query and print the architecture lappend code {puts [platform::identify]} # And done lappend code {exit 0} set arch [RUN $shell [join $code \n]] if {$out} {file delete -force $base} return $arch } # -- platform::shell::platform proc ::platform::shell::platform {shell} { # Argument is the path to a tcl shell. CHECK $shell set code {} lappend code {puts $tcl_platform(platform)} lappend code {exit 0} return [RUN $shell [join $code \n]] } # ### ### ### ######### ######### ######### ## Internal helper commands. proc ::platform::shell::CHECK {shell} { if {![file exists $shell]} { return -code error "Shell \"$shell\" does not exist" } if {![file executable $shell]} { return -code error "Shell \"$shell\" is not executable (permissions)" } return } proc ::platform::shell::LOCATE {bv ov} { upvar 1 $bv base $ov out # Locate the platform package for injection into the specified # shell. We are using package management to find it, whereever it # is, instead of using hardwired relative paths. This allows us to # install the two packages as TMs without breaking the code # here. If the found package is wrapped we copy the code somewhere # where the spawned shell will be able to read it. # This code is brittle, it needs has to adapt to whatever changes # are made to the TM code, i.e. the provide statement generated by # tm.tcl set pl [package ifneeded platform [package require platform]] set base [lindex $pl end] set out 0 if {[lindex [file system $base]] ne "native"} { set temp [TEMP] file copy -force $base $temp set base $temp set out 1 } return } proc ::platform::shell::RUN {shell code} { set c [TEMP] set cc [open $c w] puts $cc $code close $cc set e [TEMP] set code [catch { exec $shell $c 2> $e } res] file delete $c if {$code} { append res \n[read [set chan [open $e r]]][close $chan] file delete $e return -code error "Shell \"$shell\" is not executable ($res)" } file delete $e return $res } proc ::platform::shell::TEMP {} { set prefix platform # This code is copied out of Tcllib's fileutil package. # (TempFile/tempfile) set tmpdir [DIR] set chars "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" set nrand_chars 10 set maxtries 10 set access [list RDWR CREAT EXCL TRUNC] set permission 0600 set channel "" set checked_dir_writable 0 set mypid [pid] for {set i 0} {$i < $maxtries} {incr i} { set newname $prefix for {set j 0} {$j < $nrand_chars} {incr j} { append newname [string index $chars \ [expr {int(rand()*62)}]] } set newname [file join $tmpdir $newname] if {[file exists $newname]} { after 1 } else { if {[catch {open $newname $access $permission} channel]} { if {!$checked_dir_writable} { set dirname [file dirname $newname] if {![file writable $dirname]} { return -code error "Directory $dirname is not writable" } set checked_dir_writable 1 } } else { # Success close $channel return [file normalize $newname] } } } if {$channel ne ""} { return -code error "Failed to open a temporary file: $channel" } else { return -code error "Failed to find an unused temporary file name" } } proc ::platform::shell::DIR {} { # This code is copied out of Tcllib's fileutil package. # (TempDir/tempdir) global tcl_platform env set attempdirs [list] foreach tmp {TMPDIR TEMP TMP} { if { [info exists env($tmp)] } { lappend attempdirs $env($tmp) } } switch $tcl_platform(platform) { windows { lappend attempdirs "C:\\TEMP" "C:\\TMP" "\\TEMP" "\\TMP" } macintosh { set tmpdir $env(TRASH_FOLDER) ;# a better place? } default { lappend attempdirs \ [file join / tmp] \ [file join / var tmp] \ [file join / usr tmp] } } lappend attempdirs [pwd] foreach tmp $attempdirs { if { [file isdirectory $tmp] && [file writable $tmp] } { return [file normalize $tmp] } } # Fail if nothing worked. return -code error "Unable to determine a proper directory for temporary files" } # ### ### ### ######### ######### ######### ## Ready package provide platform::shell 1.1.4 PK!x alphapca56-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch alpha %_build_arch alpha %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -mieee -mtune=pca56 %__isa_name alpha %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!b- sh3-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sh3 %_build_arch sh3 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name sh %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! ppc64pseries-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc %_build_arch ppc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -g %__isa_name ppc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! armv5tl-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv5t %__isa_name armv5tl %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!u* sparc64-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sparc64 %_build_arch sparc64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -m64 -mtune=ultrasparc %__isa_name sparc %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!ZL armv7l-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv7 %__isa_name armv7l %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!Sag armv5tejl-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv5te %__isa_name armv5tejl %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!!{ sparcv9v-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sparc %_build_arch sparc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -m32 -mtune=niagara %__isa_name sparc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!%.I i386-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch i386 %_build_arch i386 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=i386 -mtune=i686 %__isa_name x86 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!}  m68k-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch m68k %_build_arch m68k %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -fomit-frame-pointer -O2 -g -fomit-frame-pointer %__isa_name m68k %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!Wn sparc64v-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sparc64 %_build_arch sparc64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -m64 -mtune=niagara %__isa_name sparc %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!h riscv64-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch riscv64 %_build_arch riscv64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name riscv %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! ppc8560-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc %_build_arch ppc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name ppc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!)Y armv4l-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv4 %__isa_name armv4l %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!W(_ ia64-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ia64 %_build_arch ia64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name ia %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 2 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! 1[ ppc64p7-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc64 %_build_arch ppc64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O3 -mtune=power7 -mcpu=power7 -g %__isa_name ppc %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!% sh4-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sh4 %_build_arch sh4 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -mieee %__isa_name sh %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! ppc64iseries-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc %_build_arch ppc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -g %__isa_name ppc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!> alphaev5-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch alpha %_build_arch alpha %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -mieee -mtune=ev5 %__isa_name alpha %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!C armv5tel-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv5te %__isa_name armv5tel %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!9} } noarch-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch noarch %_build_arch noarch %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! sparc-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sparc %_build_arch sparc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -m32 -mtune=ultrasparc %__isa_name sparc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!; sh-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sh %_build_arch sh %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -g %__isa_name sh %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!Wj mips64el-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch mips64el %_build_arch mips64el %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name mips %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!a媵  armv7hl-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 %__isa_name armv7hl %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! ppc32dy4-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc %_build_arch ppc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name ppc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!^9 athlon-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch i386 %_build_arch i386 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=athlon %__isa_name x86 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! mips64r6-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch mips64r6 %_build_arch mips64r6 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name mipsr6 %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!f: s390-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch s390 %_build_arch s390 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name s390 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!e geode-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch i386 %_build_arch i386 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -Os -g -m32 -march=geode %__isa_name x86 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! ppcpseries-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc %_build_arch ppc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name ppc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!` pentium4-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch i386 %_build_arch i386 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=pentium4 %__isa_name x86 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!@t armv6l-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv6 %__isa_name armv6l %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!, ppc64-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc64 %_build_arch ppc64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name ppc %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!č aarch64-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch aarch64 %_build_arch aarch64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name aarch %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! pentium3-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch i386 %_build_arch i386 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=pentium3 %__isa_name x86 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! armv3l-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv3 %__isa_name armv3l %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! ppc8260-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc %_build_arch ppc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name ppc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!GN i586-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch i386 %_build_arch i386 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=i586 %__isa_name x86 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!8b ia32e-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch x86_64 %_build_arch x86_64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name x86 %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!?[ mips-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch mips %_build_arch mips %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name mips %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! ppciseries-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc %_build_arch ppc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name ppc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! mipsr6-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch mipsr6 %_build_arch mipsr6 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name mipsr6 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! sparcv9-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sparc %_build_arch sparc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -m32 -mtune=ultrasparc %__isa_name sparc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!Z| i486-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch i386 %_build_arch i386 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=i486 %__isa_name x86 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!\ armv7hnl-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv7-a -mfloat-abi=hard -mfpu=neon %__isa_name armv7hl %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!G7 mips64-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch mips64 %_build_arch mips64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name mips %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!i3 sparcv8-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sparc %_build_arch sparc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -m32 -mtune=ultrasparc -mv8 %__isa_name sparc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! )" alphaev67-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch alpha %_build_arch alpha %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -mieee -mtune=ev67 %__isa_name alpha %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!^ sh4a-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch sh4a %_build_arch sh4a %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -mieee %__isa_name sh %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!nC alphaev6-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch alpha %_build_arch alpha %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -mieee -mtune=ev6 %__isa_name alpha %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!|< mipsr6el-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch mipsr6el %_build_arch mipsr6el %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name mipsr6 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! ppc-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc %_build_arch ppc %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name ppc %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!8b amd64-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch x86_64 %_build_arch x86_64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name x86 %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!% alphaev56-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch alpha %_build_arch alpha %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -mieee -mtune=ev56 %__isa_name alpha %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!' mipsel-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch mipsel %_build_arch mipsel %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name mips %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!, ppc64le-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch ppc64le %_build_arch ppc64le %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name ppc %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!O armv4b-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv4 %__isa_name armv4b %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! i686-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch i386 %_build_arch i386 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=i686 %__isa_name x86 %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!m mips64r6el-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch mips64r6el %_build_arch mips64r6el %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name mipsr6 %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! armv6hl-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch arm %_build_arch arm %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -march=armv6 -mfloat-abi=hard -mfpu=vfp %__isa_name armv6hl %__isa_bits 32 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!s s390x-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch s390x %_build_arch s390x %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name s390 %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK! alpha-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch alpha %_build_arch alpha %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g -mieee %__isa_name alpha %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 0 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib %_libdir %{_prefix}/lib %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!8b x86_64-linux/macrosnu[# Per-platform rpm configuration file. #============================================================================== # ---- per-platform macros. # %_arch x86_64 %_build_arch x86_64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os} %optflags -O2 -g %__isa_name x86 %__isa_bits 64 %__isa %{__isa_name}-%{__isa_bits} # The default transaction color. This value is a set of bits to # determine file and dependency affinity for this arch. # 0 uncolored (i.e. use only arch as install hint) # 1 Elf32 permitted # 2 Elf64 permitted %_transaction_color 3 #============================================================================== # ---- configure macros. # %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datarootdir %{_prefix}/share %_datadir %{_datarootdir} %_sysconfdir /etc %_sharedstatedir /var/lib %_localstatedir /var %_lib lib64 %_libdir %{_prefix}/lib64 %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_datarootdir}/info %_mandir %{_datarootdir}/man %_initddir %{_sysconfdir}/rc.d/init.d # Deprecated misspelling, present for backwards compatibility. %_initrddir %{_initddir} %_rundir /run %_defaultdocdir %{_datadir}/doc # Maximum number of CPU's to use when building, 0 for unlimited. #%_smp_ncpus_max 0 %_smp_build_ncpus %([ -z "$RPM_BUILD_NCPUS" ] \\\ && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\ ncpus_max=%{?_smp_ncpus_max}; \\\ if [ -n "$ncpus_max" ] && [ "$ncpus_max" -gt 0 ] && [ "$RPM_BUILD_NCPUS" -gt "$ncpus_max" ]; then RPM_BUILD_NCPUS="$ncpus_max"; fi; \\\ echo "$RPM_BUILD_NCPUS";) %_smp_mflags -j%{_smp_build_ncpus} #============================================================================== # ---- Build policy macros. # #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # %__arch_install_post %{nil} %_python_bytecompile_errors_terminate_build 0 %_python_bytecompile_extra 0 # Standard brp-macro naming: # convert all '-' in basename to '_', add two leading underscores. %__brp_compress %{_rpmconfigdir}/brp-compress %__brp_java_gcjcompile %{_rpmconfigdir}/brp-java-bytecompile %__brp_python_bytecompile %{_rpmconfigdir}/brp-python-bytecompile "" "%{?_python_bytecompile_errors_terminate_build}" "%{?_python_bytecompile_extra}" %__brp_strip %{_rpmconfigdir}/brp-strip %{__strip} %__brp_strip_comment_note %{_rpmconfigdir}/brp-strip-comment-note %{__strip} %{__objdump} %__brp_strip_shared %{_rpmconfigdir}/brp-strip-shared %__brp_strip_static_archive %{_rpmconfigdir}/brp-strip-static-archive %{__strip} %__os_install_post \ %{?__brp_compress} \ %{?__brp_strip} \ %{?__brp_strip_static_archive} \ %{?__brp_strip_comment_note} \ %{nil} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} PK!6Vconf/auth.extra.conf.phpnu[PK!ibconf/CLGRP.conf.phpnu[PK! B@conf/auth.sso.conf.phpnu[PK!]`vqconf/user_profile.conf.phpnu[PK!e  conf/CLDSC.conf.phpnu[PK!EOOconf/CLHOME.conf.phpnu[PK!ׂttconf/rss.conf.phpnu[PK!(ɨconf/CLDOC.conf.phpnu[/tmp/zip) */ /* Path to the temporary zip folder */ $GLOBALS['cldoc_customTmpPath'] = ''; /* cldoc_notifyAllFilesWhenUncompressingArchives : If set to true, the creation of every individual file contained in an archive will be notified (i.e. added to the new items for the course). If set to false (default) only the modification of the folder in which the archived is uncompressed will be notified. */ $GLOBALS['cldoc_notifyAllFilesWhenUncompressingArchives'] = FALSE; ?>PK!EYconf/CLMSG.conf.phpnu[PK!'Nmmconf/CLKCACHE.conf.phpnu[PK!u conf/CLANN.conf.phpnu[PK! e..conf/claro_main.conf.phpnu[PK!D{<<conf/CLCHAT.conf.phpnu[PK!ߒGfconf/course_main.conf.phpnu[ PHYS) Physics instead of 1.10 Sciences > Physics. Useful if you have long category titles. */ $GLOBALS['clcrs_displayShortCategoryPath'] = FALSE; /* registrationRestrictedThroughCategories : Category's registration restriction */ $GLOBALS['registrationRestrictedThroughCategories'] = FALSE; /* human_code_needed : User can leave course code (officialCode) field empty or not */ $GLOBALS['human_code_needed'] = TRUE; /* human_label_needed : User can leave course title field empty or not */ $GLOBALS['human_label_needed'] = TRUE; /* course_email_needed : User can leave email field empty or not */ $GLOBALS['course_email_needed'] = FALSE; /* extLinkNameNeeded : Department name */ $GLOBALS['extLinkNameNeeded'] = FALSE; /* extLinkUrlNeeded : Department website */ $GLOBALS['extLinkUrlNeeded'] = FALSE; /* prefixAntiNumber : This string is prepend to course database name if it begins with a number */ $GLOBALS['prefixAntiNumber'] = 'No'; /* prefixAntiEmpty : Prefix for empty code course */ $GLOBALS['prefixAntiEmpty'] = 'Course'; /* nbCharFinalSuffix : Length of course code suffix */ /* Length of suffix added when key is already exist */ $GLOBALS['nbCharFinalSuffix'] = 3; /* showLinkToDeleteThisCourse : Allow course manager to delete their own courses */ $GLOBALS['showLinkToDeleteThisCourse'] = TRUE; /* courseSessionAllowed : Course session creation is allowed on the platform */ $GLOBALS['courseSessionAllowed'] = TRUE; /* clcrs_settings_display_visibility : Allow course manager to set the visibility of a course. An invisible course does not appear in the platform course list or in the course search engine. It only appears in the course list of enrolled users but can still be accessed by a direct URL. */ $GLOBALS['clcrs_settings_display_visibility'] = TRUE; /* clcrs_settings_display_nbrofstudents : Allow course manager to set the maximum number of students that can enroll to a course */ $GLOBALS['clcrs_settings_display_nbrofstudents'] = TRUE; /* clcrs_settings_display_status : Allow course manager to change the availability of their course (available or not, available during a given time period...) */ $GLOBALS['clcrs_settings_display_status'] = FALSE; ?>PK!3 UDDconf/CLWIKI.conf.phpnu[PK!~,,conf/CLFRM.conf.phpnu[PK!`<>ccconf/ical.conf.phpnu[PK!~Bconf/CLQWZ.conf.phpnu[PK!?conf/CLLNP.conf.phpnu[PK!mأ`  conf/auth.cas.conf.phpnu[PK!=5 5 conf/CLWRK.conf.phpnu[/work/) */ /* Path to the temporary zip folder */ $GLOBALS['clwrk_customTmpPath'] = ''; ?>PK!8Kconf/CLUSR.conf.phpnu[PK!ziicurrentVersion.inc.phpnu[PK!׭cllmellanox/mlxreg-hotplug.ko.xznu[7zXZִF!t/Vo+]?Eh=ڜ.+ˣeG&*1c+G5UUOvMv%Q, @x}auUrv=JgWi0&&kL`OJjKP& {mr0μwPZM.l(}Bh>jhСjM4I[ԅ{"xoU""]pt_fg۞~DxP9^p,EP?|06V@y0FhDJY$f[ 0B.G6? ?Nb ;fwHd BlJG4mr)pASWMBxW%[ZHmi>5{SI>~fT0}ːzrU#HJ2)X! h@aRƭt+Ԏ`q>QRҒ6X\[4EW7Sb=^dAGCeqMpOHO^k 9tL[^$Qt8AnUkS 2ͪސgHt[0&,oTt\+X4!U^;ed5#l^5&}BJo OU-M`s=o\ۤUElC§Ӻ{qkݭ v U%VFҸme]C|Rn-,w*ԝ! &Ơ\nC]Wn x.IhͰ. $Qpޗ'OBSd\,g6-BK~.gO]yڭ--hP2%?g[ Jk(g*$Df+hoSY_H'8T1+=d8̧sju;MyC:{ꭶ2I)נCFr 3Íѝ~ ix;/m9N*#\Z<; M꜊#Jx=y"+[ 2v}J0eF&{I}B7/6kи~1$5 ?G%t}!(3%(n)6 %`h};ZbW{7dB'I7 k ÐFJ\-Ke^3cαVOLp2ڬ}%PZ*^2;UVC&u7T{b~% ~|e吐&ZzLjwn"e[?),c'ܩT!όYH0]zdZ¤ oN$~[AQ NŁF3 >b+t:v.BSȝax%(_MS2_n27mC*͝MĆbb^R3:XP?QbryS?a^ݳ& Z/x-tS?*p[4l<}LCQfYG.F5uۏqM-wmhLL҆háF0&kפ:/着/Zw|fƴu,tu&r@6] *kYB@)%Ny")%Cw!>jھF3K^'+M/tVMbB/ӁM*Hrh 'toIGMO_K|w +X^vmblKW<9FG:oF[[jW࠾ ^Օ)}͎ǧK驵ߧeǯn [<]\S2S9Zê:fG|t@ c%%T#/`ۼ97"|na% BC-}/Id7o RBavD-Q#sd0VQ٥ s^4ԋ@%P%u.^J Sk Ep]apB-CY"yBӂ7-ug6w/ '#:" !J^~3 #|`l=%]`o[ŠQ$eJܬk[5'̪t|^@ :B4%Y6P~N8fntfԂrpzJ>5p̋fK̬܇Xh:ߓNw%|1( oSX2CBĂnbB+pOGg9!;iЦ:PI|8žZy"6:NcׂE-NuJ&7Vi%]g'? 9X8-.w6LY-AVg R6+D-Na,:42*kvKS .ćMn+$٠,Ƶ@Xw =!o 3kSiD6=Xԛ|6&Z1 hͬ`bpEZF\& 0эrt0c&:\|lwR)EB/ڔ(p# ULCg;h}wi,ƼܵؾsO*P v>witǤ-NçIe%% 0On5ȍ'0Lro|`&d#xQ|vS-]d(0"sf>r]$U0@}(o>3FwBӤy}MW9 n"+<-q$fŦ%bsow0A귚0VvNö/U(h٦ :aJ[}plR;b۱08NV{j ?4\K^\T„Ldiy)xLZ\|$u}-9]~BPg|> lj46!KC9OQzjLYUܪVOm6E5sp;cA3ۥy2,B24 g!ms>+/KEKBxJ4ЩrZp nJI=uR슟͗ݮPhYr=<汣qC1A~wףyG}c=0U1^~z8\}߾gZE95ֿP3}72"O~"' n !}VLR7j6%4;D FY"@^-cFT( *nIE4sS]3"VV[}z D4T1Y MLD[ijy$qAS;\K%폄ش f6u6}3Vz-/?3fԘ*&9'%杜P&1xi(]<qzJۨEms_ :0oe\6Y7krXqf _V7FUoIhJwRBr<͇a 0^OIF1{+wPM~Dx`?T,Z4rR|Fkvs5e{߇'6ўpV>5?mZつ{œjy?p^Q(cŴ'GVgٔ#]9TnFxDDejqՙu<9X4y;ˉ>aq}=CI8qdz_ɀ`6 0I) [Ő\OacC:۩lOQQWCIt|.KΡ8Ay&c{F jm0?P'uR1T Mjνkoj>} Nȗ% 4a:JdDcm|?Ry4 J3&;wQ `0MÇVapz?t&V3xM #[ÀzK}I m,\~lB!AGO >|N _zsB%(}{0!ܟDi1J<k Ɨ͢^D6g ҊտGi5BMPKdɧ>"o`+UP5B+i^D1  74jU Feo]+kp&9"jJt %ʮ.VVgYZPK!t'mellanox/mlxreg-io.ko.xznu[7zXZִF!t/7q]?Eh=ڜ.+̉Z S;X~cLH0bt321$|M~c_N8=Ysb\a0æѣ&w_y-,n<ʆYAB-Acp\V% D&+nG Êc _! dh*5M'iF_ $B@5^Ai. wFrRͬܟY%15zU{8i0 iO',:MB[E992kXv-Ys hSn2踄ab,ʾ]s_P\|4g?HES}o"$^L!S|*؅MԎYFɱq'`F9wI7edYa ă6ӕo);G*xcWoq2 g4aZi-Jk"N\X22LQ ozQq۳NqN46.a(d݃tRI t_>{Ԛm˜@5(6VMKOM @#=+b_vS}eN%Uҋ iuesL.AiG]9tȒƣJ u -ezK?@%N/۸؏82]N x̼%K Om7f̀ZI@I 1Ҳ]c@#Cn$* z#;966Bj=>Mѿ{[qem?f~u_OHdpVLCeABeas=㦒MfJ`{'P 5~C:ᥬC nյA!ƛh; D14nU9rk}ޱe^ )X$!=T݋q\juGLlS|Et c:b\>O}},*@^U/07B`|Au]tu 9]YyhO6vp-F|= )!Y'彵I ޿]F03PB2ٻ'+׷}V'lPUڨ}A |*}t+^93`԰`$I3s➮u=&cjr*#dxb2V)̀^-;Ls&mCyX/,f:?H!64D)jXH̲.Y}nK(YE{"1'o#7ݐ!!e5\ڂ!EjzViR& ~h@dʛo 5mn$$l $/n>P͗)˥q)W#eX2+it)]yp# @>ѭ#`wwְ0t'^C_PFqQVt=j9P;IfOOFr&8H2h  %zlYM!uW^Zg a= 3USzpj1+s `1qAY`<|wwr} !kG q<">"*^d乩QY+ٕ>5ʎ g![wDc1!69zrPubgZDw,T 0 DdZӻOi+nc lQНhc `dāEܰqaTcjQ|$rQd:k xOQ܂_Wnf7oX{/oJÄgb{*p%/J=r <5a_L;ъ~^IL/|Z{DHiî+#eՀ9-fLj#3N&O7sMT뗹XվZ(/D{ F9K2^U`FԌ U$ rˎINFWMhB$CrЙ]({E{*( vW,"U}) wl86qc>O^/^:|~#_; >`@l[X"H$>:e*B징67섂ᒟ׎Qa1P }qbJdL8W"T5潮Gq /%/TxAS*a psn*/s@vclǹɭ'֊ߴ}D]fLe5@-<#ՈtCnh )`1Xaҏ**0fo, |(. fuUJrP,h\ë(|DklItᙆO$5GH`?XΗn*IH: 9 wL%iKeUSW9[7xpLTd(0[1_(-ĻzoɄ=&HPN}L<:50ΣE g(9gV@8S{'p@՚V(Q90Prо i~2_~hdmT9r4^}gY$PC;VlD'=sq϶B'6Ta-M2d+nYYfqKT #]?Mmޚ;O4)ҋvqxUcr1G76w"/ܬ C>yUv8(#h"ֿ\ge1j diLkIo;Q/>5o": & aj!Ϗt:]~\ _ Ǧ[xJU q5fʰnˁouu[]m .iwgHOi>ۥ !W(8PRJ;C_?\AzuiA.`E&G$ZNˬqFm0!&$>PhMY6!<H Ohp麦 葊B^rQfja)FyP5HgN"\{ƮKl9 C|&f'5VR%0b^ZL-r !eO ? uf}.BK3sshm7p73f=G^#=$K+!~ލn =t_NPZw&>~ mC]#OBJxOր]7]/nΚrJEʍ) -^[S* KZw5#Aw}ND8q-bJ:r39@i.rJl C?R1Γkd+=DIwk"1=ܲ[x.BnXխ}s7 1W.KT|/cK^[cM(i8DG7aySYk)s`B0|sDT,!~`#5U1.Y,i7^uۊi:H\hl=w*R 2ݨ?& ǒ?~tB!' ڜ~Ob[-[V츃G:PJRP#HDnl˺:$0)g[;;Nib |[}\yd+Q+ҤFnp[`Ke>BdH,?|5-{LA|ݝBF/%Tx[yi(s`UY;cqpwyND:/OMvUݪE^?kKqŁhhuլpF`sgB/gQ &-F}"wG[ʼT{{~ĹQc=h* 0{VP) #At@K6aO7E}\\c" 5urdFDfn^N:Ht2kQA(;Y#ړeEE+%r|DF;^1svQ#D 2(q #Շ0E<&b7m[Uƈ%^H3. "`lcuWvmf1@L%5wDm]hGY蔱:p,"4gYZPK!5Âx86/dcdbas.ko.xznu[7zXZִF!t/7]?Eh=ڜ.+Vba≮ׂ2>@rZj"&3v SRR`u_K2gNp,36鋐 Tћ `H5>rOybOzY?o_`A՟Y$ ~к W7媳.k>"`¸uQU2,8؃52&hh"Ą:FmZ-4rv]arHdO@DZHW|&Mx뾋B; ds&W?¢F"0s淞æ/GhTq<N,:c{2Qu/Y/ìJZd>0iAlxWP C]*!5#@fVaM.iϘvGd  b;񬇏XWʰ]Ux1N!.q.<צ֝udOOhk5ƆjRiMkvꠟS jׁ-x򰣇߇t̶B|+e8O'sκizA@ıȥNh\ltpTwSnt( v .;)E`| n[lo` 3EpF_T7k0mW@dzsX|J(4Z8O4\Us72?hpes$gp\/"D%N/pt8 DXp_@('۫xu0yL ~|,s W~>ߨUh ǰ գbzұh\\zq[, h?#r{%$aOmFqLI0 r촨w7W5n0 kY5 sZ js4fG־NSόT:7IJ %},] xv\ 9N%pR%ba;՘F0%{qMv;~-VǞzzu#7L=7lz 1.N#|bnSWD/Lso?nO)j>NVY 'rG7#cݩvS(EeD-Hda2{V5bfNHf7G,pdMT:]~)_ݸ$3>F ;!1t1 }&aKkr^7=B @A*eB-Pit#ԖJXCo;7/bр 0d}z')u,òIyM63C葲G+ְ]ؤq a w5n7<@$ &| Bjh!wPDOeB Hsෲg\+UE# =1`7ΧB=p}zNćteV]"(g1q#-cñhC٣NVmCNՆ۠53fZh*{ѳUmX3*z; 0Fz>9-%$|4nČ}>>/0Ç.]Zce4!2lɲv RDsq՟#|(~Wl=:?#;cMl3&ךIŶn+;vO>r2'@kpā7qwL`RɊ2`^W@iAT!\l|U{oM/h_+ItʈͰ6\[~>&]R3er 9 I`_`9tx;*L\4}]$GBӘ,"WPm8qAT}+B8CKNDYurBSb$E? ̘jeM$ ϺoǓknL#ĬvN<BQ4tf‚E{h>GG٘s繮2M20ZeԧX:#"MӘh?-ۜa {=DuBN~J䮜{'P׊p*5S2;t;`4T])Z9GJ鵌pzE}~t\Sud CcEaKy )g"*默s{ [V)Ws'z Сm +hOpwjmD&0klGݔ3@)pwJE*cKe>ɼ88ةpK{ZֶeYetDl/ pj{=WWo{jjBOMa M7q1aSÅ[丠ܱ+ pцИs:rN(^]i[ZBՃAa>D;+/7PZaV㬫 Cŵi~=;f(>@>7(Sߜ$Ýfdꙷv믯oVn$ϢY_8tIp0٣ֱ}3zqc}1ʐD2]$/W%ؽ9qir=!C W,c 抔ESX%c_N I^o ի*4b˨W4`Kh IΖ |z-_sԌg1bhS(Х*G#qYAD9냶[+(}1t>3ZJ7ȪRe![J"YBYmrL8Bb)yÓ`_H\O|F:*Nu[%Bm"[ËZ7S|ɪi/:r ag77d9|b^p0d}lزbe#+љI ٰhav _ġyϿlt2cf,0~?n.b>Q8xc8o.EJ C>˓`-5yBKI&^`ޛpxU_TҋPGh{p d/ <7{)qG$M"fI^> @$_lܼq$^@g ͱ>?++e'$_&zHn hKo l :~y>m{-~GDMBmSx/ ߅Og:<BL TV( ɝk-nu)=Q٢^|b j[fD+YQs2Sߘ>!EDBUERbPX^(U-#1fFꦒ T{}_!Y[A'ce> izNԩ iDogIi,q@1R` /'/;`xK-g ͝ ߮J'2qU /m\QuR.U]F28w+踞,'n')3 oham1 :Z0xʣփ!}*ȗ_]G〘")Y9KUJh Zte< Y9F̿V1Dʭ ˎ8z ™6{XK[CA6 68l,6E5ᖱʘ&)//ϫs ʲ19zGzиQ7i=.=iøJOiΥ=:K˰Y !l"(XaCﱕxwV'=⥒SȲ* wtˠm}8(Q, s_\Wu =Ol!.Q)0Q+7Z8npV?y4ت&"͏S-jx@3z;3_'ѥR3JR;ycٍy;b >a Zxܨh!A~R*^$ >0W9*ll OܨKn{G)C [~^bcZvu;0c|ĺ9v{Eѵ[L]9-%1y <?׀ΈVV[UaL%Ŏ0I_>ZvaawW_HKϢTm^rMcFAӿ yߧ:Bw1Nu-mXKӄKVJH~ |92 5}螧vzEG'Fwؑa=4%2V_9]J;g}g^~XBm< he~(MW-RW5h7e(#6:E<( $"t~7T^ZZ8fNy/w8VfSOx[/)XZe;5"v@MI 7( =pl3L5NK'~H׃#K01T 0MC~/vl,Qe TyR1ٵS\u?t·<ƊZi7|EZ}1g '"WM**u-[$y8lPϮ8l W!O;.+l DRKeUy^EY>e mBm2j~JOϲ@;/ЮWrHu]|/tg&.,mۆ:] O*|"+7KA(cB`/i2N#X~YwyֽWbQk(@wȪ/Pl269f1FeQL4܅Ps:r6Ψ4]`jGWGr8< 2@R#B{D YMa.c$<\\-$M\?ב @\f$p58oQDiUHJB 4Lvlx}9uɅ}yK^Fش9ழ9O'WZI$E3fZC# I.F5){ z cqv["IY<@ѯ\@a4AYd \ f>QU'#YYj I)βG7ȪEY J J/Յ*|pgv6x-CQ6U뻆d2uZ4R1b(M91ra[|R<1gcKw0\I_^V}EB{z x+bλn6\?>[Ck=X סֻR~_heNWÔFtv`.POA ezBy*l@iAk'h~ ,4a$wҖb7P^5# *`'j׽k1LURoKH7^+ypDq'S {8+䃭OS/?7G~ _ph»/G=-{ puM^FEQ`EXkI0<@8B4"Wq^ϳ_LrI-;ֺ =gBsEmƌТI<+D (JOX^=6M[d#6j6Vb4Sh_K(&YR \~VQeri40~?a9;V2 J-خơ "vN*P1DYL= 6v.U $rPo5#Q- ߶Nf0:׻|VGSsv=P0))ZmFzzHq#7!ڔeGt'5"y>n3wUu2a+ '2̨>d@tpFIdC7 ^K78rן*#tmY:D fͣv,)Ff7@r`uȀsh$!ȌMѱ}Jݍj%}BOu EW~ۏb %sZeu* WKi%npL!5FtQߦ>rsqgc{}ݻs 㒢c7yٸvgSx XQ[GcT~?˸Ig}<QBWKUo\Z(TS^5t3AWO7)<Ò$>n'*$峽}%;mv6,Ŏ[d]%g{4H#`T.TE )Vp].HLkV%Ub;X9]ϒb9K'گbuŌm\aE\#[K"]E#⬖〕~9xH kH/s-;z/ev)xмqEuq aNjmuPar_o.6|1-NaඝJ -~]"z(d99;Cɳwf0ß#2$^g*!_RrK٩;)zX7u>=\ҕr?.Nc˥t.vZ,|RHNUfyZ匟2 j jhAc2ϫJo\ZO7VLjt|QFZUn>6ڑ׮]?/EYW[ónKnϰ'"I8ux),81&5}S2Gy;x(g0k$AI$葁d&,-}#$-p\f.%3k\$wtAyDU┙lŵU[?' +G_N@2 O&b3탏 qRu Yq]֫`J4( cm*$Un.I2 ĸC[jbrδ:O~`{{Z!1OR&O,8U?{>H[~5ny`tjev zv`%PZYE\imŧ5 ǬK6UBrIY=:"KTz/yli9"G V.pOTAwqäkDY'R{<խl  9LɍלdX&ZSW6!mB`ɞ܃s3/JxXy>&xQ='.S{A=L2l yܧ}M2ʐ;:s!r]E @G1Ɏm,-qt kTX-q]gBf68n5zCMBX^"|^ǶKs!(m‡($'`\=Yr}|KK/܀U*{kJh;O^]^#3}og !aV1j8G2};Wk1NkV6 @m?djG٧!HY]+' 7AZWߞy}1Y<ʖO'ݼFw֍g ?k{8;^OSq~t16 (8A2"Ѐ<˓Hf*QWnj&3~!@QV"T`W\^OݧC0]z,S7ވx{p'~#ҁj a?#HX!|jpuyCr,y IN_h$gYZPK!qi44#x86/firmware_attributes_class.ko.xznu[7zXZִF!t/ w]?Eh=ڜ.+ɏH s($اd}yR)קK%bvƙd(Ch~պj݌Q G;^>F;no02z*O^+WNWfdJSXG $! eDC Qy[,āG\Cց~ ;[doj;$?ky gzSlm [p*4Щkq}n<֬K+aSvbn} B3 ,XEII(kzܐ=^ |@4`TPi`\>0tukF=-^[܆1-;ۯ;s&5g=?f 怎VL\e $ OxrߥvM|<7tF`߲1 ?EKO0gƣQx[_ AG mEu9y]*UPZG>'aqi4{pk4$nC RHpBDC:SN tCIi6ĸ]96*znu|{c]V /-^" okfog{nz#6a{ttmjkQke˹CH 7ih/]bMl3u/I4^)5MUc7B"mp?\awc{M}X&Tx/m`sm1O2ex bG+mYF5WrU7",ɂ*Psm\ -ie;z;namEAGy$caۖhEDO؃p)#cwZ3|3v$KO&7P'hybLJ"׉ ګZFWxI﫚 -ivH:6 ǤKk ^`3h!=Sknj We1&a*O$[ȫs)27~Gz=F1o8jgu<&<Υ3Ԗv[Xd -3!ls*ވ|1k-Fe#~YMwL RˠГu1\+~^DKXn.k4?.}aQ upg-b9މ]R4BLi3a8`<1"2ٜ>i_`aqFֲ-;[ATc-无HEZ,D6Y3o_DGiy +h&>*C:kMl}Jk=N`[b.Qx'X V܊~ԋ|˓ ^x5xjȉx-`C61ú& ~e;9BzLaOd4Ru'S]οȣn 3 NABZEXZeΟnظ)TFg܂nF6s[밠 B6@崬ex QUhA#HY< mA$pji Dpu:tAMLl/|h!EVkP-"=سr+ܰO`g E\.knv7 Wt+PRofU ̲nװMi$ɔq 2\ V|)z;E@GgYZPK!=8x86/dell-wmi.ko.xznu[7zXZִF!t/X_]?Eh=ڜ.+f3.yӏp%$ Kc6j5.:\l] &PqUN*'v}#SxqĻٻ{$G8 S7lR3VcHLLZ++9k(W{rwN˺Wc./g&")=?B་>Wr:ئi@g)ӋɂWq^3}?J?:Ryl#~FĆ<#VH-IM)hx} Lx] Ǜʶbu?_U%d*V?6 ;˄>sMDw##Vݷ9UqWR"dY,Ku(( *E:QD֕od-e6Vvf$ZPmC,FV__ ^3i,g;aДǁBRм,Z~rzv)(!қ6PMtu)Vyҍa~WQ*6~3Z2V_Ӂ􂽶lY6$O(q؎tEC״PJ'm]EK^.cVyW򝴬D7` /' ~{#@ޛ-Qknd>Su"P |"A W6tqgԴl*yf,phY~ӮKTO`/1D_Nj Pq0rFq"6qsTydD!@3W"ڔaJa7%eʘTZ=~M?nT@1lWwPe50 2y#WN@^Z`5#l{ /Ei5t8csj}JCP&ɻd694o-@ā0朣#rTA Bw6)bTEgC K!٢kKncv"ѻճ1n HJձ s4/k w~1G<pJh? i3y[c !vdp0 oKHo!"t]2RNhdJ}:GĦkCOؾN~ AM #\ߣ'4R`6W!Yj ,{6JrL8,*7) 5w<LzJZ'LAKnG@ "I/tm h(fu8Ԭcvrơ Tgߡ w)3#^l`o|Ƴ:;~6㗹|rkYʛL/ nԾP#`Y)k,bΉ1ǑmPSI9) x{Y F߷JSkI6 ;&$î7W"=H dfs #ٽl-ee*B|~fi5WŏhKN~*cY qHPٻߍ:!XI>rUd*R#v̱f.jP~X2ڲ :t0 H {7em\rÏ9Z,ނML2p(*/FUls > Ͽτ*nK +WA잞քbFEjZbUd@! ѱXƉWk/[ KQ4v-`1):w`?J["~O?mp85^E2[t̳T,eF-~Ӌ#|_]Tè'Fm(1.?CC{(V_)ⴊmS̽l rs~g{Q*d'Pf ;Ř'xɎI5Vcpac3Z:q+_%e9"~{9Ӄ:|}5OAg$!V.Dx|:³_ުwsݽs bbRe몛GKRg"(E9{bfpmҽ;)2i;Ο.y7W)FC% ocTKk$JW Ka8֔Y~XWG!61fA98OivrW]q\ƶt73k_~L DPKy?tߏxxyx->j $QV  V.%C+@(VhPCX*6FԄo،W ?5 ̬ޑH5-l.Q ȍ"|1Ǿ1_n$hsf "-ܦ"Ԛ~8_gj][ɝ1=F[s3*d"> wf ~~fQE5M10XԂקrY i KL6]A`BRuZ<^:rV(zxT[F.7XE8 k v H t|&*jcc5NS򔀬֬iK* tbEV *m~dlx #ԿLjtYMd9p$$QHqXu6o.7vp_bLԔ;]zͿ~C#VJ=3]!PWK4P0^G71\`a 0Suּu}5C[?pL<×EAlذU5hM-?uP&G'TPITʶMr,%Զ/K\dVcyfԛ˥$a6\b_iI|(V[\wUѫH~bs-=,60u| v5h+1`.B9s3jiFo6{%]ٯ: ^H1瓆ͷHj\2 e i4I/ /Hm%W|1X' (N0D.kgQa@@&.^/t߶lQ GN6!.; )/}2\ qdֹ%;to{ʯ\M1*~CsUɬ2)Ezu.} /+ӖЍ`ÜǗ#nkIjZo;i;؊GK ڱh=2/{W(<? )L2egq6q8VGQF&+:b eheWڞJ(ɺ9v1Ɠ{e,վߌ,Bx7T IY||Nt&2 0wknHLjI B$QMR2@vlDldATfP+og#Go}ɬT{xtIJ 6*=bs qggB֋I*&@{o)*i)c~iwHM$ǁZw_{҇aS'""CӪtݖu!,X &5ۀ)gYZPK!~ψ&&x86/amd/amd-pmc.ko.xznu[7zXZִF!t/༧&F]?Eh=ڜ.+[1QN{n%~[ޥoY>YkY`*y7,F=oB( T홸z&Ȁ 1RΚ5p]N8Ϻy 0d)PJFn28 W9sq9ܷnym^,WP/Q~2n:Ԩ{:~y=OhZm X>/b<~4+#ӱQq]cZW;? ^(&N09B8jI&UQ! 1|ja ý97Ⱥv3#|{ΐ.$dsnI_Z܉nu UCW*h>Wd80gr)l9$֗JՇ`o2N?Z:9o"`rj3nuX;5̫/Eo;ށُ_:ksR5%+8!!v*\ ԇ?gS,\ِ3x "_q,T#IBݸY5}ôB^P^ $U .6,閯zcazA"_ua"%1#U]Dԭ)WU6aԋ2jZ}k[2bG ņ} 5`,-@ uNTFEMS&\AztѮzIDl.i}, LoRQKGƐYfyq<p?8uY\7BGҠ\h& stm MK踰7,|vں\m!5H7Hi,RDÊ8iv5w+p$t;G,~Tzz GP<rxz\;qc)~ӈ9"s)ygh)mqHu6gGH<^ٸn/ؙN ܃o5"v,nNMA!z&:cPy6zSC&aRاᓻwTZ;ҢS`2K,T <7]CU.y[j+l=GT,K_F2U&~kQS~Q߆[7bp^olȬq(@TMJCuUFe].@rfϫk:щpőL)֦7XgKDViRhL&x*\P ePfF+쎁dյΔ(s _&uǏoP¬4G~tM$zCeI.:Intu]k/uȊ~E>yfRNU6YBh;`UnA>H7K&HTM'- ݻc/h cyC psL.>DӞRmjFZ~H4Xqݶ ~݅=\z*xFBEeO7\\kޅ Qe@Jk*ߵb"XWm\2;SnkcXp$`=5SS{Wo`v9h%ew}zH޽d }{'y+XC " 9֙ -W9Z]6TqIFc (8f´"NB_KV /u#hmd1UzZ0GAWGi/!,[My|@3zIPտvʬDuܱJ󜅈gNpgNu}ϒ0^Se {k{+LoYwG+͖dm|#,1@RPV#C77ť񺘕ɁU|E,l]HsfAH\Q1eB6رv׬H=)/?9xuk-p9Ҽ>âq"gO{)Ejq1% 4 ҿ ȭ) k֖P1}҅!$l{rtg(ьI0j04`@3JEt7b&u#)xtá}b*c( %ݱ",WHg5_KfNo{nZq0;#f!ReG;mJ4ש2ϸ+Dcqϰ4(Sj|(6Ku_BK%N+QbZ> 9z5%}WM<&pPω!U̗}ݛTRAehqw "2P4 ڏq~m:N` )u/b+VNl4F`Ih O w,88ؒԜ%Z#[TS)[;q#e\OF a݂_#6 j i. 6-[@,tVqն1Gbr'v lwn{ P]z;>Xv* I|ǵ}kLXS8Mw -7q2e9{/Waߘ./Q:|~Wrᮗ-N2zfgtCO#05dE؟D5|`\qy7np3 TZ`jh81 '+S6^3Z rYyWl-R~1N0ΜͶI9*t62RȝhtcdypI?+OrLn|/٠$; ݛa|ncof)[Qx]r:$G+42_{O3޳N(XI *ޝG*d$bC,!`تY7/c7l<+Q('ji9 LηXAZplV/ٖ Td ^&u)?9,iϳ/FiGk!8i ON,6I[``s(@tlM䎝I4RLSfh +9nzeu oZ6os{kyrPrdmM%/8HML@j$n|Mꪛ|䲪ܐ4({(RPuM,1i @ èӘ kr؃ߨYBXBROB{7拠p={q%FRjRGhtgHalN%]*;>{ ߞgFM~d<.'L !'9fJ&pѤ@o%M8챠:0}6Y_s"3KDgD`T( 7oG1x>[gMO{)j8BosAwX(<Ԉw"FwA@@iJE+Ζ㳓+[ cݽz*#6%zL3:c$9/(_{s ͷ85[zٚ.pt֎K1xbsE@T .|.~@Ksz'v:a(#^+G:vnڨpmQU&m!*՜ckPXD{2CZiSWF|,䆂[Z@f1=O g(xHg8ͫ37kQOq6z?(:/(tޤ+"QsP6&bl{ ,e0s#뱠| kK@(٦{)\|:?}nRzuA-:˗!TK`L]k#9UwM8XWFcei$x]-STgb^d:G Q"*ȷ!7N,.9go__%Wd6[K~)jq/[UuHu8N 'ip).v3@ ²I@ XsxsRҧȟ"{ ժyF+YЪpCÙְv@w+!Gf^.Kr0n+TYWRӻɒ+F5џ#=-MYceum3fPB[e)+33f?` JX'.Y͗ZxhpdÔ,<ezJ;Nj>pxXÜ{eH7Ѐj,vDi;6ݫ}jmd$poZ7 #!ǜzd+H~*pU=Sz Er+n%ͯkq^PStU8g1b@EA)ɓ/!l.1MvY4 S2B߸LOGrK7 YkLZ"m;;ba +A/yr3;53auE7%t+F,WnW[ΞfC> uP"FQFDX8^7qL,+]_QP.l$W1̅!H-'kArx_Tȴ7Ysx~H[о/v^,1t:=4 %H~9U3 #I .lޯ 7]"7h ݱ%tFAQ kI1ԎřL#Co06Q) {()Tb`z=(Egt1d廫@`Qh2a7ͨjd{C$ ͬ&gja=Ə#WqB'5 ^<>8Hx XМ܉Yow XK!GVr/K^ ܅F 0Ie&TFfKh`uro&wU&"[G$cFNN(1sqj\=S]m`wK[4U8KfFS>Uh}=w@ZDZ~}F]fbu%Cv5PK7 m/ٌnAHe=2meVTg v`RelmNYHd?Y&:R0[+n(Ibr;M5&A2HCKx f 񂖘M]>%LzEEΘ1m{*LTQ9+c'Xb:bw-[|=oC<0յPg߸Y*40Hv?| O2&q4]̏u@RKH^ ' ;x)}0A8RUՊSq}.@,o>tKaF"A!`v}16U N=# u~ee ِ7kׯL친 "R[M]yDob H} fN{Ia%{'Mz&P桜oq qY3Qξَ%nTA<4\Ni^v$u8 ^~Z2Z?:ޗnvXZA/.;~( էiO2nֿS2hj~bJOnH[լ6 C'Aܵ&_95|Agl ި.Y4Fkݩo^H}*vdoZ*(%ښ\XMaĸI3~|{o[//ag|%);r m" {CO% t?W6P:|&L'䮜j?P8cP2B/ 2PW\/o1JH>[K"^o^D4bz`G?s`r"Z.CRŘZ3ck]wTH5B5>4l޺}_N,a)A;t,T2Wf*{?rsT-9jFǦ _$ތn$"__cV)l̳R #gvJ1TC7IE?l- 'پ6,؁{BƵqbADVdY LU6e(ق=ީQmd55iz2v{ _SC<#*qRwF! {T݉Jظ(jJ( t$ ?2$cZJ vK<%. R˵_(`X $dUQW$neo\QnYrFMON IW8n-{Z8 _{)A9&kmzCH .?凓9qf{`R@5 uc7?*ohYk1@ C*7JW W“H,v0 G2-ݨXoT[FC ad(t !m2~E:{WϥC>aSB/\呏Mh1ڟ#lpL+&gYZPK!7x86/amd/amd_hsmp.ko.xznu[7zXZִF!t/Jgg]?Eh=ڜ.+͢G4q~n&TJ:oh<:PKj؅8H}=Hre"68Ni΍3'@"PIŃۺL dK; Qp8ٓ2yJud&rM 7r)ޘHxҺͽ&+ ́ ˜OR} o)K-?O5$ASOIE+&{WvYa Vp#Y.C-CY\^ñ̔| mEE)Qk϶( w|c ,רUu9K9.y.RňA9 I _hx9{b-LډojXt6 F-FC7rܦ/# ^$etS8zhObBR~vs凩D֔WK.->׍38$fy)ggHG5R''-U5`"L=};H̐;=@8s& e!?;_&b|-@CYx(7͵z lJh52^ cA^r&{me^PdA`6ݞ8jQDjn0Y(e"$"CGyNaԓU>s<]%$&1Cޒ I2kH^fv=ٹmzXBoVӊ9¾=4O1v]_CO UCtpB~xDP($lINwTE1lKޚ1j^ܪ m R^'Ur|/.f8 QFr d[TV_ 97Pڝuc"Z/c_e|;#O¢wksdt8?;|vV_O?|v}Cq+@zT7TP񨸳 0:mayaS q*I9n9o*0ӾBIieq>JSm6yY)!Ǽ3~ShIG0 _3"NW)`K7E{t9( [Kz`HS4> {2C}qw­alC3ll1_bv ܙZd0$Ezr`P+[Q@̀#"*C J@aL)3]j*%E #ح/}@R"Mʰi*w^&?a.)|=R( R)H^}Aa_X F$ƻ0(,e(G׏[~(B?#ýLՔ4e iumg%}g#% +S/+ }eY8Ayja8ɚшc=ї "){VgK?xc{_ȼD`~Bԣǹ3e]k)`[7 W qz TI\OGI0t{UGX|?'<ۣkN0d!ϤCw(|=vR ޽Չh? ߥIM#M"QE,hVdtD4 t)!@"(7$xnIYam,,w(Ysٌ֡]兲3^?X71DO]|%U+<DŽNx D}78s\OV # EBJK ӆcGΜ'Q-o fGo\>DH;%}z\za<̖Z{(|K2Wud ZF>4,׍fB$8!5':ZEC8 ÖqTz9܎]hoGrÒVjC&Ycw CNnMS-vԔ _CdMA1,2 QFoC:2~ b+UVSuX~8ܼᔐ7|j6qZ]vP3{[(6 ! Rf6%e m=!m3U+!Hdo~Hk)VX I%k듚o%n_R66fLS`jS!vE OYJ bJ- -|OeYvF|f=tqHrnV|?LmthL_sB w rK(_ Nod}O ϸj'w,l~z*LLg-RSJ@ݛ|PW-m#~m-IcfQX\")_ DAO>.{niYA=%F3,ƫIעm̃<>+N.9F c&zw,sh^{Տڀz.F ӨO&ldVE7튍RȪbGMfŽ4*j,f%ӥ|S]9xܐ2$'/#4ܨB6PM{hfiĎ8W@7O5&%mp5  k3hگ- = U# -T=")ϖ]R*9'u~<Nd;|t/.Njcfҍ&{Qd{0!E{ * h S9V4҆ik[pd #.SgzRXzҏv(u 8(N%U42Tghms,-S=t/ӖP:f9saI)WyBy~EU;E2?>aj^-΄dtBw.O-/,FQC F8*R?-Sh&F/Eß~֡: @WV_q[Ζ;/xmޟr؇@_;XgpMȌJO*Z62q—G`s'ֱ#5Zo?.5eyIë nBz?emGxEXSpMtj_QN~#= V֩$R.Q>K_k޲T1bd8p:xڹIxrt}c\J0t{IB4az:NBU?)*\nT)0mtE䷊ i$ui'^[."֪vС?Kw*rW1fE*7`X Y5 x/MKϸ-\ێd#ů-gYZPK!2|$|$x86/ideapad-laptop.ko.xznu[7zXZִF!t/$<]?Eh=ڜ.+ȠڪÀ`u(&Xǂ$qU˽Q!zs])!3;N/i, _ -Ol&tT~ڤaeJZ{Jnn"e*ߧ$#'( P5yv>L,]pa0P%P&G='ED)B3  HM\k5]ߜ8mmBTnjLQLL^$ 3&À2JY)xuu v F@uR!=&O/lWMMv ekb2"Bs(^_YߨZa@Pq+izF`R^]چؠhoIF̀-3ؤZ抲[W{J"0C6pzr"y?e>UQgi,P;u_AȤ_9KM}z=kj`Hca-,VP:[ oc2 *Ufn!y4msRFdvWxʗRt7PfFك :9 S;Gloy)3dKuU kE@dmuf@Ǟf6c[ϾLGieY ЊDc[y8!,HDHH܁c >Sݿ˘(/ |CC c@,EuM&n#"ym}-݂a)jϖJ'ɯ٦#J엀i&oj |Vw#EZΉUt?찮GtHlD{VHOkp>g'!MEC$' Xߜo]6iM OQeh̏ψwNt׎;;q]>Uv~w05gU T'YLP` j?7uA:2r~,tqhJ(E'Żd2QHrCoxiQɫ ui c2&`Lw*]1m{]ddlHLLfZSkd̼:!CM(pStFM* WIeAm-_ 4=2znc#FI++sC͚1U!([1d15{jLa`֗=NvN1NWD* }gA*:i쬱#2ޕPsOp9(hb IE&+RS1I\ !$ ecqx;N4Ӟ@bz?3JXdoZ7ّ)s MU0%0dLQ³P≃QHKv9Ӡ{4riz _viu m)ջM{P@UV^:)~Rɯ{ߥ9AeET23tRd6qUs:aD\QWgkK 3 q\@8*:?M$G67Ĥ5"VH8h\1Y. l [U0twɉI'>t@DN,%A lgQwPrU,%ë2JaicsBRu._xIj~ROCvz q|#jEBVxh+q?KTKiLOkyڏ0LE|+JcmTvPII>;Ӭ$a~a`śXGh_"cL4{2J>6pvqVfI ;MVd?)-Z*~ ԓMMjntX QA db-C/#LdfݸkQx;{QAT Ra¤ }ݻ.<*ro &E;elΒl K3sgFa:$ 4@&It,j.|Oj!ȄY#@z2l@}Pj fPq@MYEISy9mܡi58sTz/@ Xt74L,b <~D UAs ]VC~P<5t5]{Fu+ue ũcNO@A1*QFA D&$ix>|O.3q@jINe0̈g?1sdi^Q3pm#TEh[4{ơVĘY$(& `nOP> xG uƜPJE7 +ګ>/ACY|XJ 5h!V1>Jav:aN-9;U2%Av4d7ǍZ;ą%5Vȫcȕ]t7.v}A@e-'hqDZnv (ŋMS&`ǍTRJ ]3fDe)Рv͒GF ,ZTJ 3ENM71D-ե\gEc'{|k/o8cm 0CU4 :ےz n׮_h&h뼔L#]# tp0OŪPg|SFA|ǧeWl+k*O?",v52ÁNM 7 0=-BЉtqV ?z=idn36bX d}+rIzITkqf5|*,6]}BQ0uA NULC) []Lڞ0)0{,3S/GԥإWLxL=uHbKa3D`$K =$RCRCfMbf>O1p@U8L9Z6@@L@N4@+~Mh}.ǐ@CZDrW]Ԟ̓ʈh<'DCAQk$Q3Y fH'[qMHC0U{XJ[ @&ls_jf?Y +_l/U1bIS<n-q%"Xa в'3Xڎ y&q3*R#U ` ɛy' s@S>(s ƧGR׫-er$/+L5^S#t \h| mD)7tI2 yc魪9ėpr8%4NQLoÜW!8CϓLG f۹HAPI͗=VJs&- ЇoD:5lG5/Nxh^bw(rF PrY~WM9:%)M'xxO?=> -dvĕ >ԑ&X(#1:QC Lu2^UJG@1-BI1~ܕ];'0 : (9+GgM[jPfoKi닍sqBimEX\jOµYԀ1Jѩbwh |Ls$)7iDHdĂG%7]~psU7׋7÷Wf =W%҃SJ]E=⧼}BNqR-Bː iLۥ8]s XURT$+)rH$H xAH*` sdZt Lf,hH<卩! ~ L5#\({_h[]ZFztà۶۸2%o3$Gt%zNAA TjV(Ѡ |\ 0鋹yfaQX@5}PqjމLvJ"]d6Y-' GesJD G쓾|J6 m" rs=uu6G^ё{eJG8`}jȮtZ<#;[  ` Qw3LAJl e*%>-ŵa?O+*q&}U240~&a/re$bm0|o.&{Fo*UݞQM}ү":-KC73H5|#T?D Z aS[S8eİ2-y9Mt](b?֯f/ I.i![s ! MIh>ͬUK!y޷J<,Ml]W=y=2s fLZr kLj|nj~]wT8~o-=.bDWLiۓA+ 9h9eCiv31xHzT 0+lYhz @[D9\/#8acGuq%}R0{ s/ t-> DWf&D{m]k? ߥR7#VT赢u")ܗ:?q;k}G$O {6}=J!B FM1/)xD 1̈bs`ɬ8R{cf=" xU[|Zjwm9s_Eqk;ް6^S@YCXx~2aTbb0DZLt^Qb=+bX1hKOb!c ]6' @9p|)my0\n5yaFnSgn k#$2dณqkNzb$)ϯţ-OԇL !a*3 }S{1&Bd4 %$I.|ES+X"p a'qy~w[A^ ^+kFJm !F Qt:U|&_|z&#K^[83jtHadPUbvQoy`-qx{֭!-E nԓ[#$ClATӡ`brlZ?K`(]Pz%ʄmiΔn;] RhTel l7ں݄>^S<yX;zDRPtmj5L@T㖡D˜$>-~GhHĶ)D_R@QpbxB"c@`‘(F)mk b2K]UC^m C˄O95Y/mSwP(4] hƜ!\jT-p/[Y)qtXKK%'#,bH^ã)n$ ckò:;%,u1ް)܃D5Tz2;r݈K'c9c.PBȏbP&RKM||ymti;2Y\9`aܵG}d~4:'a[N:PM5`_&t+%.fX+X"VЛr^$0A3HToק啎jugo,TY_fb1nm;ļ#5h`-`;LTeQ]˼+S#ko|I\BS)$#.C+PXv~f/I Ra@bSr3mW&h. zHx^ZKt T2+,AZcinӯ OZ_ It2vYA|i䘨bj&u(dDo<]+qbq jrz)dT~!.?lb t~cD|kvn=>p]r 2GOfcT0}R=oo*vly%$k8%X$\'MNG-J"`!Aj搆ZbN4:e4`vU~$B@WSrAB)-m6E|V^Y,LGbH" $[D\j1f(ɴbx ">n0WC`]'%ljz KeD+_+Z\SDlE5Tد$wqB4"[߶ί*Y,kwzZ5?Yn2(uA Xf=y6?o1_ݦ{ƝԚJ-gߘK+ H6#ST }aTS3C 1ᚥ Ab 0 KEmUS$CADFq2,ܧQ BPk|Rgu,CNqs*Ly8xU>@"G:3_ vIpMA7&iۑ뭩`{7YJ"VQxUguxY#PFPs*`(9 8CMJI(S^W] 3Px&9BTr46nE(T*d:ƃ 3f3i( &_ۜ(ȧqt2#kR/ {U7Y^ZP Px^K"b eZjOdI Z2/&]@c*u~S'p#mmpo/ui,NaF< |'šň_6S.0j3e ?dBzwxR55$*u+TEx>Wۛ$4n1jաe6/B^ 3S*62}e%BG ")j-HӻٟN8wsz.I^!8#"j쁿}U1>Nca-(uz‹%~O8lk50T([D 5ҩȧʝ$W%͉O]ww9hre9#|v~>M$d\upIYh&hH7vY' .VOP%@vVHZ435]a4ܐ jOWdDz|p*%n3bwz`+HEgYZPK!Ziix86/sony-laptop.ko.xznu[7zXZִF!t/5gi`]?Eh=ڜ.+^܂PR lvňa --@i+~OBuw9LVh\vdZxG$g죲nA鵿En'vV'`-K 򅲱9ۮA:RN&n;?S#}oGWN}ž /nӨSd(jxkO %TQI wXvSczpvwIF1 -s Uf09f2/9/[x]%}z1dA[^>5J3$!P=h!ƑX=Wss}`Rds}Sl'ON@ׇ:"T'lR(lfL>,X~{[Z{Z4ͯh驧h ^r띹ƚQs#l}Y r芉Lkk¥y uK{% ٖxo婆9eȪ3N uB|ҿHf 41fZP2֝Z$O_!r %=9lV~tf)hfk |Ύo)y4@ڭ 7㾀bBm% q5Г5-S& C̵w2pdDLmCנ/eeIYT&["?)V0\v98˒t냊 *PXߺ؆OY9 O ^u8ֆoy&RRVo Y=XY(n_ֲ^M/YeZ4z fh-{_p aH8^ԠԿS}ofml)$~.,f_Az{~y&Ȭ=6|[$UJ}kW3+Ҹ*HIf"<ы& 6D7e~t=d%tN/(SY4da;7[ݺz?ԈEn'\vSkMkɟ~Cϭ3\RIƀ"Ys\}`X:6wœx2X}HuѦV+Nog?ΝswEY"Lqkc-?)?m 8 ҫB(u=R/ S1)d#>est[l 7y}|LacsG{esf)0]?? 3{nU#㫍ogv K4 ?v*A݁e'rJdz2g9MR427zYr!x939E%Zn&Q me~sxvwf@tJ-IFmmG#ZHvx}ozU;VvLSg? Phm bjگfSX_Rk7z\2lo$]EN0}A~ [D\OadGZ[nVۜ4.^/ܺr6SzOt׸4uT,I8⫞R3X= Q 4JsJWZͥ?Rݍ0u=h 9dA9~T,8Vܺ</}o:7?_wFy&%WQtЂ,?G2 c'oci*C`7}pۑJT=9BiSH-_AW,@+]`EyqF1)s])^ՙt~ ֧Xq E&yA p#]=$d{K](#YYܫ00QD^9]0v .泗Kh!ZztXIeցGFz0ة]Tp.PvB2V`OoVhKQvly f\VLBwBoa*0o&XΈhm>U1|yY0ˆ@`)QE5&3xEO0<][PX^r  v~ʸ|_[_Kp-GH|PnL.zqkP64X~ݢ$WϚIѹ|5?`#k\P@||VƞYخWt-pg K,#'V[g%R4>:Ʊ̛=sfb|2<\ WcĘmǽ6*Z{*V3<)kAW?C@5(p* ^#ݕ-׭Pı9[g%+֠Tfwm)ocME񎾫6`$8k~) -t쌑ixyC*H; 7hT,9 oh:`(fezEYOﬖ*Q>Ia}@[LpuVě]_mQ8yI>[@]Uh8vU"ߵuهo&F؂ҭ&GK3l͋Ap6g8E& B .a+uUWcvaW=I'H Zp;# ?GY$0Nna#,ɕ&L*70Xׅ ohçߣ8lt|m3W3햾\ D̫0iKWBGL5vMkC$6ǤGeOʲVΟYƮ8\,ևrZXi[r6_JӶĎVr~zF^\"=@b?sO_@8soKD݃n4/R4~˹Em^R2U^KD؄ ';7٦;A0,L؃-#+ǭX)v"n7\zwT-y>/R3Fn]2 ,3Z\BOIsS+&̡WM[x@GQ^SMG'JQS7kq T\!]v/BGeMSMamS7S4S{Xu߱|!뇫m -'1iH>_y {f )< f\6AD;i9mIH;HXKB|< T|1M+:7`yĕǔ,r1G,Qt|xpsa/3%MlѮ;/nLC= 27߀* 5N4Lr ]8<uEjf fk;LTfq.( @p^zn&ܔ-a$;4S(J9H80J#z%H bhީirCwL.Np vE0oR 9 5 VRj0+E' DAj;`%oT`8}?l {] D ٌ? u/:XRIThԿ}xaNC>M%p:@$^ҩ&h#$~haIgng17-3$(d[`,hTj7j6WC5,~=ҳ[fمAb%yŐ­iܳ}ir)1@Pb d(#e 尅? nR}L:UU\藪OhY 腨gMŕܡ<" ln򧡉;e/G!Moͭhh-@߸xչ-*+~ȊlLG֬1&Q'{_Z2 q8{kF;)tAŹ6{qd*40aRȚsA̶(.8te/E \] 7VOI^"d(z"RGP3=Pwnv03TD(r4K a݇wpq"O(LzQo2t#/E49W5.V緸_?ׂ@N(]4Yі?4냦30VF yJyUlj1KW'C8N.G}o,-?p!2AcΌ2D :I-gq*HwCsmfg5a?͙U*uEs4WKڐ9[<,I`>TrLeq0:-PGLջ=;Ug*uSqZ=yʳ(;劕m6ݘ1 ANq7RhFX:ux72`YNn1, [5&Mkʞ4]<ӱ%?R!9UU[q,1Ao=p۰)R3qdVNMSD%'?Wz]kJ#kE%3>DY Ķ})oI-` d–NڭF[`3;>&]ր B/ 8́4I\'adʇ-<Z&9.k<>Z{O%pçL?-Z!wyCNr0|22B}\VA`f`V u955Fd۩@j_~%N3noơpa. 2HsםG6ơHSv!U$olrto:|H x/`M^%T}ZoeDDZ_0^@|8{_Ѣ-ק I놉Z^aUd<Ĝ) 5,9Ιw\?@AT,;m<>`fY ZySpMMZ!UR]ӇadX.v҇@† *FPдA?<яdۏE#Z>:|6)&޾^n=! K~ r)9Dn`/.RabJB4 e)o4LcEMp߶?Lnou-#|8 *AbZ+bɀUX=Oe '9tw{aƔXGAQq|xJ[)xy0|;0Lhr'ѧa\2 0/[ANmCTʕ%V{>m}'LTMV Lx= ?%iࠗMHn]gAhIUi4B=Y=[|+`O%rR-ヸ@U־s3NrKA5qX?jڥ<2swm/ F~XTmq#Z5!FPH,s 0 txUnGٻ* FLnBUlRߦ:2n9m'ltM8/+ \ MלQ)H[&#Nj8I#Rҵo0 BD9/Po*Gm ]- aIڇ? . ɪF+6sK8V[Evvdנ;/o8 C@14gBOAXmvy1tK?&_5.!`92~ g;gZU",6G{oelG`8řTK^TUF%A2en>?}Ix[;:QGPy<ޫkD4zӽ͜L T0 [B鉺+9"8لMχVoPDt{ Aw {8e0s;tF(Nkytgb5.Hnd)=ADԇТgSvZh.QH*4 ;Uv_O a\eFS )GT@߂?S&LS;g/Kma:팧lUN$7,R h-Qv;(L{C&cVIYޯ]a\ ѳ\A:.kh{Jaa&t}p*=еęeoe}~V~ǨG|Sf )}v"ª#-!"Ww=@W /|c;a} f~S9&;rs}rj hTfipe/hu*>T[; 뤃nDp\a( ;R}Zqa#K])2%L#g< Ƶ6(6 CF!UOnOunhH!-!'"Zr߆49G'QL;LC4:|wt^ |սoprͰݔ'B Uk=jH5I^FKbz3A쓗\QY|Fk Ĥ*_b*#}, 8f(.Px9ˋ4 ،%HWq3O\i wc#f˲dCr{B9K*ss&巨MATcZ]6{ljL;)ܒwj!C6ko,o)_S ?2_3ز⚻ 6G:g5yanL}X)3nA 5"@Ӵ,pxQd5o:@LI(0c(yxpܗBoPXۦR%vݦ_yDڍEΠkh$"<1D9|ډ 䄊I0zVCܭ@~E: B$+ Zk\~ )@=.1\x6;l[3,Rozת'#06i%d 0Rz`ᝒEQ\kwBeKْ 7^ٵ=@ Is+Psˀ.),^`ydB#m9{2K}`y3MBN";[p͋Aao[_^6^c `&(ɭD+K3\m S viщn\拏lmZg` P'WA99%8daXt_O .#r9;Yj-[ hbI 1fP tZvfQ5N aEQXɪH2Nyw;: +=Iʭ?í%GcpO;:Ji$VJW*S$GNJ-1}1cr?tk 2;E<52kT6钦yۜ>i[绹`.;grP|Vr"7r CU}#.B yxE\\ S;ۏO_G"Bmȿg`\Rܯ%Dn8VeppY0`b -%_8D=go67+i7wT _Yd֡;zg)S ;ErC:[zkP hUyUP:t>ovtrC".nv&V*CRzf]+a{HDIWmf6\HHajEQuKVLNj6?Bf?os \&%NoP!܏`擏{0a2ޱaDP= ̥oNl_ɻV}k\dEńBqU?y2Q5]q9:LJlayP'd@鈶`eu.Hz Tz7e8^J"ͳIVז.B8vS>g0ՆdT"\g;D.-W* r cG.19(kr!%S1.c&i80hRc4hOA:w9:Z震(xat,Xr6{WcdqX:ݟ"-]k&]v]cQIpA}qDŽ!|ԈV_mE7ԛfjF _ds43Zޠx{mQ7,c)"I MDr$#{>DU6FBP,^HWML΢'@QEάߢR9!lW4} [ƚzQ0'#tpKcD*)-wB¤?UL" Hdޣq3M e#քzs g竜<$׳pvݜ&̅܏2{ qߖhYԷGUsT]2ۯT͆x=4>ܾdL-9C:5"?(pKSW8jbJF&IfY9h@(׵;7X探ڻ 8&>2?Qd/b|<£t@M!"u:D.ҵQ RRAvF#ݱpUј.>2yaCO""K`( z,fR˄eh?`~Z \_k 0m4*vEcX垲U"Zq7˨amVPN/mZt2X]BtaL~3݃\S+Ul|^zkį Le9zX库A+z1g]"_c552}yn^0M粱y!,QMXv3w08tCBq}bYhC"fmң[ O(8<2iZ6{>@m'܇UG۬zsuH2-|- MTVwKOۓ.QY o1j<?|k;]yC^Oˤ钮 jtdɼJUbj쨴b{r  wN84}) u¹ ~Zi:N#%T4< q3C{Rޥ$ZpUGϞ  Sbq"eġe_O$NE BYgPns2@;n{{g"b߰KTPR:s]jOYd&zw3ۘo%ӂM޴-Uz}6 {&rV[זBt^'ВupzH),14̰76˨soTԻE 1'~4,e!=(\[4ZHba󄼧Wr}O>v"K'qs)rg5qܒbQDuO% %@)%&OJ~IX iq-V:CIKTl M"ʩh5ͨr:.-??-.q>FW{ 1@Bt㣑2Hruڗݡ{1-8ـ##D[))JիQJ*ܦ @C U3h?CGO]0A8hnajќdط\SSVO+9)B¶WnkŘTB(z[o:sE.r0j;U{a&e?EMCwk(**r&3eLLoL|u/ [I. FeO(Pqj 9+ ɱXƗ\`nr1W$>^D|+%+&lZegĘتpZ{ B/ԲV~Cu~->󥨣E#ya3"4^EK0uV6U/`W-Nכq=ՍU3Ly`W-v?senp1>%$DQ+9REA G>?9F0 ZJRӊ>5$k2H?L) "A?}&N)=U4;qw5#Nx]dM38\#pGD}Z@]3EߒhČ rwc?,WN4:6mt듖.~C3dYIN\;$Wq)'jrD,};է;jK߷rZ+X`EzJ@&F'ݧ^bu "YbqmV[ XU1xji=}w1!8'0 z& ҉Hu袘cݼiLHx_7 VuEw'n:1ќe%b@a({oJBđT(אၾv͕յIZ$_W) U͈Aa@蟎O)ΦiϞr~nMɚҏj)$^R؂b*5ZY Tt&Rc/qzcbYѮ0XmL@WNǧR7Ye]ʶ-(B:!Hx* UTM?UA$I ~"KN0;ZK"r8 fw?^s7C9ӎ%֣Zqnz.HjZ qkmiNOW~c5(c~A-HWrRt}Ob.dֻ) s9 +[.e c3: 2 3P+` bZq Zm p)KɄ;PABU<鶱{S:Na.1,#4=GΦTol84魡=S[-9 |[M3 srĔtXMiRLV3sG[) 6=wi߁c53(bԒ\BBn q`:5I}F:BIKp&DI <}gb p<h(]wRln[wy:ٟ /_[PȭmySLn̔BIQZ;O.FG WJIGPnAǂRArH/!dApL[s}#$ziE)4ė# GUvC/3ٜG="k+oMu"U-!J&T?Z2W#0b7m5B)Rjܪq_;7m;YʸnBJG>*wsu@]BRl)pFIǪba"$ Tm ~mK%>ɷZ܊7ioz7RA)ϥu!E@iܽ'|=Ay@32l(4luj {XbaYK/r(ىw(}T*J7e~AkL0;N:\ u $ltόpd|:/iL\3Q D~_B йjv43bѭk`\AHJT'9aںh:w@>1iY֫X=3sf!NqmQqo#XFp d? ?l.q%Sx 0+hgB(gWsaʧ}߂,X{= z=A_h {);؊'adp(Kܒ<*h$rPY 8 Qcoѿi.%4%&Z |0VNa򌧗оfhȓ0l!y\'|Hj/(Ɍ .ðldf[IE`L()+pSZ#?@4AE(AtmpK>N <}҂N,4Sӗ=KRIsҡO}`KSkhIkz\ A+Ӂn"2\Nx 6=aGuQw=d9DJ]Ň9{}b-n6݋tsCAtEj \$dbp$>Sm">݆:WRcϐpi(ݘ9FIɣ2R}tGp:,ww+EypZDqMRnVjЧJ9WI:GF Am  90#.8̢>c4q }؂u'xe9-ȳtJ h$,L7ܖle^?q5?' C"}VX ?Yj]yFʥ$&֧ץ&48d1I3 l,E/YQ hk8&3sXrKBy^hR_9Y]gq$V`^!G.@@NuR w;Nm-t&w|eh'&hM 5!T{BC$JCD 1ދ˄m`qO|If;BO2FdXm}#/_B +$r"t0ϼlh⊢r1$j ıt6RB x'͸Ō,_"i%oy,KVbc[m*9}rG31!mM+efelXE0%hetYT^ǰݤؿ^,HįhzОtSsŖ. t$q2DLMik]S43L,`%q7H%;& uP۬!t/1 m;6oX8wb@۾ %RN"o9\Jz&WZY~+:D?gP ^hqwP>\Npr,C\>3tPv`7XaD|]t,)t%Ƴ^:2E)v= & c2cDC |2.'1_^2ka/R?|6C`%+Ǝ^Ll,5*۲DEi.*-h6L n[=lxCI?v;/cU}15<~< F*ҧWF`"D\>[ٿ`cVjI{`rtCw;M% ֡^_qKîۻYuo >_Aw 3 FH*ߜv~)Kh ~dg qRKVylc,u)hF%L԰4im;-exˮzJ;=`Xf{G7[٩/Jz oE d@g']&_[pkB~O QtOxU qarmRA!:H!PB#!CxPӠh[4.sV4kМ,Z_hRud]izxnrF3wHPMzO<& b7]> A~qaZn4zN΅?:2HmPmג@W<.* "ΦDF8G07};t)6;]f?4.G[ͧQ0.,MSg{^{K>$Y"FZeoNqoE3 (˟;?oO!~K%:v'\'DUY9I`$.ɫ P(=ĚDXNd|X>N/4ž7Pȴ! VmTR67O>7\Qϴ7,Y`.z2@yHe {?V\X, sUl_f-1,rGj]uǻrE3Q!=z Mַa+ Hx.~O1z.}gSLEVz**ecGjʪ(c/E63bC= g=U_pݗa{JaZ\q&Up}#Kwź23?ٽub@˷nrk3\˸Ut깙ܥ.8p;ި+Qϑ~BFbRALf_JΐFd }N>ܫ|E-&9Jtim1|`IJZfYs>wux31x2z"~hɼ2ۡ:4;ϗY Yd]Rd[4d01rb tBEuQs?>pXZ&9 _lfFH 01%zt(\۟4Ip@$YDؕEn16%#dF\EұpPQ\$E˯>zG!WfZ"^B%%\Hujs E/]~,v%ۉ{e|c evbIL)Vs N<" ZAzĨ4|zb厞3hOdU7-+'3?B+^,R"0ӶS+\.Er-|$| atnN5Rx+R%DHGk4|]s7ʇ#`!/,L[rXwݢ; (k&x1&;$e}}8Wc>(^?tz p$?uv ϼ=&F\uM!ׂqSaQ΁+lFjp4c)P%,+)K鶌h"Nq[W6\4tL޳6:U{N3L B / ВaF y d\0lS 3 9OU0eVJZXE3t le#+ύ[G,|B:ӟk&{wHwcՐ40{lVB|UC7>׽\-u^娅^^ܵΝ;s?+]dž̽"ǬP!kUtw86{< תM`Ω? 'Jc ONm/]|-ў}v] ɭ=A^qT&3& ?ODwd\l{#8~MaZGKB#bx3nIF@ fݍ Bo߃#3yZH%%Q&?w:͇윛~@S.|K5!L HϚBo}&V1Hw>١ H=졛GzH6<4OBJNi6+!:Ugj,rRoOl{6)ק2?V^"arj?"r7ϧt='X]\FA/bU~j2ru֎c5lF-[H1RJ i$E;) N{&:\RSp^vf\ΘIdۏ^;Cpʲ^O[{wmm.l> \= W':1qjWjMR p(rye0uT)ђ:VYP&kC=a1XG8,'YTBҾZ{`1Niks +ۀy@?D.t{oTR寽eL+@uƁ.~= TW檩'/L[xw.'DXōw 6;OƉHqݓIwUw@X9XE d#AEPvQ#m_]85q:n4@CU{Bb 46> Qjf$wr [zi51e6ӂC rX?͵tE6kƸ3wH0)e>g]akL!`)9Cqj_Hg7,$AV1j`ԝgYtjb0Ϋ~]eoNo(E/TvM2ݰ1ur|%2<-wkαrq5YiGّjObϟoҨą6ߨqw"onf()mzy+?Xq8'՝c5x֘Z16N~˨9lV^t}AyZ+K?㤙C4 SIfi'r0m\)TMG˵=h{a;[ϺN0xZ 1\03u%Q_S`3ȸS%\M8Vw3 HpԟY'+Cl>Cy}_r@*Evܫ"):D.">H[%)#n('((x-mOܵdfC qK5t̘p"SЩ)n&Uze[{FX%y eibxK w@r)0w5B"8{N5eΨXywfpu >F Z L~j(}PeFleTmuh抋ƁTͫ=2[*"C|פ% F#yBPtW'WJUo;@KYB[rf8_Lޥ+xZ?w?ipR?\B ^]ޖB>9GcN3tV}y(Rs~g9SH4^`4,+xGP,J*` M~Xwl'xɷ-QbL!*|\R0a'=3x9y2 NZϊpΖid ύƦ~7Tyd NӐBȔ߈t,;7Ğ"|ߒJ3/7=tcNUi+ϥCj Yʄp Y_ڰb3cҐ wHh|A<5;ާ>}Xѯt+&q7$(:YA oTo!ÄɹR' ) ?ʤ=mX]ʽQYF),OXU\Ƅ>Yg'vhB\Tb "~& YfT7gYZPK!>B^-- x86/wmi.ko.xznu[7zXZִF!t/_-K]?Eh=ڜ.+\ZaűC3KL 2D5i@1WĨ<3w560^8jǁ%'ڱ!l_c$Wn;b^s$2RAEwwX'T{YՌg& OJ:HzhBt3g~ ǂ75̬Fb8X (Ê))<1)Ƃ;Ư(3U*! TUck7 |.m+h@)y{ VfTH||Yɖ-XֳaVB_7M>j5X?l`i-z̛l|t}v:(*PId /OAY:Lz{.Rdwb[=*I8GzWYՕ~B`P9V*^:PWb3D[ M&TQܦ*btos+lX;,a+SR-{4W(C9ѳO3Aʲ}*hΉ3qaEϾIr~(6|p:2>an+(#C̰G=S=D2ï$.tKb2C.$*y$S$fkse t"}8JNHo#4}5YÄ,5׽إv=~^n }Cr(bzp}8Q E{riwXoM<n%3[#Dwq6vٞ8gqٿ ]IsM=m^-(Q{~/gn~G:|P } UMBP}_OL ۢ1PvR(Wb*6W&Jz& X2jgB4:a_/5r-0};tzN|ۆ̍ifjكaH I4qj'0.|()A[q`.(70 yU^~BO<u`OY1 qlF~H5]4`#pI;eK H?9@V `@1Wj *=kK]ʿ/gT4kr}U > h?v@a[FA"aڏA2ݪ4#p슆}z@X!F.hն{7ѭmOjD|I4SaFSUn7e +W.J&dv.H=p 0C~Zyw!^+pm(G-D8("&XXNS 8x~ !Y]NFN"F HOm>]/8y4b So >HyA4C4:Yn a"FLxP܌Έ^If-hZF!qm˲Z]5zR~ o$iGFpNHqgKnVrQ̄lcɐkS9mf ڨBL$:؎>ᖍxN?Æ'?9bm PS2 Nw;W$E "a# 5jNp.N%תwG]ËɻO.Br0rLZ"t]rFW]^ŲLF&kĥ׉Jfm ޏ8CplY r>,WOYEz8kElCR8܎ 0H/dMnø{Xb77<݈ռ(e:,l8o]vy!_Qʩh|4 :4~'Zy%>Dr/ޢ2|~Ϋ昀h:LLy%O7Z_ jq5Gҧxj+rmp,-߿^k ϱic%F;H2n,c{9z4Ym_YЖR%ђg |bC.1fyWJDHlTxk!EH+s9H`s:!A4xsZea!G#WXI<~1tY+ԸÔ˞(ޏl(p䤪ɼHXWBLD"[xպz"`d%qX#lq|Eᅳ?l?rSP-IƉqIa 7ԺSbЌ2W jt/{6,,"&KI.yofi$gmY'r0l\Y(jcFl {4yhS ^ h\qW1.YZS0[i+$d_ 1D6.`A8u҉wWcDw=+h#tjL\ cz?c-CY,T)c?V|#?`&'d q] KAڷdy7P>y dո G𰒧"~_Wg:51. o#/JxT:ڷ׋LqTWT͋YȆ`~?1WA|8A `˽ ,"dDD$"7RrUVn1jl}zqS%k@ezq|%!ؓd Ыz F=۟/|UX?y<|v5P=ٓiDCE5y#|OW~aCM s;N8 WGБEHL-&I(ƅ@OBb()[S@ uufdMTt.O2օcRti)_n}]No75?̮B0f15i!e")OMhY8^_nW_팄 $'ì,)=)*#jHǦ{d -qʥtԸ)gZlIeY5?ZпD%&"kibx"ETfCfd^5\1bb%A96Cbn/L ÚNv=bnlZ;-&3m1L3W;&I|<(+sTepk?dd8;faX^px~A̦J\"3]hAyŃUC wvLXf+y=prO>f$# KXFPcuv׼M#:tLn.4P$-IMI-kX_'m+Xk5ØO4$t[npgy_z9 jn̛fWmhny<DiNda{r.&fE0[I(8y[R[Ąoŧ3 ϝfZChҨ5hհU,1SnH~~R0hC95znmX,ٽ(Ptݪd:VN(=w܍IZRk4{']$ziaB9IXǮXV ?"IFvBj3lE+=_P g9׮+&y4mT Se@\^IuZr%QreA.̕Qw(zAW-`v]XMmaHpPZB._k W+.)Bgq0p{jb .G?XBg~M֨m"6DǾ}d>Ww([֖&~x++v%ͷ" >³ mIxӢ fIE':%HHyLC]t(;sq'eC;GV$.Wro<٪ 68E}9Iwsٚgi~@kyIiMߚ6<՜eS&xN'GW냫ܧ_omun=0"Y1|3ʴӋf6ť/ Jԕb>'hZ$"enW4e@舁D?y\:uSΓ5[5e.E)ꮾqgFm.f ` T)_mahـ3MzAÂ(+涓Gxb.,@wѹyuZPbhT(aVe7(޵;xnc+ ktWRj~TF [b~ #E#gf^ H%B.(VZib}-s ŀCL!GGhV1$5"R:->y7*p7§Cv+~ZWRuYOp`#pBѬeR\;fE?hsPUE :鼙!?zcD<4sKӤ4j_nF7&kʮr?Y r18۔zPIO:yqhw4 lA,1,3_0΢9IT-fF_+x)z%)Kh@Y2M^3;:IOU[y72{ai:-׍ekA+%R .Rv[ocO7~S86b:J%4AʱY0Aʼ QC÷4Y|r+g!v;poEIo,[/'1_IoJ G?AfU("nֆpqL2(f]Tw5 QD0b%WfXX=>;TawϪ#[8/9'(ydtuڤ#8n*w%ܰ=ܒ)B o,K7W7>XBI$b ʔٗQι[.G9sdbv aȬ Ų{X&BI[aIC0h<|I%a)#`ZJq\=%DCUcFۭڟŤX@L'mkXO`6\P&'[H.+U 0S_qM ft)̜ۚsx\(PxZg{CUy!ƙO)g}F0aت6 q\3[ DYE`Cj4Xn 5 HR0_`r7;rΕb'_sjjSfSW5\*.o1xi1a: Z1\p}HNm&pVU_-69uDH RGҚuŚcPjGf=ej,Uvҗb?䌙m(+0M9uN#bus T?oAUG&*nS#TB<_&NJ:МY0 cCܔ[MӋ07dX$o27HtHnl73ђ_fnwXr6,D]'~=Y@g]TVCs=\2Rgj -x꾛M!WMO5U]mheںBHӻv5kQy" Ta}] i8emLЎcPM3今Ѥem31hLč,YZhub}\k;2 !|H,g"2 [UIa})Y +ͯF l,ӞܢVODIzh VL{s%8WO*!P `}X'-!^qj-n])|&RW@73[H=È7p[aU| 5CF+(uʹɑ#eIٖN Z#+ Z3P) r c'`i{u㻴9q.|Տ̼iyӸ )Qb_uɇ:.WK Z4UYgБSD4A\ee|r .bu/qzb~rR)\o- f]kcM;?n7YKHw-Uۢ֡ S_n`8 ?"\zw Zt&d, H e{ 4y'KY6[iPEa/a W_EMyry1ɿKp)5i_}=Cg+d|eA^I#n$*?P+mNP_8)OiK^ #J+7%y6R&4rh@UZu4oz&P~H1E`&=Y(k~ks}vbM+5<gsIIbsktQ@ϡ:?XkzxT ڬ\JDf4f70f*+̿FS/۷@h> "8!3һirV Qy]W&|XGIQ)j;j8W3Z&ol68V Gn?̅rEл>c{s1%FɾJFFNlݩԲM:P%wϻ[鸽(Idע`*[7zI6͵=/`[}d &IQ:/ zu3mV4_6Jk y?ԃ*hxfUHIȸQ, Gs0#M03zr,<,l|;MF;+te1abfU, JT/29: a? hź+e( 67!=β-yc|tσW5F/QlE!X(SOYo'5L:,?/?'ӘaapK!jʶcvw6ZޕgYZPK!8((x86/eeepc-laptop.ko.xznu[7zXZִF!t/(N]?Eh=ڜ.+qpO?mHjl蕮bcO57B62}:+ܰ?DQ4Qy'Xo(M"BTs;ăobaד=V ,B1!Gl`B><Y4XG#í*߃D& n%VSH@a,)፺b%CK>!F˾Y CS ܘ-K@P\ ;1WƘCC5"۸`;Cw Oյ9+TҟU^4f"ikp)(h2k %g;3DMxLQ=XjH)C@()#dXV~IԣgЪ!L;GSoAL~UҭKH3J9LgtN[yv.>P/Q[Ȥ4vLtKvnGpT([>]s˿BrbOݭzz59*ԆhJSUS.Y (ژrY<+*}vk QHS[T6T9N F|1* ={ =C+Wl};Ú>M*YzwݨRɡͳOSeW^/i2}b^āDq-2OQʂUB7`rodz<D;d4B[p7{C3il?{^{U1bHu0tH'"=<0doVP[ C`fuk{LhQ2a璭 /lfx'#׎U0: BiA-a+gm5:bqLѦz#[ϑzr=JrE/>g"d>KbO&r -F0!vDYG"Wwy$\*kXf,e2>xO7Ffạ8{cHMn1VOq&5bReͅKB[˖Hsipo uӫ&<^PTA0@DTilw z trqLiK- AƎ|!UFwiFdn63+XT]cvRWW:m#":}4h\Q*†%ՇqQ2'o"Jhc"^%%{ΐ UҜ 0@lDp6tMi!zj⯈mA+tk+;CU b\辗"ɮȹT.t U2x^ #A*խɩaE}R{l5I Ͳ=d6Ť)%UY*=ENKFmIpDJx-^֐|,SG(2X!bՊ] e.QKQK{cyW%8GEg6܎צM_g^Šɠ5{r$bDGJZҩc2fĂjp{@_m/eQՉkEQ&JRjJdBƘ Z+5\C| 9o<6NYEU<kȃ_ %A,ʺإ{TuFֳ(#C!F`4CZ%XjBރ < ޼h+#jPB)""f93ka$U~%Bh˄ 61CJ|\K"~_w$N -j Vp"&7_ș졕O FH*ny Ԏ9^i?RFl$Olm$lQc_jtH:^2L a#{j/Zg1PT^X}^QKYZpFo:9K]֗Hy\t5s)hiMT5zlvy-BmR@G+N܆O{X_S5*#6Yd}/ek371t_$D{v 5l}"svJcJ"F@~G֫p{|Ib8S;Yc6Rⱁځ~%1Eʥy#z}U&'T1ixҏR|8edА6ZQ:è{J#_V刊(_uhy xfwGq##ϋ!6Kr/߂彣$e|WBch`%)ݼ95RgʂLHM:i^%PqfV#x`ήMyXAZ*ըNG=4$}^qPzZ$vNYVޜw QM)2 rSw S2(b20̏ Ć$V^K*fzFTDG.6u2&BkQI%-6(X)po0]MVBPެ'Bǵ1+W3Kq45fĵ{[&"f[w ėyڠ+\Hl R`8? ']êyJ]rv'ylǜ$ pIh^ߺ"kFIF-*<=f-[@z 93b[nn3mRC_JIc2)a|hR"E#39^Vm߃ԜsB_2ֲ 3ݯޢbG\ <_J?u<G[o󮬿Un-2O/_I.dc|[od\XVlK Қ|qCڴGg("Q}y/ơeltE7pW8M1;2W\zV Zvu)_"._xA{ 0+ ~!OAը+.q%.<|.uӾji7u, Ȃ8&ά~̖Ud9WE\^M' AFCb_s@xWj\4 .M o|NH ʋ<%ג e* R-GDN!Pő:I]#5Dh)5Zv‘)b/pE2& 0\1ew9l'jsF=I}Gn&Ϙsʽő mfe<}V#T'FRn9cglT,xP&d tVPtxˢؤ\;A'hiw7"nTgw,[TTŝCkRUe~qk-@MEa9bPGIQIq}'sp?UXs :⡩2(ǘ?/ hp*0 61Έ\{*g 99brNVB}MXt^3_5wq_^!oԴ7] 4'\|ɏ}!&_~ɴG'z$KV.lBJC^Ș/k î-Eܯ7@NvS>>vGe ZLw C\S 9˺l!"EpɑӸ))A-}Z:N-Ê Oi@u:Io܉M mWij+;"#AQa]%>~04Tf͆MI/軷%axTCm0c9:*Qo@ T=`PUnzBGrڱ'&vKn#9UX"bNj3)E>ӭG|Hw# '~=5'PoY[唝(Il۲lxأ p6DEed$_8?̟JI],qE_z@ymt lS@<Ͽ늄3OInҚ)D2eXA]=X`(9x/SwBr_a:1]>8>yM"LtΗ4fUm9R]vs' a 20yNfA1B}Nמf\mQw#+]e|)DU Y߇c `+ L_oo誻 >{xӤ?sQkݬco's䗟Yļ+صyN3.%A3?F]) G-v  C .ulrc^5.bHɶ~pW:\ciwj4MLYp||K1온w@L 5_t"` P [J :~{gc%+TL 1/&&0A~eIN:[hw'x##.oLD`=UՂ)*]PY.'e?:AA,JaaDel"{#ˆfmLb 2w*+\2bDʫ\uKY}}L>]:H=LH@ ϱ{X䇝9\j2 G+4qR 7-Z{w S L"}ku)UA`x$rSR2?[!ߖ;P3"GB) hϱR>!la8/+aVY;PB / xWu\NI&8ǸՀL J;Ua oB~6L7{0-AZמ+ P&VYJ_@#ik]F"e 8K )סU-ۀ CiMX-Ws QB;ubl'Q>ze#;/#8Sm| q+ՁY&%5.QcSZ>_xT\d{`HJTt:-J0(Oi>31ٍa)~$<ߗWNGSXknC'Q&mT6ĝtػKqZƟ7Z:ъ ❻9P&-(} VB0x/~A(3$tg2nG]̰,aٶvYy}c[m CɐPK~b,"ߴ,%>%3]oA$(M\T7|nۉh$mL IΚivOw7{,mIb.Ʒ (CF2a+褨I#)|Z5Axwd@9((1I`6d-Zߡ0_)_Wn*O)D9󂟧4>SpM=喻JOiguRNh 4xLg,PO6QpNZÅ%#3O\. ^,V*FݠϿrkHy鑠3Ugd$^+F)&S[%25+& uahˠ U:;'@J{HhTxA˵eለW9eKvI=¤!N'|oo_ߢ>H!H9F'Z5 } blY(\ FZKʲrɋ~'9E--$rQ#PȻ1_;^Q!R'4BgF'-5m!Q|iƂ8D q(hqt@>B6v-&6on+͒ҒUpsg \yF<"Ar<݁#p:9?cB$<;Hq?F]85> ݀bʩ%G33-hruB%+HCϲfdP2a3FxB ѣwz&$~\&\VXxڕr2>I~y(y/G#$о ]y$|r6R2^:LAӑ#6љ V^=uG䧟S 20z;ր_qNTKh/_N@!Ҩk};CKH#3DP}cwͳ(qdyR5[G[~|% /!3mdkrnR΁9*~ew^8fSGѴQ4+TKr4.-"!I .X?^m>h8֤Gv!-tMxftS4؆Gsӄ[$+l0h1&e81]F-MGuς<7/3LBGyvZa˟XF._"RHdzbp^Hq~*a6 kqgǧOL 47>"}lKXK sXwG1N䧥(&yf]n^>HD'H{x4sG01 ј2k/4d0 -⽿Ovavh -t2gTnH` K6aL7RrQW܎Fyapsq@U)^G4LV0)#5V-kR}B.9-\H If)>2ʃvWmkM%*:mH$Ce>K#>=ށV(YݺEf8BwzF\fgft6g$72K!-TW`-zfk7QSw_"Y [$A78d-quń]/`9NLjoӹ;tHtRIqΎ8%^l.#g!q1^ HPBBSي׃_-Dj=sUVfcW_r@ό\++}EYlAu+SߣU`XRЌ[Wa?z½$iCj w@Pѽkr{boN+EM;Jѓ:~Z|=Q=!d$We% \95O#Dn֐tm]P)6ν Yf> :!;64Yӑƭuxm$Кum2r%svUQ_c+yLT3o/(U͝+?lb9,|1ͻW{ZhzpQ<$r30sw]0I pgnw!ly letrɏB~z' :TRG!䄢J7/ ~@{ּưقIfX"uEqH5t8Wyy9+gQvRX=6WɔWgyG;xVxEj 3Jq |/ 1ZUەk$1Y9?=ASpʄre!2?ۤfKZ'/so 8$X62$C /38ۋU*YʙCaM֏DճPӻk@WO_kNZI! 2kIIp"z9vPF7 $vV c͸yO\ bs$_"i^') yNhUUzRũ<cQA $~{ۺԮFCBKT`vg$Xy&R鐡oA-PdrWcPwT`xIasC;) OPsV3TOMPi,} tW槺HlzXn&|,>] .P:a vhmؒ/lX4o'jtAla-86&c& A4p#4ބ#ip Knȫm3wtK!1dr2W ԻTcrӎJ^9UYC^lE=?рSzbTg:l.W˰a٤yNd?)3rKfO֍_e.ev֛JB;,@KN]xXHv,"E1q;Hv:2ڛN[v F&o< )7QГWWOe/}%q-2Ý?h?2fnLd;f D *5 oZ M?:{l ٵ#er;1~/)?vSVG:VzL?w)kˡg6UMcdc 1N`/qvls5=-?X]Hs'j%u}V2C{&i<&SS ұJ}LzYT7|9YS1[̈¬# 59L580. \$>rZyw]Y+B`?ptKŵ3 S ah|'b50T{$Smk|߆`ܤ4boY +qVK*vCM3^ D-4@C@ela?>#POa_XD\ps5s,%d:[8s3:[lm9S=#2\߫vny鶁 o OAd-8f q'ݧ`57V*ց%qF|3 $Ow1JBI7qFÏ ~[.L^Ȝ,"I1AK߂3)а 'F¸)7v #Z|{BXJH˂]7sK2!hcU3AUmP\*1cea w^Qlv`eVfNRLn>hČK9Omf8d)fjc(hʐ|#n/uSkbxx[mm'#Oٴ[VVgNkrezA)*&vJx$q~: 2O&ʃneYL94Z=D=dHXDK8l*>p4l &QnL&|Cg&C..\y`Rq|Smr~+N^[Ä]2&v;}޲F`1p7t^M}1l\_Tp s/ooa +Y|Y4N,UNJ>%${a/l)SwU+g~&gͨ{_tZTG/㔯ӽ.tvΩf@$uQh x(,sU s{/Jx8fKgFMr cNaȳr a*@La-VM4 lSc<۟Ty[:ݚ%dD)`P`!o^/q~Bxnj/yRRTV7zqrS@~Wȝ-cn?9UD\}n7M@s7?Io'rH #ݢT-L)a 6)uտ#W+ϽDY 1Y&v ^)c/?W5_Yy#o 2<͋ &V3ٱ&$bjnrNC. 1- BI(!5H0R=Z;'%k&csVFRxVcZ-dۄ;8(ϰr,|%2ZNVB_6.<1;MYFPxZs:U=3oK4h{\,;*J:6%qNH"HY^$poܬ6: _IRe;<;gTwٙzJ?ϲ,k,%"F<,pEʞN,iϫH2aU4IESDx/i )|B]v y!Xf2kٖ5gJL>Ik"` iװ)&l{^qc7߷l\uz1U 4s5?/>BJnDIyHQΓ 5 E ̻chn:rh`n3/oP32ؖjta.Zošm~xG9"4ުMk,q)$L*{Wt1r C\ɒ/5)kϪ]|HƥZw>T`9Yރ eC>D[yiA srGBC=@jH2DI?wgh(5qyדrvFRh#)1'*`8)Nyi/}PHm]{' 1& ]14ui`W@نW{f>%N1 1ͫAqQ#M$2MK+چ5ˇ 42.>"=YsFZSS%5Y_ý"u=}fGC_Z`{#w2r%<śEu#=rR0(3"FNp 9vVO?v?[T Ke4_/zƑƃ3j6X@^/)W:19{)=pqPMtz1uB"x(l;h y$2Lvf}9 s&'==FVQڌ!!ͩd! Ch_iv)/l?L_|O;_π3yUSHȻ`=&m_jehdn0?}BY Cن4KVXBQ['QF9.t]O,v*YÝ 34c/3g4\χbY/ipk.Ô㪚tJ*$26$">!".$<YQ?>Xp Grƚd$/RMG%ð}+afn˩PҊ"1Yl}" b_O_7 #:" HwRjpҚ΍%O6>+92 Hgz]B1ϋm>tl8 zʆ Y>!YBS/sƝ}-OH6;ߣtC-kECfEfna_IN_ތ3{Wi$U||_e7BC 2ooCcny᪍8MCÐV p3q懧/EnᏜ墽6Y0 ͅvY1$Wk٬N3>(z7 Xh!{6&Աt}sZLVs+ӛ6dUp 6dzE턃ɇs{?v ` TٳO"02Ocenّ"ГR`oFja@>>lI=tVtqPD21ū"Dǜ(_vN6`%t]h`!aeg ʞ'';]ec9"p0}׎" R|& % Q*oo8Gj-Y%]>`Qu c5X+2 !g;ݓzQ%!蚞 `-Kx,m}9o{R|j-H+#GWpbh ִЉˬ(}`'Iꁢ<ᵰW]?|Tu +M̝5P2M.kE-D`KqH;k]`bvɳFk1`PR MY#*1k[5lL$mK)  8N 1%Ka[ *kr@vSȭ#ٌj=dZYƺ5%X TrPp8rr ixeƯ9)3ۋ;E}>wd͒w4t챒mtpmjn{#pA}s& j0F`ob_}-4 WzZrKIw;jBPC:WheSyńNq;.͇l|{8/WL32^| pIJc NSch5=R2fQ&ʱUäBDU}AuTOė:Ϣ߱ 8 ]5~Q$6Rp^_|@ $uue3څW!BT@ޱmIub1]q}[Np 9oY'\n#A5qv4|78B^ 'I Wfoe Ipá~ Bņ^D& [w o%>L L r嗐Ѽ}ˤQ]1pM9Y?9RUOp鰡@^y-9fH<DU<3XۋZU+ 'NR>G=F,6o q{@Y.N5b98q=Gy</L-h݀k+1miX&ojMSL]l,aG ѡ=vئ#CGܕ^ 4#~#xLvlUE)µgZ /}غTl#5 \Yn/=E@CEzb_yٺu D}Ex4ϊY=Fɕ׹fZZk X/&R7gJttVDSsټ,EDb \X{[;pL0#N ;RZPݎ. šҐ ZNH%LC0z6[/vnW2 5U%rVDdRK3hN%*ӳiL2om:e4e][uwjVhFr8VD`.*F2^fzrxI ڃ)i>5Zt#ӃբB5wjHŅ]5)a0y3-mB'D&T6HW4 jV_'i\J;̤ߩ*bY sH=BO@=6mnpbUElHSZ}6%wYw&jw8qd!4ٰܡڛZ #?k{3`9 pz$яգ/\El]]4; p~azj:LjO(1%Eh|MJ? ֚37!'OqB,T[bjwq'ey2>,b cNl~`W/F5HUۀC=bB7 P=3Tzo{ PUT5HY)}b`S*u{g:t{h͖Cq3 +E/sYLB1'u6S$lsWZ4V>_1!&GIy): FmS> Ԙ-\re#qbrR[ݎT%qwD?A 4J 'r6soŲ;8F \͏,-%&p8+1U9SC>+bΧIClg3Vqo)˶okWʼ@cWvAXRA|fۗ8=}J[+l>\iT݆:ƀ&Oي"I~cL>P%s3ܐյgܘi8Nq{yUbVAj f,Dee,.#f]ԢGQ -nN2G3[,7=_i?2QK-{B|[{HIصaX\-jT[Ҹ\Dρ;h 8K|;pn`Pv*J^a,f$IYʽA5bJ2$V&hߠ m#9krٜZ魲1y=spjml_-`^ D^cGe>9&8H>,1U %@[ڄZ, PK Bm~ uNC9t`}`@z O /2G*/ˊ aoxu@_<%#r1;r=JRy+iR)]H^OtY?5}if; Ji[e&Ioɺ3#-k#W&s "g̻ydۡ; zɳR;|qd_F=H#x}2+WRCL Ox%6@5ILE_06@/޹rY P]!h`1qp,u;27|o;f(5\]yV$o[5wqдW؉^D'̹#&␆]^.ǼcA`l"Qu>z0ӌySV +ݤІddUV|͖3!y:P $W0U?Ȫp?7S h h&w]S:+ڥ l0̗Z!f%&6ǩT`jC7ʺLOQs~Z֠ rqۛb7|ܿr7nˠ~ 8!MLD$N=!þ(j5}6-FcU6.b&RWگٚtD:PTi0 ^IIQIHYp)29rX)rNʈ^(nBF/Cn~ ‘#^:9X簐HE' 1Y0f*sX9DV+]iuyKAzoN lGޖ́$}u 1bV#y`ȿrkLOcmfۚfɂ3/E]QRj-Q-P? somߑ/^\XW2ڒ G25AL5{'TZ&p M=D (׶sMoDUJYgd+0G}PtD]yUe'4#)Tu) e2rN2^-zV3R(7kP4 yN=Nz}-.R@X-GN+zAD͔W/Kե7 *\Z`!ԧE -BY7x5w\wFu:A~Ux,|r#ܵPiw'-i`3SOfArP[Gq'DȀ[h'D }X hl>fM_ )]|̨63ZV4yIr$SJ˺'Ҩj :r3# tVSAOBYP'=7>YZr{BIm0gImyM @5KnE|UnVgapVM'9Ӿ]W UxݗQs [ct!{c勱@d]r4wQ,5-- aj*fm6ͺ±"|)F)+_R㖩 Wش̓K[GC6Fh;o5CLy .3Jdw (Bl44PU\$oo w1$Y@sPi'Ȋ̖~FPN#T)E,84l`׌Dmp HNRb!aBC_[h/?nB9@<:Xpq9Y#*(Ax,Ҟ`0?*N ^̜ o3Ob> n[&8Pv eferalіJ-\}},nPSuwA.pbʗL2o,%Qh)ߗ<%tO0>=#"0]X\E_!Tq-t.\ZO(20h*9cV"i^T[u?=l? v[Y"5w}Yo#Ǣ0? l:.:m=v>zܞk :ۆDnPyqu?Q*(A) o.KWw_!Y |n}}>HS S.iwCn܋ )@6r C7OJ%7X֩RqZ$!~݈w"˓;&gA ?֐g6cбgsVq8Eg=vx:еk~ODC| A/î5n==_sk~ GnΜ"q ڛ& C*&%Kud=~r429>'_[{SGpE%lb*BGya]6a^1[o!I5)ə_8 ޸xWmǧ-1a X=tv_&@riM'P# b NLVa2Y?Jŝ${]\5$N&o~T-ХIV18+Pܽc|O{ִ\ť lwUT9S4gq".ҬnRMɑv$I/L*co0ȋqOmE]<8YAؘjCy\Nb-Vȝd )1kH@o;6=8#JgHv1މT!.!HT98gYZPK!i(@B x86/think-lmi.ko.xznu[7zXZִF!t/ z]?Eh=ڜ.+̋S\ΨQ^˃WX .-z $p%#D6é3^{"&Ls0<wgݫ z`D*F$Gfؓ@bIe>Fq Ah̷thgRE=,~!G8]aՊ~- >:@fq%'`:5ګ`}MK?8qY!I47Ͳv\$;l# Y2TOϸ.hXtdvRP RU-IxuRfPt>Ƥʙ\2zlK>0R"o f@o=Tb'l y)`fX*ݫ/kT'ȢRj?Du5`b8l:K*JX/v2 Wk$7=n 'rz!*FK!w-ߣO2dtB}LQ?}Tg#@+ Kxc0Jݹ1p' #LVg&%aik.t>ν\)Pw Fd|tO }'c蜏AtO߈7W=K\C` X`V_j 3L:,9P5~eyKv}N_)S$I34>k 8`Z5KN{UبdLSX%*:d@5haPBۀ/  6S5:A7)Ckx *jR -Ȧ4q B5kvãxi՛Mn]4Jgxqir/`v@4+e< @PߟUe޽I"ϥ[& 3Ϯq`#l$K|B@q7l+bE/z5\lA<QOd^ػ&&k3$ߔHV٥᪬l } ճmLcNtHU%^SU xhbhCzHM5JY ";=Ui]esĩ{,}y1UA"|ز2 na ^ 'I1V\_zcV,/`v<:3Ev 0xI8&|ߧϞiKp7<c\=Q'i3*y4!!]j18-$w*n>t&VBG}yaNǺ6᷽eN27 l5I)*K ZvFp9j.qVs?/Ӽǐ܋Li C{-_@l gp_Ȉ0\1(" Nu1͈Cӥ^Ee66Li\d[܌XU/6~I7^úgk)%$[5uS)^4:TD j΋:qUJ"|a"сQ+?Cfj7Z\ }sPȻ_^{0%KG$W7%`gp EMtM/YFTQ4}0.e+9"]T8D0sQƳE̫ZR21TiGUoeXOj۠ò,7k_⥶PV&njѰ3gJ2U@/%mD$ {@kYZ;%:K7EYbǜ3 :Wsk^ GW@|cVJ5o\ioMj-o蓃$Ѐ_old~ɋ}.8Kb-HiJaѨӣ6Nݲe7KO.+m!"~wE,;C *ƾ'`04ʒ_, rePocܽۚCƼ -kfo'  y:C~'n#tcZw>wk9& G P( $;_;]|rRcOş%qBߵ‘0Io6+}p=;r;7GeeEwUzufHlaW1Y.L;ohЯ0Z+πw=D\KK n j-P|X .S]4[I6Xm %Pr4N N@ 4ឩ"꾓 }Ϭ~sUdιi0 6Ys S\ yx.º0p2('X*%:[SFrQ >/lX_ PGk%+v&AO9^u{mdˆ 8ͅoiLї3yw]|4wG# S"֩膻fR1_kmvz#_fRROq!BOVoFӳBFeZ.)!Ivg G餸[3\[SasD-mS}d!@+t?,5&u-R0,J 0Q *h-G n~?m1I LtƞE#AIjy5c? rޔFwqcvnÙֺ uir\(O/߅VQlbLF,JBbpe$DTvAsx)$.u#ثTfNo=s0 t`Mi'Ċ^e]Ah(0&1<1haoq9,|Ӟ=!e p𑌪բ%$z-i/[6q45 Zм8 iY{OQJ#au>oЏ0Pn p%Eϴh4!z 9و0PXvV)`^>PDQq ]8kAsOCD?WkQd!"b+c6hЫmthVM?}j8g7#l,3IacI$6<~S0=˜݆dNO%|HWt%^oԟhɻYjZ3q;n>z1Cf af Oc1^: |k8ن+y|ԹߐoZ>=e-\W]~(p$%6HSA"RĐc.f>P~}SSF,A GS\Rv  OpZq5RRWw##B,'R˂^ i\̢Jԅ-)/.TnR{dO6Nf@2&TMef@0/2e[wᴘ7*WG VA:+Gys 76p}ib yt$up5[x`e(o6wOq~+򇨞pp_۲ W߇Dݎ#&GD5~tv~N鞂#P|'cR] =mE_g?In7 q԰(ňz bA/+|FF >4Fjki7m̿먱:Hʛ[^ ]GʵS^ϺmPW`WҎZXE<2͹R(.S{N~䴙K |}=clVb)$">rTb" iAÿIB@k`c4V.:{˒M9xUk)mNtn8>8s%V"-v_bHtީFB :N| ^kz6pK{2,iJW3FXdt3茖D7:.=9"c,NS Y̳73,nBP_<#[Й ~Rx iNR=>7W{ *9PqsK;$Ȉi3? %k~ Hb\"x9";UN|Iڳiړ=/akQ`rɂ3P}=MQ &u1= chXgkJGR}8dmJЛ:s 0Go¾i_qQ!(r@@rϸ?)}ҙ縆uph8>iDg~&g] y[)TGVR00m5Φn6OZgz$^aSnf;8^PR_G>l~ uj3,|b͗d8ߖ>C5f'5iF-oˍUo(u-GVȤ_0/_RWql,"Jyoݚ?"p6jH;6>=i45iLN#`H"q軓ip50'#+hh;4ݪ(X3I{}0Oj#ouLxðLDO4"qxcWMC~{iSU0?+Xqkl;ݓU:vb 7WN}N9^veU$=8@U yd}:(G5T&>zcT6fb#] xE֘ 76NK;e_xru4Jrc'|uV OI|ƝɶLO^0L+RF+k@J80܃ǜ"59LnM>]:'rČ? :@]c2.oHj|DS#P"js82:oyxE%~aڞÅ*p9V[nK#p,e>)6/+|R)~$i܄cʂPm[qB:hp'Ka-|N:,ŏ#.Rb:wqrPR1NY#J q7i2di C"Al:gYZPK!"BĜ//x86/asus-laptop.ko.xznu[7zXZִF!t/g/\]?Eh=ڜ.+3Sí" ]z!ۍScno $_XLz}.[h>^᫖ZL$2ΩUP(6q WWdS_*#̱ ({q~w]PWnF}Rq Hq3j#x(47Z|Oޔ|fX˓dp mlZsg{h<(!JseR3C lݏ~qDŽ/nb5f%X{7j.|j@+AGqV4=+~’7uN䡳C Hzg-zG@F7\bܵV''p A*X'*^|sMnoJkq.%6ZUю+);E t'W1lp(~GWrXULh3iK/iH Җoe2U1TG=i4̮!qz}  9uh:z=ggV?? fr(>MGR8Nq6Ru61(,W]OJ<'adI#݄w_a Z,Nk1Zk+dSĮ)<<- ]䄳gŦT`?&, PXAHQ)dw,%gȟçHr7OT6E?"zd^|k&-|ip'Wv6ut!g6u.vw l32(sns2UDR/A //wHr'BnZ$ rb*;Ea dB#=$&e wU=ߙ C`+c&hb_rK{F6vTeQƭD 8 sa0al)-S_ʹ"M"1jL=;JcN3 u]-RKU mh,_AM X7nݚlQO9.D#ᶌٌ^˗ӌc.ͱٕNڇk.ajcXoqB5&5t6mg8_hFIxJ!An]>Lw Vs?O#Ae Tkv3GeԖtF˧Jkdtz%Xk\,8/XhMn=Gfɴ.Eլn%1 ^hVDUo$Q`U}Tpܹp6O,C"^Z`o/beMS3@i~%`S^IIF3`}V-nR͞'QƞN}><C_cObh]L]=fYzdF))dI+Ok+6z߬`P dw.V#gam=?_k+4j[6kTIcn7gUF֙4${Xa Ǥh~T\&-43G2PȠgni8'"[f|LY)>1@tm`l kzz3^wzEw?l= FצʆFL`#7_hDSޅXTؚKq ?eB HtzI 2[Z%`ʞDeZNlU%"V78c' D IIyo|4XlUx!d|,{EZAۏe5~`~ӓ$ǁM5R(}9Iۤwo 2M:_>7(2S!y|n76rȾLԧc"AV?#> . KK,cC&-U_@^NVeX?twYsF*]7t-!UK2BHWB`^:(JxǕup`Xc_L~ \7p+CE=a^T_Cye)_@P"oBP]8=7ҏFүzZ]2|*u^DXR`=\D2Ӱ@n$%ʍd<'ZbR_pMwTFH U8: 7&={!s:':>\0i^(EjD ^c.Mf<tEG~ݔ)PW겸J)e'YB8rP66J˜O-\>䭻0Ǭ7$8o2p@ϻ GOfY`a$͑e_Rq2R2XӲ]O-Xii`S@>۞!@Q=om͔b0uu|wYxXiJ)]]5GyP2&ǜ;SN]ڎ=M̧8ip~.lXLt,Z~H+>rLk,!6p]z%Md]_6w.,4o&gS?78\ZoZp~X%|w[?Z2Bs+l'ړBٽ (qCL$ml/ZnoMQ2deKB/HGQAa).YJ24T+wIcs`{АFC]UvpX\ۯI{ Jpߺs*F_A_w%֥/ U ,Dt2!;hi\:KOa῞,387aYVi:=jܾX ́)Y*[$DΕ!1~CþrA3󎥗bѾGЂJ1.~q҃U/)k4eɍppE%#X8cWMC>7E&f3(u-co#KT=.TK&-"wreqr/IY{ʘF[{d;*yJ-VkPY62VfHFl7uw%U$l8:ZX䛶LFopa-2Mv"G~JW90/{n>'NogRSZ'4PƟW۲\GXM ynΨ6em}F2"-E?ڞ= Tf" "{Ϭ=k\i47* CaJ>·;KG,1ycFӥ(j?jp:,7D@0NMu2~jiXηߩЎ?RQM%KȂh73-1>buEWJֆm$۝`,Ttk7V2Z_J{^ρ4͙rY~3͘P翻wIcK~mƭĜH6+Ns&'/*;0L}+Թ`Qgא G)&#ANǾ OaR+WtXe0Ӷ&;KN!I>kk^l] ˆ__ɷ]W^|l)W JLNGp5?9~ ns1 |+ Œ{܎.zٮ sD#nsRq\}W:TR@=l^d i VOkB?3}R8=2/g7@?P5愎,kvp)$@YRD,Tx>;-Ð?ͣ\G^9x>qr2`G] K=-,!W18y5yM|~e4w@O]zr݇NEgkW=~sCJ˻;^ 6Ʉ>9fk(Hp$D?9K`X[Mg]:K[yn9BA^]m]al_|mk\oUjZEOnϼr{ʵ@XvNycB]*mALAt#Ʋy(p Dp£ D BxgD~B35CLNe̠me+| ӇA&U0Q)̣10IJB*0x1+J==Mz=a(Sc#W}&c^Bk;6c,@߱nlTL, UC bq|oD陖T^=G ܑB?z7<+6LVT]E qC@T7 egg3r=<(rpPT&ܯ#C}WIzBƑ9H/׊aM,/])ϿR)`sn0o2&,.g@[l{gc4NXʐ=qźД&H5Rj6rN"/Xfp)MnlH\jYG<EgX s$~U{SܚV;x(Y&H3 kp.P1 [‡0bg#,t9MlRaϢq7N"W1/=-PURBVo;%xW1ۀ]O"h#L].)^ J+ )N/{8 |[@^OYWg7nF}nM5u傅~UJwA+GNf7N)m,'vu C 6ft*7魝8,_gMz{JY ELߎ8Яiu-.S;,7{$XA~ע(G]O%{ǣfGd;'ב,UxPQ*oZ³r C3ͯ(t;ncqtoko>lO*Ȅ,o?+1YJZz~TPK%=ذ` o7q'ƞ}Lnd.age3][r% ︍U,s39u r\DD/QS_~P-2Z+D@l.v7bO M1v ߸?LZ6>~` jʲVN.woA]$KѷNKɅWM/a $/3'.z%s]W8y,O`9&58 bli,I7pw2b0N"]Y2gNOʟ FU!_OcHS t>`2Ah~"pA~B@v|l ߒ_ٝVYyJsg ql-f (Atw~sLE9AR`Gj.$9p=0=R7d$n=Pn=T6\s\0[B ϡNFx\'p@ t9@nM|zMjΛ%O3o>%81  -M}Nͱ`Aߙ8w} X0¶\ãw&u3)ǗRlPc2 x=6_0~֛CncNƶKN32;.ϼ<͘mHFWs|H,$:Ԥ65ѻ^I7)#e|S'wTj 8Q(/FdL%JVK{.&S?٬ txHTJ5akQ$`yQřtÔȷ=K_p)]Щ1%k3wOa4$Q"GE=8} :PVHDH MD6'^CHH/Ir}_{oy1hJΑ󿌞+Ȏ\u5:9/ <, dGɹ5 Q8;M-$F.zg gز4 IEKDbX*~':|bdKZ}VmH)aI^Sf:pZg V␭\}ADpgb%t 3<Ȣ'VƾR5>wڪ.:ppxcōp4mYsgǾa4-aɃMT9b !ݘ޷Bܾx2EA>WvjIAf޵ (!Rx#A5JL7uzrDd!:R(h1pYU@./.d ԆOnn)UlT^/{ġKK*_6,щbf)ΌNTV1nzgXg'$䣈5d"6KKnp680`Db$\J5[E~_"ZA:>?%,)+}9e ]ty+c=5vc^f~JWuv a6E J:1 ㉫1l?:^"8HlX^=Gftgx7o=sNSRWY?NR2̔hP=ܐE8>@{a`08FP1 FxNTvPk$%^_ZDTzQ`PI ~~VZ5fT9ҝq$`3ߖF|% 6uR_O#UG+>5M:Qf1;(~M*>wjtJ1d~UYkw+ }bqoqj<"5吰:^o N@(S%>5D+Kp#7ۆMlbj)|$Qޙ+17Cʜ.1ٙP}b&H^xzPDB;N*Mf#Zv(M-l:Q aj"ö!qs2HӓEiSeb{h#P_8gʵI,)1CUErK;\Ewz?Ci)W*h28~uog/IZ,T~ri-*cClm .Ƙ sg}/ -o_ٗ6ƫvi!$g3*{p/{ MY1W}%6?E͝&AɓPӤسA0)j <[>8df`/׳v!0'K4jz(1aSRIaEn~M?lDs5=jzs'[bm29r *ފKHڇYH 9ŤN|v&B eۍYH(wV@0MU;!.S˙jv)&w^KYz| mA錃LK%zEχfyF]J|9Dբ59=ocW`xRi~\MgIwr\ ,(i`IDzIЦm\l&ے^g 䔓52YSqƈyH;%AT]\gZ0x93[sQ Cp_7ah"BmbNoT[ulsD-ΚE3 ꯔl^oE0_/Si~vR+PGd&P'/${Y>)qT,ک#j@'`|,fXE_kZKu~(s8S2Ce*yJv΢bbb7 zURom͆ )[8:nm;ye!2Tߴf-zS]iS<uXSY HJk;Ê3Atcuxv9El`EU&uv{-"/*ºvUgKޫK.~̼ 6'#\7x U0lil"\Q'G[ҡ)< r .%(@y697]Z~kv=m sʕ'>,7٤WO:+amGb&oCm?{׶.JӨ 4kM(/1g5}5(MInN 9jҐƿH^Q-3 ^(o Q^Zgip"WmwRZ|+\, zYx%t=H\^T9[`L jנ-3w$Zta(Ū7~׏PC| ǕDYۙ_;;υylyW?c~:@&Z]Y.ΡV3P)LrqU|FV<⿾"mTR"rF C*ϵ^UA:QglE2GHhő9RWڪ2y +L<ٛ)0>`%X\pJ601DIR6nzGEKOgd=|*d|/qKLSzCE b add|PX$3l҆aUʧLC? l,-;6dv/EQ9-I%+_>}A(XT@ttB T004BORm5io DT_.=/6` ԦN:'qv}n6O u|f<2yr~x ^ c'ÄaV~@,m>|C68/4f,\KS9|녉$!pM.;츅e(>xV#R+k5@䂗5|^/w4?:{E7>  'tװ&Wqh;nھѨg(5G ;[W L@y.wmR7L?%Be9Ycg?e> UGqc0cK0*k3*04\4Y" =u;x0r}gb ;njp(+0K(twb1IU[Y;C'GR p`gs7HvXϓi+`[]ܟ#;wQvۍ&sYV' 8gc@̼LpȻϔM3뱻s|jz?E;RqA+P[ rodp6_w`ܛĚCk .;#h(?P>d{gPTI}Ni}Y瘋QMRB'ilY8Jc0iM⋩;"=ix8xNp.k߾ zLbEF!̺yH;ikfPZ6noExNbl?f 2Œm=vv6Ab.N-òO4|6?x*IA=S^e()Wq$l' Nbַ}d́)=e3VX_sQ9vFToYZK)Ov--az|^izZV&!v4prE!u*4$^{'ڢ]8jnCc\`d̝pj {U1NL$&6خ}y|v\2u9@\#Ɏp%bHKx؄ν]m?P*oF+9x~ ߸п}Yԃ ܢc}$ڥ/|1C9ؙ!B@>(̾ѿ.<АTwy6炖LRXNtAp.?}&BdK=>otR(+pY~"V84Q{ X/K]J+-3(A ==90D,ȼ6_z +L8:6PwdAknt|Ԣ櫅<loԕR@XzPVA-C[Wb)gU,fNL @L%qɉŠ&)Kͱl4G☒RPK Bh7%moP;Knwj CTa7ڄ] OQ$ F}c=XPN+ªfWRhέ-)8ѥ{~_j2_'9I+%82qnYEma%*ŸN û,d'*7M?HOpsB^kR 7׫5=`Xv6< Hle'yd [P̐;:_~8~5Z۸#/7{zY C༧ɃX&h͙:s2Jx2uwP4Ug?6|l?эcLOr U,UVJޗpvCVktяbDTEz?-s;17gWi"dCOnhꔽ tψlL @`g47^z$XZZ]) 5_!!Ă%;m 9#>[V yF: <Ŧ3vjrz_c9kuJ_ms, !qy~xoDWB_q-'dׂ3 bѻ6"7yayv0_\*㞞:!ȖoK0kiqBeD~POQ4)yXk8HPvRENLLj__,t-3]B`XV3> / ՊH}\hK<8DNdi 3uoӺYJ^36Sze^B7nQu,es8Q (?;gȭR若߾w$w-%۶mbm@5a1f%s_ 3(RWcA^/|M\4\Ptjم7zٙ{C/3<)9Ƿ6Ij{%Pw_@ba<`m.%;8/c2@jVZg$Mиڞ5.֔?Rvfa칆+{miǨUR筁pv_^5=ͻJGNg:_DO 1`W3tfBm鍫e2k8?41q/#i9TZ\-媎n=Aܕ4@n:4DЩ=ÎJ F Ekq U?Yv#PAℕ,(&;§d 8G\v|V|Ѐ"<9?Ueչ53R0z?F$']~gX@ʝ&#QW>xf4 N ;So.u% A(nU0- lI/䄈# ߶5j<z75*^W@pU5VX$`$ǨQqTl(+rEIa :lp 3iJ'gTy~K>Cۄ%N(BB*T@(*:\?XKH6}mE `#:ĸC.Ǩdmif5tFr7!}S\۝|F\< whM/2Tkw'y1xYY;QTDdQF ALGOr6| a1 2[FhK{|P:bvC0 Q8]{z' j0z?ޚ-تj { p4/H*6M}=*L2j苊H<=3 .#w[0~,x k=iףYD皼)ljK5^gOFq'5˥ -"X,O&Z@5سV9p*KyS?y(WI񖎍C8P z]Ʌ[kWWss\>bY(O ^PйV3b.t`iQKGwX;"“7xI< C[! n\kH/A9!<7 :Ȅ10jWi/jl0@evЂrS̱-j'kaQ 釂,b?fڑ%UPW$&堥'JVKhe /ڲfsM tf{lXX)i+L c ?*)C_ ܺ ~ ET fan7g.H 0 |6wSY[ Y+=õJ:YVy-n[:kqLuŴT:.Nǃ.[}3%`idZYFpwbWnޅ&x$oN: \^EBn9jrTdP,-^u*oT[>R4nRc٢QVuq_ 1/e =Mo4#) ?s~2>h{`bR7vN*~0z^۹n/^q+UÖ;8b(N:Uh+Xޥ#2N{=;Q#|C\d@$yℂ0!. -*5,Rke$fߧ-,Wʳv<(P1lnWIxt3~{'Mk=l%vF~6cY#m!*hNБ y Gߞ<dl2,Nr;80NfIf;QDLdr!-$p v&|AF 6QjK9\Z! ו#nh$[Tq8- WIiRIULf;duՔ#VɈXF:p1X|c.~u&sB+z+Sw/Wt7جtNzWnc?[[F$쪪їI72]>h=4},/C ?~FIF1]`;3F @iQgI4ͦufAT|k"iY(pc_Cz!"&ȲC*;ȏ7" Ytuܣ9:U2\gQN&ʎ=-+ y{sb!2M7wO.kNCق曻A9c ϰ~6 \$sw`lKw1E=ì%>˳Wts3S4NV?O>֪.^*cV&wB '0-Ԗ{gqu=q+]"ՀCƞ%a?˟hK-×QYnT;:ȱ<ݧ@kG\iƁ_ca+ٞY(}$>,*5AHnvTeY]JPek^q=0(r&f&]6 PHY$E;R1yjQ|dWŤhՎdٽ?.fH[j IV@[tTKJG~IZs}'G3wCmDǚD6Z_`4Qm⡡FZuU]65z^3_0?ѡyeAl22}K3/x Eʱ7UUajDc {?Mc#\| <ױ+c*/&e|9=F(iodcZ0ЖwX.C7{N5QRjp+љhuZǰK2S̔~͇?q>_W|w잏qW- ȳezjc~QwdUaՀU㿎݋VN+aJ/P1 -8[WTvʯhVJb9bQbn晟U/@i>'1ˊǙ=Ӌ&3G9ۑe`[xbPs,n/8F,jF:^O07O@rs _OSC\zI(H4Nc/<9) b_?2p X‹*h<Y/9~!+m{9wpYZE 2'Da8WՖ7(}kqxRlqW-Λt] ~HM072 Ej:m74u Ko&  Gdx9PVR¼3%~2k`[cVMSx (rӞI/9UU^z ꞶG݇% ꘒ(ܗ|&hPzL]w]ϲJ  yKybͶ)fIF3׫EAD,u2&:rZ)hdRbp"k];S X{wUR {x8#ϡ$[U^z 1.ӡk;Ÿ*' gu36z~-2އ(Yb_C Ƞ$x?}d3U֎f|^ʳ~d@e^ZlDÖt: vs}aQ?iRH $[B *jnW\+LVX)B KR Erdߡ`Z/yYn/+W~A kIZ%mXgl|n.tB||6<[W{NG}͛ zW+Us>N*/_39 ?3݇hC|HJB$1ߞ}y-|Fxtl2 *ON-$bR x>Q]5n,)ʿlkXjxgO$`2h/+Mxb7Bن? DtZ^pj%ò|F֩ J-g|s7.H= ǝCVF$_zU2[:nnƾU1 #a#J)C(Ĥ0/$;D؎N.B!~) 5>#5-= X pf/I2K|Vs^6Bxҡ]cD@aEmTeS{S"@S?<5Iw&TӥO*AIs;^ +NR\ejT_.=\gHP9iV{T|#;S[ i ~,ř 91:{\C~wŒN;~e?>ݖ_"u|ļv=d MRYNKQȝ^%Ax3;c*WwK 7lˠӱܬXX{ $Wc6:(KƏkiD {M8n; -nf<(3޿ą?趞!rWN<~iN7OjMa.xMU[{^{!.S2?׽[+ Eټ T}]:u0f*`ޏoƇg;jmr8M,= @~B<vX!PR,ȝJL|:QlDSYF=K:IRW/L=QL HD'_(+RO7Գ;o{цo6X?supguwL]ϫ!!4G\VJ4E$ o3LIb\ I)ȺV z/oy} c^8~:h3AY&y jf?tq8% p]~_ԟzuY[܉}SXEFfFl*7ri:u iCCjjQRJeCc}P#Tq@>h6 {EɄٜr4ybs޴x+gG:ppOB,/IP t ' OWAQko}~nt3r8\w[!jmN4#gٝٴvྻogZvu$:|3@tH÷vHVV{".o]ϝ8F NЗʹ&`P+45 Eₑ*b!< TdO "\c%5x'lN|ze*dԷ}rb#<ZIDUM0s׷%]8eBx~r[t's?#ss opZ{jVbo*8(j0=`ݰe)#/i'Τ SR&Lɑ@ҁZh[:JE+I?p/~ GU0r>&06g41}Nz{ݺGW>tqNF3{k/.A?֟|d@:8- rE Y=c%b/@*ay4R"(;M$?($w( ZsTwa%拤ArxjR {;}\-' WBQã4.-)K#K>hN륨i}Dhv܊ʭN\I\qӅql 3wNC&k֑YX`[Imb&gI?D;IuÄ*py$y"XC# lUYi;.кu@W@#.{A4 &=[{;—eA<Ԙ7 G]Hk} ^ ui:ŶX}&|j:f`SX3o|q TFaSbJX#^3 Bc-z=! Hm}כoE6_c[#en|1ݣ ̩+V-F6uoMJ:-Q K,x P˹3, `vhkn [h #6Ő\n1){P5*l4.DZ#oV^%5̶e; g 3>nzL^l[DfB^a{(0< $N cKR?s2 t($%&My@{Fë70I9W:he80@ SXN=m Srr'wHa5}.JWLZųo'TߑDbl],W`Ya򁍧m.{JT:>PX-KdZW3~F%1}lKx,?RCl'7,iNIof}k鵘Q؀RnsZԶDvSAIM$~O0̧dh1x҉PV`*ط`1䕈nW@=2 XS/4o䅔 O`}"iq%z;흤 zjb͖  a>qʕ%P?L˼ܗ4Ӣ5&GÄۅhq+B&Ȫ?9?k_v+&8o$7dzXz~!BtBOf]9w<,=}=QڑJqӍB,Ƿ-@Sxc;xT#Cc/Һ~]#ќ̽tcbHRir'P,DoT@Nĝ| ! mͮ.dD*c\̇i+\_ F VȴbW|n<-[,(ӢU2-Ț|aQ@M~vD8r"*6@&ص)F?YO߀YyT_G˦Wl'Rpi~d ԝξ#4)>( TU~R^ R@ N^~X}] āAT+{WZlPO(&[aO '_%ǃ,N"8'LߗθR?'ݏ¾v5H/f~ʺ I + cVyҟ 9Xݣ'a謵|] ~]uy[b KfϋK}xjR;6|U 覕md58دrH{7UM˿ +x^9WS S%3ǣJ 20^92MRC%!n`TlS0%X2N[-i ԱgYZPK!J/x86/toshiba_bluetooth.ko.xznu[7zXZִF!t/C7]?Eh=ڜ.+*>/d >K_*,Z:MC%7n`_G17QK l}3J++He{t c41Sr|h*ai3y(6QSca Ղ&^&:<ED2HfE>J v ppFH.>畻A_r:'-`v{3LjCm]bt'jhTeU6^VC *ی{Զ<ҁr5RԊe(o|xΟ4 u6aQ}7N66`kO8F7G6+mQիL%A=avC~ybMw s 7ǒA6%TWxHU2HvMWM&k>e '7Euӿr`ί^7&y`K_F'7jKzsmF?ɽ}up>^QҾ8.&6˧{G 6xYxw 12QUՐ1Eg_\KgЏbUon\v_0^JYd3s8mgu}2=Ch0jS{\!|.g^D~в$klՐWTҍ#q}S̥.Fw?~s_RCPnU`` Ws䔫RS?DC1?/^1.l=/ &]=b'B$1Uu r{h RzSB8/=ʌdU`$|eYJ5}jh\go@gdyZԞv#͗[UwOR#zX\FLϊ(Y_v{.[,Gaو̈́j~NfzB4uKE4FH8T_o;9@oeHjD)=yxtt|h{qMpepo/1F Wt>O TPìS䤐ࠑ7_K݁c/%?v,6r%ڴ;3󉾁<]G) D@aa}wW9K-2)5>ݧtP?aNt8+\8S%OcbgU}ȬZ1c @dDRaܲJd3[<֪9ZJʎ#:C+X /ZeqUzHOW5[y0E&Nl i \MR"#`4f.5kOC뜑-b }#9+VH`q7;_dlHUfwR_wmEBRA=y|zp4gAxSE[ehOi| <@~?k3ܗgqq òBJV3pUc _y2Vw?*B"*2[V"u^2N#[lқFSL$Q7(#*S2ٲagn K"fxM2V8wtEΚ,}D:AK[Qh!JQ_`)(V5,1#^dpjocIm(Lv(#-Y)PJ77|[;(˯Ӯ&[`2-YN܊{_ {#~1e9sbQEv̩aѰЩ zYW%\X%ʅN8 e8;wq8Y7? u<:Q{;s:2TىYfJCUE;80A!=i.@p_wuj`a!c"HErxeO.mgjoSR\;Ѧ(_`K}̧ oK(ntW2'MfAza;r>dmyP":u:gsGɟ|סgό%HO#15j2tvX9/L[kƣE骶kj 61>?[Sӥ5;X2⁜_q~C= #7 Kh~Ӕ=&WgO0+bAX]s'!Qqyȓ|.dp>y"o0GU;GAwoEvYq#(56Y3 >Z=IҠZ=$KMWW\g5Hkĉv:P؀x3ab2 Y,~GЧ!N.*Oo+3sc ntpy h ͩ^< #2Gʨ Yacl7j(~z>C(0{hRM~sO*IG6eL`߇zF9nG.#Ӻƹ\1=?[X썅#^U谗Uio#zo!~Hͮ,Gc+->3.+SX:rQ>,7Cl+MhU2d~5&;& \ЭYF-\zTIM5P59۟d 8 RM/ /(>;|AVңA1ikS!:&I4Al Q~8'R~C7+%<3.*|̤+N>  LV="-1$)˒r/h EYW Nb{Êaݏ0\ue7rna1ô˖u&-:y]wOYfڤs8-DNd:A +WbY-'oj$s{zE4*2sj۶qfϥIeyBR#0hҪ[>y(i.M%8hɨi:HZZwiJdjSgYZPK!N! x86/asus-nb-wmi.ko.xznu[7zXZִF!t/b? ]?Eh=ڜ.+*h'c.OJoC$s6Y,lγh]kP_;fV1fb!8Tb68z(Gtk\ u,`Gdj\$a$BUcqU)LE!l'c|(3!Q 4oM I }+D-_IA=C#{ b*|r?qv+:.fĚ`umj)FѴÖu8&-rqMb .'o\.LL &P\͓s)sgO#]Z",obH K?cdž 'f~q4x0zKP!c;QkjOm>C/Z>2~nitK]@7wc*_nŭILciaB>&nne8=N\X| ʊ]etU<ޙjx**q阬D XXF3.R6X!c AB qF zW쩆-D;}S DDdtF`я`.h/'.PD$[멯l̶G=axcG۽b{A2xuF5$[u}ͲT睲6sZkK98N}.4JRd;31/2\O._(fkϩ8D:fkn!*;f; k4DG2 7P0ς+=: : ˜<(sAۧ:l}g4WK[0D+~|LI~C3k^s"9 wts:K]fA0+d^uIҩV;X 5;[~̬q=y}x3FpFUח I?k[i_Ռ~?3LޗvbN11 Mj P34xWHtfHKx)fXV{^D<1̀̊Q +07k0Ƃ ަ?}Q%xi8lRIleO!%& #{vM ~)n:׷RL@űwni#nŏٜ0.FQ8ـ 6/~)\Ȅ+}Fq>ʨ2)p}6 pN/о5xafmUq+4n= FB0FO*%%0kha##٦$Mc\XOSt&ZN@bdFM){oB&Xx;=qEmqV۟^Ńl Rm veLLU c3hB|>BRJEϫ+ 2NR :q)GTZBzX~ɞ}1 a"6{zfwT ץr)v'i,JY\Jڱ iys\L(XFqyն goqX9έNLc6褜vYnKB9Us2ԍ]1d~P)M.\4t(c1|gy$)Hb ^WNZFKqR XF(|#}pSZ4^瞣˶ߒ47|MT^_$*ܢlgp'ųnH+Ol2Y#@"fE1bh-BRe|cٶ Kǥ>>SU2ŵ\Bxc{"uOTc1y1=E}>/~E8$Q4!2EwHQnhz)%U#2*OZhr6YioI"j?H1A?(Wb5=٦N<R Bd0zf%f@/:]C,t/ e\f=.I8؄sDH `:ȶ $: v썊hW #]~ @crzSQ Bd?" FA柝v휤iFD;E-:6*+Ka/PGQ& +ĺv_X- o3$qKy8<eAgl9<p\κ5!KR=ѡ@Ի +2j/@g-i(mH/ /%1oCdfU|_ A*b2Z1мTWD[Ÿ+]n oq$5>i?CS ERg{EGbm U;n'v׍h;9ZH_.z`> @,kܵTӺX+GR[sV|^jSiyi0_J-̂#DF+I{]pڸ3}_ZݐC_ruBw3gLc 7g@|+E:YFvc<6UX:Ӟx`g'kN aA&*,Npݞ/',ĩem00$R潑 tzO]t1JoiXmN.B/az9qrw$syyřE뜉Ai^4ZB$e}KƯ|ɦf]Zታ8Z GXƵi>BXWMMP!6˖ݿtB nk_+w R@rrp?H`X;z5}{ZZ0d5ldVcU ,#̂XXzs 9"k?^ON1XiE#E])Hp1 ITۍ> ӯ)rCҧmN_IZk8uߛ[Ya:% ;LDAֆDq(Du76 cj?[QыEIa遧bLqvwc4\AXM8+G^C@1m qA l*X?9m6TlW}bY#YbTU@ {m'0.lPfmK!#^%+NIH8 .W|4?XZr[{w1wLN q f /Mo6Vs(_ Јrx$ UG#Oь/ɒ MvYwilu?66/L]rkկ_P^0+Jm0O:,T=#Y>iE1PN X;e; 銒"]bB[F;ݨvjq2 zOc2l1`_a쩗Up̮yg޸IƋ;gNNND 6mXK|L_f!ė%}ygc}9lx1t20܉YxO'9)q 62v1" m] E!,=nb6tj(G j(E\!@ @UnUކIXmPaR.L|Lw;u&ӯئUa!w yErnAV?821␷Y%r~pc q4DȩQu^FםmɓVQM|_P:l饪qi]2""$fYvTG{ʒTHzH\cF-Fe3O qW5\MyX*bv=ZsG&ph'{DU~~I]Bh6{B/~ 3DlA+d\Q㩬҈/2*'kdGePtNrE۟pZTFCOWp~H5`6yvc!Nqo۾!14bf$jVQt&xZ(%L=$,\Q0}m}z0HjiQMkjT!;W%iK.Df|x5xl, 0/+gغ{®>wR~N˃ /w]/Knf%z3Açwn;!b$#ȩ^ ?61FO4j 7hE 7_V鍖=ȩ,{o2cTolaq 3?`}!;gpLYW`: ;Y݌qXhme"6v*J^6j?! rhXY{,$*q[+ŏP y5*>v?PgS;G[?wF^bJhf-"[y'\ދ=S@J>y&njYޱ޼E:ۇ-`Ħvow̩urBB Rr$3RW 22TO QlS0fWbc e@">3CX.5`-Mǘz~nkĘItO ;VkmJ'FRt~ W|91GM(ڹF8~C(1Cy+Ǔ#H>Q2OXD+Tҳ (KJzՁO_wЯ@L9<- TS/LgNO%0 u|m%C{a sr]3Uk1XӈUNҭ;lײa#M$aˆћNqHdq9jb ]eFL~ݾ\Ayu`#vnRXOA@`Q VWޚA#+ ^fgI+~N%}Gw2])-kjPִ~P,Mz]1C|xo*~i?s*G.)d-N)e'8}361XKXA5lCl0|sW;60&eЉ @'f,e-'Xǣ,DVg47 gs,`RZN +oΝuWy96ľyŸ8rjEo0"j$1zt+5"J" YTU ksHX4F-)X+-=;P|O}i,ܭ$@Vxt˾z[B>ar';%ԡUj!sؕ &頩RpT4E {_fE$A~Av(I)zσzLQnr.**wor qKSom(=sp*vVC<+U$I2C ǡkFv?CB2I$gcOr;*-HZNʇ)XK]*X IQW8U:F WM3>hsZwqw\m^SbuWNBuП7#qOz%鹂[%Sv|PaCmNXĺ(|~b2p |^ڮ9z0QKp6U9 EW܁ZxWSx|jESPڒ3.\yƝt,ɀi?~JݖϬ8tpVٞ:G3kTշX6eh3|x il:(ƭ" _T|(g@;0QNM^4S:Q@bdR(kX@>k5!n"(EIcM9c&IMhnYqJM8t{*H[l$6tM:wc2 Us` Dc|#ZYuH6̻Ȅ&$Z<囕jeQ&`LrD}Ǩ* yu'CBfsqDS[-e #[q#Æ3@cҧ* u#̋W#G)r(ޗ3R~(\Kަ_Wʾ\"h>gvp e P9u ּ~(j zrZ5Q>D{nK.'_nd^ &EὉBs.`NK 7W4şd/?@Aj((n L*(YMiWIBkHc >NP1NI5Eu2+yE~WNlCBo7q,R7SS^ՠ#8_twڗ!hΡIF/\*s4Q!vbj`Iʕc9vm91j~1oW+L=oO@3 &ѽ0N>Wp-x1,5qjO_۩,nK?Q}?FuT£q/iEa9x'#-NHElF[ۢ Z V(f.LԶkT-S2k삀Q"f$ "[p[69ӏw%QTV ~nS3/#8(:ab>C;Y=Ó}Y6sgs^/Dk 2lrQikTُ-MJ?}XHqr)$qpcҁQvy3Lt!D'=io{x*qwk[``qZ`ª{dwx'.j5Sj5}itt?h†X9P!2pEhMUc{t4ߝY7Lxy/N5;P#,KVA8y}騋<{{-)ë*L:,On/-X-udo8kGCȱgtۮ]ׯ;RaUy㖞iu`=&T !%ر7E:"v_P Y2%TH#Z6+:.b!ö=$SńǢU/D==+Ro"1C$ֈ3;0T|2ԙ\U++`lXZ'^jʰdܭ\i#N Kf`u8(YoS<('IsO ^}K[l4ɼc y5Z݆1x_ע[@㊯ *#? 8قm fZW\۶ꐀdi`5 A&I:}gu|'ڢ-#;$ܹV`Z/5".Ov* 2=4\ f\iz n3(F6}vWހdT^N/9Xz_3 e%l?~,c7H.0~oҝ ;Z.<&$(P`5$Efhk~/3f]3ϋt sk׸* <Ȩ1&psKI4K!`1pv]X^6*Kť"Jf>9'/F9R\ QDh 7LGUSO.@.u0 NZMQ\vZ%j{J`lmd:{ll yķz6b@gDR馪6 /YrD]!`ӽǴI|n|@uA2\ ўV\ۨLX4yA%@HO R v%s>,>ːW ,QN'\5 pm[dneයZ ڬ6Q!τJω2gq ח:&hTNrtc4([uAn[w:*νAe!tmB8s"цSe+Hlq%}BWE R\3'^PoYYOعM[Qly,pO\.g@,f&u7@94fSF.?j\gV_,5%JV'5 %$Aҟk4N:mގ&hBw~,x Ȇ)>0Jލ-ﲼ WarD "$^r9T͒[rg Z,aBK@QB49xjإHQ+'YWW Gݬ?,k<R Mi^3G 䚖~% oREM1EF }*f- -`BfQAzզi| 0\h0%^ 18*a| ޢ Þ_f_妎)":cxq&i77'įV/WnzW*n=SH)1De3ۧ}PS5hZ?7Ivia&ÇZSm㣰!^HUD3KgD^21zJ;^Bu@dyMj _k__ثʧ:%N(r}bk^< A 'O1+UNZÞ oS;78Mx`KɬwwA)K{_o>݄Q$kLYv+vx4GlP/G$K_Ts #gT8Ǩ$ڃo&`D^Ak6I! OIH#2Kz0&@WbUvIB3ou$ ŝl![+r!F)je;t'/YIeB.9xP-ֿ&d~v[+ގ8`U>dNlc PƮ}Vtׄw2AYt? COh)?Bd abseb DBi7>r; Po&z(wЭi F&wk+&__փ=u"!+\+lOgy$®%%[D'v8sď&!> (E >*w۞y L?iT# J;fw +9Y`La4JX:͡ _o׌ʎ)2*eK8Ψ+ ?" F+Y' tueA]8Kqf$x*ŐڗS5Xu{O4k|[mv>Q6xb2WyULjgd"W2f8+rm>LMY[i0d1OZ.y0H*U԰erڧNBZņy%Hmq.O>FnHً5f]@IA Z 1'vUǙS5meHQcJ)Nn\`}AF_@% =RLQmTܶC4#Ѝ[+RQ4Hl%mnw8*k2<|uJ#ۣ`R(_*WL)_nxuy%= `d¢UK;:e 'lk##ǔAR{Gtomn1 ƺILʹuDž>8} yaR"J䣎Ϻ;zS|AO4]mEDw^"7/ǝHTin A]p"N+_w ;F o\'0wt3Na `x N\z.Jwv&-i@Tje}}3E. y/DCuz⌀ݔ?#MZEFM(zgYZPK!ʟk||x86/fujitsu-tablet.ko.xznu[7zXZִF!t/W:]?Eh=ڜ.+/[ &"/ҕQEo4|h]C.{僽(#'SbaԲ O3x'K^ xI+RԌY[c+aK0H~\Ǚ&-~XTSyBv %"`7Z̽ Ic8&ԝ in_O~%hF|;LρRNÏ1-`0gPfJIw˳ZRZ^~rt7F)\\b\XMJcD 7gȰqBpn4@G3UK&B}B@up[$4-oR j,l _Tp:%:KCن*{׆>_8׿~yy1^w<WRm߅Gͼ $/8|Cܚz4>vA9 9nDd,'a:82kΆuanOTbRe,*Jt܁_ A+4xPݲ5dޯ}_p(cےI$fD3&"l )Zy]  ƕukK5X1`Kr|-Ok>|6"7Wi<;TFRHP#2Pw%Zmn{* n9{#:I~g</K% F~%k(s?yǍ%#q(R^W")޶Sw+JlB"Km7CI+9S]Kk/bSĺĘDD1@ǽv 7bF̥U =V Dj>i5'ϴx辝.\~](Y(bh~2 F'%Wk);S1f̋_ :ny &jX{xƜ1=0i?.ܾ|K.eB`w,+͏on0(gk2 ʲ{[p1K.$wc3{/!97f]s7wC$W&8V6 ` BIRٮA?}2yO8_xLj]aقxyRA,V&Sھx`\=ʚ&N̕:J-h9˧GP?eåQ^qVL G?vMy`om( 5E/"5׸د۫#XfD+ܓ^hHԃ Uܪ oR;FW_˘C>Rw_gz ~ҏBf9\X6mSqrsT:cF|Ar;`ѪNZ4 ̀%#]0c!~\CSiqA |yx 0P01OZEğ?$.;FR[*>[!Ǯ/ 㗝Ct¥'1P}r&oPI:9 K}E{ԴwгRٓW 9U9Ȅa$p} #HCf<<.x:‹O|MBG\G7_Zoc)_?zb_+mۃ jQgǾ 6~2taw]j#vvY'=xqYP:e&L$6({-a;F%7U8Gܵ]׾;Kp6WaX]vI.RA&VW4E`ې?eRgbi" ӧ.Iu5x4)HYf\Xl%?7J2WxGĤƭPV۷xb\weL\;[M00TlyHd8Ε\zD?Iw=GD<m`C)3 1c׮CPԺ5cЃ g1d,SV~@B`Qc,)|YhmJ -~u1cš_XކhWљ^ۡ!Js7ں)bƔəp=N2J}2^7LQ>B^r2B.Ƅ fzBE M-fz>2DQKE,.KuM\E6xM9z$FuP9PsFӍV9mW&1敁*g^D`ݲ؊X8J D̎YHP+؂^2ԎA#E޾D\Evh>n:zCZSxӸ) 7n|o7!Ktz7j# */% y[0_4O ]?Eh=ڜ.+p_,^8[qס3~PVuĭbFP<[C:l+ʼҗw/-ojLMy'fnFA!!橡kH5I&H/Χ}o~[|$=,1arL*JxO_Z)[u&sDgř~/Έ3Y/<:9+>SJ#ĖNo3n:S~2Y}x.\C^ &J&ֳF`Br{Mq@%29lS[^肥r)8bk?=|Zrb"{EL\ 0(Xm){UYkY# s@ݮ-)P>##`.A3]PUORI'emX*^-wIkô44aCa4(K2< y/ 㣮Kb]Z6Č)t TYDPZ3zv±nyvtW6Q]OE `LPTUAgj:^oQ r2:/oYcLo/oPy!9I_ĽuaE12tHb< ->JewuI=n 6{_r$dP!Q1O $FjP`T~%82|}?i%_=n8>TiuY%RX&|gbkfFKӼJliڰ)#/s':1ms c=xg|RJufWM@LI BwL^*SvCW'>fMloH, ?R=`myЪn%-œ` Oo:TX_ nŚp W|7k%L0]^hط0z͡0_id!Ѫs{gmj:0ꋢo40x^-d{Mm"(N=L ÷X+T-|kFf_e;{4/<;}$ıO67H(ڪ"_٨u S`&CI'k5B-Ic2u~8,oc}}d" ߍa+[h>jDy')[yxn/F:?~iEfjrD0!ruXs7 \}.iH=(O 2?Hujɷay!^mѬ~uGxm"( ,=DRE3,)8'G,!{K/,TdR0WJ׫ UvWCUHbd^rsZδ㿚|ΐVD >R EY\&Z:ՀNڸ&R*|6.Dm=ThjPS}^xի"Wpu Kw_m7;f*C>|NG-jDƑ Řp>͖Q`Wd0Ee*ʗ7Dfs νPR0DDHe`|Dggҫwf܍1;=)(y[I/ݜ^j<J 4WA _ ;K:2ܻ6D5:ׅ0w"18G(|Ћ; gƑ"q!Gc&SΌ06UΟ@Rzmbp^u ]mQL_H1^A݀8; 򨐜puX^+>rlCFk^{O +p5|T?d9KÅNR1› @9NAYljBC4ul?iLsE͏tPwd܁bN>ء௽,o m2!k+8iqTW KϿnot`"  zPVդ9>dsW :h[W >a2$ܵWe$*xw+$dN(ln)0tf dٓm`ѹˆs>1.׉UGPؾGaA-GpDJ2y YJs띺hr)DK>pK)p5˜?w⎳p>0 n,)SИ\X c2zV[\^~Ҙ!U5hn(@FS d FP" ^hL mREKs)b}Ĭ,~Nᮌa~^IJÑ2,U=?[eQ`%3.3|egYZPK!O''x86/samsung-laptop.ko.xznu[7zXZִF!t/?&]?Eh=ڜ.+q\>/d >K_*,Z:NsQmuo:A=*Q=/bs(۲e'۔Y48p:eu/Ơ}\(?0-ΝV"F57>7 txp.4鳧!4mu)F4G v#>*!1*#+WZ?/4W}IU}U[*je՜;}ϑrb؈V)j^z/PѽsjFs7qdHZCp-_{\zW^\P7뾑?ҸdਂU1Ѓ-LؗRr 1-_o!FhF3Y9۔?ǺO\eq_<\ӯ^~<$^(Eeof& b%jV3IͬhjY҄-<{uol^DubN0XAO:+__q5=4Dc4~ F ڱ~)V;1_Ƹ܋'B#n8BfZg' Pz)ZvOUh^w4: _G2\"T-Cڱcۘi0L h#-Rg:08U>@`ы17eK3J69u$P[I]x5bЭEJcld2;? e+hq̗wz޲aNnG>*=)M:Z7՝F+> # e V..hX/\ӛ8=[H>޿Nu~4Gص(<z*r՘T zUو͏2<bl n6ɤ[J/`jXchCr-KQԇ3rz>w~\g@z/q1h]mtӖ0,5Ժ{]8;Q}VQxz̲=AY 2{!n<5>ZF1K.1ǣko&dd& !)sQݑ #}|}LFɝEXx6f"d\12Uwi#=zd[i}V牆]'`L+uP.DP*+ W0ai zCߪ9Vʇz끍 ,<вۨXqa`|.G/{4>Dqo3 g?x ,vˮ5\Is}CK69S \ pV@񑜒|g}kW/*tkj~ #T_ŭd?RRV)UfzF2dPZQBQR<7:W߬T;׉J.*KV Q(G|`YBP IVJ#;eJ&E1^@[i a!9P碸&$Lˑ4els]Nb*8i[LEm2MD=Qo:8` xvkdZ?R6]$@Ү>%IF _{ uSgWEFe<Jed ?`D춊9K,Mʢ(,,:$Tn m 3H44RG+0MV9)b&BkWsGjGݙ]5>HZ_@Bp ,;VS?DoszL `HZ͂yGqe6h&0h oY~[]dDJ&?O@Z8(6Ѫz 0(̮.[q 1VIxz8F-SC( tO_Vu'TMAlZm09N >ezKѿ]GW= I4>c7!ʶlux LTw>Lp\K h6 R·0GxNx T"a1]^;K};i=Q 9K@c:7 3K'7lssE=i=kvm# C792W+M.h%'ܚ%GEmzLТZlk.tV`t_י/HRxa3f?I *~|lYĽA&r`z@"&fӃG-Z!(Aѩyn8(v`E2B0~)0:;jQ[sS͞RyާC:`ĢesjLɓQ~@fo[dǚ7%4]@b,Mkַ r[A?bꉌz𖙨wQ- |8((,Ԁ`Kiü}^AL~D}+j[Y7`':aݣ "[NpTS+cŎ5HR9 uI N%f93ob\(p< 2*="4"T쑦IzoYEaSA{;g.iίًI ԓkPMQ:hZKgAÙѽmknk3> MT ;"uT1?oU(lW1?Sŷ )WxF9 oʓ>C:$3>6@xXL[ΐz;ѵ,"Idi+^UNAԖzrMweR[AάM9'׏"kk!99Ӂ?~5xkjFgx,_P&D%Qr%@詖u|:؛~ ?Lr/؅!.Mu26qZ5w_emI|ΊYhV>y627/52i`V8)D#\ӳ9ħ5cu [ G `e5ʑAASګ0:5ZIQX<:jIkY٩e9EH Fs,ttn*C>HVR4j3lpٿ@)Xkhy_Pړ 6!|[3M>.PAE+.Td ;PPq)'ijn>_4%q:>]x;Q*Qu+`p"+c7clVO.`Wio&yOemN*NJbM%e镊/" b|윬LO  l H'P[h' 댭|ݒQ>U:[QLo# rcH! +#yXNL^g){|@M-^3d*.YaOgs8qrZ\73qa213sipuQ/#)nu>~A8xCx1Ό!-/[ڬsrwp' 8V'*zȐ %kq#p0hK\;Wjíd ,O2M?t]S,Pk5`C+HkcBPH^`RIPVAI !;(|=[nv B BC_[$3t3XKyLWbܦq Gdinȩڹ,D/1KۓZnraB2Z1bCPujs`di3k6>91PJ\DM״m /&ZgULbh d? >Z 0P&RpuEQ,np&ǎ*}bE m"3|$ؿ)iLS_fcMW~wM!<(Yb 0GH?pw2[75-O +Z PϢTpDtW< [Fx̔jV2^Quv6Bw@` sUa(RGasαEHc~lD:.l~(aS3Ӣ|0> /4x41RRU4}  [7rce5Vnv6Qh[}kѴ]k<*/apa#2e&Htp w00dbSBw%w XNgcmwqA Z ƛxWtE 1~cTK'1Tǫ{1˵ 缨YkLi?YMK.MU5T d 7f/U[ד$·._zLBͤ+!,ʔmǜ3/Two Uŵ3km {sȣ.]Rw6%P DHGw[n81t5$O3襮t?3\JHtctby:,1tysp%h1s SE^ Y.0r6G^ &ȉiW4`i H#1NrI氕%#ڊ'b!v 3*06`*Ju^ytSNȓa܁eɠ A.B\[Tz> `,o@.؄/Q%i)SkڎyC hWo#b F5ԆrwˋO~OD9b8mW=H*zmY~^u~{G _7#>iiQ|/9[Dתy{ @<%Z\EKc 1M҈,^,q!0Xq=zƮfAMBشxnO:X6 ="6TL0j5O:\-v\\cG~|g 0>HAu g.Yt &8.Kk.B9v@ {r)ENPY23y3wcg72[C,X ˩aNj9[&ti]atk;:]$ELRWU`ԷdM_ꅊ>m Up6oDx1[ٱ8j?4omGώӸGON "KIeVen]QuG;R =c1.SpH_B>qۜlQ/Tb'}WWc8kxhIw5P?la:Q>0j*s@TjDٟ柏p/T`<2N;Uھ)<0'*~2d@|ިs+Ģm k`+}Өra 9mpṕ,\kF/Z7~Eۖ>1%xx&?RCUkIWGGyȊm\M/;К_Bщauv-,|b?Ad lf8a؁ڴ|c%D7Ջi֡JFeηJٓѻhB v!کm`rN7}&VERTꎂLS\"Oo:Aswe_eK&>"he{Ή?.yV=|HHv.LL946/HpO[vB)nhOE]_@Jh쮞44y^7EDZ2OWe&n 3m:c6;"QJoY`0q2B0-F1dp?tX#g,eQcXaA4;V 6e_`Vs?ZE ;$f*o]OLf =ZEX*|_?!%m[,OB(3DY*ӱڧYGh0a忁^)Ke3, k$ҙ00+he 2|I]Um8VŃƚ8i=MLuER<+tW/0T!!A܃00WÌKS&3|~jF| &@>h6W;ؾtPʨ-32U 8\UCxdR1*BڵgMyqgYZPK!o8 8 x86/intel-rst.ko.xznu[7zXZִF!t/, ]?Eh=ڜ.+Ԫo;c_R\זҧNűrkݤLKr] +6.2ݛ4X}y 0M{;>Vo慄d׌qտ+%P%S<噆B-Y$fՍQM(^)OJ<.R8HP{ @,R3wK##]h^}Ah) E""u;GbSjW jx^2c>z"J!>˴* KYxwa.y7. 7xpG$.Y` ߖ9j/C] $ Dq\cԏA tcŝ3Hi#r>^gz҅9!bk׉!`S L 2 S ҇R=&,Tϋ.+v!N?#*ّ֯PD;1x'EOo(eգ/4ď70iCLTqwM˘Sȸ/P kg>R>Р#^cTpR^9)vZ9gp`D=t)hWdM.Xzh8*̵(Y%STsaΰ᎙^ 蛃ldA;Q*rN'm=N-"sd[~1;:g?ҳS2*)Z{2d-Y|^:&dԞ-un9EDr۴)dqݴM"H'^K*v=<e-퇬Rܟw{xE(p(y0E= Vp\ \7Q9oLcJ#$d{^Uz /WgLOBߠƋ2K1ӞiԿq|Yp;gYZPK!y(Cx86/intel_oaktrail.ko.xznu[7zXZִF!t/GW]?Eh=ڜ.+?SSí" ]`؊51cM/T%Ϻ%JLФ!EP~-^g!L>J^_AxS"mD,XgniǢN+sdRL#UcͩIz-wΎ!0Gz~^NѢDŽJv2%{%TSMhcaU@ujJ#йL_O>ktć(Bh>dGG5邦3zxJNȿ9r ܃?*%ͳ颐d&@5dI-WCaiO۠UmE2+tk nL R$3<;oa<ً!wi}YdtHūNqi_zqV M^.~q 3-iV*}t*Z65o7rWM'ԏWm!{+O" >ؿzdDU6ISy]- >}f"nβM.qD]3XRdv3 8Mn@,/C`<(F]2IжvӘWفo8 OHHDgՓ]inU)K;+U!j@U}9 3ܻ-1lGA2!K3@_rc"吙XeS[CC cX|_VieZ}oFXI(U P">x̉BP@l@҅OV+ۚ<+R&n灿jOަ} &7lGͣU<{V@b s!X18^CW_rU;vSi$N8H%-C;y t# O,xK!O^#&>ECeKǃWٽ\h+wmc8n("V M(}jFlyks9WeAP O*;ջt\m,]D x|a <,ŰgWJH8_Oo 6 pa: ٦OR+&,^(ړZ bRLJҐȭb#:Vlj@P'Ϥ/Idm U~M;M,bor 8A=5Nֵf6Krb8[l;VH< m9lFy]Yٵ8ݎޕfXăA6wtbKe|f-U25~ᒷH?q.Qb Vܿ.hK%(=*W0X(5m6WV71qs wiIMn6bgPڿ:XmiV^&bp;?*H ZdADUoZdZ:ߡio#}1yq/e^dφ߽aTyi8h~3\y#,\o"#vVZuGUUh=ou&…(=©սt~{w)!8) s|}r""hsY0=YG DT c:j! FBdnjwÞv" &ހH"(s \oӰ9.Rw$-}臊{)kha Aw_&V{*kcX}EVuz4bڅ)HWcϕ?{9gYIɍOf % $YE酇Fqh4T貄CVIc\)1Iׅ4_n~Y6BF[cTH@T9ʾ9s5 .6^K2bl~4m;2׋U7L.O[-'ldA_+A5=i"PC~{A/ik)CDBULt}wlp1z]Yf@UWSɇgL.(㟹;؅aO*53㢷D)pk-7 Qz䏾PtG!;qrd _PF e F nvܤE>T.eU8R MybUGFxdD":!;'M(\Q*Ѿ LBA=k$ʔh7/Ԓ]F?IPym$tA6YF@DȾD=PBfM'SʰQ TFAߌhgܨW7TnR>E7g"xiD(1wj |x>vBqeܯ.>kIDPVIt^8}@w08hF 6\h ]UtSE5s[ϋ?>ZP62E:b?3>.۴;6_:Ƞ̣9h`8V°zyq$t/]ްR|9WRzav/ph,r/^ P*I(e"*X5#wf {O=T0~9B'kfpgU~ [XHrkѦKe$|b*oiB<5HDY|on??O"2%zޠ ߙip\~P39N~ ?~l6:Zѳ,,Hǹ'J|^FO<-,xgf`}q,*)̫/ZaP|1nfp/BӨI Tj/XU5I ¿΋s,FvK$XE| ֘5/T5C-hůz "k`Wi\ axA-{E@e/pj&A$EQ9ud4(Mvƅ[Mc];q⤖"` 1?«ҜM:ftgLV C=0EjYhgy x[Uaԁ{NpU<]M] ,5EDcvlT(a?T8FAۊ 0%?uwԛZZ Z40BlPF Y1z`J͸]8ύw!lWq?sQEu6x =#<{j5=Iv`J Z#wM /Cܓi+ y4v%TdEGw.j*OΕM2`Ux"5yOsS[qS撒Y0hjg:lj{gEm?Q P}Q6f-_BZ0=E5%=.c&Iމ>D̞S^(K}*CEQe>~͘f0~uXVqTGTRA>#BI1#tHl.0q(67da B.E&1b>c¹JuP2G*s9,Ys&Z7Qg>d{쐋Xߚ {`o}_RgFͥ5f -̯\K@:|Q8QR¾ٹb@@ĩ(%+$uvR|)n 3kU 灛lObv%+55{bjAdkσQYb>˃/:-7Wv:'sGI)+E(oLY1\Okⳗj.MA.FnCx6^^#^ 1xpf<%=lzى-~~m"A.^<$VphI5z;p5ѱwM6g@(\F#:!-A?Շ=GzENׁ Im7#rxqH\!T<G]J)YvXzLsP8Sl̓l3A7R ә&M}G,w\Jѐ1Wlhݱr Chfdc["n1b .jř~$poL8^wlRqm hOc>y>7cJTA쿳qkngxu؞g(*egD ӧyOe6 L< Gڧ;O+An&{W| uBIJBKD'O"Lia< Y\V].N& ltXYawep9s]E{̟T{Sm?J8IsTrM?tƘl:{r#ʔXRPZZ0iwh@x#y~Xi(V ϓ,/nI" Ēl]aȀk@9"1X 1r0`${C-M(grp< vYS E9w,R@'Cp;e& unL>\:ù}$1vdXUǥJjr*"\nN 'h6"JLRsOݒԸO@"_4WAiVaBZsIqwg\0xɼ K҆[aXZD w2&7܁rWehP dr*lFPC8q;m$Eti<d8sM7ڢ¹6} ʋ4O2#^b=pSO1i 'mZd)e@Idbj/r1ZYaKSҼԟX[u}W~̢D:pDdvfNX!l ])"F1ɺ?cCyHl2gN}b'--=}}eр틢!ZaxZMi ~j =ZP@ KF1!Hf*ָH]c] ժ`wqބ vc̚+Ք:An/'!{~$Pq%!A :&^6GT{6AD?_< e4j>3- BxI%.@iaqH(4ٔbubl.& يN| 1y*P:$H I8@l]c z\v 걡zS;Y,wX@J;F%B cLۡe@Tދ&f7Fd7iѓSw  aGG"v"߯F!9E8$S:'8/ ㇊jl3*(\RqJ*V bH[#nj2nw M<컁NJB~}UB9) BwC]𕘿YXIT2YH]DݷeôV_V`4|p`=7>_}==A7K`Z`Hu`ձEϕiN+xw~CSB% /Y&©Mam U0{h_?"Q|4C"Z)>pB}}GUhW|JTga!4kÑ訌070ܚc7ϗj>I?L`ouO THq&C*"/ Ym Q.q{@2U$+IQĺQ:[qjOE\_80?zcRVe=W;_( ^vLE& &a;q<=aC1nrOR$7" g|^ բ91 s@}]v2y%!E\/Ȁ),m!=&>g9;.`pa_&T- Iɱed7ʙhrQ+0|5ykС\ lO=&Wՙ-7ux`y3+fi8r1""BD⥍ħh9eXCҵ.dm?ӑ{ 1e_r^Z@POZmnzȬ Qm 'O$BMмu$ 4x3v=a7pZ&VMa2Pq@w"TEybF04=׽XZ6 K!vq^Ώ{yqWdÐCN9̃ rM8CfCm/o%)Nf(J(E_'Kig אÓ)ֈsU-<}$AOHoEX-kB}ܠ:Jy?t%tDLF*" XʆCsJ˲apӀM.V8(fÑI ['jv-- !HH3.bX9/PECc3m)8d%d|g7azf^5YffR'׋z JO򾙬dp%g>V -+FLp w% ERg_`>o ~pJŻzh/DLxe.:V\zb]s:*6U(}E4J?M''4{N7/>X_$vSvUeiI11rpxťjI,$Iuy- ,1_zҺD\aC(X@zpE#\D[!N;ӧ ɌSv 'Mbvy#RhnK0!fJED'oePå-s丹JuJ!8=!#͘'C_ qĮ#qO+uuɃ< S_Ua?ϑ" ݽ}qG34##@)q~a#)/47v>&1%/K4(;w2_ ,/1ø:OHgdK 3C?'gYZPK!y[H x86/dell-wmi-led.ko.xznu[7zXZִF!t/! V]?Eh=ڜ.+4]+gW)B="?1_[A#68}~wV;$y=;~A ;[Nׁn"~doL>titj:)4+2)ޯ]EDm8e#5g7FjM _K0Q22ZS(}[ 9cƪ^;=vNo2)#$fB7^[ 7G"3!Ʊr,H8$w cvڷV7YЛzy#` MPWHC:W&aNKAխ h\TkjH\%O#=b%I fj¨Elۜ#":` !,evYI,(60SUX>Sw'Z4{e6}=ڪz]£!rLXH>ZJ8̥ @[cQJ ݋?l9J]撯J\I|_ޚU=#،#q2Kj}ܣF,iŤIrL&C-;at!0I[ʨS?&,LCm~QYZ.͖PHb ^1`csWng<;kL\2o){G# MQ8Gts0yV@o8om>N/s/%]`d{cvKmނ)>V#`ŌɇI '^^b}^7AT;CԤ6B2`yoRDzܺAyY7]=/>qvF/!B]\0-إMҁL4SLh!f i`II}x*ciFs.$7 dWpc/.$fy{@#X04NA\i(=PmSNQlX,9 ~@n{gc^\aVZBS~3tG "@u)cs8ȗJSF8JSqb^9=T=Oկ}땉4Г[tĥ |ThA{ƐAZm=R6ބ{`E_w]}0_SS|mmcFS5ELi{f.ܬ.=&WӔkJ4Hy3-4LKf\R} 1y#at4,Oeo]ZH#;0{"*_TN.5 EZ:7DnCfp'?-4M#FPyQlg(7``41w!Ix:Yenы0Yk{kYZ=k"G\rp N̘dug7̟_Ȕ >6E{yb7(OU6g^Rk77>>bXV$E8h6AuYLJ_|܋PRЖ8Dbr*x~0׀je]/zgueP(޿Qiy9.W'  *VA7]Dj]%opXY3]r"uBVfZl㟦+%lCSDa~scrIĔ0IӹrY)k2l'`Cj-ɳ607w#Ҍy?ZO* =秫L#/;(#Z `]^tMPĔ6ٗ‹y7 V] dPb%U UN`7@!z5Hpt>5_i_yv !oۖn}l-WfG=|I7|PdwˑBIiӅ>J?Niꝥ*2\J;딋^ECM`0GijW~)tvsz6~$  s'+ &SPI'܅obTmS3Yq n7_ʂz=ĜH֩3xޛԻ8%[CShثwӋzGB+|b5M!"8:~QIjG:~5փcȳ;*# F +~C gYZPK! q11x86/dell-laptop.ko.xznu[7zXZִF!t/1]?Eh=ڜ.+XicC=6OQ`'˶. mf}RX\ϸco.FMmkx8vHaQ$2I&KM\T~˲)Л: L򣳃;",f׎pa&AMq0y 1 DVP2@Aᔃ 3ΐJR,_[]-ŞG,uK~|`,n|>26T*tZ(s"7XT=;-dy;=RZ<Ok}2[mrpyX`%]95P; J!& CB*\ B{G_CxB7 kUJ]ežb#Oeߵ0+iCMZuߜu&TksޙMˣ!o41qK(b$ISn^>x;x~޾]͂eB~>hD|֭ƹ1cqJydaҸ4p?6>8BBp}uu7g2$YFD^yB{== +bK,G_)7fY"s*-z?~6v>: i>UzhƏ*o=*>1z' ^AH+RP K^-1IaQ}=6V18c$>&$(SCea0 \)lt,za>aW Od7&6۫AM~IptsH5X~ .2ƧZD\,[ LnrxDf~"_ taak(Xj m#Ӧn}b9D^NSV۟v}ŷq]ݿڞ.X"QCBN$\^`#(RKp]Oj( R*b?tvc2ߢ:ZцU@zx@p*\LU9Vח3pP'~48tG !^rx1&q5i;JSp -sQBm7y0N usוRC>\(9k5 4L[IF4B:$}qI4`mJXܘ^"upO!溿of~k?;cjJ>a&ÿ4Ol/݅[rCbvP3{`)v5]Ӧoq ,[E:|Y|2IUZo﵀FBij0/ٗCw]\pl8ztwiLAI oP/deYn)dvtPhxi 㡇`7n1zx* ͛]^f"fk! h0;))H:M8m{ 0Ц~>]h/sxÏ-Sr}v?'y "O 2]+H[%~4l2l4ì 0;Cxmw[Cb`M3/& $пġŃ>Э?nv~^DHeT4up 'Zs ן}9VjYFkvVy k1d7c^Bɋmh߫o}ɐ]ڽx8Q-jڒfe WytDF͊ŕ3j7Ë_ VRhUTjO'6Mfc?rqiW>adJ̉Ɨ8o$&U2ohWBbM"#P&j(0:/9^T ƃxYBs3q VKõlFv>fwM6eNs`c]"[yMG^vfkQvn?)^߫ 6ړIuK.ve$ 7/ VY*DY`̏ 'XM:P7Sm{}Ҵ<ǧFU+ \Vp:pR3Kd̓r;&/ƭi)mߢ*ڞ hU `f eYb'Z8w~ձWє&#{<صȒR)WZQnY8 Ld  s<.|9||kbtLn[}/v[Јʽ)oC~e_B_;{6լk‹K쭑R:AN;T|8 ;^)wj@ gH3aʯ˅^d!GlM.ɚA?}=`8CJ/5GzQG7ѶS>?rZ6|5J6 ]sVм^¤W\m|aeD -9M;&yա}Ă%y-'+/RÛhfM5C\onh*YՆrB2|S3Pᕄ{ RXEFW;H[].x[I㝂tq,^A]k _=Eeupp1~*ecklӢw@4YWh;>^U6j4<j+;Y:P!qBh`n\Qp~=^f/Γʣ zBwxDC2\^;Bͥ16nVGd2lB2.Gä \?N%8fM;I̟M(6.ep`9C W4cp;͔ަ '*\&.'ɱFd$j,UᣥKp8ϛP ֓(+U2l'&Ù[zNT2'5;ǥ㮐 l9q9aH]Ԗ'&GwLIdv+-zUi'4Hpj,c ^ NgZՎodBn,va$U1J{Q*`>RDɷ̩ m`)|7ilbLf5!} 0n\# !|oH:ccg R2(2wCrE1B7eA1Г?Jy )k Y@= t%]$P@UvZs-쳦9?; %`' Y3*"ceFҙ-w2ݷa Ĩ#2:jGTޙaTI_EkP2׹R!ʲw:H5C*Y#\_km'o,TTy{2:sؼy'鱜^8ȿ]uP9u}Z RXS(2+WBr8x|.!<f=z)W\cƛ? 4tڠ`W>uUWa|&sAD3Zz$%Mtԩ1[Y]Ӆ ɃYl$B*_UOt ՉYr`Ϟ3#JXGiQ sy2 LQ,}P d= CJUh9Zc3;諼m.G0ܼt :غ-!zXeޞH#c=٭pS&FNù7{2[ a] 0\wEPv[SX!%*G8Y٪Tw6}egeO' 0sJD𻀩^}3%s"Pז3Z@S,:?MMn2Çdsqa(숀l3C(΂rƏJd?M`=dUzxZ$>=Om7HxptnG}SwMie(b8 <g'pXbO{P2 ^.g3kYÇ @C_Mp/u9\ %*q=kR(?󊶸 D1ou ol,Y.εY.6y$>#`&P%ےp6XM`778 } \92/m{d#-%(ѮTP=hmCk$s$qI6J\W]"݈H{U0+tѕhCf'a4x5BE@3d#=x,ڵCZ\dm&lX8Vr M<t%Ȩh*,]<,eg$1FW|?Q? <, he *]YDgx7P2R>cB!3@3_JA?.Ӏ0_>rBL/9Ą/cۊ5K%~H§\>};2,ئMWk-VMAfy{_i(@a?렀xf܆?e.A =d V-gjC&ϚȰt+d\ FyL;7h.3RJȘn"(߼QB cZɥ"$R[9*q˖hiF;"?sS rDfW1_66>H4NN7) VHh ¼ȯs깪|B9 7_a2oa"6O%vv']Nw,#E܅(Hz='i|TUla;'s5g6T^I]*dVg|W{/`.)L4F,vLAdriډU*Q~g;^94έ%#ZMY~-4  @PZh ضRNc!pUW"!/]i!حxw"J!UqQY-|DlxtF{Up/dȢߜIǩ~guJqIGʪ?BHj" i a$6wkzY{j|eߨ?\Ѝ r\vx.\r!3ct+q2&-e&82@(pڭ zzGZ=.:KozmT J _5CUqlP=~:=K}-ȳ*̣Άֻ+ T}hXXHޅ͌YB$VW꛲m4W2W9wIg<@ibT溢UϵSߎG\#׶$%7GWj6Q4Q~Š(W1gY51D &P#w+;M@>~!Bx|-ψ["ծ?.FX!_ -{/\Q"d7㎫XE!HS|DD.,U3s&-VM#I}@([\)$ȝǘm3'X~RԔ^ˠ%GA᠌y]/q*t 3.4]vjr]Ļx@XD} Q'ÄkL\ػQs'Kml{O8>"+ScOy=h(""1>%Ro"xJøZHwVrꏻ5a4<ɉ"bryߘlj< śS>MOk ɫLܓOhTtg$L5p=f~=xwF;e\Z,^o, k: f=YԦ}$Ωh泞O]ܠL1%vl(.T>8T€L|JQMI>#>*+9t{d*,7#ݚl`h?۷*.1MZvjW;[JUl-ɢIl='“_5mmi]"yzBwJa\^B]~ބjm-L*-?*HN'j}چ_4α7@= kN{zm;Adݗ[O@3>NBW$eג$ޔmgYhc#h]|W@QÅ(j3P oxfei೻Ń`D SV25xȅpN^a $w,2agwˑxE$ؠIF0t$|gY;K3;bGas.az؀{7*蔤΍(]]UK'PW1tRx- īneyqLNOʍ8 /"AT~ A=v 9270$Z5:iH$ƀ٣ߙ$]KKƚ#?fv'o=tˊ+[ Gʌ~%CZvfƓ/#yGh8ڬCւMh^(MX>;H D߄go5Zy11CcBp?pPRS j x\Jm(Kjoq*k;8 %}|*wF|cTplڰ/=q%bq @|Gu۰t ]VtÆ;^Az۱}Hz>5qӧ _`Y+?"8ew+VӄlHɰ'| o*8nȪ5WYo"IBMraºl>X3ؠlbq7dA:+s%w+Rav i W&8S K%[ xK#c\#R**)ru("7~'.a^ſ0*&ws K緌F3[*<cʪ*<f$=ҽ%R!SK*p.>_9|6LEZS,0@ qtU P|O,Y}L}1{885IWVSbp A<֓Ef0DϦ??!YQZ?hcGLjƽA'٤rZ rNam V Dm'f֜M!2xz:4 ->mކjx 8ZPe3Wi~2Z}92#Š >9w) -be$'&;H" ,8B5R"oZB~!z$oA庢 LSy#9R?p:*&.K'lpm%q*ZZL(=BMCKF%E&al$x?0! #!3)fcqfQe[/P/ݏt <8B'X!جps@A)t/j_x1ZHeBT0B>?JbW<:>K,䅜~URx,eZ~ԅ]b3QzelL0Ez]h dyK̻F5{\$,T4 @N9kPKa_0iĒ ]XJcv''YIʫrG0p }FJ,C G dU $7 %azb~tf=0e+,RaKƁDn:42-q6;@gk4u@%fdex|N^}]ʿzW[2w J X~KrQU+:"G)$1/}X8fh_8b F+|d1 ɂV"5a9v˱; a]R-y"rV7GŪgfQmJybD^x(t8/xFdhTe(T%iJ 3 *1lH%d'{HKĠ*y \( j ߘe_ETJR`LC#Yvke:!W˝UqQtpakYAZ kd0+zV= )lT@Ƨ4Le,2HDžT[x"NC_>"TY $p tsMwGʪ5jqsJpmi&X2uzȰHLXJH\D;DP5Dk&ϒ 7NS Gb&hE*&]NNKҦFS9d8~Eŕ=<-^HE?"`x́]X7A%X rp[3Qm&7 \f(/I\<;XbrJ͙;;K:#؜J\%֋E,$h#;D LpPsnK(aL @b~]̃@XƑ/Y1bLX`y15 !\U9Faqf?|V:ѯPus9v98Hi"ه_[cp__SjzlL;,!UFPdpZucbju $ EuD6XlɐCYEa9ˏþɔ ܲS\\xp"@SЋ%9n.v}r-:3)μiϳtMB$:oZ( }Alv~{F/%7lWoS_d`QjY &=Vu`IPPּu@l`i}y]D52O 3F;9ۨ#6Ѱn\XOh(, toK{ <xUy7 O pXs}ؐ;CFz%zy84vA䳌xKkFKY^̨ {9sщй$/8f +gGw1 ;/]ijѓ|VgXB.t4=gI?:K!T?E ">ih+Cލi> HyfS%HЅ$I_)# 7>v-kعx )35Jr Sq*cx [{Eߝ F`n]ů">'wʧ3]ZnOI00EJ7% &`'A&lS8$ܳd]3M,/e8LG PbqA+P/pik%C eR~bbؾ)2C13_8UN=Cv/7.Gh.Hf׀j̏K-jEjrwU ͝|ciz7E*{יoęM0p Q$&q ^jHY>W,2tBm ]ښ1-=|8C[{Vɓ&6 F\BQgk*yOOc<ϬuBuA1u7šO3w<,UXg5-1n H1¤L 2Ϳ.Fwq%:P&\l$W̤Z5^o)t@0Br赭M!<1Z\OuqTE:MF^NT|0,a**t )ѵLk*lXb%cy'_w`s}L) i;8IiGp ߼`ws7aM%1FP$^S:N:۪$v\CߎYyj9uNCN;8#uy %w*Y5/Hz i.هŭt.*FMa/2JҝR/N0tM R cSvԐ:ޛc qQ! )ffxسM6FҭY;ˈ˧k C]\^bn0t>\>~2-'vnkQtfɘϗ+@sgOl}gm1m7Ag$:`Fق23Du|U~YCa,\'d:Jy7}v/gv!6[{7w|ia A&hR%A;ϓffK|B@J*}خXЋ3.]cŲrO"gAk^7:"Πj/ η}|]?r:E!T/D|{Ў %dR-a4*f^({@o:\OR@x.ryq莞]T7$T :`XlYf暟lcXtJ7x4x~̶Fk;+ ݂YqKM "amLvI`wd-.9|!f<\nTSZ.о9iQb2 ˑ\ɯPgk ݔ&G!t`'1FTmݝfH.`ofN@xmFg?ZC~—^KtF)1Yz7t]j b皖jgC(pW.:H-^Ð:TGCYVFeuu*\v=:>l-I׮E2R}}E;Cc4ŧ2jUQYqeF4X(3 nyyk<od37,@%)]%j,f BB/K4V+(31H7_3FdbgZ`b p^`|# Dzcܬ`OwߏRҧKe(2@F1i!u'+ɔ@ $^<"G:ՎKpKrS{,]_.1%l0gx$t hw@,FCuR.ȶD2mA. cd11Дt$4 @<&iWtz'g| EsDZH 2\lu /KFE QܮTu67cK Oń7:X` . %DDbY1)Qޘφ7ua7Γbx_QvԚFBua ̾+,.{+e"ӸԵ|^*'cJqB/#j7{qqV2elTF-[_i7l K"xP|,tODi^*1J^؟UXfk4Iv9|r8 gjD Qqo, Oi9 [}hhSڳ)o#|i1pcB] %T 挍Ë@!3Qan5|kّ36?ϑ F1,h1~Eʘ2(ߐihj܃Xk:/ <p"NBBAfֵ[ըa!ىMLKF e%m̨͕R=LqOR ktýz؄QþdTyNI+fCipٸKv .eP閒k>HJioɬMs\%Bc' FG߃@s'Hrif:mbsg9p{ۻK2;=Du0M* SG5:W _U{(7+n&̙ڒ F9`Ğ )w{P~ҠS.}C*P3+$7:cQYtd8P0њw2c)n{$ :&1W=q!OwtL R)fH 7-!c)L`{0ɪ߀<{ӵ M S{ d8FSGbxvI8駏>E-c?[6 _XL((!ʀ l~g)RQi V!(i~{f >A8!ϻ2 \ Xȥٰ ̸=S2MLAo9Zkd}ś1|_3,v}[|HޤcxlNٹN"u)PD: |7g!Ql̝@Gqޮ:vcYf4 Af}<}5# LѸ'U`UE菰UY{|t3DiIh^^Knb@܊48!ΓunOPjSiYwm;#WW\/2wSU;Dg2Ǭ,=p۶Gs-x.zAZ wn hsM쒩7ULF_:w6-%wk4a^VL`"KGu?A$̨^L fB`Fzr+bHP]!1b4dC@r:>Pw4Zr@vzZг&Xih#єyߦOqc#CBQ~>"4f3<)Td'PJ 4""yc;n BSep iD|%S1Y"$̼Wײ hDt$1c) /7#UKϓbȆ[rg&u`k(K~h?8tESm u#jrۢT_: ゛ E.%(( 2&yD ;̓/ě0x"=Gdld: R34U+2G애0Q.Fъ$6 Wu9cSrMuߺ& xOD6l^n4 O]sF6L3_+ę'vyݨ ܩ 5g4i&KyO !YtEMZG"ꌭ-~ /䜢G$~c}gdS(y0'L Ð] |TC@8 h{ '̮wն"0KU2Ilq?Nv~7bzBuOة96W163k,'pst+IRɣ_ ٷQd-b6ۭUd`t|u 򠏕gM\lz38MuE|EbgZui +E "n=4wcXyBz%m+8KL=M\}2- \Цc逖2pAc5ϩ1kbnlcن.x|;oxi*OmW鍴śd7]%ţ<h?ZM>h2ys os\3 2ڐ:RT~vЕo6h!t[ƃvCS =\!HS#LpY)$zHKQC>OE.LB=xRR7J8Nhӆzf5Yr`J6>[Kwm#dNɦqVGd+B$:ZgGw6q(E0; re/`]繀1vl 9 g~VQogMO.*bduD6D*8߬-:L;GIYqCI$|w 5IjJ2!d_zY' >x.(Zѕ%A']V-呝"eT_fhL`WPͫeg#&nv^XMAA|1J6'|{x V{a?DHB7q?qxw#!$;~o|gQٵ0wgU=_m]'C+)m¯2Hsabx` uۄ9c͐lv_M1!e#񦻮fD+!D4\.Vɢa#ZWG<_ݤQ%ge0#"Ħ7g OTE Ý%,c2*ϸPDNYt9!5jpHZgYZPK!̷4!4!x86/fujitsu-laptop.ko.xznu[7zXZִF!t/o ]?Eh=ڜ.+2_,^8[qע`ŭʿp;i볍*mUŒe(G9ː(xĸʅE֒^9ۓݺy'̯q&!xoWK*PVJ"걛 {C>ZyVz$+q[*g}R2Q3\_9 i(\]5$Zn'SfO ~$/\Uȷa2 x`ܹ5R"&F% tjx.64Yu$9[7 {:z/i eQ}M#C㗻$R'qn^"`OmT2( 岌ߪeX?N?Ti.Ň?g^^#Bv{!gM -,W^/N]*oWs͜\2*Ma}2F>y8aۭ֗.Q#-5/+Iޠ~~\ ,٬xh N{AK]!OC+5+5Bp!o-O_|)>4=̏ W:7B K\C{$*t-pwd4&$ ;5?جFc|~$rl&~h5_zGিu{T+H.kξ\hM o5C8:#Іulj(@1U bW9iL &Rj8j~|* ]cjt$e"%f_7ht0׶4m+P.%&~މQZk[{"VVwU4hŪo }bG!l0\B4\0ϬlBtn f-GN'jƸe5UTLfg)mwH9vlvn- 4CnuJXUF;}Xst=.WxK"Pi7GZV& J_nמ4⃅MbA{kPV2LKl&Dbt]} ƽ2nKcy&,a==8QL& p $ع;f)**)gJztg0ѦB~jRtZ6@FE,7E 2Hdmx?/d#N7SՄ˽>&su&x LRDQXɏxP]/0C}t҉#MZsҬE970Vj1$;j w:^r^=y<𿃒Q *%zޣ 5`{Ceb2a QTXõ$tؔ您ڭwJ̪rHz*<1ArtI_[\DTL!yZN{<\SK(sTPeuk&ᡪV='3hߘJ`{mn\,@,3 9T 8c[a}Mv1M;Uti^)*$n&ٿj3fu~h7zȭgwpV *-Z"iѱvpt*rs =xǛǯª%[E=:mBD}uړ|ҷQm7*- 7mBb;2G kEa~#e'+.1^+r?w1Mnt>WnsiMwIaPQxSuuB?,IN3_Mi2/YabG*ff4~DRo 4qI"2\~EY_)!sW`[?r|Muss%D9n}{KT`벦Nuuj燀"$-baH3 w˚ʬ+Zz6}h9kAYaX.{Ʉde <̜XpW}Lَ}?۵ @[$dKE\=-;Ab9cT[G;fV Q+*91i.څ[c3KaBwy[!AFebV-%s4][)[jg#ɺwRpn%Qqa]GF_LdqaBӏ#pB;i JcMd(lgBAu<6 J033t+;C@{KVҹg+}l+f {"\&`>|fFݢז9\VuL۬v挧z sS/*&,V65f2nԸ]sl)`lu͢{`#SJEݕ/ZԽh"]j0-BО6GŸgN qr Da"y>Ԛ"5ƑbT#! Y2 Um)a]%] 9-7IC /CqΙM|% 7A"31:baFo0'uV#ZJ _ mSU[gߺ@坫[iO?s e _?dԡ;=p1Os]~C|SK" Ά_?F~6mK"[1r|;l.{5ba+=UNJy$N82|sIqF/lg""|)P@-v{pu-3u UZjyҐa `CFˏ}7a6ԜMtVރ(Π@SXBV@8޿0r5I4MFguZB:HX}19bR#TDI3LadLm?F߂Ƨ{^'<(j4qsb'cK,ohQ#D')3'm2r}*>O+nc t]D:I/gźm 4^ ?ұdAiDy\D9x lᵙ@Y6%m#FH\Th87&4j֔R@Yq4CCrr`98YV18X[Aϩe8)ɞݹ?ZD^ؖޮ7XVsh]Kx="=k\ d6! &嗢V`3c]B`a-(6H&LZrվ {Ǥޜ!3Y >cb{DX[$,PmNswDIYO7nͩ^)&k@N5?h*_jsڷ<;}56>-rTI݉/)ԊVZNmcH<|?Nx]W*(jSY:FV։J=:7P³p.I\F$~s rG=h>W p$EW)$C ORO{^w;3A)+->zN.T;ràv]G+">.y z"gwf*E ɛXBa2TVT˜h'xA0kz_+k7^d"@[%R2Zk'K1gZr ;W6#9/AI8 ]m"C^wꀷDsμ|GA{VYrx36#kL~Vpi*.P!"[Jm*&+(g+Ӫpi8N3Ӈf kC#5λ3deOr9$3:6.!8,iaHdo(wacw1_ƌ`pc0~&P6?*2Ms' Bŗ Gf#T+ΦmtTS_v# |~*Et_q!9` {T{QKhU"KilɣESݘ|{(y7 R1sh5LqtNէo4s ́2@|P/k;- ,n`HzYg\PT-Uu8U 7M7ڔ_\H:<"P)lh ,zհu{#dpՔ_5+}ޚjjq9KV sW"0vliꆂ0+>b ٗi^;Q67m>/PE\+}<ل59,#xdM\'^9fVw-Ӌ_z hܑEpϊbW-9-#O2GT u TVGnГ<5QTRCB9=T4E;Zkq*63ϫf=!3M9 *} _m9#j=ХSwFNbZxZ>{bK^A{ \ 4Mj_+wޮF^e2-].+Lbۤxv]lCy!)bvTɆ*.|c T>FNݲ#S_wږ$h8+1].4 @c9+r%mKw_Pl_$N\5e N8Ҽf ڱ8S/ƪolcl8< t.B/ж\@@LٗQ.VV}Qg5!20IOM/ȇs|p!C!uɆSβDv'~^C?Zd,C1 |a}p&rvs^ۦOS\z$VHQý86z.P3iɈ$'|\o鍴^|+X`ED~I<cW" nbBO=Hߔ|#Nn$~/Uh߀>Fm`nЪ yIH엺*Cl[P>}5a#"YG^5P,r)fQHNK'sy4aؔ\o\DZsf$b+/~j_FNK  nB*Ѣm$2A=K[}*y83Pc۬[&d_q֖τ'xÂ)ͬkVZ"L!6D xsm󽔽s[V am!z;@k d8xDRA=×( ^9G ؇OשÅľsRɢIXvXē׊EN2o*˹gjpi!b%..>SФ&_eH>4gHB!<Ѱ`(*ZwjnrNqjQp *bZSjgJ<(xҠ%*D]>yگo' uu۱ykDN3B5_ nBP7fl x刦h9/'nB>PZQwP+H2 %*BAnht3 bߋGWk?HDqrMu fw]quY J "4-AF9EMVKGAX |`O@uN\jT33y߈ f,@f,<G 5wRI̡&Pe>,p dw>ܸ)erU"sCXJ$x]@q.TI )CC\f?+SZLI PҐkNxf7?= ' cFFrNk2EڗQzP)*DtI!uq P(g+)a>u0{}edIXV"Ԫ:$+@!l@9%̯AΊ:D(/(҃b72.i8n;]Eg>-aٖ݀iv{`3#GȶT|l@pm'DA !zB~ / P,ع<"yJ]A}wf`$؂W~J`.XsPF5t.&K4;Y5ڽi_|hAzȚSXvOD ?JEʏxC1_w@1|Ck^.w}:?)83*gzpD:KN(ۇa_S׈PSr-J=^+9ۤw삈yu)2O`!1IYmd1]1eYQ;/;#Ce=TIٱވRpew~ $ vo"K9>#OoO5fX(kL: KSEDil׸^xCCk̓ǠK*f9 ojMk }*S<.dS>62M0ײ 'zPһগ,X"Ъ"n!=ABoWŠck|q9ĢU4_pH'i5LJTⵓu:}Q̓ѼFANk.ܠ 1mw̒Eɫds6)5-}CVӾĴً KV9 6Q=*{&O 20TV*zcuGgg3;>*hE4v1ErQ#"͂RgX3M!,?1zėWuf{?^S94Mlꓷaݙ;)'o/L ^ȾlVsbm!`xDrm67\4?PB \1Q` 09iL>ٚ97\xjc~q"!$%gE2g|zԼ;A D),|j?KPE)aj$Wj0qԘrIO梈qA#&nF(i'9߉h`Ԍkc3%<.2ɚG6X\Su3NRܭBsbVCR@#5r@B=RƠ42GP:^lL1`I6 C {nq Lr{0|%NaJt<Naqz3]Щ>Uo13=f3U68Q.K2-,`};5fK [}A[~}~X6eoQtDP쉂'7eGS?4J'$ym(,Y$JìTkFa.lo`-5T GH%H.m q\z95*kߢ!z+n\M"# pC҆]4]\DgWֽ+zjiP G.')@B*-kW5)OW$.7;0Cxo+q_(h'ɦӋsGb4݀}ђ_V>͂׏ ܙp'Da\k1vi[?5s4G*mkt5i|7`P-}) Z<= $!$%v%L/˦hVI23~:R~`͠ꬮ/" ϻkClMsp93 ܙ?1Oܳ NcϚ|.0[!Bh^Ҏ7܆(54NuLy]^lZZu5e<.[Mn(Qb-xyAJav MZ{]䂭XR@PS}-F{³Z3aG ){zFNͦ< )]324<f/}"FΚQ8mi*IvE^OF1NޘawV}Ǚ0ov'J&O;gyóp6&!eϙ^i:͆ Irb:W۲ UthMw@'dW|iI+9[X2xJFkazW[*22xMmuV{y?tIN Q2N~7En&!h;Y41 Bրrڤ{ !vU-#q^~6{#pWoZU_E^s kEa?asBST$PE-zlQIJRM;h@sM;6M41k޽~֦*u1}'y VMEQ5G^ZI(ȵqG/I`v=Eݹf2+" sA CU z͢;NA :Dڻj;7=]*z/D?r8@!cOBh{ʿr!y4(a('#\T ag3 qj՗3$\ 8c].~0 .GV:SԿ*mt/5]P[N'͚h W 1M\,9orG>ByG֬K6-8H4:[N7/\AAb8)و@9 ͚B=i嵃j0 !?vWd`SnZMu"4)r%a9E n%Yg%@ m!Uy_B87/^`E~D2H\Lq9_MYޢF>{ߛ6sI6w|4;xሊTá84wA-\Hg4Ɲ?+vgR֘CNƮqnNs<bYh\Urѓ 5 (hppϿf*+y~ 0O8ߧ9b!)-l \vt+vju-J|>®׈ Zz kn*YUva>Ss!VSMf9`7v#H ?f't]7he4NHUwbAM?~s.6x7Fk:_ݳ j04`/޻`mjIf̝TzY}2G?nn gfL.*bk& zR4g=(_% P)3YERTGK){$} Ǽ|֐ăOؓ_(DQGGZ1αy*?.yCC1u3pme,⎱.DRvas8Nsgl9Y? +8П\d5cIc>|kp{p}SR/Q#mqb2x nI*? Z9$^#s!Gw+dҐ+˪~"EH 7ZPQ<^DT#">%{gr]gJz>͡/-2-_4fr;JԳf p_paǥzͯ?\~N?a#E] ے{9pUfX]OiA&#<N+] 51Nntj.}0l]gb=$xh y#0{ y4{N^Z]ĉ]v-cqM*uÍ)LmYm:^Sq>@5ʘ5* Deyן/tGP]?LS87O !b8م6F3YnN`JQ4OW9h-q4-Jbҟ!8!J@^ԢOs{hR`l.NǙ`P:uJ99GPn$n뷠⧬HSh>tVe'9a).r7smksp `zWD]sAHsm+B:+3_(,0~]73VMiJ3г ʧn=H?${PP\|JZk!~m#=8ZTFQ eDkF,eA':ڥIZ) e(`1Ӕyc*.5gozO9CWfmaZ+՚,XAeӒW=y&q%Tw3s*>B[{+{# DM̟5У}GE!|c:96h.*"Zp^ iGiۻLU~&;բL%@gzTS|K^0Z +amTGyfĿwbL lFuIf׽F,}P!/fdLAh.`72.e ]h즆TD/uѸSrdcm% oR7D`s% -F>Kd9EI.v~:~nϖԯ_Yy?I"qlk_+Vxui7ҭv#qJ|q&n*VpLj߹79[s&C6IaS7B,\p)a:Se1vo&FRZL#8GK9/pT@D 14*׆Ek6G 10ER雛a,߂!˗_/Ӝ_Vs4A`,?h|ӃGʫM 1/$ yߢ Z>Y05 1f 2,q4GhĖ]!Qt@}n$ pl/rir/5T蒰πZփZlD,=; U>}Qy|K=[ H)iUn]XjǥI+Gw7}+`Έ"{Eb[^2 *U yn%'NO RhޜkMf"H1"\;UWW<-,$QDǦyQ'9x1>Tlgދ>0IZq L~(-J nt֦(e]^~Ez%-B;//k~ f̅+*ʼn}x(9a w @y~Ÿ)6߷kSX|"mbFy;TC>iPUi"qG_kNcI}l dSۥQ;npUg:MUV;E%@$/_1XhkA [lZ@n-XO[s5K)mBXuH]vql,WTM\ʛʡD::nI? 3Be7p/QXYmbE괯u%ÐBU3r)CTT#X:V%ɼLF:s x xD]X<8L!f!╦!4q3m7yVoEjֹ֥Ue# ~$mVZ,:X"hIv㜉[S&koĠXdCe4^qZ2xz q{I+\0P@FБ,}ö/ m17W\j0 Ǐ<礋?e3:vzP&dAhH*>\ȩ=!:gp;FSnsUAPDՊ[,+rQۀgWDC-Vv4A+_.!w«ˡv>h7є!i+JO'uԙfl\hbd)?6ǫQN)#c BF޼aǠr\8ɨ(HpQWsҍ%}}iF\3lM!e1e*0s結W4uqMKel  )تqs5`akOzm&!rSy9e) k|]L{Y{J<%K8;\OJk+`7~뵇H?:,6 L͍Hz):cNzk?X>6(l-ms%(PB#16Up%m1{L*ОTuL+W`}a Wg r;O4xMT0\}~!ؽJ?sDo&:oF:ۗ2։|w.U"L#Mi?Rt_&KK=E5M9F gADQhgiN?5V{n[Yܐ1E7P.P '6ybᗡQ^}#0vØPmzGWyhjhBP"h.E!q{ Ok~Zs[Y&=dyꏞgK>ٴw"/Qc6݉]aD[ 7,CM3G]k~zKJؒa)p[\@v#0gEbΟ2õb@]N酝IǁXoipvJtݿ(HDGb'Kr;5 N8=59uq?tMpMaAJѡߍP KU~c)[o ̞mus7uiD^@FG? Q5!#+=[p}r l7{pU@gqRжccYŔvs 1\ռ,*#4"MAHlٲ^*eH~YgFIePTLxcz a !Y/kd<h<1 *0G*JtPL_rf_|TG2k:I ̊;;w.P}T3Z2[=y3;0,)drԡh4~%Bmt&^))kO@O)5ұZ35m=ť3N!.$ 1U~("՝h.'@0X 6h/.">leNb༔r+;: ,8i П>MD"g4SxnnDʎ!`tK$v펄~kˉ@$%Rr Rc.(޴. j@/ V&7-S͆&_c w5֩|?r-a 6/53N^EՌ; їkd/)my @@O&,j:!ۖ1YvTS2؞`i ; ,)ʥJpY]̬i.Tvv?^8TULqIq9' R~XM0Ȣ)B'8ea}&?Rld`A`7v|~|H.#~~]󔤲'3_f7RnmJRn5^O&x1cP7gyySP# sir֬V}b=vxܗ]H*[~\oi>GxmA;bd%MbgP6fn܊ljע.)ަOb]=`U S_fˁtOn'Eњ hb#E8-˪ MU:?`2t@,l/DGe ~c҆QH`|xÌ~6m8 QtSne V3"P9meMF? S>V'!3nrfyJSj@+\M?@@`$"yhlyI?W9r@iܸ5h; zqo_k4%X,]HrJ ߪv0F{{#5/Oppm(qS Lޞ^NiVd$ 3 B4#Hhv<sW;b+ q\>OO:Q0"q<5t(@^o@0&%$-Èml6* XQ)f_=+XXb y\ߩOx`@U)QL7UUh~:V=mW9WaqB:TAIxVʲ`w},̤6@)RB(X9hTѺmT^|1~>u19XV/XD gy{8ھ./r B앸"*$CYՅ܇mLt8Z0@W%^*>Ecs5T?i&( l9捶!&X4Kڥ j28[>%o{v o#cf|ƗAQ8 ) gY.xQH(de]#6Ev{e@J;ۇR"Զ[<'zV=EtԈ+\҈u=\8[U0M8>qxO:M`s Uj?)Vx|Ns9VJ}Uw`B'[[]\ D ѝ`' \9HGJ"*5~Q\Ppy4ݺcA|; >'\k ߣֹDlU>)3={Z KiʠhV&|%_ ;Uy9psZN6 G-7]xĐV1W"{ *Klf2Kgl+W/5)aۼzyZ?7~@0mNH(h9i/uA`ؗ,_v3 {4ڷR7ֻ 5ٷ՜ ϐFV='g24d?dezp̑g l}1eT PQ;΃m׷]V%utEy)e;Z+V,ijtI`u6f$Z 5XN5LY^ x6`w:4zY&.jǾNcxm<'|x'f.aL 09E4]_Lxբk:`',=n} ,uni ^<>zV ^uA-dkKph{] =CW-5:<-^']N=5(] gy7$>DK摷Kқ(WWy@rff*< ' [Qf6^2rh -cT,e3Ѣ%a/gDl ePڽ%f UHTṱwVwA;y.cHp|rgL)JGDZb( 9wKg E 3-w95P!)ٓ#{m'cDPRv+D "؀ ^c; ך9u.>՞7"QdRGEN=]HΩ3h?uOBH,VN&EM~p32ez>Lp  AYki8d|&EVW ^ʛM!/C++ K 2ݜ⑜,G&v+íֆᅧ@ؑEHƱgYZPK!r",0,0x86/acer-wmi.ko.xznu[7zXZִF!t/o/]?Eh=ڜ.+F\ΨQ^˃X/MqK:BN6AT<ω@Z$aąq^kwMTRu'&`̑Vhd;[гH"oPQFw % ^u|bٝy04 +.U.ޑ餧dX5^>1wGPqE941QҜ* w9;l,3e@x:j4[@QnNɬf,dBtH+|N2z(N*YoDm"V'C~÷8knL|\]\Q=Jft5_# CwZFmrCc?OFzI'X|[3# RaR<~.I^I;cƞiCR;:yt/7N;Qp\ cVNJHqFĆ8Or9?';Ps j7[ %28ɗq0XX+""%2{1oG^WO%]\MiD.b 55/&^9k cNBuIjOx$B:eぺfD"u ߭HJ]Y:肾 }vƵ90rӪcJ3c1`Q7Sjۢ=c"_mEX/?3YZl/41Ag-9<oTSTz#tL^`,bo1 -O=iѐoiծâ_e-ΎJorj ‡F:3?/=yfa(o4mr~:3E+Ə/5>޿AK^QF^#_k>M:XO^ĆUI]3k^v [BݫH SRl6l"^G#'uBW W* DHO7C,Q)- iLSZUI <^gMB߅܆BCHm1 "0!VͰCjo+T0.sA*Km/ xO8ya7~ObxtЀECaA*2hI[Rrzz[7ha9'X\"3bx@t7?r53d;XN_Ut"V<-I(6| x"O2sވ!-kyaظFSr7ab5ݔiDiJ ikzkm69z1g@2e`/t{|TFFK y>T yC 1O? _̛ V;&=6**{5P,FS'6 (}9B;?eilnLѐ|Y ھ0i^i?;S"=ێtO\NIZhҁ+ΉnçZ @ϳIk+{#7OmF c#7s.~.RΦ<SWϡ2&mC XmG7-h˴`5jÄȱo=ݘ4-Ĩ1wؖ=KDae"Pq/YM؝yAa0 )X/um6 Xs !#f:~IP[B<>'֭$†:6&4eP.oMQ۸_YVfo 3:Y_eRh5,?T<t\^\gGZ mElTv"CE/RN8-褌&a3f,{5]/逇6g Pͮ#pԦ"S|V&Ոp(&[ڷjDY<]M3C[c۳V/+m*bؖ? nb6[N?-+tRWR " dJ5Tm'f CڤZ_BՇ󣒊8^19wƎ—Y}Է\ a:]qqSpn?#e>)>:'˂fZGRzZ0F G ;⚑%qms@] Z >#HBUZ91k3jfsQ*f_ ze}&[kp{S ֫0(]$jޖjXfd7{VV)?8  #yt6,CK!>zo)ITNL h>TMzjYugy\^%Cjes`C#dTO0! 2݈fݧ+QohGÅ66AQMSBџ_VnnLIf]m}u]ʩ1ś> ] ,ZYnwݠ_#7ڊbK3VP~/1Bt/bB}\cv&f8KWcg}y,Ww@PK Vp[;T9n'H]c`e1ߞwOZ#pa317 W\z+ilw;%EH.'VJL |.Au~= Z?3-iBMҺ>)%;ף%6M@Tz,P!ry-$&f OsYY pk̬,K3_ N/`|\dcI Y7ۜ4)MW?벑y|ԯ3323 Ckqom9(jT UGyHx'z_+6f}dtۅ+9<v7,,oK?'IA#8&7]ۣ J>$ rчN3_gbQv HmrAMs~2SMxkPn K KLB0~Va.!As !5vūw= ϰ?Y?.R<.,۽AlHwlLQ  `%)U~E.**t3*: ar^ݑ:u-A]d'CF+cNO/"y7Bc+Ȟ95xME T}oEVHJzb7L |.sv`?T)`_Gz.&li|D-)lN-ҕi ~ZL+(_@~]'فFKFXbWiWXNԗA|:Nȉpi9hQuK'  tH%.k/ 7I$vQ؝fxFo]ޟ o఩! }{?i#DfshKv\mYC7k1FYiyԶC-А2a!B)u-:V`ʾ,Q@̧:l*OJ, jB5X!&F/w ςNoDϸVP㲫?rF\(͗-لC3" lZw&W'Ehγ(p?J)9&1ZHu%~,IlU2ѡJhzO$=&I)F*u r(!rIo }\Jlj WAvLnؔvT5 o1?t!Qeb^JIBRX3hR"FL. ]\Q1nFZ|~utP/(}66y")?jQ/Th:J6,874 xW?]`e2q%ټ6 Rů`\$Q1Cm0 2wyͱU-K/GP^3GavAqvׂhu1B l 4 5Mq8LvݲN0#`x, n@a_gx'nE2USn:96N/cq% EUY`fdc6 k<%n5V?͑Jdn8jd!r3xI,{Cԭy-m}?ixDj$*>FVPk,OHr EsvYkě I&p ?1QkbwU rQa"iSk%xY3u-W>?v6!)vr 2_ə(Ci-/n py>FFT*sβEvv9t'f@K(؛%.$@@wN~*16[8(\XxA炢Uo.o,H!UEftteG1 {{W,o+[zQyoԹ8IBxc-}Mp<"Q3f*gOOSO2ݥ ql͆9I`77[?M]F5pݼDq|wj{B8EN@Z&.3r)aK *IçN\Bje͙AI܇e ̍<h-";O DYiW,XcKSTYf_eOu宽 柭bZmxJhT/A FWC"mIWG^x2-tg\ bLmS!؏^/S]Bft|3ߏ%3 hbJ8A5%#kU1UË9feP{5%I/Y}se{ΊyԺhV #ɾkd9o@pLj: ߽4d],>Z!F#3츟PkRvw@]YG3Lo0Z#h_س>r.Bd-5~*ߣ$&sy2 ](C~ ul|yՃ^;Pj`/䍩{J( ̨fŲe2( ,~[еKçЇU&Nag%0Eg\,锯:)Ҹ_U{^-0߫2S?YunQv HB+dl $9j>P9J <~rz\-6i{HIkgCGj2nXY6bd0{܎o5A>L &il5Ƚi.4?ot,={pu b {D D;?s]QB2„t02}[7j L[`1vDԢ|y%bڴJ \/K| k&)^ jUQ#%m2q}Рcm֧"]%%KVnH9-qE( N+Uh~5>׹”sPQƶ* G~ ymoF5U=@26#]:s ..[*[| m][ wpsui95FF6x?X&^\{ ﷼O&;xKk66rLUT,r+w-+;MqCyBkRKj2ȋ_a{7+B*{,$\BGTI*BfZoXJj!L (J.xl=s $#UtPc2sٻĵ"kup! O*u3VP5@7;}3Bb.`/J@9FAʼn'@<-İחLQ(`$zTo jO#Funrcק駀cU5Y: e gJg?u`>\:GMBW ~+n]VBbdĿv9\[vAIfhЙ>BΓ~ jUQ~n9m7!78 !7V ǠD(&+ 'x]OE_G2EA.5.sx*섴V/Zwrn7-"hg>]w'e!Sq5i*ƀ *ͺ^RG(&'*^@}]?V"v^TA*bD518/TyN%,H&!6&7f)07@C>8Q5==HyϜ/* _&ܺ@E3:خ:8wMFl0M\)q~Sz6`(e{S!Oÿ2Z"Cy,$SGJuRǫ1/"aYo >'49߷|&4bwlY^[wp#ځ θaJJ(EvO92u 9͌SEvaL=NU{ M9j7a9.ܵ~ o*+U"CͰ&EMpV}wȰ4 xߊ累ϸ5oM`Yw ZfoTi˭YѧMuw% QTMy2^¾8/3B#<+7 [:Bz*w9c kCpj|E&J f'(4"=^d&xICd}W8N+\'􍩡OCih+G i vRI,RHC( Fdeb*0,!R,֜W_T!!ݤTܮG0Ocg89x =ٻ?ZEU/n0}OMo)Ƚ͗׈y8ܼ.֫nJ;('uKBM(xl"@o૏"PTCAܲ9+uAFBzP / E1%߱,Zk& ڂ}+lo,b}hpJ`x(Ruk;2Y)l{ZWS])DI& "Dgu wz?{d- #ϙ0֩>Ոj#B16 !~WyVOr:2`^$ "7+?e(X E{Yi+l#zq /LQ  QH+;|s䔜qq*P`:8wv+UD$DY5p@ < EPߐ+rm|:SHd`=_- RA+ip@]15]0#iK,+FOKMjEhrd="9m9*]&d8*)OͰ;O@:,~_, GX>G q w3sĖ--J @.c7,a4x%)۩&օdYK ]e@%8'.(S ~$"&/\HoHLdC230E<-Z Em@QQXP9t*OH{saQr>C}vnnl:D#r R]=D^=rȱ& ma > gB45ԁ%mߢᔄd! n2lS%]k$EIQ>Xy"6UDN?&,$]ǴLaxz[6@H WBiHnЂdee%K!s=0axf؊v}anQg~&_Aʏ|CA)^\э| $4M*J ]lT$hLzaxi톱uɁj^&KFqq|LiuZuqGPTmw₦:27Д Ұ-c:TBAܣ5;A\sue?`*T96).ia]mLfS!_`dt~VIcxȎKDH+7a-10]y%T-mcO}T <jSoAηKvl3%g`gYZPK!ulx86/msi-wmi.ko.xznu[7zXZִF!t/MW]?Eh=ڜ.+M) . <<@”PT:c$]ӜfCr9YYF9BUBi̡E:X,?&G*w8d؊C`gU;|7xgF?2̏:B!mM~?f an6uWQ A(74g+u_fH~NBDgDw6݈`GE @~lWCx'613Њnwct-WneH:esEm>W7”^} ȺUMuRܣ>ڽ %ŚN-zTE5<B^S too_HXld$M^EsBκ֨O/V?>K᭕T¼admg:[Ņy\jO<ǿ#+GX/`5CL%^!}0 ۽/{E5Poj8`&39 "EO88doW9"|ɹ0P>^3?xr꿵XTӏϼ@sadW˷2 6F<& ;"Uq+@V<937`U@jQt AD:L1й}LA 8!Aمd{u"h}_wҲrp K`L8O%%gi.Y]~5>gE+mc՞.ir37:tpI&1r< lZ}AB/"}q:Ѩd[-ũSQNㅂ.$d%'l.^xkZpPÅPW!LN{F uEf$@?f.c2̓Uqz&ӿp Qێ (g_M" ?7M5Č2@PV՘j^#fVzVUGGZ7go#g^ EԿ? )A* ?jX\4Y1 ftp B(VB=:8$][X>J"^2 l1-+$:պj($9FSþJ-AG VݵM9Jq'‡~RͶ.%x -e/5z;/`zbhe[1:jϘqvYo#ߧ@7-δ<`bt{($8|5@̟(mu\N6?iӨ*S ȋuM??&z1$cg,W Ԇ,c}Gr힢^7޻co`ye\Cy#U`]f|ܱcBװ:BlC:SB,HuOeg7#[¤p .CIu 1N\=sF=pujׁȽ/&S@i'ab2֛E0!gN$Nը`E?Y7Ի&~{SqIg,ef+-},&AOVEw&D2)ݞ|tQoɀe';rK9Hxztsk4h Tbɷ1R]]7Z ur!ók1_)\==ndzۤ-54gCG= Y^ nNֵ@9`̇oQ|6 OI6UkA^/|q=ׇ'\pPJNpAy70;M&`R1Cvm^ @p:h2|ypr8݄j1E_7E/?he/k1rӝz1yQA`B0G,&؛ee7l3&4TŃg,A*Ku"Y:Q<ݬJP>ZٵWpkޱ?S)d(qcaڥT\84brXQ.x:/Ű6x1{ жrh}Lٖ$" &]3<d:>2#MrI^}ⰛoWݷ?[+ݯVh6V+(OEtam/O#4$,5JdOM+g <1n[r:ظv ƷckX:l/Xt7ang;Tl6 ZsxH<4]|ݤ`I- ;5ued%_zp^+ReJK: bz~M8ڏDBuB❮,@^Y,JhQCn/ !˸:0l46F[x$`g H,SH'z39C juO](U ?d̫[r#' _j #7H-j/YK"X|A8 Y\/ @YjO<4tk%)K\%'{lsws|T@=;+hFh_w eb L@w0_.v7q=.PbIV=ǤyӫVv?d8o\:% Jͺ7B)m(vzZ*kpӰvwN #T-IAeZTi.[{#BġF(c v; ]MVVd׏ܫ.g7$7TAF4r;يm| PH=\:XK)_3 E/mB7=^LX< nJuAM*š8gn`M="L*&*Eyª:uki<(䖔ze[Ʀ%л"#g뿎nf(e1U-Hڝ?0'gkmD׮ձ0lrmgEQNP1_D.>x@Zt_1摽{)$ۮkw0R2h{OyH@4`r;Iْ`B/YB/<5<13Lr6$hOH!kB5<iiw FG֭-bOp ^o`u$ľ8Lt R^ ~İTdĵa໔mgz#_D˴d4s{bƟm _[uihT8oGFvGNW3/a%Oza8v VlnYZ l+%+AeD 8$8{~Q3i2Ai^k.bpNp7M?݂VQC'uT.j;=zwD>Ù^ЉH4 \?kY&-9謙]Zoʥcx'Gŕ]Ka Cf3õi-NGp#S:_tH VLhEe- lM .Q7>pGn9=?OL1nE-C#_77K\ x{Q+37ٗ{تTVTWqPҼ 截3{Lt  u~QS"|j"&H-(8O ˓V&*:|.0?I G1cx\ZGVUUn[N ,s0_!ST ?jZ6 9>֪x :J"cO1)͋qtKMs2}4kYN)zu+E7rt8Ҧ"S)_)ʻiI4';DF~GQ:B%ؚ;zD5gYZPK!۸x86/mlx-platform.ko.xznu[7zXZִF!t/2i]?Eh=ڜ.+jbg 5_5ɾD= Q _OrV9byCKq-:_x`!!\._Ez+\ ֿC!J ]%>w%%cvNS vyL0;Qk+Lf1kڝ;՚H3a#h*MF+M.ɽwu h]'LXz/2PX7^hHYΔ6JԏEC>+ɬ_$?n#4&ӿ sV_hiG;%=^P&dPsg`[gQXFs`VYm 'mtv늄;z]װ^.xzy1OW"y=|@cZһԐU omaG%2yQ+$% u2nw0Rf{"XǡE g[Lwb, o l@t|6Nzmo82n"?؋őCM뮩5ЏlOV9.z9/ieBt9 % bve-P`jPر[xsgb-Z`ϗU9DgeZ]Tf iE;+ȭ /+0 `:Aρku-,{ ߍr+7)#ai 1 @k' ]Dy|fwATPq) ݳT`Mj0?c(-ڈb”fئɾgrP!c'+%3\3"vLGLjIZi,}&E#%5 :_mRJ'dr5u~Z`mǒ.(2\ kp<0Ǽ-N춦 J^ R|䒳KRoO3oZX q,镸D2(;Y!r+-Bm/h[;ϵ%yN7kyC}DǾ+7c|׭|yQ@9ތC[$9!/0xPR}[>Cgk_^xg|H 6"m~3uVSӨ DR56.JگTL4wUa0:W4LD}F{a{$'R"JZ9@~cgw0%{5S֙cN,N"'sB?bp,,PqJ7`i}E9#q5Qe~ٽ˺4`z7A bQױ݈ec{gj+YO|X!$QOjW45+F"-.H(<[dAU/;$mJEzE *hMWj?Ͱ6l\>b.\.9]HL54q` :nh^S ;kd#"\fSY{QZEF`=S[!(-VgGR>C{T [t*/'_A6P_ ~Ȉx+ /<,vf{)R_ k 9aXϟ3Mn:MfF|"xwᾎ"6:>k|2o8ivnrF%gzF|=w*]Pj~) *NL6,'Zp9s$NG <.槃ov7he"˺T:o]ū՗D=^ݬ*oMJq!&/ (qN$\L k vS2pŊ&/ cbghUJ>pF)+[. `BÌFEbH*HA4 Ნoc^k)yNKѬ@J=v%\Dsv'^v f{4S:Ybʸ%jum^[$͘:XA!qtR(6R=܌'x(n<I36pPTtNw?¹PL^Ւ`R+ь'bP/PG*@dbq \IL;.d_t8,{.Ĭ "]GaZ:x&D(5 d @ FclEIG ,BxGC{ su܈_%9enߠьߕ3ucWUI. b < L58"kx^_-P*<}0:[qz{NOF5!ϝr xyķI]uV"yՉأeL59p/6?hρ#=d"*8E&/5u'&y&>Du&$x2~uVHx) 5-܏äwfQ~|;MgC"?{}5g\0l0= I#}Jk'НL!V-<1[Hs;e2+9qtϼ.`)`.%µExQAS5 a篾9Q9hXio[Cys_*0C 9:vNäFА-1ѣg{jmV'\ԝ&D)^-n2& snK'3~dg> g"J8j 0t Rk}/# Xɷ/*~@U}Tdi4xwfeVcqIC<3ԝ,@uX6<(r! L"sGu/XW` yFܜ+lU5ڈ(y/7VB* S^pZ4A3s Ȏ1n7r .5s3=h](6}y^Z"Զu|X55;Ks|#RnǝJ\ ΅N!#oXi5_U$ሩSܑ7._nA9c,h3m+ʤ#vZW qDrRgw&|Pq|z?P,4 vgb1[zS}^ 2효) 2 K\:oaVG' k4XEL Z !'2*( JeE0(~v\ƅJ&"<=s@;-dhft&Afƚk:&j.N;-'<Yk*"׆xDЎfv;ښԝOty0yg@) ɯ\+mbH:kcʾT+T(وSpLLcx#e4Ԇx6dY Jyj=S®\ ;AϬɃ ŧ+l={MP(ӴWaEL\*yi)ʤ''ǔ"TK;~go ̜p5ڮ#0ȝR0$.L3XB"3*cuuS'((@leGl$b%m@?/';v+@7>EKہ)q$C^bzŰhΣbJ+~F"l+SKL#fawfpd\+-p7VV6LkooHT5x3BǕqYbDőW> k3t\Ā)rb^P1e.b??ӀhGAO@pmԟjGZVL0}?B1+T; }KjGG#xf~cKJ|,enN$7FK5qNN2V:d*$WrJܧp>t*bԌ{#bŠZ`-;︦csL'83KM9"`x ueW>y/T]dhtIAJ3:s/fIt!Uz6`ڡBtyGf4_g T1|K Q%  btA82.I3 4K,$Rs<,~s'=NmW jcys?Y9/s2H 3<%s%:Ze#DZϢrt\E,-Q>ٍ hrS&kКcPNHCT1\ir ` O.LZ y7)n"͑;& qDŽUJy7W>$C "ӄ8)_ڳ}qŵ_sv y3.`y |Pw)s` p>3eD^ډDj:!lk͂RM{ `* $]Ju g0OC5#,s6MQL mKKǕtr=U18_҆\%!IuD6G@G\Ŧ;m٩*a/W}^ǐA_XvrN Su.3cTh{ 3e8]ՉFހFul:_ڔԀ&&4XY.s5%o=ݪ+Idp]x ƅЭ'Gqat@(W"Iɢ)3Q3۪86.v!2+a":{ KYtAG=1(0+@^r`;FA*|p9& D}z |)C Ӆ!о!pȜɇB-[yҦK>+_^ *YWuXQ%늣2:&f;̵sU>@Kf2y]Wy%dm6Op3=M~PGšL̀[ g~YR=%}%CTAG:fɆZ9ϥH}G-h"KޅLcW|({- G;F ;Rg߽ eSwfߓNs:Qn]A P|os64b)(ASCHȴ ,:$&'nCRe_1|kFw_*{򦑧mΜa[\Qc?K̇`dLJ'XcG.r7U[-0}iUrz7Z,O F<1es ^hP|{G%6+AT! N*i֤aECoMj0H]:۽ؘHTk@/-P!p] maTL19HsYM{E&Idxژ8^e5&/iJx\[8wUo\!lQ&8^4Kc剚A*؃Yo>[fneЭ%8Ez >mK&4h2q f8- -*á ȁvof[P0zU>b1BFaR9Hߪ1ӭE7>2 D9A=MlnJZJѳ8%0%4v ĞlRȊeza;J6C-d\'cΨs4cOn"X6xV} ʉ%̀$-H4S76ۚ9\:kkv%.j{e%ze\,8*Bjh">zSjymaJ^4|к& >XF7ۻB+c" mQ &\x<˥+JK8JKeJX=_N$(J^́NA{^iGH^}F<ߜYm۰@2[\3ҩuƂ(LFW b +Qu@88 }8QBQwwcFĀ0;?bzѼCÆ8'w|0p.`tTPA2 㶿Bkh(Bw(&m &2]VR&[޹iUsZPWj=F^j8Y`] i`«M`murNdS<)S^(nXS{aGob]ژcDWF_5r;F5&-D.dfIsQ*"զEbF[RGv1i}nuyuـw|#;Z2rp IÜhY#->@s)^ARBrzs7U?&" E-GE*FIqz3nqk7ҷ @Ӿ!Bbv1yrXgZYl` QLDF84;g:m84{^DiLVZEECcC@ ¬ (Edc@[EqI묓j 9f0"K}^ 3?ɠɵũhm6l+L( l8κ,$uGHٓbBu= 3Ăl bT6DQR]gݑkCzI=I")f-X.ځ>o/k*^B)8'i÷-S & oK-ɺ> ]M)3fݿ8>EC2a1 > \"Fݤt;7%Y}ߥ37r"ƭqUhՋG`St#ʨm.-2Fd_#?3n3->4fd;9!4SCߴkğuzp"xtCf kD52e[6gRt9: 5y80Nىqj,!F`qNͰyFl /wiX[mH\Um@+,SŮقN5g.zŵQR -{׭G4lgM֬nt3?*9n>6+=i38"/#w8je t&cafJVL)<1aZN'l3NɽZ=\?loĉk`69Cy]ʰ́} $4%KpsZj1Up;%Wb-Q9H.o:aQS,$޷1tHb8KgY('q@7WuY7f%+["b=7 O9ĵH!J`]LLoq.ДWIq_/9LAٕVk /m"{Qiң 䓔8طtDU E5  y`b?*ב*rJNA%ؔON&FߠM>폩JsK_KeX[:rCѠ‰c%'s o/4=!7N,ZfcXP ZQ-.ANnp<@^Bg|UW%w)孵delqAOvLdǤI4jcIvҋ^g  sdECIg/8z|uah;΢_7|2z%G=ǬKl ѷ.E_dF5ֈ+NtقG q7.8I(|;30ԅSMO(8< :K#``($jHd3(k(3>x;O৊= ߇D]O=qd&It@ZHn1)A`iM9f0iʍqleKn>bVukV8>6`C'd)Uis'4" ٔQ l; ]zh#˾|P҇۹U(N,>>3B>&tyӦX=!,(r_DuFc=\oPVVqJDZZzz"E8DV Y6S& ɇɥJƹ/~j!,k6+Fx hk3ǻֵ )IL\9\q4Lb[䟷Y/wq (iz&ֆn+ip8(+mKxØm$#\ V掖~m|i#9_{TlO8XE^T96>Ej0&a01SgK*N"|@s*EíDl8f%<ϜL= j2Tkk[k Zao9rI2d>m0Ѻlޛ/" عf_ ٠R*؛)TdYT l3lY'#n:B0r6hxi,b'm5ҷ OתLA'Z5Gk7/&o nZܓ;wZxp7,Ѻ˭ZJ%(ܛ3A1.v%/-*2HqSr1> O-NۮQc_KG j5 10F]{hszZdR{k̿f$XU\u,eI1hxc&KtW` WzX{цw]5u?O2 ~%SޖGŤ>trqhQANpTȤsc f#zOPTL8 fW%5|ӽt+Yofu*Onb[XErwh7[иbMyJ4'~yQ{~*v \Xɤ ?$i܈ dYw R1|n?6 ;KmqP ߩ5GIx?Qj.ToG"2 uEp m0N ֺ@I9 x.g'eS7%С]T# Ub+JH4XX@zЃuꉘ,r[ VaMgYZPK!/CHHx86/dell-smo8800.ko.xznu[7zXZִF!t/B]?Eh=ڜ.+]"X!Hjl}qf wh"#"O衤f!ve1XSxZ "9<iȢ0ЪRK4M\m!BQnEy=l|V~F.,pzj=4 "Ġs:Oi9ѢlQwVڢ^U@f(U5S~t)ዻyB Hs~-O-ݳO3Sl@b zõ}܁jg8PtD1bL,Bd9mܱZQb ܜ1l4/Mq6Zu2.9b v'Eݺ p`+|1G$ s,IQO2Qt N@ux-z!e7[If2tDA+ʚwK ~9*G/VSh7-C2Cs!a)@/.=nK2zyZ6ϯHy\# ƕQƼ?3թG($}_Ll!8!:&ϭ?*I"B֎P |?h^qXGP.YWI/WVH~:eAp*z 7 |DѥJD6:\%dARs[D^l/%p]trcjF`7!(;l6X*;2FaKfoE lܟX3ih.Lbv|^AY;esc/1SĄuN=/ătܭ}+o(.IAԽ&? ?i>u_脐"̹3rYKv2 n))XY3-Pi:^Tͨ/}xJdrɖ0S zJ-6 +#xrDfƶ{K}5O%u57`/9-pcAw3Dx7\{DZ1c l`r_9QIJ3OrhE"&(5F')`eBFOkw/2qKaXƄ&֎#,ͻ˲$:n^֦$NGWs& ,ldZB‹e}tP]T5N6|TO?Y-ȮdWB%eG|?d`f?yZ#W̷_n/6#;M{^buƉ#267UrnWIE[; טT lqVy'3A :B# %SlE|SmDD~}ڋZ3&CVw):k _`nE\42tyR |;.v Aoվ.,>3\%P.q-6ӂ=q0\?t-ctj ",GRK-v$!Db"C@HP#r:'s}Pq&VP#Y,I]0mfV)A^$d tkx!2m 8A>Z1SIp 08R뺚 -!G܃ ޺yi BڱD{g ~j2N谖(`0Hv*'R%v!A5U~=]\f#J \ގa  _o(BX DFK 6tle5_Ta+d*a zb33toӒbokZ 7FƱHEk Aq,&S$4GBUi}/5ٰrGEKoz?TRt\=USMऎE 9Vy]H]pgՃ;kz8ꡑ-/C'eL6Lj7?fއYVqn2"'JWvf^I Z>r 봕UE+jgV) 9 xyT2'^&@Kٷ.-1 '4*],o+lsGBl32bb>NO 4ZjGd>fȔe?Q{Oh!hZEF}) omx|l5zH~IQϥ(xrXh_dS)8|d((\3&7EޝDLlʕR:NCrщh9F8\n CTƃx ?o& JT){ {rrԊƮ҆䤺^گc$ AU?'[]Nc`U\hfy[T$Sa%Ї+끕 S[z–Ӵإ ;U USj-]s?,{c IRM(jU~ِ^|rS<3owt*j)D=4O\ɀ7^gƽ)z/tx-dF+ Dbd=A.~։ ʳBcAaQ,rbvԦ;], aMN 894/_U9%X8 rjÀ/V.o@!mò*H〸8k]GM0y}hiǑ/8XZ({%Yn-TfrziψZ $;o3OI|X5nQpb=5 :NHVqg`qH'E?)_vyb3Zп*=ܔN {IPB?q>Jy,@Ѿ4sw IeHyўAƞRŽNsloS⸚k!k~3e/4y1JOl@αgYZPK!เ  x86/wmi-bmof.ko.xznu[7zXZִF!t/& ]?Eh=ڜ.+3+Kʳgg/2ݖ^{Tqv ϲĉC}ybSVu"5 %sH%|N텇bCJ6(ʅSKΑUju]C)qЂU3Ase=uL19Y\kWӘ\.42)Snx!pvJW3XDYT2]6a[صZQ=tv#LbŤR4M!9Xd/~͍I}*ڋe_!XvNnQ*E.Ϳ"Z%_D ?Ml` 釥bύeS9辩oNV234 jL}5JW^JOW$Cx˄F[Pi=e\!2faؼdQOC*6>J8Sa+\¤TټAta׈m>SDK)u`L`ǑPjIb =f<eAʢQ|sRB:Xrj ٞCT<p'nrH/7U#t'.g= stQq'r_G"$}b{(^ȹv]#A&|S?ydZ6'(v[FW`KK DgRwafydeAF9&܇6"YyS}(9Z c./LSZR"6i9i1t%S.+ UAĸSTO9$$$V-i`ll6;YZFAg!2 [wBYor;/IKurJz 瀨R:'́G3kiqiF=ܵ .]ߵU*{an;ahkդFtӯ UPaM㡻.BT;b<8j.U'XT!;237><)ߦ+2t*\]S&'U9/>4y|%}Gyv>EWz7J/( rdI*xjSIѐ-for8r)Y0_i(+ܿXOeALKmeI<]r%L~P7i1j؇xԖ,H!L7!lQ#hNAZ`1/t<_XM$ κ.i0e[B 51~^t) \ "6gdCd bp)3`b P/?L4>i狥G#zn鷊FC;g&df,f&edeM=_gYZPK! N` ` x86/hp-wireless.ko.xznu[7zXZִF!t/% ]?Eh=ڜ.+>o;.Ѓh ,S #U YBA(W"4wxmÄpqlօ}Urt4$h6[iʏ 7[cB:y,F*ϢkzjꍏFR!Vpn  ")a-/}&`+ og̴9R a O]j~wn7-uY L񍢐k2i$Dƃs~!& >aOM Ocұ]|g0XAh #@=~, [&.o1ehMv,Ϝ7u]*BB%TںM7Р&?Ʉi a\hnM+ޞfQIw";"|P:aꈑMvl;EU]7oKU[ >r1f'">@-mdXI>ڀ\RB U~C.%yI$AJm*J bM G﷌yG.™J/y']랅|\!(`6р?@UqL9!dAKfFj9'k2ʧ`=dGT G.tAL^4&Yq_qt;Ы^a:C:Uzn_3Hye+K[y0 u5/O&EZBXkC@AXftbCT3ȂbV`"HE Hp֔iSP\=m53\*M׳;} 9>h/Jy#]"C9 r\Ej$kCy7S^'yz XC."?67lM̪qfE1!/0zʈQK߈aJ pX =P%Bv!ct2hQkJCat+NB9YE{ x#wjUE \,\p%8F\Q =꛲UߖG05Ϥ)n :<9k-"FqjOe|8T# *=5~ʭ¨+műgr'J =\D0)ᣞh.&p g &+ē Q\m"n}.q/̗,+()tӧŲ,CMc 9 \nSO\#L!QFC+2K+ $O0\WX9)B-1IޭM/7VD:CM`?zb{l$Z!*@`R~?? x c-v +Ӥը5̣|kx˭=ए4фn{&\)ظxWtΉD,&a3->{^ `C[佤JQΧQa F4zjN6^Y?È.H'2Sdy Jt!:c:JX+yzXx}M"0SHAٞq؉x-"4S=2S4"$B5J)BEg@q'9)٤'1wٸ& 8<)MP(9?PZL=~F cPƚUہ=f7w>&r94{d'1! l8ߞu?߽ݍKV_ j&=TTsߖpYk\lf.r% `ݗPq+ԠlG|1@K_*,Z:Nu惗p"L_m:*}#1B9Ui.᧩lh2S Lʪt,wS,ӇH%JgMb/_s/1]?xAV/8ˮZ{::O`g8=^MV?quS$uӍM-ȡDW!0};6u;T:'W1R vx9(w- t(Ж:L|-G>?:[[8+6AX'ysKWӶ(q7c(p8'g_0zFOid5וfwnj >90>t?[oty'`);e=>2X"Qж/n M~k4v2#oJp tDpo Q=57%\;Ea'◴zn0BJ5iiHx xRr:薂`vJ%tm:!OIP@RqUX @ujwq&~+s~7"TLKԫU 0>/`5PܞS(Bhڬ|)7 0WKg?zˈvYRVsS>@)XpNj.Xc @F Ghԉ a Lawe:6VÖI-r0r}J%e!#:6rYc >S8 oo S3ܺՋE~~O6ul3C9,(ZCgt?]x@r<#.j(y1҂˝j漋9D8aXOv^8- Z],V3f7Xd&-g:5'A+/}ո$ak#}'&m_ o\ M#PRmm磡Q]ȆS҄dH]rK'TPл~u+RՇ#g_2 w> j8)h\]u #PVSͷWewvU8 Z8}^]%Y 7dgǕ{>c1oghg,lG˾k=pjM#<7*2R=8smSⳳ,@x"ӛ5ۍㅜ$$k)Tt@ =BwJ{U2y܈Gue޻9Ƿ "#+q?Ou^xM%9k )a~q)>Ur30r QM~w*ӸȤPc\׹"Hn PD50ԭ@Q_dyA=.I_ߒfؗ&UKAG>,,A"yVF ny,nZO|? Zm+Cr@|OJ kv}Oҫc%qArSRAoWdSGG!қBoaju.92Cִe$ij~SldVekG26ꨜKs("@gs^΀NaQaPK!A-wzok6īoJ-tWn_[oZT_@mILpRy#`>:8j) <ĈV\<Y4^ ׏L+'̼YF50v Js?|yjVcG1SK>!/xG]^Aj߼rMy~V1h,l؏&f{.$y,c&6/Gh89%o4EH 8fJ2DxRj/\p3bM7ukOM钓>?v31[{*LPOXztfyGD/TI|~[OK wKS89P,G[6@ &Z1Wu|9Gբ,GR5<ʫ6ZKwyppl:nKx|j; Yw*P7'OGI`56bH'~hcE SV)%ՐZrɋ!K0 DRѧ yK!Nb|*^dpzRO#'aE.ኴ@EW@vi۟hSzqP%{e{8IfQ}r(uTmm y: Z}.}rHUX^*ᜣ>e|q&`ݖA#/ PpA|ҮYBy|eBع*NiVUi`; eWMW*bKs9gBKLb=lGo@Pw [͘4 7;mEϝ%Өgt+h+D/؞T ʆx2U{\Qs+:l+j7%[֗:Sf$׃U5prQr`o1o/C[ 7F3eMr7%lżY\~TC2.l6ß ^Uw3M^vKFh'"K$l1h=#%wnD[yK,XvmJk)A4L [%*PGʦxnseor92]9c7uq+i _*~JMym}-oPvC{Z&V+i}ԻĊU_r JI4 &ki 8ę&O4|ӎ܁L0DVua-/tEWu!^O(1hˀX.'heQbqvȈ׆rl 0P`ӷLiQRs̚glpP>kRtJv$e"r52W(rDؕt!2@8?xͽ-JAzM\ʿ} hg] _́IcAF$h728)!yk7o?22v*PN6u`u G0gC~!%oOF"ANOzG-֝3wqSdQ2>lk,1sފgX](fi xLeF[>#22M*9[DʬwV&%dK;ZBxBaRU]x|x"yLqvp5\ܷwi?{͠ETkRx<_q 2K5{Pjnn`2P70QtR{VY\-6#w:!DYu˅p˕ȯ&eGv;{!25]u@K$`^_lmZazvRP\YzRmm3 8uT=^TNUЈ0q/<@sV oGH<ࢅj1OvyG\WJE<[/2B*u K\g0t}9BhbgkEVMEBT[ԪHP< \geCK98Wg_kˁM,~ "'ė𩝲lߕxK_} s+.Z Q"#Vor?i/,ao6-t}uZ-bxYp\3ޛU8(>athv#.<X]x|恨\D5jsR#}H6-#+mzc|eWQY{&ro«{hNeBi؂ a½ |A>Gy q\GVF4W7ܖsV}UJXJ  ';7x\sДd'גp`Ya)/JiJSu Prܽ2ˠ ͔hJT@)܃DCXF8A9%+RL $0k:ȀcaԌ/}Nze;{NZ2hDYS*- 8 kJd+7~6>bD}Z|g~Yמz =U]Mm= N'(4EzZgQD&Dl  ~v Gv>COeg 'P(;.7 k &}2vDZjO9vVT.fKYʢ{c_YMlhD?P > S 1g=~cx).a3Zr_v 캐=W8oKµa@ViQٯe>[d (DʟW>t9]$ sDLN^6PU[Vɏm?,O>iv.gۮh>8`v s ( AqzDA fټ)돻Xf ^O_]ybCehAn6ue~ "17CHb)c|-dM}t&G̈́X>6›x"ͮ`oŠ} 03JgV:$V^w->ppWXi5Xu01cI5'9u=bL {\e#(_RmpQsN2xҪ/[3R,b3܌/j/$քWI@ihmDÞHgpHƯPf -'gYZPK!x86/acerhdf.ko.xznu[7zXZִF!t/]?Eh=ڜ.+AWQ:@WFɸ ҹlNLh6IU@ D̮a#t}dBcsSPF<% } [ɯ5>0)}7(AA;ݔGN&)R(ra) hz6Uyf<wMK}\B\A&V"2}ܩע'8w=$A_aUq6(`Dx%_;_5O9Xn:C@n![}ކ9d}LR'$ $zqJX;IPƒ7 rG8W+,#dA^,Q'Ue85z- 8nYP"73s%}]]-BRhLhG,zEh> G*%a3O Skv-O7>b{SEФBY^)?ΆOO|""2NtOb&sع1r@ؽYmZڮN#(mۛQ)o+;ΌxvGg2;ϔ?+6Ϫ餗aɀNz3r:p!6wP0n/R?CBQag^M5BG2 x5[#Mq`J1 AERBt~/( ̴IjOYתG_^:D, dl l&s=iBVEȊc/4f>`Szn*%Yԙʹ3q)9,@@0'${+(>)#0Z{u<8HV\2upclqCY=؉X(:9.5Dn TPvp]EjQC/E2^H-'0&|2/a7&iTO\P}?(tu" BK/RODCPBmuW UCp|=fQ#?x`Uԡ>} A+Pfߝ- ingb|#JT&ubeЖo;_ JLrrRE 0=%Xv1~vw30}`zȦ]@ev|G?TC2H7x!ʯzhAiչeItҕ%iz6)F1P W* J  o7eW)ԑl5"0h"c@tb @ݸ<|? h-4;=+ı%oFWHc;SO#"X\9+І o|[vl30}CӕtmW9pxo*he@* UE0*37cI<ϲant՝&qACK% +qFC+[F22f*CrwQ?:$Jbi'ܭ̫i9nbx4HR5Wͅ\NDǦ$hm,h&mE֙"w:'`{h evo*qÂz[(,xns+5Jr07EZƳlIx&]aH4:)b3x P $X-m8<SP8$`SOq=6,8GX~q1WiRFC] GZJ>WF&xm6d3MXA!=Vۥyux=ںA7 qk[GJ=㥪6Vu Uݨ~ ZQISP|S?f[wk`]2!`Cسex'7Smc_ _AmjJ6O7v<ę#zv"SFog;T9>~2G { g%2j@R=-eɕ&;<5O)Y@ %QѲZWJ w$Y=*׏8r0Fh}[V*=0&I76_ ]KES{9KKcv,˖&x dPؾJp%V{);z h yMYV (JϳK2! l}}A D)`う$V@k.r˰}?Y޸ kr`ZZ?je$% [f~[Z2c/b4FNhR=sp 13E[Q݅x@nl)4xV|9h/.7ٛXPeQo Ͻ$ڮ("hMEp_iVS1&Bq>hwI}!v<)Lô{j^0jvEb?6xf"l_b'r. Ϩh4IR\oə{Z3k:kN~[oѵxUeJ-g0df7'uR1 > +حJ@[Av^eSֳ>>qޔ!XK̆߁ eDr(F<3me }hFW[*l'9t:|.50(R8Zrŕ<äe9b_jS7=y%>x0 ۼ5u~HG' Ca{X&q:Ę6ԋiktTBۭ LhxQ*rIS)Q }Nh5#v8Ȧth͞@qɻ$AY|!tq+6?wӉ+1;AxJ9}\ n㠐`N]BvoiEk:>6xY"2oAحhrfc߉=yi/=܈p$X4s)S~e[3H6Jȵ2a߼nWD,c;1^Wm_lHg2Ǡ~Q7?uTHbSn67:WG)Vt:[W0s71v%} a LX1ՁyXyH+q] KJGhR ӭ@i4Fi [gAqNJfepb]Ib⇻}^о;#]ҏ<EA7V3!zj7j{OL; wU՛ #Tc.@nn?MMJ!'O]֟fqј s<hY91`ċXqXG0b0d,mziäP q*--=.`GF&df:Y'mc!r }6 f7/+ D:Yh8^+MU0Q2-Ci] :D-W+;:p2p)}m5}9u3T)ܮ\xjLo0+Le68MQ+ϷkbCتKŨKZ:{kXdAR<<=BsYtrKjV.27;*[5ݑ,`wP6p{fsz̸GxJ fq/&]6$j=lΥN c՟R%{7qDg,WJpV?ijzn+++M6_R@d:1za͆|=!ԯRE64 #FoM Ir2 ƞ$VīYǻmZvUNdw)0t5 Ɲ8HRgh/px"y%pcԣ,vb@ L: D&Rd<8 ;K'?ܭ̂Qhp "6mẻ.y?>(:+p}rY$m?7s+ n>rsK 7I.$.kJيnɸF>Y[`RuqԺ׫>B Jǯc.#ƾoSk) UKfme{q*Kq|$6 zm,#)&4?LW"awI~j%;eL]s~sz|FT$Iz\]'b /HdkgOdK K}70!"c&HatQ"0 OD m[3'c9)}|Z'?AA% 뼿pg4 gZV%DQH ~ WF6G9~m -$i_&Yғ6ٍb3aV)PFYjeySȞ9{:O%>1Q9TԿjnwa.d $^!hq͹'n \ ~⾷" \=a>gnɏ>M$z?{_*U%:Gb2b Hǒ6"b!E<]*}a71$,{6/n+E'l-f2<΄*X<ЋFcRi'Čq1s(\$0I 5EQ%Èd5(lYip!譫NjtaKD12FPŝ|Qh{kK?iW4)?AfuO1&FvkxneuA8 =K^B\YNrh"crinZ4x0y Ch lqio5H wQIo4G}ZI5[gYZPK!8,,x86/classmate-laptop.ko.xznu[7zXZִF!t/]?Eh=ڜ.+ζ h0R_疺dOG0:å{XK*ocqTtm"V57'yNId$u؊2|AݳDH: 'AnSZOF̠ -dX1N. ;B41KU8p`ZRG=OȌ{dr|^xR;"=#rv0*BՀI o~>,WiuXaQӄ"+\ACtDSyU6I6F йfJ6IqɉoڱyLYFԥXږPLOa<;^tH֪KMeiFP1 dH\ԩ^㱒K<@7 B(I}ي' 6w3<e{eoܟ9k&-~j%<!ʶ+¾I@K5$ǫrS Ԯ,P|W"]MmCqC P "-G#IFi!ܾCY  Q&{1Fr ,NRĤp_7^&hZ9g(TM, _ Q' 9fM}[ sc)wz/Hr4PNd}iqkr܈&1<V:[埭v9$ goV#7g{/qpiK~οȿx3to|I&וw0tGie +`XE`\( 5eJ˝AJЫ&2TI _"]2]*(u2G7slVOP f>@"v&%%ؽ NoRؓ-\T Qx՘CSd Vtۙ7qKB)FcKY9Mt=rѼΥy y=[YiaWYIr^H| FNؓL)m:5ϟKRËrHunv։\ބ0q0ɮ1 uGm9s $,ɆrP$B(9E z>ʸuÚGW)YGߋfnh%''?MWQ+do͋իTtNϐ"{ySIxXZvQɓzȄѼ 9=ڈKpYa@b9I- Ӆ+؊{`nӿŜ~(_zL4`1'ۊU$krs[Cc`ꍐ۷Qv2NpNS>Qb38g*rȨf&Cfü)GH LeC,m* (<>S ξ1趛k1VJ/3yD#@^m*W*%eG ͼP?!^Jbp'tLGU蔱g0ݭvX4F)rпup [=7N!g&ÓA#@2VY*e@^}u];uu4˄st0@DHm!cUq0MiFʗ%W\MhŠΣ<RlC3C{ٗ s>C832S#{G64lu]f8A>ǃ}Di,|!"0ėbH`ds } 䀲} =zNu[u.8[ƊXr+~e[ږ Π"#%5~+ ب"e/R:e0{󎞓_G ?X1:mVPXlL"x\m'5/ [ i)zg/ae5CSz,rH+!Xo5Xx^qoXu/#d9!ZsJYӺ  {đגA@^`Co %rYk|Pr=5I/!Cl@(O! ,ӂն1j: p_ 0%/(u]eߋuíE!l._Q!F7.­mMCF#U0c7z@ v~d~}폡(OY/|mwPSK1q-FwԼįVy,tj"ZyNI;׻+g8- 4. dOfǙO׉L+gBM->HcgKq=<Xj-M0?lf=b#:wQ0G]fE^yW|EUw.XEwtK1iEnρ[:p>Fr@;J `x(:GJ;'2I(/4'&C?YRB" X}7tOn*~6`< 6_ 9'p쑹StlqU@IHL,LNDSf8oFIIwG$bKY7t"w}9Ş@AbQߛ/ӟ׀){&`z_8.cEj)GfZ@j_BValXgߗ( F;A $ƂVrǥeNP >*nqUOK ߈Z:LR 6n׿Zpc _̼%APR1Ielࢀ=E~ќLH(?I*%m*J)_NE?M+ !gyc8acJsnZ<Wq'1r?_DmW2~2|ںKPk)5/>p&qsm$P|bHa1Bט񠮦x]!;ûT]NGnS2ynOW(a"^y)t,ǫFotK3l)g&mxgwASd ؉Uf;WipRҺVق!!}@ 'O)&ԥԽފ4'ymܬE]`_c whJ#*^Jvyi7'Ew\A؅WώŦ?ϔZ9 R9MoA=b (vvk?A%:j}c'iڇRZ+. NW*}.h;s)~$p-k.:1Jp|Nr8u<ތt_"//K΃tWey]m K,N,ϫsV[{{ks{#(}u~03+?Pf f9_L'&@ћ*ѥW'8 41at2bk@'LpGG)Zc=֚ĭha EX8#.S dFd$o`E|_22؁ʝ_c1cO8( L 1az,Z9-GY Vn[ jĕ4V1b.v,4FW7GK$_q;~85M8!#6+gW7\"IsE5rXS<|Y]]fVW !~L` E6Jյ./i1NWVyLP-ߧ %#OiwA\dudgUc&`o&DxCk8/U"3rT,690|É)Q?ɳ[ZKԗ x78m|SdA.> ~ A&Ǥʴ$Fa)wTc. @hSpcl+{ZI?^q`b*0j9[/xٞw5Zv>b`s#Ov^ғڰ÷y^jeX8 hL  ko *T ɲ2 ֱŠ0v9L+d}̚S{c@[UJ-Ur.jX.9n$Tclmj4vZiqee*mCo h3!m>]4x]4 xh7G r(ݯ(xݟTX\$օ_dYdgm@V9 {ʹYg.lKdr:U_PPw=W3* M* C㖬Ib([74Cf'j*q:G?6ezy=Q "|-=yc[a$3\f/ދnf8mLaxw,Fϥ 9n}cQP5u5d'qZ:3n\ס!/ K_ $~ oFF٘<ʺt=C)P}m/-&@GXMh嗶\tһ#oIw#zʱ2ga&V6" h9-(mLewHDؑ"I#Kbeq.iUc q ۅq-Cv"2.y|Ǧ &Kڍ:WgDZ27#tlYn*%Qз]rGytcxf$g)y@Is5äGؿV4+(;@R&DIhm=Y`'oq#ޅa&DRet|*Wd*+>P.dK411򊗕ώ0`-n…gKbMK@d"Ω@}ae='2ZmG󌼴 ߤ8V݋e@ _Oe Wl0`ZF!RdD1vX@ˀ ?gZyQ)+fq(M+׼{ ˼seޢݧm1$d(W3d -`.e$@|6qfgYZPK!p[-%%x86/dell-smbios.ko.xznu[7zXZִF!t/%o]?Eh=ڜ.+%t)w ̈́ Rʊc)4/(,ވ5u잯48_ibTk&_8 bv!d;qdi*y1”vYXK/ Z5R]L*#EsQNw;|̈}5a'7u;R&W çF6C8ps,b=@ySxue.A_\(P+3F>Ut}ʪ+&ZOɸ_`mvxmY/ JÔgUt,tM,\zшiKw&D#oGN[ +i9HvI1Xld/f7 Cdb(:ƹ*kvOO &3Ѻ_ЛؤF(>"\mVyEE- DG3%Lh+`o*ؗ-qX0 ( Vk==w˺d;;+B{* eH0G; >_C'|nBf'j*D4 !!8]sB  FS54^$ʕHzuwgZc ǿ6yYPAVmCpUCx*:߀QG}*ꪸ86UKKaa".oǠ!@Y@[X1 S~_F: Y ݂>DHQܚTBMcKgVQ'lUE ĥ et`.G>n_0MWSh `۰أԥ: <!pD*ǭE}[T JL,8ַ~tB8@x$bD{ Cfc =9CHJh)Y&`D[{o~@;50!sdcI6?4G'(mzV1Mi7:ӁnuسlPI^e>֪#6M؊r|jzRVJu9 1<,a_xft2)$oh_m3H !@~!ڞpnI&$&Lg7E11k  iB%ػm *0n:+Y9䦋݆RTiG.UwZJi&c7!Rs7&?@_RN$rBqq2Dr3h4rC̐7p4wJOZdžG`{X؄Hi|-;UlaVͫ 1:hS9ꀓȌz$WKo2/ldGxaIO0jyν5}w>hB5$4p4E+Ct͇#+4o ؂CaH<ȥareAqǙ3/t]ƖsuTY3+~*Q-ao?\aS'B$M톴xF!|gD`w?7 <YfG߹a`W]sR加5P,MqBAdq͐ _xnne]q+-IX/bgR䏱{4vbo&z1vڵk"鿉TGcnש!U.[X˹~{dѺŸ&Ǭ%O^*=~8JRo~Pm)}<mI). ~m h +a8<4N[w+v2:L釉%)=!q4JXE cpXAww xtHmd}}bWk 7A*7J'ZX哰/نii͢{G:%%)2䲖{4b2.Xm; IuN]N7N |łAMU:6D] K@h"E/Gv/p,E0^2:ƒO8[.3NFX:sܻ j .i`*'w[*3˲Mg}kUac gh,x h3jbeޙ.\S *,6H 0:ܪHdGPP,ɞ`*dc *5'U݋`(+43W)KG9o/RdyeRpPO4:KŲRHlnؤ(M1u 9mp-E2S'@sjcJqFd(^5xdk 7z 3l?s0`qӜ+& ՟\0Zڅ #/ O4j&$fԩiyUZ1HY \&p^CB >~=[pSs( au:?y}1Ne:aYV+=n~r@b)WܳQCjی sJ_}Ԡf~^3E5+ʥW_UofؤZ-ys fģ3UƤUJV*(تhX"fFwOrZ}|89롿/ i4 eo؝:S'gS"@1ÞC(i9,p GiPOO tUOҋ˷.W]Z,Ѕ,{n~ T%xލ-^Ckbjr,ڴnBj(G8d2I– e儞jXM8! x(G'أQ@H4:zwNY ]@6_U|oBBjUm&:  ij*g< kj#a4+8u |'#BBQ&`F2Ӎ̓Sp္jaJ*mJ&T%0Y pU*}0-]Ў"vPB,lj)krU 5Y?`mOb wH@Q`ҷH,{F((x`2;*tRXypmV),ohn@'>#hlCPT(Og-o6QlFIs0!6Vլ|xi3T^rk WCulpӌO@j./%ޒ6uXFTO/Emyuwʼna iR}.QmUϢ d*Xq*2/|PZۃK7iXg,Ѷ0VUB|! H !1x[tV !͵):-K.8:M̐-6/&^żD>7RFDKTfَ8>4l` Ͽa(l8kO(k!XG`ηZR3l@?s.SDJ ذZ]Uj M1*p4Zᄱ#x!)t:| ]иy\G5!NJMبs١;(/OyH`H"*RemuhUG4H^B9^ezLmXUW.|8>3?Ò%o.$GXۏush#ETRs=72:oEwUŨV*K۞lQB#qbL|$KBfu `˿YAͥ k*-WP]L$2?^-^%Yv3DpuOHu{>ʉ#~tT5rҒ(TE ݎv_{eb{]2p6V!@U#~dI .J<1/a[^TsՌFj,K?g;A3- ,nʴ`u9 eP٭iER֌eJ\t4(7]"yVUx44 BNGdnDsNuG#W#Z0^+=%h \ {'l ϸiǞ nI$*j"{/J$d?FT( EvM;LR1F4yIxlV``PgD~`chm$F3JpO8ynh~Ƃ+B>N ɒV[тKz`{f\+}_u_} {3=S$o/?ݺF; JƑsjj@L%˭@ M:r$ּzI_DjMVG~$nW`.f[ɼ~4@زͶ{kPFa+A^7[mז ( `>HyX#XDͿ 3cmY4+jP_yhʕC@fh0M"5>i &LD?a4vej +8ZgDC3Z i(ޟVéHi }|L#vBC/h>zx5'o9ͪfH*_viPP6xFNExyڜ?H+<M?*i# _2 /S .Čs1)~]f':*O_e-*ݰw\΍t͠շʏʱW52\.u2!45ӅN ,'G4l5)r[MÈ_ă21酋8x}lp= P9<E̴_[F,ʩ$ mqMCLbXN]bmІ 1cl JM*Um$=j3Ժ.Ǧ-ga:~\U5;dvaٌˀzmUYܰ*VѤh{zruΦ2dNu3&"id!>IJQ@*Ņ-z{aI.{1tLw+vmX a*)IAюOd|H@~ Cfi*!D8wNjR =[@M,/[*6nB>Nn$J~N`÷&|#aTW-cQh RyʬLoVhF2F%#=BQ{:X%wh0=g0O 5 58rɄzxj">D%8SGWQzjVUugSPi >DQV:E4ࠚ3~/G@˛l#zK㯒-;KOx>xי=zK5.Pu8aTpZpd!;J7㲋(piCʔ"+*Ei׋s hJ?BBbn9pV?ČfJ5q]qZ G'?ʧaa{$dIpaZV9컡莹#[9 +5 ǖxɛ9⭍5tl:NrYuY '<&<,WޏoSCPRłoAKPolt{: ^tFƚ=!24ݴdUHrN  =f\ *-gEf0wBUQMx݅& @-b $hu?~5"hKT2w+@G׫_xȒvT˦ DFlbtqFaQGR6VE(.>,N{q+ qa__:j.؛n*pmZB3O[,qXx]_ Xpxş}s#WUP-6a2R'ڦ Vk<-׷E!+Ƃ77%[-#b_/#^f蔘KWb. nÀе62%q K$y##uaurG`?p7ks_> M*+ y_|E" ]+A'Ln _v [|}=iZT.hc}+SZ'pz;tc]/fۃ;h:ا`BT\Ţ`r k0k)[56&~  mv!]Gty~v(w-KXx|WZkњ2lŽŤI. Z-RjKEgYZPK!{E$$x86/thinkpad_acpi.ko.xznu[7zXZִF!t/O]?Eh=ڜ.+Л#m&4I2 bܐ/-y*+"h TG*f%-[nҵWr~fT EMqI͔wv${oߩY/D4Ĝ?. Gev38NQT]/gp$`]SrrZ^LW}cxIvS%e6&ĝB/3?n`I iC]O5AR)ǥ `@g'P ϕ>5l Xˢ/8Q -G~X7h X\ EdZMJR :^nrTz\:_ӫI. h Pe2&HI$BScW 0hnO'QD)){ߧ4TWC]rǕ  _BlGP kae59Xz;VצH/AvҎID{SH P0x} }iq[Y6 kp;һk!W7vs̕i冋~i=g5jѿs9!\΀i&HYMc1v$ qI9D!WDk43&(p%4{kG4R9v&>g stZDb.6yS?@1(i UjkD%S[Z'SݶQ96wyq-_\A^/Ad;cI[8#}r.d3Gے曊Zz~I Dd.T"oH6m}8 Dh:VeJu8 |&AIEVRfW7)vlPl& Z7@L`k,9)6Z]f 0XzW: =@y3%۸9j"JEDD*٢g ȍ;y'h+þk 3q i/A6=#σ1޵1$7_x۾f2j&!'ÿv{`dB X1޴$. r]a??>5FKw ={|.SܶNVeq%\WWTՓ=ӑXWvl+XR@VP% $%5xɄT,"\4yt¾aqטO7_vJUNYzSbwrkԍt̋ꎧe<7sW:]YrTƧ`t fiopMTxXjw2nmn4Lh l-kR-Gtd'NT?O^VIp&Dy9&rZcZ˧ss+vM^+[Xe݈2VY;ᚒ_y\6]K{InqaCSc5|-Z?ji$/"hV7* f9f䚞G_a^<ڛgd+͏0~$ٗ" nB/^DZL`- !8nF|Jڋr_,`E|J3Dst yKi `q"t)ct,U-Mcs|ܻcB@I>ƽC Qg ixI!JbjߘNk62!{Րn y`ܥ TCEkmNy“jxO{Y▰AڦfkT6:e;:' v@Ӏ ֫ s3ęKƃnŜ8p% |M`D'RimSf$c`Ak2AS}ZI%c$U7%a0} *+9/ !GΉks ɞ;'x mߩl7B$5t]6YOR/t8{4D_ras{h1 #,f/7͔Ӧ[!H`cZ!l' lue6"51@'i.Wy6hY<1QSԯ0R __sIcb)!~L=쉛YK&u7W؅-UC7.k Px^˝mI P {p"M$aͪ^] ޓ-m\V ̄E"J%ײ${0cyU -SJʛNݡYwNqЃd{(Wګ0k^}ē6ZZճDhbΉ)I˱j5(p{xWQA^*]>8Z_ÈW#V*;2_'te+oT:@?(Ȇ0:(dV\X D(Mi{G v_nds+ . up{ct^oO^kʨUuKv(#xz[=-\񯨒jKptӪJ-Hݪ9 ˖C^p7 \ƎHN097`ŗIc$?+LGNG7yHLf!lo{€m &O,!٠HIWV Y@+ķ<}A5h Ҫ[[bbubQ*N̶7UY# ע !RkmoPv: ]eVH]ݍ^|?ͫU(4SZŸv 6Nܲ-=hÙA:p߈{ K{wk6%wǮ#:8 /GA;Iu.ִQ_Rl޿6[sL{; oC ߥ,!9[=ߋ V,nc;NUԹiuO9 z_ ,UЇEW>\_ܫ-60"_R970aH -i e"3$MoGʔf[(!jeōUR؄{A'y;ӧ6})Q5JLY c~c/341ORJN׀9PK6p JQԘ9yp_.←һCH!/U nCYʴ!$<=>o v9#AtJFŜh 8<QrLP`'V\LaZ3?ҔM  z4;QтذMtKδaǨ{ux(*(X 1ďڛwɿ&hyIS[ )[]QSг[!~rW6D8ZT4ӪKqL5^Ǔ܍퉚EH-KD`f sS^R6aJH Dq7%Mn/ʫگ ͛QPS lɉWnayi@OTD ]5ƓAOf՞ rFSm פn1 +Wl {P/W4mG?~/n"Y76;h8A_ A \cH7ֽ.0vHKJa)Vgr˘\V?23M6ߢ#Hԗ" Jd,MU<ݘh$sZ%{4tFp4 .c2zh4u"2Jdρ xȷ![PS1@%=~!U4̥F^."E!m(j-纥Ĝ_tm>ۗxBS"!ddxĽPicd e ȖŏD!k遞fBtww7gֱ?P EU͟pPL *,|x> D]o版 |u'(f2@E5|r`IX'3:?d i?uL!\2">u0diU1̱V9 A978`EM+3zy+&0"8c&^w<ʤ^I2>T7)Tg$} &vnEb6Ȥt(ihM/|Gªb%޺TD.xEX YsV\W_|kK'}OB"Բt<hujJ Tm}[R uy$AqC7h+0t)5a׈vo9J_rvu"Yft-K%!оz+Wǯ_ԋiA)̨1YBx@67HgʽVY>bLځ3T_Q=wvl|M`R}GP׹tM?qƏ亣+_za>RQ083h[1Fn@>G 9&ϳ!XI`igz5U ~/ şHJـ%Hd :j0Ry=| kq I'HwҎ?9SA-s֊ij!s6˓ީXzr8/dj{:c֮7 g67G_4j`Rw`G .fRpsQqpMpkSl˹3%N[6?\}d\14(*ܮ. r>22M2uic<.0aq )f .Hpg2;ukiJa,O7=NH\Fv#'.VUF!m5?I46a!_{%§p6SʸCog{ q?%ԃ)eH`[]G㽽U)!!X_ Ocʣ:.G?"#4:@X!XN8,1PY0Qɉa4 hZr7oZ0-j1֪E:e#_ImEbXFo}-֤ZF h!4aYўg9;uOkiESٕ֔Lġv9|qd惢 )k]`X:ؙѩ-־f# RZL`Ww5,|p~z{32+YQ׊]7Vvv/( hq8'7$T{'ylRe6(zrcSf;M#hEYTC7#Fr]yH:Bd%=hv$@WWTYa_!e6yR=νITw%Ge4 C:0PeZjN-ŜVjf%4*B@h۞% F&Zb |g |J̈́;Ć5=]&$eQXS_Ec>Ikomd- :B`yQT˜qu9U(EAz1CMiq/ es5ܣ:.wUV|@8[p5OAu߼rU :L5r;zA;7nCXv8(0?j6!.(*[ "q0yX{n|W'X%IH1UPj%Xj){\b2flO#PE|n@HƓژ2|_\j1%F`*mC*_tg rɇJllRO/V|%zs0Z $7*$7 z0 jRBj\{i ؙ9*I!x2Í~YA;]n]d3G<YKF0 @qpHy@1Elf^zMGJP5Va͢T'V#i5&Bf8a.╫|7.V|cp\6܆d7T{ܐEpi')V|/穙9,3F#{309-')&id`@!Y&S}mvj u+E0+`G@HĢM-^pIҊm߯%zZQl,BcL2iƍ9RZx@ 9f> K`{wrזp ݺ߳}i8^mB.7BUV jdWub*B U|n5⮤'4UOܓi+qipbF5 Ro(EۊQ.[}QcO27.73Jف)؛ m7{t_^af[5v(tsF9:'[B=yTfӠt F o~,]',ri05N;frSAG]q&I%>pW ywרxO/ȣ(SA%BZŜpt??y0"zr&pp97;%lМ(6 GkH$_2,R )oNJRk+_|1zS,?w1K?&j[ɻN&{_Gxg:@nif"|L\rX)5yuA3!G]ר-aջe0GERL.e xδ{<5Dt\]*p  _ UoW68PN{M &XK\xҊ^-LBb19m &/: jtWɍqJ͍鼣h,yPc^c%v${3-޳²`{p)=ԝFY*2߂|Lb<'iK[3Oئp 1l+܇OP(I$)Mp8Tk7q8,JVgyd g?koOpZD\?9Y9a -_D?QvɳZ`~.0Ѐ1,dGdqga^r(}Dz:t.U_z+QO,ЌOSbwaoj蹽KTΚ5y4܎ܔ.ߐ~ : üN[&/Xdpثa,x"}m7Bgxfe*N?6&z|EB{,Yi:)dT6{E,0je62 "| B)y7wl&zo36'&۩4SE[>&_֖ov=`+` b<;} (bǖtC13δ6rDgة5;(ZQ ͵6;wFJQ \$,gDIRIﭾƩ3t97F/8*@k꾻x̣HfS#'Mt!*%@D#[뼥񐎪kXUnLkJBnÌ\,ޜC[4П j;k߻Qtxv,qƪ'%TM_Y"l{Ib5k#QM +p5rMꏚfp&Dba[y3>x+*?ſYSDS2}$\OFe%nVIg@<9T,QiHR/|,Gc];(Ϳ( lxμߩݍ!MZ|=n-=[ f}{'r6mS8C(&^Y,njqb;741+1qq`b%Z[?)N/&w^wظcQjV0twE=*4Uh`=,kg/.d6,D@KgMAVwkhޓS;8I6 N -xPu>9BV,s`áBsD4Ѱ j[2l,0H2|Q螦NoJ\0pShvƳLVxc?insjVAlm4Hht9akTt50WOhN푢G9a`4@.|Z[k.l# 0yBq2*GrWgQq'ꏸ_ЎԿ:ՆoW<-df=tesyؖT@}Gn{b})|ϵKYT_ aY`|pUVkpgE>Yz1оvqLtxI9?}mLD,q C"(]$oL˗MG yA4M݌4yZmHo> `O5M:7J#mMd5Wsx ]5wߎwKm 0VuXP/ JWo!#NVXzjY@a7lڙ8 'j`BI = ФkeD,K乙ǦDT%>U/])mڠ a:7dYmFm" u5'ckHJayaK:]Ѧ!VHe*8_9F35EFr{0QX rzdž)0lMݣѭpIo|&F"wKI HNvBW$72<}qj!슶o mTH+NOjC;@07,L}0}CQAA= Z>8͐,%d *C5Vm0Pk9(}F'zM%g fle0/-\Fǚ[TTִB-ur1]`aטӅuQAfRNpzqxJ~[aՃЂa7%Q۝J ږUV{O-I2!$](85p0`M5T ms[2vapKlC43bCzF#_xHlJ/$Dޓm a?Mq+}aš( oġSXgZgB>`iVŅXOSD(}2ჷ^ @ӲQPyׄU1!т7%eW>[u#x>Ž޹QT2r}m{aYW@tN;U Kwԛ[$^G9WR,zE9.0[4Z;דT~h'07̚@ɒa7ɒ!u-:6c@lH%"x%iN7@.%LNg%u0S1ىoV1%g;sT| 5>t0ly w;/DZ@iO_E'$Gz `%6ýh\6H~Ik9t CEJS{ Wda/[?~ɡIq4īI1LO%h /@kl4ff "/nT<3F:[ҬdPwS5. b9` ^JΘk)cJ WhGZVo{x? 喆g+l{G~0$FR$I5㔱J3ο+(?#zPbzP̈R+c"X)33^xHQ Sw1R/:6X֗Mvʓ_FEO-eHCb]qGv6@W$ s՜Hˑ?&zzG[J$3MϤ?'vk*ͶCt~i!Q5rR5$2Wc76'6o{z\8IeX~IL<;p0ȋEw` U`؏bT&N +OO;=z6E)eO@M6I;ZKڦ.6x ^V"=Wr&@ҘZۅ+ 8I)2;ˤQfF NNe*-΋M7 G,;71s}*ݣ,ځ7FNjlʋ0بUk~g{9TǩX<g-?~%x1Nbh4jx5PӢB ZE0Yn>f+󕯭iZJLH,{^R^VyKgOXC!zdw&wGlOnXy?k7PՈH'gEI\6n\XX#Ԝ'G^odiG,̓V] b6至< VL7u*L,m[J@8$[h=OGc,oz7ZSlPӁyMgIH]5rqHV_en˄6ʴdXd}iqysMc,@\0CXFbK[gYJ@ i :h !(@~Ҥ8Hۃ܋܈->$]veN-|;‡F0 :5Y74J>+w&SLNJ+L,:4=*+`ap 5.<1ӉV: O q(;(kPQB{УmZ_$Qҭ =Th{^B;(qYۮh\U褅l!Zi~B"co3y*@g̎/4-s1Nd"4 |}ob ?YQx om!ױՋ6SVt%hWV-PQYf:] )P7~l+D$frr %RY4*H/[p#cPHt"~ X tf'V< 9$^C"pIRlU,d x cD0A*.{Yμɸ2.c@ž{`:jl@ :"B^wV&PXXɇWs 5!{?WE>$4y.ʧS|9b,+z5]K{w@%s_<\"1mXf)lY~B(u,:Msi1Z(1`vmNJ@[4q&𣺥wG!*9߿GžßEͳ]ʋn,"{qXwC<y8+0K=(Np*(*ǡkǩLSH'v2PWW?b4(^f$s`8tꦕ浣ɖ7c-Ґzm/e,WU{I޾cyZ2uHGp]68@Zwg_8&JZ&Ç01! Qwm #` Ccp oWZMl+\S#`Ng"靤jă6üe} $ҙpłҽV )&hS .$dzgl0 /2ߧ ]DJkMJO?+޳a6yX9(Xj~pd0H#)}t/IFtn8/nN֞~;뢖}sfX~Si*:ʚYLXCI5]n? ⢢^nYj\=t@U;؋sKYi#M.{A6VVFчG(-`ᇌ$jW^0_r#h{ Rtg`wa1KnT\$6,Yd/3{@*J|yU:ynC:yNn7ى;QnVki h@3}df *6uSX {SqdCiȄ15Y5)B{g-9y q|nԾ,w!zkd?O?Ur9),WgײtPgZ,f^X|xZ=)-eU:dGl&(?7"~+ M5X&NOꉬ3w$C4|Ҹ0U,*z[l0* ?]J~,QM|G+؈']C\5 "s,SOXYKZa $BP]5cCr npZ{vޏ] ;>&d>v%U9)4b7_م,mhCo}ot!fR|$35q9sj%_u* >pvB{hr^)_/³Xa,<000rLElLBV0B0e0pHp9tUL,W.K`H#mAܞЈxqxc^'C%VB3jIOG\I#s%Tg^N,^:pN w2W8##!(>;>5#׉˜Xm¨{Ȕm0ȪUwbL`\,i3$^/[`ZԪb1ԛ:*ъ}m@ yp" jrKϰ8N%m,/|+b=zLB+%A0t0֑poQw(V}SKF<58읂)I*ʌ|8 AKWbR`8B-59mdҡȦ>n욑mT T{aǙ.#f*dd>lf9X|b+Eʙ6@q-4nh&JCML)HZ=)[0Qzfl_, Dp)= i8M.K-}sjy0JwڇYbTB/j8w%%:70L,J+|=_2Xea(سuwXp ˘Z:lK.r WR@Ylv虮[:g4]b9Y5+M3:%eCO*ib8<| *T ._ߘPjGXn(2~$6g:3֊A{ `cB~> $[HR}tO ]2U:ts%eHΙ榅?m3FuM@X‘j2n="O.&iF0R7 wkO0[eI }fcVចQQ w }ˊ7@.10v7O"{?#+ \OBKHnt#ubjG@|'6,ކ޳yb$3㧇0,hu1HDVa*˳FkyScW)1<ἳTz2k7{G\ԡK'qvѳRDuKtSGՒ"ñ٩iuf[\c3ŭqphTSЂ3y lV2 x3V"Z?5]9?Wk][V/#M n,0]܈I;K$~bЭEkƕ}GmLp |3RA)N&ӰaǗwdv*|q 5K&1"ýmU1 cx]7=={K0`_i{7 uF,(_A7މ5Uq|JB̟KD0Bt"S^m埄6`TD֢gA"-/OXm%n{~UI@!Nʳdȏ)`~$/G=p4ðRpY RiḏC3]1~ A:=b&QDExp!E s!ܷSuCEC2-IWW*[3 ,%-bV-KaÏrr t0O^ZP)+\ܩs`ޠ-ێJRޕcc\9xZ? D%֙#ݍnpCKi!RyLB}r Ay,uE`[c?-bNb8X!(GƲcC̥DM+,GB7(=1)IEVA0:MghV-GDu6}Yd ޼rZ0ݔuڪ#. ~W) r'eze}ˈ02]ƷJFy+ MϢ2 zXI|`bOt Z8})!˂br.xFYL8? ?&OIʃSt!Zϼ} ޅdϯ#Ca"3:`CڸI>ܠT0tu\Df) ,Lal#e1rb.v-tPH+ot݁f$ʿ310d >"X Ӡie.(Dk"kɿ#O7#} YCeg"Njq$BM- zu" -hZ@Ÿ-'`YŮW iM^f> 8>MP,.+G7l4 [;1,h4GNOpsgsF?ő7N(LEMRoɤG/SHG92Sϱ 8T,JwY^dH-挈(: p\㘁Lh˘ѾzFQm"ѡ3x}°B:W=D*3*E(lk-W#`+Κ`JHx}MG3:,U?!wpIw*r仲.܁ZOʍnOdģ}=[>+rWGRU/K)D*U$SKMraׇecL%Eu>CcCN* f=B>BóU ==M9h OP,(|MPeH(WwbVQ3@ :qŅ5hS:w@v4iMMϾgT}$8/kB!RI/0ӅѓcwnŖ  p9pLk[ O|-,Ar([u&mjI.kpSUirK6+F GSjGq ùwtdD6Z_E%bx?8Ժ4 u ;ArJSj>͓,9wxG|vWeoBe4>!׀@ICnuaw5 kMSXkK6y? fd2Q n Xi9,\UOo>=cɐf{{s Aj$<1 L 鰬Nt0;q1׬wMuUfZ. DsҒ#^%KCEV7e]nԌa=Jp75a9B2;_|9c!E$ 4Ksa,oJ'ox:(F%#JG\ۉbJRw+~N{,5j~23aV8QyQv\p/[-(3yȖ-(ZlF\ī+7!-O);hy 2G|kG$$ qc%aH$;]lG猂 %as>o!Ea&/ʱRmkOqNo=il@6<{O9[Z;r:r4<`/ q;1$7Noc=?#1 f*A|ye֙HE{30tZq~DLKӈԊh\u2պW.<)/0x Tp׿S %tN1Cvn*22c]yBB-9b-fV1S{L{C`)o8kc^WP-Awᦱt8P_1kPǕXQ,^2 `wKCWy~V(礷Uv,=qwwj@ҕ8_ ;Yx >nb10y22p?| ;,؝xl&q h4? H%6u(3ĶB›rX]:PUqr{-G?#6%3XM.zxh`>N['*RrmC#]zس,WHW%.p)>zJcE&n6z,\4vIRK'{]TnO!TB}(גNhAfz d\Cee=EG'Wӥ`~1?G;JiFZzuuޔ?D[ϠA$mPq-j|Bm7Z;JTQRwg u{BB:HΈJ&u~׋w `Df[/8a]k g(37xQ=\'bπRyo7]jrSc@xrA5x4}j /({&닎^f&~ū}G 8u#N"UR4ܐ$dSxeǣ|+4k_8Uq@6#Ms(BxOd,mPL`sl@GZ6g2"c"I68o29J&(70h#[; VRyyG"nV>+m^fzSh`Kk/o] PWWW7s'`#6\t.qtFgaǬ,p jGX~Z\#,$K!Eݳffڍ+lkbvzADŪ:+|.Cjs8fzFE"IeL07t z ,?i#zgcX7Mh\O8:wz "nwe:1(u/wS~i.CLt^>>Ĕ+T ZK:Vu4Z-*&Mj3I)9=`NJTJPJQ%K #8#äY7 jxra0>2/oƞ uDB$֨Ej}Y+lDVw\̧W wj m7<]KzalԣαiwhpK&.l/{'cYZbͳn"0@Dw1۝ HB%/骶i*4۴$Q2`ez=W˻M-Eqrxm3r FDY 0.%-!k}ҚOG>x/n ۦGc>)m|bvؕ6x@؈"o Q%-ɰ|h.;fGYo̮4 <ۣd$Y*֭\,S{ <͢;DsYBhrSNRNsjW$ѝ8aCGE*,u>5VBҌ$8 auPè3, Dž',Jd b0fwöh9#lQraWT-˖DVzs~鏙>͒ `SA%#үߚy?z8Ħ>yi~-Iu}nij |M,u'J3*ŀz6aiQ Ŏ!_<} =-++Ixtil<&ΑOi"+/N?ósx7},ؘ_R[)gC҇cq套+YP?G ne1@6R,g) d3]`w۹Xғ01 fs6N4>VlݷcqO>.e?{P7=iy=eS d΀<.Gt#Y(d6N**4w`|r/|ԾcPMa j{-\ž OcaCo# CD1x2bxoV&* zyH1 d!JoFKOۀ˒QdhB/ PLnwi7+R8`%%7x/KDfMl{`"?uDzOqg(!c|p%v%e7NBOb9qY+-P1N%G/זEd_߷>Y㩡%L^XFLfF;w(S C/"uַRIl) 09^a瓥fzJЄe|<8A/:dVV\ǀbE_ZfvVGjh۪ہ^Rߔ?Mݙoe%L[{+Cw|=~fN^DcYJGE)hȐ  'Zko c '?0x~VWO9sx ή^?c*2ic( eϤO zVQUN`쳹aqHS9@k-HRgYa|z0X'8w [dxLV鮷pHjFJ#!'dv "-> L6kr׊e(bK5T]I)S͗k!d`eyq)Ng~mQH$FALܞUg5Lm)^wP͹bV:S?@Xub1"A9ӣGq&\åWbL@'w[ ~PMqߓ4}b- hFǢ/SK[Rk2(a`ʚCa1XDԕAiUI8|w|2 1&}9Cg5J۵K?>0ڑv`˄0(Cⳃ3%hayuDLkK]R "q&Eh R$ǹ|^p<[ԞJ|=T0scP왉$i ߤyR޵`,Nk;l 4k$لcEOGCzfy\#]#$~<2b~8v ;|J5jrP>M e䎹qpBsUs ؙ8CWen "-4N5\[\֠fcxp'rur^[ \84JZ6bnslϚZc糎9/k""BH̹^ ġbMfɼ`:y#HȂYeN4ws& lIנ6"]VnU1[RPi"yScߒ^oai\:9{iSձ4@aDmE?EYY{L?<EAUA7%i]hfV `~뱞$3'ɉ,VK.Rc2o CY WmGfZv<.9jL/JR]/6VCxI S@vOnwM=XNKk@F) _xy$OUώ+$D#J^K݂hZ7Fhا3|w`,?59&Ui^7j@ǿ.LA]rU XX%Mɜ^M{̽6 ]w^gd5[?Ű5P EwUa ` .wu3R^>5Hҟ3P- /ށX_* M)9O`4D\mR)_j-<~sȣ1syxsB437IY+F0T5xЕ}qhS+iID&^XD0gYZB`úgU!àqAw| xNW wD{d&jEcN f:jYz[|g@ܛ;%߂Ǐ웁#g`AKP^hi\pn/cy P{m&AQ$@`4]Is־P|@SF+gQ~RZV!.:巵@VFM/XҎOۄΧwMIk"֑H!8Fuq.aPǶaP@_r޻- U~1д^hA,/~Ա[6=aۦ5emI눸vyZhX^xr2Kߘկ$DUK&zn԰y]5߬4W JZx?WDZR7g[LCFhטN18X@DFL_kI̿E1`jTm`gxe e|vO^_q8psr9b ,G]sˣXNQZZ)3#լ/HّОr^;lqO1gݫy)(X<vdRJTpL3D9)b|C~:j o#( "ikʖ[my4A+Ұl`@tuoOGPs!x~+NF@uF3{[O cgGA6M:WdϘZ3GhPwA(D suţ0`"MٮNS)7֕Wt9 `(gjNG ZpBsχxo3 sfnْ|tVP&=̘˦JB{D_HݿFy"8tj֟U{IT8Sq 9'3@'s|&.&MVILILCNн\@nMvx_ 2_#"D\pd} fŰ4p4HSE"ke5{sg^,y0`c&{pWs`Z󴝪Ck<@6誥siR'oP239e:ڸzd%W)6K~ӉG@q2T4s1P=)A6p O@6@3}0oBUJj c6EܲPsqSgK$ l?>^،u-lZ$I$Tb?<ߡ|K4?p .dCn^cۅ6a'.'S:ǶVXަ,Ts0Y@wJ[-]jsKI7fr2Z=Oݙg޸N)YsϪ26WzdA|3pf[cMCX?W9(r/БyAT҅B况bR&0SdF!eiMQ'f]nĚfƷ#~4zGQ^ҹkqI0GFMv}9VyȶË9TRݻ=c]&l=إiiLppk}*+lK0ʹ|TbACL\BX3?),dEn0;Skt@AT~#Jҙ5Gqk×H5JIuDk5܍+ %mSAh-ی0/:pm{#b/Gcz ^Mm{Ks55qdLFz.*( ޶^r;s)ox,j.t0j}~V^_(O11)qCZ NpȨԕtCI{Q ,oqtXS)DXG ɍ:4Ua:|h`/mGTnHg6u'%0\}ͥ^xk}^݃C3cB lYPS&?u74I65bdh`η^ fa;VR1f!pܦEp8X^`2М{_9{#F/Au5ks ]5Ca\uϢ:r-j5 Q> x:hb3gU`=alޖd6vp;r޽ >}Ol"1àt,7A6ήTOsM얹] X&i9X`I!c[f\oSΐB{ZA\0r8 Eh2ObRRu Шua3bt/ ok[}~WU,s(ݴ_4^|M/d]֜=us9/+nqwf\u6KhmEK r 5{Ij1TM|aHmG8v՘J9lx!%/Ybl짋PE+5Jћf]/OzVko̞S9[9["h̢wsFgCj 98=4JAm7]ywJi'Yka-aまFSn^D5A&M^y/ ^ZEjªHL@ 9'87ANY%5F1'# 4:P3 f1+hcS͕R)eUejs?F|>;x'C ٿ`Ƃд ܂B$.$)گdrGh@ie0̊^La۠@C-K2Ϟޙ-'#ŵPnw;|_ӛRꅴbCGh ^SI툘K-]]vhj5N0y޲Eܬ|Á^}w#wwV s7M*kb=l mj&%Yޱy+fT8~Qj]\H08WLi>~Ō;: dp 9B]vx tfoұ`@Qpp'˽]k%D+mD澗l롡&OW0Mhiz=JΉ2?*YFK:l"*YJ"ztRS,[ov`HrnGn U^7Qd!k}r-M% b^-&~h<4v=42Φ%NyN Vui9G?|Zd۷rNMiGeQI~--M9",̆7%vpxC}-',~뱩B$7\N/Bѵf@ >Z)w:/-i^]>%/D{ [oKe$O<.AeH#n#}JG4GH3hb,}/6͏YuzbJnL\ɀ;_4[>}Z{pq7|+2Pڅ2Gdw:6@bugYeMR9^sQuM>$mfnP碪8z;*@:xfWv,k݂„c+`vR-Qj2Z ="76?l:OAYtjJeyuq*eVE7eu'JE|*:QiU~<8Ǭ#b/T_-#MږŅ`OpkG.޵}a"þ)uDe~tʻO#[u[Z%eӸlL[ e+̰$n@nQF2h'M3?=1I5Z޳ER7ʋ8"+ ΐu!wAhù3w:Ox";E x(āļY AB.2pJd_ݙ+QV0,.GBbǺ* J-DVG%PzoW*LMQukt8@^a/"@*&tlf`5xjkEX^.>lD6$Ou: hef.KN\Y*gBd N@X"w=%3|v^w 6+£#pе, =6B@RѴVYކ.0Әϧ̍jZD]uK߅E׺ʟgMߞUJ66-K>⼩IAtS\!߲oHҝ$S"@_LFvYBĩSj<:p( ]OE WGsBIaoHwvT=ZI|xU Xi(s"*U2c0=mĐU[]qH|*QatTMA:4>7zb <lX13hr-81u˱Lny̵\#-M9Qn垓MXBq;"qlnŠkˊFPY8"s8_B{H|"dh 4ibDYvFԃno^t6\E,ÐjzаBNgw pM\U7g']ǫ[:㋀o*Kݛl](yӺ{`SJKsy /TG-APBKáS *+A] ,dj?^bƀՁODL{OJXŁ ՆӤ|oou8}'7}^G -ۢgchOK6D ?Xm8b`"]ʑ`w۸T+!7G5I1 J<AUү䶌l w4"^]B\%js!d]< Hy;]j _{C Oe|:_*]L&>X+>Dm<,@sB)>#~zO 8`_T$? N)K=ǕV Ioٴx!>-! zV>7p$vN%aU+CKEYB=b2G*洍/= ubצ ϊ4Y]aC~8{߷bQKg}?{,O 2mLPOyYO:PZ3Eـ#K{:1vKŁ/|=\Ah)%^SoI9T$hnV`[i$ߚW\]|=Γ+rZ2)UƹzӺwGg7cEEd"` 4Ż6C֝'rk:ӫ%kyHjtF#K&9e煪5:;Kd˛R4Jvikwkckӕob:y%jx[ }$xVS/7?iPڗG~<+ŝG`1I՛=!q n@X.9[¶I{Cz_Jd̗ؕqF׌9_ hC-H} =-s)K~>5*e )5**,~n,ҷ: 40KY:F(g%X@ '/vH5նOFd|c_D Lv8l;G.s:Rx+gRSC1| [,8A1X&goİpI!E\?55ZiZְhcE%f,vt] fW-QOBۛFKkzu1t6"MY&|ohn!{ !]LӸY.V/C?+LZiQ#<#>_*XWmvy$'q?3CtH yn%յOnp΁WK/dyLp\bIc* J@LC}VqxۑEBF},Hrel Da%Z#R%d|ϟ2ذ I"tve[Y=6f JcmY{&{7) RsL]$zxpcmIix|Fq\M߶LT2<JrZ3,RjMȵd4uߔNi8.bu{rt Q㼝WQ;C hgDH̪J= > A7NUK8zh PLptLrwf4){R@~2s!0W~@cv&5 =pX˼oqo#!ьƒ!x@a*ۿlԺkRiwKU_a W:)Vh-}׶pX ~+k9:~5#V$z@3Gte7vjkBӷSݐ9A# E(E(lBQc`j.ɩ_8E3zł٢$o_+2kNu!»:e4N$pW[TBe ds*0$)Lg 1k+UϳфBD(!yA%dfp1ɫf?ʂy#p*Svvz͏nb<VJ>M OM413ԭalh ?:w EzBz!_">c7^q߰mًՌkUr $B%}E;zQy 4hz"AE@:i͎vcRR͓6,0]33$1 w#6 =Դ4@9<0yK\ZC@‡ݝ/ދd;l̙Вd54)=A'@J )کXAW7IuD`lV _l&* b/h7zQolIG~a\e 쾕pDa~<ڨFȣVvu^xl!ZS J̳5VEO"޺ k` D4?Ɓ=yEɆyM;Y<ヮQ[)}X󐾚݆w$.T?Trw<":ϭg5!?7yuarc*`蹤ն)=ۘ IJi[ ?XЉxR} ,w8SkîXS>oe~]ॻ#|5+#+.g%הȥs7 i?'|^W/un$/,8Ιs񅨾,څFC={8hD&GKW3j.N}g_d9 \J"okǐL;Jx _M4EҺA3ƻTq>|HDfCWNm߼]WD >~W&tȝ%Y^gqyÜ mQ$~|.r-=%pJw%9fBvsg| is) Gç]1aG+YRVM5\/j{aPuh*IZY=~,˘oOW0 d1z1.{*J\莄bZ붫!N 5Bk\_觽6h`K>QY $SC]E2V6 M[(S0fB.l |g[~dz57|j඿z*^TP8dDGXJ%b"ʁ/8 {00_B%UI(W~M d$|3T#.I l,Zh52O}>Bca;'+jKjk~";Fϑkܥ ^V(#W9cV(|tӄbM\%}*\h|!+ v\`:3BC6e+lඤ. F |c4rF]U5eJRtO`5w&Đ9|g_ %H TcA0/ ]4 D#٦h+#*ywDZ3#Q ?lɧXfrʝ~0HI`j*Jd ~ѧrmݎ8 J0Zh لd'_\iKs_ Px~^*< Mv @. , 63%Wߟ@ӯSh@_nkW|MȔKtAEa순MSJYH[eHtfDd[rTyˌK_[2]P潏jXMIsn" 5EjeL]yxc1(i .;iK&@d!co4mKE!Eb֎ӝRd 㑖i|,"&4", @SS j i.h (G]wdϏ"S,[,nNW&KS"jūgUg]؞CWma^ADiWLqmq w]yȼ*8iaH(s `R ő85l|/Ӆ{(CRj,(╘?22!oҺhYˆJH$_~D*P#M v$80% L;Va0n48*@a?)JK::ϟ^"Zoѫjdo@u B7@6-F5mpN)_}USyŒ4 puх-{d$K]*/"{iK禇ı\\(o<OtzVr+_[5|æbKD[l҄.? (ML/y@enԬ{ↂu5- ٞ~ZeiXz/]D-B"s !T5FsÐ:%"Sru/מ&'R pq6Q ?xY H{z Xx 18pVۄ/Y^vC|WF1Ǐ+6bxX0kΨc-v^c`oO|XtA8s]%_U>?ݠ*,FJCl#LX. mXfB q5ɺ:Wh> #Qm c+NOp17z[YQ>q; $h/}FDVF&}l'@!N={3P ޝF.ԊQ@7.j#ef1;O g a"ή(56o̭XG%#.6[$c$u?S.b 鋀%A7QK܀+ ] qpF"$͹Dz"7BlܕN!-kJMʺmfqQ7 ER\+$Yӿቛov}NQq_(r$uFKPW(:&3wΔ ;&w}6]1ZRзmg(2 Vێ ?0_n}ڐ`И1)Uh7CuOoB`c53D*IWȺ2/YɄ/#Ѱ EnmlBSd$1r\cqD͊?փf*DZL,3;5C%YWL"ŝ۹𻮛^P{6d%6I9 K$3z\.H:Op#?Ul~6VWe;!'}E٬S YOy*Z q4v0e.ɰ:@"! `xSYn{~qnih8oߘ 39_SnL_+ @ڵ&2NL3W f D ZuSt% h4$>"̥isUC'td.!,J{U-:lq ޴X6aI [פ~AEY=']0dIES[z|Wr,bP~Iୈu0cvptxT_|G xƽhR, HǶnMs@Ǐ=0 2c'+|ZÐhyҢ*cntJuY%qR^z|n&<'|/ac봨*R:*Yea)5]>Ȁtn RvFd;ٙQ-I_:7F3x!eR_n ø>;"[(rRAMo;[s3;vra%C[% `O@WZn  NҜkF~"k~߄V z҅GT}k~>7%ebP*Ê\wʵq6' n*%_v?$OaG6`{}}G1irGkvX6eZթ]3°бA8S§Tݽ6=Io uCd-*y P}TIgAJ~;uʿFM6E]iXIJ>s22N1T{=zE1 ÛQC!1L!ʜ{|,;<ז5LѿU坈B:SdK2k}ʫ̢*֭t+$+Dp \t-vE!$w+ )UN*4b/QM[_G#mu fDaӆ&c#SYu\S ^74@c26H U1 oN&&E6ҴUR5gpX ]*I LyRhanz)CV9"X!>ZC@$dzzLCΊd.dN ι-zb3vKĥ+>\a+ !7iF;ڨ k܉dM s7r%}GS;3e&QsopV}#ѯ[wu ˘Ԑ:> }aZexLEDSTPŦƥo(e;~w-yy3e%>z/RYekFa8*sfQHցf@%VD?>2QROײ\ZiVGow/S-2IoA}f$G$EP- TyCrd?=/GF`ܞ<^K rې{.X|0J?C`mCbuEYx1na-~SoA_*ob+,=;!6Cet}&Fy/A11>$9Xuo]]\>j]p҂hAUTM˔z'k t:rFzdϻH&F[Wԟ sJS~r6:/ sg]ZwE0mFwHcy#kt?_ؚk-Trm/TLրH˗ʱJ(jT{,tG% d®5X($y|).NR.dn5u[5/V}$։wKe)"⒔F5<&.tq[fsG4"M&*p-團/h9 4!]V)Sz]JgȚpo aW+H4MbxXqA[ZNEYkOIUѠE!647Na L+jܜ>p$mo WfuHup?9юe{uÇEF+BY PyJaFZw ҿ^R.tBrvm)3 Ox:W`?;]9{hsH!lrL_Y'cu?uh7r ZjtLOOwOI.Xɥk+Bs^2ߗy_wUT <0z c?`]h 軞4]=ShTk-{ V7r&Rw2)Ku8vgbn IA͘90}܊r L^Mo{pܜ6b,0 }3U&*a/$ct#9zL(\H\' ].9xxql6M7gS-fF؊4:prb,?Ӈn;""QnjE=%SfJMmC _]v>G1ĖX~r6`0+,UCtoj)',^&- <ìK~V7Ԥ@(`{ v)-XLareE*敽I@:47djY/Bq'*h| g+zgOu,x*ky!!6 ˜Xlab$& n̉ =S:!i$fjo9YrFy%4 vyo^Fh}<zX< V%U=PiEs?Mxcj-X{A ϶H~Lڗ 2H.^ktV|3h[ndc\|u >]KKR%8f7_އ }[JiD҄D ךEh|}|ݩ/%.o(#=’Ro.d2}6wU+j 7k/ >qz4S N<l;~"m{(?]x /xT`S@68Ym9U)Vgbl,h lbl0%%o7N  y^y!礐J)ml_4Mt5X꽖a^gJeQSzt~w0FPp5lC$:_R)Hpaު6Q?~F/GKRGv5 "!dҞ3lOYO_}?F^w2K'>j!022vӓ?'?JhII꘱gl=)^ueΏ75N=ʩᢛ 29Sh:-,)Mi-ԛE &ÓA,G16CnXL+qicr_ ]C-#O٪ &[WKFcG}9; Z6YODbjΤd)O$|^Nzu">AϋϷLikAIYU]ʃHu 4rGPd!$`GqC݊;:_C~gpXSD[*!_TӇX 1fGE ג# VW"rn\d*(N#5(h9=eC>f_>H B۹oL6:u((G TD4)_SQ" j}KLibּ3o?LEPdxgs}Y 8)ML>,'͸KVH/=n-cc84!uug%-{~K!M=(o'J/_^%3/2Z94ۧ vZe|+8LёhUjl2'*WUN ÝÑl;,95 Q(jİ+ VhBw3= ]#Ӷ19^!Ս<8~(׫˳i%"QxAiZ ȟ(^:Q~P_VVBum@;= 5ܳ{)9tu=Ў6MFI&NaDjѿ G[8檬#J;d=]} FqE6gYZPK!H88x86/msi-laptop.ko.xznu[7zXZִF!t/w]?Eh=ڜ.+Ww܄ad >K_*,Z:Nuks{:1r:]%a\3s$B\p>jR%䈡r I;LZ3d,!ֈG(}n$+TtrżO(.\co<^٪;EOrpH6o[;;4L.Qj'` c5 \!+IR`9LrAZHTcmv8h*yņ+2$qIez2jcnBWLӑgnMi6R_t;zGӤ-!3H0Ccɀs\3ZF'ӹvX+%NDf7%a_r;v*#I+BۮY ,2#I>_>Wu&P%%!Bڨ q|B1j@ն$0)@kYGk0fxyX˽w7%?hliOJp~Bql2_i?rH~36*%94DC`f$V+[U" V'taELBEwhZMsɸ!h=,ce`,RJ{Eޝlpd^ɨPFb8Ma̘b9Yr]H;QY};\e àD"=$ފyt: p70u4Ar}r^s^AQn$늾y[zʑFρ)ONoh4`?/gYݝ⪎} S"ak6$XNXl$C":4'l[1O Z:}Ʀ//K )|cEfx B6XA/p`U F8Av^83<.:+?4k_}M_gaYӌu^/3PUdhs#߳^3Ɏwkk2ڭ&,%w:HF M&^A0PTm>ȑd:*'ҲѴ}sA>eZB.GJ(֎j*i1tz̔(7T7ĐaKTYhY "9m8Fj4-gAoj!s 0mL[Ym3V(*'Ś2q!Xܞъԙ?=Bn4n[XQ>7/ Yv&&NW

ol'MqڣMj {6 30Pv%íbIڛ!P\^x%{4x'jX;OE`p^r}2׾UʃCaXjrn5췃'9z_N$] C sJnjml׭/*ؚ@Rʹ`@eQ`sOA91큥/R7)u ߎ=H{?֦N56/)=EYp̜ϯt'ĄV jRv .3t; {Q6 KxTì+wIުWϬZ"}Whu {JoM:qE\Ip-Wz658 2$n}xQC0R^"=1da; CGs7nk~&G=,̻+Yv"^9Fvr%5BF*-AwO}ձ@=ڲ3rNdS&e-m[Pѐ6Iy7$vR6SQѶJ-_N3U!+{ q'pGE;#ˏ$<cm"h޾8n^i$s[D*GPQB) !g S?ޫ`ba`ũA }#`erz ?WNv$ў D뭀L5 ,Xq :\*$pqqSvNH|)iЊV"|-TMA~ma q` s{v]_S#t,֙IoIqkIs@Ȫ@Oȣ2Rݗœ# 1p|n9+DK>o+̯M蟯D7~*wd0`U)}7kf RhH FwzoOQ1G꿬?lQ+o6M"v?|Or0+ZJ459 {>Z^@jFVGΛ1,^#Ҝo0ER h|)ˑF 4W|2+g.f\`bF]XBYq|WŢoLt{j4DGc,+zs1*/c]I"mɇ*VqU R2j;7DR܁9dRogVbCȋXg- 8ramSAyb f5լ"!BD5܆J `HQryZR\m"qPP>*P;R,(K&uiNtGD{1k4MZY;M%S;2hC8^-q UnO}˞4d}+uS8G\xfj(L?!k(àoHfggjB">?gГ}^Ǘ_q2:V[z_H~{6!"[A+$NWy}֎I> d5H9Y0D_96I'hB,|ߛ@p ,_A B|`k2V o+ucyQChdf\f;qS<.i"sH?~EmERM&E FU.v!@=KY1>pL(ugVH0WayH $}},fǗ%yDJ edt.0sӖ;LKc)N@bn{*YwUZ_ ?Tuk lQ Hb] h"ON$bHje4a5 B&TpyX/9 O6W`dSg>[a6; ΂"<02ף9Y2l"{&~QcPKp9ߵRzlY,u[0Juuόzxo/SƦʡ+0I/˛f~N[$J۬OtV+f؀v3d)Ig{|g 8tk:P?ke)E^8#>wVDoc-*t1kgSg Ʒ?&uԞDj><~n" ѧ*!uadݒMu+VCmĀ`V' 3{)ʲjk~z]e&җXu,14{mQmYXJhRQ1am#]ɀ@n)s^Y$=Ƙ1|+JO!+-{hBn`ɦ^So 93bҸǘuda^y!lƚ4mJa=ZvVS5L{Lhc\MI/ BH"|HO޼sK3#Ezkz?,5&4#LJd1NY~1z*SJygqc toR/LȚMnU_ϰ*JsUǫ"h6\It'_ S|1Ond 3v?\]lm>?iԜD1ޙ ) d%jXu Tu3v4lX%~* rL! > vOw?}2:ZcKaF}F|J7tJe]Q8Jؒa](W򴹛+AH6?>RޖN{ hH"n (fb%)dQ]%ܜPpτ8'h%.J$YQR-QHj8֬!:R)~,ʭ" 3uv=nT}to+f: j i-bL ?JppwB2i+<kg&;,8>2\kaWgQLEh/tâl,# aZDxJУ"gJ:w/KXvg؄챔Ks^M}n i%s#Ke=ŸnHe\<|Tt h=g>.A!$H-VSg~1;T<w:'^_d6fN^JW`>`xKSDZ1o X D+8K}O`"v^?ƸEC!'O%fS҇_D汛Oc=˾ )eJ=n LR30$x [`x:J? ahؔι֧ 1jQ:ś-TEm|Μ3j>[9"cpUOѴѝı<ިPD Y5喰[. vd+{;kkqmk"&a"EpQLIJ`V:=1?S{0B]&;I*эY[::Xz36wmR(ԳO(@alJٔh~L|H(rh_r: r S~Aw㹮DQ>#RGPppjm8IQʘ33:tO|5HQq1R9u`O8W#6Y/ƀW)⋁2{2̔Y9rhĭHf#f웺|Ѿ`*|:ccਅUDG9Gv%Й'/p_ ZK^]$U֕ErŨD~+ٲi`b4%]uR·m+ yD?7Q ǹ8@SrLS\fEeգp"qΧ#cԓ (wo,hi.,9XuH-L;Zɾ +u3z3P7viJ5Xs\M"3ʣ1tE7;yDWMĺ8,A1y:ImG|f+| j9)(5(@A(B<"N: R}tQV>Z75WgXw9O[v%w(l('Nͼfjm %*t=cg"긹mŰAί> n 1Q¯Szs ;zF6cpP@ln8 Ke0~̳/ 'P'w8wFB-cS LdQ ?q1-Y+ٮ w>YڝHձoڥP(IaρL~OqFejB$C_-UzҔ+:m(8$B5dQH@G0O-ׂ>܅o#F lAGv(^zH~̹̍tϱdG+C6JSIqUv[} 'c aI҅c}hE=!=K ҕD޼<5g7} R~ecD9& hma/Pls|fxNFU.p.@ j.D`qҹ1{ɱT ڬ?Ye'UTn"eMFW|Zj)2#?w4.ͫM7~:mItR|nc[gYZPK!4ż)x86/intel/pmc/intel_pmc_core_pltdrv.ko.xznu[7zXZִF!t/"]?Eh=ڜ.+4]+Qmq ^MLd#FFxk=[>TQ-Ɩ<@&I5$z%Q3@JQ2Y06l;'E"\vbpЏid=h |o~:x(gr}R%p)_zcQJwlWv ڏ$ Bpa+K﹫JQFKDa6kKE$J m&!Va7$s8iN(%,VE>*&x;-Mb-ך$jzSYgdB6VxJfSpl)< b<%׻^d?LvzzUr Rn.Umތz%:?7B>?_wLV~٘ .Q}v ޜf֫O7yvq%$vzBD\}OSп|bN B;F}jN2p*ݦNEv}F:Z/@7 5cW&xҨ$$w_YO?,_:dm=r68E3`'j~fT^&Q cġqj 'ӛ4{btxK*eⴣǔ?]`iϿYe`ׂQx0RVRnn]߷k.kˉ&ߧ΄x@2lAZ/ݞkQ4ǹґ躷ܬ+S@+2`TȨEMȝVQfU^)Qz42Mx( f畽Zria{?skQO]Y_2}Y@??[?U:IRϑX&}coDe@_֟G(/N(nի*֬3|w DDKb)TI e-qXC\#gX mɼTuBbQqr cU&?\Pb?sWl=ܲ%"3w04]2TʚUI̵-+M7-?qPW*ˀ)ƥh)o m'c;g7պ. y4@ E_*M/H39ՕC:%.Ry9Yo9\ɘX~5e@ѻNO{:/u q8PY}ح7HLaVF=&jEnvŽDi8S:={G/gYÜ(DnտCHVqZ EB٧2}w'u 6.U*5E(D%E}o.&pΚ]W)/͎& 7O{y xͥ@g*vZa*1kZ&Za_쾳/*/Ժt ^p4FbA.Ѧ@jn.Ble(!/RXg&u@  wqE+demη>a؈8P4U7)Kd}oa|i]*<|G- Gܘ ff2[feZ0{gl'QBjzԪZ)2;|aݣ=ezCJU|4&i<DZ )a|n(!* #Zo*-d~X?焾z7ML:^iPDL B'QITw(ڜ8`؉e&-Z:g||G{F)od& CA-V4KVB~l|m6c#yIp,z[_I+ckq90Z .BclE,K4/[a z<9%t'l˙2-}ZPu:!4jzڡػVNF1f|x{:Q',paJfgD1 F/ \J5O]242"A=ƌ*. Jܜ FDnA2^r`3D%ɳг*}pYAt/GЕsꗕT\" .VRF;x۟^;| DV)+^JÀtQupy"L ü[k(< .5o3 /޴N*i9"!qT}qHV@nR2z_)ou !#Zz]Xfnw /D $C=Mq, rka:$"0mO52r\U58mimZƮg \*l&rh`lQMc5/P3}A뷄i* <4 7¿ba@BR3J$ǝ,;:I~&#|.{~sUA0-KPe$Xҽ61V2qP&F1r#h(V6CR3̵7A^LBi֥ <~ju勉}CU/$XMgjfǭ–i^Z&l)Y-\)aYii.A3]V @Qw ^.zFSH*p]ba|v2PuiWÉ}Ԥ>7.( O@*$@q3ńЋIha{&a{L5< 0.JV 0\c~B @+0DlJEJ+!@+c V${G҈(a#GikSB DZg쬸* YyA8jl׉WQ0KNew0-9kkm6-,w.XH9Zg7VZnfkF,#mI? 4,@F~Ylpiza?Kb|+׈2X6,ruqk,s!LJx"=57؜K ߑ?uOK-qeʔ65@1[6W}]UK>U ezȬGG)]u2"1Gf!e/s:"YoB/1]u${4cL_IjQ Xp?mc7 P#os,AcZb~_k8Qֵh,ʑ Θe+sņ:"|GyCaYA>ٱբ,oSQ:2)i7W8Z6uǬ; <>OL=Ӿ}Õ<[2' ZIj]ܩ{jb H.ҵvcZ QOM%:]aκct^G㽍)qCVYr\0Ll)G \(aӇ}N*s5M~ <%eN&ӡ/ZE  6rߜ!]q}| LJBsPQj>Cy$ڱZE]ں&FLNEY&5JlBƖ}1ь@EvJrMKդ)(MDž=[X=F=W+񩟗p5U:b$SГ:ՠe[DJi2TNYi}i jlI҄>?oES`6I5qϏbuńfι+ҦHU/Y;Q<}S-V/#T˶J _ۙeӻF7M,!~+T?asUZъ4Om0t B*I/NMN~mJ=Z[sg B {νxdXT澫+ud4PFF)W ȣvuF :ɹycî>^>@lGpoP@{;=؎4U+ׁ vG̘ 3بlh|9ni\鹣V=ZyNv cPexrcE^NxR\j $1\[\CX<ڃh[x;)X"T ^F".7a`kffK^wөl>WO%]hE<0XI~M X/5Ήl(|۾JhrrV z0B@Jy4#bVwr *X)|b )R sOkwM~jv 5D~g^cBi7':C5+$ Of,vPSe~p}f}^TVb%IeE>E̽|D|~|ln %iX߅s뒋2HI7>3x(/u"r_Y'G߷؁%A ].Lji!}UiΎ⃿[0wѢ#K؀= 액,0,?'O*DZBC97hVϡ^:t61.#V-g| ! C ᓄPh3M~L8@KZZI~ҕJ 0QanNc\5C'~H KG0Cs4!c\a -,B{0<Ǫ]>X=T.-o[t E(+ii8I,@nP(2|EG945I6_{xlD6#]Ax|p\:S}"Vuc> ?*zb;ӣER"0GH -DkH*.䔣=f 9; f}μmy&`XsPbς݀P=Cdzvm'UHee'Ad86,0|*@[M˦X+4!&S*4u4ԼV,nM^$Gl5cymQ2ڽ[:tUһ$i=:@ҘW,#-F'Yg+QzeAw#9׫,w@ZMSWRN:v"i| :Z<&76@x`uE8ukݸ-Q?#p_(Ȁ9@^]w[*sFGb w+܇EIL9p؟|߈= ]SN;6l~@?ГqyLo6Yi(;wL}UUzG#Z:AUBzeӳ 4uIX`"[l%Ub $3-6PUm։?Hcr}ʥ:BN4 }x+٦mpσx݊qnδW/,!voʬl_ X<|ף?"X'P$`#HXk0쐭+nNNMuTS^y'Qd\6|l o;>%`0aYdGwN`S9;y" Th) FS% =n;mVɨ*޻^S}VJLJ5/|h؁۴~x!;}P;dܧ̓&|W]#Puq!!R"d~9BF8bv3_nŵhb#ٙ+|M ?:F5s/ܨ&IIAW81wbX26$P6]N;X!gT@SlWB,u~Uf}fbU* DSe,oZC$UJ>nFh=7kst3ψ> B([8TbBbiUU5[-  ՂFm?$-*xXvk˅ɂGݬcN0BTJDž|mTs,A[<q+ XRdr$KV<uM4]ӁӼҔ& u"(6xRD/E ͶRvmؙf-vΏyobA3&]TGGOiq,O2k "Lɫ-!\t`ECKYK<)w Dt ~+P3(8SRgd? #p~ je$wIZXE߫y@ )ARE{>zEws KF}J~v 1$g([4P#9d,41v;,#[c_nqV|Y!* %Or">aWi HRu(Rnq[=M8?he7% {[/H4GաV eU:H5.x : o$QOVyT=+96yjSK@Is y ~0+]5SC.P1{6iWE8"^ͺ(yѯ:OkS}3b}Jb\Ȟ(pqi66rQWV IidFM~,ѯ2u$aqي`lbvǗ<#!vPJ6W:^mJK:R¤s PDA_x$oIj v*鶥qj&w(@I18~8dCrX|ܡҡ{{X0G0fFqf)//Vh< mI 9yy$>'VIkOwly*jFXÒQ\x\^*)+_x?12,IӮ )mQ0V ^I@':Jz;uyb Yb0p902wu Q.;c!r8FBeZY U ֊_ L}qAȁ !{j>dPnQG &aR4B 3dK Kwh.NHEviħPgےXoۦ# E j wwRk z:jИ`;8I]rKAu3ؙ3])[P$V:@]3cp8 ǥr;KRhzv=IBЄ ZAUD͹+-J9#7%[ }fp(s2뾝 30 yI7C*1/DxrWU>IRMP4#i胞8mQsrϤ,?~:beY "nICE99=SEpRU0o_.m_q]Ym-iB 4K?f3"DMpC@>(z6Bx0yK \/55UVщ,-J c# g,M'Fdu/`8(U#rxY񢏷ƃ2̒{%f@4"4 rPPœk\\ 5 nS^;Bo5!&UFFi)GJ3dYf礛Ξ T=SeSXm0,C*DydZذ*=A@-ǼGiVP6^^\ xjRIIh!’||tPϵ-~}8p*v.O'ȋX +A42r@}74<| FeXBp |_;ܯqy jWx-Bgw@Z;Iu3M 6JA;{"a-~,8lZXN-:JSf%th`yߪzaq3IB]w :%kSռ~?ozg}%C:8˙ "Dk\ Docñ( ͭZ BK8nt~>2 7YLQ"߁xM/+Uy|h{!EӠJ#QOy4;]ӬnR5@~ao=ȪӚSB.!kJ(5ߖ%r;b!z; Zdsa Vĥrnc+ Um%$g !dk8ӱΎjdzH{ZGi]W$e0c]ʎJD[!Qfz( 3f>>u#M\Ayӫa4t32VG(  /H7 't̏ 3ocάf8M*U|` biþ?@)7}_+j1# ( 'C',90ۨTvYK4Vo QtT-.Lrtȏ=b`c(iD1@AfJt>+!J&,Y/bމX4YI>ٜQN[:IT d$~ڬEs?vYgo~ XDֵ=!n LޟwO7d[1sE%=6sw5*߽{м^w[nYq TA{ FVeeDjZ׆wxL!U-|W2}JC~u,W2q|xq٪` N0(|Г]i+IH, x . "sZRFJ**rSz c}A T]r*:`G8'˽@|%Y8@85@HuDJ(o"XDfESJvcAí SzkJʏ* jݠEۏX$  ? ۉEd+D v[!rN/*U ` uAFttf(IoՓW\ȫ\i64 %M3{%xQ=w)=_> ?8e!ܮ;fxk S Vq)gQY Lؒ'\rSeUV,,X`ta7 F_j91/Ĵ8<߹NRG[l,!ݏ=ӂ-?( h q q> I}ˀ4NUTS?'Hp7}IT} xg:|5D#4vm,cDoh5ڀt lB0R 2^MAGE*P ʃl~R1l9: j]GfR@Vpeۇj@/zYX#Kȕ{h"D*=?% Z X_Ƽ-Rψk g?7|,ZJBNdXFCv1F5`> }ʨD FtH|pexM .~hXfCo\CQ?HV6h>Ad.=Ȕ'uᗫ8]~[JLe~`dIDn, ðM֓㠉MjPIGO֛Y7xW %$x6D7q#/@A[jWJJf($=p8ik,H[cV;cF{KY1ӊ?iTHBã iꮦ(fU+N\Tc$F͛{̦lЀKEY KTAs/Sɘ[ܕxn6Ldco8dٹb3PVwz=gJ_9}b g&DIşo ^O@J 53ums<榁fxQ(~$Lck/B[?z9'0]y?@.&Z>,e a |z1Mڤ>{Q0tzH\ؚ0 `e2$M=3W0pm&L o6]=,5C$̍+y6TeQ&پˁTW>6I14<տp1`m'?7g[ E-k#@_7i+R~/{j&T;N| Y/6Cb5[Iߝ-*%Z( LE1䴎{7$Zp.% د9ƪ`jN֒׵YdyO}(+1L cA{F[Rxsr(Q.fbf$+M@yL€A,ocGj~=[ϳǧ⏹h0dcwll?8DT v!ae{bu9YhffhvZ&=Gfp FT6VT-+fkxsjp=MҐܙ":B?07&ZqN L򻯜IV\7/,_{1BH1+μ:;%ӕ!:HW% BL#$\zh~K" HƪM&F䇚E/EFv?JK܁E"ȷE1'^T yw~k݆NQ/u6䤍gMb4H徭bm Ll1^/|o4[dkb^lKm̂>jj+GCU\%֩;blE*)Kn_Urۛ)5w|AR/4¢D8.,L C,fCd7rcNʺjv5j:oZrTVؖ]a0[wi@^<[ |0X$̞y3c.WAUFj]%P0AsqK %hs_9pE }-+GP)X<3g }X\\*4]E&$wv'yGv?2Fr zNaJ DЄBaضYC;C$]jv Kq $=~J5 JƣyBc9z"Y.kAytcXl3ѵl9J Ĵ,!KA0\G_/D҃_W [88\e/ H5(jq>n n эd|rYc dZ eϚ6]g1O/Tѡ0ElW펠ĪfFN&^,+rz҉UE{#V,r_VqUMY|$vx: E.oy +d{0PPPK_e(G.\"hSoX#w` zP}ԍڢvJetd,t֤iTWY) vף5Z 2yMLD5b򯽯iO~yx6c ;K bANWf3=ÃR(FPGCbSs\CzLj%n//:DjOo#pTW[N ƒ XAp W%)*!aq*ɄtB,#]SSR*ןn;:#YgOx;)#|rB (י flg_e|g DDS \m_hvâ 65QGWɥ> wkum(64T/ (p@HYifJ ۞XMKcg Jjv7xjGA?mzi9Tjr, M&]1 $qjJX_%́(>}ʖ$'`Dږw΃\N Z*-1{g}bɭFS9c^ vg&v.6OEQ$|Tژ%Xd?a~N'*6 eNC~ Swݿ {@nK!xK=Ir1 1edUں)ͧ1OϻNr̨^~j >RaEv' D!Z~#ZZƱn5sO(Tagt# ZjbzlRLݖ?fpnBL( 4\Mν/Ð;]X( ,(Ԑ':̠xfJumsO!~L42Ot('{M] &dqdC}S(ogo !a a2OR,I.?}|~D\d] #pͨAmo.BDhy l>5=SI(X@puQKowpo:KgVӢ.cq c ?Hhŧ+ڇ{S nYcab|BЧ k%*SY}~dzt%]n毑v!z4&1QDȥL+(QɊx?M>V|lJoRJy<>$N>e|CBIlZ+! eX)?y 6CFN _Q!k:8Fi9U&ǴMV>2'a\|rhQg%^M ,fLYE:,JV)~fFXv+4 2IrsJhE_ȹ~^Urd>W~ḆkW*+UE*bXט39 rzEr]؁7l+6Vw}XyZ: Wiel!GWSF1k\2M{9D %0۳F)rMr@~yH}6ĭ,ф@N FN~b–GPqs? =Yq5#$޹!6O͔w@7$>~,C`j@2CbҦ7M&lH{n2V)2Kҧ"]eї춨oAoCz!wIf}վɋow TW*NrH!?piU8s}vL((~:)ObfmI>?,ua~$Q( $м^s j*JF=VbдFFcþS$g(w=_y"%(|R:B +Ps|Oen< wwOi&N?hlLڐQ/ Xyin%Qo,t/SI1xsq4=y{&2rǿ REH;/\IjCX1%C^l4;H$N|IQoBӞʛ{46S45c~ 2udK`{+n!aEt/F܋괥H_hz(FGYdy7XCnӻy"ͽj>X"2ʷCà0[̜Pݹi{2sB ЋG.0aor-0AbOe;`,,Vې80*jw@K5+S̢2fx唍?ŋtCz! o 0x%\ۧfK'k=]CPYx j "ɲveQҞdnT1/( 0I a?Mˊ=u7K# m}A26M#֌bpq\J1Uh6-:`>jŚxL;Zs-ЙA m<0@[' xZ?O}pIB|íczFo ،i\E9S di0cyLch%?4=fT"gqH q@>Htl TvGty3HZ +I (x *\(G.q:5ըo 婫NӱJP-}؀]˜kxU=]kPs.DCA&^"ADxx2a\X~,1Jw.H h:oc`}:YJ*OYg*ceovrT>GڱQc;4_{opzpM=mcBuݕ]@{b`@z2+jF=OI@N{h6Yl)-=W pK y"̡#J4 #f+xF,sC#ojvkˋ{O@DТp822 *k!!1`GwUNjۺ9˄ ܜMXѼZFi6ڍ5$]C~~!V*o8FAg+#A/ =ZB1 /J౾q0yb1e/MO O`)L*;7?(wJ9M}zrfZ1xSS/=6/6j& CRrk!ZL\Dq=mK; =怊MZkB/ n; ׻)j!y*+ŧ{=q@+3-MI`'GL5\`"L܋]5fOFV8xd;0@nd@6bE$cꥆzucbx~{m_*zf426;&+Ɏ]X"]"ыs:PL{vB8 KB0Nz<\*n'|&ԍbAE0oGhpFFpoA [\B!Yx`jd~ϝ냑!øZ?ewrsEȄizu )t6 ^A8$iϚ1uP$O9Tɿ@H^&ǧ%TQK%c',}?K_=ea ۜtpV[Z`Aw ԶjyCң 9x#{Dj1} kw3w2frv /˫,$D+lc9/*x7Gg s6ԤiQi@OS|ԇLם|Dtp7PK?)+dU Co)NHb~ӳ:PK!\{ >!W2]ܬ>јթ3c1켏I6j4/g5cG$oS J/sկ'o]a؃Cv.U  2"xpkn4y`ebĭJTJzb*Zm;w+i2S<^n窲:Mpy8|qsnCCUiEp[HSA/MRzm}}j/aֱI-)&荗6~hywNXAeMԁ q;@bW'zKE!PT{ ²6"kizbqh?/D!hPlw^Qb4A?e}[i 6 xĜ&u_F.6FOa?{{0ei1:kr ng$ ƨܖLw]6XDŢ;WRulXu]bKfȐBHJH:`#Z +*~_0JIwk!!;1S{(gKGJ,WK*ɨRuyp~ŠR+?u+7ףc5BII@w63~\ C8e`튃rreTB 7I@e QF+hXDm#/2R3W Kaa*/63TdR,,x,|”/`ķ<;8rpKrB*" Dfvz7rӳ'fl#i_ %G Y5#StBn}Suv]ev˥x\ imYKgd|Vkz_nN%0$-p "̙\"uN,߇͝qGNȄ}F[J_mQRB jG;qYlyiEp*] ̆ΤNT.9E/3'h>=(&GL8)Хf9$RrZ_Gț*-AW=\(V/o}5[,`[!u2sm )vqwI`jvڸec{xO3~`2,ԒAK&G{o_#]ȉwgYZPK!Na 0x86/intel/speed_select_if/isst_if_mbox_msr.ko.xznu[7zXZִF!t/* J]?Eh=ڜ.+δ Zno_0R]sL,Ӄ4bȴ tᙿJ^, Aαibg_7U*U/뎏.VK1w4G _ܰ7Σwa=M٭OhW9k=+Zڶh9w6Ҵ)%oobRq;[@h`Ϡ_&)'+{<ÂRS: - |W@:rj08XkMq;GIp0(BC t6Oc C,S6ٛם_Ms7v̍3 Q-5=sKxk16%.'3@-* B/*3Q~W=^RksӶ#߿n#KKn5WV5.>.1\D@nUD7Gqp(>cv)0D9;Ø8q*X⁝DZjlV˰ ʌ16RMzUvO+K;>C)kN=+&cz8T.KCQj2g>%|AJ?0 , vfLqJ,cU͌6 9˸&jTL}#}ZIɎ%UeuE`W j]ȭzr[ʔ={'enyUf5LݟOb^~]td3k4k_e|ZxRuntZ6mkiH j҃T(9ռS5T%QEMNpcײ)A"*nyWim* Ȉ_$''t@23p'hXMIE ߘКEj)\г!ib|Xf9g7e ?jGA bj%EUmsAAt ,$?io$o}QVٗ3ĕU+a)cS}P'uI< FJLW1<%>Vk5' $sx5FrG3uy J(mGDҟϟ]jь} "dHb7ުJ&&"MA+X:paeF۞th@::;|۰l ֨W=T@2W&ՂMzB4Y`r&Q<|UYqCIOMgXu0j M*%wGͮq~7V?c 9!].| ( @#Oz:@XͦdΆx8hT??DuWhyb@=eVq.]Dv M `Bq卿aB(mm)D-m`^\#VMKC[I_x%RI)\LND#os')E,CB)gv#Hw8!u*S'ĨRH򝬢pQT lFޟ헣Bџ@弽ayF>qI+|H+dP15  *>^L"xs8F EN"Cmx&V=rk#,|1S"N{K65/6Ul8DXm;nqׁ`5 AI'Y&8ֱ($bT5Ǐk`d3 RDGE.KveA4I)ydn}|n0XGy6@˞)o6W V 4G§6O,YA_VTy {jO_:#rk!ۃT-5 ?pXo+]BY]C75O~/BF֦WT$b!cq:A,tȾ1żHq?+CCDVh+%nhWh[HQ9ZKMV= &\E~kwA лLX31x@6Իϝ]pѮ|`rռ㜤k. :k4Q^9eI`Kj]L[6AEr&enM3|^gUr,L{v.xO[v~OH[9+CL]+OgԳ } +kT>TL1dTZ1?,3gQ<[N'.32In$ل'5Q:qbievY9dSMM_ySR~, '"*r'e/y/rPQ}Uoܢz5nin1n4A \^BI8*Y=.|.vO9*sUWuM&W{GK JNtЈ1SO ΀6BdAZ! >':;$ew#PfW#;rw{+ U?!:G9iMYWF[Vq v-Yz2ankfӓXF&lbb!i3'_(ZjCcS)f- f~&QJ'+qV'W=0g3 kTC !5jd$PiԩZF &E~} _b7"f{2ԓbC7hr,JT\bMP~^C><&@1O?Έ5jܧp.8xW4Eec^g(3$R'['3GfRbBuz%?zZ5>{=Ex0cUsu LWpx+kׅXpd' RKDj['P!ꨭ;8\^flBiPS@TT;P]JG939C(l`: y" fTVܖ]̚E ϼMĬrPHiq4o;W#˦U6. xjv9" Ѭ!&?XԋM綹x.Ib/8M>IAٝΧ,ENES)4Mp;2_0*x-GK/Bh3Û !7|nQMF_Uf|3Rlj-={muEE702On˼bXm rds0E(kUυch ֒_fyo) L({GW/ɉ Kvus F3%>~&JEwiщ%bF^YxuD|rhb4ȻFSMp \AtM`/aM;;S~ wH+ߥ[Sm/KWAR^Y#x~tX5˫> qh's)bxvfN>zfC/vG_I-2CE~Úaہ^{;鐟5B總_Sc2m ֠<*)hwךv1^Wvl]nk_{17m4D =N<Z'鴛EG=Twp~p@zuuP50{$'T O79ƽ5 $O#b^ْ+CBHx(u.^a^K H`NVcA2%dz09r$皢1 [\6v&|k_:piF3}Ȧk#Dl O\h؈kryhlcYn#3݅ϧJ"[msʼޠ-ף$ Fg:_;Yc`S-$%paa f֏ϊjV0(voDڳQ>rIŸjɻ1`%?)%W, )m)*hh'\$ۥHLB_sw00ka׭mgVvM\1⃨\2]e[T@/u(^JtuћH4'|gbGgYZPK!`e1DD7x86/intel/uncore-frequency/intel-uncore-frequency.ko.xznu[7zXZִF!t/B]?Eh=ڜ.+"U1@WFJ s˚5XGJLTH=S :d` aruPVYZ]WMc ~KVOG: 0Z cBQ^ېs6kpQdו76E"rOmǁHfINTVim&bgwW&T+ŷ‘K{:E`' S: ګ)ݡxl#t##q*;^q$hVnr欑Ve51$g]5ꑎߒteaw *h zBl-+nz!ptsrM5ް(}&r̳ MC!7Ajo,{͡ I pβ*Ĕ*j-r/GɕHA͙܍K;xVy\=ɪe !jF]Q $ p=g>l'x;u$K&PJ +{e*u<:M]M\KC&h O?5S0=@VWEu=a @5ג  "YHX=Z@} .Ax4n3O#D{S?kh(HK9չI wڪm;oZ-'т:[h;9BQEy@zi2wr4vKG&f1:RW6ʖ~_NoSY?0q?AAv;Ff9Ou5\wsRJV#T>)wt`)SUͷQ"u{x.C\~8D HTb?L$dF^/\]} p-pHaĊ7`;[. )ѰNcdLaȥlگ7xCtg;< %eA_t[a56Ku Wu$8(XXObZ3E*t9#cvPBa_a^S`L}i;~J #-#ߍ,?I5|FfBGu;5ci&ưsԀ.+&H8'C#{K }q96ߛ$vFSQ% ?I/Duvǧ#l@Tuj"hHhP}Fg.=Fm!rȚP-lb Km`6b( }C)[\tx;W{.2"ٛI|=2̆?QѮ$ЎxV#[yuLHsu꒚AkHgNul ~8NHҡDXe_'v'8 1! W&`U`f 4t"PW(/zT_Ms5ѪG[X.ẨzkYA8T݉ϸуR?f8zl!M?MѐK'ܖL7ЭӰrza^G"VGpmWx86/intel/uncore-frequency/intel-uncore-frequency-common.ko.xznu[7zXZִF!t/=? p]?Eh=ڜ.+К#y`*e7as'챦r.mO*0u_OWȳumFz8nYqO@ 8Q@;&ؒ ŗ<ۡF[>,Q4a} kEi4 :ЮOyt_Ǜa5#7GTe,xB{ 5<&a`rSD8 `*ph͡I"s{uMٖj,FV:ٕ(;+7>U0C@N{ loӹ&⨉,8D !\$Qn=^bk {ЗFcǣgfYԼ!jg&ue6_{1Uvv9?8/9h@x9Q+mtvZms {yݬNv-ѲPB_ S"U1KTB[Y˲؅D3FF$Q&my֖DyX*.Sѣ5v.M+vy`CqM'ŝevԝ~AʖT&ىvjtvć4,bnq(O\vQ NIxcnˊgQo2dUݖU`ZY1t`t, FѢSwVtRMe)*U̖K_bHu ŽTi `)'QL G+ZSg@+͞}/~m z՝%4E(N,QPvb˦s02w3axu֤\$K9K,V7z٥(w6PN?ZyrQW[>,9Ժ+t3%bӿo4D$#5~]"Q$A7 /='$[m7x0 q&>ġkj[6S)Y8nuJ#Xethϖ?80t|T~T.Yh]9ދUƫU1::Bo8f+)y2(vh09 p ~)p\$Wq[&,)-I%Y^ggD[QLL\YzTڼoN,͚XCW1&E+>(0Kp7(&ܾ7$*ky h!@Y54Xڿ*?XSfD#057Bz2we"s4c9[l*'g6Ui_F i]A~_?y$j|5 3=@QWڙ&8cԇlg81ƟBk!By$krh2]8k;I>vb//?C\S֩OxbVi˓c伨roe܊ ze>WTwrzpX#]0=X-VFѳ#{م@d{Bz^ l|&f]4L"RQQ2kI56%_T;@ | tжl8˲0,5sh]@J !67dA2\}bo> QDC4.;!pH3/H:_n _t!rĽB3WPyW˩[U ͏ںh SgAM(5"l548?q=Û+*pvŊ^AF2Kt$bWBABY<zm#/P݇ յ94[Vt\AҮ<RDLW86k@\yˢGӾ5H^h m4 Erj`/C->T8jjp^Upݤ;y*Ɂ.HA0?)T[Z +uZ08s0ݭʸufq |W\YCohzϚ 2Le5>x;#Z jZBlY4Ccڰa$].tn.e+WDd'͌"y$ӎA!c/32A𴸯=ﻝd/E7uga"W8>Gu4uÐ{ mri=cgx~a,ҩ 2<*):ÈS{wZ0}_6Ti\ڰhw 喱9ql[ .W(`xoZ48Zu9> FY<ۄۀ~irN+ؗY2+#cHx ykI5uUDh~ci҉=?U~9܃i8>Q=1[i>_{a U^,{"E,8C'V=DrЬJoS; 2?,t=OPi8F lIᑎ 4 zЙx.lЄ&6Emml񽕅?~2zXmI?QKzmc]&(77Cu KZ_IxaoѬ24Gd UUowKL!oS & sԚAbw2ѡv4: dZq8ſ{# ޾d}H8:y@%s6ς6Ԓժ+C䖂=ƦK~軓;e :z(U2A`QIļ&I=fidI(G\9`^Bʻ*šZ>8@$^'moDLԛ$ȝ`G-~|Y&\vbͪ$'b^R cOwx x2H j ;o"*rCeqjizP>>n*铹 e)La!5YF:nozZu]cF}z~7ep)kO[[; p?637~ֱD=>=P"0e'3g_'O⫕)m!+,0q-{ 6NF[$G*M7(ݮu-!S^x9k/'e(muy7큿D;rVyFO|KY1, '6$xˎ&~لC--Nq!j L}q5#AC\;+ NB;0;h)&Λ$]r#Oֶ9:^h dR{ &ހx)OK҅wՏ 9&¨D۴8ؓ4},h6~^BPz!lk_Y&骇K4_RdV_Ca-v#s0;lbo@js`&z6ZF; v{.V{3/_V8X!92!t#>54mcUsl2 Su*["?y36 S$N™rnÈL04;6n 3Vٖ1مg ZF?ӀƁϥА.w7fN` Ol07=LTYo6QMFrK0.<adp)"KhՍU;o왒wcrs.q:0VN ə\ ,:#8(^Z]omR(ȶHLſ^S$wj-PךJɚbqyc/- o1VmP(dQ)#90u`ꧪ_x/)asbPR)$Y|? YNWϰ@}ȸz•FF},O¤쟰ZJCc}* GF:ތ# @WV)l"p&V~0dC'FY9Moi S@,EJw_1M/7( Ѣ7}<ƺ ]5 I v K-r!}Eo _eN)+*yXb(GL;O"5m]yGO73T[lDj(Lg9ޡ.NZzAdZ˹V}/[r `c*󍒴XRGATLE!%G^KV`ϠtVk 5+yg8k{eҰ+y 7mKE$4Z6~$%Ȳܞء.T 3.\',ߟ[g%@_na)O{91~ك6vw_X:#&NX2v֝#P-1^"ƗZX bQ R쩔xj?]8z ;LJX)Ԣ[ g9KZݤ:Jy'|x-f 7kpvc+(좢TN# ]g[8 1ob-q-0"jh?2m,Hӈk'ry!v+1 -boYFt!%1YU%9 %Dŭn?#ec=WAn[1kriT #wenmƚr$'(ަ,ڙ9E^GU ^ܟ~~F`yj', "VLtUqSBޓ[AH6+R##oycI4FdO{ /˧7h+%rnwS3 yƁ̡xς# %I:t+›Kx EQYbB8'I#f]3*E{oji>6g ^69Bo"Dc葞$ hhUK Fݮ}wV5PR۲ش)p3]DkuطK<6_zzc:-|#]7vBuDOMzd>z6zdA?bJ|B~[[gΔDfE_[go*C"n>ZxKv9m ~U䥞~ڣj.-s%ta??@(zy{jxtEA3$YXc0n!8ٕn p*_S1X)OPr#~ztPx33\P`<,#$hrVFG4@X<k4rg8ּO ힼj7a\DXکqfoa"$0 Mހ![ǂqf^T Y-\M} /~ǔFd9 p/3j@ň3lUljPd >!rܺN+AdzBBtoP>.WLWqO aig $ѸMK$a`P!"R\oM2`I,hҝK.{ZA~!I4t&{bzTsHx̷UPy9=-Gӷ%G4Ր huyb+J%"mNhCn Apq -/Y$ ey@(hYNd+f.=_FB~s18zYv4#!I)@^vn 0DxGGz,]f0?'$k,xH7.P*yriAqK($%*<\3-RKб8iS/+&y- _b #/+iۜuQ"gY`!?ޓGcB΄(]~lDc0c 2Pb[0cFݱs ؝ZƭiSJ,8;6̻# cC~-%}b J΍h4'G|sBzc骸LG6m)HIAuE%7>^O׳8Kr\$|]XyeٸՎ-ŀC|yzU?56h'tg`|`ʉYvfsA!)/ v\Pq|/jw.Xpj[F+Wi׋l8#/ِ¥T%s18=x } 3F . ^u!1Cp>BC}@@..Bq-b`1n(îkDJ:4{E)uNOs?=]mV idFW\FXMͯ NFY 6$ p2fQAtH]9XaWvST׌؃ &uΜyf[X0C5x{җϔ"?36};&!?wF/v}-G+#aRT!MFLmKQä]8QxOB>Bl_ƮKd%yeDe( YһKыet|l nOMqJb4j Šw[񆌯 FQ*0JpucsMtn--2=b+3d@ ޗECӈ-oct#/^ WIyOKȑAuc/Xb:n:"6H2h^xS.VH0LЯF(~kgȪԭZb +MU k1\(L)ׅ.VG%C&ppL+ vC(R`7(ˡT+](m i}|W&>]( MCAKr,\?]/]{6bl.C@CVV:TZN±f~,sChT-f/JjRp{ęlAVwFt1!tMuϱF1{~O*J!/lcֺq|?\'hI.ŭ?o/(RR%߉dG^"F@Yvѳ*|Ii?#rף+*$kl1=Ś;jzb;{@:T$H#Upo9:gYZPK!Tx86/intel/intel_sdsi.ko.xznu[7zXZִF!t/L'J]?Eh=ڜ.+͟hޓHJiUmb v9;$xl p{mA* )7#B4!J>.&CRG(gȞb2G4ԃFը-? < kRGKB`?؝m6iڹyz%ϟNDs{Fz1^WqV=dmF+ˍeL03bE>Y\nd;⿄1/~iW[vO5J&ѽ?YsDpzwkpӧp+TTe;3C:7)֓(*hH qPQHRg5VnEF,t%rDZQɋN>~PQ+ 0KKW@ɓ<$822.4/}T&BE߹Sup;3?.0p6d2 &kg2muJJU=˝7s~EE=,|g.4#; ʕ?J?!@,Ǹ r2byo2e0WU;OblJ^M 6;?d! ΄_EIT'4Fq(!UĸͪR ;YLۄ\uq^|[YyTļ s9kEА(GƐMŘHHod΄(x(mBLk& 2Wg1+BTS>>3ZM;wVV FD.=Meݷ@~_lfhKFL `/7a:|7sfN3F'z?[t׫cݹ&Rn0g_ᣮm peZ P0vؐ؋Z%L9/ܳ+Cɧs &UP(H;Z؅-qdb}Ojg2oTKƗ~!K~u_`SnSa}JD4$/Q}&;aslRG)|:΄ľ1߮ $@of# @^w_扨)Lhl`l$2Qik?d&>H g;fZbQilX,.][|עb1tIuq 'Xksƅ0rԘL>@ܕLVVrRoB#=|zrsLEW[&"56n,xPz%)o{)})t.eMT Z51[  !yl/gQmYcwd.~4ʱYf\' M)ϰbg9>< q=f V.I:<c1"u{TЋ j%ib4(J8<@;EYOy 39rY^'ɲuRD:פf9™?bxAU>.:H$!0^Ĺ~/3s<}qk'17%2y_Gؐ]z{c7 Zďt.Ow9,x+snOI2s Op~b_|4\U)YO\Nt(~1}mvY'C.;)]:Ja~] }n5!3XLBh-MuIXe^j -ӧL)!yE\&Vn#2 b%U[:ފ~шw_rnx#XU{@l2nW`ſY؆,ff ۘKfrw5:!̟4geNɉKF3\l oL1 Oц[Doty(&_Rv*IֽR@9^%P!v@5G1ð^m:1ñZc82)ǧzg'/qSy;!S#:=Ed?vU5]OI |-R)sHU^+ 2 Pq>/e/:F%467',,lP+N2xka5Ww{lB_π`P_uH\.B&mvC)y#,1ImYY sn;1n~|\jSz=[V@7Aٍ`6!yKiw.]iW}wfk)Յ8r_ZKVJxQnknѽ-7/'뚽W4~ͻ:δ cZ" ֺef&nVNaBv8cym`.+?X`y8r=zثv- x`09aQ2ktƢpBGE ߋ!=o!=ؖUԌM&w:2c=s9QEI};EmWh! FVOu %/f(k҃^tP=V:ֻXɱö$}cѶT2#'&r?HuэCwBư^)MsagkCK/G_hWk<,.Z:/U2Jt%_Q.&L|.9/{p?@ܮ?ztWmgn-HWWЋs?m\h g;М"aoVsIye6-(u.W s}G3i-&$FtNW@[!gh]DVEg=ln%& \]™}7O^77G f(QZ#+ ls6OJгyxfeOkZj=J䞧3N[m%<3ˈ ]Ӝ&~@|t=kX)[ZT&:VR8NC\Asx>uOIjgۏifpz4},d lJ5q񷛰jQˬ,<6=7X"|\*djJ6DOV=b@& /gYZPK!MfS x86/intel/pmt/pmt_crashlog.ko.xznu[7zXZִF!t/4 ]?Eh=ڜ.+웰K^bٌ'uSzr;V@- }f%'-FfбD/IJl7bL720"GOf$i\Fٶ]]jaжj*]C d!Fs0z ׌+ӐjP]p6#5|FawIjxX#o202 vs[ Iz;Ϭ6ƞ_L Ir4'^9arbʺ v"rp8(vDGr14r+)Qꄢ3֚FuTPmͷg ?U@ф,~ctay0pIIoEߤ79sk _[,G"XuR3;`v6 |tVbiٕ,.1ZS9vzכJk@CƟQˠ" {2 V4rp:f+y䚦h.wHũ&TeV ݛ6 +NHJȚ=7s Eޫu*> :. 8;f*N{T𝆠_ %DTemaI?f?Xyi}NZ.| S㺴 ii*R 1"p5 ~&NyMJȥJZ9 W㰪LWDˍZ]_-@FQmq$^ Tqnoܻ#XfƓ7]ߗ7[dq_K>7$Nt# VO"֫ZOԜ}m  f 3nkk?FYʺ[A~"Y%r[3?WLh|vHs)Zk s # Bu!׆vyq BhHnձSJ,&='#+yⶡ!dip:ɱdʖrFjб!VhSL l@mRыqbB@7{EnI!Nm^´DĒ1sqrhe>#4ݯo}]wDPW4>!Zڸ D.3AtE.ܲ4W0p0),s)D:JGp,W>ЮpsV2>/IW60wiUhx'ed>0CBPtB:'DsFߢg'lVk"n>ådvf2PXLk2Gp0 _K!iWjZp`ErbUm 3O.eZ@7M9tP AUfVg iZN*"!,1"Y7 IW99NsPucDT$BI>td9 ߡ[||^;˻Es"\ , bLr.!"^t%#VD6LVH+6#O%a7y,88OͭT@Z+{'k}āΗmξCD`f{!t_y䂋u_߉_vljHZ|ҼdY?`h%\ۧe`3hJZqOk#R˒k˷Li k ͛Q[7(¯}*;߼Q!nIe<=q+^ 0sU  >݃ 2iȊ[/1 iegYZPK!_ G.p p !x86/intel/pmt/pmt_telemetry.ko.xznu[7zXZִF!t/( .]?Eh=ڜ.+a& FYg*-1?x/nx0ɥg=jkQC{gH*Z,i+QG`{u Y2wd3W6^TnjX($2 koKP7L [۟qto,кu ͸?t$k!7*,>C"Le))7=PZlMLo("ȿ9m%mq8{Dy%;f.{{G`;&M4wS>g@w7TLEƘ-\9X4 ȋ%DSD/c{A}N/ϠJd!oT,ᇏ>qͷӌLW?tq~"LG.dOz6xG[0 ׼HY;QS"zWT)c Z a @.vGAګ9 g &}+ #QASs7`*2mӮ ME-$qͼgliR,~OD@(CO $rtHn, ΋92.Tۆ%ַ֧"qN$Mm44oޗō53־Tנ౧vMn*͑Si<>zjբs+,JAp{.ZƗ"F+2VU l];xbjQj~2<"LG1Y uDg@2mZ/3|hC/'2c9FU&vuE;ҁq_ .*IQcrՎvшxyiO)oMs'b|9 $ %;lì=îuJ81{ѳuBI.#]RC҆p8_IK>`Vy^nU5T1}~ ˍFjETŔD.&/~WF U ^uqY c6p g;Zdk5P`d~.=S ]q>6QXGzcX;74.K mW +,7m6nΉ-Sݱ,zWZDv4 }dcnIt_"Yg+*O!۰RF~x(bU4 k;RKgX0$ D $WkU+ <&&#^+k{$YaEXF( <{8)I9ݘRhPX`Rt*pl8@D0` УvNKUAߗ؎AuRIl|s7FS~I E!`!w+Hsi EocQ0CvPo|QM|mte+O,V&g&o;N4|FaLZDcOey{}i+$poFt95ɻZz4<\3%IG6<"39[xuQ1foUk۬J2xUkȇB5&(3&E#~`GTL14Ӧu6Ě/qo얾&%"qfu~ {gU쉝{}yu۶kB'r$1,=ܠ)ϭ) ZvMs'r*3@tn{qz 5=.tyܶC3P`a~˿v dbB)<ޑ%K4器n] 85(C_xrz5J%9TOw^Or0.ϮK娧kh >N%pdJ"*X'};j;'AkZ8PBSmyPFHYsXC^ZQ6Wܟs~sI\]< 1^uWGlFk8Sq} $ON"pi) !? F/Rdi܎;k=hhjJމVPdd/dj߳]`5߄ݬhf7 1kZėknH#ŬRKKfz䊝^mUߩ D[7TZn5_^>-Yj0rv*;FxPawS4R$J&ODٮwa#Nvz'^ZcvRސ  {Z/֣ռK2npKAvӮrw/m鳒UfY29gy%^TsdP+֛et${qpy-C@P !x(=7/N0 h'd:> o6ISCH Gf _ Qy7,k%0 \(9ԇD8@!qgl̽2d9+&B /bI/.];q.Q1b8CPn~&g7}Ar>i ?ta Xd{Dvڥ?BCg$AgLA/;e|j6΅X` ݯ[WMq2/k0*ij5JXbӑdyirB80qGN OL_~PՖtvT^@ͻ{*=+? ođMXz/.K`֮ሹ5 cYst҇4/&#=~T/=+ I l0Z?j#rh'OfȁV4ʩ׏& J:tsP7Hg)JO"}='W~r Un=e(MRS2 鰲ܐ2|\LFFχ`؍icB!mon/KyF)b޷>~/ f#U+| b$>G MFcPbcA9 j*hY ޾{AL!ԑz͒#ҟ/x&M5}'I>aAk|@ι7gR9LXŻRz A<>ELz pwx0cJqs9ZcR @J2U2*&%3_{T`&Ū!IIR?t\+. ġTEIGHsTK.YE;k\[1սk6+ͷ%<GXK񠰤*uR胕\2i ˥,ߌe$l+n=xmAuZi; G73d3&ؕܙJ\>hmaX-^^ѶŴٶF~ tu)MvX#`n*pĴ2܊ҠrjZ at*"fABc8{^02b nL Qq$~cM>$ǢQ:*0da;Dj^*Lԗ]G߶;!#Wt|oyIT,pE]k(ˑn6t)"'*=tקO:т:<1*qny=u2g]x_gFĂ* bBh9>LySbs!UЏ7/b͕ĺa\w: ċ0ɁRZ~G0tU=Zu7YLGFvx%=]F@7U9~qLg"#Xw}_ Z5^LE҈;Y%EsXf2=RiάdqrXU8-uh*>:fpۊP+-c!OmV^K 1+)H X0EO"Q"$%uHp Szo6^NIlL#uc?!FzK6Vxi1ϵ;%馱󵚦00ǡ˲JD@k2r!+#QAMj8b)%@p?~UBmvFP]ZI'UFeUsrIg+ODH jEoWsO"qQ <fRT\NťPQ.rS_rrGchɡ^ZR郁F1G+%2"̗k7Q~8Uch]_;$e<>B 뗊fZEWe=w U0Z;m2e:^ʒ V7Ck eqVRf2}s<,䮘T!+Ț<  ~ԌÌP'أJA嗬%P\ MfJ6廏WpFzZjMGX?6əK$@uq iK=pFrZ҈הOEla@VlL阹s<anuMZu/Dka5UהO#jNqQ)^jh: @SFKublG;Y@b[S_pT*%y>n@ \JѰ8s烱؈ ȋF@ix"0qFs?`PJZz֠Iо7xQ%D׊0XùtP'hL*qo3>73ydsPx6,ѝo#_a[-g=il틽ڍ_C8ia.xQ)kf< ~ ~vAR›:_ ؅Az,kB͙Tnځ81>LD+ H]Q  eZg+u|oUr'Ӈ㛤 Tj [.>\ZW/˗| FVmE#zmSOftN hfej( 3u>CCY#uxATw~Xو|k]袇ތVrzWPߟɛSb/Cf#e _g@Xd$TrJ)ܖ8/K,@Mj,t:|0nٙF&k,'BMt0^9BҐƿ1~9 LK:}舮&iU>Yp0lwDn'N&vv9y~/)ď J0nhZ}1II>F TAT0WWr62N%\^ J\/ )5-?B0FאJ 6[)MBAy%,}w*"^ . OQ9 롑zSXz} z{6& AZb1ksB/:v %@.gcRJDVeCŘ㽒i74X7lB=4$MZB%2+u'-)G?;R(36u|?itfiBJ^P($HwPxYgǣ#aճQM`M{i@U LVyެ]f~9g zusۈkm2BZ3_\ە&0.2r]Qg8c0j];a__d-:9edrC @.σi$a[C)ђ7[F=C-UV4G@ _m`^"p,9QgϦ<66I\̒nꗓbuv:{0܎6䌊ce.mAgčiY}[pO;NY@hͱţ{3ܛ(_ùXjd kgI:$c?*N]S10d-7A {}>]#jUu.!ు,.!"žr&#B.VMKCX f߭.X)m!Z'\gBmӫ_N2&(c Sy<2y^rcggn2R1E:@)ֳ*NfY<Kk!k.fKf9{|DaدՓU|&c'bfK 5XR7z+.•OpAPE~P {ޖ~dQ,O) lkvV?m'wQqc EAxml74=#ȍ'gYZPK! ##x86/intel/ifs/intel_ifs.ko.xznu[7zXZִF!t/_#]?Eh=ڜ.+q@m.a*,ExB&0Tk1l?S9j|^SϿQзTb h-5lt6g?W\;DF[UóP qCɳ)e~2qEtrKmxQe%Sݴq/6}תObrjOa쬖3AsTH'%&ov5bJ:3gSj7Amxa:X xEPwD֭Т k)f.D\!2NZk;Z6\l2#.Ar>/' ||zR<gm 3)[!fL!/O'Nu56]b.FA>=ЕQ:sdt>_Ș~xo:Q}2k\$چ^NpجfH@лN5ZcSF*6yy(iی[;S.? Mؤr':$'x@ݸex" c$LP:Єjڄl:ile{O&G9夢t!c,ERmkMOgk%k!?~ x?~={%q|"̀be G!ѸPʫuL`VvZ-/`qNz)ШpJ'Tɮ Q.! ?]B]*8xrSoYªsbk48ž,hoPQ?&mcNҳQp{*K'Ѣ8 UDUlb7w+ RgW{ [! cTk~';t#,j;ۋgdʠ=8e }c~p^et|Mua+j[.)a{?uDm0}HeYGfi @uWQu[^+hXK/ݶMkiqWb%S ФZ4/Kߺ<9}0O |U4i1|[H_:tԴWǶ8C<<S&86e$E#,:?,fWcJqjΫ/OD^N'S?}cpD cU{B5FީIB44-@CnzK%!7 Λ=nz,B[{S܊es1@my`5mkRETZSig ,<##$}#zzNe|(ZbMc.1 u["{#o/ C;|O׌v9SCJf+RyVTwdLB..7R+sg/8~\D9?-PayM~,%Lum 6+sj9X|MC#I凈Yvf*TD#WA}+k]VY?Sx˹E=óJb|Dh9?$Kv'Um';U O>Ad gM4Sˌzv {Po m۠Ȳl2)Gpn²5VZ" j٪mE?z8sv@ʿxɎ^4]G|nWSP|(5XF1J_v'/0B-IVv$!U~-UܞɗKF/qҬwBvh\JM\?B"OWǢ^xVRMP,Й((i7^ch~pf eN}OH҇`,W Q$o 6<,h,`P*9 sz}?aJjҊՁn?m%ّ |fF#j#ƯZnG#ⴚtu!U%/yhJMimP"7)pP.{E8#3P0ǓШ4EVlvvic>ry50m#lBl!ԝs,RIcy)%tsEdC^/#W^/a[*M:ƻ@S$/)7!oHQtM!*VAPӮ;2IQmRf%s#ػA^x?]5avn 4byhႀ1\ cZB80c26it)HWb>_Suz$3e>B+:p?e;t$'+xT:NR2~=ː gܩ`a| B߹1~ȈMxI Ls*薢3Q2E|l@[(D|X-7@i,^39w~ð;}vA*訿Sal1)ĉRz) R_T´e%P4o+DCxXQ4>3NSR lKĐ5O`"aD龡H;R]0@{ ԁrH& Y^N a\XHp0 Ѓs+ZjdcJHB ZNqHFZ+?]&、9-{& gZv~c_rw' V ?|Id>*yCЎÑ(I5{Bt:A(z4F[e})p&M߷mw)^!>Z@Pe`G$4cPAVלpw]_wT;WkO J}r֪cdȈqGFX- E"#v$Gm3Nq3EV;j#`e P.ѯ jXLPAh+lص47^ i t$D-b S] znUn讪Bmbv?2^Ym<g`=yvUfc+u3+lKy箌>`ItseuNr_rWul8\PSF25{j[5pY+S3F#q9I(Uwx~!5:ZjSihs$|o{?%-<6\3Qz(>ҭ/o>naiAXC+]׎*gUH7~^ocBl85`# ^:k.S[Ɨ,mL0so'f'G{Iuل˂RRl8{xX:x i13-tV=b;HBfY]dwɕ\Bln  7 ,5tMY0ʳ^۬+ 3mǶ̢+fUSboǑ p5}+DYaַD͝ zP#Į5&@ QjX1t 7D)rg4fd}UFBpJ {jurP33dPO 2㍤x2Ir[ ??~3P 2)|7i sd:ClI.j5Q шXvyth CQ5ֹx6i"?yf@إS:"ndSc F< "ꁚbH͔{d]֠5l-(x!-Z]>;1#3.H(0+YJ0x+ՄXL./RdТ"v&9%V<13觜u_#eV3G!gâ' GTulċ;`Q#TrA4Mv9vX-f@QWF,lx-x)hX ɍ۴]#,g8ogEڣ'XH~3oԪpqU۷tH:n;5Sn*+y>([ usTʡrɯbZK}$;Y*l^v V vLBK5AךaDOF ޛ}nYt"ݬI!0|jzRv8r4Ӣ4ܲΆS7K*`]ywp%2Yădx e]z1 n~E풒۫[pa\ljK'd2[|F(#fb"J]:[I?2>ƕG7t!N4r(K( ?. і)µU"]IYHZqm)}^))-^ %t<݂16;&/ﴏZv G3N@"cRi(jG%Cߖ0AB86 Kukeus^ɠ' Df=hP6ƌڄ :oFE)1REZauqʰJϣ`ZzQy$s Ut8m7XvѻCxjyj9.i`9|IEs=jTFU?[#zx_r3,11{R0(xC 5ru5c:E}0CC| ]<U=\ݑod~s+yz,bmRMb@}őN} n`$sg$@9 5h5\_#H ظY6pkqI,e9@xC=ENeN>֪$sNtԡȄdjSc5ʩpjO G9܋ f/ \=QŃ:{oaKYsXմgd$1gz34p #MnJm`YSa a!~v^ p!bn c{h\՞ %do;!?G#bEB5ZxD⡜鏇ٞ uDG-1J4&Rx2m߾ _Qskj,冼4&"E{\^Hl~ UDFD*@v0 'Nݨ39S}ۤX0(9q2@piCÍ> @A'ߪ)f'+ 0WaQkB+]KAEl7V9^\hb6D"ӂ>(fʮĪQ3e2^4 VuN%Rpk /z H$zY6(T}z^ S)! .%C!*#nRJKA-UnRG^` jGCQ^"NUng0Rr %2yJxstsN=pc3PMg;}f6aOe!^5ji[cB~oVӸzNw<9 8z*R`c*|ƒ\&_ӜjJ2 !2GR_S]mIz R`e%R]N-]:|3R3X? ] uȆ9_eWPodġlDln ~P9ha!I?AbS87)YJ[ކ3s[#9a땐cՈl]/9AM|7*RxyhY md!ʼ  {4@<0\E|j&uo}ǭ[On׫Hx6·NKiU(Ro!Λ ck@5h3Gd“Ĝxtڦ6Ŀh`@3Dhҵ3(ɬ %pтZOU̅yS})IqBgKR]/M(Y# WN\kq "%v3`_9vW^[ qp aHOQ4T3&4qKٵxVrxipgy8 Qs:rJ91; < +-ح=f[õޟZL]d 7Z"Eb+AJ\ֆMH^jz5 ڔɧ~-;!E$Ke1"N',?95xJ9GgYZPK!a;,x86/intel/intel_vsec.ko.xznu[7zXZִF!t/OH]?Eh=ڜ.+o>/d>"M)i8*Rd Yo{ *AIm8qs ojR0>\pC@T́2T?!R5U*t:(PSGT:|-*EvL:h`Gi^~R+UBMEc,qx&Nˆ؏B70 7t| /v ϝ0ז@G/ ոwV6CU0qq1NX$Հga(" A!TCq`6ZTN-)vKJY.\ܽLR#Ul~&|HA#0P6L }d .R@2D|+Ma疥]Cg yo˓m$U6ŸFCL7Mg|O1dO2.`K vW.'kGj(@:JkxNڝ'd|uX̱5:.|,KDn$c܊Pf*6\RuW>LYP"]t !AWi=}-{zL̀AᩨASE,b)^epAaA&Kk;c9SFu>ypC/Z1LEjfgbjO5Ko \9 XwLnEeJtd(?C:rxUv.Djb+⭌Tܶ[S**Rw'Sv,Cŷ%2JH1XŌ<$xOssQvMOIQl OEڍrk7Ia\Q@@=nl 7vFG$*PA94WC>E2wJu12c+݄pYE?v^5kdM8LW-' I{:[Ust1(~vasǓQTLwʙXEjTW.PQCpnm> np?̟Ub`_>Ua"!^lO…s0ipV3Ilطg/#]ِ9dw=0(9iwyA<$:Y ؞\{I Μ¶)U#LDvy-!N=ҕHVsmj2faRg%M(saBAMA^{GZQR h3 1Ft%;7W2ʖ;ެ  ڌ^}_A`.UgGFW{r hiF{ّm1 fmx`ٛDžANޅ,Ʉ1:aI4ݯ#gCiA}m?a+1"F5L=E+B3ϸPDcNr_kgbSNZ % &ɓh*,抡l~d GBC: ^ r<=n -ws2\ٻ)3MC&?<.q3j gOBF0Orc/Yׄ@(mp~r0Dqwn/`X{e3P4esa~)dUpMzA?83t]troLBis OCBnƂFLڛg66"2#U, (&b]Y4N; |wȒ Q Ii'S0*Z1ŀtdi7I]Vt\Eqp嚠~ 1翊p~sP/Y\R)% ͻjrW{VߞDcwNЁp1HEuu`.gF rXX( 1x0=iTTْJ[**tQCԐZa_տSWTZdqZ^YQn\I)<)P^_B{?T.f|oehQ49c>0߼R@}QҖ+ΐ&xmf$l/_a/ ,g'1} IzuǚBYt f`%|ݣ@ 2C!A+I5n O5?o!wBQ;h<ӫT$"y=`I椂!`kMo0-LK4nM\>Oo62TL \ĈC܈®7K_3YSYempMJ[^(Sʬ4U@4G`uYO'5V 3 5hV m͒5c2 K@1]}"XN#ՉP:Ϛ`ռb:4s;0퍄a_"!*!$a2rcI1o>Ȝ=(kQRF#_Ͳa>䂩n|a#XsV:9[>(\g4C#?^}|On!`F}D1{Uᵣin.#ZC|?mCxG4W: |5smĠtZJdaX'#8B6{| sϴ8,J`BYM8S>PBQJ}J^*C^qIz=˜rUIcAS%6RD&ŗprcÞ;5B (||ug1xt-:jK&O՜uV XGRPEZی Dy _Z% W/wK&UXj9/EwS'Uv)2>̙(S?.T{єU:AcbaT`kpo7dF_ƮjiL*^z(3Uu-l>oM-WN|G)Et.w 쀭!6cl}OҶ2by(X'΁ڊ 8*AI],zC ּf̀G*3pOҢcgb*BT`,Ά'+}r\UĖB)UBZ5 u{zg!,pLXBoU w=`3L $X!uAS_ӻ aAzBtr@ǭ {Rd5ۡP=9Kʥlrxx8G8mU)c;N@$*+|Tͽ:cQG{_(&@Ŵ-Y&MW?`F!K އP;Šu%5Jx _`R|3(P5Q[!IJ>LjեD5~@ HssX!g:xaEX;anf Jy۵d(jS^ ·Oqp&7[M&tUZЮvc9*a9,5tR0a?iؑ|L[q:#9\-BaZrP_/o'o^Cl*> 0561̪lԎrdWd]Ҽz$j ??CuY믌{õۜoHo҄uL6҆SvTJnfmͲ]`lWSWTYbBj֥J)BS_SkO(0%ܿNV{13DW4s ܞ4&!cZ?dԷ[((NU/L' ^y`ޏsϋ4դ0nf8Pi ҂ď{͗Ad)nCՂqd&gwgYZPK!ihhx86/apple-gmux.ko.xznu[7zXZִF!t/t(]?Eh=ڜ.+9͎3[9-PK1/wy/gZ}[pD7N ˅3QE_Po5@[u2R/߮f8\Mؿ-{$ߠnxŃ*i΄>ePD3BL q:笃tnU'/95nޓcf+EH!~Ħ^$vHړs\fM۔0 [۰M5w3gT֒Ibj  {\ !p[)d@w_ zoHR<| htj6 $8\ь{:1 h#2_n(Juζ· ?/S3rL w9'>K M%v*km"km[5@[w@lRzAӴLϫ#BPղ=L%p#&/.iv`RvgɠXCReWz0!JdŬl!C6$=JtذJfRbr.CBldIߒwTC;np[eBw uE:b;ӎ>NIoH2BXu|tՃFQtuxO4A;s^hL| y1j*?pWGnc;͈0xWY}dr,7ƷvhygQ's_фG C6n#/6yRݗ{b΃\ 7K~v+`/Bû&&(EE5%Nr霜2r/up_:G؈7E]nTt92 {zWkrPiK>+$PhH6.q5*}GyDCa%pKm!`bK''UFpU H {(a']N eMh{g3wΆЮ{ep =HEҘ7ͫǛچCnxFYHaa]n)}F3k"mzs 1ƹڰB0@ntOo P_H&u )m3ESSLm8P;\p^P9Au@\JZUsVXIo¹؁;M银76Ǽ3#4 ~} E{Jo| z jeawfvR'Z&^8: aOJQQ~mpt{y?59D~RK`x?׃-0"Uk#Q [ q4Dr=H 2nZMjvݢ5j=TuyuERJw ~6!wWRw&N4V4-?ϖ+nؗKnƨ^@wbM!RJXPP_V?ԜCRqRԿuWdbGF 4͎و42mR1 F領YOn)-dMpm%ps"J% b+E =^jSJ}s(Oe+#\ ڸ <^S^C|k-lϹU"GuЃ9vQ`)3Yp8.In_MHfY*0vpQjn#\cSxDc!6bCH%YifC0wZ~k,@>g(-($!ȿ=!bRZ>!T dSZ5?Ϥ7ix7ϒ(mnWR.k`g*뗷R%g*Bʗq;\DI_(p8ۯiKV&;{jҫE(s雓Qw"T Κ^K;|$MCa%!SjB\v]V>4ǫx ~qV*_[ oREߐ]$e !ipQvԙP vZZK$EKrQ'f,✤⑫/j(\lz}pt5xU&P>Pz#!<\w =60՚xX^p̈9l?.0mۘq7C 4ޙ,ݠkiCnPTI@:>VO;VА@1j㈘.G( 7]XtCMTmJ-eNQXŵ|T@]E NQ<`]'BlR$2/.u\rfp:jL3%n̥3v]XNxURo96I{G0|d\/??}yxUfzHf`s#c骇jZmڍ(KGT "& 'Qs&K0Lt[tnt VFvJ|@K)D!r<1T.@KY݇҉'͉^`kk/B\jmu8TNMnSІQUG v曙!d_c%޻^11Dӛ ģ$S*0& DiQh H=ZdOEQPL<)*B^rE ûE~Xhd[~V6WТBkko!uGl>^o8~mܧ $`0y\x" rz̛I{TEqKPBg\!-wVy--!Su-OHn^ \!M (щmH6"\݇ͶYUZ = Sre1+ yJ#P\S8ј9;vrL-u=AMxgdLw7Z1s7N$$4hlr.o?ׁnԘqؖ%#2}Ėy=X(-7e0:@eܥ?:OGU*k2Xgk3 !2I2Ủ0*yKx P-@+{2߾q ^\lzðlm,.Zo]7{nɮmBʛږb{K\Ժ 5>ekR>p Yj—lwq-S*F&VG RqK  =drSvfRP9  P_n=7=O#ktVG]A axD DO0ƇyT9NXSP>V.XN$/`a]~1$p^Alu9NndUc%CN%_ .&Mi<ɸowdAN/:*NZL ,JD=0s 6</&_+./6cuƁɛl%F%"WGhMA =:x8> n,S`iVݟsr'VL=s3n#|/i+ͱC^:PA;U >oa"3n ۽Ux33KmP1fjb>v*❴wy۠/$JYSa_="ק )t6g^NWezYXTQ|$-AguctIݾD9nE1t$T|}Qڡ(2 * -?++G9FB<ջ}Ijjkư35`޸Dejm 7I;2Bk 98wHʭ¥)o:6"/>?YT wv\SDfyvX]KpNHUzm䠎Q|c= ;\|6c v6|!!Y!ל3alX]t350.#4(qV'zRsDVTg5smkF>@~3tb..3R<.`qA3*C 5t:-kxx1N yyV8Oj2HÓm9h6z =ݲ(}4K8W~3r&^τA1 i e_&)p:FSMo+i(] 6(l^6Gm{6x&nxGbbiC|(e4lOgYZPK!'Γx86/dell-rbtn.ko.xznu[7zXZִF!t/U]?Eh=ڜ.+ʃrݚTew0DX!ʲF#,]=:Vܧu7 )p/*þO T݉d-qۉ}Ky MYίALAjcZ^},Nd%vha=O{zׅx3.]fZy>{o4ךR{B+ׇ0 zBy.ncNx5ug9ל tG,`0Yd+F9גkXP h8ԥMGok/ ?Κ{\?PY?ZJכIE>ӥtZw Yzͺ{i̒ռpƻ,QI4_4+'x-.cnR14A#?c*FC6tie8`xM5n`9g[L;{JD?̘;>"Ʃ8 6'ަK~(;RWK,+GeDB +q,p\)Mxd>E~[O0Ȋ#oj4[uPxArԠDaÐ0/F;!MY ! IpvRƵ>_V繝T51OW3KdkX!C5_uX2 Q􃰟֔[}k9#Eu6VCQk2!;%|.IdokA[&N.HK{={Vjfn59XR]Z%JeqBs;+yuz-m݋Ajm|(!Ț%3<- h𪯞ٗ6?Ez"wO IwhjIzeJwc9emkR05ౕzؚΏ0_nKFB2cHN˺R&FDDMY \cH`!˩ќmu=){wЬ:O^ 022=dj&fz23 '&,s /*Wb]lQќz(L3 ;`J\f7ͥFym,%@O& , Sxc)sn'H!XfM!<+2(ni1b\IVBtm|>4d܍&[,8|`S ɏ^"~A#tTNv$εCxX)`){7ew,SmQ ё:ny>h=JB[ z LGG}$C.GyND\8Z(;"0񵕮aE+m{Vj5T~`6KQM cٰt +>#jʘN0 YsFV\5z|zɢmR "Ŕ3ǏO?kҭFh ([nZeg64l7e:c k TE{qI2s!~T\ێIz/- jhQ3DAԾs3}I1HWRKD|Y⿃L{/rn7 FS1`/!ԳݥLPͽUåp'Y3W6vޤ_{;d|{n'`DL.{"^gaqc)^qTjU& Hf!x%22)z0L1W<$+(sIPZj:=$Հc&›]prW%{5 E,4qTZX6O©Q}Sm]qlr-ƟE޲ިO Y uӸkE@AVV6*eȾŧ0OޟYtthx \F+Du Ė<1xtq߰\ i5O$3׆^Pr'ێܜ=giy?ѥy2J<$.׭i fZ/ x.Ptt f=E -n;N6\Enw Uqo_)}U5RHd& d{Pm:4ܪ9Jd% ]r<>c<4z`Rw[]s" hʽ je'#dtM\~ ?NK2O +qySa;f]r?XO8~*kHt{ί@O(2ULImֳW3BrsUk&ba`!YD6m^J|R?[kX*xxNԚ~inT0a- Bxqlʠ}-f ҊJU_JL^39~C?%cLvMH2h((5?̦~%tۈCqC,ɷh"_/;7R jvXj4D7Lp$/5lystuPi/#0綮Ѯ8= ]TP^QWu}M$X h\p&ʏMYVP,'eܒ&uOܽI p B=}ML՞'1";q#l)@ ; [5yd(XƇ ԡ-~M'^XnN $g"I]99c4I7gHicl.% т>Ҍi>o(3OUHEǩ9'CJB$ VBQ񖱥a @ҵ΋hT"JT\0.!*X"m$:H2(osYȅ>PjuZf44sg  Q:ss**C4dS3K ESxD.]FviLFݦ7`Sz?3P.yGDL91&Gi3&Y8NaVD?}V*QbZS4}_a#e/ܷֈ$~heN |חH4iV0lsmɀ)nd= mFJ[O+QۋCyPw4eVh \2V+__/iW3\;5?l  g_Rga$t / 3tt*\d=ǶWoaVizO pN-\yQ#J6݇{,AR2t(]" CcbR;qd2YޞڐRY1˜ЎVaճ(Y*J[zPk|/F̍^ IݱBs_M/ &nO}D {݈t#(,B4ʭMH @,WDlVq)YrZKh2, {OS%i=iw= e_d@*ᅥ *)!Q?6 Zob5&!eBr!T(OsFVL4ًcq\8τ'^֚ˮ}7sOeO,uFX| TbOnNeVNU^]\?C^7n-;RH́![[}@E-()$dXZ,2CȫٖĠ5şw A67$Qx,J. YnLw- zX[J4s-1Ѭ _@d"8qeZa,"bV"ĖvYBC7>edcCcV;(18'5 EHU={h(Po\0YS dLoLXS 'IPWhc[moV-Xq`!>ey= HNC #~-y'PDc5F2lL ̠~lյ_T@aaYgX^z2f> 5-Ƃ^@(B- Q(*B}9ly4sΡUqT/վJq5[ 8ئ}Q>/"Ŀ {a4{h2Ҳ"̛4î;oow?A= ,DJ j1 Jw:ڜ ?n }t`Kp7RX<" c&p&㙞܅!JIaOrnaGu*@; QLssqC\G fzU bn^M4t5eGl'n&2KzO˴Gއ5:fgLF=YăhA;.|ig-NF)HɿtO[@y{?u|tY_`2D2ʀ|ČĂ x;' -$^ϴ3W֬M|9Vy/lD8ñښJ3T䠸YUqՐ|. .zJX:#Ҍ%Sq}gYZPK!_s$$x86/intel-hid.ko.xznu[7zXZִF!t/k]?Eh=ڜ.+HLoߒbHFDÍca5X[ e_ &TS0Lv;'qQ&oqyxbXy밢E0VkwٛmLlmvQ[IkúNJ1A["<!^m@0־ VjiOF@]{BU_#d!ƠN6XXCJ3yވ Oh))ujeYW7WfcU"H1|anpJ9`V-<p~0szlQpj}a'|?"vz?&g8}T uCjg;hܡ!}05fֶHX ǁ4vI1R.dte4FrJo6_X> QnP PljPSI:#YMɰ3 x@W預 P:#.Mah-Bl>fWYoEDAq;TUj򬳂7?0yg̼vWfA[عTHoh6Eů'--6i ǪVy?=uצюP95 ڴz5a3?qŜMɷߥ<{&/d6%& xB~54DW,ܔ.=n%Tթ~q9 HUk3;5}ji{ʖϲ +ckѪ.eWLizPv>4>(.Bv._ aW+ W W2ѓsBYF15"|ǖF !Ta{KJ;, Rԅnn 08Fa$cYaamqP ZaR)'"ٴ_=TP\2ED *~L nb|>ں-.(4 <9:Ğ%]&]/=W0-욣ƣ Ά&`&mM>niȭv<̲s~)!'ydGh&Cib*?ɱnw͏N(:aQ*ٌkI]cҲ2i̞k:׉VFֿD_̹"ht"A@n”UIl;luqAǒ Kqbpщ0oSU  9 ~(H2IS[jo{4-?DPXD6؊[98|YΣN]6G|8 _ DIIʫ>$6,_$~uNl*PÛWFuyjed?EVi5j G:9gG>.[,2?##E+ŒrߪѦ/*ۓ2:~}8F׌] ^# ,=vQc'cR[ޑ}<׵tg3\$}2LI(uiȁ#8CQ†r.ް&"Zf람ŊC|RY`E]uH$E2uW7FpnnHuzIrp+KK)cKH[kzpKz%n/Fn8 +nh&ꢆYv̊Yf+A$a%V+t>s\stuHs1bO yO?2(ʝ;x _3{;}O+~x@,y'4cQIƂwxmP,t&F57wWE&ې.,-t͕Dž2A_U{ޟ8Ina|̀9o 񖅪;)E^;8Q2^IR] F CґcC}yinA7R#`$-0Loo~R·WBh7$;6$t.dDia%s9!㧍69:|(6A3[~6tX垤sY*m*1AuvHIOpx25zxPxP3ٔ V?/#3[v᷇Zw]ȣS܁3)З+E~Y}Du4JEBw+2=֒!{@*Cuig2:3'L%^VgmҲ&?:*Ъ*\pz5c{ ʕF2;ֹRd)l\NOౌ[C_R:8,D4jûy&|nA#$݇Z` lq!Z?y P1yI_[\ԓ9<)|+e^ 25U*̐uX5Jݢpt kC?qdwdV-u.I:&UDȴqЎ+[vvíɧrdzfy%KP)ac%lXU'SA}͂83rD*~X˗JQ Lq˻enU!_Nb w˹Y9m/,9{M}xp݂MMQ*t"@{pԎfޥM*oHǣV6w^ʢq>Y" ;OuD%cvSmD% $'l$dqQ;EsFS ^'YdJBz .o^59_G&sdtgdP޷yԄcaق^j=];W!G(!L(yӼ5049p"Yj78 ֕#_Jþ n6hvw [ܓ .E߰. )-AGl+o mx-Lp=\ύ 32s1`Z8E寮Ϳz0EG$~K ޢ ^zHglUɝ+Hj8Xl 4FR)S2gbq&aQn(qeGc >Xo(èSQ749tl)%1'I7=:Gݜ'рXWTRFL2oQ񥂽ۭ~ yB ,>0qN(!/` 1Ag1lP!tگ; lHM 3<q&|7ݴ7̪.up9D^b@uqU.%X RYV@5apGF ӻ Sl[j>T{esœ;hb^Rȸ`Bu{x 9i:~92dqq/Ji*0|C<]=+mLmjsE#Atߚ8sxvڬz? 1N k0|rʃo [ޙ6HyUVz;z(wG3O~{^*[4[F^rGlԲS8#gk}KiD/AX7ޞG^ +ȘQ ~M0?qdP%xH!<m7H{P3VRyUl %h@]B&q.: ]XVa~a%hh՞Xl(8˱0y`9Ez  80@&]>?iЈISwՍMѫoixjϱt%7#C~)ebqD)jL3W~ P y1[،0+䶌oyN!iluk!skfWEͤǴ xFu/qRZ%ڭ4W o6N{Wv?. ٚºOwނE?MYA !TdL\ʬdx-$ɱTNs:ȱ+{ۏ5݌V{׫4o941@uŶ1IElݨu:"ST\݈d:X{k ㊬NA _|tjH;97Z#&%vϩ⋵N.w#xJ8>aLcAR$Fe[&wﴨ]G><\58c`W6oc )gIĘ@\+%C訖0% w7eŊ8U~gq\ yzy.44aW@WՊvWtc[L O7e_BYOQOnmX,Ib붉Z KDh.GP7"3ɛlZggwSe@5 1}W1QX ␃ƄL!d/^X `yͪgbjJHD>o7}!?ao}\58fW0mYQܞQtk/o.g;dVWSUC=`/Mg kX3oΜ{IP0͇%d9"یk#A|CiWJS@jW.M!~aCQ~Lˤ |g'8_XnөT'Yk Řw "Y+oOzf~yδ.ܰ.qzIMr&޸s],wqP!?$A?9]b6-hbYgYZPK!tN x86/intel-wmi-thunderbolt.ko.xznu[7zXZִF!t/$ H]?Eh=ڜ.+3s S;X~cKH/+kM\84lg$!V{ݠI9gIn{Ϝ*%PJL}kq薃%0aqPt&&FeA͂@*#(T`ҢjG7Ksƀ4x(ƉqAiuäkWSxfaj:]8.Z$%|=\G?J C Kⷓl\~l@.m_hw`%α+wUhҬ̀LO\k\^{Z,#CJG@|>9ZÚP,ro/Z:'v`~gԱ)hb@τjlW)G\Z3;rJ*ɋއ-Xo7u"[|ݫ)+YƠxQ1 &MvO/P8%~u|l+h1n{#Z&7qJ!b[[K-ZF5)2j[~M:h,fL7@$_ }`2B&^n&@VZ,ե|b[<~"%VƜ5WV~? v^UNxn؂w?[|\†$ ܔ9\l{¤TuhvJyVU02 uS1dҞ3\D#85 pA34SӯPʙp`IlkZ]neYA?BNT;qj-*qqU#,n\,1Q$ABURۼHfˌ%a)#ː[E3cpz|XPf<˵Sy 8p]%X[Th ìf/C$|rFНxiW#{h竡ZVҪ՞U=s\/;!j'hsW :uVyETq}CP[J,WknG;ƀBenz)VFԩ"#鯷8Zl¹DjC2 ohJBy܀^ RԘiڃg+5ﬖOp~PoH&TXXɕ[ur|| Upצ!6ᄆ @tt^tu嫊,Rqhck8lT+Upd',G6MCL-BHvЭwH7vG-d!X>ڱӛ3Ҥ` |ñ6dڕy.&uuW%R TsC@ SSW;-_2Q7?s_}t7Tqq j'0`7&Ff0 Sk֋Tղ>|׻"ޟv e/Duγ5.J-*n"NDL:b\pY[p0p m rBoWvW8Ctom^C#ec+ks*/@7=h4385WSdc129?om}NI$dR5X 5eo,3@f`g.hޟV ֪m8}|:7ss oΞv+kQLm Ln`x`}*n I> ސ?a?0j66u?MCRIw|Em,=Dl I- V[8rW%%:/H B!Ţڲ*ztf?aW=ݹ?XR '\2Y;;:M]F] #S(Ȯ*_YhllQ4n(U@7'Ra$I3 8gYZPK!a, , x86/mxm-wmi.ko.xznu[7zXZִF!t/#]?Eh=ڜ.+U>/>"M)/%ˮSf_5H ;m!wէo%s^Al鱄}괺*hZ+uDF  ru~4턪zj}*0nNWL{Up ;kx4JE޽3$L60#xQ(ƣD6adA}HaA|)꯵֪Ou-1O nam!8oΜ7zBA+`uJ%ASҭaK?NV6Yx y@8a{Ll MB5C\,mtb(uDm~a3|ho{rz e-P"I&{^;fޙF+̒wTwH'LgX.َErM % u yQt{~6!4Q% g֓ UaW?+wk̰5t7l Qɍa]1#. , u]DbᒳW _~bf$7MHm#νuuB6ZE;jI7o׍͠yoDžVQP;2d}x z]q!7r)QcUV 2oǚiO,pѢ i|L49(_;j94m1rP8O#H& ӋB"oG2p7n :1iSG#gYZPK!@FW؈x86/intel-vbtn.ko.xznu[7zXZִF!t/A/G]?Eh=ڜ.+Sí" \ Ӌ$# v{/kYaXrF[q!%cʻƱALVGᚍ?`M= edG=e+iAritW[nSoϷ0QUOPBH˫N|!:6^+^XnZH-"YS?؝a0]g)21" bDSn3վԱ)hV ^lϲZ:ozNONJ1 cZH@mOsM(ESY`/CN*`NOgT;=./± pNT S^f 1ČFJܜӻ -g*c uS6*ڮ. \aoJAR!J3@)YLNS\D~ %/I| Rۋo AoMiڡ+8|rp>>hY輤,o! {4*Xo9@<{QTɍe~`wFF% ,_8p&4-l+ufzVl>@1rқEGhMu3=U,e?\ܝBx%V~mMYUIorG n98]b 4K n ;>Udnf_`xp/bvDx5A j*gYd8Xm*n1oJqvƵvϷ;II}D "3fK?A'LXhl42Z]ś9vܝqJ>8]r$_o5[=h9ߚx U'pĤ T!I3WQb*MIJ6pk -В/tPOe%%}ٵP=Bxw8wvt/"Qb)ʴ$Y10.Ȫ&MEB& W6K .]κ.n*78=.H$չqc@qيpNԂ<>%ŽSp_21gۢY'X,cY|M߀\DѸu(kVAtI#_%R;b h%AqIF4wX1]R) 1xW48*ESJKF:5u,BBPm7ݳQ0u2抧5B?ér̅"Ke%[)F*n@I1~uH|cPy֮(yd_;aTɏbzzc7kfj1yMj}$1$f9pFd I'P[#G†QoZ&ۜmqJ-*{ AJbU32wC@+E5ʣ˹ʳz7J_6W |zIcmV#4]dV]JSw$Bi>k'C40-D4dT0DgmemUkD%8--m#pOgF,Fom!#?a22 CYBOֻz,tn8*bO_`zV4VPl?ԝ F@fAJBĹ]` fO鮩 Vc &1M/I~s]LGj$p×8L^}[OI~J.CwtRJIBWyqK4[B3P9Aݯ΀6?KD;>WoK)&618|:}uwVe =psWJC͵k]JTYV 4{5~6=7RVﴀ/q{fށ#!?_(tQXOa;@9k׊AˎtaT-n/ k|YJpyu%T_h@ s!"p S \TGK4ff w־gacYqsareQj5 -.* Yq]M9]ă:\$ȦGoAWȟ+~_Z8kH4#o! ~!.s HOxxlfP8eց`UJX9Wڙ؞8rd$ePw7JQ[+PYd}'@1AW_}er&j(H GbvrP_MɗR0MY~^oJ# v(JjrD|Ix`1({bd$qa7Y ue,cƊIQBE^s>qtt1-YExu|{L}iՍ\zXL *`J$[kʗ'18[gn`e[WT(~{o`% ɝODls (dXbqN`2^qmCfPI1XV#GҲu}f!`ϧY E5H %?'À|bێ}WjIF֪<wlB\k "F|!hW&j!nqcJKe{QNGu#܈EۼN0a<#ܩ׋wm#A S[A2W7G(e>kTm}^yes+fxg9T#"mn*gY`PyXw U~0Wl0ΜJ}I9YMcu% =Lfrw oAvc<M [A+v $N1T"aU #sB܇R'qMk-brO^FQ4.Q OnP #n`z2!1* mՁ4~=uL] Uz9y7& Nf_r>XY 9m2{;yzPeE1j)&YT~pQr |<&b~d *ZcJ`1]{}&k--*6 JrIK%ܞq%tcᖘOtɼfu)pnp*67 ܷ S95H'PpT#"`\46M| zen$ޝMW^,O^>J0,hY 8Zc> WҀ6l['$jgYZPK!Sx86/panasonic-laptop.ko.xznu[7zXZִF!t/Kz]?Eh=ڜ.+ȝ. &`S!ߞsuŌf83T6=C=O!E*UPaR'#$MX8Iqp!7y:|zIM*vv!.۶ א>N2a 䐛(1:`<ۊJv,12qԵmBOhYD}Ts_sN"`WMߐD`FB'&/XTXt "HDZ_Ԡrsͨ+ D߲v_CLiE n^:Oߣ:kߞyp/=dSВB +Q9J&sAo)m:'̜Rtt83]L8WJ.w>CE>:~ʜjm.!<1R U#{OՒk_"y)MVїkUpmv ^2zOzo**v׮T Go  1E8(_rDZF5'$0loJ 8aW+q_Jps*="6$6x}PT>whx'XiEf٭DUS 쌧EAC1+{3e8XxjI,z+[K$ɼSa@(&-YdW = cdjǃ=׫%HBx 4;X}7j9b^RGF>S+ճ-n 07fnxu}ͬm@CcS2 v*ї Ij.m_'$n7M 5銆Q{@,f9ЎGQ\t/#vr`?[3y _9V2-z. c:={/,v#5e]cccL@_D'  5d.=G64|GT.*ZlנxvGxrd^vshptP]0J8aldhE+%C1¬Y$\f`~ǰP{`ќxGoљ-r=lh8y1qPV2{lB:}K<[}0h 4l^#Su q_7A(9R - BR`q#>P&;4֩0h k䃍;:u /EP0rSExgkY/IP2wT4i. 1l]H;PR\QmM4qV.r6 h>HMW|@19tko[%fKMfʁ8_iOIp,"|pgBqN^D4#9A߇N{GILLjY)MY."ӇD{6&}Mc+ ֠y:P/b(/0O=(@y n?Uɏ"&bPImLEcHcMч u$YIPU@fЬ>el e')O'l_ȷmtS@k+ ~WGH W~.5\o5^ Ɗ Ħ6+s֩Y/v:έ,1<=LdHNN*x/pX# >&(Sp BPj,` C f?`xHH4D?3<l1KXS F%O 0rVH+VJje%hBqdH2Ko܏~ծɾDHg榈ٍzFE<_!f^=[^,..dh\ܥWy߮7UUϨҸ2$L⚌)HN=K n+|`hI wC^ʦюm &p4I?%JIY)R$k-ff2~$!DҬx{S]NW E ;;5}Xzj;Zņ2JMRJ-PO&])nv\Tfx7L$4!Zdh@ ))xy)4%=q|V#Uu]^&hİ"jOݝ1 P>l>Bc*HEutk4ةɲP.zn=s/|rcL羟 mjt(pv4*Iq [; yۯP=B:qlAgQr3Zۻ]{aL'7fd=x1sJ~?̒ONL. / NgƎ+>ٔZLy* $is#~0TL'ˀ6س;YH<ͮf<拃Bxl͋xg!uS`_XG^."^[Ng;8 {1Y;C 8Cw͌WA,*TQT{)Mбio!n/3gBD+i<4Y{Ugi*2Sӻڲ=;iPp )CpA9XҨ ]n\S2Oux0`U#2bMU5p+Gj<f~r-=|YAU6o=O0`fX]'+E陻'3MGK l,/]~O\ehDdVC4{ Ix>34#[3gYZPK!„x86/uv_sysfs.ko.xznu[7zXZִF!t/_A]?Eh=ڜ.+φs;HJiUmkxOHH} M dbҘܒGDvY5҇NN&>&_fѹ.lk<.|9b |-F)m6 ҇iRD`owO +O!mk^Q[=!eN;GsX#"<Ir㻰 Jq I|xw FwYP̱+ך,|'0 o/ nun^xdlt,)JlÜ`ӂ|$_q̩BǶt` Ā;NZ6hId9v8|hެveW [akrdoJO^கnmaLD;<)_HzS0O o&niLv w7F)KW F(&"SQ0iRyWo]Hж K_ mɥ mfF`a8;^$_lu#WZ75іʸ$dd] 1*V~$3У&J#Qa@V"+€YvHε;ʞXkOz2%Q+=E*JjYn'p9._2 H[9j F8n8o/n̻c<7l&ldyڔwS%p=M֣pX) 5vJHpV"`?Yho}4vm+1cFϖiwb ܐdE_~W6%.iu'rM[mJW2ZN2\aM2#jօz6K*?5XCן!=*}XsmdwPR=-c-y8O$6iz`U@/I\%~f1tFN׷jhoی A }]v햖PX?wcLcUxRyy J ND{`[4t ,@Ui'%.Tj 8+-k.G]SKE,&9dje^kfbĨг& Tf}u5j q\_߶x+g)&eA6l{pYUzN,dE:z;Oj͛hyᇲv($tgљlb*?I (j$T6pGP07f}&qGXb%3݌=<- I4l.wg%:fV2x3T"Z^ŘX/ G6.PQb')^IΝu]^z .={dFp6bG N4|?D8boH-[. 5MO!YWj[m`Y$G ٽ~kp/tbDDR|Ƌ=8j+.:U$ہt'z]ɂB7t*I2>/g‘UxНퟜaj7Rjh(往\(; W (B، ۠yp{&!Z- p+W3F%zqC#US8kS[r1v4Qnh%)gLZ԰XEۂMa]/&-~TsO0`Jz;I U sg拔qO!~vD%fY W9̢񠐳V0^g0(1j3*O {K%-> o~fk)!yQ/~mH|{ug<& ՟㜺9zYJkuQAI& ;(8jۥR>T4Tg°P.w:ȅz"S_Lg v`vxN%O1SBG6E;k UƸ0G( ZOͧwhj s!?VӊaEYs%rxjwHO$*pҶ, W@fA D{b*T zyJ?.s9s,l9jQe]У0`u],{+[CYy Z$UCkƕ<L)>d'ܸPV_0ARCe>;"qJ%1b>0yXG=`QQ6 _͑1%i"k%D*F#s9 C%Dml8>oJebF(r4o&Oa$LA 8)#PlK][ޣ9EuhWdfYhU"maq;#X-85tBX og7gn=gm5Zasl>.,m/ֿԦg0. 1I.C ~oz (oAj\F ;mnoJ܈?tA,,"we \!vs't>pu.@0Cy)6V^Fh>ef7:ס|*sJDYݧ6JqlnOZu*KL!aZ,¼%ȄVGW05V:h߱fj9CyC i2@Ona&Lim\/Y$e@B?H!}AanS-Ҏ]:92W`dxJҲ+ԪNJ;qs1(J}t> {3/gDՒ Y,~ SuxIv<CX&&cQScGnk+mPI8:Hǚa׹ӁmvƩqJq5962bSEto,S@kerNN ˮQMHo,~Iʱecݘ(o}JqSy ?[[8!gYZPK!/*YYshell-1.1.4.tmnu[PK!x alphapca56-linux/macrosnu[PK!b- #sh3-linux/macrosnu[PK! /ppc64pseries-linux/macrosnu[PK! ;armv5tl-linux/macrosnu[PK!u* Hsparc64-linux/macrosnu[PK!ZL GTarmv7l-linux/macrosnu[PK!Sag i`armv5tejl-linux/macrosnu[PK!!{ lsparcv9v-linux/macrosnu[PK!%.I xi386-linux/macrosnu[PK!}  m68k-linux/macrosnu[PK!Wn /sparc64v-linux/macrosnu[PK!h eriscv64-linux/macrosnu[PK! ppc8560-linux/macrosnu[PK!)Y armv4l-linux/macrosnu[PK!W(_ ia64-linux/macrosnu[PK! 1[ ppc64p7-linux/macrosnu[PK!% sh4-linux/macrosnu[PK! ppc64iseries-linux/macrosnu[PK!> ,alphaev5-linux/macrosnu[PK!C Xarmv5tel-linux/macrosnu[PK!9} }  noarch-linux/macrosnu[PK! @sparc-linux/macrosnu[PK!; n"sh-linux/macrosnu[PK!Wj v.mips64el-linux/macrosnu[PK!a媵  :armv7hl-linux/macrosnu[PK! Fppc32dy4-linux/macrosnu[PK!^9 Rathlon-linux/macrosnu[PK! _mips64r6-linux/macrosnu[PK!f: ;ks390-linux/macrosnu[PK!e Nwgeode-linux/macrosnu[PK! sppcpseries-linux/macrosnu[PK!` pentium4-linux/macrosnu[PK!@t armv6l-linux/macrosnu[PK!, ѧppc64-linux/macrosnu[PK!č aarch64-linux/macrosnu[PK!  pentium3-linux/macrosnu[PK! 1armv3l-linux/macrosnu[PK! Sppc8260-linux/macrosnu[PK!GN fi586-linux/macrosnu[PK!8b ia32e-linux/macrosnu[PK!?[ mips-linux/macrosnu[PK! ppciseries-linux/macrosnu[PK! mipsr6-linux/macrosnu[PK!  sparcv9-linux/macrosnu[PK!Z| -i486-linux/macrosnu[PK!\ 19armv7hnl-linux/macrosnu[PK!G7 tEmips64-linux/macrosnu[PK!i3 Qsparcv8-linux/macrosnu[PK! )" ]alphaev67-linux/macrosnu[PK!^ ish4a-linux/macrosnu[PK!nC  valphaev6-linux/macrosnu[PK!|< 8mipsr6el-linux/macrosnu[PK! Yppc-linux/macrosnu[PK!8b hamd64-linux/macrosnu[PK!% alphaev56-linux/macrosnu[PK!' mipsel-linux/macrosnu[PK!, ʾppc64le-linux/macrosnu[PK!O armv4b-linux/macrosnu[PK!  i686-linux/macrosnu[PK!m )mips64r6el-linux/macrosnu[PK! Tarmv6hl-linux/macrosnu[PK!s s390x-linux/macrosnu[PK! alpha-linux/macrosnu[PK!8b x86_64-linux/macrosnu[PK!6Vconf/auth.extra.conf.phpnu[PK!ib"'conf/CLGRP.conf.phpnu[PK! B@+conf/auth.sso.conf.phpnu[PK!]`vq42conf/user_profile.conf.phpnu[PK!e  C:conf/CLDSC.conf.phpnu[PK!EOO<conf/CLHOME.conf.phpnu[PK!ׂtt$Aconf/rss.conf.phpnu[PK!(ɨDconf/CLDOC.conf.phpnu[PK!EYLconf/CLMSG.conf.phpnu[PK!'NmmOconf/CLKCACHE.conf.phpnu[PK!u NRconf/CLANN.conf.phpnu[PK! e..cTconf/claro_main.conf.phpnu[PK!D{<<Uconf/CLCHAT.conf.phpnu[PK!ߒGfՇconf/course_main.conf.phpnu[PK!3 UDDӖconf/CLWIKI.conf.phpnu[PK!~,,[conf/CLFRM.conf.phpnu[PK!`<>ccʝconf/ical.conf.phpnu[PK!~Boconf/CLQWZ.conf.phpnu[PK!?Fconf/CLLNP.conf.phpnu[PK!mأ`  conf/auth.cas.conf.phpnu[PK!=5 5 Աconf/CLWRK.conf.phpnu[PK!8KLconf/CLUSR.conf.phpnu[PK!ziitcurrentVersion.inc.phpnu[PK!׭cll#mellanox/mlxreg-hotplug.ko.xznu[PK!t'mellanox/mlxreg-io.ko.xznu[PK!gYllmellanox/nvsw-sn2201.ko.xznu[PK!5Âx86/dcdbas.ko.xznu[PK!fppx86/topstar-laptop.ko.xznu[PK!qi44#Z-x86/firmware_attributes_class.ko.xznu[PK!=85x86/dell-wmi.ko.xznu[PK!~ψ&&Kx86/amd/amd-pmc.ko.xznu[PK!7qx86/amd/amd_hsmp.ko.xznu[PK!2|$|$҃x86/ideapad-laptop.ko.xznu[PK!Ziix86/sony-laptop.ko.xznu[PK!>B^-- {x86/wmi.ko.xznu[PK!8((D@x86/eeepc-laptop.ko.xznu[PK!T?33ix86/asus-wmi.ko.xznu[PK!AX X x86/dell-wmi-aio.ko.xznu[PK!i(@B x86/think-lmi.ko.xznu[PK!"BĜ//x86/asus-laptop.ko.xznu[PK!y344)x86/dell-wmi-sysman/dell-wmi-sysman.ko.xznu[PK!J/.x86/toshiba_bluetooth.ko.xznu[PK!N! >x86/asus-nb-wmi.ko.xznu[PK!S8#8#GLx86/intel_ips.ko.xznu[PK!ʟk||ox86/fujitsu-tablet.ko.xznu[PK!p%ax86/dell-wmi-descriptor.ko.xznu[PK!O''ӏx86/samsung-laptop.ko.xznu[PK!o8 8 #x86/intel-rst.ko.xznu[PK!y(Cx86/intel_oaktrail.ko.xznu[PK!W8x86/hp_accel.ko.xznu[PK!y[H x86/dell-wmi-led.ko.xznu[PK! q11x86/dell-laptop.ko.xznu[PK!ӳY"3"x86/serial-multi-instantiate.ko.xznu[PK!pF 5x86/eeepc-wmi.ko.xznu[PK!̷4!4!Bx86/fujitsu-laptop.ko.xznu[PK!f}444dx86/hp-wmi.ko.xznu[PK!40 0 x86/compal-laptop.ko.xznu[PK!r",0,0x86/acer-wmi.ko.xznu[PK!ulx86/msi-wmi.ko.xznu[PK!۸x86/mlx-platform.ko.xznu[PK!. x86/samsung-q10.ko.xznu[PK!$H}  x86/amilo-rfkill.ko.xznu[PK!/CHH3x86/dell-smo8800.ko.xznu[PK!เ  +x86/wmi-bmof.ko.xznu[PK! N` ` 6x86/hp-wireless.ko.xznu[PK!* ?x86/hdaps.ko.xznu[PK!Vx86/acerhdf.ko.xznu[PK!8,,rx86/classmate-laptop.ko.xznu[PK!p[-%%x86/dell-smbios.ko.xznu[PK!{E$$x86/thinkpad_acpi.ko.xznu[PK!H88t x86/msi-laptop.ko.xznu[PK!4ż)n x86/intel/pmc/intel_pmc_core_pltdrv.ko.xznu[PK!R99" x86/intel/pmc/intel_pmc_core.ko.xznu[PK!QQ. x86/intel/speed_select_if/isst_if_common.ko.xznu[PK!f<4 , x86/intel/speed_select_if/isst_if_mmio.ko.xznu[PK!Na 0? x86/intel/speed_select_if/isst_if_mbox_msr.ko.xznu[PK!J)D D 0+ x86/intel/speed_select_if/isst_if_mbox_pci.ko.xznu[PK!`e1DD7 x86/intel/uncore-frequency/intel-uncore-frequency.ko.xznu[PK! >z% x86/intel/uncore-frequency/intel-uncore-frequency-common.ko.xznu[PK!A3 x86/intel/ishtp_eclite.ko.xznu[PK!TP x86/intel/intel_sdsi.ko.xznu[PK!MfS d x86/intel/pmt/pmt_crashlog.ko.xznu[PK!_ G.p p !r x86/intel/pmt/pmt_telemetry.ko.xznu[PK!t| x86/intel/pmt/pmt_class.ko.xznu[PK! ##Ԏ x86/intel/ifs/intel_ifs.ko.xznu[PK!a;, x86/intel/intel_vsec.ko.xznu[PK!ihh x86/apple-gmux.ko.xznu[PK!'Γ{ x86/dell-rbtn.ko.xznu[PK!_s$$ x86/intel-hid.ko.xznu[PK!tN  x86/intel-wmi-thunderbolt.ko.xznu[PK!a, ,  x86/mxm-wmi.ko.xznu[PK!@FW؈U x86/intel-vbtn.ko.xznu[PK!S!/ x86/panasonic-laptop.ko.xznu[PK!„'A x86/uv_sysfs.ko.xznu[PK5]