Server IP : 172.67.145.202 / Your IP : 172.70.188.20 Web Server : Apache/2.2.15 (CentOS) System : Linux GA 2.6.32-431.1.2.0.1.el6.x86_64 #1 SMP Fri Dec 13 13:06:13 UTC 2013 x86_64 User : apache ( 48) PHP Version : 5.6.38 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/modules/2.6.32-504.16.2.el6.x86_64/build/arch/x86/include/asm/ |
Upload File : |
| Current File : /lib/modules/2.6.32-504.16.2.el6.x86_64/build/arch/x86/include/asm/processor.h |
#ifndef _ASM_X86_PROCESSOR_H
#define _ASM_X86_PROCESSOR_H
#include <asm/processor-flags.h>
/* Forward declaration, a strange C thing */
struct task_struct;
struct mm_struct;
#include <asm/vm86.h>
#include <asm/math_emu.h>
#include <asm/segment.h>
#include <asm/types.h>
#include <asm/sigcontext.h>
#include <asm/current.h>
#include <asm/cpufeature.h>
#include <asm/system.h>
#include <asm/page.h>
#include <asm/pgtable_types.h>
#include <asm/percpu.h>
#include <asm/msr.h>
#include <asm/desc_defs.h>
#include <asm/nops.h>
#include <linux/personality.h>
#include <linux/cpumask.h>
#include <linux/cache.h>
#include <linux/threads.h>
#include <linux/math64.h>
#include <linux/init.h>
#include <linux/err.h>
/*
* Default implementation of macro that returns current
* instruction pointer ("program counter").
*/
static inline void *current_text_addr(void)
{
void *pc;
asm volatile("mov $1f, %0; 1:":"=r" (pc));
return pc;
}
#ifdef CONFIG_X86_VSMP
# define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT)
# define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT)
#else
# define ARCH_MIN_TASKALIGN 16
# define ARCH_MIN_MMSTRUCT_ALIGN 0
#endif
/*
* CPU type and hardware bug flags. Kept separately for each CPU.
* Members of this structure are referenced in head.S, so think twice
* before touching them. [mj]
*/
struct cpuinfo_x86 {
__u8 x86; /* CPU family */
__u8 x86_vendor; /* CPU vendor */
__u8 x86_model;
__u8 x86_mask;
#ifdef CONFIG_X86_32
char wp_works_ok; /* It doesn't on 386's */
/* Problems on some 486Dx4's and old 386's: */
char hlt_works_ok;
char hard_math;
char rfu;
char fdiv_bug;
char f00f_bug;
char coma_bug;
char pad0;
#else
/* Number of 4K pages in DTLB/ITLB combined(in pages): */
int x86_tlbsize;
#endif
__u8 x86_virt_bits;
__u8 x86_phys_bits;
/* CPUID returned core id bits: */
__u8 x86_coreid_bits;
/* Max extended CPUID function supported: */
__u32 extended_cpuid_level;
/* Maximum supported CPUID level, -1=no CPUID: */
int cpuid_level;
__u32 x86_capability[NCAPINTS];
char x86_vendor_id[16];
char x86_model_id[64];
/* in KB - valid for CPUS which support this call: */
int x86_cache_size;
int x86_cache_alignment; /* In bytes */
int x86_power;
unsigned long loops_per_jiffy;
#ifdef CONFIG_SMP
/* cpus sharing the last level cache: */
cpumask_var_t llc_shared_map;
#endif
/* cpuid returned max cores value: */
u16 x86_max_cores;
u16 apicid;
u16 initial_apicid;
u16 x86_clflush_size;
#ifdef CONFIG_SMP
/* number of cores as seen by the OS: */
u16 booted_cores;
/* Physical processor id: */
u16 phys_proc_id;
/* Core id: */
u16 cpu_core_id;
/* Index into per_cpu list: */
u16 cpu_index;
#endif
/* RHEL6: deprecated and should use x86_hyper instead */
unsigned int x86_hyper_vendor;
#ifndef __GENKSYMS__
/* RHEL6:
There are only 4 bytes of space before the end of this struct. */
#ifdef CONFIG_SMP
/* Compute unit id */
u8 compute_unit_id;
#endif /* CONFIG_SMP */
u32 microcode;
#endif /* !__GENKSYMS__ */
} __attribute__((__aligned__(SMP_CACHE_BYTES)));
/* This struct never should be on a kabi whitelist. */
struct cpuinfo_x86_rh {
__u32 x86_capability[RH_EXT_NCAPINTS];
} __attribute__((__aligned__(SMP_CACHE_BYTES)));
#define X86_VENDOR_INTEL 0
#define X86_VENDOR_CYRIX 1
#define X86_VENDOR_AMD 2
#define X86_VENDOR_UMC 3
#define X86_VENDOR_CENTAUR 5
#define X86_VENDOR_TRANSMETA 7
#define X86_VENDOR_NSC 8
#define X86_VENDOR_NUM 9
#define X86_VENDOR_UNKNOWN 0xff
/*
* capabilities of CPUs
*/
extern struct cpuinfo_x86 boot_cpu_data;
extern struct cpuinfo_x86_rh boot_cpu_data_rh;
extern struct cpuinfo_x86 new_cpu_data;
extern struct cpuinfo_x86_rh new_cpu_data_rh;
extern struct tss_struct doublefault_tss;
extern __u32 cpu_caps_cleared[RHNCAPINTS];
extern __u32 cpu_caps_set[RHNCAPINTS];
#ifdef CONFIG_SMP
DECLARE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
DECLARE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86_rh, cpu_info_rh);
#define cpu_data(cpu) per_cpu(cpu_info, cpu)
#define current_cpu_data __get_cpu_var(cpu_info)
#define cpu_data_rh(cpu) per_cpu(cpu_info_rh, cpu)
#define current_cpu_data_rh __get_cpu_var(cpu_info_rh)
static inline struct cpuinfo_x86_rh *get_cpuinfo_x86_rh(struct cpuinfo_x86 *c)
{
if (c == &boot_cpu_data)
return &boot_cpu_data_rh;
else
return &cpu_data_rh(c->cpu_index);
}
#else
#define cpu_data(cpu) boot_cpu_data
#define current_cpu_data boot_cpu_data
#endif
extern const struct seq_operations cpuinfo_op;
static inline int hlt_works(int cpu)
{
#ifdef CONFIG_X86_32
return cpu_data(cpu).hlt_works_ok;
#else
return 1;
#endif
}
#define cache_line_size() (boot_cpu_data.x86_cache_alignment)
#define __HAVE_ARCH_ALIGN_STACK
extern unsigned long arch_align_stack(unsigned long sp);
extern void cpu_detect(struct cpuinfo_x86 *c);
extern struct pt_regs *idle_regs(struct pt_regs *);
extern void early_cpu_init(void);
extern void identify_boot_cpu(void);
extern void identify_secondary_cpu(struct cpuinfo_x86 *);
extern void print_cpu_info(struct cpuinfo_x86 *);
extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
extern unsigned short num_cache_leaves;
extern void detect_extended_topology(struct cpuinfo_x86 *c);
extern void detect_ht(struct cpuinfo_x86 *c);
static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
unsigned int *ecx, unsigned int *edx)
{
/* ecx is often an input as well as an output. */
asm volatile("cpuid"
: "=a" (*eax),
"=b" (*ebx),
"=c" (*ecx),
"=d" (*edx)
: "0" (*eax), "2" (*ecx)
: "memory");
}
static inline void load_cr3(pgd_t *pgdir)
{
write_cr3(__pa(pgdir));
}
#ifdef CONFIG_X86_32
/* This is the TSS defined by the hardware. */
struct x86_hw_tss {
unsigned short back_link, __blh;
unsigned long sp0;
unsigned short ss0, __ss0h;
unsigned long sp1;
/* ss1 caches MSR_IA32_SYSENTER_CS: */
unsigned short ss1, __ss1h;
unsigned long sp2;
unsigned short ss2, __ss2h;
unsigned long __cr3;
unsigned long ip;
unsigned long flags;
unsigned long ax;
unsigned long cx;
unsigned long dx;
unsigned long bx;
unsigned long sp;
unsigned long bp;
unsigned long si;
unsigned long di;
unsigned short es, __esh;
unsigned short cs, __csh;
unsigned short ss, __ssh;
unsigned short ds, __dsh;
unsigned short fs, __fsh;
unsigned short gs, __gsh;
unsigned short ldt, __ldth;
unsigned short trace;
unsigned short io_bitmap_base;
} __attribute__((packed));
#else
struct x86_hw_tss {
u32 reserved1;
u64 sp0;
u64 sp1;
u64 sp2;
u64 reserved2;
u64 ist[7];
u32 reserved3;
u32 reserved4;
u16 reserved5;
u16 io_bitmap_base;
} __attribute__((packed)) ____cacheline_aligned;
#endif
/*
* IO-bitmap sizes:
*/
#define IO_BITMAP_BITS 65536
#define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
#define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
#define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
#define INVALID_IO_BITMAP_OFFSET 0x8000
struct tss_struct {
/*
* The hardware state:
*/
struct x86_hw_tss x86_tss;
/*
* The extra 1 is there because the CPU will access an
* additional byte beyond the end of the IO permission
* bitmap. The extra byte must be all 1 bits, and must
* be within the limit.
*/
unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
/*
* .. and then another 0x100 bytes for the emergency kernel stack:
*/
unsigned long stack[64];
} ____cacheline_aligned;
DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, init_tss);
/*
* Save the original ist values for checking stack pointers during debugging
*/
struct orig_ist {
unsigned long ist[7];
};
#define MXCSR_DEFAULT 0x1f80
struct i387_fsave_struct {
u32 cwd; /* FPU Control Word */
u32 swd; /* FPU Status Word */
u32 twd; /* FPU Tag Word */
u32 fip; /* FPU IP Offset */
u32 fcs; /* FPU IP Selector */
u32 foo; /* FPU Operand Pointer Offset */
u32 fos; /* FPU Operand Pointer Selector */
/* 8*10 bytes for each FP-reg = 80 bytes: */
u32 st_space[20];
/* Software status information [not touched by FSAVE ]: */
u32 status;
};
struct i387_fxsave_struct {
u16 cwd; /* Control Word */
u16 swd; /* Status Word */
u16 twd; /* Tag Word */
u16 fop; /* Last Instruction Opcode */
union {
struct {
u64 rip; /* Instruction Pointer */
u64 rdp; /* Data Pointer */
};
struct {
u32 fip; /* FPU IP Offset */
u32 fcs; /* FPU IP Selector */
u32 foo; /* FPU Operand Offset */
u32 fos; /* FPU Operand Selector */
};
};
u32 mxcsr; /* MXCSR Register State */
u32 mxcsr_mask; /* MXCSR Mask */
/* 8*16 bytes for each FP-reg = 128 bytes: */
u32 st_space[32];
/* 16*16 bytes for each XMM-reg = 256 bytes: */
u32 xmm_space[64];
u32 padding[12];
union {
u32 padding1[12];
u32 sw_reserved[12];
};
} __attribute__((aligned(16)));
struct i387_soft_struct {
u32 cwd;
u32 swd;
u32 twd;
u32 fip;
u32 fcs;
u32 foo;
u32 fos;
/* 8*10 bytes for each FP-reg = 80 bytes: */
u32 st_space[20];
u8 ftop;
u8 changed;
u8 lookahead;
u8 no_update;
u8 rm;
u8 alimit;
struct math_emu_info *info;
u32 entry_eip;
};
struct ymmh_struct {
/* 16 * 16 bytes for each YMMH-reg = 256 bytes */
u32 ymmh_space[64];
};
struct xsave_hdr_struct {
u64 xstate_bv;
u64 reserved1[2];
u64 reserved2[5];
} __attribute__((packed));
struct xsave_struct {
struct i387_fxsave_struct i387;
struct xsave_hdr_struct xsave_hdr;
struct ymmh_struct ymmh;
/* new processor state extensions will go here */
} __attribute__ ((packed, aligned (64)));
union thread_xstate {
struct i387_fsave_struct fsave;
struct i387_fxsave_struct fxsave;
struct i387_soft_struct soft;
struct xsave_struct xsave;
};
struct fpu {
union thread_xstate *state;
};
#ifdef CONFIG_X86_64
DECLARE_PER_CPU(struct orig_ist, orig_ist);
union irq_stack_union {
char irq_stack[IRQ_STACK_SIZE];
/*
* GCC hardcodes the stack canary as %gs:40. Since the
* irq_stack is the object at %gs:0, we reserve the bottom
* 48 bytes of the irq stack for the canary.
*/
struct {
char gs_base[40];
unsigned long stack_canary;
};
};
DECLARE_PER_CPU_FIRST(union irq_stack_union, irq_stack_union);
DECLARE_INIT_PER_CPU(irq_stack_union);
DECLARE_PER_CPU(char *, irq_stack_ptr);
DECLARE_PER_CPU(unsigned int, irq_count);
extern unsigned long kernel_eflags;
extern asmlinkage void ignore_sysret(void);
#else /* X86_64 */
#ifdef CONFIG_CC_STACKPROTECTOR
/*
* Make sure stack canary segment base is cached-aligned:
* "For Intel Atom processors, avoid non zero segment base address
* that is not aligned to cache line boundary at all cost."
* (Optim Ref Manual Assembly/Compiler Coding Rule 15.)
*/
struct stack_canary {
char __pad[20]; /* canary at %gs:20 */
unsigned long canary;
};
DECLARE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
#endif
#endif /* X86_64 */
extern unsigned int xstate_size;
extern void free_thread_xstate(struct task_struct *);
extern struct kmem_cache *task_xstate_cachep;
struct thread_struct {
/* Cached TLS descriptors: */
struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
unsigned long sp0;
unsigned long sp;
#ifdef CONFIG_X86_32
unsigned long sysenter_cs;
#else
unsigned long usersp; /* Copy from PDA */
unsigned short es;
unsigned short ds;
unsigned short fsindex;
unsigned short gsindex;
#endif
#ifdef CONFIG_X86_32
unsigned long ip;
#endif
#ifdef CONFIG_X86_64
unsigned long fs;
#endif
unsigned long gs;
/* Hardware debugging registers: */
unsigned long debugreg0;
unsigned long debugreg1;
unsigned long debugreg2;
unsigned long debugreg3;
unsigned long debugreg6;
unsigned long debugreg7;
/* Fault info: */
unsigned long cr2;
unsigned long trap_no;
unsigned long error_code;
/* floating point and extended processor state */
union thread_xstate *xstate;
#ifdef CONFIG_X86_32
/* Virtual 86 mode info */
struct vm86_struct __user *vm86_info;
unsigned long screen_bitmap;
unsigned long v86flags;
unsigned long v86mask;
unsigned long saved_sp0;
unsigned int saved_fs;
unsigned int saved_gs;
#endif
/* IO permissions: */
unsigned long *io_bitmap_ptr;
unsigned long iopl;
/* Max allowed port in the bitmap, in bytes: */
unsigned io_bitmap_max;
};
static inline unsigned long native_get_debugreg(int regno)
{
unsigned long val = 0; /* Damn you, gcc! */
switch (regno) {
case 0:
asm("mov %%db0, %0" :"=r" (val));
break;
case 1:
asm("mov %%db1, %0" :"=r" (val));
break;
case 2:
asm("mov %%db2, %0" :"=r" (val));
break;
case 3:
asm("mov %%db3, %0" :"=r" (val));
break;
case 6:
asm("mov %%db6, %0" :"=r" (val));
break;
case 7:
asm("mov %%db7, %0" :"=r" (val));
break;
default:
BUG();
}
return val;
}
static inline void native_set_debugreg(int regno, unsigned long value)
{
switch (regno) {
case 0:
asm("mov %0, %%db0" ::"r" (value));
break;
case 1:
asm("mov %0, %%db1" ::"r" (value));
break;
case 2:
asm("mov %0, %%db2" ::"r" (value));
break;
case 3:
asm("mov %0, %%db3" ::"r" (value));
break;
case 6:
asm("mov %0, %%db6" ::"r" (value));
break;
case 7:
asm("mov %0, %%db7" ::"r" (value));
break;
default:
BUG();
}
}
/*
* Set IOPL bits in EFLAGS from given mask
*/
static inline void native_set_iopl_mask(unsigned mask)
{
#ifdef CONFIG_X86_32
unsigned int reg;
asm volatile ("pushfl;"
"popl %0;"
"andl %1, %0;"
"orl %2, %0;"
"pushl %0;"
"popfl"
: "=&r" (reg)
: "i" (~X86_EFLAGS_IOPL), "r" (mask));
#endif
}
static inline void
native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
{
tss->x86_tss.sp0 = thread->sp0;
#ifdef CONFIG_X86_32
/* Only happens when SEP is enabled, no need to test "SEP"arately: */
if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
tss->x86_tss.ss1 = thread->sysenter_cs;
wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
}
#endif
}
static inline void native_swapgs(void)
{
#ifdef CONFIG_X86_64
asm volatile("swapgs" ::: "memory");
#endif
}
#ifdef CONFIG_PARAVIRT
#include <asm/paravirt.h>
#else
#define __cpuid native_cpuid
#define paravirt_enabled() 0
/*
* These special macros can be used to get or set a debugging register
*/
#define get_debugreg(var, register) \
(var) = native_get_debugreg(register)
#define set_debugreg(value, register) \
native_set_debugreg(register, value)
static inline void load_sp0(struct tss_struct *tss,
struct thread_struct *thread)
{
native_load_sp0(tss, thread);
}
#define set_iopl_mask native_set_iopl_mask
#endif /* CONFIG_PARAVIRT */
/*
* Save the cr4 feature set we're using (ie
* Pentium 4MB enable and PPro Global page
* enable), so that any CPU's that boot up
* after us can get the correct flags.
*/
extern unsigned long mmu_cr4_features;
static inline void set_in_cr4(unsigned long mask)
{
unsigned cr4;
mmu_cr4_features |= mask;
cr4 = read_cr4();
cr4 |= mask;
write_cr4(cr4);
}
static inline void clear_in_cr4(unsigned long mask)
{
unsigned cr4;
mmu_cr4_features &= ~mask;
cr4 = read_cr4();
cr4 &= ~mask;
write_cr4(cr4);
}
typedef struct {
unsigned long seg;
} mm_segment_t;
/*
* create a kernel thread without removing it from tasklists
*/
extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
/* Free all resources held by a thread. */
extern void release_thread(struct task_struct *);
/* Prepare to copy thread state - unlazy all lazy state */
extern void prepare_to_copy(struct task_struct *tsk);
unsigned long get_wchan(struct task_struct *p);
/*
* Generic CPUID function
* clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
* resulting in stale register contents being returned.
*/
static inline void cpuid(unsigned int op,
unsigned int *eax, unsigned int *ebx,
unsigned int *ecx, unsigned int *edx)
{
*eax = op;
*ecx = 0;
__cpuid(eax, ebx, ecx, edx);
}
/* Some CPUID calls want 'count' to be placed in ecx */
static inline void cpuid_count(unsigned int op, int count,
unsigned int *eax, unsigned int *ebx,
unsigned int *ecx, unsigned int *edx)
{
*eax = op;
*ecx = count;
__cpuid(eax, ebx, ecx, edx);
}
/*
* CPUID functions returning a single datum
*/
static inline unsigned int cpuid_eax(unsigned int op)
{
unsigned int eax, ebx, ecx, edx;
cpuid(op, &eax, &ebx, &ecx, &edx);
return eax;
}
static inline unsigned int cpuid_ebx(unsigned int op)
{
unsigned int eax, ebx, ecx, edx;
cpuid(op, &eax, &ebx, &ecx, &edx);
return ebx;
}
static inline unsigned int cpuid_ecx(unsigned int op)
{
unsigned int eax, ebx, ecx, edx;
cpuid(op, &eax, &ebx, &ecx, &edx);
return ecx;
}
static inline unsigned int cpuid_edx(unsigned int op)
{
unsigned int eax, ebx, ecx, edx;
cpuid(op, &eax, &ebx, &ecx, &edx);
return edx;
}
/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
static inline void rep_nop(void)
{
asm volatile("rep; nop" ::: "memory");
}
static inline void cpu_relax(void)
{
rep_nop();
}
/* Stop speculative execution and prefetching of modified code. */
static inline void sync_core(void)
{
int tmp;
#if defined(CONFIG_M386) || defined(CONFIG_M486)
if (boot_cpu_data.x86 < 5)
/* There is no speculative execution.
* jmp is a barrier to prefetching. */
asm volatile("jmp 1f\n1:\n" ::: "memory");
else
#endif
/* cpuid is a barrier to speculative execution.
* Prefetched instructions are automatically
* invalidated when modified. */
asm volatile("cpuid" : "=a" (tmp) : "0" (1)
: "ebx", "ecx", "edx", "memory");
}
static inline void __monitor(const void *eax, unsigned long ecx,
unsigned long edx)
{
/* "monitor %eax, %ecx, %edx;" */
asm volatile(".byte 0x0f, 0x01, 0xc8;"
:: "a" (eax), "c" (ecx), "d"(edx));
}
static inline void __mwait(unsigned long eax, unsigned long ecx)
{
/* "mwait %eax, %ecx;" */
asm volatile(".byte 0x0f, 0x01, 0xc9;"
:: "a" (eax), "c" (ecx));
}
static inline void __sti_mwait(unsigned long eax, unsigned long ecx)
{
trace_hardirqs_on();
/* "mwait %eax, %ecx;" */
asm volatile("sti; .byte 0x0f, 0x01, 0xc9;"
:: "a" (eax), "c" (ecx));
}
extern void mwait_idle_with_hints(unsigned long eax, unsigned long ecx);
extern void select_idle_routine(const struct cpuinfo_x86 *c);
extern void init_c1e_mask(void);
extern unsigned long boot_option_idle_override;
extern unsigned long idle_halt;
extern unsigned long idle_nomwait;
extern void enable_sep_cpu(void);
extern int sysenter_setup(void);
/* Defined in head.S */
extern struct desc_ptr early_gdt_descr;
extern void cpu_set_gdt(int);
extern void switch_to_new_gdt(int);
extern void load_percpu_segment(int);
extern void cpu_init(void);
static inline unsigned long get_debugctlmsr(void)
{
unsigned long debugctlmsr = 0;
#ifndef CONFIG_X86_DEBUGCTLMSR
if (boot_cpu_data.x86 < 6)
return 0;
#endif
rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
return debugctlmsr;
}
static inline void update_debugctlmsr(unsigned long debugctlmsr)
{
#ifndef CONFIG_X86_DEBUGCTLMSR
if (boot_cpu_data.x86 < 6)
return;
#endif
wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
}
/*
* from system description table in BIOS. Mostly for MCA use, but
* others may find it useful:
*/
extern unsigned int machine_id;
extern unsigned int machine_submodel_id;
extern unsigned int BIOS_revision;
/* Boot loader type from the setup header: */
extern int bootloader_type;
extern int bootloader_version;
extern char ignore_fpu_irq;
#define HAVE_ARCH_PICK_MMAP_LAYOUT 1
#define ARCH_HAS_PREFETCHW
#define ARCH_HAS_SPINLOCK_PREFETCH
#ifdef CONFIG_X86_32
# define BASE_PREFETCH ASM_NOP4
# define ARCH_HAS_PREFETCH
#else
# define BASE_PREFETCH "prefetcht0 (%1)"
#endif
/*
* Prefetch instructions for Pentium III (+) and AMD Athlon (+)
*
* It's not worth to care about 3dnow prefetches for the K6
* because they are microcoded there and very slow.
*/
static inline void prefetch(const void *x)
{
alternative_input(BASE_PREFETCH,
"prefetchnta (%1)",
X86_FEATURE_XMM,
"r" (x));
}
/*
* 3dnow prefetch to get an exclusive cache line.
* Useful for spinlocks to avoid one state transition in the
* cache coherency protocol:
*/
static inline void prefetchw(const void *x)
{
alternative_input(BASE_PREFETCH,
"prefetchw (%1)",
X86_FEATURE_3DNOW,
"r" (x));
}
static inline void spin_lock_prefetch(const void *x)
{
prefetchw(x);
}
#ifdef CONFIG_X86_32
/*
* User space process size: 3GB (default).
*/
#define TASK_SIZE PAGE_OFFSET
#define TASK_SIZE_MAX TASK_SIZE
#define STACK_TOP TASK_SIZE
#define STACK_TOP_MAX STACK_TOP
#define INIT_THREAD { \
.sp0 = sizeof(init_stack) + (long)&init_stack, \
.vm86_info = NULL, \
.sysenter_cs = __KERNEL_CS, \
.io_bitmap_ptr = NULL, \
}
/*
* Note that the .io_bitmap member must be extra-big. This is because
* the CPU will access an additional byte beyond the end of the IO
* permission bitmap. The extra byte must be all 1 bits, and must
* be within the limit.
*/
#define INIT_TSS { \
.x86_tss = { \
.sp0 = sizeof(init_stack) + (long)&init_stack, \
.ss0 = __KERNEL_DS, \
.ss1 = __KERNEL_CS, \
.io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \
}, \
.io_bitmap = { [0 ... IO_BITMAP_LONGS] = ~0 }, \
}
extern unsigned long thread_saved_pc(struct task_struct *tsk);
#define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long))
#define KSTK_TOP(info) \
({ \
unsigned long *__ptr = (unsigned long *)(info); \
(unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \
})
/*
* The below -8 is to reserve 8 bytes on top of the ring0 stack.
* This is necessary to guarantee that the entire "struct pt_regs"
* is accessable even if the CPU haven't stored the SS/ESP registers
* on the stack (interrupt gate does not save these registers
* when switching to the same priv ring).
* Therefore beware: accessing the ss/esp fields of the
* "struct pt_regs" is possible, but they may contain the
* completely wrong values.
*/
#define task_pt_regs(task) \
({ \
struct pt_regs *__regs__; \
__regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
__regs__ - 1; \
})
#define KSTK_ESP(task) (task_pt_regs(task)->sp)
#else
/*
* User space process size. 47bits minus one guard page.
*/
#define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE)
/* This decides where the kernel will search for a free chunk of vm
* space during mmap's.
*/
#define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
0xc0000000 : 0xFFFFe000)
#define TASK_SIZE (test_thread_flag(TIF_IA32) ? \
IA32_PAGE_OFFSET : TASK_SIZE_MAX)
#define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_IA32)) ? \
IA32_PAGE_OFFSET : TASK_SIZE_MAX)
#define STACK_TOP TASK_SIZE
#define STACK_TOP_MAX TASK_SIZE_MAX
#define INIT_THREAD { \
.sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
}
#define INIT_TSS { \
.x86_tss.sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
}
/*
* Return saved PC of a blocked thread.
* What is this good for? it will be always the scheduler or ret_from_fork.
*/
#define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8))
#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
extern unsigned long KSTK_ESP(struct task_struct *task);
#endif /* CONFIG_X86_64 */
extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
unsigned long new_sp);
/*
* This decides where the kernel will search for a free chunk of vm
* space during mmap's.
*/
#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
#define KSTK_EIP(task) (task_pt_regs(task)->ip)
/* Get/set a process' ability to use the timestamp counter instruction */
#define GET_TSC_CTL(adr) get_tsc_mode((adr))
#define SET_TSC_CTL(val) set_tsc_mode((val))
extern int get_tsc_mode(unsigned long adr);
extern int set_tsc_mode(unsigned int val);
extern int amd_get_nb_id(int cpu);
struct aperfmperf {
u64 aperf, mperf;
};
static inline void get_aperfmperf(struct aperfmperf *am)
{
WARN_ON_ONCE(!boot_cpu_has(X86_FEATURE_APERFMPERF));
rdmsrl(MSR_IA32_APERF, am->aperf);
rdmsrl(MSR_IA32_MPERF, am->mperf);
}
#define APERFMPERF_SHIFT 10
static inline
unsigned long calc_aperfmperf_ratio(struct aperfmperf *old,
struct aperfmperf *new)
{
u64 aperf = new->aperf - old->aperf;
u64 mperf = new->mperf - old->mperf;
unsigned long ratio = aperf;
mperf >>= APERFMPERF_SHIFT;
if (mperf)
ratio = div64_u64(aperf, mperf);
return ratio;
}
static inline uint32_t hypervisor_cpuid_base(const char *sig, uint32_t leaves)
{
uint32_t base, eax, signature[3];
for (base = 0x40000000; base < 0x40010000; base += 0x100) {
cpuid(base, &eax, &signature[0], &signature[1], &signature[2]);
if (!memcmp(sig, signature, 12) &&
(leaves == 0 || ((eax - base) >= leaves)))
return base;
}
return 0;
}
#endif /* _ASM_X86_PROCESSOR_H */
| N4m3 |
5!z3 |
L45t M0d!f!3d |
0wn3r / Gr0up |
P3Rm!55!0n5 |
0pt!0n5 |
| .. |
-- |
May 30 2015 10:47:09 |
0 / 0 |
0755 |
|
| crypto |
-- |
May 30 2015 10:47:09 |
0 / 0 |
0755 |
|
| trace |
-- |
May 30 2015 10:47:09 |
0 / 0 |
0755 |
|
| uv |
-- |
May 30 2015 10:47:09 |
0 / 0 |
0755 |
|
| visws |
-- |
May 30 2015 10:47:09 |
0 / 0 |
0755 |
|
| xen |
-- |
May 30 2015 10:47:09 |
0 / 0 |
0755 |
|
| | | | | |
| Kbuild |
0.533 KB |
March 10 2015 20:23:49 |
0 / 0 |
0644 |
|
| a.out-core.h |
2.148 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| a.out.h |
0.677 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| acpi.h |
4.691 KB |
March 10 2015 20:24:07 |
0 / 0 |
0644 |
|
| aes.h |
0.272 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| agp.h |
1.007 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| alternative-asm.h |
0.432 KB |
March 10 2015 20:22:35 |
0 / 0 |
0644 |
|
| alternative.h |
6.268 KB |
March 10 2015 20:22:45 |
0 / 0 |
0644 |
|
| amd_iommu.h |
1.561 KB |
March 10 2015 20:21:15 |
0 / 0 |
0644 |
|
| amd_iommu_types.h |
14.957 KB |
March 10 2015 20:24:05 |
0 / 0 |
0644 |
|
| amd_nb.h |
1.405 KB |
March 10 2015 20:24:08 |
0 / 0 |
0644 |
|
| apic.h |
14.673 KB |
March 10 2015 20:24:12 |
0 / 0 |
0644 |
|
| apicdef.h |
11.003 KB |
March 10 2015 20:23:26 |
0 / 0 |
0644 |
|
| apicnum.h |
0.224 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| apm.h |
1.682 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| archrandom.h |
2.202 KB |
March 10 2015 20:23:10 |
0 / 0 |
0644 |
|
| asm.h |
1.292 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| atomic.h |
0.08 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| atomic_32.h |
9.566 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| atomic_64.h |
10.895 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| auxvec.h |
0.274 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| bios_ebda.h |
0.775 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| bitops.h |
12.917 KB |
March 10 2015 20:23:23 |
0 / 0 |
0644 |
|
| bitsperlong.h |
0.224 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| boot.h |
1.243 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| bootparam.h |
2.9 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| bug.h |
0.76 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| bugs.h |
0.262 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| byteorder.h |
0.134 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| cache.h |
0.543 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| cacheflush.h |
7.208 KB |
March 10 2015 20:21:57 |
0 / 0 |
0644 |
|
| calgary.h |
2.395 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| calling.h |
5.465 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| checksum.h |
0.084 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| checksum_32.h |
4.796 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| checksum_64.h |
5.224 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| cmpxchg.h |
0.082 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| cmpxchg_32.h |
9.272 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| cmpxchg_64.h |
4.475 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| compat.h |
4.721 KB |
March 10 2015 20:21:44 |
0 / 0 |
0644 |
|
| cpu.h |
0.741 KB |
March 10 2015 20:22:15 |
0 / 0 |
0644 |
|
| cpu_debug.h |
3.671 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| cpu_device_id.h |
0.287 KB |
March 10 2015 20:24:00 |
0 / 0 |
0644 |
|
| cpufeature.h |
20.16 KB |
March 10 2015 20:24:14 |
0 / 0 |
0644 |
|
| cpumask.h |
0.408 KB |
March 10 2015 20:23:48 |
0 / 0 |
0644 |
|
| cputime.h |
0.032 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| crash.h |
1.996 KB |
March 10 2015 20:23:21 |
0 / 0 |
0644 |
|
| current.h |
0.393 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| debugreg.h |
2.836 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| delay.h |
0.84 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| desc.h |
12.496 KB |
March 10 2015 20:24:02 |
0 / 0 |
0644 |
|
| desc_defs.h |
2.557 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| device.h |
0.313 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| div64.h |
1.371 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| dma-mapping.h |
3.846 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| dma.h |
9.458 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| dmi.h |
0.401 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| dwarf2.h |
3.078 KB |
March 10 2015 20:23:17 |
0 / 0 |
0644 |
|
| e820.h |
5.242 KB |
March 10 2015 20:22:50 |
0 / 0 |
0644 |
|
| edac.h |
0.42 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| efi.h |
4.33 KB |
March 10 2015 20:24:10 |
0 / 0 |
0644 |
|
| elf.h |
10.202 KB |
March 10 2015 20:22:47 |
0 / 0 |
0644 |
|
| emergency-restart.h |
0.372 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| entry_arch.h |
2.457 KB |
March 10 2015 20:24:02 |
0 / 0 |
0644 |
|
| errno.h |
0.03 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| fb.h |
0.367 KB |
March 10 2015 20:21:09 |
0 / 0 |
0644 |
|
| fcntl.h |
0.03 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| fixmap.h |
6.186 KB |
March 10 2015 20:21:23 |
0 / 0 |
0644 |
|
| floppy.h |
6.437 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| frame.h |
0.492 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| ftrace.h |
1.758 KB |
March 10 2015 20:23:55 |
0 / 0 |
0644 |
|
| futex.h |
3.363 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| gart.h |
2.737 KB |
March 10 2015 20:22:21 |
0 / 0 |
0644 |
|
| genapic.h |
0.021 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| geode.h |
6.366 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| gpio.h |
1.088 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| hardirq.h |
1.543 KB |
March 10 2015 20:23:07 |
0 / 0 |
0644 |
|
| highmem.h |
2.079 KB |
March 10 2015 20:21:16 |
0 / 0 |
0644 |
|
| hpet.h |
3.275 KB |
March 10 2015 20:22:50 |
0 / 0 |
0644 |
|
| hugetlb.h |
2.138 KB |
March 10 2015 20:24:08 |
0 / 0 |
0644 |
|
| hw_irq.h |
5.211 KB |
March 10 2015 20:24:12 |
0 / 0 |
0644 |
|
| hypertransport.h |
1.285 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| hyperv.h |
7.588 KB |
March 10 2015 20:24:12 |
0 / 0 |
0644 |
|
| hypervisor.h |
1.645 KB |
March 10 2015 20:23:54 |
0 / 0 |
0644 |
|
| i387.h |
12.042 KB |
March 10 2015 20:22:38 |
0 / 0 |
0644 |
|
| i8253.h |
0.34 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| i8259.h |
1.652 KB |
March 10 2015 20:24:12 |
0 / 0 |
0644 |
|
| ia32.h |
3.125 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| ia32_unistd.h |
0.527 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| idle.h |
0.475 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| inat.h |
5.949 KB |
March 10 2015 20:21:31 |
0 / 0 |
0644 |
|
| inat_types.h |
0.989 KB |
March 10 2015 20:21:31 |
0 / 0 |
0644 |
|
| init.h |
0.466 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| insn.h |
5.486 KB |
March 10 2015 20:21:31 |
0 / 0 |
0644 |
|
| inst.h |
4.075 KB |
March 10 2015 20:23:55 |
0 / 0 |
0644 |
|
| io.h |
6.17 KB |
March 10 2015 20:24:10 |
0 / 0 |
0644 |
|
| io_32.h |
4.978 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| io_64.h |
4.486 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| io_apic.h |
5.05 KB |
March 10 2015 20:24:03 |
0 / 0 |
0644 |
|
| ioctl.h |
0.03 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| ioctls.h |
0.031 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| iomap.h |
1.237 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| iommu.h |
0.355 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| ipcbuf.h |
0.031 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| ipi.h |
3.736 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| irq.h |
1.187 KB |
March 10 2015 20:24:10 |
0 / 0 |
0644 |
|
| irq_regs.h |
0.621 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| irq_remapping.h |
0.161 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| irq_vectors.h |
4.82 KB |
March 10 2015 20:23:58 |
0 / 0 |
0644 |
|
| irqflags.h |
4.101 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| ist.h |
0.847 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| kdebug.h |
0.941 KB |
March 10 2015 20:23:38 |
0 / 0 |
0644 |
|
| kexec.h |
5.112 KB |
March 10 2015 20:23:52 |
0 / 0 |
0644 |
|
| kgdb.h |
1.665 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| kmap_types.h |
0.244 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| kmemcheck.h |
0.827 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| kprobes.h |
3.692 KB |
March 10 2015 20:22:02 |
0 / 0 |
0644 |
|
| kvm.h |
6.046 KB |
March 10 2015 20:23:56 |
0 / 0 |
0644 |
|
| kvm_emulate.h |
7.224 KB |
March 10 2015 20:22:52 |
0 / 0 |
0644 |
|
| kvm_host.h |
26.237 KB |
March 10 2015 20:24:14 |
0 / 0 |
0644 |
|
| kvm_para.h |
4.708 KB |
March 10 2015 20:24:03 |
0 / 0 |
0644 |
|
| ldt.h |
0.94 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| lguest.h |
2.67 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| lguest_hcall.h |
1.874 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| linkage.h |
2.176 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| local.h |
5.735 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| local64.h |
0.032 KB |
March 10 2015 20:22:06 |
0 / 0 |
0644 |
|
| mach_timer.h |
1.517 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mach_traps.h |
0.678 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| math_emu.h |
0.415 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mc146818rtc.h |
2.767 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mca.h |
1.233 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mca_dma.h |
5.088 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mce.h |
8.491 KB |
March 10 2015 20:24:14 |
0 / 0 |
0644 |
|
| microcode.h |
1.376 KB |
March 10 2015 20:21:02 |
0 / 0 |
0644 |
|
| mm_track.h |
3.229 KB |
March 10 2015 20:21:12 |
0 / 0 |
0644 |
|
| mman.h |
0.166 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mmconfig.h |
0.347 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mmu.h |
0.549 KB |
March 10 2015 20:20:57 |
0 / 0 |
0644 |
|
| mmu_context.h |
2.413 KB |
March 10 2015 20:24:06 |
0 / 0 |
0644 |
|
| mmx.h |
0.291 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mmzone.h |
0.08 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mmzone_32.h |
1.849 KB |
March 10 2015 20:22:35 |
0 / 0 |
0644 |
|
| mmzone_64.h |
1.09 KB |
March 10 2015 20:22:35 |
0 / 0 |
0644 |
|
| module.h |
2.028 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mpspec.h |
5.202 KB |
March 10 2015 20:22:27 |
0 / 0 |
0644 |
|
| mpspec_def.h |
4.009 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| msgbuf.h |
0.031 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mshyperv.h |
0.437 KB |
March 10 2015 20:24:02 |
0 / 0 |
0644 |
|
| msidef.h |
1.733 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| msr-index.h |
17.38 KB |
March 10 2015 20:24:14 |
0 / 0 |
0644 |
|
| msr.h |
8.423 KB |
March 10 2015 20:24:14 |
0 / 0 |
0644 |
|
| mtrr.h |
7.128 KB |
March 10 2015 20:24:10 |
0 / 0 |
0644 |
|
| mutex.h |
0.078 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| mutex_32.h |
3.714 KB |
March 10 2015 20:24:10 |
0 / 0 |
0644 |
|
| mutex_64.h |
2.706 KB |
March 10 2015 20:24:10 |
0 / 0 |
0644 |
|
| mwait.h |
0.353 KB |
March 10 2015 20:22:11 |
0 / 0 |
0644 |
|
| nmi.h |
3.064 KB |
March 10 2015 20:22:31 |
0 / 0 |
0644 |
|
| nops.h |
3.308 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| numa.h |
0.076 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| numa_32.h |
0.281 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| numa_64.h |
1.257 KB |
March 10 2015 20:24:13 |
0 / 0 |
0644 |
|
| numaq.h |
5.946 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| olpc.h |
3.049 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| page.h |
1.633 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| page_32.h |
1.006 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| page_32_types.h |
1.473 KB |
March 10 2015 20:24:15 |
0 / 0 |
0644 |
|
| page_64.h |
0.116 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| page_64_types.h |
2.178 KB |
March 10 2015 20:24:15 |
0 / 0 |
0644 |
|
| page_types.h |
1.595 KB |
March 10 2015 20:21:18 |
0 / 0 |
0644 |
|
| param.h |
0.03 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| paravirt.h |
25.617 KB |
March 10 2015 20:24:14 |
0 / 0 |
0644 |
|
| paravirt_types.h |
22.6 KB |
March 10 2015 20:23:14 |
0 / 0 |
0644 |
|
| parport.h |
0.288 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| pat.h |
0.63 KB |
March 10 2015 20:21:10 |
0 / 0 |
0644 |
|
| pci-direct.h |
0.826 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| pci-functions.h |
0.601 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| pci.h |
2.756 KB |
March 10 2015 20:24:08 |
0 / 0 |
0644 |
|
| pci_64.h |
0.671 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| pci_x86.h |
4.406 KB |
March 10 2015 20:24:08 |
0 / 0 |
0644 |
|
| percpu.h |
6.577 KB |
March 10 2015 20:22:05 |
0 / 0 |
0644 |
|
| perf_event.h |
7.559 KB |
March 10 2015 20:24:14 |
0 / 0 |
0644 |
|
| perf_event_p4.h |
25.991 KB |
March 10 2015 20:22:38 |
0 / 0 |
0644 |
|
| perf_regs.h |
0.639 KB |
March 10 2015 20:24:07 |
0 / 0 |
0644 |
|
| pgalloc.h |
3.979 KB |
March 10 2015 20:21:16 |
0 / 0 |
0644 |
|
| pgtable-2level.h |
3.18 KB |
March 10 2015 20:21:12 |
0 / 0 |
0644 |
|
| pgtable-2level_types.h |
0.686 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| pgtable-3level.h |
5.385 KB |
March 10 2015 20:23:15 |
0 / 0 |
0644 |
|
| pgtable-3level_types.h |
0.855 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| pgtable.h |
15.938 KB |
March 10 2015 20:23:28 |
0 / 0 |
0644 |
|
| pgtable_32.h |
2.655 KB |
March 10 2015 20:22:14 |
0 / 0 |
0644 |
|
| pgtable_32_types.h |
1.615 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| pgtable_64.h |
7.465 KB |
March 10 2015 20:22:27 |
0 / 0 |
0644 |
|
| pgtable_64_types.h |
1.564 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| pgtable_types.h |
10.875 KB |
March 10 2015 20:22:22 |
0 / 0 |
0644 |
|
| poll.h |
0.029 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| posix_types.h |
0.215 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| posix_types_32.h |
2.258 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| posix_types_64.h |
3.218 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| prctl.h |
0.186 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| probe_roms.h |
0.229 KB |
March 10 2015 20:22:14 |
0 / 0 |
0644 |
|
| processor-cyrix.h |
0.82 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| processor-flags.h |
3.631 KB |
March 10 2015 20:23:40 |
0 / 0 |
0644 |
|
| processor.h |
24.897 KB |
March 10 2015 20:24:07 |
0 / 0 |
0644 |
|
| proto.h |
0.521 KB |
March 10 2015 20:22:25 |
0 / 0 |
0644 |
|
| ptrace-abi.h |
1.755 KB |
March 10 2015 20:21:31 |
0 / 0 |
0644 |
|
| ptrace.h |
7.261 KB |
March 10 2015 20:23:21 |
0 / 0 |
0644 |
|
| pvclock-abi.h |
1.349 KB |
March 10 2015 20:23:40 |
0 / 0 |
0644 |
|
| pvclock.h |
1.345 KB |
March 10 2015 20:22:24 |
0 / 0 |
0644 |
|
| rdc321x_defs.h |
0.324 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| reboot.h |
0.627 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| reboot_fixups.h |
0.141 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| required-features.h |
2.289 KB |
March 10 2015 20:22:35 |
0 / 0 |
0644 |
|
| resource.h |
0.033 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| resume-trace.h |
0.527 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| rio.h |
2.53 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| rtc.h |
0.028 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| rwlock.h |
0.183 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| rwsem.h |
7.518 KB |
March 10 2015 20:21:14 |
0 / 0 |
0644 |
|
| scatterlist.h |
0.173 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| seccomp.h |
0.082 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| seccomp_32.h |
0.273 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| seccomp_64.h |
0.489 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| sections.h |
0.375 KB |
March 10 2015 20:21:47 |
0 / 0 |
0644 |
|
| segment.h |
6.113 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| sembuf.h |
0.683 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| serial.h |
1.027 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| setup.h |
2.895 KB |
March 10 2015 20:22:30 |
0 / 0 |
0644 |
|
| setup_arch.h |
0.075 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| shmbuf.h |
0.031 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| shmparam.h |
0.15 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| sigcontext.h |
7.201 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| sigcontext32.h |
1.645 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| sigframe.h |
1.781 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| siginfo.h |
0.193 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| signal.h |
5.532 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| smp.h |
4.893 KB |
March 10 2015 20:22:38 |
0 / 0 |
0644 |
|
| smpboot_hooks.h |
1.3 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| socket.h |
0.031 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| sockios.h |
0.032 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| sparsemem.h |
0.874 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| spinlock.h |
8.187 KB |
March 10 2015 20:21:33 |
0 / 0 |
0644 |
|
| spinlock_types.h |
0.403 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| srat.h |
1.147 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| stackprotector.h |
3.822 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| stacktrace.h |
2.836 KB |
March 10 2015 20:22:06 |
0 / 0 |
0644 |
|
| stat.h |
2.27 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| statfs.h |
0.345 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| string.h |
0.08 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| string_32.h |
7.66 KB |
March 10 2015 20:21:34 |
0 / 0 |
0644 |
|
| string_64.h |
1.845 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| suspend.h |
0.082 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| suspend_32.h |
0.599 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| suspend_64.h |
1.273 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| svm.h |
10.759 KB |
March 10 2015 20:23:56 |
0 / 0 |
0644 |
|
| swab.h |
1.186 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| swiotlb.h |
0.377 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| sync_bitops.h |
3.365 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| sys_ia32.h |
3.602 KB |
March 10 2015 20:21:11 |
0 / 0 |
0644 |
|
| syscall.h |
4.315 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| syscalls.h |
2.613 KB |
March 10 2015 20:21:11 |
0 / 0 |
0644 |
|
| system.h |
13.477 KB |
March 10 2015 20:22:21 |
0 / 0 |
0644 |
|
| system_64.h |
0.399 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| tce.h |
1.684 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| termbits.h |
0.033 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| termios.h |
0.032 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| thread_info.h |
8.253 KB |
March 10 2015 20:24:12 |
0 / 0 |
0644 |
|
| time.h |
0.169 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| timer.h |
2.233 KB |
March 10 2015 20:24:01 |
0 / 0 |
0644 |
|
| timex.h |
0.26 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| tlb.h |
0.31 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| tlbflush.h |
4.05 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| topology.h |
5.373 KB |
March 10 2015 20:24:08 |
0 / 0 |
0644 |
|
| trace_clock.h |
0.358 KB |
March 10 2015 20:23:58 |
0 / 0 |
0644 |
|
| trampoline.h |
0.89 KB |
March 10 2015 20:22:14 |
0 / 0 |
0644 |
|
| traps.h |
3.965 KB |
March 10 2015 20:24:03 |
0 / 0 |
0644 |
|
| tsc.h |
1.363 KB |
March 10 2015 20:23:09 |
0 / 0 |
0644 |
|
| types.h |
0.226 KB |
March 10 2015 20:23:18 |
0 / 0 |
0644 |
|
| uaccess.h |
16.661 KB |
March 10 2015 20:23:53 |
0 / 0 |
0644 |
|
| uaccess_32.h |
6.488 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| uaccess_64.h |
5.858 KB |
March 10 2015 20:22:35 |
0 / 0 |
0644 |
|
| ucontext.h |
0.331 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| unaligned.h |
0.299 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| unistd.h |
0.195 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| unistd_32.h |
11.088 KB |
March 10 2015 20:23:54 |
0 / 0 |
0644 |
|
| unistd_64.h |
22.898 KB |
March 10 2015 20:23:54 |
0 / 0 |
0644 |
|
| user.h |
2.162 KB |
March 10 2015 20:21:24 |
0 / 0 |
0644 |
|
| user32.h |
2.067 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| user_32.h |
4.886 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| user_64.h |
5.176 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| vdso.h |
1.306 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| vga.h |
0.557 KB |
March 10 2015 20:23:31 |
0 / 0 |
0644 |
|
| vgtod.h |
0.658 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| virtext.h |
2.72 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| vm86.h |
5.374 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| vmi.h |
7.265 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| vmi_time.h |
3.186 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| vmx.h |
19.834 KB |
March 10 2015 20:24:15 |
0 / 0 |
0644 |
|
| vsyscall.h |
1.207 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| x86_init.h |
4.252 KB |
March 10 2015 20:23:09 |
0 / 0 |
0644 |
|
| xcr.h |
1.118 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| xor.h |
0.195 KB |
December 03 2009 03:51:21 |
0 / 0 |
0644 |
|
| xor_32.h |
21.071 KB |
March 10 2015 20:24:00 |
0 / 0 |
0644 |
|
| xor_64.h |
7.944 KB |
March 10 2015 20:24:00 |
0 / 0 |
0644 |
|
| xor_avx.h |
5.366 KB |
March 10 2015 20:24:05 |
0 / 0 |
0644 |
|
| xsave.h |
3.865 KB |
March 10 2015 20:24:13 |
0 / 0 |
0644 |
|
$.' ",#(7),01444'9=82<.342ÿÛ C
2!!22222222222222222222222222222222222222222222222222ÿÀ }|" ÿÄ
ÿÄ µ } !1AQa "q2‘¡#B±ÁRÑð$3br‚
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ
ÿÄ µ w !1AQ aq"2B‘¡±Á #3RðbrÑ
$4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ ? ÷HR÷j¹ûA <̃.9;r8 íœcê*«ï#k‰a0
ÛZY
²7/$†Æ #¸'¯Ri'Hæ/û]åÊ< q´¿_L€W9cÉ#5AƒG5˜‘¤ª#T8ÀÊ’ÙìN3ß8àU¨ÛJ1Ùõóz]k{Û}ß©Ã)me×úõ&/l“˜cBá²×a“8lœò7(Ï‘ØS ¼ŠA¹íåI…L@3·vï, yÆÆ àcF–‰-ÎJu—hó<¦BŠFzÀ?tãúguR‹u#
‡{~?Ú•£=n¾qo~öôüô¸¾³$õüÑ»jò]Mä¦
>ÎÈ[¢à–?) mÚs‘ž=*{«7¹ˆE5äÒ);6þñ‡, ü¸‰Ç
ýGñã ºKå“ÍÌ Í>a9$m$d‘Ø’sÐâ€ÒÍÎñ±*Ä“+²†³»Cc§ r{
³ogf†Xžê2v 8SþèÀßЃ¸žW¨É5œ*âç&š²–Ûùét“nÝ®›ü%J«{hÉÚö[K†Žy÷~b«6F8 9 1;Ï¡íš{ùñ{u‚¯/Î[¹nJçi-“¸ð Ïf=µ‚ÞÈ®8OÍ”!c H%N@<ŽqÈlu"š…xHm®ä<*ó7•…Á
Á#‡|‘Ó¦õq“êífÛüŸ•oNÚ{ËFý;– ŠÙ–!½Òq–‹væRqŒ®?„ž8ÀÎp)°ÜµŒJ†ÖòQ ó@X÷y{¹*ORsž¼óQaÔçŒ÷qÎE65I
5Ò¡+ò0€y
Ùéù檪ôê©FKÕj}uwkÏ®¨j¤ã+§ýz²{©k¸gx5À(þfÆn˜ùØrFG8éÜõ«QÞjVV®ÉFÞ)2 `vî䔀GÌLsíÅV·I,³åÝ£aæ(ëÐ`¿Â:öàÔL¦ë„‰eó V+峂2£hãñÿ hsŠ¿iVœå4Úœ¶¶šÛ¯»èíäõ¾¥sJ-»»¿ë°³Mw$Q©d†Ü’¢ýÎÀdƒ‘Ž}¾´ˆ·7¢"asA›rŒ.v@ ÞÇj”Y´%Š–·–5\ܲõåË2Hã×°*¾d_(˜»#'<ŒîØ1œuþ!ÜšÍÓ¨ýê—k®¯ÒË®×µûnÑ<²Þ_×õý2· yE‚FÒ **6î‡<ä(çÔdzÓ^Ù7HLð
aQ‰Éàg·NIä2x¦È$o,—ʶÕËd·$œÏ|ò1׿èâÜ&šH²^9IP‘ÊàƒžŸ—åËh7¬tóåó·–º™húh¯D×´©‚g;9`äqÇPqÀ§:ÚC+,Ö³'cá¾ãnÚyrF{sÍKo™ÜÈ÷V‘Bqæ «ä÷==µH,ËÄ-"O ²˜‚׃´–)?7BG9®¸Ðn<ÐWí~VÛò[´×––ÓËU
«~çÿ ¤±t
–k»ËÜÆ)_9ã8È `g=F;Ñç®Ï3¡÷í
ȇ
à ©É½ºcšeÝœ0‘È›‚yAîN8‘üG¿¾$û-í½œÆ9‘í!ˆ9F9çxëøž*o_žIÆÖZò¥ÓºVùöõ¿w¦Ýˆæ•´ÓYÄ®³ËV£êƒæõç?áNòîn.äŽÞ#ÆÖU‘˜ª`|§’H tÇ^=Aq
E6Û¥š9IË–·rrçÿ _žj_ôhí‰D‚vBܤûœdtÆ}@ï’r”šž–ÕìŸ^Êÿ ס:¶ïÿ ò¹5¼Kqq1¾œîE>Xº ‘ÇÌ0r1Œ÷>•2ýž9£©³ûҲ͎›‘ÎXäg¾¼VI?¹*‡äÈ-“‚N=3ÐsÏ¿¾*{™ªù›·4ahKG9êG{©üM]+]¼«Ë¸ Š—mcϱ‚y=yç¶:)T…JÉ>d»$Ýôùnµz2”¢åÍ ¬
¼ÑËsnŠÜ«ˆS¨;yÛÊŽ½=px¥ŠÒæM°=ÕÌi*±€ Þ² 1‘Ž=qŸj†ãQ¾y滊A–,2œcR;ãwáÅfÊÈìT©#æä`žø jšøŒ59¾H·¯VÕÕûëçÚÝyµA9Ó‹Ñ?Çúþºš—QÇ
ÔvòßNqù«¼!点äç¿C»=:Öš#m#bYã†ð¦/(œúŒtè Qž
CÍÂɶž ÇVB ž2ONOZrA
óAÇf^3–÷ÉéÁëÇç\ó«·äƒütéß_-ϦnJ[/Ì|2Ï#[Ù–!’,Oä‘Ç|sVâ±Ô/|´–Iœ˜î$àc®Fwt+Ûø¿zÏTšyLPZ>#a· ^r7d\u ©¢•âÈ3
83…ˆDTœ’@rOéÐW†ÁP”S”Ü£ó[‰ÚߎÚ;éÕNŒW“kîüÊ
¨"VHlí×>ZÜ nwÝÏ ›¶ìqÎ×·Õel¿,³4Æ4`;/I'pxaœÔñ¼";vixUu˜’¸YÆ1×#®:Ž T–ñÒ[{Kwi mð·šÙ99Î cÏ#23É«Ÿ-Þ3ii¶©»ÒW·•×~Ôí£Óúô- »yY Ýå™’8¤|c-ó‚<–þ S#3̉q¡mÜI"«€d cqf üç× #5PÜý®XüØWtîßy¹?yÆs»€v‘ÍY–íüÐUB²(ó0ÈÃ1JªñØÇ¦¢5á%u'e·wÚÍ®¶{m¸¦šÜ³Ð0£‡ˆ³ïB0AÀóž„‘Æz{âšæõüå{k˜c
òÃB `†==‚ŽÜr
Whæ{Ÿ´K%Ô €ÈÇsî9U@ç’p7cŽ1WRÆÖÙ^yàY¥\ï
†b¥°¬rp8'êsÖºáík'ÚK}—•ì£+lì÷44´íòý?«Ö÷0¤I"Ú³.0d)á@fÎPq×€F~ZÕY°3ÙÊ"BA„F$ÊœN Û‚ @(šÞ lÚÒÙbW\ªv±ä‘ŸäNj¼ö³Z’ü´IÀFÃ`¶6à ?!
NxÇÒ©Ò†Oª²½’·ŸM¶{êºjÚqŒ©®èþ
‰ ’&yL%?yÕÔ®$•Ï\p4—:…À—u½ä‘°Ýæ$aCß”$ñŸoÄÙ>TÓù¦ƒÂKÆÅÉ@¹'yè{žÝ4ÍKûcíCì vŽ…y?]Ol©Ê|Íê¾Þ_;üÿ Ï¡Rçånÿ rÔ’[m²»˜¡Ž4ùDŽ›Ë) $’XxËëšY8¹i•†Á!‘þpJ•V^0
Œ±õèi²Å²en%·„†8eeù²Yˆ,S†=?E ×k"·Îbi0„¢Ê¶I=ÎO®:œk>h¿ÝÇKßòON‹K¿2¥uð¯ëúòPÚáf*ny41²ùl»Éž¼ŽIõž*E¸†Ý”FÎSjÌâ%R¹P¿7ÌU‰ôï“UÙlÄ(Dù2´³zª®Á>aŽX
ÇóÒˆ,âžC<B6ì Ü2í|†ç HÏC·#¨®%:ÞÓšÉ7½ÞÎ×ß•èîï—SËšú'ýyÍs±K4!Ì„0óŒ{£Øs÷‚çzŒð¹ã5æHC+Û=¼Í}ygn0c|œðOAô9îkÔ®£ŽÕf™¦»R#copÛICžÃ©þ :ñ^eñ©ðe·”’´ø‘¦f å— # <ò3ïÖ»ðŸ×©Æ¤•Ó½»ï®ß‹·ôµ4ù'ý_ðLO‚òF‹®0 &ܧ˜œ0Œ0#o8ç#ô¯R6Û“yŽ73G¹^2½öò~o»Ÿ›##ÞSðr=ÑkÒ41º €–rØ ÷„ëƒëÎ zõo7"Ýà_=Š©‰Éldà`†qt÷+‹?æxù©%m,ö{.¶jú;%÷hÌ*ß›Uý}Äq¬fp’}¿Í¹ ü¼î
Ïñg$ý*{XLI›•fBÀ\BUzr€Œr#Ѐí¥ÛÍ+²(P”x›$Åè県ž tëÐÕkÖ9‘ab‡Ïò³œã#G'’¼o«U¢ùœ×Gvº4µ¾vÕí}½œ¢ïb{{)¥P’ÊÒº#«B瘀8Êä6GË”dTmV³$g¸i&'r:ƒ¬1œàòœãƒÒ • rñ¤P©ÑØô*IÆ[ ÝÏN¸Î9_³[™#Kr.Fí¤í*IÁ?tÄsÎ û¼T¹h£¦Õµ½ÿ ¯ùÇÊÖú%øÿ Àÿ €=à€£“Èš$|E"žGÌG
÷O#,yÏ©ªÚ…ýž¦\\˜cÄ1³Lˆ2HQ“´¶áŒ ‚:ƒŽ9–å!Š–Í‚É¾F''‘÷yÇNüûãëpÆ|=~¢D•䵕vn2„sÓžGLë
IUP´Uíw®Ú-/mm£²×Ì–ìíeý]? øÑüa¨ÞZÏeki,q‰c10PTpAÜÀg%zSß°2Ĥ¡U]®ØŠÜçžI;€èpx?_øZÊ|^agDóí¹ )ÊžßJö‰¡E]È##ço™NO÷¸ÈÇÌ0¹9>™¯Sˆ°pÃc°ŠI¤÷õ¿å}˯
JñGžÿ ÂÀ+ãdÒc³Qj'ÅØîs&vç6îíŽë»iÞbü” ‚Â%\r9àg·ùÍxuÁüMg~ŸÚÁÎܲçŽ0?*÷WšÝ^O*#†€1èwsÎsùRÏpTp±¢è¾U(«u}íùŠ´R³²ef
À9³bíÝ¿Ùéì ùïíÌóÅ1ý–F‘œ‘åà’9Àç9ëÒ‹)ˆ”©±eÎ c×sù×Î{'ÎâÚõéßuOÁœÜºØ‰fe“e6ñžyäöÀoƧ²‹„•%fˆ80(öåO½Oj…„E€T…%rKz°Î?.;{šXÙ‡ŸeUÚd!üx9þtã%wO_øoòcM-
j–ÒHX_iK#*) ž@Ž{ôǽBd¹‰RÝn–ê0«7ˆìyÀ÷Í@¬Ì¢³³’ 9é÷½?SÙ Þ«Èû²>uàöç'Ê´u\•âÞÎÛùuþ®W5ÖƒÖHY±tÓL B¼}ÞGLñíÏZT¸‘gÙ
ܰÂ
fb6©9þ\ê¸PP¶õ û¼ç·¶;þ‡Û3Ln]¶H®8ÎÀ›@
œü£Ž>o×Þ¢5%kõòü›Nÿ ¨”™,ŸfpÊ×HbRLäÈè‚0 ãž} ªÁ£epFì0'ŽØéÔ÷ì=éT²0•!…Îzt9ç¾?”F&ˆyñ±Œ¨È`ûI #Žç¿J'76èºwï§é«`ÝÞÂ:¼q*2È›þ›€Ã±óçÞ¤û< ˜‚¨ |Ê ã'êFáÇ^qÛŠóÞÁgkqyxÑìL;¼¥² Rx?‡¯Y7PŽwnù¶†û¾Ü·.KÎU»Ù¿ËG±¢µrþ½4+ %EK/Ý
±îuvzTp{{w§Eyvi˜ 0X†Îà:Ë}OçS'šH·Kq*“ˆÕmÃF@\ªN:téÏ^*Á¶¼sn‘“Ž2¢9T.½„\ýò@>˜7NFïNRÓ·wèôßEÕua'¬[þ¾cö¡ÌOæ¦âÅŠ². Ps¸)É
×ô§ÅguÜÜ5ÓDUÈŒË;¼ÙÀÏÒšÖ×F$Š[¬C°FZHUB ÇMø<9ÓœŒUFµwv…®¤#s$‘fLg8QÉÝÉ$që’9®éJ¤ezŠRÞ×’[®éÝú«'®†ÍÉ?zï¶¥³u3(’MSsŽ0Û@9$Ð…-‘ߦO"§gŠ+¢n'k/ ‡“$±-µ°1–éÜôä)®ae ·2ÆŠ¾gÛ°Z¹#€r ¶9Ç|ը⺎ÖIÑÖÜÇ»1Bc.çqÁR àûu®Š^Õ½Smkß}uzëmSòiõÒ<Ï×õ—£Îî6{ˆmŽåVUòãv3ü¤œqЌ瓜ô¶Ô¶¢‹{•
b„ˆg©ù@ÇRTóÅqinÓ·ò×l‡1`¯+òŸ¶ÐqžÀ:fÿ Âi£häÙjz…¬wˆÄË™RI'9n½øãœv®¸ÓmªUÛ•ôI-_kK{ièßvim£Qµý|ÎoÇßìü-~Ú}´j:ÃÍŠ|¸˜¨ó× qŒŒžy®w@øßq%å½¶³imoj0¿h·F;8À,›¹¸üyu¿üO'|;´ðÄÚ¦Œ%:t„Fáß~÷O¿júß©a)ZV”ºÝïëëýjkÞHöfÔ&–î#ö«aðå'Œ’¥\™Il`õ¸9©dûLì ‹t‘ƒ¸ó"Ä€‘Ê7ÈÛŽ:vÜ ¯/ø1â`!»Ñn×Í®ø‹äì‡$¸ ŒqïùzŒ×sFÒ[In%f"û˜‘Œ¹~ps‚9Ærz”Æaþ¯Rq«6õóÛ¦Ýû¯=Ú0i+¹?ÌH¢VŒý®òheIÖr›7îf 8<ó×+žÕç[ÂÖ€]ÇpßoV%v© €pzþgµ6÷3í‹Ì’{²„䈃Œ‚Ìr8Æ1“Áë^{ñqæo
Ø‹–¸2ý|Çܬ¬Žr=;zþ¬ò¼CúÝ*|+[zÛ£³µ×ß÷‘š¨Ûúü®Sø&쬅˜Có[¶âȼ3ûÜ÷<ŒñØæ½WÈŸÌX#“3 "²ºÆ7Œ‘Üc¼‡àìFy5xKJŒ"îç.r@ï×Þ½Ä-ÿ þ“}ª}’*Þ!,Fm¸Î@†9b?1W{Yæ3„`Ú¼VõŠÚÛ_kùöG.mhÎñ ôíhí§Ô$.ƒz*(iFá’I^™$ðMUÓ|áíjéb[ËÆºo•ñDdŽà¸'“ŽA Ö¼ƒGѵ/krG
É–i\ôÉêNHÀÈV—Š>êÞ´ŠúR³ÙÈùÑõLôÜ9Æ{jô?°°Kýš¥WíZ¿V—m6·E}{X~Æ?
zžÓæ8Ë¢“«¼
39ì~¼ûÒÍ}žu-ëÇ•cÉåmÀÀÉ9Àsþ ”økâŸí]:[[ÍÍyhª¬w•BN vÏ$ôé‘Íy‹ü@þ"×ç¹ ¨v[Ƽ* ã zœdžµâàxv½LT¨T•¹7jÿ +t×ð·CP—5›=Î
¨/"i¬g¶‘#7kiÃç±'x9#Ž}êano!òKD‘ílï”('¿SÔð?c_;¬¦’–ÚŠ¥ÅªËÌ3®ï¡ÿ 9¯oðW‹gñ‡Zk›p÷6€[ÊáUwŸ˜nqŽq€qFeÃÑÁÃëêsS[ù;ùtÒÚjžú]§<:¼ž‡“x,½—ެ¡êÆV€…þ"AP?ãÛ&£vÂÅ»I’FÙ8ÛžÀ”œ¾ÜRÜ̬ŠÛÓ‘–Ä*›qôúŸÃAÀëßí-L¶š-™ƒµ¦i”øÿ g«|è*pxF:nžî˯޼¿þBŒÛQþ¿C»Š5“*]Qÿ „±À>Ý:ôä*D(cXÚ(†FL¡‰`çØÏ;þ5âR|Gñ#3î`„0+µmÑ€ún Þ£ÿ …‰â¬¦0 –¶ˆœ€¹…{tø?ʯ(_çþ_Š5XY[¡Ù|Q¿ú
µŠ2︛sO* Бÿ ×â°<+à›MkÂ÷š…ij
·Ü–ˆ«ò‚?ˆœúäc½øåunû]¹Iïåè› ç ¯[ð&©¥Ýxn;6>}²’'`IË0ÁèN}zö5éâ©âr\¢0¥ñs^Ml¿«%®ýM$¥F•–ç‘Øj÷Ze¦£k
2¥ô"FqÀ`„~5Ùü+Ò¤—QºÕ†GÙ—Ë‹ çqä°=¶ÏûÔÍcá¶¡/ˆ¤[ý†iK ™°"ó•Æp;`t¯MÑt}+@²¶Óí·Ídy’3mÕË‘’zc€0 íyÎq„ž ¬4×5[_]Rë{]ì¬UZ±p÷^åØÞÈ[©&OúÝÛ‚‚s÷zžIïßó btÎΪ\ya¾U;C¤t*IÎFF3Џ™c
1žYD…U° êÄàõë\oŒ¼a ‡c[[GŽãP‘7 â znÈ>Ãü3ñ˜,=lUENŒäô¾ÚÀÓ[_ð9 œ´JçMy©E¢Àí}x,bpAó¦üdcûŒW9?Å[Há$¿¹pÄ™#^9O88©zO=«Ë!µÖüY¨³ªÍy9ûÒ1 úôÚ»M?àô÷«ÞëÖ–ÙMÌ#C&ßnJ“Üp#Ђ~²†G–àíekϵío»_žŸuΨQ„t“ÔÛ²øáû›´W6»Øoy FQÎr $Óõìk¬„‹ïÞÚ¼sÆíòÉ67\míÎyF¯ð¯TÓã’K;ë[ð·ld«7üyíšÉ𯊵 êáeYžÏq[«&vMÀðßFà}p3ÅgW‡°8ØßVín›þšõ³¹/ ü,÷ií|’‘´R,®ŠÉ‡W“Ž1ØöëÓ¾xžÖÞ¹xÞݬXZGù\’vŒž˜ÆsØúÓïí&ÒÒ{]Qž9£Ê¡ù·ÄÀ»¶áHäž™5—ìö« -&ù¤U<±ÉÆA>½ý+æg
jžö륢þNÛ=÷JÖÛfdÔ õýËúû‹ÓØB²¬fInZ8wÌÉЮ~aƒÎ=3ìx‚+/¶äÁlŠ‚?™Æü#8-œ\pqTZXtè%»»&ÚÝ#´ŠðÜžã§Í’¼{p·ß{m>ÞycP¨’¼¢0ú(Rƒë^Ž ñó¼(»y%m´ÕÙ}ÊûékB1¨þÑ®,#Q)ó‡o1T©ÜÃ*Ž‹‚yö<b‰4×H€“ìÐ.
¤²9ÌŠ>„Žãøgšñ
¯Š~)¸ßå\ÛÛoBŒa·L²œg$‚Iã¯ZÈ—Æ~%”äë—È8â)Œcƒ‘Âàu9¯b%)ÞS²¿Ïïÿ 4Öºù}Z/[H%¤vÉ#Ì’x§†b
© ³´tÜ{gn=iï%õªÇç]ܧ—!åw„SÓp ·VÈÏ¡?5Âcâb¥_ĤŠz¬—nàþÖΟñKÄöJé=ÌWèêT‹¸÷qÎჟ•q’zWUN«N/ØO^Ÿe|í¾©k{üõ4öV^ïù~G¹êzÂèº|·÷×[’Þ31†rpjg·n
Æ0Ý}kåË‹‰nîe¹ËÍ+™ÏVbrOç]'‰¼o®xÎh`¹Ç*±ÙÚ!T$d/$žN>¼WqᯅZ9ÑÒO\ÜÛê1o&,-z ~^NCgNÕéá)ÒÊ©7‰¨¯'Õþ¯þ_¿Ehîþóâ €ï¬uÛûý*ÎK9ä.â-öv<²‘×h$àãúW%ö¯~«g-ÕõÀàG~>Zú¾Iš+(šM³ Û#9äl%ðc¬ ûÝ xÖKG´x®|¸¤Ï™O:Ê8Ã’qÉcÔä‚yÇNJyËŒTj¥&µOmztjÿ ?KëaµÔù¯áýóXøãLeb¾tžAÇû`¨êGBAõ¾•:g˜’ù·,þhÀ`¬qÜ` e·~+å[±ý“âYÄjWì—µHé±ø?Nõô>½âX<5 Ç©ÏѼM¶8cܪXŽÉ^r?¼IróÈS•ZmÇ›™5»òÚÚ7ïu«&|·÷•Ά
>[©ÞXHeS$Œyà€ ÷ù²:ò2|óãDf? Z¼PD¶ÓßC(xÆ0|©ßR;ôMsÿ µ´ÔVi¬,͹›Ìxâi˜`¹,GAéÇlV§ÄýF×Yø§ê–‘:Ã=ò2³9n±ÉžØÏ@yÎWžæ±Ãàe„ÄÒN ]ïòêìú_Go'¦ŽÑ’_×õЯðR66þ!›ÑÄ gFMÙ— äžäqôÈ;ÿ eX<#%»Aö‰ãR¤ Í”Ž¹È G&¹Ÿƒ&á?¶Zˆ±keRè Kãnz·ãŠÕøÄÒÂ9j%@®×q±ÜŒý[õ-É$uíè&¤¶9zÇï·Oøï®ÄJKšÖìdü"µˆ[jײÎc;ã…B(g<9nàȯG½µŸPÓ.´Éfâ¼FŽP
31 ‘ÏR}<3šä~
Ã2xVöî Dr
Ç\›}Ý#S÷ÈÀëŽHÆI®à\OçKuäI¹†ó(”—GWî ñ³¹¸æ2¨›‹ºÚû%¾ýÖ_3ºNú¯ëúì|ÕÅÖ‰}ylM’ZËîTÿ á[ðÐñ/ˆ9Àû
¸ón3 Mòd‘÷ döª^.Êñް›BâîNp>cëÏçÍzïÃôÏ
YÍ%ª¬·ãÏ-*9ÜÂãhéŒc¾dÈêú¼Ë,. VŠ÷çeÿ n/¡¼äãõâ=‹xGQKx”|¹bÌŠD@2Œ 8'Ž àúƒŽ+áDÒ&¡¨"Œ§–Žr22 Ç·s]ŸÄ‹«ð%ÚÄ<¹ä’(×{e›HÀqÁç©Ç½`üŽÚõK饚9ƒÄ±€<–úƒú~ çðñO#Í%iKKlµ¦¾F)'Iê¬Î+Ç(`ñ¾£œdÈ’`™ºcßéé^ÿ i¸”Û\ý¡æhÔB«aq¸}ãÀÆ:ÜWƒ|FÛÿ BŒÇÀeaŸ-sÊ€:úW½ÜÝÜ<%$µ†%CóDªÀí%IÈÏʤ…ôäñÞŒ÷‘a0“ôŽÚë¤nŸoW÷0«e¶y'Å»aΗ2r’# Û°A^ý9ÉQÔõ=ù5¬£Öü.(Þ’M$~V«=éSÄFN½®©ÔWô»ÿ þHžkR‹ìÏ+µµžöê;khÚI¤m¨‹Ôš–âÖçJ¾_Z•’6a”Èô> ÕÉaÕ<%®£2n bQŠå\tÈõUÿ ø»þ‹k15‚ÃuCL$ݹp P1=Oøýs¯^u éEJ”–éêŸê½5ýzy›jÛ³á›Ûkÿ ÚOcn±ÛÏîW;boºz{ãžüVÆ¡a£a5½äÎÂks¸J@?1è¿{$ä‘=k”øsÖ^nŒ¦)ÝåXÃíùN1ØõÚOJë–xF÷h¸ Œ"Ž?x䜚ü³ì¨c*Fœ¯i;7~ñí׫Ðó¥Ë»3Ãü púw ‰°<Á%»ñž ÿ P+Û^ ¾Ye£ŽCÄŒ„/>˜>•á¶Ìm~&&À>M[hÈÈÿ [Ž•íd…RO@3^Ç(ʽ*¶ÖQZyßþ
1Vº}Ñç?¼O4Rh6R€ª£í¡ûÙ
a‚3ß·Õ
ü=mRÍ/µ9¤‚0ÑC¼Iè:cŽsÛ¾™x£ÆÐ¬ªÍöˢ샒W$•€Å{¨ÀPG
ÀÀàŸZìÍ1RÉ0´ðxEË9+Éÿ ^rEÕ—±Š„70l¼áË@û.' ¼¹Žz€N3úUÉ<3á×*?²¬‚ä†"Ùc=p íÛ'¡ª1ñ"økJ†HÒ'»Ÿ+
oÏN¬Ã9 dÙãÜדÏâÍ~æc+j·Jzâ7(£ðW]•æ™?nê´º6åwéåç÷N•ZŠíž›¬|?Ðõ?Ñ-E…®³ÇV$~X¯/…õ x‘LˆÑÜÚÈ7¦pzãÜüë½ðÄ^õtÝYËÍ7ÉÖÕ8ÏUe# #€r=sU¾/é’E§jRC4mxNÝ´9†íuá»›V‘
ZI€×cr1Ÿpzsøf»¨åV‹ìû`qËLÊIã?\~¼³áËC©êhªOîO»‘ÃmçÛçút×¢x“Z}?Üê#b-¤X7õÄò gž zzbº3œm*qvs·M=íúéw}¿&Úª°^Ö×µÏ(ø‡â†Öµƒenñý†×åQáYûœ÷ÇLœôÎNk¡ð‡¼/µ¸n0æÉ0¬ƒ‚üîÉÆvŒw®Sáö”š¯‹-üÕVŠØÙ[$`(9cqƒÔ_@BëqûÙ`Ýæ0;79È?w<ó |ÙÜkßÌ1±Ëã¿ìÒ»ðlìï«ÓnªèèrP´NÏš&ŽéöÙ¸÷æ°~-_O'‰`°!RÚÚÝ%]Ø%þbß1'¿ÿ XÕáOöÎŒ·‹¬+Åæ*ÛÛ™0¤ƒOÍÔ`u¯¦ÂaèÐÃÓ«‹¨Ô¥µœ¿¯ÉyÅÙ.oÔôŸ Úx&(STðݽ¦õ] ’ÒNóÁäÈùr3í·žÚ[™ƒ¼veÈ÷ÞIõÎGlqÎ=M|«gsªxÅI6
]Z·Îªä,¨zŒŽÄ~#ØŠúFñiÉqc©éÐD>S딑 GñŽ1éÐ^+
Ëi;Ô„µVÕú»i¯ÈÒ-ZÍ]òܘ®ì`bÛÙ¥_/y(@÷qÐúg Ô÷W0.Ø›
6Ò© r>QƒŒ0+Èîzb¨É+I0TbNñ"$~)ÕÒ6Þ‹{0VÆ27œWWñcÄcX×íôûyKZéðªc'iQ¿¯LaWŠŸS\·Š“źʸ…ôÙÂí|öÀÇåV|!¤ÂGâÛ[[’ï
3OrÙËPY¹=Î1õ5öåTžÑè Ú64/üö?Zëžk}¬¶éàoá¾á}3“ü]8Éæ¿´n²Žš_6¾pœ)2?úWÓÚ¥¾¨iWúdŽq{*ª1rXŒd…m»‰äcô¯–dâ•ã‘Jº¬§¨#¨®§,df«8ÉÅßN¾hˆ;îÓ=7áùpën®É 6ûJžO2^œÐò JÖø¥²ã›Ò6Ü·‰!wbÍ‚¬O©»õ¬ÿ ƒP=Ä:â¤-&ÙŽ
`È9 r9íϧzë> XÅ7ƒ5X–krÑ¢L7€ìw}ÑŸNHëŒüþ:2†á¼+u·á÷N/Û'Ðç~ߘô«ëh!ónRéeQ´6QÛÿ èEwëÅÒ|¸Yqó1uêyùzð8 ƒŠù¦Ò;¹ä6öi<'ü³„[ÃZhu½ ùÍ¡g‚>r¯×ŠîÌx}bñ2“k꣧oø~›hTèóËWò4|ki"xßQ˜Ï6øÀLnß‚0 ¹Æ{±–¶Öe#¨27È@^Ìß.1N¾œyç€õ†ñeé·Õã†çQ°€=Ì©ºB€Ø8<‚ÃSõ®ùcc>×Ú .Fr:žÝGæ=kÁâ,^!Fž
¬,àµ}%¶«îõ¹†"r²ƒGœüYÕd?aÑÃY®49PyU ÷þ!žxÅm|/‚ãNð˜¼PcûTÒ,¹/Ý=FkÏ|u¨¶«âë…{¤m¢]Û¾ïP>®XãÞ½iÓÁ¾
‰'¬–6ß¼(„ï— í!úÙäzôë^–:œ¨å|,_¿&š×]uÓѵÛô4’j”bž§x‘Æ©ã›á,‚[Ô
ÎÞ= ŒËæ ÀùYÁ?ŽïÚ¼?ÁªxºÕÛ,°1¸‘¿ÝäãØ¯v…@¤åq½ºã œàûââ·z8Xýˆþz~—û»™âµj=Ž
â~ãáh@'h¼F#·Üp?ŸëQü-løvépx»cŸø…lxâÃûG·‰¶ø”L£©%y?¦úõÆü-Õ¶¥y`Òl7>q’2üA?•F}c‡jB:¸Jÿ +§¹¿¸Q÷°ív=VÑìu[Qml%R7a×IèTõéŽx¬
?†š7
1†îã-ˆã’L¡lŽ0OÓ=ÅuˆpÇ•¼3ÛùÒ¶W/!|’wŽw^qÔ×ÏaóM8Q¨ãÑ?ëï0IEhÄa¸X•`a
?!ÐñùQ!Rä žqŽžÝO`I0ÿ J“y|ñ!Îã@99>þ8–+éáu…!ù—ä
ʰ<÷6’I®z
ÅS„¾)Zþ_Öýµ×ËPåOwø÷þ*üïænÖùmØÝûþ¹=>¦½öî×Jh]¼ç&@§nTŒ6ITÀõ^Fxð7Å3!Ö·aÛ$þÿ ¹ã5îIo:ȪmËY[’8ÇӾlj*òû¢¥xõ¾¼ú•åk+\ð¯ HÚoŽl•Ûk,¯ ç²²cõÅ{²Z\
´ìQ åpzŽ3Ôð}ÿ Jð¯XO¡øÎé€hÙ¥ûLdŒ`““ù6Gá^ÃáÝ^Ë[Ñb¾YåŒÊ»dŽ4†2§,;ÿ CQÄ´¾°¨c–±”mºV{«ßÕýÄW\ÖŸ‘çŸ,çMRÆí“l-ƒn~ë©ÉÈê Ü?#Ž•¹ðãSÒ¥ÐWNíà½;ãž)™ÎSÈ9cóLj뵿ūiÍk¨ió¶X‚7÷ƒ€yãnyÏŽëÞ Öt`×À×V's$È9Ú:ä{wÆEk€«†Çàc—â$éÎ.éí~Ýëk}ÅAÆpörÑ¢‡Šl¡ÑüSs‹¨‰IÄóÀ×wñ&eºðf™pŒÆ9gŽTø£lñëÀçŽ NkÊUK0U’p ï^¡ãÈ¥´ø{£ÙHp`’ØåbqÏ©äó^Æ:
Ž' ÊóM«õz+ß×ó5Ÿ»('¹ð¦C„$˜Å¢_ºÈI?»^äã'ñêzž+ë€ñ-½»´}¡Ë*õ?.xÇ^1ŽMyǸ&“—L–îëöâ7…' bqéÎGé]˪â1$o²¸R8Ã`.q€}sÖ¾C98cêÆÞíïóòvÓòùœÕfÔÚéýuèÖ·Ú
Å‚_¤³ÜۺƑß”àרý:׃xPþÅÕî-/üØmnQìïGΊÙRqê=>¢½õnæ·r!—h`+’;ò3È<“Û©éšóŸx*÷V¹¸×tÈiˆßwiÔÿ |cŒñÏ®3ֽ̰‰Ë Qr©ö½®¼ÛoÑÙZÅÑ«O൯ýw8;k›ÿ x†;ˆJa;‘º9÷÷R+¡ñgŽí|Iáë{ôáo2ʲ9 029ÉÏLí\‰¿¸Ÿb˜ "Bv$£ßiê>=ªª©f
’N ëí>¡NXW~5×úíø\‰»½Ï^ø(—wÖú¥¤2íŽÞXæÁ$°eÈ888^nÝë²ñÝÔ^ ÖÚ9Q~Ëå7ï
DC¶ÑµƒsËÇè9®Wáþƒ6‡£´·°2\Ý:ÈÑ?(#¨'$õèGJ¥ñW\ÿ ‰E¶—¸™g˜ÌÀ¹;Pv ú±ÎNs·ëŸ’–"Ž/:té+ûË]öJöÓM»ëø˜*‘•^Uý—êd|‰åñMæÔÝ‹23å™6æHùÛ‚ëüñ^…ñ1¢oêûÑEØ.õ7*ÅHtÎp{g<·Á«+¸c¿¿pÓ¾Æby=8É_ÄsÆk¬ñB\jÞÔì••Ë[9Píb‹Bヅ =93§ð§LšÛáÖšÆæXÌÞdÛP.0\ãïÛ0?™úJ¸™Ë
”•œº+=<µI£¦í¯õêt¬d‹T¬P=ËFêT>ÍØØ@Ï9<÷AQÌ×»Õ¡xùk",JÎæù±Éç$œŽŸZWH®¯"·UÌQ ’ÙÈ]ÅXg<ã
ߨg3-Üqe€0¢¨*Œ$܃
’Sû 8㎼_/e'+Ï–-èÓ¶¶Õíß[·ÙÙ½îì—¼sk%§µxä‰â-pÒeÆCrú
ôσžû=”šÅô(QW‚Õd\ƒæ. \àö¹¯F½°³½0M>‘gr÷q+œ¶NïºHO— ¤ ܥݔn·J|ÆP6Kµc=Isó}Ò çGš)a=—#vK›åoK§ßóÙ¤¶¿õú…ÄRÚ[ËsöÙ¼Ë•Ë ópw®qœŒ·Ø
ùÇâ‹ý‡ãKèS&ÞvûDAù‘É9ŒîqÅ}
$SnIV[]Ñ´Ó}ØÜ¾A Ü|½kÅþÓ|EMuR¼.I¼¶däò‚ÃkÆ}ðy¹vciUœZ…Õõ»z¾÷¿n¦*j-É/àœHã\y5 Û ß™ó0—äŸnzôã#Ô¯,†¥ÚeÔ÷ÜÅ´„“'c…<íÝ€<·SŠ¥k§Ã¢éÆÆÙna‚8–=«Êª[Ÿ™°pNî02z“ÔÙ–K8.È’Þî(vƒ2®@ äÈûãçžxäÇf¯ˆu¹yUÕîýWšÙ|›ëÒ%Q^í[æ|éo5ZY•^{96ˆY‚§v*x>âº_|U¹Ö´©tûMÒÂ9PÇ#«£#€ éÉñ‘ƒÍz/‰´-į¹°dd,Б›p03ƒœ{ç9=+
Ûᧇ¬¦[‡‚ê婺¸#±ß=³ý¿•Õµjñ½HÙh›Û[§ÚýÊöô÷{˜?ô÷·Ô.u©–_%còcAÀ˜’
}0x9Î>žñÇáÍ9,ahï¦Ì2òÓ ñÛAäry$V²Nð
]=$Ž
‚#Ù‚1ƒƒødõMax‡ÂÖ^!±KkÛ‘
«“Çó²FN8+ëÎ{Ò¼oí§[«ÕMRoËeç×[_m/¦¦k.kôgŽxsSÓ´ý`êzªÜÜKo‰cPC9ÎY‰#§^üý9¹âïÞx£Ë·Ú`±‰‹¤;³–=ÏaôÕAð‚÷kêÁNBéÎælcõö®£Fð†ô2Ò¬]ßÂK$ÓÜ®•”/ÊHàã$ä¸÷ëf¹Oµúâ“”’²øè´µþöjçNü÷üÌ¿ xNïFÒd»¼·h®îT9ŽAµÖ>qÁçÔœtïÒ»\ȶÎîcÞäîó3¶@#ÉIÎ ÔñW.<´’¥–ÑÑ€ÕšA‚ ;†qÓë‚2q
ÒÂó$# Çí‡
!Ë}Õ9ÈÎÑÉã=;ŒÇÎuñ+ÉûÏ¥öíeÙ+$úíÜ娯'+êZH4ƒq¶FV‹gïŒ208ÆÌ)íб>M|÷âÍã¾"iì‹¥£Jd´™OÝç;sÈúr+ÜäˆË)DŒ¥šF°*3Õ”d{zÔwºQ¿·UžÉf†~>I+ŒqÔ`ð3œ“Ü×f]œTÁÔn4“ƒø’Ýßõ_«*5šzGCÊ,þ+ê1ò÷O¶¸cœºb2yÇ;cùÕ£ñh¬›áÑŠr¤ÝäNBk¥—á—†gxšX/쑘hŸ*Tçn =ûã¦2|(ð¿e·ºÖ$
ýìŸ!'åΰyîî+×öœ=Y:²¦ÓÞ×iü’—ü
-BK™£˜›âÆ¡&véðõ-ûÉY¹=Onj¹ø¯¯yf4·±T Pó`çœ7={×mÃ/¢˜ZÚòK…G½¥b„’G AãÜœ*í¯Ã¿ IoæI¦NU8‘RwÈã;·€ Û×ëÒ”1Y
•£E»ÿ Oyto¢<£Áö·šï,䉧ûA¼sû»Nò}¹üE{ÜÖªò1’õÞr0â}ÎØ#>à/8ïéÎ~—áÍ#ñÎlí§³2f'h”?C÷YËdð:qëõÓ·‚ïeÄ©
ÔÈØÜRL+žAÎ3¼g=åšó³Œt3
ÑQ¦ùRÙßE®¼±w_;þhš’Sirÿ ^ˆã¼iੇ|RòO„m°J/“$·l“ ÇÓ¿ÿ [ÑŠÆ“„†Õø>cFÆ6Ø1ƒ– àz7Ldòxäüwá‹ÝAXùO•Úý’é®ähm •NÀ±ÌTÈç
ƒ‘I$pGž:‚ÄbêW¢®œ´|¦nÍ>¶ÖÏ¢§ÎÜ¢ºö¹•%ÄqL^öÛKpNA<ã¡ …î==ª¸óffËF‡yÌcÉ ©ç$ð=ñÏYþÊ’Ú]—¥‚¬‚eDïÎH>Ÿ_ÌTP™a‰ch['çÆÜò7a‡?w°Ïn§âÎ5”’¨¹uÚÛ|´ÓÓc§{O—ü1•ªxsÃZ…ÊÏy¡Ã3¸Ë2Èé» ‘ƒÎ äžÜðA§cáOéúÛ4ý5-fŒï„ù¬ûô.Ç Üsž•Ò¾•wo<¶Ÿ"¬¡º|£
î2sÇ¡éE²ÉFѱrU°dÜ6œ¨ mc†Îxë׺Þ'0²¡Rr„{j¾í·è›µ÷)º·å–‹î2|I®Y¼ºÍË·–ÃÆàã£'óÆxƒOÆÞ&>\lóÌxP Xc¸ì Sþ5§qà/ê>#žÞW¸if$\3 ® ûÄ“ùŽÕê¾ð<Ó‹H¶óÏ" å·( á‘€:ã†8Ï=+ꨬUA×ÃËÚT’ÑÞöù¥¢]{»ms¥F0\ÑÕ—ô}&ÛB´ƒOŽÚ+›xíÄÀ1
,v± žIëíZ0ǧ™3í2®0ทp9öÝÔž)ÓZËoq/Ú“‘L ²ŒmùŽï‘Ó9§[Û#Ä‘\ÞB¬Çs [;à à«g‚2ôòªœÝV§»·¯/[uó½õÛï¾
/šÍ}öüÿ «=x»HŸÂÞ.™ ÌQùŸh´‘#a$‚'¡u<Š›Æ>2>+ƒLSiöwµFó1!eg`£åœ ÷ëÛö}Á¿ÛVÙêv $¬ƒ|,s÷z€ð΃¨x÷ÅD\ÜŒÞmåÔ„ ˆ o| :{ÇÓ¶–òÁn!´0Ål€, ƒ ( ÛŒŒc¶rsšæ,4‹MÛOH!@¢ ÇŽ„`å²9ÝÃw;AÍt0®¤¡…¯ØÄ.Àìí´ƒ‘ßñ5Í,Óëu-ÈÔc¢KÃÓ£òÖ̺U.õL¯0…%2È—"~x
‚[`có±nHàŽyàö™¥keˆìŒÛFç{(Ø©†`Jã#Žwg<“:ÚÉ;M
^\yhûX‡vB·÷zrF?§BÊÔ/s<ÐÈB)Û± ·ÍÔwç5Âã:så§e{mѤï«Òíh—]Wm4âí¿ùþW4bC3¶ª¾Ùr$pw`àädzt!yŠI„hÂîàM)!edŒm'æ>Ç?wzºKìcŒ´¯Ìq6fp$)ãw¡éUl`µ»ARAˆÝÕgr:äŒgƒéé[Ôö±”iYs5Ýï«ÙG—K=þF’æMG«óÿ `ŠKɦuOQ!ÕåŒ/ÎGÞ`@ËqÕzdõâ«Ê/Ö(ƒK´%ŽbMüåÜŸö—>¤óŒŒV‘°„I¢Yž#™¥ùÏÊ@8
œgqöö5ª4vד[¬(q cò¨À!FGaÁõõ¯?§†¥ÏU½í¿WªZ$úyú½Žz×§Éþ?>Ã×È•6°{™™ŽÙ.$`ÎUœ…çè ' ¤r$1Ø(y7 ðV<ž:È ÁÎMw¾Â'Øb§øxb7gãО½óÉÊë²,i„Fȹ£§8ãä½k¹¥¦ê/ç{ïê驪2œ/«ü?¯Ô›ìñÜ$þeýœRIåŒg9Ác’zrrNO bÚi¢
ѺË/$,“ª¯Ýä;Œ× ´<ÛÑn³IvŸb™¥ nm–ÄŸ—nÝÀãŽ3ëÍG,.öó³˜Ù£¹uÊÌrŠ[<±!@Æ:c9ÅZh
ì’M5ÄìÌ-‚¼ëÉùqŽGì9¬á ;¨A-ž—évþÖ–^ON·Ô”ŸEý}ú×PO&e[]ÒG¸˜Ûp ƒÃà/Ë·8ûÀ€1ž@¿ÚB*²¼ñì8@p™8Q“žÆH'8«I-%¸‚
F»“åó6°Uù|¶Ú¸ã ò^Äw¥ŠÖK–1ÜÝK,Žddlí²0PÀü“×ükG…¯U«·¶–´w¶ŽÍ¾©yÞú[Zös•¯Á[™6°
¨¼ÉVæq·,#
ìãï‘×8îry®A››¨,ãc66»Ë´ã'æÉù?t}¢æH--Òá"›|ˆ¬[í 7¶ö#¸9«––‹$,+Ëqœ\Êøc€yê^ݸÄa°«™B-9%«×®‹V´w~vÜTéꢷþ¼ˆ%·¹• ’[xç•÷2gØS?6åÀÚ õ9É#š@÷bT¸º²C*3Bá¤òÎA9 =úU§Ó"2Ãlá0iÝIc‚2Î@%öç94ùô»'»HÄ¥Ô¾@à Tp£šíx:úÊ:5eºßMý×wµ›Ó_+šº3Ýyvÿ "ºÇ<ÂI>Õ1G·Ë«È«É# àÈÇ øp Jv·šæDûE¿›†Ë’NFr2qŸ½ÇAÜšu•´éí#Ħ8£2”Ú2Ã/€[ÎTr;qŠz*ý’Îþ(≠;¡TÆâ›;ºÿ àçœk‘Þ8¾Uª¾íé{^×IZéwÓkXÉûÑZo¯_øo×È¡¬ â–ÞR§2„‚Àœü½ùç® SVa†Âüª¼±D‘ŒísŸàä|ä2 æ[‹z”¯s{wn„ÆmáóCO+†GO8Ïeçåº`¯^¼ðG5f{Xžä,k‰<á y™¥voÆ éÛõëI=œ1‹éíÔÀÑ)R#;AÂncäŽ:tÏ#¶TkB.0Œ-ÖÞZÛgumß}fÎJÉ+#2êÔP£žùÈÅi¢%œ3P*Yƒò‚A쓎2r:ƒÐúñiRUQq‰H9!”={~¼“JŽV¥»×²m.ÛߺiYl¾òk˜gL³·rT•
’…wHÁ6ä`–Î3ùÌ4Øe³†&òL‘•%clyîAÂäà0 žüç$[3uŘpNOÀÉ=† cï{rYK
ååä~FÁ
•a»"Lär1Ó¯2Äõæ<™C•.fÕ»è¥~½-¿g½Â4¡{[ør¨¶·Žõäx¥’l®qpwÇ»8ärF \cޏܯÓ-g‚yciÏÀ¾rÎwèØÈ#o°Á9ã5¢šfÔxÞæfGusÏÌJÿ µ×œ/LtãÅT7²¶w,l
ɳ;”eúà·¨çîŒsÜgTÃS¦^ '~‹®›¯+k÷ZÖd©Æ*Ó[Ü«%Œk0ŽXƒ”$k#Ȩ P2bv‘ƒŸáÇ™ÆÕb)m$É*8óLE‘8'–ÜN Úyàúô+{uº±I'wvš4fÜr íì½=úuú
sFlìV$‘ö†HÑù€$§ õ=½¸«Ž]
:Ž+•¦ïmRþ½l´îÊT#nkiøÿ _ðÆT¶7Ò½ºÒ£Î¸d\ã8=yãŽÜäR{x]ZâÚé#¸r²#»ÎHÆ6õ ç® ÎFkr;sºÄ.&;só±Ç9êH÷ýSšÕtÐU¢-n Ì| vqœ„{gŒt§S.P‹’މ_[;m¥ÞZýRûÂX{+¥úü¼ú•-àÓ7!„G"“´‹žƒnrYXã¸îp éœ!ÓoPÌtÑ (‰Þ¹é€sÓ#GLçÕšÑnJý¡!‘Tä#“ß?îýp}xÇ‚I¥Õn#·¸–y'qó@r[ Êô÷<ÔWÃÓ¢áN¥4Ô’I&ݼ¬¬¼ÞºvéÆ
FQV~_ÒüJÖÚt¥¦Xá3BÄP^%ÈÎW-×c¡ú©¤·Iþèk¥š?–UQåIR[’O 5x\ÉhÆI¶K4«2ùªŠŒ<¼óœçØ`u«‚Í.VHä€ Ëgfx''9ÆI#±®Z8
sISºku¢ßÞ]úk»Jößl¡B.Ü»ÿ MWe
°·Ž%šêɆ¼»Âù³´œ O¿cÐÓÄh©"ÛÜÏ.ÖV’3nüÄmnq[ŒòznšÖ>J¬òˆæ…qýØP Ž:ä7^0yëWšÍ_79äoaÈ °#q0{ää×mœy”R{vÒÞ¶ÚÏe¥“ÚÆÐ¥Ì®—õýjR •íç›Ìb„+JyÜØÙ•Ç]¿Ôd þËOL²”9-Œ—õÃc'æÝלçÚ²ìejP“½
âù°¨†ðqòädЃÉäÖÜj÷PÇp“ÍšŠå«‘î
<iWNsmª»¶vÓz5»ûì:Rs\Ðßôû×uÔÿÙ