./.mali_config MALI_CONFIG ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((2 ##############################----------------------------------------------------------------------------------------------------------------7 X 8 X X X | { { | | ./ // %s/%s :*?"<>| @ d cframep_mipmap_frame_event_completed_callback In file: cframe/src/mali_cframe_mipmap.c line: 953 ERROR A completed mipmap event %p was NULL. Something went wrong. void main() { } #extension GL_ARM_shader_framebuffer_fetch : enable #extension GL_ARM_internal_r8_layout : enable precision highp int; precision highp float; uniform mat4 yuvmat; layout(r8, binding = 1) uniform writeonly mediump image2D img; layout(location = RT_INDEX) out vec4 fragColor; layout(location = 0) in vec2 fragCoord; void main() { vec4 yuvcolor = yuvmat * gl_LastFragColorARM; fragColor.rg = yuvcolor.yz; ivec2 coord = ivec2(floor(fragCoord.xy)); imageStore(img, coord, yuvcolor.x); } #extension GL_ARM_shader_framebuffer_fetch : enable highp vec4 gl_LastFragColorARM; layout(location=RT_INDEX) out highp vec4 fragColor; void main() { fragColor = gl_LastFragColorARM; } #version 310 es #extension GL_OES_sample_variables : enable precision highp int; precision highp float; in vec2 texcoord; uniform highp sampler2DMS uniform_sampler; void main() { vec3 v = texelFetch( uniform_sampler, ivec2( floor( texcoord ) ), %s ).rgb; gl_FragDepth = dot(v, vec3(255.0/16777216.0, 255.0 / 65536.0, 0.99609381)); } #version 310 es #extension GL_OES_sample_variables : enable precision highp int; precision highp float; in vec2 texcoord; uniform highp sampler2D uniform_sampler; vec2 %s(vec2 tex_coord) { %s} void main() { vec3 v = texture( uniform_sampler, %s( texcoord) ).rgb; gl_FragDepth = dot(v, vec3(255.0/16777216.0, 255.0 / 65536.0, 0.99609381)); } precision highp int; precision highp float; uniform OUTPUT_TYPE color; layout(yuv) out OUTPUT_TYPE fragColor; void main() { fragColor = color; } precision highp int; precision highp float; uniform OUTPUT_TYPE color; layout(location = RT_INDEX) out OUTPUT_TYPE fragColor; void main() { fragColor = color; } uniform highp usampler2DMS uniform_sampler; void main() { gl_FragStencil = int( texelFetch( uniform_sampler, %s, %s ).y ); } uniform highp sampler2DMS uniform_sampler; void main() { gl_FragDepth = texelFetch( uniform_sampler, %s, %s ).x; } #version 300 es %s #version 310 es %s%s%s #version 310 es #extension GL_EXT_YUV_target : enable #extension GL_OES_sample_variables : enable #extension GL_OES_shader_multisample_interpolation : enable precision highp int; precision highp float; sample in vec2 tex_coord; uniform __samplerExternal2DY2YEXT yuv_sampler%d; out vec4 color%d; void main() { vec3 yuv, rgb; yuv = texture( yuv_sampler%d, tex_coord ).rgb; rgb = yuv_2_rgb( yuv, %s ); color%d = vec4( rgb, 1.f ); #version 300 es #extension GL_ARM_shader_framebuffer_fetch_raw_explicit : enable precision highp float; #define TILE_BUFFER_READ_%i %s layout(location = %i) out %s fragColor%i; void main() { fragColor%i = TILE_BUFFER_READ_%i(%i, 0) * 0.25 + TILE_BUFFER_READ_%i(%i, 1) * 0.25 + TILE_BUFFER_READ_%i(%i, 2) * 0.25 + TILE_BUFFER_READ_%i(%i, 3) * 0.25; #version 300 es %s%s gl_SampleID vec2 ivec2 isampler2D ivec4 usampler2D uvec4 sampler2D vec4 gl_FragPositionARM tex_coord_2dms tex_coord fragColor%d = texelFetch( sampler%d, tex_coord_%s, 0); fragColor%d = texture( sampler%d, tex_coord_%s); #version 310 es #extension GL_ARM_framebuffer_write : enable #extension GL_OES_sample_variables : enable #extension GL_OES_shader_multisample_interpolation : enable #extension GL_ARM_integer_fragment_position : enable #pragma disable_alpha_to_coverage layout(early_fragment_tests) in; precision highp int; precision highp float; in vec2 tex_coord; %s %s(%s tex_coord) { %s} layout(location = %d) out highp %s fragColor%d; layout(location = %d) uniform highp %s%s sampler%d; ivec2 tex_coord_2dms = ivec2( interpolateAtOffset( tex_coord, vec2( 0.0 ) ) ); fragColor%d = texelFetch( sampler%d, %s, %s ); %s tex_coord_%s = %s(%s); #version 310 es #extension GL_EXT_YUV_target : enable %s%s #version 300 es %s%s%s ivec2( floor( tex_coord ) ) gl_FragDepth = texelFetch( uniform_sampler, tex_coord_%s, 0).x; gl_FragDepth = texture( uniform_sampler, tex_coord_%s).x; uniform highp sampler2D uniform_sampler; gl_FragStencil = int( texelFetch( uniform_sampler, tex_coord_%s, 0).y ); gl_FragStencil = int( texture( uniform_sampler, tex_coord_%s).y ); uniform highp usampler2D uniform_sampler; vec4 v = texelFetch( depth_sampler, tex_coord_%s, 0); vec4 v = texture( depth_sampler, tex_coord_%s); vec4 v = texelFetch( depth_sampler, %s, %s ); gl_FragDepth %s = %s(%s); dot(v.rgb, vec3(255.0/16777216.0, 255.0 / 65536.0, 0.99609381)) gl_FragStencil ( v.a * 255.0 ) layout(location = 0) uniform highp sampler2D%s depth_sampler; %s = %s(texelFetch( %s, tex_coord_%s, 0).%s); %s = %s(texture( %s, tex_coord_%s).%s); layout(location = %u) uniform highp %s%s %s; depth_sampler stencil_sampler %s = %s(texelFetch( %s, %s, %s ).%s); vec3 tileBufferReadRGBA16ARM tileBufferReadRGBA32ARM tileBufferReadRG11B10ARM itu_601 itu_601_full_range itu_709 #define OUTPUT_TYPE vec4 #define SAMPLER_TYPE sampler2D #define OUTPUT_TYPE ivec4 #define SAMPLER_TYPE isampler2D #define OUTPUT_TYPE uvec4 #define SAMPLER_TYPE usampler2D #define RT_INDEX 0 #define RT_INDEX 1 #define RT_INDEX 2 #define RT_INDEX 3 lookup_1x return tex_coord; lookup_4x_linear ivec2 base = tex_coord * ivec2(4, 1); ivec2 offset = ivec2(gl_SampleID, 0); return (base + offset); lookup_4x_row const ivec2 offsets[16] = ivec2[16]( ivec2(0, 0), ivec2(1, 0), ivec2(0, 1), ivec2(1, 1), ivec2(2, 0), ivec2(3, 0), ivec2(2, 1), ivec2(3, 1), ivec2(0, 2), ivec2(1, 2), ivec2(0, 3), ivec2(1, 3), ivec2(2, 2), ivec2(3, 2), ivec2(2, 3), ivec2(3, 3) ); ivec2 base = tex_coord * ivec2(2, 2); ivec2 offset = offsets[gl_SampleID]; return (base + offset); lookup_8x_linear ivec2 base = tex_coord * ivec2(8, 1); ivec2 offset = ivec2(gl_SampleID, 0); return (base + offset); lookup_8x_row const ivec2 offsets[16] = ivec2[16]( ivec2(0, 0), ivec2(1, 0), ivec2(0, 1), ivec2(1, 1), ivec2(2, 0), ivec2(3, 0), ivec2(2, 1), ivec2(3, 1), ivec2(0, 2), ivec2(1, 2), ivec2(0, 3), ivec2(1, 3), ivec2(2, 2), ivec2(3, 2), ivec2(2, 3), ivec2(3, 3) ); ivec2 base = tex_coord * ivec2(4, 2); ivec2 offset = offsets[gl_SampleID]; return (base + offset); lookup_16x_linear ivec2 base = tex_coord * ivec2(16, 1); ivec2 offset = ivec2(gl_SampleID, 0); return (base + offset); lookup_16x_row const ivec2 offsets[16] = ivec2[16]( ivec2(0, 0), ivec2(1, 0), ivec2(0, 1), ivec2(1, 1), ivec2(2, 0), ivec2(3, 0), ivec2(2, 1), ivec2(3, 1), ivec2(0, 2), ivec2(1, 2), ivec2(0, 3), ivec2(1, 3), ivec2(2, 2), ivec2(3, 2), ivec2(2, 3), ivec2(3, 3) ); ivec2 base = tex_coord * ivec2(4, 4); ivec2 offset = offsets[gl_SampleID]; return (base + offset); vec2 base = floor(tex_coord) * vec2(4.0, 1.0); vec2 offset = vec2(float(gl_SampleID) + 0.5, 0.5); return (base + offset); return tex_coord * 2.0; vec2 base = floor(tex_coord) * vec2(8.0, 1.0); vec2 offset = vec2(float(gl_SampleID) + 0.5, 0.5); return (base + offset); const vec2 offsets[16] = vec2[16]( vec2(0, 0), vec2(1, 0), vec2(0, 1), vec2(1, 1), vec2(2, 0), vec2(3, 0), vec2(2, 1), vec2(3, 1), vec2(0, 2), vec2(1, 2), vec2(0, 3), vec2(1, 3), vec2(2, 2), vec2(3, 2), vec2(2, 3), vec2(3, 3) ); vec2 base = floor(tex_coord) * vec2(4.0, 2.0); vec2 offset = offsets[gl_SampleID]; return (base + offset); vec2 base = floor(tex_coord) * vec2(16.0, 1.0); vec2 offset = vec2(float(gl_SampleID) + 0.5, 0.5); return (base + offset); const vec2 offsets[16] = vec2[16]( vec2(0, 0), vec2(1, 0), vec2(0, 1), vec2(1, 1), vec2(2, 0), vec2(3, 0), vec2(2, 1), vec2(3, 1), vec2(0, 2), vec2(1, 2), vec2(0, 3), vec2(1, 3), vec2(2, 2), vec2(3, 2), vec2(2, 3), vec2(3, 3) ); vec2 base = floor(tex_coord) * vec2(4.0, 4.0); vec2 offset = offsets[gl_SampleID]; return (base + offset); 0 @ ` <dummy> /dev/mali %s%d ERROR: The DDK (built for 0x%x r%dp%d status range [%d..%d]) is not compatible with this Mali GPU device, %s detected as 0x%x r%dp%d status %d. file %s is not of a compatible version (user %d.%d, kernel %d.%d) gl_PerVertex The data type does not match. The symbol name does not match. Arrays do not match. The array size does not match. The array stride does not match. The table members count does not match. The matrix element type does not match. Matrix columns do not match. Matrix rows do not match. The matrix stride does not match. The matrix memory layout does not match. The vector size does not match. The qualifier does not match. The precision does not match. The sampler type does not match. The binding does not match. The location does not match. The layout qualifier does not match. Unknown data type. gl_mali compute vertex tessellation control tessellation evaluation geometry fragment The %s %s variable %s does not match the %s variable %s. The %s %s variable %s does not match the %s variable declared in earlier shader stages. The variable %s %s is declared with inconsistent invariant qualifiers. L0008 L0001 Fragment shader uses a varying %s that has not been declared in the vertex shader. L0007 The %s input variable %s does not have a matching %s output variable. Builtin fragment shader variable gl_FragCoord is invariant while builtin vertex shader variable gl_Position is not. Builtin fragment shader variable gl_PointCoord is invariant while builtin vertex shader variable gl_PointSize is not. The %s variable %s and the %s variable %s are both declared with location %d. gl_Position gl_mali_XFB_Position gl_PointSize gl_mali_XFB_PointSize Variable %s specified in the transform feedback varying array is of type struct. Struct members must be specified individually. Variable %s specified in the transform feedback varying array is of type array of struct. Struct members of array elements must be specified individually. More than one entry in the transform feedback varying array refers to the same output variable %s. An entry of the transform feedback varying array is an element of an array which is already captured: %s iscontained in %s. The total number of components to capture is %u and is greater than theconstant GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS = %u. The number of variables specified in varyings is %u and is greater than the constant GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS = %u. The number of components to capture in any output in varyings is %u and is greater than the constant GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS = %u. Variable specified in the transform feedback varyings array is not declared as an output in the %s shader. Shader is compiled for incompatible hardware version. Program object contains compute shader without an input layout qualifier specifying a fixed local size. No primitive mode specified in tessellation evaluation shader L0002 Explicit location %d for uniform '%s' exceeds limit. L0005 Too many uniform locations. L0006 L0004 gl_InvocationID The number of geometry shader total output components (%u) is greater than the maximum number allowed (%u). The number of tessellation control shader total output components (%u) is greater than the maximum number allowed (%u). The number of %s shader per-patch output components (%u) is greater than the maximum number allowed (%u). The number of %s shader per-patch input components (%u) is greater than the maximum number allowed (%u). The number of %s shader output components (%u) is greater than the maximum number allowed (%u). The number of %s shader input components (%u) is greater than the maximum number allowed (%u). The number of %s and %s shader varying components (%u) is greater than the maximum number allowed (%u). The number of %s uniform components (%u) is greater than the maximum number allowed (%u). The number of %s uniform vectors (%u) is greater than the maximum number allowed (%u). Max uniform block size exceeded. The number of combined %s uniform components (%u) is greater than the maximum number allowed (%u). The number of %s uniform blocks (%u) is greater than the maximum number allowed (%u). The number of combined shader storage blocks (%u) is greater than the maximum number allowed (%u). The number of %s samplers (%u) is greater than the maximum number allowed (%u). The number of combined samplers (%u) is greater than the maximum number allowed (%u). The number of %s image uniforms (%u) is greater than the maximum number allowed (%u). The number of combined image uniforms (%u) is greater than the maximum number allowed (%u). Max shader storage block size exceeded. The number of %s shader storage blocks (%u) is greater than the maximum number allowed (%u). The number of %s atomic counters (%u) is greater than the maximum number allowed (%u). The number of %s atomic counter buffers (%u) is greater than the maximum number allowed (%u). The number of combined atomic counters (%u) is greater than the maximum number allowed (%u). The number of combined atomic counter buffers (%u) is greater than the maximum number allowed (%u). Too many combined shader output resources. Work group size for dimension X is too big. Work group size for dimension Y is too big. Work group size for dimension Z is too big. Max number of total work group invocations exceeded. The number of geometry shader output vertices (%u) is greater than the maximum number allowed (%u). Matrix block with invalid child Invalid shader type loaded Shader languages do not match. Shader binaries are not compatible Explicit location for variables '%s' and '%s' overlap. Interface block member %s is missing explicit location qualifier. When some members are declared with explicit location either the block must be declared with explicit location, or all members must be correctly declared with explicit locations. F0001 Out of memory while setting error log ~sep~ gl_mali_SSBOCompute gl_mali_SSBOFragment gl_mali_AtomicCounters gl_mali_rmu_data_area_ptr_frag gl_mali_rmu_data_area_ptr_vert gl_mali_rmu_data_area_ptr_comp gl_mali_tb_icd gl_mali_SampleNumMask gl_mali 0 1 2 3 f 4 h h h h F 5 H P Q j X Y j Z j j V ` a k b k k X c k k X k X X ' ) * 4 D floating-point boolean structure pipe_ro pipe_wo atomic counter interface block unknown ( ( ( ( ( ( ( ( L0003 The initial offset for attribute %s exceed the maximum attribute size. Attribute %s exceeded the maximum attribute size Explicit location '%d' assigned to vertex input '%s' is larger than the max supported value, '%d' Attribute aliasing not permitted Not able to fit attributes Not able to rewrite attribute shader b45f95658fcb63fa8763ccf9c1f1f174 osup_startup In file: osu/platform_dummy/mali_osu.c line: 884 Failed to setup TLS generic key In file: osu/platform_dummy/mali_osu.c line: 899 Failed to init static mutexes *!* osu_mutex_lock osu_mutex_unlock osu_spinlock_lock osu_spinlock_unlock osup_init_unload_hooks In file: osu/platform_dummy/mali_osu_libhooks.c line: 88 Failed to init unload hook mutexes @ADEPQTU CBGFSRWV LMHI\]XY ONKJ_^[Z0145 !$%pqtu`ade3276#"'&srwvcbgf<=89,-()|}xylmhi?>;:/.+*~{zonkj @ADEPQTU CBGFSRWV LMHI\]XY ONKJ_^[Z0145 !$%pqtu`ade3276#"'&srwvcbgf<=89,-()|}xylmhi?>;:/.+*~{zonkj < ? @ @ @ @ @ @ @ ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! @ @ @ ` @ A ! ! ! ! ! ! ! ! ! ! @ ! @ 0 ! @ ! @ @ ! @ ! @ ! ! ! " # " # " # & ' & ' & ' & ' & ' $ % $ % M ~ 6 y M ~ 6 y M 6 M 6 @ADEPQTU CBGFSRWV LMHI\]XY ONKJ_^[Z0145 !$%pqtu`ade3276#"'&srwvcbgf<=89,-()|}xylmhi?>;:/.+*~{zonkj EGL_KHR_partial_update EGL_KHR_image_pixmap EGL_EXT_image_dma_buf_import RG16 AR15 AR12 XR24 AR24 Failed to import color buffer for surface C8 : AR12 AB12 RA12 S BA12 AR15 AB15 RA15 & BA15 & RG16 BG16 RG24 : BG24 : XR24 XB24 RX24 S BX24 AR24 AB24 RA24 S BA24 YUYV * NV12 j NV16 * NV21 Pj YUYV * NV12 j NV16 * NV21 Pj YUYV * NV12 j NV16 * NV21 Pj YUYV * NV12 j NV16 * NV21 Pj W0 V0 q2 r2 s2 t2 u2 v2 w2 x2 y2 z2 {2 |2 }2 ~2 80 clGetPlatformIDs clGetPlatformInfo clGetDeviceIDs clGetDeviceInfo clCreateContext clCreateContextFromType clRetainContext clReleaseContext clGetContextInfo clCreateCommandQueue clRetainCommandQueue clReleaseCommandQueue clGetCommandQueueInfo clSetCommandQueueProperty clCreateBuffer clCreateSubBuffer clCreateImage2D clCreateImage3D clRetainMemObject clReleaseMemObject clGetSupportedImageFormats clGetMemObjectInfo clGetImageInfo clSetMemObjectDestructorCallback clCreateSampler clRetainSampler clReleaseSampler clGetSamplerInfo clCreateProgramWithSource clCreateProgramWithBinary clRetainProgram clReleaseProgram clBuildProgram clUnloadCompiler clGetProgramInfo clGetProgramBuildInfo clCreateKernel clCreateKernelsInProgram clRetainKernel clReleaseKernel clSetKernelArg clGetKernelInfo clGetKernelWorkGroupInfo clWaitForEvents clGetEventInfo clCreateUserEvent clRetainEvent clReleaseEvent clSetUserEventStatus clSetEventCallback clGetEventProfilingInfo clFlush clFinish clEnqueueReadBuffer clEnqueueReadBufferRect clEnqueueWriteBuffer clEnqueueWriteBufferRect clEnqueueCopyBuffer clEnqueueCopyBufferRect clEnqueueReadImage clEnqueueWriteImage clEnqueueCopyImage clEnqueueCopyImageToBuffer clEnqueueCopyBufferToImage clEnqueueMapBuffer clEnqueueMapImage clEnqueueUnmapMemObject clEnqueueNDRangeKernel clEnqueueTask clEnqueueNativeKernel clEnqueueMarker clEnqueueWaitForEvents clEnqueueBarrier clGetExtensionFunctionAddress clIcdGetPlatformIDsKHR clImportMemoryARM clCreateFromGLTexture clEnqueueFillBuffer clEnqueueFillImage clCreateImage clEnqueueMigrateMemObjects clGetKernelArgInfo clEnqueueMarkerWithWaitList clEnqueueBarrierWithWaitList clCreateSubDevices clSVMAllocARM clSVMFreeARM clEnqueueSVMFreeARM clEnqueueSVMMemcpyARM clEnqueueSVMMemFillARM Error Warning Performance OpenCL 1.2 v1.r18p0-01rel0.15878e9e510a5af1dd27c25d79446090 OpenCL 1.2 v1.r18p0-01rel0.15878e9e510a5af1dd27c25d79446090 OpenCL C 1.2 v1.r18p0-01rel0.15878e9e510a5af1dd27c25d79446090 %s:%s::%s %s:%s:%s:%s Requested printf buffer of %zu is too small, using %zu printf-buffer-small-size Requested printf buffer of %zu is not a power of 2, using %zu printf-buffer-size-not-power-2 Device reports support for: FULL-COHERENCY Device reports support for: IO-COHERENCY Device reports support for: NO-COHERENCY The interop memory object has been acquired more than once The interop memory object is no longer acquired or has never been acquired CL memory objects created using the CL/EGL image sharing extension cannot be used with a CL device that does not support the extension Reading an area of 0 bytes (NOOP) Writing an area of 0 bytes (NOOP) Copying an area of 0 bytes (NOOP). Mapping an area of 0 bytes (NOOP) clCreateFromEGLImageKHR clEnqueueAcquireEGLObjectsKHR clEnqueueReleaseEGLObjectsKHR cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_byte_addressable_store cl_khr_3d_image_writes cl_khr_fp64 cl_khr_int64_base_atomics cl_khr_int64_extended_atomics cl_khr_fp16 cl_khr_icd cl_khr_egl_image cl_khr_image2d_from_buffer cl_khr_depth_images cl_arm_core_id cl_arm_printf cl_arm_thread_limit_hint cl_arm_non_uniform_work_group_size cl_arm_import_memory cl_arm_import_memory_dma_buf cl_arm_import_memory_host cl_arm_import_memory_protected cl_arm_shared_virtual_memory FULL_PROFILE ARM Platform _cg0 _cg1 ? ? ? @ 1.2 __bifl_psv_struct_ptr __bifl_global_offset_plus_hdsdv_offset __bifl_group_id_hardware_subdivision_offset __bifl_global_offset __bifl_global_size __bifl_local_size __bifl_enqueued_local_size __bifl_num_groups __bifl_work_dim __bifl_local_mem_size __bifl_private_mem_size __bifl_image_properties_table_ro __bifl_image_properties_table_w __bifl_sampler_array __bifl_printf_buffer __bifl_event_buffer __bifl_psv_const_init __bifl_default_cmd_queue __bifl_owner_payload cl_arm_thread_limit_hint requested: %u, actual: %u, min value: %u, max value: %u, any value chosen between the min and max values may be rounded to the nearest available limit arm-thread-limit-hint Trying to build a program which has kernels attached Kernel being created while some devices are still building fill_buffer_1;fill_buffer_2;fill_buffer_4;fill_buffer_8;fill_buffer_16;fill_buffer_32;fill_buffer_64;fill_buffer_128;fill_image1d_int4;fill_image1d_uint4;fill_image1d_float4;fill_image1d_buffer_int4;fill_image1d_buffer_uint4;fill_image1d_buffer_float4;fill_image1d_array_int4;fill_image1d_array_uint4;fill_image1d_array_float4;fill_image2d_int4;fill_image2d_uint4;fill_image2d_float4;fill_image2d_array_int4;fill_image2d_array_uint4;fill_image2d_array_float4;fill_image3d_int4;fill_image3d_uint4;fill_image3d_float4 Duplicate entries in device list Passing options to a program created with binary will have no effect Too few pointers to return all CL_PROGRAM_BINARIES The arg_value used in a call to clSetKernelArgSVMPointer() is NULL. This may not be portable to other implementations. The image used as argument number %u for the kernel '%s' has a format that does not match its usage Unspecified internal error Event terminated with internal error code %d ('%s') EVENT_UNKNOWN_COMMAND EVENT_MEMORY_NOT_ACQUIRED EVENT_DEPENDENCY_ERROR EVENT_OUT_OF_GPU_MEMORY EVENT_OUT_OF_MEMORY EVENT_TERMINATED EVENT_JOB_CONFIG_FAULT EVENT_JOB_POWER_FAULT EVENT_JOB_READ_FAULT EVENT_JOB_WRITE_FAULT EVENT_JOB_AFFINITY_FAULT EVENT_JOB_BUS_FAULT EVENT_INSTR_INVALID_PC EVENT_INSTR_INVALID_ENC EVENT_INSTR_TYPE_MISMATCH EVENT_INSTR_OPERAND_FAULT EVENT_INSTR_TLS_FAULT EVENT_INSTR_BARRIER_FAULT EVENT_INSTR_ALIGN_FAULT EVENT_DATA_INVALID_FAULT EVENT_TILE_RANGE_FAULT EVENT_STATE_FAULT EVENT_UNKNOWN EVENT_DELAYED_BUS_FAULT EVENT_SHAREABILITY_FAULT EVENT_TRANSLATION_FAULT_LEVEL1 EVENT_TRANSLATION_FAULT_LEVEL2 EVENT_TRANSLATION_FAULT_LEVEL3 EVENT_TRANSLATION_FAULT_LEVEL4 EVENT_PERMISSION_FAULT EVENT_TRANSTAB_BUS_FAULT_LEVEL1 EVENT_TRANSTAB_BUS_FAULT_LEVEL2 EVENT_TRANSTAB_BUS_FAULT_LEVEL3 EVENT_TRANSTAB_BUS_FAULT_LEVEL4 EVENT_ACCESS_FLAG EVENT_MEM_GROWTH_FAILED EVENT_TIMED_OUT EVENT_JOB_CANCELLED EVENT_BAG_INVALID The power policy has prevented the requested device from being powered on A very large global_work_size was requested, this will a very long time to execute or result in an error due to lack of resources fill_buffer_1 fill_buffer_2 fill_buffer_4 fill_buffer_8 fill_buffer_16 fill_buffer_32 fill_buffer_64 fill_buffer_128 Calls to clEnqueueMigrateMemObjects don't do anything on this platform. fill_image2d_int4 fill_image2d_uint4 fill_image2d_float4 fill_image3d_int4 fill_image3d_uint4 fill_image2d_array_int4 fill_image2d_array_uint4 fill_image2d_array_float4 fill_image1d_int4 fill_image1d_uint4 fill_image1d_float4 fill_image1d_array_int4 fill_image1d_array_uint4 fill_image1d_array_float4 fill_image1d_buffer_int4 fill_image1d_buffer_uint4 fill_image1d_buffer_float4 SVM allocations not freed on termination of CL context. The requested SVM copy operation exceeds the bounds of the SVM allocation. The requested SVM fill operation exceeds the bounds of the SVM allocation. wsiallocp_get_fmt_info C8 RGB8 BGR8 XR12 XB12 RX12 BX12 AR12 AB12 RA12 BA12 XR15 XB15 RX15 BX15 AR15 AB15 RA15 BA15 RG16 BG16 RG24 BG24 XR24 XB24 RX24 BX24 AR24 AB24 RA24 BA24 XR30 XB30 RX30 BX30 AR30 AB30 RA30 BA30 YUYV YVYU UYVY VYUY AYUV NV12 NV21 NV16 NV61 YUV9 YVU9 YU11 YV11 YU12 YV12 YU16 YV16 YU24 YV24 wsiallocp_get_rgb_afbc_size wsialloc/helpers/mali_wsialloc_helpers.c nr_planes != ((void *)0) && plane_bpp != ((void *)0) found_fmt->nr_planes <= 4 modifiers != ((void *)0) && size != ((void *)0) pixel_size * 8 == plane_bpp[0] wsialloc_delete wsialloc_alloc wsialloc/allocators/drm_dumb/mali_wsialloc_drm_dumb.c allocator->fd >= 0 strides != ((void *)0) && buffer_fds != ((void *)0) && offsets != ((void *)0) allocator_fd >= 0 width >= 1 && height >= 1 alloc_dumb.handle != 0 alloc_dumb.pitch != 0 MALI_SCHED_RT_THREAD_PRIORITY cmarp_context_term In file: cmar/src/mali_cmar_context.c line: 274 Failed to close fd to wake backend thread (error %d) In file: cmar/src/mali_cmar_context.c line: 282 In file: cmar/src/mali_cmar_context.c line: 294 Failed to close render list fd for CMAR signal flag (error %d) cmar_gl_executor In file: cmar/src/mali_cmar_glexecutor_gpu.c line: 1953 ERROR: This will not progress, setup_atoms() failed without creating any atom, retrying won't help. cmarp_backend_thread mali-utility-worker mali-cmar-backend In file: cmar/src/mali_cmar_renderer.c line: 1293 Error polling for CMAR events, error no %d armsoc AR12 AB12 S RA12 BA12 AR15 AB15 & RA15 & BA15 RG16 BG16 6 RG16 XR24 XB24 S RX24 BX24 AR24 AB24 6 AB24 S RA24 BA24 : RG24 : 6 RG24 : BG24 z YV12 j NV12 * NV16 Pj NV21 * YUYV mali_buffer_sharing alloc_device create_buffer niiuuuh auth invalid fd invalid width %d invalid height %d invalid Mali format 0x%8x%8x create_buffer does not support non-RGB formats width %d and bpp %d would overflow invalid stride %d for width %d, height: %d and bpp %d height %d, width:%d and bpp %d would overflow couldn't allocate buffer info couldn't allocate buffer resource Mismatched mali_buffer_sharing version %d, expected %d couldn't authenticate client magic EGL_WL_bind_wayland_display eglBindWaylandDisplayWL eglUnbindWaylandDisplayWL eglQueryWaylandBufferWL compiler_type openglessl shader_type tessellation_control tessellation_evaluation define undefine variants deserialized_outfile print_cycle_counts #define %s #undef %s OPTIMIZATION_LEVEL OPTIMIZE_CONDITIONAL_SELECT OPTIMIZE_UNIFORMS ENABLE_REGISTER_UNIFORM ENABLE_REGISTER_UNIFORM_REALLOC INITIALIZE_REGISTER_VALUES ENABLE_ROBUSTNESS FORCE_ONE_VIEW AGGREGATED_PILOT ESSL_ON_SPIRV %d: : Warning: architecture midgard result_type render_target spilling_used false work_registers_used uniform_registers_used arithmetic_cycles %.2g arithmetic_shortest_path arithmetic_longest_path load_store_cycles load_store_shortest_path load_store_longest_path texture_cycles texture_shortest_path texture_longest_path PAGED_UNIFORMS each-once flexible_version 3.2.0 openglessl_version 300 310 320 Mali-T600 r0p0 r0p0_15dev0 r0p1 Mali-T620 r1p0 r1p1 Mali-T720 Mali-T760 r0p1_50rel0 r0p2 r0p3 Mali-T880 r2p0 Mali-T820 Mali-T830 Mali-T860 MBS2 ` VEHW CVER ` CMMN ` VELA SSYM SYMB STRI attr_PrimaryColor $ TYPE TPGE RELO 2 RELO + RELO $ RELO ! RELO RELO RELO RELO SYMBl STRI attr_PointSize $ TYPE TPGE RELO 7 RELO @7 SYMB STRI attr_TexCoord7 $ TYPE TPGE RELO ` RELO RELO RELO p RELO RELO RELO ` RELO RELO SYMB STRI attr_TexCoord6 $ TYPE TPGE RELO @ RELO P RELO RELO RELO @ RELO RELO RELO 0 RELO SYMB STRI attr_TexCoord5 $ TYPE TPGE RELO RELO RELO RELO p RELO RELO RELO ` RELO RELO SYMB STRI attr_TexCoord4 $ TYPE TPGE RELO RELO P RELO RELO RELO @ RELO RELO RELO 0 RELO SYMB STRI attr_TexCoord3 $ TYPE TPGE RELO RELO RELO RELO p RELO RELO RELO ` RELO RELO SYMB STRI attr_TexCoord2 $ TYPE TPGE RELO RELO P RELO RELO RELO @ RELO RELO RELO 0 RELO SYMB STRI attr_TexCoord1 $ TYPE TPGE RELO RELO RELO RELO p RELO RELO RELO ` RELO RELO SYMB STRI attr_TexCoord0 $ TYPE TPGE RELO RELO P RELO RELO RELO @ RELO RELO RELO 0 RELO SYMB STRI attr_SkinningWeights $ TYPE TPGE RELO RELO RELO SYMB STRI attr_SkinningIndices $ TYPE TPGE RELO RELO RELO SYMB STRI attr_Normal $ TYPE TPGE RELO ` RELO RELO RELO SYMB STRI attr_Position $ TYPE TPGE RELO RELO RELO RELO p RELO RELO RELO SSYM SYMBd STRI var_ClipPlaneSignedDist $ TYPE TPGE RELO p8 SYMBX STRI var_FogDist $ TYPE TPGE RELO @8 SYMB STRI var_PrimaryColorTwosided $ TYPE( TPAR TYPE TPGE RELO 07 RELO 07 RELO 2 RELO 2 SYMB0 STRI var_PrimaryColor $ TYPE TPGE RELO . RELO + RELO @( RELO & RELO $ RELO " RELO P RELO P RELO RELO RELO RELO RELO RELO SYMB STRI var_TexCoord7 $ TYPE TPGE RELO p RELO p RELO RELO p RELO RELO RELO ` RELO RELO RELO P RELO RELO p RELO RELO P RELO RELO 0 RELO RELO RELO RELO pl RELO k RELO j RELO j RELO 0i RELO `h RELO g RELO f SYMB STRI var_TexCoord6 $ TYPE TPGE RELO P RELO RELO RELO RELO @ RELO RELO RELO 0 RELO RELO RELO RELO RELO ` RELO RELO @ RELO RELO RELO RELO RELO e RELO e RELO Pd RELO c RELO b RELO a RELO a RELO @` SYMB STRI var_TexCoord5 $ TYPE TPGE RELO 0 RELO RELO RELO p RELO RELO RELO ` RELO RELO RELO P RELO RELO p RELO RELO P RELO RELO 0 RELO RELO RELO RELO p_ RELO ^ RELO ] RELO ] RELO 0\ RELO `[ RELO Z RELO Y SYMB STRI var_TexCoord4 $ TYPE TPGE RELO RELO RELO ` RELO RELO @ RELO RELO RELO 0 RELO RELO RELO RELO RELO ` RELO RELO @ RELO RELO RELO RELO RELO X RELO X RELO PW RELO V RELO U RELO T RELO T RELO @S SYMB STRI var_TexCoord3 $ TYPE TPGE RELO RELO 0 RELO 0 RELO p RELO RELO RELO ` RELO RELO RELO P RELO RELO p~ RELO } RELO P} RELO | RELO 0| RELO { RELO { RELO z RELO pR RELO Q RELO P RELO P RELO 0O RELO `N RELO M RELO L SYMB STRI var_TexCoord2 $ TYPE TPGE RELO RELO RELO RELO RELO @ RELO RELO RELO 0 RELO RELO RELO RELO y RELO `y RELO x RELO @x RELO w RELO w RELO v RELO v RELO K RELO K RELO PJ RELO I RELO H RELO G RELO G RELO @F SYMB STRI var_TexCoord1 $ TYPE TPGE RELO RELO RELO RELO p RELO RELO RELO ` RELO RELO RELO P RELO RELO pu RELO t RELO Pt RELO s RELO 0s RELO r RELO r RELO q RELO pE RELO D RELO C RELO C RELO 0B RELO `A RELO @ RELO ? SYMB STRI var_TexCoord0 $ TYPE TPGE RELO RELO @ RELO RELO RELO @ RELO RELO RELO 0 RELO RELO RELO RELO p RELO `p RELO o RELO @o RELO n RELO n RELO m RELO m RELO > RELO > RELO P= RELO < RELO ; RELO : RELO : RELO @9 SYMBl STRI gl_PointSize $A TYPE TPGE RELO 8 RELO p7 SYMB STRI gl_Position $@ TYPE TPGE RELO ` RELO RELO RELO RELO RELO ` RELO SSYM ~ SYMBX STRI FogFactor $ > TYPE TPGE RLOC > SYMBX STRI NumLights $ < TYPE TPGE RLOC < SYMBD STRI LightAttenuation $ TYPE( TPAR TYPE TPGE RELO 6 RELO 6 RELO 1 RELO 1 RELO - RELO - RELO ) RELO ) RELO & RELO & RELO RELO RELO ` RELO ` SYMBh STRI LightSpotCosCutoffAngle $ TYPE( TPAR TYPE TPGE RELO `4 RELO `4 RELO 3 RELO 3 RELO 00 RELO 00 RELO / RELO / RELO , RELO , RELO , RELO , RELO `) RELO `) RELO ( RELO ( SYMB STRI LightSpotExponent $ TYPE( TPAR TYPE TPGE RELO 04 RELO 04 RELO 0 RELO 0 RELO , RELO , RELO P) RELO P) SYMB STRI LightSpotDirection $ TYPE( TPAR TYPE TPGE RELO 04 RELO 04 RELO 0 RELO 0 RELO , RELO , RELO P) RELO P) SYMB STRI LightPosition $ TYPE( TPAR TYPE TPGE RELO 3 RELO 3 RELO / RELO / RELO , RELO , RELO ( RELO ( RELO & RELO & RELO $ RELO $ RELO " RELO " RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO SYMB STRI LightSpecular $ p TYPE( TPAR TYPE TPGE RELO 6 RELO 6 RELO 1 RELO 1 RELO - RELO - RELO * RELO * RELO % RELO % RELO `# RELO `# RELO ! RELO ! RELO RELO RELO RELO RELO 0 RELO 0 SYMB STRI LightDiffuse $ 0 TYPE( TPAR TYPE TPGE RELO 5 RELO 5 RELO 1 RELO 1 RELO 0- RELO 0- RELO ) RELO ) RELO p' RELO p' RELO $ RELO $ RELO " RELO " RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ SYMB STRI LightAmbient $ P TYPE( TPAR TYPE TPGE RELO 5 RELO 5 RELO 1 RELO 1 RELO 0- RELO 0- RELO * RELO * RELO p' RELO p' RELO % RELO % RELO `# RELO `# RELO RELO RELO ` RELO ` RELO RELO RELO 0 RELO 0 RELO RELO RELO RELO SYMBX STRI SceneColor $ P TYPE TPGE RLOC P SYMB\ STRI SceneAmbient $ X TYPE TPGE RLOC X SYMBh STRI MaterialSpecularExponent $ TYPE TPGE RLOC SYMB0 STRI MaterialEmissive $ TYPE TPGE RELO 2 RELO 2 RELO + RELO + RELO $ RELO $ RELO 0" RELO 0" RELO RELO RELO RELO RELO RELO SYMBd STRI MaterialDiffuseAlpha $ TYPE TPGE RLOC SYMBh STRI PointSizeAttenuationCoefs $ 0 TYPE TPGE RLOC 0 SYMB` STRI PointSizeParameters $ @ TYPE TPGE RLOC @ SYMBp` STRI TextureMatrices $ TYPE8 TPAR0 TYPE$ TPMA TPGE RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO 0 RELO 0 RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO p RELO p RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO P RELO P RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO 0 RELO 0 RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO p RELO p RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO P RELO P RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO 0 RELO 0 RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO p RELO p RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO P RELO P RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO 0 RELO 0 RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO p RELO p RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO P RELO P RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO 0 RELO 0 RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO p RELO p RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO p RELO p RELO 0 RELO 0 RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO 0 RELO 0 RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ RELO @ RELO @ RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO p RELO p RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO p RELO p RELO p RELO p RELO 0 RELO 0 RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO RELO RELO P RELO P RELO P RELO P RELO RELO RELO RELO RELO ~ RELO ~ RELO ~ RELO ~ RELO ~ RELO ~ RELO ~ RELO ~ RELO 0~ RELO 0~ RELO 0~ RELO 0~ RELO } RELO } RELO } RELO } RELO } RELO } RELO } RELO } RELO `} RELO `} RELO `} RELO `} RELO } RELO } RELO } RELO } RELO | RELO | RELO | RELO | RELO | RELO | RELO | RELO | RELO @| RELO @| RELO @| RELO @| RELO { RELO { RELO { RELO { RELO { RELO { RELO { RELO { RELO `{ RELO `{ RELO `{ RELO `{ RELO { RELO { RELO { RELO { RELO z RELO z RELO z RELO z RELO z RELO z RELO z RELO z RELO @z RELO @z RELO @z RELO @z RELO z RELO z RELO z RELO z RELO y RELO y RELO y RELO y RELO py RELO py RELO py RELO py RELO y RELO y RELO y RELO y RELO x RELO x RELO x RELO x RELO x RELO x RELO x RELO x RELO Px RELO Px RELO Px RELO Px RELO x RELO x RELO x RELO x RELO w RELO w RELO w RELO w RELO pw RELO pw RELO pw RELO pw RELO 0w RELO 0w RELO 0w RELO 0w RELO v RELO v RELO v RELO v RELO v RELO v RELO v RELO v RELO Pv RELO Pv RELO Pv RELO Pv RELO v RELO v RELO v RELO v RELO u RELO u RELO u RELO u RELO u RELO u RELO u RELO u RELO 0u RELO 0u RELO 0u RELO 0u RELO t RELO t RELO t RELO t RELO t RELO t RELO t RELO t RELO `t RELO `t RELO `t RELO `t RELO t RELO t RELO t RELO t RELO s RELO s RELO s RELO s RELO s RELO s RELO s RELO s RELO @s RELO @s RELO @s RELO @s RELO r RELO r RELO r RELO r RELO r RELO r RELO r RELO r RELO `r RELO `r RELO `r RELO `r RELO r RELO r RELO r RELO r RELO q RELO q RELO q RELO q RELO q RELO q RELO q RELO q RELO @q RELO @q RELO @q RELO @q RELO q RELO q RELO q RELO q RELO p RELO p RELO p RELO p RELO pp RELO pp RELO pp RELO pp RELO p RELO p RELO p RELO p RELO o RELO o RELO o RELO o RELO o RELO o RELO o RELO o RELO Po RELO Po RELO Po RELO Po RELO o RELO o RELO o RELO o RELO n RELO n RELO n RELO n RELO pn RELO pn RELO pn RELO pn RELO 0n RELO 0n RELO 0n RELO 0n RELO m RELO m RELO m RELO m RELO m RELO m RELO m RELO m RELO Pm RELO Pm RELO Pm RELO Pm RELO m RELO m RELO m RELO m RELO l RELO l RELO l RELO l RELO l RELO l RELO l RELO l RELO 0l RELO 0l RELO 0l RELO 0l RELO k RELO k RELO k RELO k RELO `k RELO `k RELO `k RELO `k RELO k RELO k RELO k RELO k RELO j RELO j RELO j RELO j RELO Pj RELO Pj RELO Pj RELO Pj RELO i RELO i RELO i RELO i RELO i RELO i RELO i RELO i RELO h RELO h RELO h RELO h RELO h RELO h RELO h RELO h RELO h RELO h RELO h RELO h RELO g RELO g RELO g RELO g RELO Pg RELO Pg RELO Pg RELO Pg RELO g RELO g RELO g RELO g RELO f RELO f RELO f RELO f RELO @f RELO @f RELO @f RELO @f RELO e RELO e RELO e RELO e RELO pe RELO pe RELO pe RELO pe RELO d RELO d RELO d RELO d RELO d RELO d RELO d RELO d RELO d RELO d RELO d RELO d RELO c RELO c RELO c RELO c RELO @c RELO @c RELO @c RELO @c RELO c RELO c RELO c RELO c RELO pb RELO pb RELO pb RELO pb RELO 0b RELO 0b RELO 0b RELO 0b RELO a RELO a RELO a RELO a RELO `a RELO `a RELO `a RELO `a RELO ` RELO ` RELO ` RELO ` RELO ` RELO ` RELO ` RELO ` RELO ` RELO ` RELO ` RELO ` RELO _ RELO _ RELO _ RELO _ RELO 0_ RELO 0_ RELO 0_ RELO 0_ RELO ^ RELO ^ RELO ^ RELO ^ RELO `^ RELO `^ RELO `^ RELO `^ RELO ^ RELO ^ RELO ^ RELO ^ RELO ] RELO ] RELO ] RELO ] RELO P] RELO P] RELO P] RELO P] RELO \ RELO \ RELO \ RELO \ RELO \ RELO \ RELO \ RELO \ RELO [ RELO [ RELO [ RELO [ RELO [ RELO [ RELO [ RELO [ RELO [ RELO [ RELO [ RELO [ RELO Z RELO Z RELO Z RELO Z RELO PZ RELO PZ RELO PZ RELO PZ RELO Z RELO Z RELO Z RELO Z RELO Y RELO Y RELO Y RELO Y RELO @Y RELO @Y RELO @Y RELO @Y RELO X RELO X RELO X RELO X RELO pX RELO pX RELO pX RELO pX RELO W RELO W RELO W RELO W RELO W RELO W RELO W RELO W RELO W RELO W RELO W RELO W RELO V RELO V RELO V RELO V RELO @V RELO @V RELO @V RELO @V RELO V RELO V RELO V RELO V RELO pU RELO pU RELO pU RELO pU RELO 0U RELO 0U RELO 0U RELO 0U RELO T RELO T RELO T RELO T RELO `T RELO `T RELO `T RELO `T RELO S RELO S RELO S RELO S RELO S RELO S RELO S RELO S RELO S RELO S RELO S RELO S RELO R RELO R RELO R RELO R RELO 0R RELO 0R RELO 0R RELO 0R RELO Q RELO Q RELO Q RELO Q RELO `Q RELO `Q RELO `Q RELO `Q RELO Q RELO Q RELO Q RELO Q RELO P RELO P RELO P RELO P RELO PP RELO PP RELO PP RELO PP RELO O RELO O RELO O RELO O RELO O RELO O RELO O RELO O RELO N RELO N RELO N RELO N RELO N RELO N RELO N RELO N RELO N RELO N RELO N RELO N RELO M RELO M RELO M RELO M RELO PM RELO PM RELO PM RELO PM RELO M RELO M RELO M RELO M RELO L RELO L RELO L RELO L RELO @L RELO @L RELO @L RELO @L RELO K RELO K RELO K RELO K RELO pK RELO pK RELO pK RELO pK RELO J RELO J RELO J RELO J RELO J RELO J RELO J RELO J RELO J RELO J RELO J RELO J RELO I RELO I RELO I RELO I RELO @I RELO @I RELO @I RELO @I RELO I RELO I RELO I RELO I RELO pH RELO pH RELO pH RELO pH RELO 0H RELO 0H RELO 0H RELO 0H RELO G RELO G RELO G RELO G RELO `G RELO `G RELO `G RELO `G RELO F RELO F RELO F RELO F RELO F RELO F RELO F RELO F RELO F RELO F RELO F RELO F RELO E RELO E RELO E RELO E RELO 0E RELO 0E RELO 0E RELO 0E RELO D RELO D RELO D RELO D RELO `D RELO `D RELO `D RELO `D RELO D RELO D RELO D RELO D RELO C RELO C RELO C RELO C RELO PC RELO PC RELO PC RELO PC RELO B RELO B RELO B RELO B RELO B RELO B RELO B RELO B RELO A RELO A RELO A RELO A RELO A RELO A RELO A RELO A RELO A RELO A RELO A RELO A RELO @ RELO @ RELO @ RELO @ RELO P@ RELO P@ RELO P@ RELO P@ RELO @ RELO @ RELO @ RELO @ RELO ? RELO ? RELO ? RELO ? RELO @? RELO @? RELO @? RELO @? RELO > RELO > RELO > RELO > RELO p> RELO p> RELO p> RELO p> RELO = RELO = RELO = RELO = RELO = RELO = RELO = RELO = RELO = RELO = RELO = RELO = RELO < RELO < RELO < RELO < RELO @< RELO @< RELO @< RELO @< RELO < RELO < RELO < RELO < RELO p; RELO p; RELO p; RELO p; RELO 0; RELO 0; RELO 0; RELO 0; RELO : RELO : RELO : RELO : RELO `: RELO `: RELO `: RELO `: RELO 9 RELO 9 RELO 9 RELO 9 RELO 9 RELO 9 RELO 9 RELO 9 RELO 9 RELO 9 RELO 9 RELO 9 RELO 8 RELO 8 RELO 8 RELO 8 SYMBd STRI ClipPlaneCoefficients $ TYPE TPGE RLOC SYMBt STRI SkinningMatrices $ TYPE8 TPAR0 TYPE$ TPMA TPGE ` RELO RELO RELO P RELO P RELO RELO RELO RELO RELO RELO RELO P RELO P RELO RELO RELO RELO RELO RELO RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO P RELO P RELO RELO RELO RELO RELO RELO RELO P RELO P RELO RELO RELO RELO RELO RELO RELO P RELO P RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO ` RELO ` RELO 0 RELO 0 RELO 0 RELO 0 RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO RELO RELO RELO RELO RELO RELO RELO SYMBX STRI NumBones $ TYPE TPGE RLOC SYMB STRI ViewportTransform $ TYPE( TPAR TYPE TPGE RLOC RLOC SYMB STRI ProjViewport $ TYPE$ TPMA TPGE RELO RELO RELO P RELO P RELO P RELO P RELO RELO RELO p RELO p RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO @ RELO @ SYMB STRI ModelViewProjViewport $ ` TYPE$ TPMA TPGE RLOC 0 RLOC RLOC p RLOC ` SYMB STRI ModelView $ TYPE$ TPMA TPGE RELO P RELO P RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO ` RELO ` RELO @ RELO @ RELO @ RELO @ RELO RELO SYMB STRI NormalMatrix $ TYPE$ TPMA TPGE RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO RELO SSYM SSYM SSYM UBUF EBIN RLOC > RLOC < RLOC P RLOC X RLOC RLOC RLOC 0 RLOC @ RLOC RLOC RLOC RLOC RLOC 0 RLOC RLOC p RLOC ` FSHA OBJC @ 1 r " 0` rP% r@. " /` r * r@. " .` r / r@. @"?0 @c > r 5 2 ` , ( Y * ` l n /?0 @"? @ =< + Y " 1 r r < { 0 " 0` rP% r@. " /` r * r@. " .` r / r@. @"?0 D > r 5 2 " "` rP% r@. '` d 9 r * , r@. ( Y * ` l n /?0 @"? == h @ " ` r / r@. 0 ? =< + Y " 1 r r < { 0 " 0` rP% r@. " /` r * r@. " .` r / r@. @"?0 D > r 5 2 " "` rP% r@. '` d 9 r * , r@. ( Y * ` l n /?0 @"? U == h H<< @ Y " ` a r / r@. ? H < + " d` P%? @"? " b` *? @"? @ 1 r " 0` rP% r@. " /` r * r@. " .` r / r@. @"?0 @c > r 0 5 2 ` , ( Y * ` l n /?0 @"? == h X r U H < @I < [ " ` rP% r@. ? Y " ` P%? @"? d < + 0 " ` " *? @"? r * Y " ! @ = @" r@. 0 @ " ` a r / r@. U@"? =< @I r Y xh n ` { 0@4 P + ` Y $ D @. @4 @4 @. P ; $ d @. @. ~0 @. V X xhn ` { @ Y * $` *@. @4 r@. Y * $` *@. @4 r@. ` Y * $` *@. @4 r@. " $` *@. r@. x ~0 @. N X hn$`P{ { @ Y * ` U@. @ r@. Y * $` U@. @ r@. ` Y * $` U@. @ r@. " $` U@. r@. x ~0 @. F X hn4` { { @ Y * ` @. @$ r@. Y * $` @. @$ r@. ` Y * $` @. @$ r@. Y " $` @. r@. @y X rP% ; " ` r r@. " ` r * r@. " ` r / r@. Y 0 rP% < k " `X r r@. Y " ` r * r@. " ` r / r@. @"? Dc > r 0 5 2 ` , ( Y * ` l n /?0 @"? @ 0 ? =< @I r Y xh n ` { 0@4 P k ` Y $ @. @4 @4 @. P k @. ~ @. 0 @. V X xhn ` { { @ Y * ` *@. @4 r@. { Y * ` *@. @4 r@. { ` Y * ` *@. @4 r@. ; " d` *@. r@. ~0 @. N X hn$`P{ ; @ Y * d` U@. @ r@. ; Y * d` U@. @ r@. ; ` Y * d` U@. @ r@. ; " d` U@. r@. ~0 @. F X hn4` { ; @ Y * d` @. @$ r@. ; Y * d` @. @$ r@. ; ` Y * d` @. @$ r@. ; Y " d` @. r@. =< k rP% " ` r r@. " ` r * r@. " ` r / r@. Y 0 rP% < { " ` r r@. Y " ` r * r@. ` x r / r@. 0 P @"? Dc > r 0 0 5 2 ` , ( Y `X n l /?0 @"?0 == h@I I $? `x 8 $ )?0 H ) 0 X x < < ' 0 0 0 P C < ' I )? " C` $p.? A"? A < @"0 @ ? ? = @" ! @"? =< @I r Y xh n ` { 0@4 P k ` Y $ @. @4 @4 @. P k @. ~ @. 0 @. V X xhn ` { { @ Y * ` *@. @4 r@. { Y * ` *@. @4 r@. { ` Y * ` *@. @4 r@. ; " d` *@. r@. ~0 @. N X hn$`P{ ; @ Y * d` U@. @ r@. ; Y * d` U@. @ r@. ; ` Y * d` U@. @ r@. ; " d` U@. r@. ~0 @. F X hn4` { ; @ Y * d` @. @$ r@. ; Y * d` @. @$ r@. ; ` Y * d` @. @$ r@. ; Y " d` @. r@. =< k rP% " ` r r@. " ` r * r@. " ` r / r@. Y 0 rP% < { " ` r r@. Y " ` r * r@. " ` r / r@. @"? Dc > r 0 5 2 ` , ( Z `x n lX /?0 P @"?0 0 * == h@i 0 %P" `X x $ )?0 HQ. 0 P0 P%0 X x < ' 0 0 0 P < ' I $? " ` $ )? A"? < @"0 ` < @" Bc8 0@ ? /? ? P X l0 B P Y Xn n0 B p0 P ` < /@ Y * Ab8l o J"?0 B @ ? P b < * P X Z 0 ? " ` @" A" =B H" @ ? `R < H" D" 0 Y * ` n o * 0 B p P b < * P X d < # Z ? " ` @" A" =B H" @ ? `R < H" B@( 0 Y " ` * ! @" @) Y * `Xl o H"?0 B @ ? P b < * 0 X c < Z p ? " ` @" A" =B H" " @ ? !U 0 D = @" ` < J" 0 " *p @" ` < H" / * B`: XW D" *@`0 @ p @" Y * ` n o H"?0 B @ ? P b < * 0 ? " ` @" A" Y =B H" b < Z " @ ? !U 0 D = @" ` < J" 0 *p @" " `R < H" ! @" / [ * !` @ XW D" *@`0 =< p ` H"?p B @"? Y * `Xl o H"?0 @ ? P X ? < Z 0 " ` @" C"p =R J" " @ ? !U 0 D = @" ` < J" 0 * @" Y ` <R J" 0 b < Z P ` < H" P / Z !` XW $ *@`0 p p P B"p B * * ` d H"? R @"? 0 Y * ` n o RU@"?0 B @ ? P X ? < Z 0 " ` @" C"p Y =R J" c < J P " @ ? !U 0 D = @" ` < J" 0 * @" ` <R J" ` < H" / [ !d ` C ! XW p *@`0 a < '@ `D B 8 * @" 4 H"? Y `# X # H"? P @"? * * @b!d J"? B @"? Y * ` l o R @"?0 @ ? P * X ?{ 0 B"p Y 0 @"pX8 e 0 " ` @" C"p =R J" Y " X @ ? U @0 B 0 e j p =! D" A ` < H" B"p ` < J" / B` XW 0 *@`0 ` * p @" P " ` *H"? B @ ? ~@8 B"p 8 Y l n0 @ p0 P c < /@) * Bb J"?{ B @ ? ? X X f J 0 Y " ` D" A" 0 B"p e J p =B H" " @ ? !U 0 D = @" ` < J" 0 d * @" ` < H" / * `z e XW @" *@`0 H"?p P " ` *J"? @ ? ~@8 ! @" 8 B Y lXl0 B p0 P X 0 @" { ? X X e * " ` D" A" =B H" @ ? Y ` <B H" e # Z P < H"0 P ` / 0 B P% P * ` d 4 ! @" 0 A` ~ !U@" @8 @" 8 B Y l n0 B p0 P * X ?{ h0 @" Y * X 0 n 0 0 ` " @` D" C"p =R J" 0 B"pX | @ ? E Y X n 0 U e + < B" X 0 `! XW 0 *@P0 X p f # Z * < H" @0 @ = @" A @" f < H" 0 * ` <R J" * / 4 P * / [ `z E E XW B 0 *@` c Z p $d X p!U $ @" 0 ` UH"? BH ) 8 @ ` ~ BU ?@ h ! @" Y l n0 B p0 P c < /@) * Bb J"?{ B @ ? ? Y 0 B"p0 n 0 0X8 ` Z `` @" A" X8 =B H" | @ ? *E Y X n80 + X < @" j X 0 RU `& XW *@P0 X p ` # P 0 B 0 =! D" < H" @" < H"0 Y ` <B H" 0 e J p ` e * ! @" c H"? 4 U / ` XW B / *@` d p ` H"? @"? 8 ` ~ @ ?@8 ! @" 8 J Y lXl0 B p0 P X 0 { 0 @" @ ? 0 @" n00 X0 Y 0 @ nRU0 0X0 ` " ` D" A" =B H" :| @ ? JE Y XRU n00 U ` + < B" 0 `! XW 0 *@P0 p X <B H" @0 @ X0 = @" A < H"0 @" Y < H"00 ` # Z ` * 0 *p U / [ dz` E XW p *@`0 ` j p B` @ / p B"p U / B`e e XW D" P *@` `#d *H"? 4 R @"? 8 ` H"? B @"? 8 " ` @ ? @" ` @ ? @" 0 J Y xl n l n0 B p0 `0 @ 0 <= P b < /@y 0 Gb J"?{ B @ ?@ ? 0 B( n00 0 B"pX0 Z 0 @ nRU0 0X0 0 B"p ` ` @" n00 A" X0 =B H" Z @ | *@ ? D ` + Y < B" @0 B` XW 0 *@P 0 D p 0 D @ = @" < J" *@" < H" / B`8 XW 0 *@`0 8 <B H" 0 / Z Bd " XW p nRU0 *@`0 d # Z P Z ` * p @" * 0 * p * *0 $ P H"? C`b b A H"? @"? 0 H"? * `Cd * 4 @" 0 ` @ H"? @"? 8 " E` @ ? bB( ` @ ? ! @" 0 R * l h h0 0 0 B p X l0 @ p \== P @ a ,4 X dbxn,4 ( P @) < @" ` b P% 4 ` 4 `x / , X dbxn,4 ( P X n U 0 P Y ` o>Br@. 0 P `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< 0 + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< 0 + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 0 + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 0 + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< 0 + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< 0 + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 0 + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< 8 + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< 8 + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 8 + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 8 + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< 8 + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< 8 + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 8 + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< @ + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< @ + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< @ + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< @ + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< @ + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< @ + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< @ + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< H + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< H + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< H + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< H + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< H + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< H + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< H + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< P + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< P + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< P + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< P + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< P + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< P + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< P + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< X + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< X + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< X + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< X + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< X + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< X + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< X + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< ` + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< ` + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< ` + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< ` + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< ` + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< ` + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< ` + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< h + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< h + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< h + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< h + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< h + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< h + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< h + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ U @ @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ `8 < @" @"? Y * o ?0 A"? @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ Y 8l 0 @"?0 @ =< h + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< h + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< h + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< h + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< h + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< h + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< h + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< ` + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< ` + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< ` + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< ` + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< ` + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< ` + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< ` + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< X + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< X + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< X + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< X + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< X + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< X + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< X + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< P + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< P + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< P + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< P + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< P + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< P + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< P + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< H + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< H + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< H + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< H + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< H + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< H + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< H + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< @ + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< @ + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< @ + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< @ + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< @ + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< @ + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< @ + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< 8 + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 8 + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 8 + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< 8 + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< 8 + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 8 + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 8 + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< 0 + X b rP% < L + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 0 + X b rP% < H + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 0 + P X b rP% < D + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ =< 0 + X b rP% < @ + " d` r r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ =< 0 + X b rP% < < + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 0 + X b rP% < 8 + " d` r r@. Y " b` r * r@. K Y " d` o r / r@. @ =< 0 + P X b rP% < 4 + ` " d` r r@. Y " b` r * r@. K p Y " d` o r / r@. @ < 0@9 X b r < 1 + " d` rP% r@. Y " b` r * r@. K 0 Y " d` o r / r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ < M ; " rP% Y " #` r r@. < N [ " $` r * r@. X l r@. @ < I ; " rP% Y " #` r r@. < J [ " $` r * r@. X l r@. @ < E ; @ " rP% Y " #` r r@. < F [ p " $` r * r@. X l r@. @ < A ; " rP% Y " #` r r@. < B [ 0 " $` r * r@. X l r@. @ < = ; " rP% Y " #` r r@. < > [ " $` r * r@. X l r@. @ < 9 ; " rP% Y " #` r r@. < : [ " $` r * r@. X l r@. @ < 5 ; @ " rP% Y " #` r r@. < 6 [ p " $` r * r@. X l r@. @ < 0 ; " r Y " #` rP% r@. < 2 [ 0 " $` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < M [ D rP% Y " E` r r@. < N k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < I [ D rP% Y " E` r r@. < J k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < E [ @ D rP% Y " E` r r@. < F k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < A [ D rP% Y " E` r r@. < B k 0 " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < = [ D rP% Y " E` r r@. < > k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 9 [ D rP% Y " E` r r@. < : k " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 5 [ @ D rP% Y " E` r r@. < 6 k p " D` r * r@. X l r@. @ `8 < @" @"? Y " ? A"? < 1 [ D rP% Y " E` r r@. < 2 k 0 " D` r * r@. X l r@. @ Y ` o>Br@. 0 P X n U 0 P @) < @" ` b P% 4 ` 4 `x / , X dbxn,4 ( P @ a ,4 X dbxn,4 ( P b < /@y 0 Gb J"?{ B @ ?@ ? 0 B( n00 0 B"pX0 Z 0 @ nRU0 0X0 0 B"p ` ` @" n00 A" X0 =B H" Z @ | *@ ? D ` + Y < B" @0 B` XW 0 *@P 0 D p 0 D @ = @" < J" *@" < H" / B`8 XW 0 *@`0 8 <B H" 0 / Z Bd " XW p nRU0 *@`0 d # Z P Z ` * p @" * 0 * p * *0 $ P H"? C`b b A H"? @"? 0 H"? * `Cd * 4 @" 0 ` @ H"? @"? 8 " E` @ ? bB( ` @ ? ! @" 0 R * l h h0 0 0 B p X l0 @ p \== P X 0 { 0 @" @ ? 0 @" n00 X0 Y 0 @ nRU0 0X0 ` " ` D" A" =B H" :| @ ? JE Y XRU n00 U ` + < B" 0 `! XW 0 *@P0 p X <B H" @0 @ X0 = @" A < H"0 @" Y < H"00 ` # Z ` * 0 *p U / [ dz` E XW p *@`0 ` j p B` @ / p B"p U / B`e e XW D" P *@` `#d *H"? 4 R @"? 8 ` H"? B @"? 8 " ` @ ? @" ` @ ? @" 0 J Y xl n l n0 B p0 `0 @ 0 <= P c < /@) * Bb J"?{ B @ ? ? Y 0 B"p0 n 0 0X8 ` Z `` @" A" X8 =B H" | @ ? *E Y X n80 + X < @" j X 0 RU `& XW *@P0 X p ` # P 0 B 0 =! D" < H" @" < H"0 Y ` <B H" 0 e J p ` e * ! @" c H"? 4 U / ` XW B / *@` d p ` H"? @"? 8 ` ~ @ ?@8 ! @" 8 J Y lXl0 B p0 P * X ?{ h0 @" Y * X 0 n 0 0 ` " @` D" C"p =R J" 0 B"pX | @ ? E Y X n 0 U e + < B" X 0 `! XW 0 *@P0 X p f # Z * < H" @0 @ = @" A @" f < H" 0 * ` <R J" * / 4 P * / [ `z E E XW B 0 *@` c Z p $d X p!U $ @" 0 ` UH"? BH ) 8 @ ` ~ BU ?@ h ! @" Y l n0 B p0 P X 0 @" { ? X X e * " ` D" A" =B H" @ ? Y ` <B H" e # Z P < H"0 P ` / 0 B P% P * ` d 4 ! @" 0 A` ~ !U@" @8 @" 8 B Y l n0 B p0 P c < /@) * Bb J"?{ B @ ? ? X X f J 0 Y " ` D" A" 0 B"p e J p =B H" " @ ? !U 0 D = @" ` < J" 0 d * @" ` < H" / * `z e XW @" *@`0 H"?p P " ` *J"? @ ? ~@8 ! @" 8 B Y lXl0 B p0 P * X ?{ 0 B"p Y 0 @"pX8 e 0 " ` @" C"p =R J" Y " X @ ? U @0 B 0 e j p =! D" A ` < H" B"p ` < J" / B` XW 0 *@`0 ` * p @" P " ` *H"? B @ ? ~@8 B"p 8 Y l n0 @ p0 P X ? < Z 0 " ` @" C"p Y =R J" c < J P " @ ? !U 0 D = @" ` < J" 0 * @" ` <R J" ` < H" / [ !d ` C ! XW p *@`0 a < '@ `D B 8 * @" 4 H"? Y `# X # H"? P @"? * * @b!d J"? B @"? Y * ` l o R @"?0 @ ? P X ? < Z 0 " ` @" C"p =R J" " @ ? !U 0 D = @" ` < J" 0 * @" Y ` <R J" 0 b < Z P ` < H" P / Z !` XW $ *@`0 p p P B"p B * * ` d H"? R @"? 0 Y * ` n o RU@"?0 B @ ? P b < * 0 ? " ` @" A" Y =B H" b < Z " @ ? !U 0 D = @" ` < J" 0 *p @" " `R < H" ! @" / [ * !` @ XW D" *@`0 =< p ` H"?p B @"? Y * `Xl o H"?0 @ ? P b < * 0 X c < Z p ? " ` @" A" =B H" " @ ? !U 0 D = @" ` < J" 0 " *p @" ` < H" / * B`: XW D" *@`0 @ p @" Y * ` n o H"?0 B @ ? P b < * P X d < # Z ? " ` @" A" =B H" @ ? `R < H" B@( 0 Y " ` * ! @" @) Y * `Xl o H"?0 B @ ? P b < * P X Z 0 ? " ` @" A" =B H" @ ? `R < H" D" 0 Y * ` n o * 0 B p P ` < /@ Y * Ab8l o J"?0 B @ ? P Y Xn n0 B p0 P P X l0 B P =< @I r Y xh n ` { 0@4 P k ` Y $ @. @4 @4 @. P k @. ~ @. 0 @. V X xhn ` { { @ Y * ` *@. @4 r@. { Y * ` *@. @4 r@. { ` Y * ` *@. @4 r@. ; " d` *@. r@. ~0 @. N X hn$`P{ ; @ Y * d` U@. @ r@. ; Y * d` U@. @ r@. ; ` Y * d` U@. @ r@. ; " d` U@. r@. ~0 @. F X hn4` { ; @ Y * d` @. @$ r@. ; Y * d` @. @$ r@. ; ` Y * d` @. @$ r@. ; Y " d` @. r@. =< k rP% " ` r r@. " ` r * r@. " ` r / r@. Y 0 rP% < { " ` r r@. Y " ` r * r@. " ` r / r@. @"? Dc > r 0 5 2 ` , ( Z `x n lX /?0 P @"?0 0 * == h@i 0 %P" `X x $ )?0 HQ. 0 P0 P%0 X x < ' 0 0 0 P < ' I $? " ` $ )? A"? < @"0 ` < @" Bc8 0@ ? /? ? =< @I r Y xh n ` { 0@4 P k ` Y $ @. @4 @4 @. P k @. ~ @. 0 @. V X xhn ` { { @ Y * ` *@. @4 r@. { Y * ` *@. @4 r@. { ` Y * ` *@. @4 r@. ; " d` *@. r@. ~0 @. N X hn$`P{ ; @ Y * d` U@. @ r@. ; Y * d` U@. @ r@. ; ` Y * d` U@. @ r@. ; " d` U@. r@. ~0 @. F X hn4` { ; @ Y * d` @. @$ r@. ; Y * d` @. @$ r@. ; ` Y * d` @. @$ r@. ; Y " d` @. r@. =< k rP% " ` r r@. " ` r * r@. " ` r / r@. Y 0 rP% < { " ` r r@. Y " ` r * r@. ` x r / r@. 0 P @"? Dc > r 0 0 5 2 ` , ( Y `X n l /?0 @"?0 == h@I I $? `x 8 $ )?0 H ) 0 X x < < ' 0 0 0 P C < ' I )? " C` $p.? A"? A < @"0 @ ? ? = @" ! @"? =< @I r Y xh n ` { 0@4 P + ` Y $ D @. @4 @4 @. P ; $ d @. @. ~0 @. V X xhn ` { @ Y * $` *@. @4 r@. Y * $` *@. @4 r@. ` Y * $` *@. @4 r@. " $` *@. r@. x ~0 @. N X hn$`P{ { @ Y * ` U@. @ r@. Y * $` U@. @ r@. ` Y * $` U@. @ r@. " $` U@. r@. x ~0 @. F X hn4` { { @ Y * ` @. @$ r@. Y * $` @. @$ r@. ` Y * $` @. @$ r@. Y " $` @. r@. @y X rP% ; " ` r r@. " ` r * r@. " ` r / r@. Y 0 rP% < k " `X r r@. Y " ` r * r@. " ` r / r@. @"? Dc > r 0 5 2 ` , ( Y * ` l n /?0 @"? @ 0 ? @ 1 r " 0` rP% r@. " /` r * r@. " .` r / r@. @"?0 @c > r 0 5 2 ` , ( Y * ` l n /?0 @"? == h X r U H < @I < [ " ` rP% r@. ? Y " ` P%? @"? d < + 0 " ` " *? @"? r * Y " ! @ = @" r@. 0 @ " ` a r / r@. U@"? =< + Y " 1 r r < { 0 " 0` rP% r@. " /` r * r@. " .` r / r@. @"?0 D > r 5 2 " "` rP% r@. '` d 9 r * , r@. ( Y * ` l n /?0 @"? U == h H<< @ Y " ` a r / r@. ? H < + " d` P%? @"? " b` *? @"? =< + Y " 1 r r < { 0 " 0` rP% r@. " /` r * r@. " .` r / r@. @"?0 D > r 5 2 " "` rP% r@. '` d 9 r * , r@. ( Y * ` l n /?0 @"? == h @ " ` r / r@. 0 ? @ 1 r " 0` rP% r@. " /` r * r@. " .` r / r@. @"?0 @c > r 5 2 ` , ( Y * ` l n /?0 @"? @ gl_FrontFacing var_PrimaryColor var_PrimaryColorTwosided __start StageSampler0 StageSampler1 StageSampler2 StageSampler3 StageSampler4 StageSampler5 StageSampler6 StageSampler7 ConstantColor FogColor FogAdd ClipPlaneTie StageConstant0 StageConstant1 StageConstant2 StageConstant3 StageConstant4 StageConstant5 StageConstant6 StageConstant7 Rotate gl_mali_ColorSpaceCoeffFragment var_TexCoord0 var_TexCoord1 var_TexCoord2 var_TexCoord3 var_TexCoord4 var_TexCoord5 var_TexCoord6 var_TexCoord7 var_ClipPlaneSignedDist var_FogDist ***MESSAGE TRUNCATED*** ***FORMATTING ERROR*** cdbgp_channel_init cdbgp_channel_open In file: cdbg/src/mali_cdbg_channels.c line: 567 INIT Initing shared dests 0x%x: failed to init 0x%x. Some debug output may not appear due to this In file: cdbg/src/mali_cdbg_channels.c line: 645 Initing dest bitpattern 0x%x for channel %d: failed dests bitpattern is 0x%x. Some debug output may not appear from this channel. process_permissions UNKNOWN BASE CCTX CDBG CDEPS CDSB CFRAME CINSTR CMAR CMATH CMEM COBJ CPOM CSTATE CUTILS EGL GLES CL COMP GPU OSU STDLIB UMP VG CMEMBASEALLOC VK VKPPLCACHE GFX GFXPROG HAL CLPOM cdbgp_control_init In file: cdbg/src/mali_cdbg_control.c line: 217 Trailing '%c' at end of permissions '%s' In file: cdbg/src/mali_cdbg_control.c line: 221 Missing '%c' in permissions '%s' In file: cdbg/src/mali_cdbg_control.c line: 227 Unexpected '%c' in permissions '%s' In file: cdbg/src/mali_cdbg_control.c line: 251 Unrecognized feature name '%.*s' in permissions '%s' In file: cdbg/src/mali_cdbg_control.c line: 264 Unrecognized module ID '%.*s' in permissions '%s' MALI_CDBG_PERMISSIONS In file: cdbg/src/mali_cdbg_control.c line: 324 Failed to allocate %zu bytes for environment variable value ALL_WARN,ALL_ERROR In file: cdbg/src/mali_cdbg_control.c line: 351 Initialization of spin lock failed (%d) cdbgp_env_read_line cdbgp_env_read_in_default_environment cdbgp_populate_from_system_environment cdbgp_env_init In file: cdbg/src/mali_cdbg_env.c line: 547 No linefeed found at end of default configuration file In file: cdbg/src/mali_cdbg_env.c line: 551 Line of default configuration file is too long to be processed In file: cdbg/src/mali_cdbg_env.c line: 857 Correct format for process specific variable key is {PROCESS_NAME}%c{FEATURE_NAME} /proc/%d/cmdline In file: cdbg/src/mali_cdbg_env.c line: 887 Failed to set variable %s=%s from default configuration file In file: cdbg/src/mali_cdbg_env.c line: 765 Initialization of a handle to the system environment failed (%d) MALI In file: cdbg/src/mali_cdbg_env.c line: 788 Failed to set variable %s=%s from environment In file: cdbg/src/mali_cdbg_env.c line: 918 cdbgp_failure_init In file: cdbg/src/mali_cdbg_failure.c line: 96 cdbgp_print_init ==>[%s] (%s) %s: %s %s In file: cdbg/src/mali_cdbg_print.c line: 256 Initialization of CDBG channel %d failed (%d) In file: cdbg/src/mali_cdbg_print.c line: 266 Initialization of CDBG channels failed (%d) (%s) %s: mali_this_file_is_for_testing_purposes_only.out mali.out mali.warn mali.err mali.spew ./%s.instr_config override default Untitled general TEST_NAME outdir INSTR_OUTPUT_DIR 0 <RESERVED> 1 <RESERVED> 2 <RESERVED> 3 <RESERVED> 4 T86x_MMU_HIT 5 T86x_MMU_NEW_MISS 6 T86x_MMU_REPLAY_FULL 7 T86x_MMU_REPLAY_MISS 8 T86x_MMU_TABLE_WALK 9 T86x_MMU_REQUESTS 10 <RESERVED> 11 <RESERVED> 12 T86x_UTLB_HIT 13 T86x_UTLB_NEW_MISS 14 T86x_UTLB_REPLAY_FULL 15 T86x_UTLB_REPLAY_MISS 16 T86x_UTLB_STALL 17 <RESERVED> 18 <RESERVED> 19 <RESERVED> 20 <RESERVED> 21 <RESERVED> 22 <RESERVED> 23 <RESERVED> 24 <RESERVED> 25 <RESERVED> 26 <RESERVED> 27 <RESERVED> 28 <RESERVED> 29 <RESERVED> 30 T86x_L2_EXT_WRITE_BEATS 31 T86x_L2_EXT_READ_BEATS 32 T86x_L2_ANY_LOOKUP 33 T86x_L2_READ_LOOKUP 34 T86x_L2_SREAD_LOOKUP 35 T86x_L2_READ_REPLAY 36 T86x_L2_READ_SNOOP 37 T86x_L2_READ_HIT 38 T86x_L2_CLEAN_MISS 39 T86x_L2_WRITE_LOOKUP 40 T86x_L2_SWRITE_LOOKUP 41 T86x_L2_WRITE_REPLAY 42 T86x_L2_WRITE_SNOOP 43 T86x_L2_WRITE_HIT 44 T86x_L2_EXT_READ_FULL 45 <RESERVED> 46 T86x_L2_EXT_WRITE_FULL 47 T86x_L2_EXT_R_W_HAZARD 48 T86x_L2_EXT_READ 49 T86x_L2_EXT_READ_LINE 50 T86x_L2_EXT_WRITE 51 T86x_L2_EXT_WRITE_LINE 52 T86x_L2_EXT_WRITE_SMALL 53 T86x_L2_EXT_BARRIER 54 T86x_L2_EXT_AR_STALL 55 T86x_L2_EXT_R_BUF_FULL 56 T86x_L2_EXT_RD_BUF_FULL 57 T86x_L2_EXT_R_RAW 58 T86x_L2_EXT_W_STALL 59 T86x_L2_EXT_W_BUF_FULL 60 T86x_L2_EXT_R_BUF_FULL 61 T86x_L2_TAG_HAZARD 62 T86x_L2_SNOOP_FULL 63 T86x_L2_REPLAY_FULL 4 T86x_FRAG_ACTIVE 5 T86x_FRAG_PRIMITIVES 6 T86x_FRAG_PRIMITIVES_DROPPED 7 T86x_FRAG_CYCLES_DESC 8 T86x_FRAG_CYCLES_FPKQ_ACTIVE 9 T86x_FRAG_CYCLES_VERT 10 T86x_FRAG_CYCLES_TRISETUP 11 T86x_FRAG_CYCLES_EZS_ACTIVE 12 T86x_FRAG_THREADS 13 T86x_FRAG_DUMMY_THREADS 14 T86x_FRAG_QUADS_RAST 15 T86x_FRAG_QUADS_EZS_TEST 16 T86x_FRAG_QUADS_EZS_KILLED 17 T86x_FRAG_THREADS_LZS_TEST 18 T86x_FRAG_THREADS_LZS_KILLED 19 T86x_FRAG_CYCLES_NO_TILE 20 T86x_FRAG_NUM_TILES 21 T86x_FRAG_TRANS_ELIM 22 T86x_COMPUTE_ACTIVE 23 T86x_COMPUTE_TASKS 24 T86x_COMPUTE_THREADS 25 T86x_COMPUTE_CYCLES_DESC 26 T86x_TRIPIPE_ACTIVE 27 T86x_ARITH_WORDS 28 T86x_ARITH_CYCLES_REG 29 T86x_ARITH_CYCLES_L0 30 T86x_ARITH_FRAG_DEPEND 31 T86x_LS_WORDS 32 T86x_LS_ISSUES 33 T86x_LS_REISSUE_ATTR 34 T86x_LS_REISSUES_VARY 35 T86x_LS_VARY_RV_MISS 36 T86x_LS_VARY_RV_HIT 37 T86x_LS_NO_UNPARK 38 T86x_TEX_WORDS 39 T86x_TEX_BUBBLES 40 T86x_TEX_WORDS_L0 41 T86x_TEX_WORDS_DESC 42 T86x_TEX_ISSUES 43 T86x_TEX_RECIRC_FMISS 44 T86x_TEX_RECIRC_DESC 45 T86x_TEX_RECIRC_MULTI 46 T86x_TEX_RECIRC_PMISS 47 T86x_TEX_RECIRC_CONF 48 T86x_LSC_READ_HITS 49 T86x_LSC_READ_OP 50 T86x_LSC_WRITE_HITS 51 T86x_LSC_WRITE_OP 52 T86x_LSC_ATOMIC_HITS 53 T86x_LSC_ATOMIC_OP 54 T86x_LSC_LINE_FETCHES 55 T86x_LSC_DIRTY_LINE 56 T86x_LSC_SNOOPS 57 T86x_AXI_TLB_STALL 58 T86x_AXI_TLB_MISS 59 T86x_AXI_TLB_TRANSACTION 60 T86x_LS_TLB_MISS 61 T86x_LS_TLB_HIT 62 T86x_AXI_BEATS_READ 63 T86x_AXI_BEATS_WRITTEN 3 T86x_TI_JOBS_PROCESSED 4 T86x_TI_TRIANGLES 5 T86x_TI_QUADS 6 T86x_TI_POLYGONS 7 T86x_TI_POINTS 8 T86x_TI_LINES 9 T86x_TI_VCACHE_HIT 10 T86x_TI_VCACHE_MISS 11 T86x_TI_FRONT_FACING 12 T86x_TI_BACK_FACING 13 T86x_TI_PRIM_VISIBLE 14 T86x_TI_PRIM_CULLED 15 T86x_TI_PRIM_CLIPPED 16 T86x_TI_LEVEL0 17 T86x_TI_LEVEL1 18 T86x_TI_LEVEL2 19 T86x_TI_LEVEL3 20 T86x_TI_LEVEL4 21 T86x_TI_LEVEL5 22 T86x_TI_LEVEL6 23 T86x_TI_LEVEL7 24 T86x_TI_COMMAND_1 25 T86x_TI_COMMAND_2 26 T86x_TI_COMMAND_3 27 T86x_TI_COMMAND_4 28 T86x_TI_COMMAND_5_7 29 T86x_TI_COMMAND_8_15 30 T86x_TI_COMMAND_16_63 31 T86x_TI_COMMAND_64 32 T86x_TI_COMPRESS_IN 33 T86x_TI_COMPRESS_OUT 34 T86x_TI_COMPRESS_FLUSH 35 T86x_TI_TIMESTAMPS 36 T86x_TI_PCACHE_HIT 37 T86x_TI_PCACHE_MISS 38 T86x_TI_PCACHE_LINE 39 T86x_TI_PCACHE_STALL 40 T86x_TI_WRBUF_HIT 41 T86x_TI_WRBUF_MISS 42 T86x_TI_WRBUF_LINE 43 T86x_TI_WRBUF_PARTIAL 44 T86x_TI_WRBUF_STALL 45 T86x_TI_ACTIVE 46 T86x_TI_LOADING_DESC 47 T86x_TI_INDEX_WAIT 48 T86x_TI_INDEX_RANGE_WAIT 49 T86x_TI_VERTEX_WAIT 50 T86x_TI_PCACHE_WAIT 51 T86x_TI_WRBUF_WAIT 52 T86x_TI_BUS_READ 53 T86x_TI_BUS_WRITE 54 <RESERVED> 55 <RESERVED> 56 <RESERVED> 57 <RESERVED> 58 <RESERVED> 59 T86x_TI_UTLB_HIT 60 T86x_TI_UTLB_NEW_MISS 61 T86x_TI_UTLB_REPLAY_FULL 62 T86x_TI_UTLB_REPLAY_MISS 63 T86x_TI_UTLB_STALL 4 T86x_MESSAGES_SENT 5 T86x_MESSAGES_RECEIVED 6 T86x_GPU_ACTIVE 7 T86x_IRQ_ACTIVE 8 T86x_JS0_JOBS 9 T86x_JS0_TASKS 10 T86x_JS0_ACTIVE 12 T86x_JS0_WAIT_READ 13 T86x_JS0_WAIT_ISSUE 14 T86x_JS0_WAIT_DEPEND 15 T86x_JS0_WAIT_FINISH 16 T86x_JS1_JOBS 17 T86x_JS1_TASKS 18 T86x_JS1_ACTIVE 20 T86x_JS1_WAIT_READ 21 T86x_JS1_WAIT_ISSUE 22 T86x_JS1_WAIT_DEPEND 23 T86x_JS1_WAIT_FINISH 24 T86x_JS2_JOBS 25 T86x_JS2_TASKS 26 T86x_JS2_ACTIVE 28 T86x_JS2_WAIT_READ 29 T86x_JS2_WAIT_ISSUE 30 T86x_JS2_WAIT_DEPEND 31 T86x_JS2_WAIT_FINISH 32 <RESERVED> 33 <RESERVED> 34 <RESERVED> 35 <RESERVED> 36 <RESERVED> 37 <RESERVED> 38 <RESERVED> 39 <RESERVED> 40 <RESERVED> 41 <RESERVED> 42 <RESERVED> 43 <RESERVED> 44 <RESERVED> 46 <RESERVED> 47 <RESERVED> 48 <RESERVED> 49 <RESERVED> 50 <RESERVED> 51 <RESERVED> 52 <RESERVED> 53 <RESERVED> 59 <RESERVED> 60 <RESERVED> 61 <RESERVED> 62 <RESERVED> 63 <RESERVED> timeline_buffer_sz timeline timeline_buffer_cnt uds_lossless_mode autoflush_time timeline_u outfile_prefix MALI_TIMELINE_BUFFER_SZ MALI_TIMELINE_BUFFER_CNT MALI_TIMELINE_AUTOFLUSH_TIME MALI_TIMELINE_UDS_LOSSLESS_MODE MALI_TIMELINE_OUTFILE_PREFIX Waiting for endpoint connection... Endpoint connected. Endpoint connection failed. Failed to acquire kernel timeline stream descriptor (%d). Check if kernel has timeline stream enabled in its configuration. The kernel timeline stream descriptor is busy (attached to different application). skipframes, min_width, min_height iII MALI_GLES_WINDUMP frequency, range_start, range_stop III MALI_FRAMESAVE cinstrp_qmanager_service_thread cinstrp_qmanager_init mali-cinstr-qmanager MIPE endpoint init failed In file: cinstr/src/mali_cinstr_qmanager.c line: 271 [QUEUE_MANAGER] %p input buffer allocation failed In file: cinstr/src/mali_cinstr_qmanager.c line: 323 [QUEUE_MANAGER] %p poll failed In file: cinstr/src/mali_cinstr_qmanager.c line: 502 [QUEUE_MANAGER] %p failed to set non-blocking mode on pipe descriptors mali-cinstr-timer-core v1.r18p0-01rel0.15878e9e510a5af1dd27c25d79446090 0x%04x R%dP%d-%d USER %d-%d-%d %d:%d:%d $PLATFORM_DIST=Ubuntu_16.04_xenial_afbc=1_allocator=drm_dumb_alternate_hwc_set=0_android_egl_cfg=1_android_gralloc_path=none_android_module_owner=none_android_release=0_android_version=marshmallow_arch=arm_v7_backend=kernel_base_qa=none_bench=0_bl=none_buslog=0_cframe_qa=0_cl=1_cl_disable_profiling=0_cl_experimental=0_cl_svm_shim=0_clcc_public_release=0_cmem_qa=0_cmpbe_qa=0_compiler_build=0_core_stack=0_coverage=0_cycle_counter=1_debug=0_debug_copy=0_deterministic_perf=0_disable_advanced_opts=0_doc=0_drm_allocator=True_drm_test_interactive=0_dummy_model=0_dump=0_dvfs=0_ee=0_egl=1_fbd=multiple_flat_tiler=1_flavour=fast_floatabi=hard_force_fragment_order=0_force_identity_mapping=1_gator=2_gles=1_gles2018=0_gles32=1_gles_debug_shaders=0_gles_experimental=0_gles_qa=0_gles_shaders_from_files=0_gpu=t86x_gpu_ee_limited=0_gpu_headers_path=_gralloc=1_gralloc_version1=0_hal_dump=0_hw=0_hw_cc=0_hwc_stream=0_hwver=r2p0_idvs=1_instr=0_kernel_backend=gpu_kernel_modules=0_ktlstream=0_lowmem=0_mali_dp=0_mali_license_is_gpl=1_mali_model=0_mipe=1_mmap64_defined=-1_no_clang=0_no_mali=0_no_syncsets=0_opencl_platform_config=config_t6xx_optimize=1_os=linux_perf=0_pfsver=0_pkgconfig_prefix=/usr/local_platform_config=vexpress_preframe=1_random_delay=0_release=1_sanitizer=none_secure_memory=0_simd=1_soversion=None_standalone=0_streamline_annotate=0_symbols=0_system=0_system_trace=0_systrace=0_tests=True_thumb=1_tiler_levels=8_timeline=cl_timeline_tls_core_num=0_toolchain=gnu_tpi_wayland_backend=fbdev_ump=0_ump_ion=0_unit=0_use_os_env=1_use_v8_headers=0_valgrind=0_vulkan=0_vulkan_qa=0_vulkan_system_counter_timestamps=0_vulkan_wsi=none_wayland_afbc=0_wayland_server=1_windump_stream=0_winsys=['wayland',_'gbm']_winsys_dma_buf=1_winsys_platform_reference=0_x11_async_pageflip=0 A N [MIPE_RPC] error encountered - unavailable command %u. [MIPE_RPC] error encountered while processing command %u. [MIPE_RPC] invalid command id (%u) received. mali_thirdparty_server mali_thirdparty_client mali-cinstr-bsr MALI_TIMELINE_ENABLE mali-cinstr-hwcf hwc_stream MALI_HWC_DUMP_SAMPLING_INTERVAL <RESERVED> MALI_HWC_DUMP_JM_MAP MALI_HWC_DUMP_TILER_MAP MALI_HWC_DUMP_MMU_L2C_MAP MALI_HWC_DUMP_SC_MAP HWC stream enabling was attempted, however no counter mask was set. microseconds, start_index, enable_map iIL MALI_GPUPERF_PERIOD CINSTR_TL_NEW_KERNEL New kernel @tp CINSTR_TL_ATTRIB_KERNEL_NAME TL attrib kernel name @tps kernel,name CINSTR_TL_RET_CLOSURE_KERNEL TL ret closure to kernel @tpp closure,kernel CINSTR_TL_ATTRIB_CLOSURE_TIMESTAMPS TL attrib closure timestamps @tpLL closure,timestamp_start,timestamp_end CINSTR_TL_ATTRIB_THREAD_API_NAME @tI CINSTR_TL_BLOCK_QUEUE TL thread blocked until queued commands are finished CINSTR_TL_DEL_KERNEL Delete kernel CINSTR_TL_NBLOCK_QUEUE TL thread unblocked CINSTR_TL_NEW_CTX New context CINSTR_TL_ATTRIB_CTX_API_TYPE TL attrib ctx api_type @tpI ctx,api_type CINSTR_TL_ATTRIB_CTX_API_VERSION TL attrib ctx api_version ctx,api_version CINSTR_TL_ATTRIB_CTX_CTX_NR TL attrib ctx ctx_nr ctx,ctx_nr CINSTR_TL_RET_CTX_CTX TL ret ctx to ctx ctx1,ctx2 CINSTR_TL_NEW_LPU New lpu CINSTR_TL_ATTRIB_LPU_LPU_NR TL attrib lpu lpu_nr lpu,lpu_nr CINSTR_TL_LIFELINK_LPU_CTX TL lifelink lpu to ctx lpu,ctx CINSTR_TL_NEW_QUEUE New queue CINSTR_TL_ATTRIB_QUEUE_DEVICE_NAME TL attrib queue device name queue,device_name CINSTR_TL_RET_QUEUE_CTX TL ret queue to ctx queue,ctx CINSTR_TL_NEW_COMMAND New command CINSTR_TL_ATTRIB_COMMAND_API_NAME TL attrib command api_name command,api_name CINSTR_TL_RET_COMMAND_QUEUE TL ret command to queue command,queue CINSTR_TL_NEW_EVENT New event CINSTR_TL_DEP_COMMAND_EVENT TL event depends on command command,event CINSTR_TL_RET_EVENT_CTX TL ret event to ctx event,ctx CINSTR_TL_DEP_EVENT_COMMAND TL commands depends on event @tppI event,command,implicit_dependency CINSTR_TL_RET_CLOSURE_COMMAND TL command retains closure closure,command CINSTR_TL_NEW_CLOSURE New closure CINSTR_TL_NEW_ATOM New atom @tpIII atom,atom_nr,atom_type,atom_subtype CINSTR_TL_RET_CLOSURE_ATOM TL ret closure to atom closure,atom CINSTR_TL_RET_ATOM_CTX TL ret atom to ctx atom,ctx CINSTR_TL_RET_CLOSURE_LPU TL ret closure to lpu closure,lpu CINSTR_TL_DEL_CTX Delete context CINSTR_TL_DEL_QUEUE Delete queue CINSTR_TL_DEL_COMMAND Delete command CINSTR_TL_DEL_EVENT Delete event CINSTR_TL_NDEP_COMMAND_EVENT TL event ndep on command CINSTR_TL_NDEP_EVENT_COMMAND TL command ndep on event event,command CINSTR_TL_NRET_CLOSURE_ATOM TL nret closure to atom CINSTR_TL_DEL_ATOM Delete atom CINSTR_TL_NRET_ATOM_CTX TL nret atom to ctx CINSTR_TL_NRET_CLOSURE_LPU TL nret closure to lpu CINSTR_TL_NRET_CLOSURE_COMMAND TL command nret closure CINSTR_TL_ENUM Timeline value sIs arg_name,enum_value,enum_name CINSTR_PROCESS_ATTRIB Process attributes process_id NDRANGEKERNEL TASK NATIVEKERNEL READBUFFER WRITEBUFFER COPYBUFFER READIMAGE WRITEIMAGE COPYIMAGE COPYIMAGETOBUFFER COPYBUFFERTOIMAGE MAPBUFFER MAPIMAGE UNMAPMEMOBJECT ACQUIREGLOBJECTS RELEASEGLOBJECTS READBUFFERRECT WRITEBUFFERRECT COPYBUFFERRECT ACQUIREEGLOBJECTS RELEASEEGLOBJECTS MIGRATEMEMOBJECTS MARKERWITHWAITLIST BARRIERWITHWAITLIST MARKER BARRIER ENQUEUE_WAITFOREVENTS FINISH CONTEXT_TYPE_EGL CONTEXT_TYPE_OPENGLES CONTEXT_TYPE_OPENCL atom_type ATOM_TYPE_SOFT ATOM_TYPE_GPU (0 0 $0 #0 "0 =0 !0 >0 90 :0 ?0 0 '0 B0 %0 )0 A0 80 <0 ;0 -0 /0 @0 20 10 &0 30 40 80 70 60 50 '0 ?0 80 0 20 10 %0 &0 >0 /0 (0 $0 #0 "0 !0 %0 &0 @0 30 30 80 eglCreateContext --->yzq %s %d eglChooseConfig Fail to get Confings Fail to get Config, num_configs=%d 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 0 80 E 80 E 80 $0 #0 "0 !0 =0 0 10 2 '0 )0 30 -0 .0 /0 80 ;0 <0 40 50 60 70 0 0 80 MALI_CROP_RECTANGLE %i,%i,%i,%i 1.4 Midgard-"r18p0-01rel0" OpenGL_ES EGL_KHR_config_attribs EGL_KHR_image EGL_KHR_image_base EGL_KHR_fence_sync EGL_KHR_wait_sync EGL_KHR_gl_colorspace EGL_KHR_get_all_proc_addresses EGL_IMG_context_priority EGL_ARM_pixmap_multisample_discard EGL_ARM_implicit_external_sync EGL_KHR_gl_texture_2D_image EGL_KHR_gl_renderbuffer_image EGL_KHR_create_context EGL_KHR_surfaceless_context EGL_KHR_gl_texture_cubemap_image EGL_EXT_create_context_robustness EGL_EXT_client_extensions EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_KHR_platform_gbm EGL_MESA_platform_gbm EGL_KHR_platform_wayland EGL_EXT_platform_wayland MALI_SAVE_FRAMES_TO_FILE_RANGE %u,%u MALI_SAVE_FRAMES_TO_FILE_FREQUENCY %s.afb %s.yuv %s.tga frame_%u MALI_SAVE_FRAMES_TO_FILE eglCreateImageKHR eglDestroyImageKHR eglCreateSyncKHR eglDestroySyncKHR eglClientWaitSyncKHR eglGetSyncAttribKHR eglWaitSyncKHR eglSwapBuffersWithDamageEXT eglSwapBuffersWithDamageKHR eglSetDamageRegionKHR eglChooseConfig eglCopyBuffers eglCreateContext eglCreatePbufferSurface eglCreatePixmapSurface eglCreateWindowSurface eglDestroyContext eglDestroySurface eglGetConfigAttrib eglGetConfigs eglGetCurrentDisplay eglGetCurrentSurface eglGetDisplay eglGetError eglGetProcAddress eglInitialize eglMakeCurrent eglQueryContext eglQueryString eglQuerySurface eglSwapBuffers eglTerminate eglWaitGL eglWaitNative eglBindTexImage eglReleaseTexImage eglSurfaceAttrib eglSwapInterval eglBindAPI eglQueryAPI eglCreatePbufferFromClientBuffer eglReleaseThread eglWaitClient eglGetCurrentContext eglGetPlatformDisplayEXT eglCreatePlatformWindowSurfaceEXT eglCreatePlatformPixmapSurfaceEXT W0 V0 X0 0 \0 0 \0 0 0 0 0 0 0 0 80 eglp_flush_frame_manager 0 0 0 0 80 eglp_swap_buffers In file: egl/src/mali_egl_window_surface.c line: 1533 Got unsupported EGL color buffer sync method %d In file: egl/src/mali_egl_window_surface.c line: 1901 Failed to copy damage rectangles. Using full-surface damage. 0 0 0 0 0 0 2 0 0 80 0 0 0 0 EGL_COLOR_BUFFER_FORMAT_INVALID mali_egl_image_get_format egl/src/mali_egl_winsys_helpers.c ((void *)0) != img ((void *)0) != img->templ CDBG BASE CINSTR TL CMEM CMAR COBJ CPOM CDEPS CFRAME CBLEND OPENCL OPENGLES %2u: %20llu / %llu %s: %s (Total memory: %llu) (empty) Total allocated memory: %llu mali-hist-dump Channel: Unnamed Channel: Default Heap Channel: Framepool Channel: Frame Internal Channel: GPU Program Channel: EGL Color Plane Channel: GLES VAO Channel: Image Descriptor Channel: Texture Channel: Buffer Channel: CRC Buffer Channel: Unnamed (11) Channel: Unnamed (12) Channel: Unnamed (13) Channel: Unnamed (14) @ gles.vert.num_views variant_kill_mask current_variant_flags mrtt gles.geometry_count gles.is_no_lod noblend nolod per_fragment_shader spmrt no_index_buffer no_sampler_transform position_shader attribute_shader noatest fast_external_sampler_transform Could not expand memory buffer static const cmpbe_chunk_UBUF UBUF_%x = { static u32 d_%x[%u] = { }; .count = (u32) 0x%x, .sizes = (u32*) d_%x, .sizes = NULL, static const cmpbe_chunk_TPGE TPGE_%x = { .scalar_type = (cmpbe_chunk_TPGE_scalar_type) 0x%x, .vector_size = (u8) 0x%x, .scalar_size = (cmpbe_chunk_TPGE_scalar_size) 0x%x, .precision = (cmpbe_chunk_TPGE_precision) 0x%x, .stride = (u32) 0x%x, .aux_qualifier = (cmpbe_chunk_TPGE_aux_qualifier) 0x%x, .component = (u8) 0x%x, static const cmpbe_chunk_TPMA TPMA_%x = { .nof_columns = (u8) 0x%x, .is_row_major = (b8) 0x%x, .major_stride = (u32) 0x%x, .column_type = TPGE_%x, static const cmpbe_chunk_TPQU TPQU_%x = { static const cmpbe_chunk_TPPR TPPR_%x = { static const cmpbe_chunk_TPPW TPPW_%x = { static const cmpbe_chunk_TPSA TPSA_%x = { .kind = (u32) 0x%x, static const cmpbe_chunk_MTES MTES_%x = { .n_vertices = (u32) 0x%x, .primitive_mode = (cmpbe_chunk_MTES_primitive_mode) 0x%x, .vertex_spacing = (cmpbe_chunk_MTES_vertex_spacing) 0x%x, .ordering = (cmpbe_chunk_MTES_ordering) 0x%x, .point_mode = (b8) 0x%x, .max_tessfactor = (u32) 0x%x, .has_control_point_phase = (b8) 0x%x, .n_vertices_in = (u8) 0x%x, static const u8 b_%x[] = " ""%c "; static const cmpbe_chunk_STRI STRI_%x = { .size = %u, .data = (u8*)b_%x }; %c \x%02x static const cmpbe_chunk_RLOC RLOC_%x = { .sym_idx = (u16) 0x%x, .uni_offset = (u16) 0x%x, .reg_offset = (u16) 0x%x, .size = (u16) 0x%x, static cmpbe_chunk_RLOC a_%x[%u] = { RLOC_%x, static const cmpbe_chunk_FSHA FSHA_%x = { static const cmpbe_chunk_EPTA EPTA_%x = { .sym_lhs_name = STRI_%x, .sym_lhs_offset = (u32) 0x%x, .sym_rhs_name = STRI_%x, .sym_rhs_offset = (u32) 0x%x, static cmpbe_chunk_EPTA a_%x[%u] = { EPTA_%x, .tls_size = (u32) 0x%x, .offset = (u32) 0x%x, .nof_reg = (u32) 0x%x, .nof_rmu = (u32) 0x%x, .flags = (cmpbe_chunk_FSHA_flags) 0x%x, .variant = (cmpbe_chunk_FSHA_variant) 0x%x, "; static const cmpbe_chunk_DBUG DBUG_%x = { .size = %u, .data = (u8*)b_%x }; static const cmpbe_chunk_GREL GREL_%x = { static const cmpbe_chunk_RELO RELO_%x = { .kind = (cmpbe_chunk_RELO_kind) 0x%x, .section_idx = (u8) 0x%x, static cmpbe_chunk_RELO a_%x[%u] = { RELO_%x, .nof_global_relo = (u32) 0x%x, .relo = a_%x, .relo = NULL, static const cmpbe_chunk_SPDb SPDb_%x = { .ffbd_hi = (u32) 0x%x, .ffbd_lo = (u32) 0x%x, static const cmpbe_chunk_SPDc SPDc_%x = { .preload_compute = (u16) 0x%x, static u8 d_%x[%u] = { static const cmpbe_chunk_SPDf SPDf_%x = { .r62_alias = (u8) 0x%x, .preload_fragment = (u16) 0x%x, .rt_count = (u32) 0x%x, .rt_index = (u8*) d_%x, .rt_index = NULL, .size = (cmpbe_chunk_TPGE_scalar_size*) d_%x, .size = NULL, .type = (cmpbe_chunk_TPGE_scalar_type*) d_%x, .type = NULL, .return_addr = (u32*) d_%x, .return_addr = NULL, static const cmpbe_chunk_SPDv SPDv_%x = { .preload_vertex = (u16) 0x%x, static const cmpbe_chunk_BFRE BFRE_%x = { static const cmpbe_chunk_PDSC PDSC_%x = { .varying0 = (u16) 0x%x, .varying1 = (u16) 0x%x, .primary_shader_wait = (u8) 0x%x, .default_image_srt = (u8) 0x%x, .default_texture_srt = (u8) 0x%x, .default_sampler_srt = (u8) 0x%x, .default_attribute_srt = (u8) 0x%x, .default_uniform_srt = (u8) 0x%x, .spdb = (cmpbe_chunk_SPDb*)&SPDb_%x, .spdb = NULL, .spdc = (cmpbe_chunk_SPDc*)&SPDc_%x, .spdc = NULL, .spdf = (cmpbe_chunk_SPDf*)&SPDf_%x, .spdf = NULL, .spdv = (cmpbe_chunk_SPDv*)&SPDv_%x, .spdv = NULL, .pdsc = (cmpbe_chunk_PDSC*)&PDSC_%x, .pdsc = NULL, static const cmpbe_chunk_FD3D FD3D_%x = { .output_type = (cmpbe_chunk_FD3D_output_type) 0x%x, static const cmpbe_chunk_XPTA XPTA_%x = { static const cmpbe_chunk_XPTL XPTL_%x = { static const cmpbe_chunk_XPTR XPTR_%x = { .constant_0 = (u32) 0x%x, .constant_1 = (u32) 0x%x, .constant_2 = (u32) 0x%x, .constant_3 = (u32) 0x%x, .swizzle_x = (u8) 0x%x, .swizzle_y = (u8) 0x%x, .swizzle_z = (u8) 0x%x, .swizzle_w = (u8) 0x%x, .sym_rhs_name = (cmpbe_chunk_STRI*)&STRI_%x, .sym_rhs_name = NULL, static cmpbe_chunk_XPTR a_%x[%u] = { XPTR_%x, .nof_rhs = (u32) 0x%x, .xptr = a_%x, .xptr = NULL, static cmpbe_chunk_XPTL a_%x[%u] = { XPTL_%x, .nof_xptl = (u32) 0x%x, .xptl = a_%x, .xptl = NULL, static const cmpbe_chunk_VLKN VLKN_%x = { .used_set_bitmask = (u16) 0x%x, .offset_first_sw_blend = (u32) 0x%x, "; static const cmpbe_chunk_OBJC OBJC_%x = { .size = %u, .data = (u8*)b_%x }; .rt_num = (u32) 0x%x, .aux_idx = (u32) 0x%x, .nof_rloc = (u32) 0x%x, .nof_epta = (u32) 0x%x, .rloc = a_%x, .rloc = NULL, .epta = a_%x, .data_section_offset = (u32) 0x%x, .epta = NULL, .fsha = FSHA_%x, .entrypoint_name = (cmpbe_chunk_STRI*)&STRI_%x, .entrypoint_name = NULL, .dbug = (cmpbe_chunk_DBUG*)&DBUG_%x, .dbug = NULL, .grel = (cmpbe_chunk_GREL*)&GREL_%x, .grel = NULL, .bfre = (cmpbe_chunk_BFRE*)&BFRE_%x, .bfre = NULL, .fd3d = (cmpbe_chunk_FD3D*)&FD3D_%x, .fd3d = NULL, .xpta = (cmpbe_chunk_XPTA*)&XPTA_%x, .xpta = NULL, .vlkn = (cmpbe_chunk_VLKN*)&VLKN_%x, .objc = OBJC_%x, .vlkn = NULL, static const cmpbe_chunk_EBIN EBIN_%x = { static const cmpbe_chunk_TPST TPST_%x = { static const cmpbe_chunk_TPAC TPAC_%x = { static const cmpbe_chunk_TYPE TYPE_%x = { static const cmpbe_chunk_TPAR TPAR_%x = { .array_size = (u32) 0x%x, .element_type = TYPE_%x, static const cmpbe_chunk_TPSE TPSE_%x = { .name = STRI_%x, .flags = (cmpbe_chunk_symbol_flags) 0x%x, .location = (u16) 0x%x, .semantics = (u32) 0x%x, .type = TYPE_%x, static cmpbe_chunk_TPSE a_%x[%u] = { TPSE_%x, static const cmpbe_chunk_TPIB TPIB_%x = { .layout = (cmpbe_chunk_TPIB_layout) 0x%x, .kind = (cmpbe_chunk_TPIB_kind) 0x%x, .nof_members = (u32) 0x%x, .tpse = a_%x, .tpse = NULL, .instance_name = (cmpbe_chunk_STRI*)&STRI_%x, .instance_name = NULL, .tpac = (cmpbe_chunk_TPAC*)&TPAC_%x, .tpac = NULL, .tpar = (cmpbe_chunk_TPAR*)&TPAR_%x, .tpar = NULL, .tpge = (cmpbe_chunk_TPGE*)&TPGE_%x, .tpge = NULL, .tpib = (cmpbe_chunk_TPIB*)&TPIB_%x, .tpib = NULL, .tpma = (cmpbe_chunk_TPMA*)&TPMA_%x, .tpma = NULL, .tppo = (cmpbe_chunk_TPPO*)&TPPO_%x, .tppo = NULL, .tpqu = (cmpbe_chunk_TPQU*)&TPQU_%x, .tpqu = NULL, .tppr = (cmpbe_chunk_TPPR*)&TPPR_%x, .tppr = NULL, .tppw = (cmpbe_chunk_TPPW*)&TPPW_%x, .tppw = NULL, .tpsa = (cmpbe_chunk_TPSA*)&TPSA_%x, .tpsa = NULL, .tpst = (cmpbe_chunk_TPST*)&TPST_%x, .tpst = NULL, .type_name = STRI_%x, static const cmpbe_chunk_SSYM SSYM_%x = { static const cmpbe_chunk_FIXP FIXP_%x = { .value = (u32) 0x%x, .needs_high = (b8) 0x%x, static cmpbe_chunk_FIXP a_%x[%u] = { FIXP_%x, static const cmpbe_chunk_SYMB SYMB_%x = { static const cmpbe_chunk_SINI SINI_%x = { .values = (u32*) d_%x, .values = NULL, .semantics = (cmpbe_chunk_SYMB_semantics) 0x%x, .address = (u32) 0x%x, .binding = (u16) 0x%x, .nof_relo = (u32) 0x%x, .nof_fixp = (u32) 0x%x, .fixp = a_%x, .fixp = NULL, .sini = (cmpbe_chunk_SINI*)&SINI_%x, .sini = NULL, static cmpbe_chunk_SYMB a_%x[%u] = { SYMB_%x, .symb = a_%x, .symb = NULL, static const cmpbe_chunk_VELA VELA_%x = { .lang = (cmpbe_chunk_VELA_lang) 0x%x, static const cmpbe_chunk_CMMN CMMN_%x = { static cmpbe_chunk_EBIN a_%x[%u] = { EBIN_%x, .vela = VELA_%x, .sinp = SSYM_%x, .sout = SSYM_%x, .suni = SSYM_%x, .simg = SSYM_%x, .ssmp = SSYM_%x, .s3bo = SSYM_%x, .ubuf = UBUF_%x, .nof_ebin = (u32) 0x%x, .ebin = a_%x, .ebin = NULL, static const cmpbe_chunk_TPPO TPPO_%x = { .address_space = (cmpbe_chunk_TPPO_address_space) 0x%x, .pointed_type = TYPE_%x, #if defined(__GNUC__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wpedantic" #endif static const cmpbe_chunk_VEHW VEHW_%x = { .core = (cmpbe_chunk_VEHW_core) 0x%x, .major = (s32) 0x%x, .minor = (s32) 0x%x, static const cmpbe_chunk_CBLE CBLE_%x = { .svar = SSYM_%x, .ebin = EBIN_%x, static const cmpbe_chunk_KPAR KPAR_%x = { .declared_name = STRI_%x, .uniform_name = STRI_%x, .flags = (cmpbe_chunk_KPAR_flags) 0x%x, static cmpbe_chunk_KPAR a_%x[%u] = { KPAR_%x, static const cmpbe_chunk_KERN KERN_%x = { static const cmpbe_chunk_KWGS KWGS_%x = { .x = (u32) 0x%x, .y = (u32) 0x%x, .z = (u32) 0x%x, .nof_kpar = (u32) 0x%x, .kpar = a_%x, .workgroup_local_size = (u32) 0x%x, .kpar = NULL, .thread_limit_hint = (u16) 0x%x, .workgroup_size = (cmpbe_chunk_KWGS*)&KWGS_%x, .workgroup_size = NULL, .cmmn = CMMN_%x, .kern = KERN_%x, static const cmpbe_chunk_FOTV FOTV_%x = { static const cmpbe_chunk_OUTV OUTV_%x = { .nb_locations_used = (u16) 0x%x, static cmpbe_chunk_OUTV a_%x[%u] = { OUTV_%x, .nb_outputs = (u8) 0x%x, .outputs = a_%x, .outputs = NULL, static const cmpbe_chunk_LCAL LCAL_%x = { .local_storage_size = (u8) 0x%x, static const cmpbe_chunk_BLDM BLDM_%x = { .flags = (cmpbe_chunk_BLDM_flags) 0x%x, static const cmpbe_chunk_CFRA CFRA_%x = { static const cmpbe_chunk_AINF AINF_%x = { static const cmpbe_chunk_ACHN ACHN_%x = { .sampler_name = STRI_%x, .kind = (cmpbe_chunk_ACHN_kind) 0x%x, .rt = (u8) 0x%x, .sampler_component = (u8) 0x%x, .uniform_component = (u8) 0x%x, static cmpbe_chunk_ACHN a_%x[%u] = { ACHN_%x, .achn = a_%x, .achn = NULL, .output_vars = (cmpbe_chunk_FOTV*)&FOTV_%x, .output_vars = NULL, .lcal = (cmpbe_chunk_LCAL*)&LCAL_%x, .lcal = NULL, .bldm = (cmpbe_chunk_BLDM*)&BLDM_%x, .bldm = NULL, .alpha_info = (cmpbe_chunk_AINF*)&AINF_%x, .alpha_info = NULL, static const cmpbe_chunk_GPOS GPOS_%x = { .kind = (cmpbe_chunk_GPOS_kind) 0x%x, .sym_a_name = STRI_%x, .sym_b_name = STRI_%x, static const cmpbe_chunk_CVER CVER_%x = { static const cmpbe_chunk_VMVW VMVW_%x = { .num_views = (u8) 0x%x, .gpos = (cmpbe_chunk_GPOS*)&GPOS_%x, .gpos = NULL, .vmvw = (cmpbe_chunk_VMVW*)&VMVW_%x, .vmvw = NULL, static const cmpbe_chunk_CTSC CTSC_%x = { .mtes = MTES_%x, static const cmpbe_chunk_CTSE CTSE_%x = { static const cmpbe_chunk_MGEO MGEO_%x = { .n_invocations = (u16) 0x%x, .max_vertices = (u16) 0x%x, .layered_rendering = (b8) 0x%x, .input_primitive_mode = (cmpbe_chunk_MGEO_input_primitive_mode) 0x%x, .output_primitive_mode = (cmpbe_chunk_MGEO_output_primitive_mode) 0x%x, .stream_mask = (u8) 0x%x, .rasterizer_pos_slot = (u8) 0x%x, .nb_patch_vertices = (u8) 0x%x, static const cmpbe_chunk_GSVC GSVC_%x = { .nof_layers = (u16) 0x%x, .index_counts = (u32*) d_%x, .nof_vertices = (u32) 0x%x, .index_counts = NULL, .primitives_generated = (u32) 0x%x, static const cmpbe_chunk_CGEO CGEO_%x = { .mgeo = MGEO_%x, .gsvc = (cmpbe_chunk_GSVC*)&GSVC_%x, .gsvc = NULL, static const cmpbe_chunk_SSRC SSRC_%x = { .extra = (u32) 0x%x, .shader_src = STRI_%x, .linked_shader_src = (cmpbe_chunk_STRI*)&STRI_%x, .linked_shader_src = NULL, "; static const cmpbe_chunk_D3DS D3DS_%x = { .size = %u, .data = (u8*)b_%x }; cmpbe_chunk_MBS2 MBS2 = { .version = 22, .vehw = VEHW_%x, .cble = (cmpbe_chunk_CBLE*)&CBLE_%x, .cble = NULL, .ccom = (cmpbe_chunk_CCOM*)&CCOM_%x, .ccom = NULL, .cfra = (cmpbe_chunk_CFRA*)&CFRA_%x, .cfra = NULL, .cver = (cmpbe_chunk_CVER*)&CVER_%x, .cver = NULL, .ctsc = (cmpbe_chunk_CTSC*)&CTSC_%x, .ctsc = NULL, .ctse = (cmpbe_chunk_CTSE*)&CTSE_%x, .ctse = NULL, .cgeo = (cmpbe_chunk_CGEO*)&CGEO_%x, .cgeo = NULL, .ssrc = (cmpbe_chunk_SSRC*)&SSRC_%x, .ssrc = NULL, .d3ds = (cmpbe_chunk_D3DS*)&D3DS_%x, .d3ds = NULL, .variants = (cmpbe_chunk_STRI*)&STRI_%x, .variants = NULL, #if defined(__GNUC__) #pragma GCC diagnostic pop #endif static const cmpbe_chunk_CCOM CCOM_%x = { Value read for 'scalar_type' larger than TPGE_scalar_type_MAX_VALUE_ALLOWED Value read for 'scalar_size' larger than TPGE_scalar_size_MAX_VALUE_ALLOWED Value read for 'precision' larger than TPGE_precision_MAX_VALUE_ALLOWED Value read for 'aux_qualifier' larger than TPGE_aux_qualifier_MAX_VALUE_ALLOWED Padding is not set to zero in field 'reserved' Value read for 'primitive_mode' larger than MTES_primitive_mode_MAX_VALUE_ALLOWED Value read for 'vertex_spacing' larger than MTES_vertex_spacing_MAX_VALUE_ALLOWED Value read for 'ordering' larger than MTES_ordering_MAX_VALUE_ALLOWED Value read for 'point_mode' larger than 1 Value read for 'has_control_point_phase' larger than 1 Stream truncated Unexpected block type (was expecting RLOC) Reported size for block RLOC is smaller than expected Unexpected block type (was expecting RELO) Reported size for block RELO is smaller than expected Value read for 'kind' larger than RELO_kind_MAX_VALUE_ALLOWED Could not allocate memory for binary Could not read entire binary chunk Trying to write a value larger than MTES_primitive_mode_MAX_VALUE_ALLOWED for 'primitive_mode' Trying to write a value larger than MTES_vertex_spacing_MAX_VALUE_ALLOWED for 'vertex_spacing' Trying to write a value larger than MTES_ordering_MAX_VALUE_ALLOWED for 'ordering' Trying to write a value larger than 1 for 'point_mode' Trying to write a value larger than 1 for 'has_control_point_phase' Data for binary 'stri' was not null-terminated Could not allocate memory for block RLOC Could not allocate memory for block EPTA Unexpected block type (was expecting EPTA) Reported size for block EPTA is smaller than expected Unexpected block type (was expecting STRI) Unexpected block type (was expecting FSHA) Reported size for block FSHA is smaller than expected Value read for 'flags' larger than FSHA_flags_MAX_VALUE_ALLOWED Value read for 'variant' larger than FSHA_variant_MAX_VALUE_ALLOWED Could not allocate memory for block STRI Could not allocate memory for block DBUG Could not allocate memory for block GREL Reported size for block GREL is smaller than expected Could not allocate memory for block RELO Could not allocate memory for block BFRE Reported size for block BFRE is smaller than expected Reported size for block SPDb is smaller than expected Could not allocate memory for optional_block SPDb Reported size for block SPDc is smaller than expected Could not allocate memory for optional_block SPDc Reported size for block SPDf is smaller than expected Could not allocate memory for optional_block SPDf Padding is not set to zero in field 'rt_index' Padding is not set to zero in field 'size' Padding is not set to zero in field 'type' Reported size for block SPDv is smaller than expected Could not allocate memory for optional_block SPDv Expected chunk not found Could not allocate memory for block PDSC Reported size for block PDSC is smaller than expected Could not allocate memory for block FD3D Reported size for block FD3D is smaller than expected Value read for 'output_type' larger than FD3D_output_type_MAX_VALUE_ALLOWED Could not allocate memory for block XPTA Reported size for block XPTA is smaller than expected Could not allocate memory for block XPTL Unexpected block type (was expecting XPTL) Reported size for block XPTL is smaller than expected Could not allocate memory for block XPTR Unexpected block type (was expecting XPTR) Reported size for block XPTR is smaller than expected Could not allocate memory for block VLKN Reported size for block VLKN is smaller than expected Unexpected block type (was expecting OBJC) Trying to write a value larger than TPGE_scalar_type_MAX_VALUE_ALLOWED for 'scalar_type' Trying to write a value larger than TPGE_scalar_size_MAX_VALUE_ALLOWED for 'scalar_size' Trying to write a value larger than TPGE_precision_MAX_VALUE_ALLOWED for 'precision' Trying to write a value larger than TPGE_aux_qualifier_MAX_VALUE_ALLOWED for 'aux_qualifier' Trying to write a value larger than FSHA_flags_MAX_VALUE_ALLOWED for 'flags' Trying to write a value larger than FSHA_variant_MAX_VALUE_ALLOWED for 'variant' Trying to write a value larger than RELO_kind_MAX_VALUE_ALLOWED for 'kind' Union 'block_bfre' has no set block Union 'block_bfre' has more than one field set Trying to write a value larger than TPGE_scalar_size_MAX_VALUE_ALLOWED for 'size'[] Trying to write a value larger than TPGE_scalar_type_MAX_VALUE_ALLOWED for 'type'[] Union 'block_bfre' has no set field Trying to write a value larger than FD3D_output_type_MAX_VALUE_ALLOWED for 'output_type' Unexpected block type (was expecting TPSE) Reported size for block TPSE is smaller than expected Value read for 'flags' larger than symbol_flags_MAX_VALUE_ALLOWED Unexpected block type (was expecting TYPE) Reported size for block TYPE is smaller than expected Reported size for block TPAC is smaller than expected Could not allocate memory for optional_block TPAC Reported size for block TPAR is smaller than expected Could not allocate memory for optional_block TPAR Reported size for block TPGE is smaller than expected Could not allocate memory for optional_block TPGE Reported size for block TPIB is smaller than expected Could not allocate memory for optional_block TPIB Value read for 'layout' larger than TPIB_layout_MAX_VALUE_ALLOWED Value read for 'kind' larger than TPIB_kind_MAX_VALUE_ALLOWED Could not allocate memory for block TPSE Reported size for block TPMA is smaller than expected Could not allocate memory for optional_block TPMA Value read for 'is_row_major' larger than 1 Unexpected block type (was expecting TPGE) Reported size for block TPPO is smaller than expected Could not allocate memory for optional_block TPPO Value read for 'address_space' larger than TPPO_address_space_MAX_VALUE_ALLOWED Reported size for block TPQU is smaller than expected Could not allocate memory for optional_block TPQU Reported size for block TPPR is smaller than expected Could not allocate memory for optional_block TPPR Reported size for block TPPW is smaller than expected Could not allocate memory for optional_block TPPW Reported size for block TPSA is smaller than expected Could not allocate memory for optional_block TPSA Reported size for block TPST is smaller than expected Could not allocate memory for optional_block TPST Could not allocate memory for block SYMB Unexpected block type (was expecting SYMB) Reported size for block SYMB is smaller than expected Value read for 'semantics' larger than SYMB_semantics_MAX_VALUE_ALLOWED Could not allocate memory for block FIXP Unexpected block type (was expecting FIXP) Reported size for block FIXP is smaller than expected Value read for 'needs_high' larger than 1 Could not allocate memory for block SINI Reported size for block SINI is smaller than expected Unexpected block type (was expecting VELA) Reported size for block VELA is smaller than expected Value read for 'lang' larger than VELA_lang_MAX_VALUE_ALLOWED Unexpected block type (was expecting SSYM) Reported size for block SSYM is smaller than expected Unexpected block type (was expecting UBUF) Reported size for block UBUF is smaller than expected Could not allocate memory for block EBIN Unexpected block type (was expecting EBIN) Reported size for block EBIN is smaller than expected Trying to write a value larger than symbol_flags_MAX_VALUE_ALLOWED for 'flags' Union 'block_type' has no set block Union 'block_type' has more than one field set Trying to write a value larger than TPIB_layout_MAX_VALUE_ALLOWED for 'layout' Trying to write a value larger than TPIB_kind_MAX_VALUE_ALLOWED for 'kind' Trying to write a value larger than 1 for 'is_row_major' Trying to write a value larger than TPPO_address_space_MAX_VALUE_ALLOWED for 'address_space' Union 'block_type' has no set field Trying to write a value larger than SYMB_semantics_MAX_VALUE_ALLOWED for 'semantics' Trying to write a value larger than 1 for 'needs_high' Trying to write a value larger than VELA_lang_MAX_VALUE_ALLOWED for 'lang' Unexpected block type (was expecting MBS2) Reported size for block MBS2 is smaller than expected Could not allocate memory for root block MBS2 Binary version (%d) differs from expected (22) Reported size for block VEHW is smaller than expected Unexpected block type (was expecting VEHW) Value read for 'core' larger than VEHW_core_MAX_VALUE_ALLOWED Reported size for block CBLE is smaller than expected Could not allocate memory for optional_block CBLE Reported size for block CCOM is smaller than expected Could not allocate memory for optional_block CCOM Unexpected block type (was expecting CMMN) Reported size for block CMMN is smaller than expected Unexpected block type (was expecting KERN) Reported size for block KERN is smaller than expected Could not allocate memory for block KPAR Unexpected block type (was expecting KPAR) Reported size for block KPAR is smaller than expected Value read for 'flags' larger than KPAR_flags_MAX_VALUE_ALLOWED Could not allocate memory for block KWGS Reported size for block KWGS is smaller than expected Reported size for block CFRA is smaller than expected Could not allocate memory for optional_block CFRA Could not allocate memory for block FOTV Reported size for block FOTV is smaller than expected Could not allocate memory for block OUTV Unexpected block type (was expecting OUTV) Reported size for block OUTV is smaller than expected Could not allocate memory for block LCAL Reported size for block LCAL is smaller than expected Could not allocate memory for block BLDM Reported size for block BLDM is smaller than expected Value read for 'flags' larger than BLDM_flags_MAX_VALUE_ALLOWED Could not allocate memory for block AINF Reported size for block AINF is smaller than expected Could not allocate memory for block ACHN Unexpected block type (was expecting ACHN) Reported size for block ACHN is smaller than expected Value read for 'kind' larger than ACHN_kind_MAX_VALUE_ALLOWED Reported size for block CVER is smaller than expected Could not allocate memory for optional_block CVER Could not allocate memory for block GPOS Reported size for block GPOS is smaller than expected Value read for 'kind' larger than GPOS_kind_MAX_VALUE_ALLOWED Could not allocate memory for block VMVW Reported size for block VMVW is smaller than expected Reported size for block CTSC is smaller than expected Could not allocate memory for optional_block CTSC Unexpected block type (was expecting MTES) Reported size for block MTES is smaller than expected Reported size for block CTSE is smaller than expected Could not allocate memory for optional_block CTSE Reported size for block CGEO is smaller than expected Could not allocate memory for optional_block CGEO Unexpected block type (was expecting MGEO) Reported size for block MGEO is smaller than expected Value read for 'layered_rendering' larger than 1 Value read for 'input_primitive_mode' larger than MGEO_input_primitive_mode_MAX_VALUE_ALLOWED Value read for 'output_primitive_mode' larger than MGEO_output_primitive_mode_MAX_VALUE_ALLOWED Could not allocate memory for block GSVC Reported size for block GSVC is smaller than expected Could not allocate memory for block SSRC Reported size for block SSRC is smaller than expected Could not allocate memory for block D3DS Union 'block_mbs2' has no set block Union 'block_mbs2' has more than one field set Trying to write a value larger than VEHW_core_MAX_VALUE_ALLOWED for 'core' Trying to write a value larger than KPAR_flags_MAX_VALUE_ALLOWED for 'flags' Trying to write a value larger than BLDM_flags_MAX_VALUE_ALLOWED for 'flags' Trying to write a value larger than ACHN_kind_MAX_VALUE_ALLOWED for 'kind' Trying to write a value larger than GPOS_kind_MAX_VALUE_ALLOWED for 'kind' Trying to write a value larger than 1 for 'layered_rendering' Trying to write a value larger than MGEO_input_primitive_mode_MAX_VALUE_ALLOWED for 'input_primitive_mode' Trying to write a value larger than MGEO_output_primitive_mode_MAX_VALUE_ALLOWED for 'output_primitive_mode' Union 'block_mbs2' has no set field gl_mali_ImageSizesVertex gl_mali_ImageSizesFragment gl_mali_ImageSizesGeometry gl_mali_ImageSizesTessCtrl gl_mali_ImageSizesTessEval gl_mali_ImageSizesCompute gl_mali_TextureGatherMirrorVertex gl_mali_TextureGatherMirrorFragment gl_mali_TextureGatherMirrorTessCtrl gl_mali_TextureGatherMirrorTessEval gl_mali_TextureGatherMirrorGeometry gl_mali_TextureGatherMirrorCompute gl_mali_TextureSizesVertex gl_mali_TextureSizesFragment gl_mali_TextureSizesTessCtrl gl_mali_TextureSizesTessEval gl_mali_TextureSizesGeometry gl_mali_TextureSizesCompute gl_mali_SSBOVertex gl_mali_SSBOTessCtrl gl_mali_SSBOTessEval gl_mali_SSBOGeometry gl_mali_ColorSpaceCoeffVertex gl_mali_ColorSpaceCoeffTessCtrl gl_mali_ColorSpaceCoeffTessEval gl_mali_ColorSpaceCoeffGeometry gl_mali_ColorSpaceCoeffCompute %s%03d ???? P0001 P0002 P0003 P0004 P0005 P0006 P0007 P0008 P0009 S0001 S0002 S0003 S0004 S0005 S0006 S0007 S0008 S0009 S0010 S0011 S0012 S0013 S0014 S0015 S0016 S0017 S0018 S0019 S0020 S0021 S0022 S0023 S0024 S0025 S0026 S0027 S0028 S0029 S0030 S0031 S0032 S0033 S0034 S0035 S0037 S0038 S0039 S0040 S0041 S0042 S0043 S0044 S0045 S0046 S0047 S0048 S0049 S0050 S0051 S0052 S0053 S0054 S0055 S0056 S0057 S0058 S0059 S0060 L0009 F0001 F0002 F0003 F0004 L0099 M0001 <unknown> 0:1: %s: Out of memory. %d:%d: %s: Please contact support-mali@arm.com with the shader causing the problem, along with this error message. %s: <null> __blend0 __blend1 __blend2 __blend3 __blend4 __blend5 __blend6 __blend7 buffer_usage.depth_read buffer_usage.depth_write buffer_usage.stencil_read buffer_usage.stencil_write _gl_mali_OcclusionQueriesUniform gl_FragCoord gl_FBColor_blend RawColor0 RawColor1 LinearColor0 LinearColor1 LinearColor2 LinearColor3 LinearColor4 LinearColor5 LinearColor6 LinearColor7 PixelCoord FBStencil FBDepth SampleMask SampleIdx workgroup_size.x workgroup_size.y workgroup_size.z __sym_init_dummy_func gl_mali_InstanceID gles.is_used gles.no_lto gles.location has_instanced_pilot Location must be specified for all members because the first member has a location specified. Location must not be specified for any of the member because the first member does not have a location specified. Invalid layout qualifier ('location = %d', maximum allowed value is %d)' Invalid layout qualifier ('location = %u' specified earlier in the block).' Invalid layout qualifier ('location = %d', maximum allowed value is %d) for variable '%s' It is an error to write to the regular output variable '%s' and the local storage block '%s' Multiple output variables defined. Location must be specified for all outputs. Invalid layout qualifier ('location = %d') for variable '%s'. Same location value was used earlier Illegal to declare multiple fragment outputs when using the 'yuv' layout qualifier. 0 texture3D texture3DProj texture3DLod texture3DProjLod shadow2DEXT shadow2DProjEXT texelFetch textureSize dFdx dFdy fwidth attr_jumpARM convert_lRGB_to_sRGB convert_sRGB_to_lRGB __midgard_ld_attr_ei __midgard_st_attr_ei __midgard_ld_special_vec4 __midgard_ld_special_ivec4 all_samples_equal imageAtomicAdd imageAtomicMin imageAtomicMax imageAtomicAnd imageAtomicOr imageAtomicXor imageAtomicCompSwap imageAtomicExchange imageSize imageLoad imageStore textureLod textureGather textureGrad textureGatherOffsets loadExplicitARM storeExplicitARM interpolateAtCentroid interpolateAtSample interpolateAtOffset EmitVertex EndPrimitive packedFma2x16 packedSub2x16 packedSwizzle2x16 packedNarrow32To16 packedNarrow32To8 packedZeroExtend16To32 packedZeroExtend8To32 textureProj load32ARM load64ARM store32ARM store64ARM rgb_2_yuv yuv_2_rgb memoryBarrier memoryBarrierAtomicCounter memoryBarrierBuffer memoryBarrierImage memoryBarrierShared groupMemoryBarrier packUnorm4x8 packSnorm4x8 unpackUnorm4x8 unpackSnorm4x8 textureGatherOffset atomicAdd atomicMin atomicMax atomicAnd atomicOr atomicXor atomicExchange atomicCompSwap bitfieldExtract bitfieldInsert bitfieldReverse bitCount findLSB findMSB frexp uaddCarry usubBorrow umulExtended imulExtended atomicCounter atomicCounterDecrement atomicCounterIncrement mix textureOffset texelFetchOffset textureProjOffset textureLodOffset textureProjLod textureProjLodOffset textureGradOffset textureProjGrad textureProjGradOffset asinh acosh atanh trunc roundEven modf isnan isinf floatBitsToInt floatBitsToUint intBitsToFloat uintBitsToFloat packSnorm2x16 unpackSnorm2x16 packUnorm2x16 unpackUnorm2x16 packHalf2x16 unpackHalf2x16 matrixCompMult outerProduct transpose determinant inverse lessThan lessThanEqual greaterThan greaterThanEqual notEqual texture2D texture2DProj texture2DLod texture2DProjLod textureCube textureCubeLod radians degrees asin acos atan pow log exp2 log2 inversesqrt floor ceil fract mod smoothstep distance dot cross normalize faceforward reflect refract Texture operation argument #%d must be a constant expression Texture operation argument #%d must be between 0 and %d Integer literal '%s' is too long Error while parsing integer literal '%s' Error while parsing floating point literal '%s' 88 88888888888888888888888888888888888886788:;88 :;67 Loop-comparer %temp %retval gl_mali_PrimitiveID gl_mali_TessCoord gl_mali_IndexBuffer gl_mali_IndexBufferInGeometry __start_geometry_output __global_to_attribute __start_geometry_count ?inlined_frag_stencil ?inlined_frag_depth gl_TessCoord gl_SampleMask gl_FragData gl_FragColor __startSPMRT __startMRT __startN __start7 __start6 __start5 __start4 __start3 __start2 __start1 __start0 Too many children for a node. Maximum allowed number is %u isamplerCubeArray usamplerCubeArray imageCubeArray iimageCubeArray uimageCubeArray imageBuffer uimageBuffer iimageBuffer samplerBuffer isamplerBuffer usamplerBuffer __samplerExternal2DY2YEXT isampler1D usampler1D isampler1DArray usampler1DArray void unresolved array yuvCscStandardEXT sampler1DShadow sampler1DArray sampler2DArray samplerCubeArray sampler2DMSArray sampler1DArrayShadow sampler2DArrayShadow samplerCubeArrayShadow sampler2DMS samplerCubeShadow isampler3D isamplerCube isampler2DArray usampler3D usamplerCube usampler2DArray interface_block isampler2DMS usampler2DMS image2D iimage2D uimage2D image2DArray iimage2DArray uimage2DArray image3D iimage3D uimage3D imageCube iimageCube uimageCube isampler2DMSArray usampler2DMSArray sampler1D sampler3D samplerCube sampler2DShadow samplerExternalOES Missing main() function for shader main() has been overloaded Signature mismatch for main() gl_FragColor and gl_FragData assigned in the same fragment shader gl_FragDepth is written to while using yuv output format gl_FragDepth used in the same shader as early_fragment_tests layout qualifier gl_LastFragDepthARM gl_LastFragStencilARM gl_LastFragDepthARM used in the same shader as early_fragment_tests layout qualifier gl_LastFragStencilARM used in the same shader as early_fragment_tests layout qualifier Vertex shader where gl_Position isn't written EXT_tessellation_shader, OES_tessellation_shader or "320 es" language version required for tessellation shaders EXT_geometry_shader, OES_geometry_shader or "320 es" language version required for geometry shaders Shader contains static recursion gl_LastFragColorARM gl_in gl_out '#pragma %s (on/off)' is specified incorrectly gl_DepthRangeParameters gl_DepthRange gl_NumSamples gl_MaxShaderPixelLocalStorageFastSizeEXT gl_MaxShaderPixelLocalStorageSizeEXT gl_MaxSamples gl_MaxFragmentImageUniforms gl_MaxFragmentAtomicCounters gl_MaxFragmentAtomicCounterBuffers gl_MaxCombinedShaderOutputResources gl_BoundingBoxOES gl_BoundingBoxEXT gl_PrimitiveIDIn Behavior of GL_OVR_multiview ignored, GL_OVR_multiview2 will be used with the specified behavior. Both GL_EXT_primitive_bounding_box and GL_OES_primitive_bounding_box are enabled, writing to both gl_BoundingBoxEXT and gl_BoundingBoxOES is not supported GL_OES_EGL_image_external is deprecated in ESSL 3 and later versions. Use GL_OES_EGL_image_external_essl3 instead Behavior of GL_OES_EGL_image_external ignored, GL_OES_EGL_image_external_essl3 will be used with the specified behavior. disable_vertex_shader_output_rewrites disable_alpha_to_coverage STDGL '#pragma STDGL invariant (all)' declaration can't be used in fragment shaders debug gl_ViewID_OVR gl_MaxVertexAttribs gl_MaxVertexUniformVectors gl_MaxVaryingVectors gl_MaxVertexTextureImageUnits gl_MaxCombinedTextureImageUnits gl_MaxTextureImageUnits gl_MaxFragmentUniformVectors gl_MaxDrawBuffers far gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryImageUniforms gl_MaxGeometryTextureImageUnits gl_MaxGeometryOutputVertices gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryAtomicCounters gl_MaxGeometryAtomicCounterBuffers gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlUniformComponents gl_MaxTessControlTotalOutputComponents gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessPatchComponents gl_MaxPatchVertices gl_MaxTessGenLevel gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxComputeAtomicCounterBuffers gl_MaxComputeAtomicCounters gl_MaxComputeImageUniforms gl_MaxComputeTextureImageUnits gl_MaxComputeUniformComponents gl_MaxComputeWorkGroupCount gl_MaxComputeWorkGroupSize gl_MaxImageUnits gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexImageUniforms gl_MaxFragmentInputVectors gl_MaxProgramTexelOffset gl_MaxVertexOutputVectors gl_MinProgramTexelOffset gl_MaxTessControlImageUniforms gl_MaxTessEvaluationImageUniforms gl_MaxTessControlAtomicCounters gl_MaxTessEvaluationAtomicCounters gl_MaxTessControlAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounterBuffers gl_SampleMaskIn gl_SamplePosition __pixel_localEXT __pixel_local_inEXT __pixel_local_outEXT precise patch sample GL_OES_geometry_shader' or 'GL_EXT_geometry_shader GL_OES_gpu_shader5' or 'GL_EXT_gpu_shader5 GL_OES_shader_io_blocks' or 'GL_EXT_shader_io_blocks GL_OES_tessellation_shader' or 'GL_EXT_tessellation_shader GL_OES_texture_buffer' or 'GL_EXT_texture_buffer GL_OES_texture_cube_map_array' or 'GL_EXT_texture_cube_map_array debug_preprocessing_directives GL_ANDROID_extension_pack_es31a GL_ARM_all_samples_equal GL_ARM_attr_jump GL_ARM_color_space_conversion GL_ARM_explicit_attribute_access GL_ARM_explicit_memory_access GL_ARM_explicit_opcodes GL_ARM_framebuffer_write GL_ARM_increased_rt GL_ARM_integer_fragment_position GL_ARM_internal_r8_layout GL_ARM_packed_arithmetic GL_ARM_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_ARM_shader_framebuffer_fetch_raw_explicit GL_ARM_shader_framebuffer_fetch_v2 GL_EXT_primitive_bounding_box GL_EXT_shader_io_blocks GL_EXT_shader_non_constant_global_initializers GL_EXT_shader_pixel_local_storage GL_EXT_shadow_samplers GL_EXT_texture_buffer GL_EXT_texture_cube_map_array GL_EXT_YUV_target GL_KHR_blend_equation_advanced GL_OES_geometry_shader GL_OES_gpu_shader5 GL_OES_primitive_bounding_box GL_OES_sample_variables GL_OES_shader_image_atomic GL_OES_shader_io_blocks GL_OES_shader_multisample_interpolation GL_OES_standard_derivatives GL_OES_tessellation_shader GL_OES_texture_3D GL_OES_texture_buffer GL_OES_texture_cube_map_array GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_texture_storage_multisample_2d_array GL_OVR_multiview GL_OVR_multiview2 unknown version Identifier name '%s' is too long (%d characters, allowed %d in %s) Redeclaration of %s layout qualifier with contradictory value in the same layout declaration 'max_vertices' Redeclaration of %s layout qualifier with contradictory value between layout declarations %s label not within a switch statement no statements are allowed before first case statement Expected token '%s', found '%s' multiple default labels in one switch %s label can't be nested inside control flow 'vertices' 'invocations' output primitive mode input primitive mode vertex spacing primitive mode gl_ No matching '%s' Keyword '%s' is reserved Extension '%s' used, qualifier '%s' referred Typename expected, found '%s' no statement between a label and the end of the switch statement '%s' qualifier is not allowed in language version %s %s Expected token '%s', or '%s' found '%s' Value for '%s' qualifier should be smaller than %u. Value for '%s' qualifier should be in the range 1 to %u. Value for '%s' qualifier cannot be 0. triangles points early_fragment_tests Expected layout qualifier identifier, got '%s' $$ No matching function for call to '%s' barrier() call from a function that is not 'main' barrier() call after a return statement barrier() used as operand in a selection operation Undeclared variable '%s' Type '%s' referred to as a variable Extension '%s' used, variable '%s' referred barrier() call within control flow Expected literal or '(', got '%s' Symbol '%s' can't be referenced as a variable Expected literal or '(', got ')' Unexpected token '%s' is not a function Expected token ';' Qualifiers specified in incorrect order or the qualifier is not allowed for the specified type Interpolation qualifier specified twice Storage qualifier specified twice invariant qualifier specified twice All uses of invariant must be at global scope precise qualifier specified twice Variable qualifier specified twice Embedded interface block declaration is not allowed Multiple interface block qualifiers specified Interface blocks cannot have 'early_fragment_tests' qualifier Interface blocks cannot have blend qualifiers Interface blocks cannot have primitive mode qualifiers Interface blocks cannot have vertex spacing qualifiers Interface blocks cannot have ordering qualifiers Interface blocks cannot have 'point_mode' qualifier Interface blocks cannot have 'num_views' qualifier Interface blocks cannot have local size qualifier Interface blocks cannot have 'offset' qualifier Interface blocks cannot have 'yuv' qualifier Format qualifiers are illegal for this type of interface block Uniform blocks cannot have 'location' qualifier Storage blocks cannot have 'location' qualifier Image format layout qualifiers are illegal for local storage blocks Local storage blocks cannot have 'location' qualifier Invalid qualifier '%s' for interface block Uniform/buffer storage qualifiers are not allowed for input/output blocks Extension '%s' used, '%s' interface block declared 'const' qualifier must be specified first Precision specified twice Storage qualifier not allowed in parameter declaration Qualifier 'centroid' not allowed in parameter declaration Qualifier 'invariant' not allowed in parameter declaration Qualifier 'patch' not allowed in parameter declaration Qualifier 'sample' not allowed in parameter declaration Multiple variable qualifiers specified Storage qualifier not allowed in GLSL ES version 100 Parameter qualifier only allowed in parameter declarations Illegal qualifier for an interface block member Attribute declared inside a function Input variable declared inside a function Uniform variable declared inside a function Buffer variable declared inside a function Varying declared inside a function Output variable declared inside a function Buffer variable declared outside buffer storage block 'early_fragment_tests' layout qualifier is only allowed for standalone interface qualifier 'in' Local size layout qualifier is only allowed in compute shader for standalone interface qualifier 'in' Primitive mode layout qualifiers are only allowed for standalone interface qualifier 'in' Vertex spacing layout qualifiers are only allowed for standalone interface qualifier 'in' Ordering layout qualifiers are only allowed for standalone interface qualifier 'in' 'point_mode' layout qualifier is only allowed for standalone interface qualifier 'in' Blend support layout qualifier is only allowed for standalone interface qualifier 'out' 'num_views' layout qualifier is only allowed for standalone interface qualifier 'in' The 'yuv' layout qualifier can only be used in fragment shaders Only 'out' variables can be qualified with the 'yuv' layout 'out' variables qualified with 'yuv' may not have multiple layout qualifiers Unexpected location qualifier for storage buffer Unexpected qualifier on input/output variable Unexpected layout qualifier on struct member Unexpected layout qualifier on non-interface variable Unexpected storage qualifier for struct member 'centroid' qualifier can be used only with 'in' and 'out' qualifiers 'patch' qualifier can be used only with 'in' and 'out' qualifiers 'sample' qualifier can be used only with 'in' and 'out' qualifiers Unexpected layout qualifier for an interface block member Unexpected 'location' qualifier for an interface block member Format qualifiers are not allowed for uniform block members Format qualifiers are not allowed for storage block members Format qualifiers are not allowed for io block members Structure definition is not allowed inside an interface block Embedded structure definition is not allowed Illegal identifier name '%s' Struct '%s' has no members Symbol '%s' redeclared Symbol '%s' hides declaration in the outer scope Duplicate image format qualifier Image format qualifiers can't be used for non-image types Invalid layout qualifier for image type Interface block layout qualifiers can't be used for non-block declarations Boolean variable can't have a precision qualifier 'atomic_uint' type requires 'highp' precision qualifier. Inside structures, 'binding' qualifier can be used only for samplers and image variables. Image must specify a format layout qualifier. Invalid format qualifier used with floating-point image type Invalid format qualifier used with integer image type Invalid format qualifier used with unsigned integer image type Image has to be qualified as 'readonly', 'writeonly' or both. 'offset' layout qualifier is only allowed for 'atomic_uint' type Duplicate interface block member '%s' Duplicate struct member '%s' Symbol '%s' redeclared outside of the global scope Symbol '%s' redeclared more than once Error declaring interface block '%s', interface blocks can be declared only at global scope Interface block '%s' cannot be a named block interface block '%s' must be redeclared using its instance name Illegal interface block type for redeclaration of '%s' Member not part of the original block '%s' Symbol '%s' is already referred to and cannot be redeclared Member of the original block '%s' declared with different type Member of the original block '%s' declared with different qualifiers interface block '%s' redeclared with invalid type Interface block '%s' has no members Expected precision qualifier, got '%s' Expected type for precision qualifier, got '%s' Unexpected layout qualifier(s) found for uniform atomic_uint layout declaration binding layout qualifier has to be specifed for uniform atomic_uint layout declaration Binding point in layout declaration (binding = %lld) exceeds the number of atomic counter bindings (maximum allowed is %d) Unexpected layout qualifier(s) found for uniform block layout declaration Unexpected layout qualifiers(s) found for local storage block layout declaration Unexpected layout qualifier(s) found for 'in' interface Work-group size qualifiers are allowed only in compute shaders 'early_fragment_tests' layout qualifier is allowed only in fragment shaders Primitive mode layout qualifiers are allowed only in tessellation evaluation shaders Vertex spacing layout qualifiers are allowed only in tessellation evaluation shaders Ordering layout qualifiers are allowed only in tessellation evaluation shaders 'point_mode' layout qualifier is allowed only in tessellation evaluation shaders Primitive mode layout qualifiers are allowed only in geometry shaders 'invocations' layout qualifiers are allowed only in geometry shaders 'num_views' layout qualifiers are allowed only in vertex shaders %s qualifier was not set in the first declaraton or had a different value local_size_x local_size_y local_size_z Unexpected layout qualifier(s) found for 'out' interface Blend support layout qualifier is allowed only in fragment shaders 'vertices' layout qualifier is allowed only in tessellation control shaders 'max_vertices' layout qualifier is allowed only in geometry shaders Value of 'max_vertices' layout qualifier not allowed to exceed gl_MaxGeometryOutputVertices Output primitive mode layout qualifiers are allowed only in geometry shaders Interface qualifier expected, got '%s' std430 layout qualifier can only be used in storage buffer layout declaration Non-variable '%s' declared invariant Variables of this kind cannot be declared invariant 'gl_FrontFacing' cannot be declared invariant invariant qualifier must be specified before any use of variable '%s' Keyword 'precise' is reserved Non-variable '%s' declared precise Struct '%s' contains unsized array '%s' Expected identifier, found '%s' Only output values can be declared invariant Function '%s' declared or defined inside function $$%u Symbol '%s' redeclared as a function Name '%s' used more than once as a parameter No matching %s found continue used outside of loop body break statement not within loop or switch else statement not preceded by if Missing valid declaration of the output patch vertex count ('vertices' layout qualifier) No input primitive mode specified in geometry shader No output primitive mode specified in geometry shader Missing valid declaration of the output max vertices ('max_vertices' layout qualifier) blend_support_multiply blend_support_screen blend_support_overlay blend_support_darken blend_support_lighten blend_support_colordodge blend_support_colorburn blend_support_hardlight blend_support_softlight blend_support_difference blend_support_exclusion blend_support_hsl_hue blend_support_hsl_saturation blend_support_hsl_color blend_support_hsl_luminosity blend_support_all_equations rgba32f rgba16f r32f rgba8_snorm rgba32i rgba16i rgba8i r32i rgba32ui rgba16ui rgba8ui r32ui shared packed std140 column_major r11f_g11f_b10f rg16f rgb10_a2 rg16 rg16i rgb10_a2ui rg16ui std430 point_mode quads isolines equal_spacing fractional_even_spacing fractional_odd_spacing cw ccw lines_adjacency triangles_adjacency line_strip triangle_strip location binding invocations max_vertices num_views <with no name> no default precision defined for %s '%s' no default precision defined for expression Too many shared variables declared Macro name '%s' is too long (%d characters, allowed %d) GL_ Macro name '%s' reserved Illegal use of 'defined' operator Identifier required after 'defined' operator Unexpected token '%s' in argument list Token '%s' repeated in argument list Unexpected token '%s' at the end of argument list %empty% Macro '%s' redefined Too many arguments for '%s' macro invocation Unexpected token '%s' at the end of file found Unterminated argument list Unexpected end of macro invocation Error parsing constant expression, unknown identifier '%s' No matching right parenthesis found Right operand of shift has negative value No matching left parenthesis found Unexpected text found after #endif directive #endif directive found outside if-section Unexpected text found after #else directive #else directive found outside if-section Illegal use of else Error parsing constant expression #elif directive found outside if-section Illegal use of elif Invalid identifier '%s' Cannot undefine a predefined macro '%s' Unexpected text found after #undef directive Unexpected text found after #%s directive #%s directive found outside if-section Illegal use of %s #error:%s Extension directive must occur before any non-preprocessor tokens Expected extension name after #extension directive, found '%s' Invalid extension '%s' Expected ':' in #extension directive, found '%s' require Required extensions need to be listed explicitly, '%s' is not allowed Extension '%s' not supported Enabled extensions need to be listed explicitly, '%s' is not allowed Unknown extension behavior '%s', expected one of: require, enable, warn, disable Unexpected text found after #extension directive #version must be the first directive/statement in a program Missing version after #version directive Language version '%s' unknown, this compiler only supports up to version '%s' Language version '%s' unknown, this compiler only supports up to version '%s %s' Language version '%s' not supported, for this hardware the compiler only supports up to version '%s' #version must be on the first line in a program and only whitespace are allowed in the declaration Unexpected text found after #version directive Wrong #line parameters Unknown preprocessing directive '%s' Unterminated #if/#ifdef/#ifndef __LINE__ __FILE__ __VERSION__ __ARM_MALI__ __ARM_MALI_HW_REV_MAJOR__ __ARM_MALI_HW_REV_MINOR__ GL_FRAGMENT_PRECISION_HIGH undef ifdef ifndef elif else endif end of file float-point literal signed integer literal unsigned integer literal __NEWL \ ^^ break bvec2 bvec3 bvec4 continue discard highp inout ivec3 lowp mat2 mat3 mat4 mediump varying while goto noinline public extern external interface flat unsigned superp input hvec2 hvec3 hvec4 dvec2 dvec3 dvec4 fvec2 fvec3 fvec4 sampler2DRect sampler3DRect sampler2DRectShadow sizeof using centroid smooth mat2x2 mat2x3 mat2x4 mat3x2 mat3x3 mat3x4 mat4x2 mat4x3 mat4x4 uvec2 uvec3 resource noperspective subroutine common filter image1D iimage1D uimage1D image1DArray iimage1DArray uimage1DArray image1DShadow image2DShadow image1DArrayShadow image2DArrayShadow isampler2DRect usampler2DRect samplerOESExternal coherent restrict volatile readonly writeonly undef_const c style comment _UNKNOWN <error> Unterminated comment Invalid suffix on integer constant Unknown character '%c'(%d) vec%u uvec%u ivec%u bvec%u mat%u mat%ux%u struct unnamed struct %s[%u] U V & " ! ' ( N ) * + O , = > V W X S U T " N O P Q R Y Integer fragment input variable '%s' inside interface block '%s' must be qualified with 'flat' qualifier. Sampler type '%s' is used inside interface block '%s' Type 'atomic_uint' is used inside interface block '%s' Image type '%s' is used inside interface block '%s' Incorrect qualifier is used on member inside interface block '%s' (only '%s' allowed) The type of the local storage block member '%s.%s' doesn't match the type of its format '%s' (type: '%s'). The type of the local storage block member '%s' doesn't match the type of its format '%s' (type: '%s'). Local storage block '%s' uses %d bytes of storage, maximum allowed size is %d bytes. User declared in/out variables in compute shaders are only allowed together with an explicit location User declared in/out variables in compute shaders only allowed with functions 'loadExplicitARM' and 'storeExplicitARM' Interpolation qualifiers can be used only for fragment inputs or vertex outputs, found for '%s' Interpolation qualifiers can be used only for fragment inputs or vertex outputs, found for member '%s' of '%s' It is not allowed to use more than one interpolation qualifier (struct variable '%s', member '%s') Integer member '%s' of struct variable '%s' must be qualified with 'flat' qualifier User-defined output variables are not allowed in compute shaders, found '%s' Per-vertex output '%s' should be declared as an array. Output blocks are forbidden in fragment shaders, found '%s' Output variable '%s' with initializer Illegal type for vertex output variable '%s' Illegal type for tessellation output variable '%s' Illegal type for geometry output variable '%s' Illegal type for fragment output variable '%s' 'centroid out' qualifier can't be used in fragment shaders (variable '%s'). 'patch out' only allowed in tessellation control shaders (variable '%s'). 'sample out' qualifier can't be used in fragment shaders (variable '%s'). Interpolation qualifiers can't be used for fragment shader output variable '%s'. Qualifier 'location' is not allowed on vertex output variable '%s'. Remainder operands must be of signed/unsigned integer types. Remainder operands signs must match. Remainder operands cannot be vectors of differing size. Type mismatch in arithmetic operation between '%s' and '%s' Arithmetic operations not allowed on this type Type mismatch in multiplication between '%s' and '%s' Bitwise operations operands must be of signed/unsigned integer types. Bitwise operations operands signs must match. Bitwise operation operands cannot be vectors of different sizes. Shift operands must be of signed/unsigned integer types. The first operand of the shift operation is scalar, the second must be scalar as well. Shift operation operands cannot be vectors of different sizes. Equality operator on SSBO arrays is allowed only between two statically-sized arrays of same type and size. Cannot compare '%s' with '%s' Cannot compare arrays Cannot compare samplers Cannot compare atomic_uint variables Cannot compare yuvCscStandardEXT variables Cannot compare images Inequality operator on SSBO arrays is allowed only between two statically-sized arrays of same type and size. Cannot compare non-scalar types Cannot compare vectors or matrices Operands to &&, || and ^^ must have boolean type. Only integer expression allowed as array subscripts Negative array subscript Array subscript too big Outputs declared as arrays may only be indexed by a constant integral expression. Arrays of shader storage blocks may only be indexed by a constant integral expression. Arrays of uniform blocks may only be indexed by a constant integral expression. Extension '%s' used, dynamic indexing of uniform block Arrays of samplers may only be indexed by a constant integral expression. Extension '%s' used, dynamic indexing of array of samplers Negative matrix subscript Matrix subscript too big Negative vector subscript Vector subscript too big Only arrays, vectors and matrices can be indexed. Cannot modify a readonly variable L-value swizzle contains duplicate components. Per-vertex output used as L-value should be indexed by gl_InvocationID. L-value is constant. Cannot modify a uniform variable Cannot modify an input variable Cannot modify a local input variable Operand is not an lvalue. 'in' or 'out' 'in' Function is declared void but return statement has an argument. Function is declared with a return value but return statement has no argument. Type mismatch, cannot convert from '%s' to '%s' 'discard' can only be used in fragment shaders. if() condition must be of boolean type. while() condition must be of boolean type. for() condition must be of boolean type. switch() condition must be a scalar integer. case label must be a constant integer expression. case label must be a scalar integer. Switch condition and case label must be of same type, cannot convert from '%s' to '%s' Extension '%s' used, default precision set Extension '%s' used, 'num_views' layout declaration set Extension '%s' used, layout declaration set 'invocations' qualifier value (%u) exceeds the maximum supported size (%u). '%s' qualifier value (%lld) exceeds the maximum supported size (%lld). gl_WorkGroupSize .length() operator used with arguments .length() operator can be used only on an array object. .length() operator cannot be used before a 'vertices' layout declaration .length() operator cannot be used before input primitive mode layout declaration Request for member "%s" of an array Cannot use field selector to access member of unnamed block "%s" Cannot read from a writeonly variable Struct "%s" has no member named "%s". Vector swizzle "%s" is bigger than 4. Swizzle field selector '%c' unknown Swizzle field selector out of range Vector swizzle "%s" mixes components from different sets Member reference or swizzle attempted on non-structure and non-vector Operand to ! must have boolean type. The one's complement operator operands must be of signed/unsigned integer types. Arithmetic unary operations only work with integer and floating-point values. Cannot assign to arrays or structs with arrays Cannot modify sampler variable Cannot modify image variable Cannot assign to a storage block variable Assignment of SSBO arrays is allowed only between two statically-sized arrays of same type and size. ?: parameter must be of boolean type. ?: parameter must be of scalar type. 2nd and 3rd parameters of ?: must have the same type. Sampler can't be an l-value. Type atomic_uint can't be an l-value. Type yuvCscStandardEXT can't be an l-value. Image can't be an l-value. Variable '%s' is used before fixed local workgroup size is declared. Extension '%s' used, variable '%s' with type '%s' referred Function call discards 'readonly' access qualifier. Function call discards 'writeonly' access qualifier. In function '%s', parameter %d has both 'const' and '%s' qualifiers. In function '%s' parameter 1 must be either a buffer or a shared variable. Parameter 1 in function '%s' must be a variable or array element qualified with %s. Both parameters of function '%s' must be constant. Render target mask parameter of function '%s' must be constant. Extension '%s' used, function call to '%s' No matching overload for function '%s' found Too few arguments for constructor Too many elements in the array initializer Cannot construct a matrix from more than one matrix Cannot use arguments of type '%s' for built-in constructors Array constructor argument (#%d) type doesn't match the element type of the array (%s). Argument unused in constructor Type mismatch, cannot convert argument #%u from '%s' to '%s' Too many arguments for struct constructor Too few arguments for struct constructor Duplicate case label previously used here Arguments in wrong order for structure constructor Function '%s' has non-void return type but no return statement. Arrays of arrays are prohibited. Array size must be a constant integral expression. Array size must be greater than zero. Array size must be defined. Binding point for variable '%s' (binding = %lld) exceeds the number of uniform buffer bindings (maximum allowed is %d). Binding point for variable '%s' (binding = %lld) exceeds the number of storage buffer bindings (maximum allowed is %d). Binding point for variable '%s' (binding = %lld) exceeds the number of texture image units (maximum allowed is %d). Binding point for variable '%s' (binding = %lld) exceeds the number of image units (maximum allowed is %d). Binding point for variable '%s' (binding = %lld) exceeds the number of atomic counter bindings (maximum allowed is %d). Local storage blocks can be declared only in fragment shaders (block '%s'). Memory access qualifiers are allowed only for image variables and buffer variables. Cannot declare a variable of type void Cannot declare a variable of type atomic_uint inside structure const variable '%s' does not have an initializer Initializer for const variable '%s' must be a constant expression. Per-vertex input '%s' should be declared as an array. User-defined input variables are not allowed in compute shaders, found '%s' Input blocks are forbidden in vertex shaders, found '%s' Input variable '%s' with initializer Illegal type for input variable '%s' 'centroid in' qualifier can't be used in vertex shaders (variable %s) 'patch in' only allowed in tessellation evaluation shaders (variable %s) . 'sample in' qualifier can't be used in vertex shaders (variable %s) Interpolation qualifiers can't be used for vertex shader input variable '%s' Integer fragment input variable '%s' must be qualified with 'flat' qualifier. Qualifier 'location' is not allowed on fragment input variable '%s'. Attribute variable '%s' with initializer Illegal type for attribute variable '%s' Attribute qualifier only allowed in vertex shaders Varying variable '%s' with initializer Illegal type for varying variable '%s' Uniform or storage buffer variable '%s' with initializer 'binding' qualifier can be used only for interface blocks, samplers, atomic_uint and image variables, found for '%s' 'binding' qualifier has to be specified for atomic_uint variable ('%s') 'offset' qualifier (%u) has to be a multiple of 4, found in variable '%s' 'offset' qualifier (%u) has to be unique for a given binding (%lld), found in variable '%s' 'offset' qualifier has to be less than the maximum allowed buffer size (%d) for a given binding (%lld), found in variable '%s' 'location' qualifier is not allowed for atomic counters. Uniform or storage buffer variable '%s' of type '%s' Shared variables can be used only in compute shaders ('%s'). Shared variable %s can't have initializer. Sampler variable '%s' declared without uniform qualifier Image variable '%s' declared without uniform qualifier atomic_uint variable '%s' declared without uniform qualifier Built-in variable '%s' can't have initializer Global variable initializer must be a constant expression Extension '%s' used, non-constant global variable initializer Extension '%s' used, unnamed parameter has type '%s' Extension '%s' used, parameter '%s' has type '%s' Function returns an array. Input qualifier used on return type Attribute qualifier used on return type Uniform qualifier used on return type Buffer qualifier used on return type Varying qualifier used on return type Output qualifier used on return type Const qualifier used on return type 'shared' qualifier used on return type Memory access qualifier used on return type Interpolation qualifier used on return type 'precise' qualifier used on return type Samplers cannot have out or inout parameter qualifier. Type atomic_uint cannot have out or inout parameter qualifier. Images cannot have out or inout parameter qualifier. Attribute qualifier used on function parameter Varying qualifier used on function parameter Uniform qualifier used on function parameter Buffer qualifier used on function parameter Overloading built-in function '%s' not allowed Parameter qualifiers of function definition do not match parameter qualifiers of function declaration for function '%s'. Function '%s' redeclared with different parameter qualifier(s) Function '%s' redeclared with different return type Function '%s' redefined Function '%s' redeclared Compute shaders are supported starting from language version '%s %s'. Extension '%s' used, unsized array declared Explicitly declared array size for '%s' should be equal to %d. 'vertices' layout declaration %d has to match explicitly declared array size for '%s'. Function '%s' not defined It is not allowed to declare array of arrays of interface blocks. std430 layout is allowed for storage blocks only. Too many used members in the uniform block '%s' It is not allowed to declare more than one local input block. It is not allowed to declare more than one local output block. Symbol '%s' redeclared with different precision Function '%s' redeclared with a different precision qualifier on the return type Too many vertex input variables Too many attributes Too many fragment input variables Too many vertex output variables Too many varyings Too many uniforms mrt_index $%d gl_Layer gles.geom.out_primitive_mode gles.geom.layered_rendering gles.geom.invocations gles.geom.in_primitive_mode gles.geom.max_vertices gles.per_sample_shading gles.tess.n_vertices gles.tess.primitive_mode gles.tess.vertex_spacing gles.tess.ordering gles.tess.point_mode gles.vert.multiview.only_mark_gl_Position coverage_modified buffer_usage.color_read buffer_usage.local_storage_read buffer_usage.local_storage_write gles.early_fragment_tests gles.yuv_output gles.blend_advanced.multiply gles.blend_advanced.screen gles.blend_advanced.overlay gles.blend_advanced.darken gles.blend_advanced.lighten gles.blend_advanced.colordodge gles.blend_advanced.colorburn gles.blend_advanced.hardlight gles.blend_advanced.softlight gles.blend_advanced.difference gles.blend_advanced.exclusion gles.blend_advanced.hsl_hue gles.blend_advanced.hsl_saturation gles.blend_advanced.hsl_color gles.blend_advanced.hsl_luminosity gles.local_storage_size VERSION_SPIRV gles.lang_desc VERSION_100 VERSION_300_ES VERSION_310_ES VERSION_320_ES entry_point_output_syms rgb2yuv yuv2rgb $$%s_%d gles.read_helper_invocation HH HH H H H HHH H HH H HH HH HHHH H H H H H const_swz_%d %matrix_spill_temp %out_param_tmp %ternary_tmp %and_or_tmp H Gp lqtp XU\ONPQfbca`edkiw M # keep_symbol disallow_rmu gles.per_patch gles.is_invariant gles.binding gles.is_named_name cnst_alloca_%d alloca2const conditional_select constant_fold_blocks control_dep_calc cse_nodes disable_fbb find_best_block geometry_info.nof_primitives_generated geometry_info.nof_layers geometry_info.nof_vertices geometry_info.index_counts geometry_info.is_present geometry_static_vertex_count _nolod motion_blur_opt gl_mali_frag_pilot_InstanceID gl_mali_rmu_data_area_ptr_geom gl_mali_rmu_data_area_ptr_tesc gl_mali_rmu_data_area_ptr_tese __aux_pilot__ gles.is_pilot gl_mali_pilot_rmu_0x %s%llx gles.pilot gles.is_instanced_pilot pilot_shader gles_instanced_pilot_shader gles_tex_fetch_opt inline_functions legalize_cfg legalize_swizzle loop_unroll ls_merge mem2reg no_index_buffer_variant optimize_basic_block_joins optimize_basic_block_sequences optimize_memcpy n H H H H o H H s n H H H H o H H s optimize_precision vert frag blend geom tesc tese comp remove_dead_code remove_undefs rewrite_sampler_transform_variant rewrite_tex_ops simplify_nodes split_blocks tls2alloca tls_load_store_split gles.is_view_dependent transform_for_multiview transform_vector_combine split_vector_combine va_args varying_precision workgroup2alloca @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ 88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888pp ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((2 ##############################----------------------------------------------------------------------------------------------------------------7 X 8 X X X | { { | | ((((((((((((((((2 ################----------------7 !!!!!!!!!!!!!!"11111111111111111111111111111111111111111111111111111112BCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCJSbccccccccccccccdssssssssssssssssssssssssssssssssssssssssssssssssssssssst X X X X X ((((((((((((((((2 ################----------------7 "111111111111111111111111111111111111111111111111111111111111112BCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCNbdsssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssst C C C C C | { { | | ? ? > > 8 8 7 7 ? ? ? ? 8 8 7 7 ? ? @ @ ? ? > > ? ? @ @ ? ? ? ? ? ? @ @ 8 7 ? @ ? > ? @ ? ? ? @ | { { | | | | { { | | | { { | | q t P} 2E 2 ` HI 4A ! Y Y h Py 8Q ~ x p j ( d ` Zd D ( ! | r ` l d ^ X T X N J x H 0 D @ ] Ak )=& 9 t b P @q 2 $ Y 1 E ? ? /K? ( * , . 0 2 4 6 8 : < > @ B D F H < ?= = p = = => z> >8c >} $? I?_ {? ? ?e ?C ? $ ? = < t { n % 5 ` . xV } < ? b ? > | > X > \ > z> @E> h > = ;= ` h} 1 Q h[< 5 a p6 x$j {7 7007 7 7` v6 7 7 7 7 4x2 7 ; F K p j t @x 0 / J xd } 8 ~ < > > > H > |> T> -> > = = = & 0 R % :5 jC X 5 J%7 x 7 87 " 7 fc6 < 7 7 7 . 7 Z 7 .7 ? ? ? ? 7 ?2 ? ??X ? ? ?*g ? $ ? D ? ? ?}% ? 8 `8 8 8 1 8 8 6 4 7 7 8 7 7 7 7 >8 @C 7 @W 6 6 G6 6 R 4? ? 5? = G> >} > Z >=: ?Yg"? 8 E? T? a?~ l? t? {?l ~? 5? ? 5? 6 = G>1 > > Z > 9 ? g"? E?1 T? a?^ l? t? {?m ~? / F _ 0_ m0_ m0_ m0 m ? ? ? ?> > > > l Rl Rl ' Rl ' Rp ' p ' p p U\ U\ '\ >\ 2 [ '\ u 6 [ \ " U\ x ?un k$ [ Y . w m k [ ! B [ 2v h SC[ K t f w Z . < s Oc L Z |( 1r ` 7Z A3Q p ] Y F > o LH[ Y X7 k ]n X tX2Y 4 [ m n V X k S >M X :%3 8 j D P 2X S g i ~N % W Hk okI [h L | W 8 Eu 5g I 8W wg f 'G j V c"Y ~ d & D 5 V P c geB ODV k - # b B @ u U ;"N a = G U w H y ` _s; !UU [pk _ s/9 j U / ] ^ 6 < T ` A ] / 4 kT y 6# # \ 2 U+ T A"m8M [ ]0 S J e4w Z q7. S R Y , :S + x X f ) q R f E W ' R `~ V % C [R # F V i # R ~ p !U S ! U Q D @T Q ; cS ):Q x R Y P Q J9 P J r; P c f eP 8 A c P 4! n5 P . =O @ $ O %;m qN e Q O z M QO |Sv m L B O r + L V N \ {R ]K & S N R y J b DN I N #H (I { M @ qH 0 b M 2 & G 4~ | >M m < G m L G c W U\ TU } nn L i x+ ~ K " z J fRg ^e I %<M 2 < H D t z H o q v Kn 552G * R W i Y :YF D ): sE #[ E ( ? 2 h D PA "e 8 C , T &C u D yeB i P59 ~ ? A g e B | @ ? o 5;@ : w f ? D @ c Z > 1 P o U 3> '' A< > - y = z?G - ( < j|2 R d v {L< g! 1 [i ; j ~ # ] ; Kx &Q 2 : N E l! 9 4 & W: #_9 ~ \m/ 8 G j $ PbG8 J vj z Z w 7 T N K Q :7 5 E - 6 sp ( K H : 66 K ~ 5 t K <5 k j ] 2 4 P )a rdK4 > W L 3 !O t b3 l &A F * 2 2U t N> , 2 n~ Q6 J! 2 U > . J e 1 3 X ' 2 v>1 &m? H F 0 2 Sg F o0 l ? J c 0 @ . ) / c + / =U n A .c 1 / " < Y ~ b r / o ~ p bb 4 / sjb _ a 3A / :< u a o v/ U 4a t^/ # H y @ ` 4F/ P q ` hn` ./ Q G ' ` / 0v . | _ . E ~ g. fI_ h' . U E ^ a . 6 M] ^ . t )^ . i c ] . 3 w N l] 7p. D ] X. *L n, A. [ & @ ;. " Q 6. KZ s g?$ O d?$ S b?$ - _?$ _ [?$ W e R?$ S F H?$ - ' ;?$ _ -?$ w ?$ 3 S >$ - >$ _ [ @ r>$ [ P =$ S [ _ <=$ 0 - [ o s<$ O _ k ;$ k > \9$ /S k ~ 6$ - k 3$ { _ /$ d 1'$ VKQ E $ k - & $ _ h $ # I # YW - # ) _ Z ]@ jG# / [ Q " s+ )[ b " - R- U[ s ;H! m_ n ` 5 p :V 3 r r , u Fh ID!^ e zf J% / H b@) [ %+ (< [ X 4 6 C k* 3 * H D . $ p B 6g 8 5 v a , .o E m d T W S & =A 8 ? + M ; O 5 c ) - |6 x " lS {w hPn mZ { 0^ k W ^ G mH 3 y W $ V> !e .v * N j r O ; pT R ! ? / v ]= ~; N z v' o< S T T T U U U V V V W W W X X X Y Y Y Z Z Z [ [ [ \ \ \ ] ] ] ^ ^ ^ _ _ _ ` ` ` a a a b b b c c c d d d e e e f f f g g g h h h i i i j j j k k k l l l m m m n n n o o o p p p q q q r r r s s s t t t u u u v v v w w w x x x y y y z z z { { { | | | } } } ~ ~ ~ @ @ Q d C2 C2 |Q / /_ E W ( p|Q i / m' (t E ^ L IC + ( t R \ b aQ -8 6 y > l :" XT \| i u c+ w } -!n d ! O}o p e l g? eb \ rue E V Q Q N L G G R 6 C F ; D A < < / ( l 6 +# % V y2 v k ; oR F/ \ a ?- {i z@ | L, 6 TO L hT, \ $ |<- L M . v E0 OI1 = x B k& =4 , VJ ] 7 "7 F g ; Z ` ? X ; y KD | I 7q Yg5 ~ 7 M e 1 u u R Z < ~ W YKP yN @ U ? U U b * U c4 n ? ` _ E k V e Fw m cO ^ 4 , p I8 .x 1Z W { r ps'6 g s S r Ol ao z I f x $ Q b = N ) ^ K L w \ Vp $zZ NN s R Y ( E< * Y 4 z $ lp pwZ .p |u < [ F e & R ] [ h < _ Q '~ r b G e e r = q H- i g4 0 ; l + $ F Gp | ! /N _ t w R x : U | ( Q E / _ ( |Q E / 0_ ` ( |Q E 6 / m0_ ` ( |Q n E r 6 / m0_ ` ( ' |Q Nn E 9 rr 6 / m0_ ` ( "' |Q DNn E 9 rr A 6 / m0_ ` ( "' |Q DNn * E T 9 rr RA 6 / m0_ J ` ( "' |Q ) DNn S* E T 9 O rr RA 6 / ? m0_ J ` ( "' |Q ) DNn S* E T 9 O rr RA 6 / ? m0_ J ` ( "' |Q ' ) DNn N S* E T 9 : O rr u RA 6 / ? m0_ J ` ( "' |Q W' ) DNn N S* E _ T 9 : O rr }u RA 6 / ? m0_ J ` ( "' |Q W' ) DNn N S* E G_ T 9 : O rr }u RA 6 / > ? m0_ } J ` "' | W' ) DNn N S* G_ T 9 : O rr S }u RA 6 > ? m0 M} J ` "' 4 W' ) DNn i N S* G_ T 9 : O rr MS }u RA 6 > ? m 7M} J n "' 4 W' ) DNn i N S* w G_ T 9 : O rr MS }u RA > ? p7M} J n "' 4 W' ) DN i N S* w G_ T 9 : O r MS }u RA > ? 6p7M} J m n " 4 W' ) D i N S* m w G_ T : O MS }u RA l > ? 6p7M} J m n b 4 W' ) i N S* m w G_ T : O ) MS }u R Rl > ? 6p7M} J J m n b 4 W' ) + i N S V m w G_ : O Y) MS }u Rl > ? f 6p7M} J m n b 4 W' 2+ i N dV m w G_ : Y) MS }u ' Rl > Of 6p7M} J m n < b 4 W' x2+ i N dV m w G_ : Y) MS }u ' Rl > Of 6p7M} ! J m n C< b 4 W x2+ i dV m w G_ 9 Y) MS } r ' Rl > Of 6p7M} ! J m n C< b 4 x2+ i A dV m w G 9 Y) MS r ' Rl > Of 6p7M} ! J m n A C< b 4 x2+ i A dV m w 9 Y) MS ? r ' Rl Of 6p7M ? ? ? ? ? ? ? ? ! 0 @ 2 2 A J 1 Mb h C +! T + 4g oq y 3 2 5 [ < 5 ` ! y9 $I # Q Ps O j OA s ! p ` ` s # . R ? =8 v % >; k- , L ; " l F f s z / { r UU B ] j X o 0 B ! Gh { H Dl F V uv E L * p q_ P ! I L a Z H 7 6 H a r= 9 W A ` " X ! N $ W ( LL E ) x Z _ q , m ) V 0 m _ ^ A 0 ` 5 O, d 9 n 1 : - B ? o W =OP - $ ? f ]B >s ^ a [ 2 ? % s G < . S^ b } * : a i o | q $ U ' < R $ 2 K ?0 8 D W X dk a R} 7 1 t {g * z !Sg U Z*C f 1 > , 0 5 b\ Ov ) , w L K 3 ` [ >~ F O { " ) 5H x 8 v : 3 ~ [ LX - r 3 5 ^ D * g m x # T# * +? n { Y 5 Q 0 s lN4 \ H & n n 2 R K D ~ f 4g N , Y | $E k }X B % ` B 1 N r = [ I - D K 4? ; W P zz8 m 0b xEk | s " < G q E ^ 3 p N 0 D BY h+4 $ m GGo 6 s A f $o S ~$ _ 8b t | } p L u g _ r0 IG F Z^ % u h J P ; 77 } - 6 B f W > U b 9 fk w jS im 3 w I D ? g u Z- + X G 9 |d J F | .P a o ` M mvP U * :OP X7} | r h o C UU u B _* 0 .T gp} D %, a Tf < # b B h S9D / j d l z= J c$ 1 { WiH C p l Y Be j k Z j } P F u = 3 F; * * \ ! b } c } / ] [ l ? | % ] q m;| I 2 N % < - W } eG* n ^s F Ci 6~a _ | V Aw L D G ; SE 53 !+ 1y G# 2 q K - G nd : f | I ? K E U Y Y4 i ! 8 p V } " 9 \ x Ow ] M s! \ E v p,5 ; r 4 s K - s ) $ U " v v G I r q Fz ! q M { ` r M = Q ? t H 6 L K6 { / q ) n R $ s# ! v ,o I5 : F ` - 1 w% Y , t J Mk f m R ! : RU 1 - ; ) + T 8 R % V x ! 4 '$ r ZP *P [ @ / Y _( C _~H N g C ? g 0 \ p f F n ' Unsupported modifier Unknown modifier "%02X". Unknown FLUT_IT2 secondary function code "%02X". Unknown FLUT_IT2 secondary function code (with mul) "%02X". Unknown VLUT function code "%02X" (%d). \ X ` d 0 8 h @ H P 0123456789abcdef srt_index gl_mali_SSBOMaxArrayIndex gl_mali_non_rmu_buffer gl_mali_PatchVerticesInTessCtrl gl_mali_PatchVerticesInTessEval gl_mali_PointSizeParameters gl_mali_PrimitivesGenerated gl_mali_SampleBuffers gl_mali_SamplePosition gl_mali_TessIsPreviousGeometry gl_mali_TessIsPreviousFragment gl_mali_ViewID gl_mali_ViewportTransform gl_mali_rotate gl_mali_rotate_invert gl_mali_rotate_point_coord gl_mali_BlendColor simf gl_BoundingBox d3d.uniform_buffer_id %s_alloca_%d ?? gl_mali_SSBO gl_mali_ImageSizes gl_mali_TextureSizes gl_mali_ColorSpaceCoeff gl_mali_TextureGatherMirror gl_mali_FragCoordOffset gl_mali_VertexIsPreviousFragment gl_mali_TextureSizesSpirv gl_mali_SamplerSpirv gl_mali_TessIsPrevious gl_VertexIndex gl_InstanceIndex gl_VertexID gl_PrimitiveID gl_InstanceID gl_PointCoord gl_NumWorkGroups gl_WorkGroupID gl_LocalInvocationID gl_GlobalInvocationID gl_LocalInvocationIndex gl_HelperInvocation gl_PatchVerticesIn gl_TessLevelOuter gl_TessLevelInner gl_BaseVertex gl_BaseInstance gl_DrawID target_variants_flags %s_0x%x $0x%x U V W X Y Z [ \ # $ % n o p q r s t u v w x ^ _ ` %%%llu 0x%llx %llu 0c 0s essl_bool bb%d brnd brd brndout_blend brndout CMPBE_TERM_KIND_BRND CMPBE_TERM_KIND_BRD CMPBE_TERM_KIND_CALL CMPBE_TERM_KIND_RETURN CMPBE_TERM_KIND_BRNDOUT_BLEND CMPBE_TERM_KIND_BRNDOUT CMPBE_TERM_KIND_EXIT CMPBE_TERM_KIND_JUMP CMPBE_TERM_KIND_UNKNOWN gles d3d compute_shader blend_shader vertex_shader tessellation_control_shader tessellation_evaluation_shader geometry_shader unknown_shader BIR ir_after_expand ir_after_late_expand ir_after_legalize_swizzle late_expansion finite_math unsafe_math signed_zeros optimization_level compiler_opt_level optimize_conditional_select optimize_uniforms enable_register_uniform enable_register_uniform_realloc initialize_register_values enable_robustness force_one_view paged_uniforms aggregated_pilot essl_on_spirv backend hw_rev !"#')*+,-./01234@ABCDEFG56789:;<=>?HIJK Parse error (%d) at line %u, got '%s', expected '%s' Parse error (%d) at line %u, got %s, expected %s or %s or integer value Parse error (%d) at line %u, failed to set compiler option %s to value %d Parse error (%d) at line %u, unknown attribute %s Parse error (%d) at line %u, got %s, expected %s or %s Meta attribute error (%d) at line %u, got %s, expected d3d, gles or cl Meta attribute error (%d) at line %u, got %s, expected vertex_shader, fragment_shader, blend_shader, compute_shader, tessellation_evaluation_shader, tessellation_control_shader or geometry_shader Use of undefined node %%%d at line %u Re-definition of node %%%d at line %u Parse error at line %u: expected comparison operator, got %s Combiner does not match vector length at lineno: %u Re-definition of function '%s' at line %u Re-definition of label '%s' at line %u Use of undefined label '%s' at line %u Swizzle does not match vector length at lineno: %u Use of undefined variable '%s' at line %u Unexpected token '%s' at line %u Error at line %u, invalid return structure, expected %u arguments Parse error (%d) at line %u, unknown meta-data section %.*s Parse error (%d) at line %u, duplicate meta-data section %.*s ir_cdeps_computed ir_after_ir_copy b8 b16 b32 b64 p8 p32 addrspace control_dep entrypoint attribs _eq _ne _sge _sgt _sle _slt _uge _ugt _ule _ult _oeq _une _oge _ogt _ole _olt read_fence write_fence _blend _barrier _compare _gather4r_compare _gather4r _gather4g _gather4b _gather4a _test4 _cube _1d _2d _3d _clamp_fmax_0 _clamp_m1_1 _clamp_0_1 _dx _dy _fine _coarse _nobias _noclamp brd brnd _attribute_primary _attribute_secondary _sampler _thread_local _workgroup_local _uniform _ssbo _mali_ssbo _mali_ssbo_max_array_index _mali_image_sizes _mali_texture_sizes _mali_atomic_counters _mali_color_space_coeff _mali_texture_gather_mirror _mali_no_rmu _mali_fragcoord_offset _mali_tb_icd _mali_vertex_is_previous _mali_vertex_id_offset _mali_texture_sizes_spirv _mali_sampler_spirv _mali_layer_max _mali_patch_vertices_in_tess_control _mali_patch_vertices_in_tess_evaluation _mali_point_size_parameters _mali_primitives_generated _mali_sample_buffers _mali_sample_num_mask _mali_sample_position _mali_tess_is_previous _mali_view_id _mali_viewport_transform _mali_rotate _mali_rotate_invert _mali_rotate_point_coord _mali_blend_color _vertex_index _instance_index _vertex_id _primitive_id _sample_id _is_front_facing _frag_coord _fb_color _fb_depth _fb_stencil _num_work_groups _work_group_id _local_invocation_id _global_invocation_id _local_invocation_index _helper_invocation _point_size _frag_color _frag_data _xfb_position _xfb_pointsize _invocation_id _patch_vertices_in _tess_coord _sample_position _sample_mask_in _layer _primitive_id_out _tess_level_outer _tess_level_inner _index_buffer _view_id _mali_frag_pilot_instance_id _per_vertex _frag_position mbs2_address_space mbs2_private mbs2_global mbs2_local mbs2_constant mbs2_array_size mbs2_aux_qualifier mbs2_component mbs2_flags mbs2_instance_name mbs2_is_row_major mbs2_kind mbs2_uniform_buffer mbs2_storage_block mbs2_input_block mbs2_output_block mbs2_layout mbs2_location mbs2_major_stride mbs2_name mbs2_nof_columns mbs2_nof_members mbs2_offset mbs2_precision mbs2_unknown mbs2_highp mbs2_mediump mbs2_lowp mbs2_scalar_size mbs2_8 mbs2_16 mbs2_32 mbs2_64 mbs2_scalar_type mbs2_float mbs2_sint mbs2_uint mbs2_bool mbs2_semantics mbs2_stride mbs2_tpac mbs2_tpar mbs2_tpge mbs2_tpib mbs2_tpma mbs2_tppo mbs2_tppr mbs2_tppw mbs2_tpqu mbs2_tpsa mbs2_tpse mbs2_tpst mbs2_type mbs2_type_name mbs2_vector_size FADD FDIV FDIV_FAST FMUL FMULN FNEG FRCP FSUB MUL NEG SDIV UDIV ANY BCMP BCMP_ALL BCMP_ALL_2H BCMP_ANY BCMP_ANY_2H CL_ALL CL_ANY FCMP FCMP_ALL FCMP_ALL_2H FCMP_ANY FCMP_ANY_2H ICMP ICMP_ALL ICMP_ALL_2H ICMP_ANY ICMP_ANY_2H ABORT DISCARD ATTR_JUMP KILL RET WRITEOUT WRITEOUT_D3D WRITEOUT_BLEND_JUMP BITCAST FPEXT BEXT BTOFP BTOI BTRUNC FPTOB FPTOSI FPTOUI FPTRUNC IEXT_LSHIFT IEXT_REPLICATE ITOB ITRUNC ITRUNC_KEEPHI ITRUNC_SSAT ITRUNC_USAT SEXT SITOFP UITOFP ZEXT ADDR_OF BUFFER_OF CONSTANT GETPARAM GETRESULT GET_DCD_POINTER OFFSET_OF PHI SWIZZLE UNDEF VA_ARG VA_COPY VA_END VA_START VECTOR_COMBINE ACOS ASIN ATAN ATAN2 ATAN2PI ATANPI COS COS_FAST COSPI SIN SIN_FAST SINCOS SINPI TAN TAN_FAST TANPI CBRT EXP EXP10 EXP2 EXP_FAST LOG LOG10 LOG2 POW POWN POWR RSQ SQRT SQRT_FAST ANDN NAND NOR NOT ORN XNOR XOR MAD24 MUL24 SABS SABSDIFF SAVG SAVGR SCLAMP SMAD_HI SMAD_SAT SMAX SMIN SMUL_HI SSATADD SSATSUB UABS UABSDIFF UAVG UAVGR UCLAMP UMAD_HI UMAD_SAT UMAX UMIN UMUL_HI USATADD USATSUB CL_FMA CL_FMA_DOWN CL_FMA_TRUNC CL_FMA_UP FABS FABSMAX FABSMAX_NAN FABSMIN FABSMIN_NAN FCLAMP FMA FMA_DOWN FMA_TRUNC FMA_UP FMAX FMAX_NAN FMIN FMIN_NAN FTO16 ASHR CEIL CL_MIX CLS CLZ DEGREES FDECODE FENCODE FLOOR FMAD FMOD FRACT LSHR MIX MUX POPCNT RADIANS RINT ROTATE ROUND SDECODE SENCODE SHL SHUFFLE SHUFFLE2 SIGN SMOOTHSTEP STEP SUBVECTOR_UPDATE UDECODE UENCODE UPSAMPLE CROSS DISTANCE DISTANCE_FAST DOT FACEFORWARD LENGTH LENGTH_FAST NORMALIZE REFLECT REFRACT CUBEMAP MOVDY MOVDZ MOVDW TEX_DELTA TEX_GRDESC TEX_GRDESC_DER TEX_TEX TEX_TEX_GRD TEX_TEX_INDEX MEMORY_FENCE ALD_VAR ALLOCA ALOAD ALOAD_EI ASTORE ASTORE_EI ATOMIC_ADD ATOMIC_AND ATOMIC_CMPXCHG ATOMIC_DEC ATOMIC_INC ATOMIC_OR ATOMIC_SMAX ATOMIC_SMIN ATOMIC_SUB ATOMIC_UMAX ATOMIC_UMIN ATOMIC_XCHG ATOMIC_XOR FLD_TEX FLD_VAR FLOAD FLOAD_EI FSTORE FSTORE_EI FST_TEX LD_UNIFORM LD_TILEBUFFER LD_TILEBUFFER_RAW LEA LEA_TEX LOAD MEMCPY SLD_TEX SLD_VAR SLOAD SLOAD_EI SSTORE SSTORE_EI SST_TEX ST_TILEBUFFER ST_TILEBUFFER_RAW STORE ULD_TEX ULD_VAR ULOAD ULOAD_EI USTORE USTORE_EI UST_TEX VOLATILE_LOAD VOLATILE_STORE DOT3R DOT3R_2H EXPFX FATAN2PI_IT1 FATAN2_IT1 FCLAMP_0_1 FCLAMP_0_INF FCLAMP_M1_1 FCOS_IT2 FDIV_IT1 FLUT_IT2 FPOWN_IT1 FPOWR_IT1 FPOW_IT1 FRCP_C FSINCOS_IT1 FSIN_IT2 FSQRT_IT1 FSQRT_IT2 FWMUL LOAD16_SEXT32 LOAD16_ZEXT32 LOAD8_SEXT32 LOAD8_ZEXT32 REDUCE4 SWMUL TEX_MOV_TEX UWMUL FENCODE_I SENCODE_I UENCODE_I IDENTITY SPILL SPLIT SCHEDULER_SPLIT MIDGARD_GET_LOCAL_ID MIDGARD_GET_GROUP_ID MIDGARD_GET_GLOBAL_ID MIDGARD_LD_PC PREALLOCATED_DEF VIEWPORT_TRANSFORM EXTERNAL_TRANSFORM GEOMETRY_VERTEX_ADDRESS GEOMETRY_INDEX_ADDRESS BUILTIN_CONSTRUCTOR STRUCT_CONSTRUCTOR GRAPH_BOUNDARY = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 lit_float lit_int lit_swz lit_cmb varref atstring meta labeldef labelref __marker_begin_of_cmpbe_op_tokens __marker_end_of_cmpbe_op_tokens __primitive_id_func alloca_Lock alloca_Layer alloca_PrimitiveID alloca_GeometryIsCount alloca_GeometryVertexAcc alloca_GeometryIndexAcc alloca_VerticesGenerated alloca_PrimitivesGenerated __finalize_count __end_primitive_count __finalize_output __end_primitive_output __emit_vertex_dispatch __end_primitive_dispatch __finalize_dispatch __emit_vertex_count __capture_layer __release_layer __emit_vertex_output < < ? ? gl_mali_side_effect_%s_%x gl_mali_side_effect_%s_%x_%x gl_mali_side_effect_%s_%x_%x_%x @ @ gles.is_epta max_register_count has_printf gles.noblendshader Can not satisfy group local resource requirements buffer_usage.tilebuffer_read spirv.first_sw_blend_rt %s_%s remove_empty_words ! " # @ final ( ) * @ iselect register_allocation ___cmpbep_gles_pilot_dummy_rmu_data_area realloc_uniform Not enough stack space! reorder expand_tex_mov_tex reorder_and_pair rescheduler < < 0 0 < < 0 0 u ? a 3 u < a 0 E E E E y ( _ OQ ? - y ( :P (@Q \( ( ( ( P P P 0 0 0 $I @Q ? u] Q $I ? ? u] @ @Q $I 0 0 0 \( P P P ( ( ( (@Q ( E E E E a 0 0 0 < < 0 0 < < 0 0 u ? a 3 u < a 0 ( 4 E < 0 0 ( E y ( _ OQ ? - y ( :P (@Q ,y ( S P ? ! P I p] @ E ? H 0 $I @Q ? u] Q $I ? ? u] @ @Q $I <E] s 0 H E @ pQ P 5 + ! P ( (@Q ( 5 m 0 E ( 0 0 a 0 0 0 resolve_reg_class @ @ @ @ @ @ @ change_arithmetic_units scheduler A pA A BOut of memory Entry point: %s %d work registers used (with spilling) , %d uniform registers used Pipelines: A / L / T / Overall Number of instruction words emitted: %2g +%2g +%2g = %2g Number of cycles for shortest code path: %2g /%2g /%2g = %2g ( bound) Number of cycles for longest code path: unknown (the shader contains loops) Note: The cycle counts do not include possible stalls due to cache misses. Note: Instruction words emitted for printf are not included in the counts. warping Serialization error %d: %s dx.tess.n_vertices_in dx.tess.max_tessfactor dx.tess.has_control_point_phase gles.raw_format dx.output_type Required size for symbol %s too large Required address for symbol %s too large Uniform buffer element too large Too many uniform buffers Uniform buffer too large mrt_mask gles.gl_pos_sym_A gles.gl_pos_sym_B gles.gl_pos_kind dx.geom.stream_mask dx.geom.rasterizer_pos_slot dx.geom.nb_patch_vertices dx.d3ds addr_alloc codegen_idioms cse_succ_node @ expand_memcpy _decode_average fb_reads_pixel_check gles_addr_alloc gles_create_nolod_variant gles_gl_pos_opt __wa_start gles_merge_wls gles_rewrite_addr gles_tex_gather_mirror illegal_load_store_split hw_issue_8250 upper_lir_ends upper_lir_begins late_calling_convention move_tex_ops no_blend_shader_variant optimize_phi optimize_writeout promote_precision lookup_%d precompute_sqrt reorder_modifiers remove_empty_loops rewrite_tex_gather shrink_nodes store_load_forwarding simplify_uniform_loads vertex_elim_pass_through wide_vectors mali-mem-purge 01234567 cutils_cstr_strncat cutils_cstr_strncpy 0X 0123456789abcdef 0123456789ABCDEF In file: cutils/cstr/src/mali_cutils_cstr.c line: 1412 destination buffer size can't be zero. In file: cutils/cstr/src/mali_cutils_cstr.c line: 1425 The destination buffer does not have terminating nul-character. In file: cutils/cstr/src/mali_cutils_cstr.c line: 1435 The destination buffer is not big enough. In file: cutils/cstr/src/mali_cutils_cstr.c line: 1417 destination can't be NULL. In file: cutils/cstr/src/mali_cutils_cstr.c line: 1482 The destination buffer is not big enough to copy "%s" 9 I Y I( Y( EGL_KHR_partial_update EGL_EXT_image_dma_buf_import RG16 BG16 6 BG16 v BG16 BG16 AR24 AR24 BA24 S RA24 XB24 XB24 6 XB24 v XB24 XB24 AB24 AB24 6 AB24 v AB24 AB24 XR24 BX24 S RX24 : RG24 : BG24 : 6 BG24 : v BG24 : BG24 AB12 6 AB12 AR12 BA12 S RA12 AB15 6 AB15 AR15 & BA15 & RA15 wl_display d t u x y v w p r q s ` a GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_EGL_image GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_texture_compression_astc_sliced_3d GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_disjoint_timer_query GL_EXT_blend_minmax GL_EXT_discard_framebuffer GL_OES_get_program_binary GL_EXT_texture_storage GL_EXT_multisampled_render_to_texture GL_OES_surfaceless_context GL_OES_texture_stencil8 GL_ARM_mali_program_binary GL_EXT_sRGB GL_EXT_sRGB_write_control GL_EXT_texture_sRGB_decode GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_RG8 GL_KHR_blend_equation_advanced_coherent GL_EXT_robustness GL_EXT_draw_buffers_indexed GL_OES_draw_buffers_indexed GL_EXT_texture_border_clamp GL_OES_texture_border_clamp GL_OES_sample_shading GL_EXT_copy_image GL_OES_copy_image GL_EXT_color_buffer_half_float GL_EXT_color_buffer_float GL_OVR_multiview_multisampled_render_to_texture GL_KHR_robustness GL_KHR_robust_buffer_access_behavior GL_EXT_draw_elements_base_vertex GL_OES_draw_elements_base_vertex GL_OES_byte_coordinates GL_OES_fixed_point GL_OES_single_precision GL_OES_matrix_get GL_OES_point_size_array GL_OES_point_sprite GL_OES_read_format GL_OES_stencil8 GL_OES_framebuffer_object GL_OES_matrix_palette GL_OES_extended_matrix_palette GL_OES_draw_texture GL_OES_blend_equation_separate GL_OES_blend_func_separate GL_OES_blend_subtract GL_OES_stencil_wrap GL_OES_texture_mirrored_repeat GL_OES_query_matrix GL_OES_texture_cube_map glActiveShaderProgram glActiveTexture glAlphaFunc glAlphaFuncx glAlphaFuncxOES glAttachShader glBeginQuery glBeginQueryEXT glBeginTransformFeedback glBindAttribLocation glBindBuffer glBindBufferBase glBindBufferRange glBindFramebuffer glBindFramebufferOES glBindImageTexture glBindProgramPipeline glBindRenderbuffer glBindRenderbufferOES glBindSampler glBindTexture glBindTransformFeedback glBindVertexArray glBindVertexArrayOES glBindVertexBuffer glBlendBarrier glBlendBarrierKHR glBlendColor glBlendEquation glBlendEquationOES glBlendEquationSeparate glBlendEquationSeparateOES glBlendEquationSeparatei glBlendEquationSeparateiEXT glBlendEquationSeparateiOES glBlendEquationi glBlendEquationiEXT glBlendEquationiOES glBlendFunc glBlendFuncSeparate glBlendFuncSeparateOES glBlendFuncSeparatei glBlendFuncSeparateiEXT glBlendFuncSeparateiOES glBlendFunci glBlendFunciEXT glBlendFunciOES glBlitFramebuffer glBufferData glBufferSubData glCheckFramebufferStatus glCheckFramebufferStatusOES glClear glClearBufferfi glClearBufferfv glClearBufferiv glClearBufferuiv glClearColor glClearColorx glClearColorxOES glClearDepthf glClearDepthfOES glClearDepthx glClearDepthxOES glClearStencil glClientActiveTexture glClientWaitSync glClipPlanef glClipPlanefOES glClipPlanex glClipPlanexOES glColor4f glColor4ub glColor4x glColor4xOES glColorMask glColorMaski glColorMaskiEXT glColorMaskiOES glColorPointer glCompileShader glCompressedTexImage2D glCompressedTexImage3D glCompressedTexImage3DOES glCompressedTexSubImage2D glCompressedTexSubImage3D glCompressedTexSubImage3DOES glCopyBufferSubData glCopyImageSubData glCopyImageSubDataEXT glCopyImageSubDataOES glCopyTexImage2D glCopyTexSubImage2D glCopyTexSubImage3D glCopyTexSubImage3DOES glCreateProgram glCreateShader glCreateShaderProgramv glCullFace glCurrentPaletteMatrixOES glDebugMessageCallback glDebugMessageCallbackKHR glDebugMessageControl glDebugMessageControlKHR glDebugMessageInsert glDebugMessageInsertKHR glDeleteBuffers glDeleteFramebuffers glDeleteFramebuffersOES glDeleteProgram glDeleteProgramPipelines glDeleteQueries glDeleteQueriesEXT glDeleteRenderbuffers glDeleteRenderbuffersOES glDeleteSamplers glDeleteShader glDeleteSync glDeleteTextures glDeleteTransformFeedbacks glDeleteVertexArrays glDeleteVertexArraysOES glDepthFunc glDepthMask glDepthRangef glDepthRangefOES glDepthRangex glDepthRangexOES glDetachShader glDisable glDisableClientState glDisableVertexAttribArray glDisablei glDisableiEXT glDisableiOES glDiscardFramebufferEXT glDispatchCompute glDispatchComputeIndirect glDrawArrays glDrawArraysIndirect glDrawArraysInstanced glDrawBuffers glDrawElements glDrawElementsBaseVertex glDrawElementsBaseVertexEXT glDrawElementsBaseVertexOES glDrawElementsIndirect glDrawElementsInstanced glDrawElementsInstancedBaseVertex glDrawElementsInstancedBaseVertexEXT glDrawElementsInstancedBaseVertexOES glDrawRangeElements glDrawRangeElementsBaseVertex glDrawRangeElementsBaseVertexEXT glDrawRangeElementsBaseVertexOES glDrawTexfOES glDrawTexfvOES glDrawTexiOES glDrawTexivOES glDrawTexsOES glDrawTexsvOES glDrawTexxOES glDrawTexxvOES glEGLImageTargetRenderbufferStorageOES glEGLImageTargetTexture2DOES glEnable glEnableClientState glEnableVertexAttribArray glEnablei glEnableiEXT glEnableiOES glEndQuery glEndQueryEXT glEndTransformFeedback glFenceSync glFinish glFlush glFlushMappedBufferRange glFogf glFogfv glFogx glFogxOES glFogxv glFogxvOES glFramebufferParameteri glFramebufferRenderbuffer glFramebufferRenderbufferOES glFramebufferTexture glFramebufferTexture2D glFramebufferTexture2DMultisampleEXT glFramebufferTexture2DOES glFramebufferTexture3DOES glFramebufferTextureEXT glFramebufferTextureLayer glFramebufferTextureMultisampleMultiviewOVR glFramebufferTextureMultiviewOVR glFramebufferTextureOES glFrontFace glFrustumf glFrustumfOES glFrustumx glFrustumxOES glGenBuffers glGenFramebuffers glGenFramebuffersOES glGenProgramPipelines glGenQueries glGenQueriesEXT glGenRenderbuffers glGenRenderbuffersOES glGenSamplers glGenTextures glGenTransformFeedbacks glGenVertexArrays glGenVertexArraysOES glGenerateMipmap glGenerateMipmapOES glGetActiveAttrib glGetActiveUniform glGetActiveUniformBlockName glGetActiveUniformBlockiv glGetActiveUniformsiv glGetAttachedShaders glGetAttribLocation glGetBooleani_v glGetBooleanv glGetBufferParameteri64v glGetBufferParameteriv glGetBufferPointerv glGetBufferPointervOES glGetClipPlanef glGetClipPlanefOES glGetClipPlanex glGetClipPlanexOES glGetDebugMessageLog glGetDebugMessageLogKHR glGetError glGetFixedv glGetFixedvOES glGetFloatv glGetFragDataLocation glGetFramebufferAttachmentParameteriv glGetFramebufferAttachmentParameterivOES glGetFramebufferParameteriv glGetGraphicsResetStatus glGetGraphicsResetStatusEXT glGetGraphicsResetStatusKHR glGetInteger64i_v glGetInteger64v glGetIntegeri_v glGetIntegerv glGetInternalformativ glGetLightfv glGetLightxv glGetLightxvOES glGetMaterialfv glGetMaterialxv glGetMaterialxvOES glGetMultisamplefv glGetObjectLabel glGetObjectLabelKHR glGetObjectPtrLabel glGetObjectPtrLabelKHR glGetPointerv glGetPointervKHR glGetProgramBinary glGetProgramBinaryOES glGetProgramInfoLog glGetProgramInterfaceiv glGetProgramPipelineInfoLog glGetProgramPipelineiv glGetProgramResourceIndex glGetProgramResourceLocation glGetProgramResourceName glGetProgramResourceiv glGetProgramiv glGetQueryObjecti64vEXT glGetQueryObjectivEXT glGetQueryObjectui64vEXT glGetQueryObjectuiv glGetQueryObjectuivEXT glGetQueryiv glGetQueryivEXT glGetRenderbufferParameteriv glGetRenderbufferParameterivOES glGetSamplerParameterIiv glGetSamplerParameterIivEXT glGetSamplerParameterIivOES glGetSamplerParameterIuiv glGetSamplerParameterIuivEXT glGetSamplerParameterIuivOES glGetSamplerParameterfv glGetSamplerParameteriv glGetShaderInfoLog glGetShaderPrecisionFormat glGetShaderSource glGetShaderiv glGetString glGetStringi glGetSynciv glGetTexEnvfv glGetTexEnviv glGetTexEnvxv glGetTexEnvxvOES glGetTexGenfvOES glGetTexGenivOES glGetTexGenxvOES glGetTexLevelParameterfv glGetTexLevelParameteriv glGetTexParameterIiv glGetTexParameterIivEXT glGetTexParameterIivOES glGetTexParameterIuiv glGetTexParameterIuivEXT glGetTexParameterIuivOES glGetTexParameterfv glGetTexParameteriv glGetTexParameterxv glGetTexParameterxvOES glGetTransformFeedbackVarying glGetUniformBlockIndex glGetUniformIndices glGetUniformLocation glGetUniformfv glGetUniformiv glGetUniformuiv glGetVertexAttribIiv glGetVertexAttribIuiv glGetVertexAttribPointerv glGetVertexAttribfv glGetVertexAttribiv glGetnUniformfv glGetnUniformfvEXT glGetnUniformfvKHR glGetnUniformiv glGetnUniformivEXT glGetnUniformivKHR glGetnUniformuiv glGetnUniformuivKHR glHint glInvalidateFramebuffer glInvalidateSubFramebuffer glIsBuffer glIsEnabled glIsEnabledi glIsEnablediEXT glIsEnablediOES glIsFramebuffer glIsFramebufferOES glIsProgram glIsProgramPipeline glIsQuery glIsQueryEXT glIsRenderbuffer glIsRenderbufferOES glIsSampler glIsShader glIsSync glIsTexture glIsTransformFeedback glIsVertexArray glIsVertexArrayOES glLightModelf glLightModelfv glLightModelx glLightModelxOES glLightModelxv glLightModelxvOES glLightf glLightfv glLightx glLightxOES glLightxv glLightxvOES glLineWidth glLineWidthx glLineWidthxOES glLinkProgram glLoadIdentity glLoadMatrixf glLoadMatrixx glLoadMatrixxOES glLoadPaletteFromModelViewMatrixOES glLogicOp glMapBufferOES glMapBufferRange glMaterialf glMaterialfv glMaterialx glMaterialxOES glMaterialxv glMaterialxvOES glMatrixIndexPointerOES glMatrixMode glMemoryBarrier glMemoryBarrierByRegion glMinSampleShading glMinSampleShadingOES glMultMatrixf glMultMatrixx glMultMatrixxOES glMultiTexCoord4b glMultiTexCoord4bOES glMultiTexCoord4f glMultiTexCoord4x glMultiTexCoord4xOES glNormal3f glNormal3x glNormal3xOES glNormalPointer glObjectLabel glObjectLabelKHR glObjectPtrLabel glObjectPtrLabelKHR glOrthof glOrthofOES glOrthox glOrthoxOES glPatchParameteri glPatchParameteriEXT glPatchParameteriOES glPauseTransformFeedback glPixelStorei glPointParameterf glPointParameterfv glPointParameterx glPointParameterxOES glPointParameterxv glPointParameterxvOES glPointSize glPointSizePointerOES glPointSizex glPointSizexOES glPolygonOffset glPolygonOffsetx glPolygonOffsetxOES glPopDebugGroup glPopDebugGroupKHR glPopMatrix glPrimitiveBoundingBox glPrimitiveBoundingBoxEXT glPrimitiveBoundingBoxOES glProgramBinary glProgramBinaryOES glProgramParameteri glProgramUniform1f glProgramUniform1fv glProgramUniform1i glProgramUniform1iv glProgramUniform1ui glProgramUniform1uiv glProgramUniform2f glProgramUniform2fv glProgramUniform2i glProgramUniform2iv glProgramUniform2ui glProgramUniform2uiv glProgramUniform3f glProgramUniform3fv glProgramUniform3i glProgramUniform3iv glProgramUniform3ui glProgramUniform3uiv glProgramUniform4f glProgramUniform4fv glProgramUniform4i glProgramUniform4iv glProgramUniform4ui glProgramUniform4uiv glProgramUniformMatrix2fv glProgramUniformMatrix2x3fv glProgramUniformMatrix2x4fv glProgramUniformMatrix3fv glProgramUniformMatrix3x2fv glProgramUniformMatrix3x4fv glProgramUniformMatrix4fv glProgramUniformMatrix4x2fv glProgramUniformMatrix4x3fv glPushDebugGroup glPushDebugGroupKHR glPushMatrix glQueryCounterEXT glQueryMatrixxOES glReadBuffer glReadPixels glReadnPixels glReadnPixelsEXT glReadnPixelsKHR glReleaseShaderCompiler glRenderbufferStorage glRenderbufferStorageMultisample glRenderbufferStorageMultisampleEXT glRenderbufferStorageOES glResumeTransformFeedback glRotatef glRotatex glRotatexOES glSampleCoverage glSampleCoveragex glSampleCoveragexOES glSampleMaski glSamplerParameterIiv glSamplerParameterIivEXT glSamplerParameterIivOES glSamplerParameterIuiv glSamplerParameterIuivEXT glSamplerParameterIuivOES glSamplerParameterf glSamplerParameterfv glSamplerParameteri glSamplerParameteriv glScalef glScalex glScalexOES glScissor glShadeModel glShaderBinary glShaderSource glStencilFunc glStencilFuncSeparate glStencilMask glStencilMaskSeparate glStencilOp glStencilOpSeparate glTexBuffer glTexBufferEXT glTexBufferOES glTexBufferRange glTexBufferRangeEXT glTexBufferRangeOES glTexCoordPointer glTexEnvf glTexEnvfv glTexEnvi glTexEnviv glTexEnvx glTexEnvxOES glTexEnvxv glTexEnvxvOES glTexGenfOES glTexGenfvOES glTexGeniOES glTexGenivOES glTexGenxOES glTexGenxvOES glTexImage2D glTexImage3D glTexImage3DOES glTexParameterIiv glTexParameterIivEXT glTexParameterIivOES glTexParameterIuiv glTexParameterIuivEXT glTexParameterIuivOES glTexParameterf glTexParameterfv glTexParameteri glTexParameteriv glTexParameterx glTexParameterxOES glTexParameterxv glTexParameterxvOES glTexStorage2D glTexStorage2DEXT glTexStorage2DMultisample glTexStorage3D glTexStorage3DEXT glTexStorage3DMultisample glTexStorage3DMultisampleOES glTexSubImage2D glTexSubImage3D glTexSubImage3DOES glTransformFeedbackVaryings glTranslatef glTranslatex glTranslatexOES glUniform1f glUniform1fv glUniform1i glUniform1iv glUniform1ui glUniform1uiv glUniform2f glUniform2fv glUniform2i glUniform2iv glUniform2ui glUniform2uiv glUniform3f glUniform3fv glUniform3i glUniform3iv glUniform3ui glUniform3uiv glUniform4f glUniform4fv glUniform4i glUniform4iv glUniform4ui glUniform4uiv glUniformBlockBinding glUniformMatrix2fv glUniformMatrix2x3fv glUniformMatrix2x4fv glUniformMatrix3fv glUniformMatrix3x2fv glUniformMatrix3x4fv glUniformMatrix4fv glUniformMatrix4x2fv glUniformMatrix4x3fv glUnmapBuffer glUnmapBufferOES glUseProgram glUseProgramStages glValidateProgram glValidateProgramPipeline glVertexAttrib1f glVertexAttrib1fv glVertexAttrib2f glVertexAttrib2fv glVertexAttrib3f glVertexAttrib3fv glVertexAttrib4f glVertexAttrib4fv glVertexAttribBinding glVertexAttribDivisor glVertexAttribFormat glVertexAttribI4i glVertexAttribI4iv glVertexAttribI4ui glVertexAttribI4uiv glVertexAttribIFormat glVertexAttribIPointer glVertexAttribPointer glVertexBindingDivisor glVertexPointer glViewport glWaitSync glWeightPointerOES inputIndicesCount instancesCount inputPrimitiveType restartIndex 9 I Y I( Y( ignoreAdjVertices synthesize_index_buffer hasTessellation numLayers isLayered synthesizeIndexBuffer partitioning viewportTransform[0] viewportTransform[1] viewportSize halfLineWidth outputPrimitive > > > > = @ @> > = @ > @> > > = = @ @ > > > > > @> @> > > > > > @ OpenGL ES-CM 1.1 v1.r18p0-01rel0.15878e9e510a5af1dd27c25d79446090 OpenGL ES 3.2 v1.r18p0-01rel0.15878e9e510a5af1dd27c25d79446090 OpenGL ES GLSL ES 3.20 @ G F H F F F I F F F F F F F J F F F F F F F F F F F F F F F K G F H F F F k %s:%s:%s:%.*s no error failed to allocate CPU memory failed to allocate GPU memory execution failed <program> is not a value generated by OpenGL <shader> is already attached to <program> another shader of the same type as <shader> is already attached to <program> <shader> is not attached to <program> <program> could not be made part of current state. <program> is not linked <maxLength> is less than 0 <maxCount> is less than 0 <pname> is not an accepted value <index> is invalid <name> starts with reserved prefix 'gl_' <program> is not a program object <transpose> is not GL_FALSE <location> is an invalid uniform location for the current program object and <location> is not equal to -1 <count> is less than 0 <primcount> is less than 0 there is no current program object <count> is greater than 1 and the indicated uniform variable is not an array variable uniform variable is not a matrix the wrong API function was called for setting a matrix the size of the uniform variable declared in the shader does not match the size indicated by the glUniform command glUniform1i and glUniform1iv are the only two functions that may be used to load uniform variables defined as sampler types image uniforms cannot be set with glUniform one of the integer variants of glUniform is used to load a uniform variable of type float, vec2, vec3, vec4, or an array of these one of the floating-point variants of glUniform is used to load a uniform variable of type u/int, u/ivec2, u/ivec3, u/ivec4, or an array of these <mode> is not an accepted value <type> is not an accepted value <width> is negative <height> is negative <depth> is negative bits other than GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT and GL_STENCIL_BUFFER_BIT are set in <mask> <format> is not an accepted value <type> is GL_UNSIGNED_SHORT_5_6_5 and <format> is not GL_RGB (or) <type> is GL_UNSIGNED_SHORT_4_4_4_4 or GL_UNSIGNED_SHORT_5_5_5_1 and <format> is not GL_RGBA <shader> is zero <program> is zero <shader> is not a value generated by OpenGL <shaderType> is not an accepted value <bufSize> is less than 0 <propCount> is 0 <propCount> is 0 or negative <size> is less than 0 <shader> is not a shader object <face> is a value other than GL_FRONT, GL_BACK, or GL_FRONT_AND_BACK <sfail> is a value other than the eight defined symbolic constant values <dpfail> is a value other than the eight defined symbolic constant values <dppass> is a value other than the eight defined symbolic constant values <func> is not one of the eight accepted values <cap> is not one of the accepted values <precisionType> is not an accepted value <name> is not an accepted value <target> is not an accepted value <alignment> is specified as other than 1, 2, 4, or 8 <size> is not 1, 2, 3 or 4 <stride> is negative <stride> is larger than GL_MAX_VERTEX_ATTRIB_STRIDE OpenGL ES API version mismatch input buffer pointer is NULL input buffer pointer is incorrectly aligned output buffer pointer is NULL texture unit assigned to uniform is outside allowed range image unit assigned to uniform is outside allowed range <n> is negative <param> is not an accepted value <texture> is not an accepted value <texture> was previously created with a target that doesn't match that of <target> <modeRGB> is not an accepted value <modeAlpha> is not an accepted value <sfactor> is not an accepted value <dfactor> is not an accepted value <srcRGB> is not an accepted value <dstRGB> is not an accepted value <srcAlpha> is not an accepted value <dstAlpha> is not an accepted value <border> is not zero <level> is not an accepted value <num_views> is not an accepted value <levels> is not an accepted value invalid dimensions <format> and <internalformat> mismatch <format>, <type> and <internalformat> are not a valid combination <index> is greater than or equal to GL_ACTIVE_ATTRIBUTES <index> is greater than or equal to GL_ACTIVE_UNIFORMS <index> is greater than or equal to the number of active varyings <index> is greater than or equal to the number of active shader storage variables <index> is greater than or equal to the number of active fragment outputs <index> is greater than or equal to the number of active transform feedback varyings <index> is greater than or equal to the number of active atomic counter buffers <index> is greater than or equal to the number of active buffer variables <index> is greater than or equal to the number of active shader storage blocks <usage> is not an accepted value <access> is not an accepted value the reserved buffer object 0 is bound to <target> currently bound framebuffer is not valid for this operation <textarget> is not valid <attachment> is not valid <pname> is not valid for this attachment <renderbuffer> is not an accepted value <renderbuffertarget> is not valid no renderbuffer bound to target GL_RENDERBUFFER <first> is negative <offset> is negative <offset> + <size> define a region of memory that extends beyond the allocated buffer <size> is zero or negative matrix stack overflow matrix stack underflow <near> or <far> is not positive, or <left> = <right>, or <bottom> = <top>, or <near> = <far> <index> is greater than or equal to GL_MAX_PALETTE_MATRICES_OES <index> is greater than or equal to GL_MAX_LIGHTS <exponent> must be within the range [0,128] <cutoff> must be within the range [0,90] or the special value 180 <attenuation> is negative <plane> is invalid <image_size> is invalid <count> doesn't match actual count <binaryformat> is not an accepted value the data pointed to by <binary> does not follow the corresponding binary format the data pointed to by <binary> is not GL_MALI_SHADER_BINARY_ARM <length> is less than 0 <shaders> contain multiple vertex shaders or multiple fragment shaders <opcode> is invalid <width> is less than or equal to 0 <height> is less than or equal to 0 <depth> is less than or equal to 0 <image> is not a valid EGLImage <image> is a valid EGLImage but has an unsupported format texture format does not support mipmap generation texture is a depth texture texture dimensions are not powers of two texture is not complete texture is not cube complete texture is not cube array complete format does not allow sub-image uploads texture image does not exist cannot specify a default texture object from an EGLimage <internalformat> is a compressed texture format which is not valid for this command <internalformat> is not an accepted value the buffer is already mapped the buffer is not mapped the buffer to be mapped is zero-sized the object name has not been generated by glGenXXX <pointer> must be NULL when no buffer is bound to GL_ARRAY_BUFFER, and a non-default vertex attribute array is bound a query is currently active the name has not been generated query type mismatch query name is 0 query is active invalid query object entrypoint is not supported a default texture is bound to <target> the texture bound to <target> is immutable <end> is less than <start> <size> cannot be 1 <size> must be 4 <numAttachments> is less than 0 the current program state is not valid <layer> is not an accepted value <length> must not be zero the storage space needed exceeds the available address range invalid number of samples <samples> is negative <coord> is not an accepted value one of the signed integer variants of glUniform is used to load a uniform variable of type uint, uvec2, uvec3, uvec4, or an array of these one of the unsigned integer variants of glUniform is used to load a uniform variable of type int, ivec2, ivec3, ivec4, or an array of these <target> is GL_DEPTH_STENCIL_ATTACHMENT but the same object is not bound to DEPTH and STENCIL attachments input buffer is too small output buffer is too small output buffer pointer is incorrectly aligned <sampler> is not a sampler object an attachment has a color format which does not support blending advanced blending equation used with multiple color buffers fragment shader used with incompatible advanced blending equation shader pixel local storage is not allowed with multiple color attachments or draw buffers cannot delete current draw FBO when shader pixel local storage is enabled cannot change current draw FBO when shader pixel local storage is enabled cannot modify current draw FBO attachments when shader pixel local storage is enabled cannot modify draw buffers when shader pixel local storage is enabled shader pixel local storage is not allowed with incomplete framebuffers shader pixel local storage is not allowed with multisampled framebuffers cannot draw using a program which accesses shader pixel local storage when shader pixel local storage is not enabled Operation not allowed on the default framebuffer <n> must be 1 for the default framebuffer <n> specifies more than GL_MAX_DRAW_BUFFERS the default framebuffer does not have numbered color attachments color attachments must be specified in order non-default framebuffers do not have a GL_BACK buffer no GL_READ_BUFFER no GL_DRAW_BUFFERS <filter> cannot be GL_LINEAR when <mask> includes GL_DEPTH_BUFFER_BIT or GL_STENCIL_BUFFER_BIT invalid <filter> <filter> cannot be GL_LINEAR with integer color attachments color attachments must have identical formats when resolving color attachments must have consistent integer types no depth attachment cannot read from and draw to the same buffer depth attachments must have identical formats no stencil attachment stencil attachments must have identical formats source and destination rectangles must match when resolving GL_DRAW_FRAMEBUFFER is multisampled <framebufferObject> is invalid <drawbuffer> is invalid invalid buffer invalid buffer range invalid buffer offset alignment invalid buffer size alignment invalid buffer binding point <block_index> is greater than or equal to GL_ACTIVE_UNIFORM_BLOCKS <block_index> is greater than or equal to GL_ACTIVE_SHADER_STORAGE_BLOCKS cannot delete a transform feedback object which has transform feedback operation active cannot bind a buffer to a transform feedback object which has transform feedback operation active invalid transform feedback object <target> must be GL_TRANSFORM_FEEDBACK <bufferMode> must be GL_SEPARATE_ATTRIBS or GL_INTERLEAVED_ATTRIBS cannot bind a new transform feedback object while the currently bound transform feedback object has transform feedback operation that is active and not paused. <primitiveMode> is invalid transform feedback operation is not allowed with indexed primitives transform feedback operation is already active transform feedback operation is already inactive transform feedback operation is not active or is active and already paused transform feedback operation is not active or is active and not paused cannot change program while transform feedback is active and not paused <mode> is not compatible with the primitive mode for current transform feedback operation not enough space to perform primitive capture in buffers bound to the current transform feedback operation <index> is greater than or equal to GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS <count> is greater than GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS the program associated with transform feedback object has been changed the current active program does not have a vertex shader to be used by XFB the program pipeline object associated with transform feedback object has been changed cannot link a program used by transform feedback object cannot flush buffer dependencies invalid sync object invalid sync <condition> invalid sync <flags> invalid sync <timeout> destination equals source but ranges overlap glCopyTex* requires that the data types of the source and destination match glCopyTex* requires that the channel sizes of the source and destination match cannot use (src)sRGB->(dst)linear or (src)linear->(dst)RGB for glCopyTex* glCopyTex* cannot copy from a channel that does not exist in the source no read attachment for glCopyTex* identifier is not a valid object type <source> is not a valid debug message source <type> is not a valid debug message type <severity> is not a valid debug message severity invalid combination of debug message filters message passed to debug functions was too long label passed to debug functions was too long debug group stack overflow debug group stack underflow <value> is not GL_FALSE or GL_TRUE this function cannot be applied to the default vertex array object <attribindex> is greater than or equal to GL_MAX_VERTEX_ATTRIBS <bindingindex> is greater than or equal to GL_MAX_VERTEX_ATTRIB_BINDINGS <relativeoffset> is greater than GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET <programInterface> is invalid <index> is not in the range [0,3) for the work group query the number of work groups in x dimension exceeds the maximum limit the number of work groups in y dimension exceeds the maximum limit the number of work groups in z dimension exceeds the maximum limit there is no active compute shader for the compute dispatch <pipeline> has a false validation status <pipeline> is not a value generated by OpenGL <pipeline> is does not represent an existing pipeline object <program> cannot be bound for individual pipeline stages <program> is not a program or a shader <barriers> has invalid barrier bit set <region> is invalid invalid image binding point the texture bound to image unit is not immutable buffer with indirect commands is not bound transform feedback operation is not allowed with draw indirect not all vertex attributes are backed by buffers default VAO is not allowed to use with draw indirect index buffer is not bound One of the PPO's installed programs was re-linked with GL_PROGRAM_SEPARABLE flag set to GL_FALSE The program installed only for part of the stages it was linked for There is missing active program for the vertex stage There is missing active program for the fragment stage There is missing active program for the tessellation control stage There is missing active program for the tessellation evaluation stage There is missing active program for the geometry stage The number of varyings in the programA program differ from the number of varyings in the programB program Either the programA varying does not have a match in programB shader or they differ on declaration The sum of the number of active samplers for each active program exceeds the maximum number of texture image units allowed Any two active samplers in the set of active program objects are of different types, but refer to the same texture image unit The sum of the number of active shader storage blocks for the current program pipeline object exceeds the limit surfaces have a different number of samples surfaces have a different number of bits per pixel/block texture coordinates not aligned to block coordinates of compressed texture <mode> is not compatible with tesselation enabled <mode> is not compatible with tesselation disabled The prim mode sent to GS is not compatible with the current input geometry mode This extension is not supported the number of frame buffer layers specified is negative the number of frame buffer layers is invalid transform feedback is active and OVR multiview drawcall is being performed mixing tessellation and OVR multiview drawcalls are not allowed a geometry shader is present in the program and an OVR multiview drawcall is being performed a timer query is active and an OVR multiview drawcall is being performed OVR multiview extension is unsupported for this configuration read from framebuffer when number of views is greater than 1 is invalid the number of views declared in VS is not matching the number of views the drawcall is addressing The GLES context has been lost Adding <basevertex> to the given indices results in negative values Color mask cannot have a disabled component when used together with YUV color buffer. ( 8 " & * . 2 6 : > $ , 4 < ? J ? _ P b ?U @ ?b > ? ? P J ?U @ ? t ? (4 2 6 w ? ? c ?w > 'x? ? 2 6 t ? ? ? x ? y ]Z l [ > 1 @S ? [ > ? ^ ? ]Z l x ? 1 @ ? ?i]J ? s >M ? rn ? s(>dzt? G ? ? ?M ? ) / - p vertex_shadergen_encode & ./cmpbe/cmpbe_shadergen_state.h (value & ~mask) == 0 fragment_shadergen_encode ? ? ? ? L> L> L> ? L? L? L? ?vertex_shadergen_encode fragment_shadergen_encode ! ! p ! t u v w x R UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU UUUU UUUU Z Z * LU - ,* / l? l? / l? " r j* . U j UU . U j VUUUU UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU V UUUU UUUU Z Z * j LU , / U / , U / , r U j* . U j UU . U j VUUUU " UUUUUUUU UUUUUUUU UUUUUUUU UUUU UUUUUUUU UU UUUU UUUU Z Z * *s5vy N ) N r 7 U J* . U j UU . U j VUUUU 2 R UUUUUUUU UUUUUUUU UUUUUUUU UUUU UUUUUUUU UU 6 UUUU UUUU Z Z *s by y N . U j UU . U j VUUUU UUUUUUUU j UUUU * UU UU 6 UU UU f UU " * UU UU UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU * : / * R Z ? * je Z ? 4v 3 R Z : : : Z z V V V. z z` ? * je 3 J . * J r Z j ,* p * * z * l & T{ z ? * je 3 o ;r [ *F 2 [ zk * T{ [ j z UU 4 W: 0 &2 2 Z" Y z V zk +'U z * R { K Z ? * j 3 J : V * z B * + R K Z ? * j K9N1 T ~U; 0 o l r z [ k * j " J2 z` 0 * Z* 3 * U k R U H U Z / j 4 n j t 1 L1 2 NE; z x 3 ( , z 3 z i *k [ Zb 2 R K B Z * ? * j k L1 K NU;? * j # 2 l [ z` 2 ) z " J V z Kk R K Z * j R 2 V Z f z`h ? * je J . * * je J N "r * T; Z j ,j& z * j ; UU / : Z T{ * * [ zk K z / ( . [ Z j * R [% " Z * * ? * j # " J V z` R Z * ? * j 3 ( * 3 H) JJ%R- T * T j nU;3 j z k z " Jr z :R Z Z 2 * 0 .Z z * j 4j z j 4j : [ z j 4j j 4j 1 K-j r NE; z j ( k z` [ b : 0 " [ Z: 0 * 2 .R *j z Z B? * Tu6 2 * b * ` ? * Tu6 K- NU; ? * j [ z z` C G z ( R U j Z * * j ( R V Z z` ? * je J . * * je J > r T{ Z j ,j& * * j * 0 & T{ z / [ *F zk * " [ Z UU R / Z * j ? / * / * j 2 * *; 3 H)J-J- T NU ~U{ 3 z [ k z " Jr z 0 &2 Z 2 * 2 R Z j t .Z * ? j t : [ z j 4j j 4j 1 K-j r ~E z 3 ( 2 k z` " Z : ? . R b * b Z * ? * Tu6 2 K- T * ` ? * Tu6 [ ? * j z z` C G z R j Z * * j ( R V Z zhn ? * je J . * ? * je J r Z ? j ,* 3 " : * J & * Z z + [ *F UU " z k / & [ Z z " R j : Z * ? * j 6 * j T 0 [ z . z * z : j j " * ? * j J V j z R Z * / * j 6 z 0 J R- * nU{ 3 z * k z " z z` [ j : H . [ Zz z * 2 R j " Z ? * j I " ? * j 2 R N [ * ? * j / * j R 2 [ * " * ? * j 3 H- 6 T j z zx # 2 z z` * z 0 b " j U z K K R +* Z * j * * j 2 * V *z R . .K- Z *; NE{ * je ! : * j z` U z ? 4 Wf' R $U z Z ? j 4j 3 " . zh ( j z ? j , Wf R * Z * j R . Z *{ * je 1 .K) ^e; [ j zx r Z ? j " . : z` r Z z * j . r : z Z UUUU * UUUU * UUUU * * * * * * TU TU TU TU TU TU TU TU 2 z UU * UUUUUUUU UU UUUU > 6 UU UU 6 UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU z r Z * je * ? * je 3 H j r Z / 4v " . z z? Jn 3 L=r V T z z`( " > V z` 0 > & * j z{ > & * z z R=L= ^e{ [ z 4Vn 0 Uj U UUUJ 3 V Uj U 3 ( * U z z R Z z [ ? * j 3 " V : z R Z * `6 VR : j z ` TUUUUUUU * T5v R V [ j : z` ? * T5v 3 * P z` 3 U # n K- [ Uj T U 2 " KI nU z3 KI N T : KI N T 0 K) Z T z N [ j :0 c R U Z 4 0 ( K-P T zx K- K- * T T z . j z 0 K= [ z T N [ j 0 * & V j z [ d{ [ j UU Z je J j * z UU * J UUUUUUUU > UUUU Z 6 UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU " &R j z Z * je * ? * je 3 j r Z / 4v : J. :S9 j n : j / Jn z . J . V " j z 0 2 2 V [ : j z U / 22 j z 4Vn 0 0 Uj U UUUJ 3 V Uj U > U : > :JU z nU{ , > V zj z [ R [ j : Z e * V : . j : j 4 V 0 L=r [ j z T j z ; r 2 V z zx z z UU J : UUUUUUUU > UUUU Z 6 UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU R Z * je * ? * je r Z ? 4v * z : [ j? Jn 3 *J! "I! j N ^e R z Z z 4Vn 0 Uj U UUUJ 3 V Uj U 3 U U z R Z z [ * j VR [ z Z * `6 VR : j z TUUUUUUU * T5v R V [ j : z * T5v ? 4 * " V j : d{` ~ UUUUUUUU UU UUUU b UU UU f UU " * UU UU UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU v UUUU UUUU R Z * je * ? * je Z j ? d r Z 5v 4 w 4v ? * z * U R Z U ? * z T * je R + Z Z ? 4 R F K * j Z 4 > * z z [ * w * w j w * R : Z j z Z * NR5 V * T U z j 2 M R . Z ; + * j Jr FR * [ z Z ? 4 J *R z K * j [ z : / 4 z{ * j F F R *; j Z ? 4 R J K * j j [ : ? 4 R *J K *{ z * j j : * 4 ( R K z * j K z j * * J [ j : z 4 j * * [ j 4 w > [ : *F * j w 1 : * * z * &M9M : [U; P j M1 * > | T z z p " * z R! # o T * z , ? j , w # k zk " " + 0 * Z 3 " b 3 * " * z` 0 R! / o T * : z , # j O zk " " + 0 . * Z " : * j b` 0 . " : * jc * 3 . " *z " J R j * : K h Z [ z * j R Z ? 4 R J K * :? * j * " j ; j 4 > z jx M z j / j w 2 . J; J V j z`. / j w 2 * R KI Z CU : * je J / [ j * J R * j Z * 4 w 0 J j z j` 3 J * . [ * * : R +H! Z z T j * j R z Z * ? 4 J [ j zc / j w 2 . z; J V j z` j w 0 * R KI . Z CU * * je J / [ * J R j Z * 4 * w * w J j z j` * .H- *; T z z N K R z Z * * j J R j Z ? 4 R J V Z z * je * . [ j R F F Z * +z 4 / w " . :1 * . . * z R Z : * j JR Z Z ? 4 3 . * j z * z * J * VR Z X j z Z * j F R Z j Z 4 ~ UUUUUUUU UU UUUU b UU UU f UU " * UU UU UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU v UUUU UUUU R Z * je * ? * je Z ? p r Z j ,j ? $n * z * U R ; z Z` T * je R k Z Z ? 4 R F K * j Z 4 N J z 2 >R)0 * Z{ T U : 1 J & VR U j z Z R Z k * j J FR [ z Z / 4 :c * j FR [ : z Z ? 4 R K z * j j : / 4 R K N : * * j : z ? 4 3 " z * 3 ( . / k *B * * * > " z z > j z` 0 R= ' T : j zh/ # zk " j " ? z0 > Z j 3 " : b # : * " & .R * Z ? * je O J # J Z 2 R [ z Z 4 0 .( z * j{ * JR V Z z` * j ! " R Z Z : ? 4 R J V Z z * je * . : R F F Z * +z / 4 " 2 * 1 * . . * j z R Z : * j JR Z Z ? 4 3 . * z * z * J * VR Z X j z Z * j F R Z j Z 4 UUUUUUUU UUUUUU UUUU b UU UU f UU " * UU UU UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU R Z / * je * ? * je 2 r . j Z ? p r . Z j ,j ? $n * z * U 0 * * j * . * * j 0 : j : U 2 2 : *F : > z z 2 .( : * z` 0 + V. R- z j z T *` "" 3 " V z 3 J)R- T jUC # zk i " " + z0 * Z j 3 " b 3 * R 2 Z * j FR z Z * 4 0 : " z R J V Z z * je * " 2 z R F F Z * +z / 4 " . z1 * . * *: z R 2 Z : * j JR Z Z ? 4 3 " * z 2 : z * J * VR Z X j z Z * j F R Z j Z 4 ~ UUUUUUUU UU UUUU b UU UU f UU " * UU UU UU UU UU UU j UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU : R Z * je * ? * je Z ? v r Z 4v 4v 4v 4v U U z * U 46g ? 46g 2 U U 46g j g 46g R Z z T * je R V Z zk Z K ( 4 6g J " * & + N J > X J z *B 0 H9 : D z; | V " > j z j ,*g 0 R : &0 K : z J V : z jk : j W J * * j z [ j ? $W 3 JI * * ^e z r JI Z ^ z ? * je J [ : 2 ( r R [ z Z ? 4 r . j / * j : ; 0 LI/ & T j z Z 3 & J * 3 V F z jk 2 J K j * V N * j LI N " T * * 0 J R) 2 d T; * J * j : JI U N j U : 0 J Z : r j [ [ f :? 4 3 2 J * Z z F / * j 2 j 3 J J= j ^U 3 N * * z3 J O= j nU J " * T j z1 V U j U z UU 3 " " * z : : * * & * : 1 " " : [ zh # N9 &R D Z z K 2 Z ? * je J [ UUUU R z Z / 4 2 ? * j J 2 z i N F &2 [ j * * V 0 " z N J 2 Z z j U j U z : UUUU r l P [ : j ? 4 3 2 J * Z R F K :? * j 3 2 * Z 3 J & J * j T : ! V U j U z " z & " 2 [ z ` " * z` * V z O) VO) * l D j z D k J * R * z Z * je * R) j J R z Z 4 3 ( O) V D j z J N . * * : OI V * l D z [ jk * *R j Z * je R) j J R z Z 4 . UUUUUUUU UU UUUU b UU UU f UU " * UU UU UU UU UU UU j UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU J Z * je * ? * je r Z ? m r Z 4v 4v 4v 4v U U z * U 46g ? 46g 2 U U 46g j g 46g Z z z T * je R V Z zk Z ; ) 4 ? t#g . j j 1 * * [e j U; * : j l b : & l B WUUUTUUU ? j g * z j "g J N S! : ne [ j $W 0 J > * [ K OM ~ Z :? * je J 2 [ [ r R i [ Z ? 4 J ? * j 3 N J N * : JI N * T j N F * j * ? * V 3 * * * Z : NJI N J( 2 j 0 & : j z [ f :? 4 3 J * Z : 3 F j J * j 0 N * * j : [ 3 OM J T z J & * Z T : V j z j UU j j ,*g * je j g 0 J " * j z * 3 N JR) d z3 HM z N J R [ z Z ? 4 . J * : : . F * * : Z ? * j 3 . J " z3 J > z N : * T [ z / 2 O) j nU; " 6 z & &r z `" 0 ( U z WUUUUUUUTUUU J * K Z :0 N & " & j *z K Z ? * je R r R [ z Z ? 4 ? * j z / * V " " J * T r / j : 0 * - : R r L i :? 4 Z ? * j 3 & : , J- * j T j :1 V j z ` * Z z : ? * je * : R [ z Z ? 4 F * Z :? * j 3 J 2 J/ * [ T : r - j : 0 & > 6 r z j z x UU V Z z * j R V R [ zk Z Z ) 4 n UUUUUUUU UU UUUU b UU UU f UU " * UU UU UU UU UU UU j UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU * R Z * je * ? * je Z ? v r Z 4v 4v 4v 4v U U z * U 46g ? 46g 2 U U 46g j g 46g R Z z z T * je R V Z zk Z K ( 4 6g J . * & + N J * X J : *B 0 O- " D z{ | V z " * j z ? j (g 3 " & : z J V : z jk j W J * * : [ j 0W 0 JI *R * Ne : K JI Z N ? * je J [ [ R z Z 4 * & / * j 2 " J : F z ? * V 3 J% * T ; 3 2 & :3 " J V * z k JI NU j ? j 3 J * 2 * 3 LI * d T; J > * z OI/ U ^ j U 0 J j r i f :? 4 3 J * Z : F / * j 2 3 J J= NU{ 3 N * * :3 J O) [ j NU; J " " j T j 1 2 V U j U z j UU " . * z : " . & "2 : [ 0 " " : z # K= &R D Z z K Z ? * je J [ UUUU R z Z / 4 ? * j J 2 z i N F 2 [ j *z * V 0 l 2 : z N J . Z z 2 U j U : 0 n z [ UUUU R : ; z? 4 3 JR * Z K : F ? * j 3 * Z : 3 J & J . j T z ! 2 V U j U z j " z & "2 [ z " * z` * V z J) VJ) * l D j z D k J * R * z Z * je * R) j J R z Z 4 3 J) V D j z J N . * z JI V : l D z [ k : . 0 * *R j Z * je R) j J R z Z 4 . UUUUUUUU UU UUUU b UU UU f UU " * UU UU UU UU UU UU j UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU J Z * je * ? * je r Z ? m r Z 4v 4v 4v 4v U U z * U 46g ? 46g 2 U U 46g j g 46g Z z z T * je R V Z zk Z ; ) 4 ? t#g . j j 1 * * [e j U; * : j l b : & l B WUUUTUUU ? j g * z j "g J N S! : ne [ j $W 0 J > * [ K OM ~ Z :? * je J 2 [ [ r R i [ Z ? 4 J ? * j 3 N J N * : JI N * T j N F * j * ? * V 3 * * * Z JI N J( 2 j 0 & : j z [ f :? 4 3 J * Z : 3 F j J * j 0 N * * j : [ 3 OM J T z J * & Z T V j z j UU j j ,*g * je j g 0 J " * j z * 3 N JR) d z3 HM z N J R [ z Z ? 4 . J * : : . F * * : Z ? * j 3 . J " z3 J > z N : * T [ z / 2 O) j nU; " 6 z & &r z `" 0 ( U z WUUUUUUUTUUU J * K Z :0 N & " & j *z K Z ? * je R r R [ z Z ? 4 ? * j z / * V " " J * T r / j : 0 * - : R r L i :? 4 Z ? * j 3 & : , J- * j T j :1 V j z ` * Z z : ? * je * : R [ z Z ? 4 F * Z :? * j 3 J 2 J/ * [ T : r - j : 0 & > 6 r z j z x UU V Z z * j R V R [ zk Z Z ) 4 ~ UUUUUUUU UU UUUU b UU UU f UU " * UU UU UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU R Z * je * * je r j Z ? v r Z ? f * z * U V z z " R- kU 0 . . z R * z Z * je R Z Z + 4 . * " : j z F * * VR X Z z Z * j F R j Z 4 0 . . z R * z Z * je R Z Z * 4 . * " : j z * * F VR Z X z Z * j F R j Z 4 ~ UUUUUUUU UU UUUU b UU UU f UU " * UU UU UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU R Z * je * * je r j Z ? v r Z ? f * z * U V z z " R- kU 0 . . z R * z Z * je R Z Z + 4 . * " : j z F * * VR X Z z Z * j F R j Z 4 0 . . z R * z Z * je R Z Z * 4 . * " : j z * * F VR Z X z Z * j F R j Z 4 ^ UUUUUUUU UUUUUU UUUU b UU UU f UU " * UU UU UU UU UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU R Z * je * ? * je R Z ? v r j Z ? j ,j * z * U . * : ; z F . R : z Z ? * j r Z 4 . z z . UUUUUUUU z n UUUU F & UU UU UU UU UU UU UU UU UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU f UUUU UUUU ? * R * Z z j ,je ? * je r J * Z ^U j :1 * . H j: U z R Z U 4v *r U z Z z ? * je 3 *JI j ^U z * R j Z ? 4v r Z U ? 4v 3 J X Z z J Z 4v ? 4 U U 4 UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU z n UUUU V & UU UU UU UU UU UU UU UU > UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU J r Z j ,j% * j% fe 0 " * j z z R Z 4v ? 4v 2 U U U > : R U U z Z / 4v 2 : U 2 U U U 4v ? " J V z ? 4v n o 2 U U U 4v > JE J V D j z ? 4vW n k 2 U U U 4v > JE J V d j z ? 4vW n k 2 U U U 4v > JE J V $ j * z ? 4vW n k 2 U U U 4v > JE J V j z ? 4vW n k 2 U U U / 4v * V Z{ ? * 2 i r U Z / 4 2 * V zh 2 U Z / 4v 2 * zh R Z U / 4 U 4 2 * z R Z U 4 n UUUUUUUU UUUUUUUU UUUUUUUU UUUUUUUU UUUU & UUUU UU UU UU UU UU UU > UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU F UUUU UUUU r Z / e r Z j he : :. R z z Z 4v ? 4v U U U & *. R U U z Z / 4v 2 * U U U U 4v ? " J V z ? 4v U U U 4v > NE J V D j z ? 4vW U U U 4v > NE J V d j z ? 4vW U U U 4v > NE J V $ j * z ? 4vW U U U 4v > NE J V j z ? 4vW U U U / 4v * V Z{ ? * R + Z U / 4 2 * . zh R Z U / 4 U 4 2 * . z R Z U 4 / / N. : . UUUU B Z j z : J * " * * UU * UU V * UU UU UU UU v UU UU UU UU UU UU UU 2 : UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU 2 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU Z B UU UU UU UU UU Z B UU UU UU UU R Z v UU UU UU UU r z UU UU UU UU UU UU & UU UU V Z B UU UU UU " UU UU V Z B UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU : UU UU R Z UU UU UU UUUU B Z j z : J * " * UUUU R r Z Z 4ve V V V V z zh ? * j R JI B U ^ * ` * j% * je * je * je ? * `e JI B B j *: j te ? * j% JI B Z ^ z * Tu% ? * je JI B K ^ z * Tue ? * j% R JI B Z ^ z * Tu% ? * je r JI B K ^ z * Tue * j% r Z Z tu% * je 2 " J * X{ R J)R Z ^ : Z 4v 4v 4v 5v 4 w je ? * je ( R Z z ? * j R JI B U ^ * ` * j% * je * je * je ? * `e JI B B j *: j te ? * j% JI B Z ^ z * Tu% ? * je JI B K ^ z * Tue ? * j% R JI B Z ^ z * Tu% / * je " JI F ^ * `e r K U Z * j% tu% / * je " * jc R Z ? * je R Z z ? * je R JI F U ^ * `e * j * j * j * j ? * ` JI F F j *: j t ? * j JI F Z ^ z * Tu ? * j JI F K ^ z * Tu ? * j R JI F Z ^ z * Tu * j *JI Br j ^ Z * ` * je / 4`e r Z ? * je 2R V Z z ( / j ,je 2 " z :3 J [ [ 3 V2 U j` ZZ 2 B * z Z * Tu% ? * je 3 * V z FL) j n : F r Z ? 4v * * : * *L= Z X j Z * `e F r z Z ? 4v R J) Z N je ? * je ( R Z z ? * j R JI B U N * ` * j% * je * je * je ? * `e JI B B j *: j te ? * j% JI B Z N z * Tu% ? * je JI B K N z * Tue ? * j% R JI B Z N z * Tu% / * je " JI F N * `e r K U Z * j% tu% / * je " * c R Z ? * je R Z z ? * je R JI F U N * `e * j * j * j * j ? * ` JI F F j *: j t ? * j JI F Z N z * Tu ? * j JI F K N z * Tu ? * j R JI F Z N z * Tu * j *JI Br N Z * ` * je / 4`e r Z ? * je 6R V Z z ( / j ,je 2 " z 3 J [ 3 V U` ZZ 3 2 J * Z X; R J) F Z N * j je ? * je ( R Z z ? * j R JI B U N * ` * j% * je * je * je ? * `e JI B B j *: j te ? * j% JI B Z N z * Tu% ? * je JI B K N z * Tue ? * j% R JI B Z N z * Tu% / * je " JI F N * `e r K U Z * j% tu% / * je " * c R Z ? * je R Z z ? * je R JI F U N * `e * j * j * j * j ? * ` JI F F j *: j t ? * j JI F Z N z * Tu ? * j JI F K N z * Tu ? * j R JI F Z N z * Tu * j *JI Br N Z * ` * je / 4`e r Z ? * je 2 * Z : / * `e 2 * V z` 3 R J * Z X; R J) Z N je ? * je ( R Z z ? * j R JI B U N * ` * je ? * j% JI B B * z * `e * je * je j te ? * j% JI B Z N z * Tu% ? * je JI B K N z * Tue ? * j% R JI B Z N z * Tu% / * je " JI F N * `e r K U Z * j% tu% / * je * { ? * je R Z z ? * je R JI F U N * `e * j ? * j JI F F * z * ` * j * j j t ? * j JI F Z N z * Tu ? * j JI F K N z * Tu ? * j R JI F Z N z * Tu * j *JI Br N Z * ` * je / 4`e r Z * je R * 2 2 Z : j Z ? * `e # * V z` 2 " J * X; R J) Z N je ? * je ( R Z z ? * j R JI B U N * ` * je ? * j% JI B B * z * `e * je * je j te ? * j% JI B Z N z * Tu% ? * je JI B K N z * Tue ? * j% R JI B Z N z * Tu% / * je " JI F N * `e r K U Z * j% tu% / * je * c ? * je R Z z ? * je R JI F U N * `e * j ? * j JI F F * z * ` * j * j j t ? * j JI F Z N z * Tu ? * j JI F K N z * Tu ? * j R JI F Z N z * Tu * j *JI Br N Z * ` * je / 4`e r Z ? * je >R V Z z ( / j ,je 2 " z J [ V F2 U z Z K ` ZZ * Tu j ,j > z [ " " JI NU 2 " J :3 J * 3 z 8 K)JI > T NU 0 * 0 j J N * Z R : Z UU Z j 4j * j ,j . " " JI NU 2 " J :3 J * 3 z 8 K-JI * T NU 0 * 0 j J N * Z : UU Z * ? j 4j *MI 6 > n z1 . 2 z Z * j 0 > * z U U # J V : Z zk T{ 2 * V zz Z z ? * j ( R : * / j 4j " { 2 * V zx Z z ? * j ( n : * j 4j > Z z [ z . * : > : z j zx Z Z * j 0 * * U U # J V * Z zk T * V zx ? * 6 3 ( * [ X R J) Z ~ * 6 je ? * je 3 ( R Z z R > Z : ? * j R JI B U ~ * ` * je ? * j% JI B B * z * `e * je * je j te ? * j% JI B Z ~ z * Tu% ? * je JI B K ~ z * Tue ? * j% R JI B Z ~ z * Tu% / * je " JI F ~ * `e r K U Z * j% tu% / * je c ? * je 3 " z` R > Z : ? * j R JI B U ~ * ` * je ? * j% JI B B * z * `e * je * je j te ? * j% JI B Z ~ z * Tu% ? * je JI B K ~ z * Tue ? * j% R JI B Z ~ z * Tu% / * je " JI F ~ * `e r K U Z * j% tu% ? * je *R V Z z ( / j ,je 2 " : 3 J 3 V Uxt ZZ j{ V V V : z z Z`h ? * 6 3 ( * [ X R J) Z ~ * 6 je ? * je 3 ( R Z z R > Z : ? * j R JI B U ~ * ` * je ? * j% JI B B * z * `e * je * je j te ? * j% JI B Z ~ z * Tu% ? * je JI B K ~ z * Tue ? * j% R JI B Z ~ z * Tu% / * je " JI F ~ * `e r K U Z * j% tu% / * je c ? * je 3 " z` R > Z : ? * j R JI B U ~ * ` * je ? * j% JI B B * z * `e * je * je j te ? * j% JI B Z ~ z * Tu% ? * je JI B K ~ z * Tue ? * j% R JI B Z ~ z * Tu% / * je " JI F ~ * `e r K U Z * j% tu% ? * je *R V Z z ( / j ,je 2 " : 3 J V Ux ZZ JI F j n Z / j 4j 2 c V j Z z` ? * j ( , : * ? j 4j " * : zx TU r Z i * j ? 4v R r 2 Z Z ? 4v 3 2 R K Z ? 4v Z 4v ? j w Z 4v ? w R Z j t% j ,j * : j " " JI ^U 2 " J z J * j K) R) j ^U{ j nU; 8 0 * j J N * Z : : UU Z j 4j ? * FKA NU * j * ` R Z [ Z * j j 4j je ? * je ( R Z z ? * j R JI B U ^ * ` * je ? * j% JI B B * z * `e * je * je j te ? * j% JI B Z ^ z * Tu% ? * je JI B K ^ z * Tue ? * j% R JI B Z ^ z * Tu% / * je " JI F ^ * `e r K U Z * j% tu% / * je " * jc R Z ? * je R V Z z ? * je R JI F U ^ * `e * j ? * j JI F F * z * ` * j * j j t ? * j JI F Z ^ z * Tu ? * j JI F K ^ z * Tu ? * j R JI F Z ^ z * Tu * j *JI Br j ^ Z * ` * je / 4`e r Z ? * je 2 FR F Z Z * 6 je ? * je ( R Z z ? * j R JI B U ^ * ` * je ? * j% JI B B * z * `e * je * je j te ? * j% JI B Z ^ z * Tu% ? * je JI B K ^ z * Tue ? * j% R JI B Z ^ z * Tu% / * je " JI F ^ * `e r K U Z * j% tu% / * je " * jc R Z ? * je R V Z z ? * je R JI F U ^ * `e * j ? * j JI F F * z * ` * j * j j t ? * j JI F Z ^ z * Tu ? * j JI F K ^ z * Tu ? * j R JI F Z ^ z * Tu * j *JI Br j ^ Z * ` * je / 4`e r Z ? * je F Z * j f B " UU UUUUUUUU " UU UU UUUU UU UU f UU " * UU UU UU UU UU UU J r f n UU UU j UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU j z z z / * z 4Vn ? 4Vn * 3 J N+ (( ( 8( z3 8 [ b Z bh / j be ? * je 3 H z F * Z j h& 4v& 0 p z( zx 3 * p ( zx 3 * p ( zx * p ( zxV " z( zx* * R* * z " ( z`* * 2 R* * 3 " VP* zo. 3 " V / zo. z 3 ( 3 ( Z j :3 Z Z 3 * Z j 3 . : zh 3 : ( j # : : ( " : 2 N+ ( 3 J+ * j3 z3( 3 K; FK; ( j3 z3( F3 :3( j t?g 0 N; F :N; j3 3( : ( 3 + : 3 3( z . F [ 3 3( j z 46g " z * R Z z T j 4j r U Z 4 * z 46g Z Z * j ,*g 0 Z * 3 J N ? "3 J N J N z * b 0 ^ U Z j t?g / 46g @ / j ,*g " J z 0 2 2 j j T5g ? T5g Z * j t?g / .g * zh ? .g # " : : z`* 2 : : " : " z Z j " j ,* 0 * . z O J z 0 * : Z j * JK 2J/ NU Z j NU ? j 7f 3 V * * z k z R J Z * *j * 7& * . * Z Z ? j 4j 3 O J 0 * Z * JK .J3 nU Z nU{? j , 7f Vr z [% k * J N * * Z 0 ? * 7f 0 j 4j . " *@ * Z j t? V j z 46g & UU 46g . " " z j :UU j ,*g 2 J j Z [ j UU J * Z zUU J * [ Z [ 0 J . [ Z j : 3 . Jk Z [ 3 J Nr [ : . z Z j 46g . V * z jk 0 J V * z jk z Z / j t?g 2 > z 3 J * JM J d j * R Z [% * * J * * z * * z * . J * T * z ** ? j 4j KMKI : D NE j ) . [ j z k : 0 [ :WUUUVUUU " V z Z V zx 2 z j j V V U z zh UUUU 2 * * Z 56 ? 46 # V `^UUZZ * j "g ? j t?g * Z 56 ? 46 # V `^UUZZ * j "g ? j t?g 2 * : Z 56 ? 46 V . * z B`^UUZZ j "g j "g j t?g / j ,*g 2 " J 2 z . V. zk V . [ z jk : * * * *W / j ,* ; * * p J *R) [ j n ? * *W 3 J- JR) * d :3 JM Ne :3 J * P :3 * . * : * J * B F *R z *: Z * j ? * j6 3 J * * T F J F T z ? j t? # " . V z zh " . > 1 2 2N)p > z D Z z 3 * j H K z * J * : * Fj R * j Z ? * j 3 J * * j T; N F * [ *z? * j . . T{ ? 46g . f U ? 46g O) >o D Z : z` / 46g 2 :/ $.g " * . z * V z N) VN) * D j z D k 2 " z N J : / * *g " J * z N F *R *z Z / * j 2 " * T{ ( J z / * T5g 2 ( * V z N) VN) * D j z D k z ? * *g 3 J N z # N J : " J * z N F *R *z Z / * j 2 " * T{ ( J z * T5g ? 46g # zc 2 * V z 3 . " : zc 3 . " : z J V { z` 0 O) * * d Z { * [ T; J r [ Z * Z ? 4 R #V z Z j 4j R Z U ? * j r Z 4v Z j he R Z U ? * j r Z 4v UUUUU * 0 g s # " { ; F 8 K n $ P C r b 7 % ) U U U U f B " UU UUUUUUUU " UU UU UUUU UU UU f UU " * UU UU UU UU UU UU J r f n UU UU j UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU j z / * z 4Vn ? 4Vn * 3 J N+ (( ( 8( z3 8 [ b Z bh ? j be R> j ? * je 3 H z F * Z * j& * j& ? j b& # H z 0 0 0 ( ( z ( zxv 0 ( zo U * VP> zo U 0 V ? U zo U 3 " > " U z U :3 zo U # JK * U3 U " z [ j z R Z z T j 4j r U Z 4 ( . j zx " " z j z * : : : * N . j * . . * [ : j ? 46g r z j j * ? T5g " " r z z/ 46g z ? j " & j [ 0 . : 3 O J 3 " K# nU; * KK N > T Z Z ? j , fK 3 V * zk z R J Z * * &{ > * Z K ? j 4j& " J 0 . j O J z 0 . Z j * KK .K3 nU Z nU{? j , f# # r Vk [% zk z " J * ? * f 3 0* 0 r *D * ? j 4* J * Z ? j t& " V z [ j z 46g " : > U : Z j UU 2 " : z3 > : " Z j 3 J : Z j z J : j Z j :0 V . z jk z 3 J . j : r KIr ^U [% z :R $ z Z ? * j # > V j [ zh " " NI ^E :" " LIr ^u z : 0 V j j z 3 V j z z # > * [ j z c 2 * N * *z * : * *g . . : 2 R Z * * j : V V z U zh UUUU ? 46g " : > > ? 46g 3 > JR! d 3 OM O) ~ 3 O= 3 * :3 J N 3 J * * 3 J N * * B " j F F *r *: Z ? * j J * * T * j6 ? * j J * * T > J > T TUUU > & & z z ` 0 ( ( TUUU J . N F .r * Z / * j " . T 0 J & : z x 3 : 3 3 > V zk # NI ~E c 2 * V z 3 & * c 3 & * # * J * z 2 " * z :3 V zk j 3 V [ : z 3 O! * d : 3 * T{ r J Z * z? 4 R #V z Z j 4j R Z U ? * j r Z 4v Z j he R Z U ? * j r Z 4v UUUUU * 0 g s # " { ; F 8 K n $ P C r b 7 % ) U U U U F B " UU UUUUUUUU " UU UU UUUU UU UU f UU " * UU UU UU UU UU UU J r f n UU UU j UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU z z / * z 4Vn ? 4Vn * 3 J N+ (( ( 8( z3 8 [ b Z bh / j be ? * je 3 H z F * Z j h& 4v& 0 p z( zx 3 * p ( zx 3 * p ( zxV * p ( zxR " z( zx* * R* * z " ( zx* * R* * 0 " VP* j zo. 3 " V / zo. z 3 ( 3 ( Z j :3 Z Z 3 Z j 3 . : z` 3 : ( j # : : ( 2 : 3 ( N/N+ j 3 J+ * j3 :3( 3 K; FK; ( j3 z3( F3 :3( ? j t?g 3 N/ F * ( 3 3( z3 : [ 3 3 z . F [ 3 3 j z 46g " z * R Z z T j 4j r U Z 4 * z 46g Z Z * j ,*g 0 Z * 3 J N ? "3 J N J N z * b 0 ^ U Z j t?g / 46g @ / j ,*g " J z 0 2 2 j j T5g ? T5g Z * j t?g / .g * zh ? .g # " : : z`* 2 : : " : " z Z j " j ,* 0 * . z O J z 0 * : Z j * JK 2J/ NU Z j NU ? j 7f 3 V * * z k z R J Z * *j * 7& * . * Z Z ? j 4j 3 O J 0 * Z * JK .J3 nU Z nU{? j , 7f Vr z [% k * J N * * Z 0 ? * 7f 0 j 4j . " *@ * Z j t? V j z 46g & UU 46g . " " z j :UU j ,*g 2 J j Z [ j UU J * Z zUU J * [ Z [ 0 J . [ Z j : 3 . Jk Z [ 3 J Nr [ : . Z Zz 46g . V * z jk 0 J V . z k z . : Z z? j t?g 3 J * [ z JM J d j * R Z j [% * * J / * z * / * z * . J * T * z ** ? j 4j KMKI : D ~E j , . [ j z k : 0 [ :WUUUVUUU " V z Z V zx 2 z j j V V U z zh UUUU 2 * * Z 56 ? 46 # V `^UUZZ * j "g ? j t?g * Z 56 ? 46 # V `^UUZZ * j "g ? j t?g 2 * : Z 56 ? 46 V . * z B`^UUZZ j "g j "g j t?g / j ,*g 2 " J 2 z . V. zk : V . [ z jk * * * *W / j ,* * * p J *R) [ j n ? * *W 3 J- JR) * d :3 JM Ne 3 J * P :3 * . * : * J * B F *R z *: Z * j ? * j6 3 J * : J J F Z T Z ? j t? # " . V z zh " . > :1 2 >N) 2 : D z j * H ? 46g 3 j j * j J N * j N F *R *z Z ? * j J F * [ *z? * j 3 * * Z Z f J U U ? 46g O) 2 D z z` / 46g 2 :/ $.g " * . z` * V z N) VN) * D j z D k 2 " z N J : / * *g " J * z N F *R *z Z / * j " " * T{ " J z/ * T5g 2 ( * V z N) VN) * D j z D k j : ? * *g 3 J N z # N J : " J * z N F *R *z Z / * j " " * T{ " J z * T5g ? 46g # zc 2 * V z 3 . " : zc 3 . " : z J V { z` 0 O) * * d Z { * [ T; J r [ Z * Z ? 4 R #V z Z j 4j R Z U ? * j r Z 4v Z j he R Z U ? * j r Z 4v UUUUU * 0 g s # " { ; F 8 K n $ P C r b 7 % ) U U U U f B " UU UUUUUUUU " UU UU UUUU UU UU f UU " * UU UU UU UU UU UU J r f n UU UU j UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU j z / * z 4Vn ? 4Vn * 3 J N+ (( ( 8( z3 8 [ b Z bh / j be ? * je 3 H z F * Z * j& * j& ? j b& # R* H z * z ( ( z j( zxt ( zo U * VP. zo U 0 V / U zo U 3 " . " U z U :3 zo U # JK . U3 U " z [ z R 2 Z z T j 4j r Z z 4 V ( * j z z * * * * N . : j z * * [ [ : j ? 46g "2 2 Z z z j * ? T5g " :2 2 Z : j z 46g ? j ,* >+ j 0 : z 3 O J 3 " N? nU{ * NK N " T Z Z ? j fO 3 V z ? k R J Z * [5 B * & "2 > * b : ? j 4j& J 0 : O J 0 : Z * NK :N3 nU Z nU{? j f' # r V [% zk " J * ? * f+ 3 2 * 2 *F * j 4* J * Z ? j t& :2 V : j z 46g 2 : : U Z UU 2 " . : :3 . : : . Z z3 . J : Z [ : . J : Z : : V. : z k J :2 j [5j 0 NI ? nU ? 0 R : Z $ : ? * j # :2 V j zh " " NI NE z2 " OI ~u 3 [ j 3 2 V z 3 2 V z # + " : * ? * *g 3 N * *z " z + 2 2 R [ Z * * j 1 > V V j z U zh UUUU * " * " ? 46g 3 * JR! d J NR)S! n ? 46g 3 J% j :3 . 3 * 3 J * 3 J * . :3 * J " : * B . j F F *r *: Z * j * * * T TUUU * j6 ? * j J * * T * " . " Z z j ( TUUU " J * : N F *r *: Z / * j " * T;0 " J j z 3 : 3 3 . V zk # OI ^E zk 2 * V z 3 " > z k # " > z " " J : :2 " . : : 3 * V. zk V z z` 0 J! * * d j : Z j [ { * T{ J r * z Z ? 4 2 R #V z Z j 4j R 2 Z U ? * j r Z 4v Z j he R Z U ? * j r Z 4v UUUUU * 0 g s # " { ; F 8 K n $ P C r b 7 % ) U U U U f B " UU UUUUUUUU 2 UU UU UU UU UUUU UU UU f UU " * UU UU UU UU UU UU J r f n UU UU j UUUU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU / * z / 4Vn U 46g 5Vn * / 46g * V( z` ? N5g 3 " * V B( z` 3 . * " Z z 3 * * *: 3 * J B * Z F J F * Z : * * j ' ?g J F Z N5g I I * * y L 1 . Z y L 3 ( : Z 3 V J z " j :( z`( 0 Z : ( z 3 z { 0 j ( z Z ( 3 ( ( z 3 3 . . " : * j z " J B . Z z? * * F J F . Z z j ' ? ?g J F Z Z5g H * *Z j V y L 1 . ( Z j y L 3 ( Z 3 V J Z z " j z( z`( 0 Z z Z ( z 3 Z z { Z 0 Z : Z ( z j ( 3 ( : ( z 3 : z : 3 " * V z {` UU # * j 2 : 3 j * j j * *( ( z( ( z *` TU 2 R) jUC ( Z bhx / j be ? * je 3 H z Fr * Z j h& j( z ( zx * VP* zo. z 0 V + z Z jo. : # . * z ( 2 " zo z JK . ( 3 z * V z ( * 2 * c # " * V z`* 2 * # "JJ + j > . z 2 " R+ z# " 3 : z * " J z * z UU 0 * " [ Zz :UU 3 J * Z [ z J J) : [ NU * / * b * . F F * * z * * . 2 K Z ? j 4 : * K / : 0 . Z * 3 J [ j Z KKK# "H/ T ~U Z nU;? j , Wf H# V " T z Z jk z? j f 3 V z : k : . & * * z " & : b : / * W&/ HI V d z * k z / * & J V & Z z * k ? 0 * [5 b 4 2 i [ : Z 4 2 Z U ? * j 2 Z 4v Z j he 2 Z U ? * j 2 Z 4v UUUUU * 0 g s # " { ; F 8 K n $ P C r b 7 % ) U U U U J ^ B UU j * r UU UU UU > UUUU 6 UU UU UU Z B UU UU UU UU UU UU UU UU UUUU UUUU : 3 " V V z z "" 3 ( R V Z z R r K Z * j% ? * je r R Z K z * * j% ? * je ( R Z z * * je / * je r Z ? * je R Z z * ? * je R! " jU; z * je 0 * V z Z zp # ( R V Z z f 2 * V z` 3 R Z z l [ z z ? Jn ( R Z zx ? * je * j z0 . j : [ z` 3 R [ z Z R V Z z z 0 R [ j Z z R Z n / * je z 0 . z [ z R Z z $ 1 V V V z zxl TUUUUUUU # ( R V Z z ( * V z`> 0 * V : z [ j 3 " zx. z z ? Jn R J! Z NE zx ? * je " j . : [ j z ` { 0 V V z z [ jx # . j z zx z ? Jn ( R Z zx ? * je * 0 . V z z 3 . . j : z` [ z ? Jn R Z z z ? * je . : 0 . j j z` 3 * V zx . * { * J- V T z . * V zx 0 * V z * . . : z jh V [ j zx 0 V [ j z " z 0 *R z j Z F 3 " " V z`( 3 " V z`+ # " V z` 2 R V Z z z p 0 R j Z z ~ R Z n / * je z 0 . z [ z R Z z j 0 V VR V jz Z *z # ( R V Z z 2 * V zx& 3 * V : *z j j " . z [ p ? Jn ( R Z z * je * z jc V f [ i z` 0 * . j j . J : . z j z 2 s " j z V V j z j zp ? Jn ( R Z zx ? * je . * V z j z 0 . . * : z` . z ? Jn R Z z z ? * je . : * z j z` . . [ : c 0 V V . z j z ` 3 . j 3 . [ : j : z * R j z j : Z 0 " V j *z`+ # V V [ jz z` 2 R V Z z z 0 R j z Z z R Z i n ? * je R Z : . z z` * je r K Z Z j j 4je N n UU j : j UU UU UU UU UUUU 6 UU UU V UUUU UUUU 3 " * V z z` 3 " V : z` " R V : z` 0 *P [ z` [ z Jn 0 * J j z 3 r J Z : 3 V V V z zx( # " V : z`T 2 * V z " . V : z` * P j j z ? Jn *K) NE * J zk z j 2 zc V V j z z` . * P j j z / Jn 2 * z` * * V zx * * J j [ z j ? Jn j z` 0 * * J j [ z j 3 * V : z 3 * * { 3 K) * V T z ) 3 * V : z 3 * V : z * * 0 * J Z j z 3 " V z z` # " V z z` 2 * z 3 r *J Z : > 3 " * V : z`& 3 " ]) V nU; z`" 3 " V : z`. r R J Z : . 0 V V V jz [ *z` # " V : z`7 * V zx * . V * : j *z 1 . *P j z zx * z ? Jn # * j z` 2 :{ 3 ( V [ V z * * z * J J j z [ ` { VP V j z j zx / Jn 2 * zx * * V j z 0 * * *J j zx * z : ? Jn 3 j z # * *J j z` * { 0 * V V z j zx * j * J [ z j * j c 0 * V j *z ( 3 V V [ jz z` 3 r ])J Z nE; ( r J Z je J UUUUUUUU UUUUUUUU UUUUUUUU z n UUUU ^ & UU UU UU UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU . UU UU UU UU UU UUUU UUUU * R R *2 Z z Z * j% * je J * *2 Z j Z 0 * [ z * z [ R R Z Z * j ? * j r Z ? * 6 R Z * j 1 .2 [ : Z z R R Z Z * j ? * j r Z ? * 6 R Z * j .2 [ : Z z` ? * je R J Z z` * j ? * j r Z ? * 6 R Z * j .R [ : Z z` * j ? * j r Z ? * 6 R Z * j 0 .R [ : Z z ( 2 V Z z * je R JI R Z ~U [ z Z j ,j ? * j r r Z Z * 6 ? * j Z * `e * 2 UUUUUUUU UUUUUUUU UUUUUUUU z n UUUU F & UU UU UU UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU . UU UU UU UU UU UUUU UUUU : * ? R J Z : * je 2 U z [ z Z * ? * je 2 , z : * *v / * W " R Z 2 z / * jW R Z ? * je :. Z z ? * je 2 , z : * *v / * W " 2 z * jW > ( V [ j z * jW ? * jW . 2 [ z * W V U z j ? nW 2 z * W > V j z z * jW ? * jW 2 [ z * W > V j { * jW ? * jW [ z * W > V [ j : *z * jW ? * jW [ z * W > V j z z * jW ? * jW [ z * W > V j z * jW ? * jW * r [ z * W * > V j z` * jW * ? * jW [ z ? * W ( V K z * jg ? * j R U z * ? ? * je ( r V Z z * jg * `e * jg > ( V j z * jW * ? * jW f : * `W * * W > ( V j z * jW ? * jW * r j : * `W * W * > ( V j z * jW ? * jW [ j : * `W * W > ( V [ j *z * jW ? * jW j : * `W * W > ( V j { * jW ? * jW f : * `W * W > ( V j z * jW ? * jW 2 [ j : * `W * W > ( V j z ? nW 2 j : * `W * W > ( V [ j z * jW ? * jW 2 . f : * `W * W > R [ Z ? * je 3 ( R Z z Z * j ? * je r Z ? * j R [ Z ? * je ( . Z z * j ? * je r Z * j * j UU K z j Z * z Z * j J j * j J : j J Z * Z * j : z * J z U T W V zQ Q jS ZR R ] *\ _ z^ ^ Y :X z[ [ Z E :D G JF F Z@ @ C B *M L O N ZI I H :K Zu u t w v zq Zp p s r } z| j~ Zy y x *{ z je Zd d g *f a ` ` c b Zm m l o n :i h jk Jj j * z : Z * z * z : j J5 = ? Z9 :8 : z$ Z' ' & ! * # J" z- Z, Z/ / j z j Z : : Z Z J j : z UUUUUU UU UU UU UU UU UU UUUU Z J j * z " * : 2 : . UU UU Z B UU UU UU UU R N UU UU UU UUUU UU UU UU UU UU UU UU UU UU * UU UU V Z B UU UU UU 6 UU UU J UU 6 UU UU UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU > UU * UU V * UU UU UU UU v UU UU UU UU UU UU UU 2 : UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU Z B UU UU UU UU R Z v UU UU UU " UU UU R F N UU UU UU UU r z UU UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU : UU UU R Z UU UU UU . UUUU UU UU UU UU UU v UUUU Z J j * z " * : 2 : UUUU Z * je * " . Vr z j z Z` / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j . J j Z z R Z * je 4`e 3 " 2 V z z` 3 " R) V jU{ *z` Z j ,je / * j% 2 * j 3 B z : r J K Z j 4j% ? * j B B j / j 4j% * j% B J U / j 4j% R * j% ? * j% r * j " " z ZZ J ? j ,j% J . ) Z Z J Z z Z Z * [ j Z J= R T j K j 4j% ? * % R r K U z * j * j j ,j% " z [ j 0 KM * [% ^U * : 3 N . Z z J *K= P j ~U; R- j z nU{ 8 [ b J . . j j j Z:UU Z N * [% * z * . j [ : ? j 4j% " R) nU{ ? * % * z * j% ? * j% # z " . j " " J * X{ " J) ^ je ? * je . r Z z / * je " JI F ^ * `e . J Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j . J Z z R Z * je / 4`e " . :c Z ? * je r Z z` / * je " JI F ^ * `e . J Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j . J Z z R . Z : * je ? 4`e * V Z z ( / j ,je 2 " : z3 J 3 V F U Z ZZ R Z j 4je 0 " * z z Z ? * je " : z 0 ZI [ ^U Z z Z / * j . k / * je 2 * zh Z * je * j . . + z` 2 * V z 2 : Z z? j 4j B j Z K * j 2 ( F Fr : j 4 ? * : 2 NE z Z ~U * j * ` JE T Z / j 4j 2 k 2 Z z K * j% * j * j * j ? * ` :NI F F * / j 4j " ( : * J j z * J j z` r r [ Z Z * j 0 : * U U # J V : Z zk T; * V zx ? * 6 3 ( : X; N9 2 Z N * 6 je ? * je ( r . Z z / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R Z * je / 4`e " : c Z ? * je r . 2 Z z` / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R : Z * je ? 4`e . V Z z ( / j be 2 " . . :3 2 J # V U` ZZ 2 : : 3 2 J zx 2 2 Z ? * j # " :RU : jU{` c 0 V V V V : z z`4 r Z ? * 6 3 ( : X; N9 2 Z N * 6 je ? * je ( r . Z z / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R Z * je / 4`e " : c Z ? * je r . 2 Z z` / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R : Z * je ? 4`e . V Z z ( / j be 2 " . . :3 2 J V U` ZZ KI F r [ j n Z ? j 4j 3 J * z zx TU 3 ( R V z R J) Z n z * je F FR j Z / 4v R * j% Z [ i 4v% ? * je ( . Z ? je F Z je ? * je ( r Z z / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R Z * je / 4`e " * :c Z ? * je r V Z z` / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R * Z : * je ? 4`e F F Z Z * 6 je ? * je ( r Z z / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R Z * je / 4`e " * :c Z ? * je r V Z z` / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R * Z : * je ? 4`e F Z * j ( V Z z`\ ? * je 3 * * V z 3 " * V z # 3 " * V * z " 3 " * V j :z - 3 " * V j *z , 3 " V V z zh # * * * * k 2 * V z * * k 0 V V * V jz zh # * * j j 2 : X{ N92 Z ^ : je ? * je ( r . Z z / * je " NI F ^ * `e . J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j . J Z z R Z * je / 4`e " : c Z ? * je r . 2 Z z` / * je " NI F ^ * `e . J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j . J Z z R : Z * je ? 4`e . V Z z ( / j he 2 " . + : z3 J 2 VR= U jU{h ZZ " B *r Z : : K R) Z nU; 4v% J j : j T * je 0 J N & U [ : N. F j 4je 0 . J z 2 Z * j ? * j 3 . J z # > * j : " * OU ^U{ * 2 k # " V V z zh R Z ? * je ( R V Z zh ? * je ( R V Z zh * je ? * je Z * je 0 2 . . K ZZ J 3 r ) Z : Z Z J2 z Z * [ Z j ,j J- *R T j K j 4j ? * R R Z * je * j j ,j " z [ j 0 KM * [% ^U * : 3 N . Z z J *K- P j ~U R- j z nU{ 8 [ b J . . j j Z:UU Z N * [% * z * . j : : ? j 4j z ? * JI Z ^U z * je ? * je 3 J K z# ( . j z 2 " J * X{ J) Z ^ je ? * je r Z z / * je " JI F ^ * `e . J Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j . J Z z R Z * je / 4`e " . :c Z ? * je r Z z` / * je " JI F ^ * `e . J Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j . J Z z R . Z : * je ? 4`e * V Z z ( / j ,je 2 " : z3 J 3 V F U Z ZZ R Z j 4je 0 " * z z Z ? * je " : z 0 ZI [ ^U Z z Z / * j . k / * je 2 * zh Z * je * j . . + z` 2 * V z 2 : Z z? j 4j B j Z K * j 2 ( F Fr : j 4 ? * : 2 NE z Z ~U * j * ` JE T Z / j 4j 2 k 2 Z z K * j% * j * j * j ? * ` :NI F F * / j 4j " ( : * J j z * J j z` r r [ Z Z * j 0 : * U U # J V : Z zk T; * V zx ? * 6 3 ( : X; N9 2 Z N * 6 je ? * je ( r . Z z / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R Z * je / 4`e " : c Z ? * je r . 2 Z z` / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R : Z * je ? 4`e . V Z z ( / j be 2 " . . :3 2 J # V U` ZZ 2 : : 3 2 J zx 2 2 Z ? * j # " :RU : jU{` c 0 V V V V : z z`4 r Z ? * 6 3 ( : X; N9 2 Z N * 6 je ? * je ( r . Z z / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R Z * je / 4`e " : c Z ? * je r . 2 Z z` / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R : Z * je ? 4`e . V Z z ( / j be 2 " . . :3 2 J V U` ZZ KI F r [ j n Z ? j 4j 3 J * z zx TU 3 ( R V z R J) Z n z * je F FR j Z / 4v R * j% Z [ i 4v% ? * je ( . Z ? je F Z je ? * je ( r Z z / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R Z * je / 4`e " * :c Z ? * je r V Z z` / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R * Z : * je ? 4`e F F Z Z * 6 je ? * je ( r Z z / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R Z * je / 4`e " * :c Z ? * je r V Z z` / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R * Z : * je ? 4`e F Z * j Z ? * je R * Z ? * je 2 2 ZZ J J = J Z * Z o Z ! V z` TUUUUUUU " * V z`d * V z R " Z z z`l ? * je . K ? * je ( z / Jn " 2 " 3 " z` . Z j ? * j # R " Z z z " c 2 " > * z X{ J- Z ^ z je ? * je ( r Z z / * je " JI F ^ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R Z * je / 4`e " . :c Z ? * je r Z z` / * je " JI F ^ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R . Z : * je ? 4`e > V Z z ( / j ,je 2 " z z3 J [ VR) B U jU{ ` ZZ Br f : K Z 4v% * je F J U ( j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z 3 * * j : " JU z ^U{`F 0 . j : z`L R V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z ? * j # " . : z 2 zcn # V V V z z`$ " * V z` " * V zh * V z " R j z Z`\ ? * je . j K ? * je ( z / Jn " 2 " 3 H- D zx . Z * j "R z Z z 2 cx 3 V V z z`d . j : R * . Z z jh * je ? * je : z / Jn z 2 . UUUU 0 j j z 2 Z [ ? * j 3 " . V z z [ j z Z * j UU/ * j 2 j 4j . *R j Z z ? * je 2 [ j z / * je z ? Jn # : Z z : 2 " . " zh ? * j UU 2 [ j 4j " * R j [ j z Z 2 * V z` R Z Z * j UU * j * j / * j + ? *n 3 J z ". j ? * j # . { 2 * V z " 3 " V z 3 " V z R Z Z * j UU * j * j / * j + ? *n # J z " . ? * j . . z *R j Z z UU " * V z 2 * V z` R Z Z * j UU * j * j / * j ? *n 3 J z . ? * j # . jc 2 * V z 3 * . j :k 3 " * V z z ( 3 * V [ z z # * z 2 " " * : X J- Z ~ z je ? * je ( r Z z / * je " JI F ~ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R Z * je / 4`e " . c Z ? * je r Z z` / * je " JI F ~ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R . Z * je ? 4`e > V Z z ( / j be 2 " z 3 J [ VR) B U jU ` ZZ Br *: K z Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z 3 * * : " JU z ~U{`D * .R V z Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; * j * "R V : Z z ) / * je 2 / * je 2 z / Jn . z Z * j 0 " z` R V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z * j 0 " j j R V Z : zx) / * je ? * je ( z / Jn : Z * j 0 " [ z` 3 " V z z` R J- V Z nU{ z`. ? * je ? * je ( j z ? Jn 3 Z z Z ? * j R * V Z z z`. ? * je j ? * je ( j z ? Jn 3 Z z Z z / * j 2 c 3 " V V z z` # V V V z z` FF " * V z` * V zp " " R j z Z` / * je H ? * je * j z / Jn " z " 1 . z j` . [ j : z ? * ?W 3 " V z z` 3 " " V z z` Z z j -*g / j 4j 2 c Z 56g ? 4 # R " Z : z c` : . R j z Z`h / * je K ? * je * z / Jn 2 z > j 1 z j` 2 > [ j : z ? * ?W " V z z`0 0 : V z Z z Z z z j -*g / j 4j c 56g ? 4 3 . [ : z`( R Z / * je K ? * je * z / Jn " " ! z j` 2 * V z "R j Z * j / * j " KI2 NE ? n 3 : . Z [ * j / * j " KI2 NU * j ? *n # : " . / * j 2 zc .R * j% / * j% " KI2 Nu z/ Jn 2 " : . Z [ j : * ? * j% 2 z / * j% " KI2 NE :/ n " " : " . : * * j% ? * j% 2 KI2 NU / n 2 " ? j 4j 3 . [ : z` UU 3 R . Z : z UU # " V * zk z . Z * . Z J J ) J : Z * Z z 2 zcP # . * V Z j z` " . z 2 " " * : X{ J- Z ^ : je * je r J Z j z / * je " JI F ~ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R Z * je / 4`e " . c Z ? * je r Z z` / * je " JI F ~ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R . Z * je ? 4`e > V Z z ( / j he 2 " z 3 J [ VR) B U jU h ZZ Br ; K z Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z # * * : " * JU ~U{` * V zx 0 " z` R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; * j " .R V j : Z z`. ? * je K ? * je ( z ? Jn 3 Z : Z * j " [ z` c^ " j z`D . R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; * j " j zx 2 c` J) Z ^ je ? * je r J- Z nu{ z / * je " JI F ^ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R Z * je / 4`e " . :c Z ? * je r Z z` / * je " JI F ^ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R . Z : * je ? 4`e " V Z z ( / j he 2 " z3 J VR) B U jU{ x ZZ Br KA ; K n { Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z * * j : 0 JU f ^U{` " . V : z` * .R V : Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; ? * j ( R V Z z`. ? * je K ? * je ( z ? Jn) 3 Z : Z * j 0 " " z z`z R H) V Z ^E; z . / * je K ? * je ( z ? Jn 3 Z : K Z K * j .H)R V ^U; Z z . / * je K ? * je ( z ? Jn 3 Z : K Z K ? * j # " j z z` 2 c> R > V Z z z`. ? * je N ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`) / * je N ? * je ( z / Jn 2 z Z ? * j R > V Z z z`. ? * je N ? * je ( z ? Jn) 3 Z : Z ? * j R * V Z z z ) / * je 2 / * je 2 z / Jni 2 . z Z ? * j 3 * z` R J- V Z ^u; z`. ? * je ? * je ( z ? Jn 3 Z : Z ? * j R J- V Z ^E; z`. ? * je ? * je ( z ? Jn 3 Z : Z ? * j R J- V Z ^U; z / ? * je ? * je ( z Jn 0 [ : Z Z : ? * j R . V Z : z . / * je ? * je ( z ? Jn 3 Z : Z ? * j # * z z 2 c # V V V jz *z` " * V z` " * V zx * V *z` 1 : " z j z jh R [ Z / * je K ? * je ( z ? Jn # * Z z 2 " z ? * j # " . z { 0 2 2 V [ j : [ z * ./ z : 0 " J j j z j` 3 j{@ 3 V V jz zhN . Z 1 : J . j j z hr : :R Z / * je H ? * je * j z / Jn 2 z j 1 z x Z { Z ? * j 3 " : V z zx 3 : " V j z : R : Z :/ * je 2 ? * je 2 z Z :/ jn / * V UU " . ? * V 2 + z [ * V ? j 4 V 3 " . z zx( R Z : Z / * je K ? * je ( z ? Jn # . j : 2 " . z ? * V UU [ : * V ? j 4 V 3 * . z z 3 :{ Z : z * V UU * V TU? * V 2 : * V ? j 4 V 3 " . z z R Z : z/ * je 2 ? * je ( 2 z ? Jn # : [ " . z1 e [ zx TUUUUUUU J Z j * j ? * ` 2 ? * j 2 ? j 4j 3 " . z z` 2 :{ ( . . : [ z k : j . j z` UU z . j jc 0 * V j *z + 3 V V jz z` 3 ( > * j j X{ J- Z ^ z je ? * je ( r Z z / * je " JI F ^ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R Z * je / 4`e " . :c Z ? * je r Z z` / * je " JI F ^ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R . Z : * je ? 4`e > V Z z ( / j be 2 " z z3 J [ VR) B U jU{ ` ZZ Br f j: K Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z 3 * * j : 3 *JU z j ^U{` 3 " . V : *zh R . V Z z`. ? * je ? * je ( j z ? Jn 3 Z : Z ? * j R > V Z z z`. ? * je ? * je ( j z ? Jn 3 Z Z ? * j R . V Z z`) / * je ? * je ( j z / Jn) 2 z Z ? * j 3 j z` R V Z : z . / * je ? * je ( j z ? Jn 3 Z : K Z K ? * j R * V Z : z . / * je ? * je ( j z ? Jn 3 Z : K Z K * j " *R V j : Z z . / * je ? * je ( j z ? Jn 3 Z : K Z K ? * j # . RU z jU{ " zc 2 * V z R . V Z z z ) / * je 2 / * je 2 z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je 2 z / Jn 2 . z Z ? * j R " V Z : z ) / * je 2 / * je 2 z / Jn) 2 . : . Z z * j z j z j` TUUUUUUU J [ Z * j6 / * j * j6 ? * j ( R V Z z . / * je ? * je ( z ? Jn 3 Z : K Z K * j 2 " .RU [ j : j jU{ 2 zc& 3 " V z jz`" R . V Z z z ) / * je 2 / * je 2 z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je 2 z / Jn 2 . z Z ? * j R . V Z z z ) / * je 2 / * je 2 z / Jn) 2 . : Z ? * j R > V Z z z`) / * je ? * je ( z / Jn 2 z 3 j : z` Z z z ? * j UU [ ? j 4j ( R V Z z`. ? * je [ ? * je ( z ? Jn 3 Z z Z ? * j # . *RU j z jU{ 2 zc 3 " V V z :z`T # V V V z :z`P FF " * V zh * V :z " > R j : j z Z` ? * je . j K ? * je ( z / Jn " " 1 Z z [ j : / * ?W 2 * c # " V z` 2 * 3 " V z z` " > V z z` .g ? * *g + : Z z * V / j 4 V 2 :c Z j "g j t 56g ? 4 3 R " Z z z ( V j zh . j jc< z . j jc$ * V z`& > " " R j z ZpR ? * je . H ? * je ( j z / Jn 2 > z x| " * z`f " " J 2 " R) ne # " V z [ j zh 2 * V z R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; ? * j R > V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R > V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z / * j :c *R V Z z ) / * je 2 / * je ( z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z * j .HI ^U zh 0 .KI V ~U z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z : z`. ? * je ? * je ( z ? Jn 3 Z : Z / * j 2 { R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z : z`. ? * je ? * je ( z ? Jn 3 Z : Z * j .HI * ^U z x UU 2 H) ^u; 3 * V : z` R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z / * j 2 c R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z / * j " cn 2 * V zx R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z / * j :c *R V Z z ) / * je 2 / * je ( z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z * j .HI ^U zh 0 .KI V ~U z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R J9 V Z NU{ z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R > V Z : z`. ? * je ? * je ( z ? Jn 3 Z : Z / * j 2 {4 R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R J9 V Z NU{ z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R > V Z : z`. ? * je ? * je ( z ? Jn 3 Z : Z * j .HI * ^U z x TU 2 H) ^u; 3 * V : z` R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R K! V Z NU{ z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z / * j 2 c4 R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R K! V Z NU{ z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j " > : >R z Z z PU ! * z z`. " " J z2 " R) ne{# . V j zhZ 2 * V zx R V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z / * j c .R V j Z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z * j *KI ~U z` : 0 *JI V ~U j z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z / * j 2 { R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z * j 0 *KI . ~U z h UU 3 KI V ~u j z R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j 2 cv R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j " c& 2 * V zx8 R V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z / * j cR *R V z Z z`) / * je / * je z ? Jn 3 Z ; Z ; ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z * j *KI ~U z` : 0 *JI V nU j z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R J9 V Z ^U{ z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z / * j 2 {4 R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R J9 V Z ^U{ z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z * j 0 *KI * ~U j z h TU 3 KI V ~u j z`4 R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R J) V Z ^U; z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j 2 c R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R J) V Z ^U; z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j " c` * V :zh 0 . j j 3 ( " * * X{ J- Z ^ : je * je J r j z Z / * je " JI F ~ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R Z * je / 4`e " . c Z ? * je r Z z` / * je " JI F ~ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R . Z * je ? 4`e > V Z z ( / j he 2 " z 3 J [ VR) B U jU h ZZ Br j: K z Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z # * * : " * JU ~U{` * V zx 0 " z` R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z * j " .R V j : Z z`. ? * je K ? * je ( z ? Jn 3 Z : Z * j " [ z` c " j z`4 . R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; * j " j zx " c " " J * z2 " z3 JI . ^e j 3 ( " * * X{ J) Z ^ je * je K- .r T Z z / * je " JI F ^ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R Z * je / 4`e " * c Z ? * je r Z z` / * je " JI F ^ * `e : J j Z zx ? * je 2 2 2 z Z * ` * j * j ? * j FJI F * j 4j : J j Z z R * Z * je ? 4`e : V Z z ( / j he 2 " z3 J VR) B U jU{ p ZZ 2 Br j: K z Z 4v% * je F J U j 4je 0 * J j z 2 Z * j ? * j 3 J * z z * * j : ! JU ^U{ ` " * V zhF 2 * V z ( R V Z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn) 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z / * j 2 c R . V Z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R * V Z z z . / * je K ? * je ( z ? Jn) 3 Z z Z ? * j R * V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z * j " * zh0 0 * > V j : j z R . V Z z ) / * je 2 / * je + z / Jn 2 . Z ? * j ( R V Z z . / * je 2 ? * je z ? Jn 3 Z z Z ? * j R . V Z z ) / * je 2 / * je + z / Jn 2 . Z / * j 2 { ( R V Z z . / * je 2 ? * je z ? Jn 3 Z z Z ? * j R . V Z z ) / * je 2 / * je + z / Jn 2 . Z ? * j R . V Z z ) / * je 2 / * je + z / Jn 2 . Z * j * . zx UU 2 * V z` ( R V Z z`. ? * je H ? * je ( j z ? Jn 3 Z Z ? * j R K- V Z ^E; z`. ? * je H ? * je ( j z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je H ? * je ( j z ? Jn 3 Z : Z / * j 2 c R K- V Z ^E; z`. ? * je H ? * je ( j z ? Jn 3 Z : Z ? * j ( R V Z z`. ? * je H ? * je ( j z ? Jn 3 Z Z ? * j R . V Z : z`. ? * je H ? * je ( j z ? Jn 3 Z : Z / * j " cn 2 * V z`> ( R V Z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn) 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jni 3 Z z Z / * j 2 c R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z`) / * je / * je z ? Jn 3 Z ; Z ; ? * j R * V Z z`) / * je / * je z ? Jn) 3 Z ; Z ; ? * j R * V Z z`) / * je / * je z ? Jn) 3 Z ; Z ; ? * j R * V Z z`) / * je / * je z ? Jn 3 Z ; Z ; ? * j R * V Z z`) / * je / * je z ? Jni 3 Z ; Z ; * j " * : zh 0 * " V [ j z` R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R J! V Z NE{ z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j ( R V Z z`. ? * je ? * je ( z ? Jn 3 Z : Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z / * j 2 { ( R V Z z`. ? * je ? * je ( z ? Jn 3 Z : Z ? * j R J! V Z NE{ z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z * j * * : j zx TU 2 * V z`6 ( R V Z z`) / * je / * je z ? Jn 3 Z Z ? * j R K) V Z ^e{ z . ? * je / * je z ? Jn 3 Z z Z ? * j R K) V Z ^E{ z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j 2 c0 R K) V Z ^E{ z . ? * je / * je z ? Jn 3 Z z Z ? * j R K) V Z ^e{ z . ? * je / * je z ? Jn 3 Z z Z ? * j ( R V Z z`) / * je / * je z ? Jn 3 Z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j r R Z / * j * j j b 2 R 2 j K j 4j * R R z Z * je * j ? j ,j K9 : T z 0 : [ 0 KI * ~U j 3 N . Z : J :K- nU 0 . R- j nU 8 . * * : 0 * j UU Z J N * Z : j 4j ? * JI Z ^U z * je ? * je 3 J z# ( . j z 2 " J * X{ J) Z ^ je ? * je r Z z / * je " JI F ^ * `e . J Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j J . : Z z R Z * je / 4`e " . :c Z ? * je r Z z` / * je " JI F ^ * `e . J Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j J . : Z z R . Z : * je ? 4`e * V Z z ( / j ,je 2 " : z3 J 3 V F U Z ZZ R Z j 4je 0 " * z zx Z ? * je " . z 0 ZI [ ^U Z z Z / * j . { / * je 2 * zx Z * je * j . . + z` 2 V K z Z z 2 : Z Z ? j t? B j Z * je :( F Fr : j 4 ? * KA 2 T z Z * j JE T Z * / j 4j k * j% * j * j * j ? * ` :NI F F * / j 4j " ( : * J j z ` * J j z` r r [ Z Z * j 0 : * : U U # J V : Z zk T; * V zx ? * 6 3 ( : X; N9 2 Z N * 6 je ? * je ( r . Z z / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R Z * je / 4`e " : c Z ? * je r . 2 Z z` / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R : Z * je ? 4`e . V Z z ( / j be 2 " . . :3 2 J # V U` ZZ 2 : : 3 2 J zx 2 2 Z ? * j # " :RU : jU{` c 0 V V V V : z z`4 r Z ? * 6 3 ( : X; N9 2 Z N * 6 je ? * je ( r . Z z / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R Z * je / 4`e " : c Z ? * je r . 2 Z z` / * je " NI F N * `e : J Z zx ? * je 2 2 z Z * ` * j * j ? * j FNI F * j 4j J : Z z R : Z * je ? 4`e . V Z z ( / j be 2 " . . :3 2 J V U` ZZ KI F r [ j n Z ? j 4j 3 J * z zx TU 3 ( R V z R J) Z n z * je F FR j Z / 4v R * j% Z [ i 4v% ? * je ( . Z ? je F Z je ? * je ( r Z z / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R Z * je / 4`e " * :c Z ? * je r V Z z` / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R * Z : * je ? 4`e F F Z Z * 6 je ? * je ( r Z z / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R Z * je / 4`e " * :c Z ? * je r V Z z` / * je " JI F ^ * `e . J j Z zx ? * je 2 z Z * ` * j * j ? * j FJI F * j 4j J . z Z z R * Z : * je ? 4`e F Z * j V UU K z z Z * J J * : z Z Z Z : z : j J Z J Z J : j J j Z * : JU U T W :V Q JP P S R ] \ :_ j^ ZY Y X *[ jZ Z E *D G zF F A @ *C B *M L zO ZN N JH H K *J ju u w *v q Jp p s r *} | J ~ y x { :z je Zd d g f :a j` Zc zb b m jl l o *n i jh Jk k j * j * z Z j J J j * j Z5 5 4 7 j> 8 :; : $ & :! z# J" " - *, / :. :) ( z * : * z J z z j Z j : z UUUUUU UU UU UU UU UU UU > UUUU Z J j z * * " : : 2 . UU UU Z B UU UU UU UU R N UU UU UU UUUU UU UU UU UU UU UU UU UU UU * UU UU V Z B UU UU UU J UU 6 UU UU UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU > UU * UU V * UU UU UU UU v UU UU UU UU UU UU UU 2 : UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU Z B UU UU UU UU R Z v UU UU UU " UU UU R F N UU UU UU UU r z UU UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU : UU UU R Z UU UU UU . UUUU UU UU UU UU UU UUUU Z J j z * * " : : 2 UUUU Z * je * " . Vr z j z Z / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j . J j z` R Z * je 4`e 3 " 2 V z z` 3 " R) V jU{ *z` Z j ,je / * j% 2 * j 3 B z : r J K Z j 4j% ? * j B B j / j 4j% * j% B J U / j 4j% R * j% ? * j% r * j " " z ZZ J ? j ,j% J . ) Z Z J Z z Z Z * [ j Z J= R T j K j 4j% ? * % R r K U z * j * j j ,j% " z [ j 0 KM * [% ^U * : 3 N . Z z J *K= P j ~U; R- j z nU{ 8 [ b J . . j j j Z:UU Z N * [% * z * . j [ : ? j 4j% " R) nU{ ? * % r * K z * j% * j% z " j " " J * X; " J) N je ? * je r Z zh / * je " JI F N * `e 0 . J j zx 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j . J j z` R Z * je / 4`e " . zc Z ? * je r Z z / * je " JI F N * `e 0 . J j zx 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j . J j z` R . Z z * je ? 4`e : V Z z ( / j be 2 " z :3 J [ 3 V F U Z V ZZ 2 R 2 Z j 4je 0 " * : z r Z ? * je 3 " . : zx 3 " ZI ^U z r Z / * j 2 { r Z / * je 2 * zx r Z z * je * j . z` 0 2 V K z Z z 2 z Z z? j 4j B j Z K ? * j R F F K : j 4 ? * 2 KE Z z NU * j * ` * JE T Z / j 4j k * j% * j * j * j ? * ` *JI F F * / j 4j " z * J z [ * J j z` r r [ Z Z * j 0 * * : U U # J V * Z zk T; * V zx ? * 6 3 ( * X; J- Z N z * 6 je ? * je ( r Z zh / * je " JI F N * `e 0 * J zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J * z` R Z * je / 4`e " * c Z ? * je r Z z / * je " JI F N * `e 0 * J zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J * z` R * Z * je ? 4`e . V Z z ( / j ,je 2 " :3 J # V U` ZZ 2 * : 3 J zx 2 Z ? * j # " *RU : jU{` c 0 V V V V : z z`0 r Z ? * 6 3 ( * X; J- Z N z * 6 je ? * je ( r Z zh / * je " JI F N * `e 0 * J zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J * z` R Z * je / 4`e " * c Z ? * je r Z z / * je " JI F N * `e 0 * J zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J * z` R * Z * je ? 4`e . V Z z ( / j ,je 2 " :3 J V U` ZZ KI F r [ j n Z ? j 4j 3 J * z zx TU 3 ( R V Z z N9 Z n : * je F FR 2 j Z / 4v R Z * j 2 i [ ? 4v F Z je ? * je ( r Z zh / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R Z * je / 4`e " * :c Z ? * je r V Z z / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R * Z : * je ? 4`e F F Z Z * 6 je ? * je ( r Z zh / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R Z * je / 4`e " * :c Z ? * je r V Z z / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R * Z : * je ? 4`e F Z * j ( V Z z`X ? * je 3 * * V z 3 " * V z # 3 " * V * z " 3 " * V j :z - 3 " * V j *z , 3 " V V z zh # * * * * k 2 * V z * * k 0 V V * V jz zh # * * j j 2 : X{ N92 Z ^ : je ? * je ( r . Z zh / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j . J z` R Z * je / 4`e " : c Z ? * je r . 2 Z z / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j . J z` R : Z * je ? 4`e . V Z z ( / j he 2 " . + : z3 J 2 VR= U jU{h ZZ " B *r Z : : K R) Z nU; 4v% J j : j T * je 0 J N & U [ : N. F j 4je 0 . J z 2 Z * j ? * j 3 . J z # > * j : " * OU ^U{ * 2 k # " V V z zh R Z ? * je ( R V Z zh ? * je ( R V Z zh * je ? * je Z * je 0 2 . . K ZZ J 3 r ) Z : Z Z J2 z Z * [ Z j ,j J- *R T j K j 4j ? * R R Z * je * j j ,j " z [ j 0 KM * [% ^U * : 3 N . Z z J *K- P j ~U R- j z nU{ 8 [ b J . . j j Z:UU Z N * [% * z * . j : ? j 4j z ? * r JI Z ^U z * je ? * je 3 J K z# ( . j z 2 " J * X{ J) Z ^ je ? * je r Z zh / * je " JI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j . J z` R Z * je / 4`e " . :c Z ? * je r Z z / * je " JI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j . J z` R . Z : * je ? 4`e * V Z z ( / j ,je 2 " : z3 J 3 V F U Z T ZZ R Z j 4je 0 " * z zx r Z ? * je 3 " : zh 3 " ZI ^U z r Z / * j 2 . k r Z / * je 2 * zh r Z * je * j . . + z` 2 * V z 2 : Z z? j 4j B j Z K * j 2 ( F FR : K j 4 ? * : 2 NE z Z ~U * j * ` JE T Z / j 4j 2 k 2 Z z K * j% * j * j * j ? * ` :NI F F * / j 4j " ( : * J j z ` * J j z` r r [ Z Z * j 0 : * j : U U # J V : Z zk T{ * V zx ? * 6 3 ( : X{ N9 2 Z ^ : * 6 je ? * je ( r . Z zh / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j J . : z` R Z * je / 4`e " : c Z ? * je r . 2 Z z / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j J . : z` R : Z * je ? 4`e . V Z z ( / j he 2 " . . z3 2 J # V U` ZZ 2 : z 3 2 J [ j zx 2 2 Z ? * j # " :RU z jU{` c 0 V V V V : z z`0 r Z ? * 6 3 ( : X{ N9 2 Z ^ : * 6 je ? * je ( r . Z zh / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j J . : z` R Z * je / 4`e " : c Z ? * je r . 2 Z z / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j J . : z` R : Z * je ? 4`e . V Z z ( / j he 2 " . . z3 2 J V U` ZZ KI F r [ j n Z ? j 4j 3 J * z zx TU 3 ( R V Z z J) Z n z * je F FR j Z / 4v R Z * j i [ ? 4v F Z je ? * je ( r Z zh / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R Z * je / 4`e " * :c Z ? * je r V Z z / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R * Z : * je ? 4`e F F Z Z * 6 je ? * je ( r Z zh / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R Z * je / 4`e " * :c Z ? * je r V Z z / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R * Z : * je ? 4`e F Z * j Z ? * je R * Z ? * je 2 2 ZZ J J = J Z * Z o Z ! V z` TUUUUUUU " * V z` * V z R " Z z z` ? * je . K ? * je ( z / Jn " 2 " 3 " z` . Z j ? * j # R " Z z z " c. 2 " > * z X{ J- Z ^ z je ? * je ( r Z zh / * je " JI F ^ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R Z * je / 4`e " . :c Z ? * je r Z z / * je " JI F ^ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R . Z : * je ? 4`e > V Z z ( / j ,je 2 " z z3 J [ VR) B U jU{ ` ZZ Br f : K Z 4v% * je F J U ( j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z 3 * * j : " JU z ^U{`z 0 . j : z`` R V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z ? * j # " . : z 2 zc # V V V z z`" " * V z` " * V zh * V z` " R j z Z`^ / * je K ? * je * z / Jn " z 2 " 3 H- D zx . Z * j "R z Z z 2 cx 3 V V z z`d . j : R * . Z z jh * je ? * je : z / Jn z 2 . UUUU 0 j j z 2 Z [ ? * j 3 " . V z z [ j z Z * j UU/ * j 2 j 4j . *R j Z z ? * je 2 [ j z / * je z ? Jn # : Z : z 2 " . " zh ? * j UU 2 [ j 4j " * R j [ j z Z 2 * V z` R Z Z * j UU * j * j / * j + ? *n 3 J z ". j ? * j # . { 2 * V z " 3 " V z 3 " V z R Z Z * j UU * j * j / * j + ? *n # J z " . ? * j . . z *R j Z z UU " * V z 2 * V z` R Z Z * j UU * j * j / * j ? *n 3 J z . ? * j # . jc4 2 * V z 3 * . j :k 3 " * V z z ( 3 * V [ z z # * z 2 " " * : X J- Z ~ z je ? * je ( r Z zh / * je " JI F ~ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R Z * je / 4`e " . c Z ? * je r Z z / * je " JI F ~ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R . Z * je ? 4`e > V Z z ( / j be 2 " z 3 J [ VR) B U jU ` ZZ Br *: K z Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z 3 * * : " JU z ~U{`r * .R V z Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; * j * "R V : Z z ) / * je 2 / * je 2 z / Jn . z Z * j 0 " z` R V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z * j 0 " j j R V Z : zx) / * je ? * je ( z / Jn : Z * j 0 " [ z` 3 " V z z` R J- V Z nU{ z`. ? * je ? * je ( j z ? Jn 3 Z z Z ? * j R * V Z z z`. ? * je j ? * je ( j z ? Jn 3 Z z Z z / * j 2 c 3 " V V z z` # V V V z z` FF " * V z` * V zp " " R j z Z` / * je H ? * je * j z / Jn " z " 1 . z j` . [ j : z ? * ?W 3 " V z z` 3 " " V z z` Z z j -*g / j 4j 2 c Z 56g ? 4 # R " Z : z c` : . R j z Z`h / * je K ? * je * z / Jn 2 z > j 1 z j` 2 > [ j : z ? * ?W " V z z`0 0 : V z Z z Z z z j -*g / j 4j c 56g ? 4 3 . [ : z`( R Z / * je K ? * je * z / Jn " " ! z j` 2 * V z "R j Z * j / * j " KI2 NE ? n 3 : . Z [ * j / * j " KI2 NU * j ? *n # : " . / * j 2 zc .R * j% / * j% " KI2 Nu z/ Jn 2 " : . Z [ j : * ? * j% 2 z / * j% " KI2 NE :/ n " " : " . : * * j% ? * j% 2 KI2 NU / n 2 " ? j 4j 3 . [ : z` UU 3 R . Z : z UU # " V * zk z . Z * . Z J J ) J : Z * Z z 2 zcN # . * V Z j z` " . z 2 " " * : X{ J- Z ^ : je * je r J Z j zh / * je " JI F ~ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R Z * je / 4`e " . c Z ? * je r Z z / * je " JI F ~ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R . Z * je ? 4`e > V Z z ( / j he 2 " z 3 J [ VR) B U jU h ZZ Br ; K z Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z # * * : " * JU ~U{` * V zx 0 " z` R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; * j " .R V j : Z z`. ? * je K ? * je ( z ? Jn 3 Z : Z * j " [ z` cH " j z`v . R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; * j " j zx 2 c J) Z ^ je ? * je r J- Z nu{ zh / * je " JI F ^ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R Z * je / 4`e " . :c Z ? * je r Z z / * je " JI F ^ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R . Z : * je ? 4`e " V Z z ( / j he 2 " z3 J VR) B U jU{ x ZZ Br KA ; K n { Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z * * j : 0 JU f ^U{` " . V : z` * .R V : Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; ? * j ( R V Z z`. ? * je K ? * je ( z ? Jn) 3 Z : Z * j 0 " " z z`h R H) V Z ^E; z . / * je K ? * je ( z ? Jn 3 Z : K Z K * j .H)R V ^U; Z z . / * je K ? * je ( z ? Jn 3 Z : K Z K ? * j # " j z z` 2 c, R > V Z z z`. ? * je N ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`) / * je N ? * je ( z / Jn 2 z Z ? * j R > V Z z z`. ? * je N ? * je ( z ? Jn) 3 Z : Z ? * j R * V Z z z ) / * je 2 / * je 2 z / Jni 2 . z Z ? * j 3 * z` R J- V Z ^u; z`. ? * je ? * je ( z ? Jn 3 Z : Z ? * j R J- V Z ^E; z`. ? * je ? * je ( z ? Jn 3 Z : Z ? * j R J- V Z ^U; z / ? * je ? * je ( z Jn 0 [ : Z Z : ? * j R . V Z : z . / * je ? * je ( z ? Jn 3 Z : Z ? * j # * z z 2 c # V V V jz *z` " * V z` " * V zx * V *z` 1 : " z j z jh R [ Z / * je K ? * je ( z ? Jn # * Z z 2 " z ? * j # " . z { 0 2 2 V [ j : [ z * ./ z : 0 " J j j z j` 3 j{@ 3 V V jz zhN . Z 1 : J . j j z hr : :R Z / * je H ? * je * j z / Jn 2 z j 1 z x Z { Z ? * j 3 " : V z zx 3 : " V j z : R : Z :/ * je 2 ? * je 2 z Z :/ jn / * V UU " . ? * V 2 + z [ * V ? j 4 V 3 " . z zx( R Z : Z / * je K ? * je ( z ? Jn # * j : 2 " . z ? * V UU [ : * V ? j 4 V 3 * . z z 3 :{ Z : z * V UU * V TU? * V 2 : * V ? j 4 V 3 " . z z R Z : z/ * je 2 ? * je ( 2 z ? Jn # : [ " . z1 e [ zx TUUUUUUU J Z j * j ? * ` 2 ? * j 2 ? j 4j 3 " . z z` 2 :{ ( . . : [ z k : j . j z` UU z . j jc 0 * V j *z + 3 V V jz z` 3 ( > * j j X{ J- Z ^ z je ? * je ( r Z zh / * je " JI F ^ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R Z * je / 4`e " . :c Z ? * je r Z z / * je " JI F ^ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R . Z : * je ? 4`e > V Z z ( / j be 2 " z z3 J [ VR) B U jU{ ` ZZ Br f j: K Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z 3 * * j : 3 *JU z j ^U{` 3 " . V : *zh R . V Z z`. ? * je ? * je ( j z ? Jn 3 Z : Z ? * j R > V Z z z`. ? * je ? * je ( j z ? Jn 3 Z Z ? * j R . V Z z`) / * je ? * je ( j z / Jn) 2 z Z ? * j 3 j z` R V Z : z . / * je ? * je ( j z ? Jn 3 Z : K Z K ? * j R * V Z : z . / * je ? * je ( j z ? Jn 3 Z : K Z K * j " *R V j : Z z . / * je ? * je ( j z ? Jn 3 Z : K Z K ? * j # . RU z jU{ " zc 2 * V z R . V Z z z ) / * je 2 / * je 2 z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je 2 z / Jn 2 . z Z ? * j R " V Z : z ) / * je 2 / * je 2 z / Jn) 2 . : . Z z * j z j z j` TUUUUUUU J [ Z * j6 / * j * j6 ? * j ( R V Z z . / * je ? * je ( z ? Jn 3 Z : K Z K * j 2 " .RU [ j : j jU{ 2 zc( 3 " V z jz` R . V Z z z ) / * je 2 / * je 2 z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je 2 z / Jn 2 . z Z ? * j R . V Z z z ) / * je 2 / * je 2 z / Jn) 2 . : Z ? * j R > V Z z z`) / * je ? * je ( z / Jn 2 z 3 j : z` Z z z ? * j UU [ ? j 4j ( R V Z z`. ? * je [ ? * je ( z ? Jn 3 Z z Z ? * j # . *RU j z jU{ 2 zcR 3 " V V z :z`^ # V V V z :z`Z FF " * V zh * V :z " > R j : j z Z` ? * je . j K ? * je ( z / Jn " " 1 Z z [ j : / * ?W 2 * c # " V z` 2 * 3 " V z z` " > V z z` .g ? * *g + : Z z * V / j 4 V 2 :c Z j "g j t 56g ? 4 3 R " Z z z ( V j zh . j jc& z . j jc. * V z`( > " " R j z Zp\ / * je H ? * je * j z / Jn 2 : > z x| " * z`f " " J 2 " R) ne # " V z [ j zh 2 * V z R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; ? * j R > V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R > V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z / * j :c *R V Z z ) / * je 2 / * je ( z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z * j .HI ^U zh 0 .KI V ~U z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z : z`. ? * je ? * je ( z ? Jn 3 Z : Z / * j 2 { R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z : z`. ? * je ? * je ( z ? Jn 3 Z : Z * j .HI * ^U z x UU 2 H) ^u; 3 * V : z` R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z / * j 2 c R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 Z z Z / * j " cn 2 * V zx R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z / * j :c *R V Z z ) / * je 2 / * je ( z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : Z * j .HI ^U zh 0 .KI V ~U z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R J9 V Z NU{ z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R > V Z : z`. ? * je ? * je ( z ? Jn 3 Z : Z / * j 2 {4 R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R J9 V Z NU{ z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R > V Z : z`. ? * je ? * je ( z ? Jn 3 Z : Z * j .HI * ^U z x TU 2 H) ^u; 3 * V : z` R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R K! V Z NU{ z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z / * j 2 c4 R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R K! V Z NU{ z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z ? * j " > : >R z Z z PU ! * z z` " " J z2 " R) ne{# . V j zhZ 2 * V zx R V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z / * j c .R V j Z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z * j *KI ~U z` : 0 *JI V nU j z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z / * j 2 { R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z * j 0 *KI . ~U z h UU 3 KI V ~u j z R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j 2 c~ R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j " c. 2 * V zx8 R V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z / * j cZ *R V z Z z`) / * je / * je z ? Jn 3 Z ; Z ; ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 Z : Z * j *KI ~U z` : 0 *JI V nU j z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R J9 V Z ^U{ z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z / * j 2 {4 R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R J9 V Z ^U{ z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 . 2 Z z 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 Z z Z * j 0 *KI * ~U j z h TU 3 KI V ~u j z`4 R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R J) V Z ^U; z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j 2 c R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R J) V Z ^U; z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 Z : Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j " ch * V :zh 0 . j j 3 ( " * * X{ J- Z ^ : je * je J r j z Zh / * je " JI F ~ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R Z * je / 4`e " . c Z ? * je r Z z / * je " JI F ~ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R . Z * je ? 4`e > V Z z ( / j he 2 " z 3 J [ VR) B U jU h ZZ Br j: K z Z 4v% * je F J U j 4je 0 : J j z 2 2 2 Z * j ? * j 3 J : z z # * * : " * JU ~U{` * V zx 0 " z`V R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 Z : Z * j " .R V j : Z z`. ? * je K ? * je ( z ? Jn 3 Z : Z * j " [ z` c " j z`0 . R V Z z . / * je K ? * je ( z ? Jn 3 Z ; Z ; * j " j zx " c " " J * z2 " z3 JI . ^e j 3 ( " * * X{ J) Z ^ je * je K- .r T Z zh / * je " JI F ^ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R Z * je / 4`e " * c Z ? * je r Z z / * je " JI F ^ * `e 0 : J j zx 2 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j : J j z` R * Z * je ? 4`e : V Z z ( / j he 2 " z3 J VR) B U jU{ p ZZ 2 Br j: K z Z 4v% * je F J U j 4je 0 * J j z 2 Z * j ? * j 3 J * z z * * j : ! JU ^U{ ` " * V zhF 2 * V z ( R V Z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn) 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z / * j 2 c R . V Z z`. ? * je K ? * je ( z ? Jn 3 Z z Z ? * j R * V Z z z . / * je K ? * je ( z ? Jn) 3 Z z Z ? * j R * V Z z z . / * je K ? * je ( z ? Jn 3 Z z Z * j " * zh0 0 * > V j : j z R . V Z z ) / * je 2 / * je + z / Jn 2 . Z ? * j ( R V Z z . / * je 2 ? * je z ? Jn 3 Z z Z ? * j R . V Z z ) / * je 2 / * je + z / Jn 2 . Z / * j 2 { ( R V Z z . / * je 2 ? * je z ? Jn 3 Z z Z ? * j R . V Z z ) / * je 2 / * je + z / Jn 2 . Z ? * j R . V Z z ) / * je 2 / * je + z / Jn 2 . Z * j * . zx UU 2 * V z` ( R V Z z`. ? * je H ? * je ( j z ? Jn 3 Z Z ? * j R K- V Z ^E; z`. ? * je H ? * je ( j z ? Jn 3 Z : Z ? * j R . V Z : z`. ? * je H ? * je ( j z ? Jn 3 Z : Z / * j 2 c R K- V Z ^E; z`. ? * je H ? * je ( j z ? Jn 3 Z : Z ? * j ( R V Z z`. ? * je H ? * je ( j z ? Jn 3 Z Z ? * j R . V Z : z`. ? * je H ? * je ( j z ? Jn 3 Z : Z / * j " cn 2 * V z`> ( R V Z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn) 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z`) / * je / * je z ? Jni 3 Z z Z / * j 2 c R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z`) / * je / * je z ? Jn 3 Z ; Z ; ? * j R * V Z z`) / * je / * je z ? Jn) 3 Z ; Z ; ? * j R * V Z z`) / * je / * je z ? Jn) 3 Z ; Z ; ? * j R * V Z z`) / * je / * je z ? Jn 3 Z ; Z ; ? * j R * V Z z`) / * je / * je z ? Jni 3 Z ; Z ; * j " * zh 0 * " V [ j : z` R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R J! V Z ~E{ z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j ( R V Z z`. ? * je ? * je ( z ? Jn 3 Z : Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z / * j 2 { ( R V Z z`. ? * je ? * je ( z ? Jn 3 Z : Z ? * j R J! V Z ~E{ z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 Z z Z * j * * j zx TU 2 * V z`6 ( R V Z z`) / * je / * je z ? Jn 3 Z Z ? * j R K) V Z ^e{ z . ? * je / * je z ? Jn 3 Z z Z ? * j R K) V Z ^E{ z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z / * j 2 c0 R K) V Z ^E{ z . ? * je / * je z ? Jn 3 Z z Z ? * j R K) V Z ^e{ z . ? * je / * je z ? Jn 3 Z z Z ? * j ( R V Z z`) / * je / * je z ? Jn 3 Z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 Z z Z ? * j r R Z / * j * j j b 2 R 2 j K j 4j * R R z Z * je * j ? j ,j K9 : T j : 0 : 0 KI * ~U j 3 N . Z J :K- nU 0 . R- j nU 8 . * * : 0 * j UU Z J N * Z : j 4j ? * r JI Z ^U z * je ? * je 3 J z# ( . j z 2 " J * X{ J) Z ^ je ? * je r Z zh / * je " JI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j J . : z` R Z * je / 4`e " . :c Z ? * je r Z z / * je " JI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FJI F * ? j 4j J . : z` R . Z : * je ? 4`e * V Z z ( / j ,je 2 " : z3 J 3 V F U Z ZZ R Z j 4je 0 " * z z r Z ? * je 3 " . zx 3 " ZI ^U z r Z / * j 2 . { r Z / * je 2 * zx r Z * je * j . . + z` 2 V K z Z z 2 : Z Z ? j t? B j Z * je :( F FR : K j 4 ? * KA 2 T z Z * j JE T Z * / j 4j k * j% * j * j * j ? * ` :NI F F * / j 4j " ( : * J j z * J j z` r r [ Z Z * j 0 : * z U U # J V : Z zk T{ * V zx ? * 6 3 ( : X{ N9 2 Z ^ : * 6 je ? * je ( r . Z zh / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j J . : z` R Z * je / 4`e " : c Z ? * je r . 2 Z z / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j J . : z` R : Z * je ? 4`e . V Z z ( / j he 2 " . . z3 2 J # V U` ZZ 2 : z 3 2 J [ j zx 2 2 Z ? * j # " :RU z jU{` c 0 V V V V : z z`0 r Z ? * 6 3 ( : X{ N9 2 Z ^ : * 6 je ? * je ( r . Z zh / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j J . : z` R Z * je / 4`e " : c Z ? * je r . 2 Z z / * je " NI F ^ * `e 0 . J zx 2 z Z / * je 2 Z * ` * j * j ? * j FNI F * ? j 4j J . : z` R : Z * je ? 4`e . V Z z ( / j he 2 " . . z3 2 J V U` ZZ KI F r [ j n Z ? j 4j 3 J * z zx TU 3 ( R V Z z J) Z n z * je F FR j Z / 4v R Z * j i [ ? 4v F Z je ? * je ( r Z zh / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R Z * je / 4`e " * :c Z ? * je r V Z z / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R * Z : * je ? 4`e F F Z Z * 6 je ? * je ( r Z zh / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R Z * je / 4`e " * :c Z ? * je r V Z z / * je " JI F ^ * `e 0 . J j zx 2 z Z / * je Z * ` * j * j ? * j FJI F * ? j 4j J . z z` R * Z : * je ? 4`e F Z * j B b " UU K Z * j Z z * z Z : z Z j J : z * : j z : j Z * z : : j Z : j Z z J * J : z jU U T W V JQ P S :R j] Z\ \ _ ^ :Y jX Z[ [ ZE E D G F zA Z@ @ C B M zL O O N I ZH H K *J u jt Jw w v q p s *r } | * ~ zy Zx x { z e jd Jg g :a b jl o Jn n *i h Jj j * * z Z Z z z Z : j 5 z4 z7 Z6 9 8 ; , , / J. . :) *+ J J : J Z UU UU UU UU UU UU UU UUUU J z * j Z " : 2 * : . UU UU Z B UU UU UU UU R N UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU 2 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU 2 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UU UU * UUUU UU UU V Z B UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU > UU * UU V * UU UU UU UU v UU UU UU UU UU UU UU 2 : UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UU UU Z B UU UU UU UUUU UU R Z v UU UU UU " UUUU UU UU R F N UU UU UU UU r z UU UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU : UU UU R Z UU UU UU . UU UU UU UU UU UUUU J z * j Z " : 2 * : UUUU j4 r R Z * je * " . V z j z` ? * j% r JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je r JI B ^ z * Tue ? * j% 2 JI B Z ^ z * Tu% / * je " JI F ^ * `e . J2 j Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j . J2 j Z z R Z * je 4`e 3 " V z z`Z 3 " R) V jU{ *z`F 2 Z K / * j% * j ? j ,je 3 B z : r JR Z K j 4j ? * j% B B j / j 4j Z * j B J U j 4j ? * j% r R Z * j . . z ZZ J j ,j% * J * - j Z J Z * Z 0 " R9 nU{ 3 .( j z : N [ : 0 : : z X; UUUU N! J * j [ T{? je r * * j * je : :2 Z z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j . J2 Z z R Z * je / 4`e * c ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j . J2 Z z R * Z * je ? 4`e >2 V Z z ( / j be 2 " :# J 2 * X; 2 J) Z N je ? * je ( r z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R Z * je / 4`e " * c 2 Z ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R * Z * je ? 4`e "2 V Z zh( ? j be 3 : # J 2 * : 2 J) Z N je ? * je ( r z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R Z * je / 4`e " * c 2 Z ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R * Z * je ? 4`e &2 V Z z`( ? j be 3 : 3 J 3 * * 3 ( V U z PP r N9 . Z nU{ j ,j > z [ JM * R * NU z ? * j 3 N * [ Z J :H% * j ^U 0 i R- j [ j nU 8 . * * 0 * j j z UU Z J N * Z [ : j 4j / * 2 Z * j * j j ,j 0 :0 3 KI j nU z3 n N * Z J .L! * j NU{0 . R) j : [ nU 8 * : * 0 0 * j j UU Z J N * Z : [ : ? j 4j r r R j ? * r 2 Z * j% j 4j% ? * % Z 4v% / j ,je * : R) T UU Z j 4je ( 0 z 2 " J * T;# : * j 2 " J * : 2 J) Z N je ? * je r : z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R Z * je / 4`e " . c 2 Z ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R . Z * je ? 4`e *2 V Z z ( / j ,je 2 " z :3 J [ V U ZZ / j ,j% : 0 R= T j UU Z . [ j : Z j t% / j ,je * R) j T UU Z / j 4je zc ? * j% JI B Z ^ z * Tu% ? * je :JI : F j ^ ? * `e 2 [ i Z ? 4v 3 F F z F F Z 4v 0 " V z z J * Z z ? * je N * * [ z1 J) * T j z R Z 4v " J) NU; z ( R V Z z` ? * je 3 * * V z 3 " * V z # 3 " * V * z " 3 " * V j :z - 3 " * V j *z , 3 " V V z zh # * * * * k 2 * V z * * k 0 V V * V jz zh # * * j j 2 : X{ 2 N92 Z ^ : je ? * je ( r . z ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j . J2 Z z R Z * je / 4`e " : c 2 Z ? * je r . 2 z` ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j . J2 Z z R : Z * je ? 4`e .2 V Z z ( / j he 2 " . + : z3 J 2 VR= U jU{h ZZ " B *r Z : : K R) Z nU; 4v% J j : j T * je 0 J N & U [ : N. F j 4je 0 . J z Z * j ? * j 3 . J z # > * j : " * OU ^U{ * 2 kd R V V Z z zh` ? * je ( R V Z zhn * je R R Vr Z Z z h ? * j . . ZZ J j ,j% ? * je * ) Z J Z z Z * 1 . [ j z 3 NI [ ^U j N [ : : : z X; UUUU N! J *2 j [ T{ Z ? je r * * j * je : :2 Z z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j . J2 Z z R Z * je / 4`e * c ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j . J2 Z z R * Z * je ? 4`e >2 V Z z ( / j be 2 " :# J 2 * X; 2 J) Z N je ? * je ( r z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R Z * je / 4`e " * c 2 Z ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R * Z * je ? 4`e "2 V Z zh( ? j be 3 : # J 2 * : 2 J) Z N je ? * je ( r z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R Z * je / 4`e " * c 2 Z ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R * Z * je ? 4`e &2 V Z z`( ? j be 3 : 3 J 3 * * 3 ( V U z PP r N9 . Z nU{ j ,j > z [ JM * R * NU z ? * j 3 N . [ Z J :H% * j ^U 0 i R- j [ j nU 8 . * * 0 * j j z UU Z J N * Z [ : j 4j / * 2 Z * j * j j ,j 0 :0 3 KI j nU z3 n N * Z J .L! * j NU{0 . R) j : [ nU 8 * : * 0 0 * j j UU Z J N * Z : [ : ? j 4j r r R j ? * r 2 Z * j% j 4j% ? * % Z 4v% / j ,je * : R) T UU Z j 4je ( 0 z 2 " J * T;# : * j 2 " J * : 2 J) Z N je ? * je r : z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R Z * je / 4`e " . c 2 Z ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R . Z * je ? 4`e *2 V Z z ( / j ,je 2 " z :3 J [ V U ZZ / j ,j% : 0 R= T j UU Z . [ j : Z j t% / j ,je * R) j T UU Z / j 4je zc ? * j% JI B Z ^ z * Tu% ? * je :JI : F j ^ ? * `e 2 [ i Z ? 4v 3 F F z F F Z 4v 0 " V z z J * Z z ? * je N * * [ z1 J) * T j z R Z 4v " J) NU; z R Z ? * je R * Z ? * je 2 2 ZZ J J = J Z * Z o Z ! V z` TUUUUUUU " * V z`X * V zh R " Z z z`@ / * je K ? * je * z / Jn " : 2 " 3 " z` 2 . Z j ? * j # R " Z z z " c` 2 " * . z X{ 2 K92 Z ^ : je ? * je ( r . z ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 j Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j J .2 z Z z R Z * je / 4`e " : c 2 Z ? * je r . 2 z` ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 j Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j J .2 z Z z R : Z * je ? 4`e .2 V Z z ( / j he 2 " . + z z3 2 J [ VR- B U jU{ ` ZZ Br : K z Z 4v% * je F J U ( j 4je 0 : J j z 2 2 Z * j ? * j 3 J : z z 3 . * j : KU j ^U{`h 0 . j : z` R V Z z z`. ? * je N ? * je ( z ? Jn 3 2 Z z 2 Z ? * j # " . : z 2 zc0 # V V V z z`| " * V z`> " * V zh * V z` " R j z Z`^ / * je K ? * je * z / Jn " z 2 " 3 H- D zx 2 . Z * j "R z Z z 2 cx 3 V V z z`d . j : R * . Z z jh * je ? * je : z / Jn z 2 . UUUU 0 j j z 2 2 Z [ ? * j 3 " . V z z 2 [ j z Z * j UU/ * j 2 j 4j . *R j Z z ? * je 2 [ j z / * je z ? Jn # 2 : Z : z 2 " . " zh ? * j UU 2 [ j 4j " * R j [ j z Z 2 * V z` R 2 Z Z * j UU * j * j / * j + ? *n 3 J z ". j ? * j # . { 2 * V z " 3 " V z 3 " V z R 2 Z Z * j UU * j * j / * j + ? *n # J z " . ? * j . . z *R j Z z UU " * V z 2 * V z` R 2 Z Z * j UU * j * j / * j ? *n 3 J z . ? * j # . jc: 2 * V z 3 . . k 3 " . V : z ( 3 . V [ : z # . : 2 " * * z X 2 J- Z ~ z je ? * je ( r z ? * j% r JI B Z ~ z * Tu% ? * je JI B ~ z * Tue ? * j% JI B Z ~ z * Tu% ? * je r JI B ~ z * Tue ? * j% 2 JI B Z ~ z * Tu% / * je " JI F ~ * `e : J2 j Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j J :2 z Z z R Z * je / 4`e " . c 2 Z ? * je r z` ? * j% r JI B Z ~ z * Tu% ? * je JI B ~ z * Tue ? * j% JI B Z ~ z * Tu% ? * je r JI B ~ z * Tue ? * j% 2 JI B Z ~ z * Tu% / * je " JI F ~ * `e : J2 j Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j J :2 z Z z R . Z * je ? 4`e >2 V Z z ( / j ,je 2 " z 3 J [ VR) B U jU ` ZZ Br *: K z Z 4v% * je F J U j 4je 0 : J j z 2 2 Z * j ? * j 3 J : z z 3 * * : " JU z ~U{` * .R V j z Z z . / * je K ? * je ( z ? Jn 3 2 Z z 2 Z * j * "R V j z Z zx) / * je K ? * je ( z / Jn z 2 Z [ * j 0 " z R V Z : z . / * je K ? * je ( z ? Jn 3 2 Z : K 2 Z K * j 0 > j R V Z : zx) / * je K ? * je ( z / Jn : 2 Z K * j 0 " j j z 3 " V z z`^ R J) V Z nU; z`) / * je / * je z ? Jn 3 2 Z : K 2 Z K ? * j R * V Z : z . ? * je j / * je z ? Jn 3 2 Z : K 2 Z z K / * j 2 cj 3 " V V z z` # V V V z z` FF " * V z` * V zp " " R j z Z` / * je H ? * je . j j z / Jn " " 1 . z j` . [ j : z ? * ?W 3 " V z z` 3 " " V z z` 2 Z z j -*g / j 4j 2 c 2 Z 56g ? 4 # R " Z : z c` : . R j z Z`h ? * je . j K ? * je ( z / Jn 2 > j 1 z j` 2 > [ j : z ? * ?W 3 " V z z`2 3 " : V z z` 2 Z z z j -*g / j 4j 2 c 2 Z 56g ? 4 3 . [ : z` . R Z / * je K ? * je ( z / Jn " " 1 z j` R R V Z z * j / * j " KI2 NE ? n 3 " j : 2 . Z [ * j / * j " KI2 NU * j ? *n # : " . / * j zc * j% / * j% " KI2 Nu z? Jn 3 . : 2 . Z [ j : * ? * j% 2 z / * j% " KI2 NE :/ n " " : " . : * * j% ? * j% 2 KI2 NU / n 2 " ? j 4j 3 . [ : z` 3 R . Z : z UU # " V * zk z . Z * . Z J J - J j Z * Z Z 2 zc" # * * V z Z z` " . z 2 " * * z X 2 J- Z ~ : je * je r J z ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j J .2 : Z z R Z * je / 4`e " . c 2 Z ? * je r z` ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j J .2 : Z z R . Z * je ? 4`e >2 V Z z ( / j ,je 2 " . : z3 J2 VR- B U jU; h ZZ Br ; K z Z 4v% * je F J U j 4je 0 : J j z 2 2 Z * j ? * j 3 J : z z # . * : " * KU NU{` * V zx 0 " z` R V Z z z . / * je N ? * je ( z ? Jn 3 2 Z z 2 Z * j " .R V j : Z z`. ? * je N ? * je ( z ? Jn 3 2 Z : 2 Z * j " [ z` c " j z` . R V z Z z . / * je N ? * je ( z ? Jn 3 2 Z z 2 Z * j " j zx 2 c 2 J- Z ~ : je ? * je r J- nu{ z ? * j% r JI B Z ~ z * Tu% ? * je JI B ~ z * Tue ? * j% JI B Z ~ z * Tu% ? * je r JI B ~ z * Tue ? * j% 2 JI B Z ~ z * Tu% / * je " JI F ~ * `e : J2 j Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j J :2 z Z z R Z * je / 4`e " . c 2 Z ? * je r z` ? * j% r JI B Z ~ z * Tu% ? * je JI B ~ z * Tue ? * j% JI B Z ~ z * Tu% ? * je r JI B ~ z * Tue ? * j% 2 JI B Z ~ z * Tu% / * je " JI F ~ * `e : J2 j Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j J :2 z Z z R . Z * je ? 4`e >2 V Z z ( / j he 2 " z 3 J [ VR) B U jU x ZZ Br JA ; K ^ { Z 4v% * je F J U j 4je 0 : J j z 2 2 Z * j ? * j 3 J : z z * * : 0 JU f ~U{` " . V : z` * .R V : Z z . / * je K ? * je ( z ? Jn 3 2 Z ; 2 Z ; ? * j ( R V Z z`. ? * je K ? * je ( z ? Jn) 3 2 Z : 2 Z * j 0 " " z z` R H) V Z ^E; z . / * je K ? * je ( z ? Jn 3 2 Z : K 2 Z K * j .H)R V ^U; Z z . / * je K ? * je ( z ? Jn 3 2 Z : K 2 Z K ? * j # " j z z` 2 c( R > V Z z z`. ? * je N ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z`) / * je N ? * je ( z / Jn 2 z 2 Z ? * j R > V Z z z`. ? * je N ? * je ( z ? Jn) 3 2 Z : 2 Z ? * j R * V Z z z ) / * je 2 / * je 2 z / Jni 2 . z 2 Z ? * j 3 * z` R J- V Z ^u; z`. ? * je ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R J- V Z ^E; z`. ? * je ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R J- V Z ^U; z / ? * je ? * je ( z Jn 0 2 [ : Z 2 Z : ? * j R . V Z : z . / * je ? * je ( z ? Jn 3 2 Z : 2 Z ? * j # * z z 2 c # V V V jz *z`T " * V z`6 " * V zx * V *z` 1 : " z j z jh R [ Z / * je K ? * je ( z ? Jn # 2 . Z z 2 " z ? * j # " . z { 0 2 2 V [ j : [ z * ./ z : 0 " J j j z j` 3 j{@ 3 V V jz zhN . Z 1 : J . j j z hr : :R Z / * je H ? * je * j z / Jn 2 z j 1 z x 2 Z { Z ? * j 3 " : V z zx 3 : " V j z : R : Z :/ * je 2 ? * je 2 2 z Z :/ jn / * V UU " . ? * V 2 + z [ * V ? j 4 V 3 " . z zx( 2 R Z : Z / * je K ? * je ( z ? Jn # . j : 2 " . z ? * V UU [ : * V ? j 4 V 3 * . z z 3 :{ 2 Z : z * V UU * V TU? * V 2 : * V ? j 4 V 3 " . z z R Z : z/ * je 2 ? * je ( 2 z ? Jn # : [ " . z1 e [ zx TUUUUUUU 2 J Z j * j ? * ` 2 ? * j 2 ? j 4j 3 " . z z` 2 :{ ( . . : [ z k : j . j z` UU z . j jc 0 * V j *z + 3 V V jz z` 3 ( * . j j X{ 2 K92 Z ^ : je ? * je ( r . z ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 j Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j J .2 z Z z R Z * je / 4`e " : c 2 Z ? * je r . 2 z` ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 j Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j J .2 z Z z R : Z * je ? 4`e .2 V V Z z ( / j he 2 " . + z z3 J 2 [ : j VR= B U jU{ ` ZZ Br j: K z Z 4v% * je F J U j 4je 0 : J j z 2 2 Z * j ? * j 3 J : z z 3 > * j : 3 * OU j z ^U{` 3 " . V : *zh R . V Z z`. ? * je ? * je ( j z ? Jn 3 2 Z : 2 Z ? * j R > V Z z z`. ? * je ? * je ( j z ? Jn 3 2 Z 2 Z ? * j R . V Z z`) / * je ? * je ( j z / Jn) 2 z 2 Z ? * j 3 j z`T R V Z : z . / * je ? * je ( j z ? Jn 3 2 Z : K 2 Z K ? * j R * V Z : z . / * je ? * je ( j z ? Jn 3 2 Z : K 2 Z K * j " *R V j : Z z . / * je ? * je ( j z ? Jn 3 2 Z : K 2 Z K ? * j # . RU z jU{ " zc 2 * V z R . V Z z z ) / * je 2 / * je 2 z / Jn 2 . : 2 Z ? * j R . V Z : z ) / * je 2 / * je 2 z / Jn 2 . z 2 Z ? * j R " V Z : z ) / * je 2 / * je 2 z / Jn) 2 . : 2 . Z z * j z j z j` TUUUUUUU J 2 [ Z * j6 / * j * j6 ? * j ( R V Z z . / * je ? * je ( z ? Jn 3 2 Z : K 2 Z K * j 2 " .RU [ j : j jU{ 2 zc 3 " V z jz` R . V Z z z ) / * je 2 / * je 2 z / Jn 2 . : 2 Z ? * j R . V Z : z ) / * je 2 / * je 2 z / Jn 2 . z 2 Z ? * j R . V Z z z ) / * je 2 / * je 2 z / Jn) 2 . : 2 Z ? * j R > V Z z z`) / * je ? * je ( z / Jn 2 z 3 j : z`d 2 Z z z ? * j UU [ ? j 4j ( R V Z z`. ? * je [ ? * je ( z ? Jn 3 2 Z z 2 Z ? * j # . *RU j z jU{ 2 zc 3 " V V z :z`6 # V V V z :z`2 FF " * V zh * V :z " > R j : j z Z` ? * je . j K ? * je ( z / Jn " " 1 Z z [ j : / * ?W 2 * c # " V z` 2 * 3 " V z z` " > V z z` .g ? * *g 2 + : Z z * V / j 4 V 2 :c 2 Z j "g j t 56g ? 4 3 R " Z z z ( V j zh . j jc z . j jc * V z` > " " R j z Zp\ / * je H ? * je * j z / Jn 2 : > z x| " * z`f " " J 2 " R) ne # " V z [ j zh 2 * V z R V Z z . / * je K ? * je ( z ? Jn 3 2 Z ; 2 Z ; ? * j R > V Z : z`. ? * je K ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R > V Z : z`. ? * je K ? * je ( z ? Jn 3 2 Z : 2 Z / * j :c *R V Z z ) / * je 2 / * je ( z / Jn 2 . : 2 Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : 2 Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : 2 Z * j .HI ^U zh 0 .KI V NU z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R " V Z : z`. ? * je ? * je ( z ? Jn 3 2 Z : 2 Z / * j 2 { R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R " V Z : z`. ? * je ? * je ( z ? Jn 3 2 Z : 2 Z * j .HI * ^U z x UU 2 H) ^u; 3 * V : z` R " V Z z z`. ? * je K ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 2 Z z 2 Z / * j 2 c R " V Z z z`. ? * je K ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je K ? * je ( z ? Jn 3 2 Z z 2 Z / * j " cn 2 * V zx R V Z z . / * je K ? * je ( z ? Jn 3 2 Z ; 2 Z ; ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 2 Z : 2 Z / * j :c *R V Z z ) / * je 2 / * je ( z / Jn 2 . : 2 Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : 2 Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : 2 Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : 2 Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : 2 Z ? * j R . V Z : z ) / * je 2 / * je + z / Jn 2 . : 2 Z * j .HI ^U zx 0 .KI V ~U z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R J9 V Z NU{ z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R > V Z : z`. ? * je ? * je ( z ? Jn 3 2 Z : 2 Z / * j 2 {4 R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R J9 V Z NU{ z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R > V Z : z`. ? * je ? * je ( z ? Jn 3 2 Z : 2 Z * j .HI * ^U z x TU 0 *HI V ^u z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R J9 V Z ~U{ z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 2 Z : 2 Z / * j 2 c4 R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R J9 V Z ~U{ z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R . V Z : z`. ? * je K ? * je ( z ? Jn 3 2 Z : 2 Z ? * j " > : >R z Z z PU ! * z z` " " J z2 " R) ne{# . V j zhZ 2 * V zx R V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z / * j cz .R V j Z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z * j *KI ~U z` : 0 *JI V nU j z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 2 Z z 2 Z / * j 2 { R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 2 Z z 2 Z * j 0 *KI . ~U z h UU 3 KI V ~u j z R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z / * j 2 c R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z / * j " c 2 * V zx8 R V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z / * j c2 *R V z Z z`) / * je / * je z ? Jn 3 2 Z ; 2 Z ; ? * j R . V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z * j *KI ~U z` : 0 *JI V nU j z` R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R J9 V Z ^U{ z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 2 Z z 2 Z / * j 2 {4 R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R J9 V Z ^U{ z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R : V Z z z . ? * je 2 / * je . z ? Jn 3 2 . 2 Z z 2 2 Z ? * j R " V Z z z`. ? * je N ? * je ( z ? Jn 3 2 Z z 2 Z * j 0 *KI * ~U j z h TU 3 KI V ~u j z`4 R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R J) V Z ^U; z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z / * j 2 c R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R J) V Z ^U; z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z : z . ? * je / * je z ? Jn 3 2 Z : 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z / * j " c * V :zh4 0 . j j 3 ( * * * j X 2 J- Z ~ : je * je J r z ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j J .2 : Z z R Z * je / 4`e " . c 2 Z ? * je r z` ? * j% r NI B Z ^ z * Tu% ? * je NI B ^ z * Tue ? * j% NI B Z ^ z * Tu% ? * je r NI B ^ z * Tue ? * j% 2 NI B Z ^ z * Tu% / * je " NI F ^ * `e . J2 Z zx ? * je 2 z Z * ` * j * j ? * j FNI F * j 4j J .2 : Z z R . Z * je ? 4`e >2 V Z z ( / j ,je 2 " . : z3 J2 VR- B U jU; h ZZ Br j: K z Z 4v% * je F J U j 4je 0 : J j z 2 2 Z * j ? * j 3 J : z z # . * : " * KU NU{` * V zx 0 " z` R V Z z z . / * je N ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R . V Z : z`. ? * je N ? * je ( z ? Jn 3 2 Z : 2 Z * j " .R V j : Z z`. ? * je N ? * je ( z ? Jn 3 2 Z : 2 Z * j " [ z` c^ " j z`D . R V z Z z . / * je N ? * je ( z ? Jn 3 2 Z z 2 Z * j " j zx " c` " " J * z2 " z3 JI . ^e j 3 ( * * * j X 2 J) Z ~ je * je K- .r T z ? * j% r JI B Z ~ z * Tu% ? * je JI B ~ z * Tue ? * j% JI B Z ~ z * Tu% ? * je r JI B ~ z * Tue ? * j% 2 JI B Z ~ z * Tu% / * je " JI F ~ * `e : J2 j Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j J :2 z Z z R Z * je / 4`e " . c 2 Z ? * je r z` ? * j% r JI B Z ~ z * Tu% ? * je JI B ~ z * Tue ? * j% JI B Z ~ z * Tu% ? * je r JI B ~ z * Tue ? * j% 2 JI B Z ~ z * Tu% / * je " JI F ~ * `e : J2 j Z zx ? * je 2 2 z Z * ` * j * j ? * j FJI F * j 4j J :2 z Z z R . Z * je ? 4`e >2 V Z z ( / j `e 2 " : 3 J VR) B U jU p ZZ Br j: K z Z 4v% * je F J U j 4je 0 * J j z Z * j ? * j 3 J * z z * * : ! JU ~U{ ` " * V zhF 2 * V z ( R V Z z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn) 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z / * j 2 c R . V Z z`. ? * je K ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z . / * je K ? * je ( z ? Jn) 3 2 Z z 2 Z ? * j R * V Z z z . / * je K ? * je ( z ? Jn 3 2 Z z 2 Z * j " * zh0 0 * > V j : j z R . V Z z ) / * je 2 / * je + z / Jn 2 . 2 Z ? * j ( R V Z z . / * je 2 ? * je z ? Jn 3 2 Z z 2 Z ? * j R . V Z z ) / * je 2 / * je + z / Jn 2 . 2 Z / * j 2 { ( R V Z z . / * je 2 ? * je z ? Jn 3 2 Z z 2 Z ? * j R . V Z z ) / * je 2 / * je + z / Jn 2 . 2 Z ? * j R . V Z z ) / * je 2 / * je + z / Jn 2 . 2 Z * j * . zx UU 2 * V z` ( R V Z z`. ? * je H ? * je ( j z ? Jn 3 2 Z 2 Z ? * j R K- V Z ^E; z`. ? * je H ? * je ( j z ? Jn 3 2 Z : 2 Z ? * j R . V Z : z`. ? * je H ? * je ( j z ? Jn 3 2 Z : 2 Z / * j 2 c R K- V Z ^E; z`. ? * je H ? * je ( j z ? Jn 3 2 Z : 2 Z ? * j ( R V Z z`. ? * je H ? * je ( j z ? Jn 3 2 Z 2 Z ? * j R . V Z : z`. ? * je H ? * je ( j z ? Jn 3 2 Z : 2 Z / * j " cn 2 * V z`> ( R V Z z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn) 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z`) / * je / * je z ? Jni 3 2 Z z 2 Z / * j 2 c R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z`) / * je / * je z ? Jn 3 2 Z ; 2 Z ; ? * j R * V Z z`) / * je / * je z ? Jn) 3 2 Z ; 2 Z ; ? * j R * V Z z`) / * je / * je z ? Jn) 3 2 Z ; 2 Z ; ? * j R * V Z z`) / * je / * je z ? Jn 3 2 Z ; 2 Z ; ? * j R * V Z z`) / * je / * je z ? Jni 3 2 Z ; 2 Z ; * j " * zh 0 * " V [ j : z` R " V Z z z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R J! V Z ~E{ z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z ? * j ( R V Z z`. ? * je ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z / * j 2 { ( R V Z z`. ? * je ? * je ( z ? Jn 3 2 Z : 2 Z ? * j R J! V Z ~E{ z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z ? * j R " V Z z z`. ? * je ? * je ( z ? Jn 3 2 Z z 2 Z * j * * j zx TU 2 * V z`6 ( R V Z z`) / * je / * je z ? Jn 3 2 Z 2 Z ? * j R K) V Z ^e{ z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R K) V Z ^E{ z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z / * j 2 c0 R K) V Z ^E{ z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R K) V Z ^e{ z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j ( R V Z z`) / * je / * je z ? Jn 3 2 Z 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j R * V Z z z . ? * je / * je z ? Jn 3 2 Z z 2 Z ? * j :r Z j ,je R Z z ? * je 3 JI ^U j . N > > i z X; UUUU O! J .2 j [ T; Z ? je r * * j * je : >2 j : Z z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 : Z z R Z * je / 4`e * { ? * je r zx ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 : Z z R * Z * je 4`e . *2 V X; Z z`( / j be 2 " : :# J 2 * X; 2 J) Z N je ? * je ( r z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e > J2 j Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J >2 z Z z R Z * je / 4`e " * { 2 Z ? * je r zx ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e > J2 j Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J >2 z Z z R * Z * je 4`e " *2 V : Z z`( ? j be 3 z : 3 * J [ 2 J) Z N je ? * je ( r z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e > J2 j Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J >2 z Z z R Z * je / 4`e " * c 2 Z ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e > J2 j Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J >2 z Z z R * Z * je ? 4`e >2 V Z z`( ? j be 3 z : 3 J [ * * VR) r U T z Z`P PP ? j ,j K= & T j z : [ OI *R ~U ? * j 3 N > [ Z J *H! ^U{0 R= j nU 8 > * * 0 * j j UU Z J N * Z [ : j 4j / * 2 Z * j * j j ,j 0 & z [ j 3 HI ^U z K 3 N " Z j J *J1 U ~U;0 l R= j : j nU 8 >r : j * 0 0 > j j j UU Z J N * Z j : [ : H j 4j * r R Z * j% j 4j% ? * % Z 4v% / j ,je * : R) T z UU Z j 4je ( 0 z 2 " J * T;# . * j 2 " J * : 2 J) Z N je ? * je r . z ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R Z * je / 4`e " . c 2 Z ? * je r z` ? * j% r JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je r JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e . J2 Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 Z z R . Z * je ? 4`e *2 V Z z ( / j ,je 2 " z :3 J [ VR) U jU ` ZZ/ j ,j% * R) T UU Z j : Z j t% / j be * R) j T UU Z / j 4je zc ? * j% JI B Z ^ z * Tu% ? * je *JI . F j ^ ? * `e 2 K e : Z ? 4v 3 F F z F F Z 4v 0 * V z z` J : Z z ? * je N. : : z1 N-. * * T j j z R Z 4v 0 *K- ^U{ z F2 JU Z ~U{ * je ? * je ( r z ? * j% r JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je r JI B ^ z * Tue ? * j% 2 JI B Z ^ z * Tu% / * je " JI F ^ * `e . J2 j Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 z Z z R Z * je / 4`e " * :c 2 Z ? * je r V z` ? * j% r JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je r JI B ^ z * Tue ? * j% 2 JI B Z ^ z * Tu% / * je " JI F ^ * `e . J2 j Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 z Z z R * Z : * je ? 4`e F2 F Z Z * 6 je ? * je ( r z ? * j% r JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je r JI B ^ z * Tue ? * j% 2 JI B Z ^ z * Tu% / * je " JI F ^ * `e . J2 j Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 z Z z R Z * je / 4`e " * :c 2 Z ? * je r V z` ? * j% r JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je r JI B ^ z * Tue ? * j% 2 JI B Z ^ z * Tu% / * je " JI F ^ * `e . J2 j Z zx ? * je z Z * ` * j * j ? * j FJI F * j 4j J .2 z Z z R * Z : * je ? 4`e F Z * j UUUUUUUU UUUUUUUU UUUUUUUU j UUUU & UU UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU . UU UU UU UU UU 6 UUUU UUUU * ? R Jr Z * j% * je 1 2 U z z [ h * R 2 r K z : * *v / * W " R Z 2 z / * jW R Z ? * je 3 2 :. j z R 2 r K z : * *v / * W * jW > ( V [ j z * jW ? * jW . 2 [ z * W V U z j ? nW 2 z * W > V j z z * jW ? * jW 2 [ z * W > V j { * jW ? * jW [ z * W > V [ j : *z * jW ? * jW [ z * W > V j z z * jW ? * jW [ z * W > V j z * jW ? * jW * r [ z * W * > V j z` * jW * ? * jW [ z ? * W ( r V z * jg ? * j R r Z z K * ? ? * je ( V Z z * jg * `e * jg > ( V j z * jW * ? * jW f : * `W * * W > ( V j z * jW ? * jW * r j : * `W * W * > ( V j z * jW ? * jW [ j : * `W * W > ( V [ j *z * jW ? * jW j : * `W * W > ( V j { * jW ? * jW f : * `W * W > ( V j z * jW ? * jW 2 [ j : * `W * W > ( V j z ? nW 2 j : * `W * W > ( V [ j z * jW ? * jW 2 . f : * `W * W > r R Z ? * je 3 ( R Z z R r Z * j7 ? * j r R Z ? * je ( R . Z z * j7 * j * : * UUUU J z j * : 6 UU UU UU UU * UU UU V Z B UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU > UU * UU V * UU UU UU UU v UU UU UU UU UU UU UU 2 : UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU Z B UU UU UU UU R Z v UU UU UU " UU UU R F N UU UU UU UU r z UU UU UU UU UU UU . UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU : UU UU R Z UU UU UU Z F UUUU J z j * : UUUU Z Z ? Fse 3 . . Z JZ " - * J J Z z Z * " z * j V z Zk ? * je 2 Z / * j " " z 2 " J * X R J) Z ~ je ? * je ( r Z zh ? * je .JI F j ~ * `e 0 " * z R K U z * j% * j * j * j ? * ` FJI F * ? j 4j " . z z r Z * je / 4`e " . zc R Z ? * je r Z z ? * je .JI F j ~ * `e 0 " * z R K U z * j% * j * j * j ? * ` FJI F * ? j 4j " . z z r . Z z * je ? 4`e *R V Z z ( / j `e 2 " z 3 J [ V FR U Z Z ZZ . . z Z : j 4je J! T z zx J 2 [ j z Z / * j 2 :c 2 Z z [ * j6 ? * j 3 : # R V K U z z 2 " J R R & Z " z j j t? ? * je 3 B j Z : F F2 K j 4 ? * JE Z z NU * j * ` HE T Z / j 4j { * j% * j * j * j ? * ` FJI F * j 4j . . j : zx . . z z` Z Z * j 0 * * z U U # J V * Z zk T{ * V zx4 ? * 6 3 ( * X{ R J- Z ^ * 6 je ? * je 3 ( R Z z r * Z : ? * je JI F j ^ * `e ( R K U zx * j% * j * j * j ? * ` FJI F * j 4j R * K U : j z r " Z z * je / 4`e c * je * r Z z` ? * je JI F j ^ * `e ( R K U zx * j% * j * j * j ? * ` FJI F * j 4j R * K U : j z r " Z z * je ? 4`e *R V Z Z z ( / j he 2 " z3 J z # V U` ZZ . R z Zx ? * j # " .RU jU{ c 0 V V V V : z z`0 Z ? * 6 3 ( * X{ R J- Z ^ * 6 je ? * je 3 ( R Z z r * Z : ? * je JI F j ^ * `e ( R K U zx * j% * j * j * j ? * ` FJI F * j 4j R * K U : j z r " Z z * je / 4`e c * je * r Z z` ? * je JI F j ^ * `e ( R K U zx * j% * j * j * j ? * ` FJI F * j 4j R * K U : j z r " Z z * je ? 4`e *R V Z Z z ( / j he 2 " z3 J z V U` ZZ JI F j N Z ? j 4j 3 " . zx TU 3 ( * V j z * . z X{ JI F z [ Z * ` J * z Z 4v r Z [ i * j ? 4v R F Z je ? * je ( r Z zh ? * je *JI F ^ * `e 0 " * : z R K U z * j ? * j% FJI F * * * j * j ? j 4j " * z r Z * je / 4`e " * :c R Z ? * je r V Z z ? * je *JI F ^ * `e 0 " * : z R K U z * j ? * j% FJI F * * * j * j ? j 4j " * z r * Z : * je ? 4`e FR F Z Z * 6 je ? * je ( r Z zh ? * je *JI F ^ * `e 0 " * : z R K U z * j ? * j% FJI F * * * j * j ? j 4j " * z r Z * je / 4`e " * :c R Z ? * je r V Z z ? * je *JI F ^ * `e 0 " * : z R K U z * j ? * j% FJI F * * * j * j ? j 4j " * z r * Z : * je ? 4`e F Z * j J j * UU z UUUUUUUU UUUUUUUU ^ UU . UUUU N UU B J UU UU UU UU * UU UU UU UU UU UUUU UUUU R K U * j% ? * je ( R U z * * j% ? * je ( R Z z * * je / * je R Z ? * je " z * ? $ R Z z ? * je 3 R J * Z z ( V [ \{h ? * je # R Z R Z * je "J- VR- j ~U; [ j z T h 2 * V z R Z [ n ? * je J- j nU; . V j [ j z` " c 2 * V z` z ? Jn ( R j Z zx ? * je 0 J- . V ~U; j z j` R Z / je j je * V j UU Z UUUU : * " J " J N R B F : * Z 2 : j * b ^ z z j r UU UU Z B UU UU UU UU R Z v UU UU UU UU r z UU UU UU UU UU UU UU F N UU UU UU UU UU UU UU UU UU UU UU UU UU * UU UU V Z B UU UU UU UU V B UU n UU UU UU R N UU UU UU . UU UU V Z B UU UU UU * UU UU V Z B UU UU UU UU Z UU n UU UU UU Z B ~ UU 2 : UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU : UU * UU V * UU UU UU UU v UU UU UU UU UU UU UU 2 : UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU 6 UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU > UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU * UU UU UU UU UU b UU : " UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU : UU UU R Z UU UU UU n f UUUU Z : * " J " J N R B F : * Z 2 : j * b ^ z z j r UUUU B ? w 3 ( R V Z z r R Z K * j% ? * je R r K Z z / * j% ? * je ( R Z z ) * je / * je r Z ? * je # R Z z ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je 2 JI F N * `e 1 J * z Z z K * j% * j * j * j ? * ` FKI F * ? j 4j " * z z Z * je 4`e * je * w * w R K Z b j ,j ? * j r F Z T ? * j r [ Z * j * j / * j [ ? * j 3 r R K Z R * V Z z z . * VR V j z Z z DD 0 * VR V j z Z z R * Z z ? * je 2 Z : / j ,je 2 " z : * J j 4je 1 2 N . j z j Z j -je ? j 4j # " * : z 2 ? * j% * Z X; z * Tue ? * w R : Z z j te ? j ,j% JI F n ? j 4je R r Z K j ,j% / * je 2 * * : j Z / * `e B * w 1 2 * z z [ Z * je ? * j # " * z z * je ? * je j / : w * w ? * w R V V Z z zh DD ? * je # ( R V Z z ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je 2 JI * F N * `e 0 J z Z z K * j% * j * j * j ? * ` FKI F * ? j 4j " * z z Z * je 4`e / * je * V z * w 2 J) *R ^U; j Z * je *J) * Z ~U j *R Z / * `e * : * w J Z [ z * j * j * Z z [ z Z c * w BJE * NU z Z / * w 2 * `e 1 . JK) j T z ` Z K ? * j 3 " * z z` R Z * je * `e * w Z * `e * w * * " V z j z`( 2 J) ^U; # " " " " J 2 z 3 U z 0 " *J) V : T z`+ # " " 2 " J : z gfff 0 " *J) V : T zx+ # " " " J ( j : 8 " J :0 " *J) V : T z`+ # " " 2 " J z $I 0 & *J) V j : T z + # " " " J z? * w R 2 Z * j% ? * je " * V T zx" ? * w " * V : z - * w V z / TUUUUUUU ? * w " V : zx) * w 0 * V j *zx+ # * V V jz zx : * > > V z z`( 2 O) ^U; # " " " " J :2 : 3 U 3 j # : . V j z z ( 2 K) ^U # " 2 " J z j gfff 0 6 *J) V T zx+ # " " J ( j z 8 " J 0 6 *J) V T zx+ # " " J B * j $I ? * w 3 J) V T z ( # " " J * w & " H- z ^U * j J . [ z 0 [ : [ j : 3 JN : [ z HI T z J 2 z [ jk Z * je JN R r z [ jk ? * Tu% J z [ jk : * Tu% J * z k z Z / * Tu% * w * je . j UU U * `e 0 * J z Z Z * j . Z T; z x * j J V X Z zx * 6 ? * j ( K [ * j * Z z Z 2 j N TUUUUUUU : * w . j ? * w > : * 1 * . [ z` 2 2 Z z ? * j 3 " . V X{ zx ( R V Z zx * je 0 2 2 V j z Z z 2 2 Z z z ? j b KI F [ N / j 4j { j b 2 UUU / j 4j { "2 2 V j z z Zx( ? * j 3 ( Z : # " b " JR= kU " r zx ? j b KI F [ N / j 4j c .r Z z : 0 J N " Z z J N Z ( Z z * 0 6 " : j z z` " " 0 [ j : Z { j * J . R : * & & V [ z z Zx R i Z z j`+ 0 r RU z jUc` 2 . z Z z * ? * j J2 Z j z j ,j UUUj / j 4j " z{4 2 R 2 V j j z Z` j b * ` 2 UUU / j 4j 2 { R 2 V Z z zx, * je 2 2 V j z Z z j ` UUU / j 4j { * w r " . : j z ? Z Z 0 J N " Z z J N Z 0 ( Z z * 3 > Z z zx " [ b Z :{ j : * J . : * & & V [ z z Zx : Z z jp+ R RU j jUc` 1 2 " : j z + * 3 "2 : 2 2 " Z z j : j , V " * UUUj K * V j 4 V 0 :2 2 Z : j z TU 3 " : 2 HI2 NU : * w " . H9R j z NU; Z * je :0 P " j : J P 2 : j J " 2 : Z : 2 2p * z : , , N 2R5 zk :: T5 2 2 . z : > zk z z jk : * w * > : 0 > >/ j z k : * w 6 6 : * z j` 2 2 r r [ Z Z * j 0 * * U U # J V * Z zk T * V zh * 6 ? * 6 3 ( j * X J= Z ~ * 6 je ? * je 3 ( Z z * ? * j% OI B Z ~ z * Tu% ? * je OI B ~ z * Tue ? * j% OI B Z ~ z * Tu% ? * je OI B ~ z * Tue ? * j% OI B Z ~ z * Tu% ? * je 2 OI B ~ z * Tue ? * j% 2 OI B Z ~ z * Tu% ? * je OI F j ~ ? * `e > Z ( K zx * j ? * j% FOI F * * * j * j j 4j * K j z Z * Z * je / 4`e c ? * je 3 " z` * ? * j% OI B Z ~ z * Tu% ? * je OI B ~ z * Tue ? * j% OI B Z ~ z * Tu% ? * je OI B ~ z * Tue ? * j% OI B Z ~ z * Tu% ? * je 2 OI B ~ z * Tue ? * j% 2 OI B Z ~ z * Tu% ? * je OI F j ~ ? * `e > Z ( K zx * j ? * j% FOI F * * * j * j j 4j * K j z Z * Z * je ? 4`e > V Z z ( / j ,je 2 " : 3 R J 3 V 6 U `, ZZ 2 JE Z {] ? * j # " J V z 6 : R R - 2 : z Z ? * j # " 6RU : jU{ " 6 c * 2 Z z Zx * j ? * j # " *RU jU{x " 6 c 2 * V zx r 2 Z * 6 ? * 6 3 ( j * X J= Z ~ * 6 je ? * je 3 ( Z z * ? * j% OI B Z ~ z * Tu% ? * je OI B ~ z * Tue ? * j% OI B Z ~ z * Tu% ? * je OI B ~ z * Tue ? * j% OI B Z ~ z * Tu% ? * je 2 OI B ~ z * Tue ? * j% 2 OI B Z ~ z * Tu% ? * je OI F j ~ ? * `e > Z ( K zx * j ? * j% FOI F * * * j * j j 4j * K j z Z * Z * je / 4`e c ? * je 3 " z` * ? * j% OI B Z ~ z * Tu% ? * je OI B ~ z * Tue ? * j% OI B Z ~ z * Tu% ? * je OI B ~ z * Tue ? * j% OI B Z ~ z * Tu% ? * je 2 OI B ~ z * Tue ? * j% 2 OI B Z ~ z * Tu% ? * je OI F j ~ ? * `e r > Z ( K zx * j ? * j% FOI F * * * j * j j 4j * j r K j z Z * Z * je ? 4`e > V Z z ( / j ,je 2 " : 3 R J 3 V 6 U ` ZZ 2 JE Z {] ? * j # " J V zx * 2 z Zx ? * j # " *RU jU{ 6 c 0 V V V V : z z` r 2 Z ? * 6 3 ( j * X J) Z ~ * 6 je ? * je 3 ( J Z z * ? * j% JI B Z n z * Tu% ? * je JI B n z * Tue ? * j% JI B Z n z * Tu% ? * je JI B n z * Tue ? * j% JI B Z n z * Tu% ? * je 2 JI B n z * Tue ? * j% 2 JI B Z n z * Tu% ? * je JI F j n ? * `e * Z ( K zx * j ? * j% FJI F * * * j * j j 4j * K j z Z 6 Z : * je / 4`e c ? * je 3 " J z` 6 : ? * j% JI B Z ~ z * Tu% ? * je JI B ~ z * Tue ? * j% JI B Z ~ z * Tu% ? * je JI B ~ z * Tue ? * j% JI B Z ~ z * Tu% ? * je 2 JI B ~ z * Tue ? * j% 2 JI B Z ~ z * Tu% ? * je R JI F j ~ * `e 2 P K Z zx * j ? * j% FJI F * * * j * j j 4j 6R 2 K : j z Z 6 Z : * je ? 4`e > V Z z ( / j ,je 2 " J 3 J V 6 U ` ZZ 2 OI F r [ j n Z / j 4j 2 > c >2 r Z / * j 2 * V z >2 r Z ? j ` " R UUU ? * j 3 R5 : T z zx VU ( R R Z b j ,je ? * je Z * ` ? * w J 2 z 4v w . * * j : * w * w 1 K- J " T * j z ` Z ? * j " :UU U * j [ j ZUUU * * Tu ? * j 3 " . z z` * : * w 1 . J . * j z Z ? * j " UUU ? * j " * : z * w ( R Z b R K U * je ? * j% . . ZZ J ? * w " - Z J Z Z * 0 2 + z * Tue ? * j% r Z / j t% B : j 4j% * % / * je 2 " J * X{ J) Z ^ : je ? * je Z z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z Z * je / 4`e * z{ ? * je z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z * Z z * je 4`e r * B VR : j z Z + r BR : j Z * Tu% / * je 2 " J * X{ J) Z ^ : je ? * je Z z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z Z * je / 4`e * z{ ? * je z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z * Z z * je 4`e r * F VR : j z Z + r FR : j Z * Tu ? * j # JI * ^U j 2 " J * ^: J) F Z N : * j je ? * je Z z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z Z * je / 4`e * z{ ? * je z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z * Z z * je 4`e r * F VR : j z Z + r FR : j Z * Tu ? * j # JI * ^U j 2 " J * ^: J) F Z N : * j je ? * je Z z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z Z * je / 4`e * z{ ? * je z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z * Z z * je 4`e r * B VR : j z Z + r BR : j Z * Tu% / * je 2 " J * X{ J) Z ^ : je ? * je Z z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z Z * je / 4`e * zc ? * je z ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je *JI F N * `e 0 J z Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z * Z z * je ? 4`e . V Z z`( ? j he 3 [ z 3 J [ R Fr Z Z ? * `e V U K x ZZ ? j h J- . T j : * j 0 KI . / nU 3 N * [ Z J .J) *R ^U{0 R- j z nU 8 * z j * [% z 0 . j j : UU Z J N * Z j [ : Z j 4j * j ,j 0 * z [ R JI NU : / * j 2 " J z J . j JI S) j nU [ j nU 8 0 * j j " J N * Z j : : UU Z j 4j / * Z j ,j * : j / * j " " KI ^U 2 " J z J . j JI S- j ^U nU{ 8 0 * j " J N * Z : : UU Z * j 4j Z z j ,j 0 * z [ R JI NU : / * j 2 " J z J . j JI S) j nU [ j nU 8 0 * j j " J N * Z z : UU Z j 4j / * Z j ,j * : j / * j " " KI ^U 2 " J z3 J . j 3 z 8 KI *J- NU j ^U{ 0 * [5 j J N * Z z : UU Z * / j 4j 2 Z ? * j% JI B Z ^ z * Tu% ? * je 2 JI F Z ^ * `e j ,j 0 * z [ R JI NU : / * j 2 " J z J . j JI S) j nU [ nU{ 8 0 * j b J N * Z j : : UU Z j 4j / * 2 Z j ,j * : j / * j " " KI ^U 2 " J z3 J . j 3 z 8 KI *J- NU j ^U{ 0 * [5 j J N * Z j : : UU Z * j 4j F Z ? j ,je 2 2 2 Y 0 " Z Z : K 3 2 " z 2 & & z Z :0 2 & & 3 " 0 R9 nU{ :. 6 J 6 : j z j 2 2 [ Z Z * j 0 R * Z * j : U U # J V * Z zk T{ * V z` * je / * 6 2 [ j 3 ( J * [ X{ J) Z ^ : * 6 je ? * je 3 ( Z z * z ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je 2 JI B N z * Tue ? * j% 2 JI B Z N z * Tu% ? * je JI F [ j N ? * `e * Z : ( K zx * j ? * j% FJI F * * * j * j j 4j * K z [ j z Z * Z z * je / 4`e c ? * je 3 " z` * z ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je 2 JI B N z * Tue ? * j% 2 JI B Z N z * Tu% ? * je JI F [ j N * `e P K Z zx * j ? * j% FJI F * * * j * j j 4j * K z [ j z Z * Z z * je ? 4`e > V Z z` / j ,je 2 " : z3 J c 3 " V V Zz z` 2 R Z Z * je ? * 6 3 ( * [ X{ J) Z ^ : * 6 je ? * je 3 ( Z z * z ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je 2 JI B N z * Tue ? * j% 2 JI B Z N z * Tu% ? * je JI F [ j N ? * `e * Z : ( K zx * j ? * j% FJI F * * * j * j j 4j * K z [ j z Z * Z z * je / 4`e c ? * je 3 " z` * z ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je 2 JI B N z * Tue ? * j% 2 JI B Z N z * Tu% ? * je JI F [ j N ? * `e r * Z : ( K zx * j ? * j% FJI F * * * j * j j 4j * r K z [ j z Z * Z z * je ? 4`e > V Z z` / j ,je 2 " : z3 J c ( R V Z jz` ? * je 2 * Z z ? * 6 3 ( * [ X{ J) Z ^ : * 6 je ? * je 3 ( Z z * z ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je 2 JI B N z * Tue ? * j% 2 JI B Z N z * Tu% ? * je JI F [ j N ? * `e r * Z : ( K zp * j ? * j% FJI F * * * j * j j 4j * r K z [ j z Z B * z Z * je / 4`e Z * je 0 B Z z * z ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je JI B N z * Tue ? * j% JI B Z N z * Tu% ? * je 2 JI B N z * Tue ? * j% 2 JI B Z N z * Tu% / * je " JI F N * `e 0 " * : z R Z z K * j ? * j% FJI F * * * j * j ? j 4j " * z z * Z z * je ? 4`e B Z / $ w * V z ( / j ,je 2 " z : J [ [ $ w ? : >2 Z * j r B B Z ZZ J 4 J ) J Z * Z J Z ? j w F ; * `e r 2 2 . R Z z Z * j 2 J 2 [ T Z z * j ? * j R 2 Z z * j / w " ? * j 3 " :RU jU{x 3 F Z V F U Z ZZ 2 OI F [ j n Z ? j 4j 3 : :. z zx VU F Z ? j ,je ( Z ? * `e F Z je ? * je Z z ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je 2 JI * F N * `e 0 J z Z z K * j ? * j% FKI F * * * j * j ? j 4j " * z z Z * je / 4`e * z ? * je V z ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je 2 JI * F N * `e 0 J z Z z K * j ? * j% FKI F * * * j * j ? j 4j " * z z * Z z * je 4`e ? j j F F Z * 6 je ? * je Z z ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je 2 JI * F N * `e 0 J z Z z K * j ? * j% FKI F * * * j * j ? j 4j " * z z Z * je / 4`e * z ? * je V z ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je JI B ^ z * Tue ? * j% JI B Z ^ z * Tu% ? * je 2 JI B ^ z * Tue ? * j% 2 JI * B Z ^ j z * Tu% ? * je 2 JI * F N * `e 0 J z Z z K * j ? * j% FKI F * * * j * j ? j 4j " * z z * Z z * je 4`e / j j F * j 6 > UUUU & UU * UU * UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU R UU 6 UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UUUU UUUU z R r K Z j ,je ? * je R Z j z V z z UU / * je " JI F ^ * `e ? j 4j% J-R T Z * % ? j be & " : R) ? T j 0 [ 0 : " J * Z * : * P { z : j zUU Z [ j z [ ? j 4je e 2 K- T J e 0 J & j Zz & . B Z z / $ w 2 * z`: " . z R j z Z z 0 j R JI Z ^U [ j * je R V j Z z c * je R) nU{ 2 " . " . z R j z Z z 0 j R JI Z ^U [ j * je R V j Z z c * je R) nU{ 2 " . 3 " * z z` " V z zx 0 j R JI Z ^U [ j ? * je " V zx jc R Z z * je R) nU{ 2 " * z : ? $ 3 {* " . V z`" " z zx 0 j R JI Z ^U [ j * je V [ z`( R R) Z nU{ / * je 2 " . " . z R j z Z z 0 j R JI Z ^U [ j * je R V j Z z c * je R) nU{ 2 " . " * z z R j z Z z 0 j R JI Z ^U [ j * je R V j Z z jk * je R- j nU; " " * z : R 2 2 Z ZZ J ? $ 1 Z $ w l > > Z ZZ J 0 6 6 ZZ J 3 L) 2 = T Z 2 ) Z Z J * 2 Z Z Z > Z * r Z * " J z * 0 . 2 r [ : z 0 * V j *z . ( R Z z 1 * j z [ j + R)R [ j jU Z z R9 j nU S9 nU{ S5 j nU; K9 J5R9 T T j nU; * bx ? * je 3 " V zx 3 " . z z 3 " * z`" R Z z z 0 j R JI Z ^U [ j ? * je " V zh c R Z / * je " z 2 " * * 3 " * z`" R Z z z 0 j R JI Z ^U [ j ? * je " V zh c R Z / * je " z 2 " J * 3 * z [ z # R V Z z z 0 j R JI Z ^U [ j ? * je " V zh jk R Z / * je " : " " + * z : / $ w 2 { " * V z`- R Z z z 0 j R JI Z ^U [ j * je V [ z`+ R Z / * je 2 " + * 3 " * z`" R Z z z 0 j R JI Z ^U [ j ? * je " V zh c R Z / * je " : 2 " + * 3 " * z zh" R Z z z 0 j R JI Z ^U [ j ? * je " V zh jk R Z / * je " z " " J * z " * * :j ZZ J ) Z > > Z Z JZ 4 w $ w 0 B B ZZ J J1 6 = T ? 4 2 ) J Z Z 4 w 2 * Z z Z Z > Z Z * w r * 4 w w " J * 4 w ! r Z 2 j 3 ( V *z`) j z 0 " B z + 3 R! [ j jUC ( R Z b TU ( R Z * `e 6 UU j UU UUUUUUUU UUUU " UUUU UUUU UUUU UUUU UUUU UUUU UUUU ? , 3 " z z # V V Z z z` 2 * 3 ( * c 3 " . ZZ J 3 . " ZZ J 3 & - Z 3 . ! Z Z * " z Z Z Z * J z * 0 K Z 3 K [ j : . . z * z 0 zU U J N z . . Z z 0 j z ^ J * z J + [ j z : 0 N j : 3 * # V V Z z z` 2 ( j 3 ( ( :{ 3 . * ZZ J 3 * . ZZ J 3 & ) Z 3 * - Z Z * . Z Z * " J z * 0 J Z 3 J z . . z * z 0 j U U J N j . . f j : 0 [ j z ^ J * z J * j z 0 N z * : 0 " *0 z z [ j : jn ? _n * " ** z z V UU J * J * Z * z J z j Z z z z j z J z Z z J 2 UU > UU : UU ^ UUUU * 6 UU UU UU UU UU Z B UU UU UU UU . UU UU UU UU UU UU * UU V * UU UU UU UU v UU UU UU UU UU UU UU 2 : UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU . UU UU UU UU UU UU UU UU UU : UU UU R Z UU UU UU 6 f UUUU * UUUU z " "R V j Z z R K U * j% ? * je ( R U zh/ * j% ? * je ( R Z zh) * je / * je R Z * je R " " Z j z r Z 4ve * je ? * je 3 * V z zx # " V V z z` R Z ? * je 3 ( * * * X;c # " V V z :z R Z ? * je 3 ( * * j X; J- Z N z je ? * je ( r Z z / 4ve " . :c Z ? * je 3 " z` r . Z : ? 4ve : V Z z ( / j ,je 2 " z :3 J [ 3 VR) U jU;x ZZ 2 *2 * Z z : j 4je " " JU j NU{ * VR! V z T z ` 0 V VR% V z T j z`R FF " * V : z`H . V j z z 0 .+ j z j z jxz * z / Jn " * zx R Z ? * je * z : * ?W V j z j zx ? j ,*g z Z / * j " J z/ * ` * z / * *g * *g / j ,*g * z / * *g c ? * *g * . j : [ j z " ( [ : [ z 2 {$ 3 " zx * z / Jn " * z` R Z ? * je * z : ? * ?W V j : zx ? j ,*g z Z / * j " J z/ * ` * z / * *g * *g / j ,*g * z ? * *g " . :{ ? * *g " . : 0 * j z . z ? Jn 3 " z zx R HEHE Z NE NU *n n * je * : Z * j z j t?g / * j * z / * *g * *g / j ,*g * z ? * *g " . :{ ? * *g " . : * j z " j : [ z` UU 0 " & j jc # " " V z z 2 " J * X J) Z ~ je ? * je ( r Z z / 4ve " . zc Z ? * je 3 " z` r . Z z ? 4ve : V Z z ( / j `e 2 " : 3 J 3 VR) U jU ` ZZ 2 *2 * Z z ? j 4je 3 R% *JU jU{ ~U{`~ 3 & J j . z`f VR j : z Zx+ n / * je z * VR [ z Z`( n * je 0 * Z * Z * j . J : * j z " & zc0 2 " J * : J) Z N je ? * je ( r Z z / 4ve " * c Z ? * je 3 " z` r * Z ? 4ve : V Z z ( / j be 2 " z :3 J [ 3 VR) U jU;` ZZ 2 *2 * Z z :? j 4je K!R%JU t j jU{ NU{ 2 *R V Z z`+ n / * je 2 3 " * V : z ) & R j Z n) ? * je 3 " : :{ & " j : z Z ? j 4j .J! ~U z K) VR D : z Z`+ n / * je 2 " K) V ~U; zx) & . R j j Z n ? * je : Z & . j j Z * j . J * j 0 z [ ( r IU Z ^U{` 4ve r r F K z Z ? * `e 3 R Z " V V z :z 0 V V VR= z [ j :z T ` FF 3 " * V : zh 3 . V j : :z " + z zx / Jn " * z R Z ? * je z / * ?W 2 * c # " V z` 2 * " V : z +g . j : Z Z ? * * J N * Tu6 * *g [ ? * j " ( : j z 0 > > j jc| > V [ j z`x 0 > :+ z jp 2 [ j z : ? Jn " . : zx ! . : z zx " * " " J 2 " R) ne " . V zx R V z Z zx+ n / * je z .R V : Z zx+ n) / * je : 0 . * V j z ) R j Z n ? * je * J [ Z * * j * [ * j c R V Z zx+ n / * je &R V z Z z`+ n) / * je 2 z " & V : zx) . . R z Z n ? * je * * : { . * . * z z Z * ` * Tu6 K) nU; * j 1 * z `, JI V ~U zx "R V Z zx+ ni / * je &R V z Z zx+ n / * je z &R V : Z z`+ n / * je 2 : " z . J j Z * ? * j * j s &R V z Z zx+ n / * je z >R V Z zx+ ni / * je &R V : Z z`+ n / * je 2 : 3 " " . Z z ? * j z [ * Tu6 * j 1 * J z` UU KI V nu j zx *R V [ Z zx+ ni / * je "R V [ : Z zx+ n / * je : "R V [ Z z ( n ? * je 3 * [ j :{ * z J Z * * j * * j c "R V [ : Z zx+ n / * je : >R V [ : Z zx+ ni / * je : "R V [ Z z ( n ? * je # [ { * * * Z ? * j z * Tu6 ? * j . j : 2 : . z z [ j` TU ! > * [ j z` " " J 2 " R) ne " . V : z R V z Z zx+ n / * je z .R V Z z`+ n) / * je 2 3 * V z ) R Z n ? * je * J [ z Z * j z : * * j [ c R V z Z zx+ n / * je z .R V Z zx+ n) / * je 0 * 2 * V z z ) R Z n ? * je * * z [ Z * j N [ * j . J K)r j NU; [ * j 0 k k [ z z`$ JI V ~U z .R V Z zx+ ni / * je . "R V Z z`+ n / * je 2 . 3 " " V z ) R [ j Z n ? * je 3 .. { . z J Z * * j . j * j . . j :s "R V Z zx+ n / * je . "R V Z z`+ ni / * je 2 . 3 > V [ z z ) R Z / n / * je . z . . . j Z ? * j z * Tu6 . . [ j : [ * j 1 * J z` UU KI V Nu z 2 *R V Z zx+ ni / * je 2 .R V Z zx+ n / * je 2 .R V Z z ( n ? * je # [ { * J z Z * j : * * j . . c 2 *R V Z zx+ n / * je 2 .R V Z zx+ ni / * je 2 .R V Z zx+ n / * je * * [ : Z * j j * . . ? * j # > j c * V :zh< 0 > j j 3 ( J * j X J) Z ~ je ? * je ( r Z z / 4ve " . zc Z ? * je 3 " z` r . Z z ? 4ve : V Z z ( / j `e 2 " : 3 J 3 VR) U jU ` ZZ 2 *2 * Z z ? j 4je " R=JU jU ~U{` 0 * j 3 J > " z` R V : Z zx+ n / * je : .R V z Z z`+ n) / * je 2 z 3 " . V z`) R Z n * je 0 * " * { * * " : f Z * ` ? * Tu6 * : * j z " > cd " " J * :2 " : JI > Ne j 0 ( * X; J) Z N je ? * je ( r Z z / 4ve " . zc Z ? * je 3 " z` r . Z z ? 4ve : V Z z ( / j be 2 " : :3 J 3 VR) U jU;` ZZ 2 *2 * Z z :? j 4je # " R=JU jU NU{`" * V z R V Z zx+ n / * je .R V z Z zx+ n) / * je z 0 * V [ : Y z Z ) R Z n * je [ : Y Z / * V z j 4 V JM > T c R V Z zx+ n / * je >R V : Z zx+ n) / * je : 0 . " . V j zx( . .R z Z n / * je 0 O) R- T j nU ; * Z [ j : * V j 4 V 0 j : z`: JI V ~U z "R V z Z zx+ ni / * je . z "R V : Z z`+ n / * je 2 . : 3 " " V z ) R j Z n ? * je 3 .. { . z J [ Z * * j . [ * j . . zs "R V : Z zx+ n / * je . : "R V Z z`+ ni / * je 2 . 3 > V : z ) R Z / n / * je . : . " . z Z * j j * Tu6 . . z * j 1 * J j z` UU JI V nu z 2 *R V Z zx+ ni / * je 2 .R V z Z zx+ n / * je z 2 .R V Z z ( n ? * je # { * J z Z * j [ : * * j . . > c 2 *R V Z zx+ n / * je 2 .R V z Z z`+ ni / * je 2 z 3 " . V zh( >2 R Z n / * je " { > * * : Z ? * j z * Tu6 . . ? * j ( r OU Z ~U{x 4ve r R Fr K Z Z * `e j 4j ? * j F [ j z / * Tu 2 Z ? Jj R Z Z / j t Z * j * j je ? * je ( r Z z 4ve 0 r * F F Z : Z r F F Z Z ? * je 3 V Z z r *r Z : Z ? 4ve F F Z * 6 je ? * je ( r Z z` ? 4ve 3 * F Z : F Z ? * je 3 V Z z *r Z ? 4ve F Z * j numReadsPerClump blockSize blockStride adj_vert_elimination copy_image dispatch_indirect draw_indirect draw_indirect_index_scan geom_allocator geom_blocks geom_input_reorder geom_input_reorder_STATICCOUNTS geom_input_reorder_STATICCOUNTS_PG geom_layers geom_sum primitives_generated primitives_generated_indirect tess_pass1_ISOLINE tess_pass1_TRIANGLE tess_pass1_QUAD tess_pass1_GEOMETRY_TRIANGLE tess_pass1_GEOMETRY_QUAD tess_pass2_allocator tess_pass2_block tess_pass2_patch tess_pass2_sum tess_pass3_index_ISOLINE tess_pass3_index_TRIANGLE tess_pass3_index_QUAD tess_pass3_index_TRIANGLE_TRIANGLEOUT tess_pass3_index_QUAD_TRIANGLEOUT tess_pass3_index_GEOMETRY_TRIANGLE_TRIANGLEOUT tess_pass3_index_GEOMETRY_QUAD_TRIANGLEOUT tess_pass3_point_ISOLINE tess_pass3_point_TRIANGLE tess_pass3_point_QUAD tess_pass4_index tess_pass4_index_GEOMETRY tess_pass4_index_PG tess_pass4_point generate_mipmap_SAMPLE_T2D generate_mipmap_SAMPLE_T3D generate_mipmap_RESOLVE_RGBA16F generate_mipmap_RESOLVE_R11G11B10F ? D gl_DepthRange.near gl_DepthRange.far gl_DepthRange.diff gl_mali_NumWorkGroupsTessCtrl gl_mali_NumWorkGroupsTessEval gl_mali_NumWorkGroupsGeometry @ @ P Q R Z e f g [ h i j \ S T U V W X Y COMP VERT FRAG CTRL EVAL GEOM BATT [0] z | { MPB1 VRSN SSEP Link failed because of missing vertex shader. Link failed because of invalid vertex shader. Link failed because of missing fragment shader. Link failed because of invalid fragment shader. Link failed because of invalid compute shader. Link failed because of missing tessellation control shader. Link failed because of invalid tessellation control shader. Link failed because of missing tessellation evaluation shader. Link failed because of invalid tessellation evaluation shader. Link failed because of invalid geometry shader. Link failed because of missing shader. Link failed because of the mix between a compute shader and a non-compute shader. Link failed because the number of transform feedback varyings is > 0 and the program does not have a vertex, tessellation evaluation or geometry shader. Two or more active samplers of different type are assigned to the same texture unit. The program object is incomplete. 1 0 MBS2 { ~ } | uint base_index=vertex_data.prim_restart; bool close_prim=false; uint winding=0u; indexbuffers[layeridx].cur_index++; #version 310 es layout(local_size_x=1) in; void main() { } #version 310 es #extension GL_ARM_explicit_attribute_access : require layout(local_size_x=1) in; layout(binding=%d, std430) buffer vertex_data_block { uint instance_count; uint vertex_count; uint padded_vertex_count; int base_vertex; uint prim_restart; uint base_index; } vertex_data; struct AD { uint format_and_buffer_index; int offset; }; layout(binding=%d, std430) buffer OutputAdSSBO { AD output_ad[]; }; struct XFBvar { uint explicit_loc; uint ad_count; uint stride; int buffer_pos; }; layout(binding=%d, std430) buffer XfbvarsSSBO { XFBvar xfbvar[]; }; layout(binding=%d, std430) buffer ExlocToAdIdxMapSSBO { uint exloc_adidx_map[]; }; layout(binding=%d, std430) buffer MaxPrimitivesSSBO { uint max_primitives; }; layout(binding=%d, std430) buffer PrimitivesWrittenQuerySSBO { uint query_prims_written; }; layout(binding = %d, std430) buffer Growable { uint growable[]; }; struct IndexBuffer { uint offset; uint num_indices; uint cur_index; }; layout(binding=%d, std430) buffer LayeredIndexBufferSSBO { IndexBuffer indexbuffers[]; }; uvec2 indexbuffer_select() { uint minimum=~0u; uint layeridx=0u; uint prs_removed=0u; for (int i=0;i<indexbuffers.length();i++) { while (indexbuffers[i].cur_index<indexbuffers[i].num_indices && growable[indexbuffers[i].offset+indexbuffers[i].cur_index]==vertex_data.prim_restart) { indexbuffers[i].cur_index++; prs_removed++; } if (indexbuffers[i].cur_index<indexbuffers[i].num_indices && minimum>growable[indexbuffers[i].offset+indexbuffers[i].cur_index]) { minimum=growable[indexbuffers[i].offset+indexbuffers[i].cur_index]; layeridx=uint(i); } } return uvec2(layeridx, prs_removed); } layout(location=%d) in %s inVal%d[%d]; layout(location=%d) out %s outVal%d[%d]; layout(location=%d) in %s inVal%d; layout(location=%d) out %s outVal%d; layout(location=%d) out uint index_array; void main() { for (int i=0;i<xfbvar.length();i++) { if (exloc_adidx_map[xfbvar[i].explicit_loc] == ~0u) continue; for (uint j=0u;j<xfbvar[i].ad_count;j++) { output_ad[exloc_adidx_map[xfbvar[i].explicit_loc+j]].offset+=xfbvar[i].buffer_pos; } } uint out_addr=0u; uint prims_written=0u; for (uint i=0u;i<vertex_data.instance_count;i++) { %s%suint in_addr=0u; uint offset=i*vertex_data.padded_vertex_count; while (in_addr+%zuu < vertex_data.vertex_count && prims_written < max_primitives) { uvec2 tmp=indexbuffer_select(); uint layeridx=tmp.x; in_addr+=tmp.y; if (indexbuffers[layeridx].cur_index+%zuu>=indexbuffers[layeridx].num_indices) { in_addr+=(indexbuffers[layeridx].num_indices-indexbuffers[layeridx].cur_index-1u); indexbuffers[layeridx].cur_index=indexbuffers[layeridx].num_indices; continue; } uint index%d=growable[indexbuffers[layeridx].offset+indexbuffers[layeridx].cur_index+%du]; uint index%d=loadExplicitARM(index_array, in_addr+%du); uint index%d=in_addr+offset+%du; if (index%d == vertex_data.prim_restart) { in_addr+=%du; indexbuffers[layeridx].cur_index+=%du; continue; } if (index%d == vertex_data.prim_restart) { in_addr+=%du; continue; } index%d+=offset; index%d=uint(int(index%d)+vertex_data.base_vertex); base_index=index0; close_prim=true; storeExplicitARM(outVal%d[%d], out_addr+%du, loadExplicitARM(inVal%d[%d], index%d)); storeExplicitARM(outVal%d, out_addr+%du, loadExplicitARM(inVal%d, index%d)); in_addr+=%zuu; indexbuffers[layeridx].cur_index+=%zuu; out_addr+=%zuu; prims_written++; in_addr+=%zuu; out_addr+=%zuu; prims_written++; winding^=1u; while (indexbuffers[layeridx].cur_index < indexbuffers[layeridx].num_indices && prims_written < max_primitives) { uint index_next=growable[indexbuffers[layeridx].offset+indexbuffers[layeridx].cur_index]; if (index_next == vertex_data.prim_restart) { while (in_addr < vertex_data.vertex_count && prims_written < max_primitives) { uint index_next=loadExplicitARM(index_array, in_addr); index_next+=offset; index_next=uint(int(index_next)+vertex_data.base_vertex); uint index_next=in_addr+offset; close_prim=false; out_addr+=2u; prims_written++; storeExplicitARM(outVal%d[%d], out_addr, loadExplicitARM(outVal%d[%d], out_addr-1u)); storeExplicitARM(outVal%d[%d], out_addr+1u, loadExplicitARM(inVal%d[%d], base_index)); storeExplicitARM(outVal%d, out_addr, loadExplicitARM(outVal%d, out_addr-1u)); storeExplicitARM(outVal%d, out_addr+1u, loadExplicitARM(inVal%d, base_index)); winding=0u; in_addr++; %sbreak; } storeExplicitARM(outVal%d[%d], out_addr, loadExplicitARM(outVal%d[%d], out_addr-1u)); storeExplicitARM(outVal%d[%d], out_addr+1u, loadExplicitARM(inVal%d[%d], index_next)); storeExplicitARM(outVal%d, out_addr, loadExplicitARM(outVal%d, out_addr-1u)); storeExplicitARM(outVal%d, out_addr+1u, loadExplicitARM(inVal%d, index_next)); in_addr++; %sout_addr+=2u; prims_written++; index0=growable[indexbuffers[layeridx].offset+indexbuffers[layeridx].cur_index-2u+winding]+offset; index0=uint(int(index0)+vertex_data.base_vertex); index1=growable[indexbuffers[layeridx].offset+indexbuffers[layeridx].cur_index-1u-winding]+offset; index1=uint(int(index1)+vertex_data.base_vertex); index0=loadExplicitARM(index_array, in_addr-2u+winding)+offset; index0=uint(int(index0)+vertex_data.base_vertex); index1=loadExplicitARM(index_array, in_addr-1u-winding)+offset; index1=uint(int(index1)+vertex_data.base_vertex); index0=in_addr-2u+winding+offset; index1=in_addr-1u-winding+offset; storeExplicitARM(outVal%d[%d], out_addr, loadExplicitARM(inVal%d[%d], index0)); storeExplicitARM(outVal%d[%d], out_addr+1u, loadExplicitARM(inVal%d[%d], index1)); storeExplicitARM(outVal%d[%d], out_addr+2u, loadExplicitARM(inVal%d[%d], index_next)); storeExplicitARM(outVal%d, out_addr, loadExplicitARM(inVal%d, index0)); storeExplicitARM(outVal%d, out_addr+1u, loadExplicitARM(inVal%d, index1)); storeExplicitARM(outVal%d, out_addr+2u, loadExplicitARM(inVal%d, index_next)); in_addr++; %sout_addr+=3u; winding^=1u; prims_written++; storeExplicitARM(outVal%d[%d], out_addr, loadExplicitARM(outVal%d[%d], out_addr-3u)); storeExplicitARM(outVal%d[%d], out_addr+1u, loadExplicitARM(outVal%d[%d], out_addr-1u)); storeExplicitARM(outVal%d[%d], out_addr+2u, loadExplicitARM(inVal%d[%d], index_next)); storeExplicitARM(outVal%d, out_addr, loadExplicitARM(outVal%d, out_addr-3u)); storeExplicitARM(outVal%d, out_addr+1u, loadExplicitARM(outVal%d, out_addr-1u)); storeExplicitARM(outVal%d, out_addr+2u, loadExplicitARM(inVal%d, index_next)); in_addr++; %sout_addr+=3u; prims_written++; } if (close_prim && prims_written < max_primitives) { out_addr+=2u; prims_written++; } } for (int i=0;i<xfbvar.length();i++) { xfbvar[i].buffer_pos+=int(out_addr*xfbvar[i].stride); } max_primitives-=prims_written; query_prims_written+=prims_written; } %08x%08x%08x%08x%08x St9exception St9bad_alloc Out of memory Internal compiler error kernel_arg_name kernel_arg_type kernel_arg_access_qual read_only write_only kernel_arg_addr_space kernel_arg_type_qual read_write <binary> opencl.build_options adce simplifycfg constprop instcombine tbaa scalarrepl early-cse lower-expect targetlibinfo globalopt ipsccp deadargelim basiccg always-inline scalarrepl-ssa lazy-value-info jump-threading correlated-propagation tailcallelim reassociate loop-simplify loop-rotate loop-unswitch scalar-evolution loop-idiom loop-deletion loop-unroll memdep memcpyopt sccp dse strip-dead-prototypes LLVM MBSX KRNL LIBR basic_string::_S_construct null not valid CLCC TERM CLCS STRT Eliminate redundant loads Eliminate redundant load operations and read_image calls eliminate_loads read_image __translate_sampler_initializer interchange llvm.global.annotations get_global_id get_local_id get_group_id get_global_size get_local_size get_num_groups get_global_offset cmp1 cmp2 sel1 sel2 interchanged CLCC Kernel Transformation Legality Analysis Analysis for kernel transformations kernel_transformation_analysis atom_ atomic_ async_work_group_ wait_group_events .uf_ .ud_ .us_ .vf_ .vd_ reqd_work_group_size_multiple reqd_work_group_size work_group_size_hint heuristics CLCC kernel unroller _Z14get_local_sizej _Z12get_group_idj _Z12get_local_idj relink_bifl _Z13get_global_idj _Z15get_global_sizej work-item transform CLCC kernel vectorizer vec_type_hint .splatinsert .splat convert_ as_ shuffle2 123468 shuffle acospi asinpi atan2 atanpi atan2pi cbrt copysign cospi erfc exp10 expm1 fabs fdim fmod hypot ilogb lgamma log10 log1p logb maxmag minmag nextafter pown powr remainder rootn rsqrt sinpi tanpi tgamma half_cos half_divide half_exp half_exp2 half_exp10 half_log half_log2 half_log10 half_powr half_recip half_rsqrt half_sin half_sqrt half_tan native_cos native_divide native_exp native_exp2 native_exp10 native_log native_log2 native_log10 native_powr native_recip native_rsqrt native_sin native_sqrt native_tan abs_diff add_sat rhadd clz mad_hi mad_sat mul_hi sub_sat upsample mad24 mul24 isequal isnotequal isgreater isgreaterequal isless islessequal islessgreater isfinite isnormal isordered isunordered signbit bitselect isinfinite Reorder truncations Reorder trunc instructions truncreorder #define basic_string::substr %s: __pos (which is %zu) > this->size() (which is %zu) #define cl_khr_fp64 1 #define cl_khr_int64_base_atomics 1 #define cl_khr_int64_extended_atomics 1 #define cl_khr_global_int32_base_atomics 1 #define cl_khr_global_int32_extended_atomics 1 #define cl_khr_local_int32_base_atomics 1 #define cl_khr_local_int32_extended_atomics 1 #define cl_khr_byte_addressable_store 1 #define cl_khr_depth_images 1 #define cl_khr_subgroups 1 #define cl_arm_core_id 1 #define cl_arm_printf 1 #define cl_arm_thread_limit_hint 1 #define cl_arm_sub_group_shuffle 1 #define cl_khr_gl_msaa_sharing 1 #define cl_khr_fp16 1 #define cl_khr_3d_image_writes 1 #define cl_clang_storage_class_specifiers 1 vector::reserve Failed to open directory ' opencl32 opencl64 bifrost32 bifrost __builtin_inff __builtin_nanf pointer-arith Failed to handle define build options Failed to handle include build options #define __OPENCL_VERSION__ CL_VERSION_1_2 CL_VERSION_1_1 CL_VERSION_1_2 CL_VERSION_2_0 #define __OPENCL_C_VERSION__ typedef unsigned long size_t; typedef signed long intptr_t; typedef unsigned long uintptr_t; #define __CLCC_ENABLE_CL20_ATOMICS__ #pragma OPENCL EXTENSION cl_arm_printf : enable #pragma OPENCL EXTENSION cl_khr_fp64 : enable __pipe_t __reserve_id_t a%d cl_khr_subgroups cl_arm_sub_group_shuffle cl_khr_gl_msaa_sharing cl_clang_storage_class_specifiers M BC 5 b 0$LY >-U ! k # A I 29 % b 0E B B 2 8 K 2 H CF 2B H & PAQ aF Q E # rH y q` rh z t` 6 p` v a A a a ! 0 p` y( p wh s ph rh xx tp z( yh r` th a ! s v r wx 6P zh xh z q` r ! a ! s v r y p uh x w r zx yh q s0 r 6 t r a A ! ! a 0 p` y( y( 6 w0 zh s` w z ! a P 9 < 8 C9 = C: C C8 ; ` P 0 0 0 C8 < @ ; 9 C8 C9 < C: = < A9 C: ` P 0 m` 9 ; C9 ; C C8 < 9 C C8 : 0 @ 0 @ 0 P ` m0 0 = 8 < C8 C: ; D= < 9 C < A; = ` P Q P m0 ` C8 < ` @ l t p v( 6 pH vh q v` y ! a a ! s v r wx 60 y v( 6 wH w r 6( vH v ! a 0 p` y( p wh u v 6 p v( y ! a 0 p` y( z qX 6 yx z( q w 6 z0 s( yh yH }( a ! a ! ! s v r z rh yx s 60 vx p a H E C: C8 ; C C8 ; 8 ; < 0 P 0 m P P m` @ 9 ; C9 ; C < C; C ; ; C9 C ; C; 0 m ` m @ C8 < @ ; : C; C C8 ; < 0 m m @ C8 < @ = 8 C < = 8 ; C C= 9 < < > 0 P p P m` 9 ; C9 D= C9 < 9 C ; C8 ` P j } ? A 0 P m@ C8 < @ C9 < < C9 C: C9 9 C; 9 0 m` P m @ mP C8 < @ ; A: 9 C < A; = ` P P m@ P C8 < @ ; ; ; C < A; = ` P 1 m P @ m ` P P < C8 : C9 ; 9 @ ; C8 C9 9 C C8 : 0 0 @ m` @ 9 ; C9 $ A 0 P m@ C8 < @ C9 < < C9 C: C9 9 C; 9 0 m` P m @ mP C8 < @ ; A: 9 C < A; = ` P P m@ P C8 < @ ; ; ; C < A; = ` P 1 m P @ m ` P P < C8 : C9 ; 9 @ ; C8 C9 9 C C8 : 0 0 @ m` @ 9 ; C9 tc t p v( 6 pH vh q v` y ! a a ! s v r wx 60 y v( 6 wH w r 6( vH v ! a 0 p` y( p wh w w 60 xh v z@ b ! a A @ ! 8 y p u r vH sp w p0 rh s 6h p t ! a a s v r 6 , b x ` @ T 9 < 8 C9 = C: C C8 ; ` P 0 0 0 C8 < @ ; 9 C8 C9 < C: = < A9 C: ` P 0 m` 9 ; C9 ; C C= < = 8 C9 ` P 0 m` 9 ; C9 < C8 : < ; C9 = < 8 9 C9 C C: C9 p @ 0 Q 0 ` m @ C8 < @ < C ; = 9 ; = 0 l @ * a A ! ! 0 p` y( ` r yh x r t rh s v r ! a ! ! A ! 0 p` y( p wh tp s 60 xh v z@ ! a ! s v r y p uh x w r zx yh q s0 r 6 t r a A ! ! a 0 p` y( y( 6 w0 zh s` w z ! a @H I A 8 T 9 < 8 C9 = C: C C8 ; ` P 0 0 0 C8 < @ ; 9 C8 C9 < C: = < A9 C: ` P 0 m` 9 ; C9 ; C C= < = 8 C9 ` P 0 m` 9 ; C9 < C8 : < ; C9 = < 8 9 C9 C C: C9 p @ 0 Q 0 ` m @ C8 < @ < C ; = 9 ; = 0 l $ " ! ! ! ` a s v r v( y 6 y( qH y( 60 xh p A s v r wx 6H w0 yh s 6h p t ! a @ ! a s v r wx 6p pp yh s 6h p t ! a a A a A ` A ` z qX y( p` t8 w zp y s( 60 xh v z@ ` ! 0 p` y( ` a ` 8 P m0 0 9 ; C9 ; < C < 8 < C < C8 ` P P 9 ; C9 ; C ; < 9 C C8 : 0 m 0 9 ; C9 ; C C8 < 9 C C8 : 0 @ 0 @ 0 P ` m0 0 = 8 < C8 C: ; D= < 9 C < A; = ` P Q P m0 ` C8 < ` 8 A 0 P m@ C8 < @ C9 < < C9 C: C9 9 C; 9 0 m` P m @ mP C8 < @ ; A: 9 C < A; = ` P P m@ P C8 < @ ; ; ; C < A; = ` P 1 m P @ m ` P P < C8 : C9 ; 9 @ ; C8 C9 9 C C8 : 0 0 @ m` @ 9 ; C9 m ' h @ @ H 9 < 8 C9 = C: C C8 ; ` P 0 0 0 C8 < @ ; 9 C8 C9 < C: = < A9 C: ` P 0 m` 9 ; C9 ; C C= < = 8 C9 ` P 0 m` 9 ; C9 < C8 : < ; C9 = < 8 9 C9 C C: C9 p @ 0 Q 0 ` m @ C8 < @ < C ; = 9 ; = 0 l i l @ ` ! 1 l A ` a ? P 9 < 8 C9 = C: C C8 ; ` P 0 0 0 C8 < @ ; 9 C8 C9 < C: = < A9 C: ` P 0 m` 9 ; C9 ; C C= < = 8 C9 ` P 0 m` 9 ; C9 < C8 : < ; C9 = < 8 9 C9 C C: C9 p @ 0 Q 0 ` m @ C8 < @ < C ; = 9 ; = 0 l0 @ A T 4 6 j@ b ` , > @" ! ! ! ` a s v r v( y 6 y( qH y( 60 xh p A s v r wx 6H w0 yh s 6h p t ! a @ ! a s v r wx 6p pp yh s 6h p t ! a a A a A ` A ` z qX y( p` t8 w zp y s( 60 xh v z@ ` ! 0 p` y( ` o C C: C8 ; C C8 ; 8 ; < 0 P 0 m P P m` @ 9 ; C9 ; C < C; C ; ; C9 C ; C; 0 m ` m @ C8 < @ ; ; ; C < A; = ` P 1 m P @ m ` P P < C8 : C9 ; 9 @ ; C8 C9 9 C C8 : 0 0 @ m` @ 9 ; C9 t p v( 6 pH vh q v` y ! a a ! s v r wx 60 y v( 6 wH w r 6( vH v ! a 0 p` y( p wh u v 6 p v( y ! a 0 p` y( z qX 6 yx z( q w 6 z0 s( yh yH }( a ! a ! ! s v r z rh yx s 60 vx p ( j ! ? b 6 t@ g 8 l@ @ $ @ A $ $ I _ `B L cB L eB L " , )& 1A L e 0 & H a & 0H 2A C i d & M m ! 7! & ` M d & 7 H @ C2 ! B M 2 & I h 3 @$bp A L 5 & x l C !Y ` Lk L 5 & `B I 0 ! & o0! A L ` 0 t & L @ & s & u 9 C L & t` p0! N & x < ` ! A @ ` c < ` P b 1 C L & L ` @ r 2" d & & L M 0 0 0G ISD R,? 0 BD ) ( ( ( D0 A @a H #@2 ! ` "!# ` a *! ` r 2! ` a i (a b 0 & R P P 0 $`@ " 0 A B 7ISD 8FM[ 8 A 4 P @H@ D` ! B` l $ A 8 ! R` @H H D a !9 A ! (B @! @ h !@EP #(C $@ P h P P ex '( A 0 R 4 ! A @Y0 e -H A "(C xA "$A ` d T 3( < < A! h @m@ P H x 7 8( A O d E ' <(B A @~P ! @( < P d e B A 0 ! e h r A `( $P$ h OP d 0 ( OP T e 2 @ x B1 ! B@ h T e : 2 B : V O @ P 'x / W(D @ B h P O@ P ' B @ P. " B D v / _( C! h @ P 'x ' : B< < (P2 B h P e( 'x z a " $ h h j(B4D Y EC! ( e h( 2l 6l 0BQ ! A h P @ P q q t F(^ @ P uP q v D A @ 0 A @ a ` #(C C = # B~ e }H A ! " ( #(C D A " B P P P uP u ( :< 1D B ! h ! ( 6l 6l QD a "h J E( r (C9 C9PG A > E q ( 8 D a $ E h (B4 D A ^ P e q( " 8PM n A 9A:Q h w D >A?A P r( D( P DAEQ r( ( : CNPR " P uP ( : < S 8 ! *(* 4 1 ! * * P e( r 2 C9T qE A UA`Q uP ~ (D4DC4` E ! , @hQ R " C> [ " ! h (D9 C9@ E! . Q P UAx1 0 ^ # E1 @/ b/ / / W F : a (F F` ` 0 DG 1 @ @ P F@^a 1 $ A 1 D + #@ Y 0 TPf # , 2. 34 6 uP | ( : : F! A *h4 T e r( : 2 : 0 <D#,> Q 0 6 A C4 K ,D Oc X x ( j k e C4 # ` Q ` 0 @7 0 b5j 5l n Q 9 0 A D Oc X x ( m F / } }A Q X * h G # N'( j k %G!V 9^ /h9nr a ?r i Dh P 2 a QG 0 @ x ( b k qG! 6^ 6 ; }A Q X B o b y 1 5l @ x ( b8 k, M C4 # ` [ ? " V 4 ! a 0 z ( # '(D G e C4 # ` Q ` 0 `?A! > b5 ? Q A q = @ o9 4F " OP X B A j <D#,> q 0 BA! `@ c5 @ R A r = Oc )D $H 1H! = 1 A Q A R @ B } b " c1 , A ! Y )D H qH! A 1 C R A R x X B | b " / L Ap " X )D G , H! `@ c1 E R A0R H X B A b # I!l H F @ $@9R 2 @! ~ G H 0( 0 E( "!# F@ H $ $ P aI ! ! $E () H H J $H $d%eX %Y " m 6l K K(: % & eX a 2)C #@ I $M d n 2 m B e A 1'D' L N N )(C I " P > > D B 2 6C Vc5 e 2 I B: eH 4A J " A/ / Q 1 (e@ P 2< cD MJ , 20 *e A_ 2 ^\ a B e A ) ) / 1 T(T l&( eX " P S S D B 2 2C 1X Ze e 2< c e " kP ^ n U@ R ' ]) m$@ P A/ W P ,e ,( 2 F T K e U@ R e)C $@ P 2 Y - P ' j) m$ & A/ [ -e i) 2 F ` yK cZ e @ R r)C $ & 2 ] ^A( $ "0B ] B R h y)Ct$ !0 ^ . /e@ v) 2 I K ] i B S h ) $@% ` ` P 0e ) Z 2DG T 5L ` @ S 0 )C $@%P 1 b & P 1e ) a )C $ c d " X@#S F 2 L ` L N Tf a 2 2e` ,( z a )C $ !f f 1 0-d3e i) 2 L L L DfZ x ' B>S ) $ e h 3 0-d4e i) B 2tL )M : ] " BNS i ) $@ d j 2 .d5e` v) 2 L iM b ] C^S 1 ) $ Ad l p2 `0d6e8 ) B 2 L M X ` 1 CnS 1 )C_$ / n @ d7e ,( 2,F x M ^@~S )Cf$ !3 p d8e i) B 2 F )N cZ @ S ) d$ ( A2 r d9e i) A B(C_$ / s @ 9 9e v) 2,F h N ] J C S h )Cf$ !3 u :e ) 2 F t N ` j @ S 0 ) d$@' A2 w ;e ) 2 F O l d@ S ) j$ a5 y P& @ <e( ,( 2 I MO @ S )Ct$ $ !: { =eX i) 2 I @ O dZ i @ S 4 D 2 F O l ] C S h ) j$ a5 ~ P& > ?e( v) 2 I O ] @ T 0 *Ct$@# !: @eX ) R 2 I 4 1P ` i @ T 41 * ^$ a/ Ae ,( 2$F l qP < [@ T * e$ 2 { (D)T * `$ Q A0 B CeH i) 2@F P cZ n (D9T D 2 E P ] =DBT h "*Cb$@ !1 C De v) b 2\F 9Q . ] : { RDST 0 ** `$ A0 ( E EeH ) 2@F H }Q ` RDcT 0 2* $@ F ( k a@lT 5 7* $@ A H t a@uT : ; F 2 Q Q h ! `# G Ge i) 2 Q R hZ ~D T D* % " G G He i) A D( $ $ % F F 0I IeX v) 2(@ L qR ] < t D T :j Q*C % $ ) ! `# Je ) R 2 Q R ` \ o@ T 0 Y* % - G Ke # ) 2 @ H R H | B R@ T ! a*C $ 1 H $ Le@ ,( R 2,I H 1S $ @ T i* $ " 5 AH P$ Me( i) 2 I ( qS dZ K @ T % q D $ D T h s* $ 9Q: AH h P$ @N Ne( v) z 2 I S ] K D T %i {* $ P> h $ Oe ) 2 I T ` H B@ U $1 * $ PB aI h P Pe z 2 F T ET # & U@ U H L *C`$ &PF 1 h Qe 2 E T # F B%U H u * e$ PJ A/ h P Re@ z 2<F T T ,# * f A P TS ,x *D F T T! h U@=U ( B j$@ PP " 1 AP& P TT ,x *D I T %U! , h @MU '( z B m$ &PT " E/ A TU i *D F ` eU! `Z h e @]U ( B A $ &PX " 2 A P TV y *D F T U! ` h @mU 0 ( z B j$@%P\ " 1 AP& P TW y *D I T U! `, h ! U@}U B $@ P` " $ A $ P TX %I * *D @ ` %V! h B @ U ( z B $ &Pd " $ 0 & A P TY H J *D I T eV! H h H @ U X "< Ph A/l F TZE@ * c V ,#Mh !@ U z " Pl 1 f $T[E % *D tL ` V! : h " X@ U ) B $ Pp " d A 2 T\ ,` *D L ` %W! b h B U ) z B $ Pt " Ed Ap2 0-T] i9 *D L L eW! `ZX h 1 B U ) B A $ Px " c A 2 `0T^ *D L W! `N h , C U 0 ) z B A $ P| " &f A T_ , *D F x W! h ^@ U ( B d$ P " @2 A T` , +D E %X! `Z h @ V ( z B b$ (P " e1 & A Ta i +D dF eX! `Z2 h } @ V 0 ( B a$@'P " 0 F A Tb Y +D HF t X! `$ h @-V 0 ( z B m$ P " 6 f A @ Tc , +D F X! V h e d@=V 2) B A $ P " M A` Td i #+D DG @ %Y! `Z h @MV ( z B A $ $P " L A & Te iI ++D F 4 eY! `l h @]V 0 ( B j$@#P " f5 AP& Tf ) 3+D I 4 Y! ` h { [@mV ( z B `$ P " @0 A Tg ,H ;+D @F l Y! h [@}V ( B ^$ Q " e/ A BTh i C+D $F %Z! `Z h (D V ( z B e$ Q " 2 & A ETi K+D F H eZ! ` h RD V 0 ( B d$ Q " 2 F Ap ETj S+D H Z! l h k a@ V 5* z B $@ P " @ f A@G Tk , [+D Q Z! h 6 ~D V ) B % Q " e A GTl iQ c+D Q %[! `Z h y ~D V <* z B $ P " F A F Tm Y k+D (@ e[! ` h t o@ V 0 :* B A % P " & A@ Tn , s+D I H [! h E R@ V ") z B $ P " I A $ To ,X {+D @ ( [! `ZH h B @ V !) B A $ "P " H A $ Tp iA +D ,I ( %\! `Z h $ B@ W 0 ( z B $ P " FH & AP$ Tq ) +D I e\! ` h K B@ W 0 %) B ^$@ P " # F A P Tr H * +D XF T \! @/ h @-W @ z B c$ &P " ,# 0 f A P Ts H J +D F T \! 1 h @=W + aP ! h P Q TtE ; y FX| * " # A T "t j tE +B M] : > AWW @ "t s 0 uEH v +D $ ] ` .i (a )B / @gw 4E 0 1 KS 4 /M D ! v ve c j s ) a P ve + ;2 2 AP 0 I ; 2 ] ]h C}W @ v1 2 K ` `w dx + ( +H ] @ $ )^1 @ ] J jW x + ( b 0@ . J j . `0 P P dy K v! +D ] i^ j .vW R P @ W h + k ^ 5 H Q dze@ ( B 2 r ^ 9 X ze@ 2 s, ^ 9 h d{e@ X 2 Fm ^ 6 x Q {e@ 2 o, _ 7 d|e@ X B 2 )_!VC ^ JW | X { + b(] 1 5 ! a h # q} p} @ W ,H # D a R\ u_ \ y b / H l D8 G~ G 7 f > K >R A 8 ,( _ % Ph e D ' G 7 2 > > A R&( % " 0 3A) / p f A Jq} 8 p}D >Q >2 A ~ %( !` & " 0 @2A) 0 p ae A Jq} p}$ 23 " LP L # D a !g R\ f` \ i`) 8 'm G X 8I # , $ N Kq} ' p}d >? >B A ; (( & " c0 " c \ a A Jq}28 p}D > > A | A | R\ ` \ `) O |p A 2 Jq}@ p}$ 4 " RP # "L ## D( a R\ &a \ ) * Vi DX Q GRX *H #*, $ RES Kq} ) p} W > R\ J \ ya1 % / Kq}X0- p}$ >" R\_ _ \ a) / ~ GjX k? K #6, m % O Kq} g p}$ > R\ _ \ a) o 0 GzX K@ L #>, 5 & " Kq} H p}$ >" R\ @B \ b) M $ ' G X AI #F, I $ # Q Kq}a G p}$ T > R\ ` \ Yb) o e0 0 w 6 G X A L #N, I "$ ' Kq}EH p}$ $D >" R\_ 2a \ b) / 0 P W G X SI #V, iJ $ + : U Kq} * p}$ Q > b\ `A $ - p ~ p} > + H #^, _ %@ \ b1 / q}( G X K >" b\ _ $ 1 o p} > H #f, $@ \ 9c1 0 q} G X L > b\ V` $ 5 00 d p} >>i H #n, $@ \ yc1 OP $ q} b' G X C <I >" b\ A $ 9 Tp / p} > H #v, &@ \ c1 O w0 q} G X L > b\ a $ = 0 M p} >( H #~, aB $@ \ c1 T.% q} ) G Y c NI >" b\ J $ A deT p} H # , %@ \ 9d1 / " q} ~ G Y k? K > b\ P $ E O 0 w p} H # , %@ \ yd1 o 0 $ q}^ G"Y K@ L >" b\_ 2` $ I " P W p} H # , $$@ \ d1 M $ & q}p ' G2Y AI > b\ J $ M Q p ~ p} T H # , &@ \ d1 o e0 ( q}7h GBY A L >" b\ (B $ Q W D p} $D H # , 5! &@ \ 9e1 / 0 * q}U GRY SI > b\ J $ U : U * p} Q H # +C W W ! !@ $@cY ! ,C I Y ! H ! $ E " ,B e 7(. AsY " @k ] P E( ,B e `>(0 P A Y * " r a E( ,B_ =f "A(2 A Y ", s e a1 2 $ !@ Y , }f H B $@ $@ 4 e( "! * B I i B R ! E , f H(6 P$ A Y " ` m 2 r H E % , \ f H F(8 @ EB Y ,E F` ` q " 1 C1(9K j " s H /(: $BR 4 e( "a 2 L ]g dI4 z E , b }g 1(< ` A Y * 2 F g (= $@ e j 2 g l /(> ` 4 e( "Y 2 H g dI2 B"$ A Y 2) 2 , j j a5V i &iB Z * R @ @ t h!H H /(A Q$ER$ A Z $A $ j B, , f BH DH " $P 4 E( - H )C @ $ T$e( " P 2 I $! h H D H $$J%Z $A & - R aI dE E $K eX % B Q 2 ( h DH j B"$DH7Z ! - ! H@ G @ ?B?Z ( -C /H G H ` Q t e ( J 2 j -i c1 eR& @OZ (-C I !32#3 JK t S s 0Ba % A ] 0 ` 0 ` `@hGX@ C @ @"C'C @, @qJ1 @t @v @x @z @| @~ @ @ @ @ @ J6 @ JkD @tDy O@ O@ O@ O@ O@ @ @ J @ @ !@ @ @ !@ @ @ :G e " 0 @ {0 w rp q` ; hQ m z` t v@ z` t z z m x x x v q` z v 0 r s z0 r ` t v@ z` t r z r z r m rP v rP v rP v P q zP q zP q m q r@ z p t q r@ m r@ z0 r s m t z` t v@ m y` z r z r m q r rP v rP v z v s z` t @ 2Rd C @ &Xv] v0 P ^ 0 ` ` 3, . ; ` ua( C @ &Xx] v0 P _ 0 ` `*>? T|~ S i _ ` % $ ` , .$ ; h w! D I @ &Z ]H v0 b B s ` % $ ` s- .$ ; lYw! d I @ Y ]H v0 B P D x @ . = ] % / Ju _ 2 ( P K~ &@y/>N 2 d 6 y < @ C ? @ ! ( 0 g ` S 0 yR < C U !O+ ` 0 y < C ? @ ! , p 8 ` 0 yx < C _ ! 8 p G 8 ` S 0 y < C t ! @ g H ` @ ( 0 y < C u !O; g ` 0 I y < C z @ ! < G ` c 0 y < C { ! < @ G ` c 0 y < C { ! < G ( ` c 0 yJ < C | ! > G ` @ 0 y < @ C ? ! `@ ` 0 y < C { ! G ` # 0 y < C y ! = @ g @ ` C 0 yH <& C y @ ! 9 G$ ` 4 0 yP <+ @ C ! < ` 4 0 y <" C ! N ' h ` 4 0 y <i @ C ! = P - h ` 4 0 y <{ C z ! H @ g. ` C 0 y < C y ! = @ , h ` 3 4 0 ) y <e @ C ! [ - h ` # 0 y < C y ! = g ` C 0 yD <{ C = @ ! = @ ` # 0 y <( @ C ! K G ` 3 4 0 y <9 @ C ! ? $ @ ` s < 0 yD < C U @ ! , @ g ` C 0 y <} C z@ ! < $ ` ` c 0 0 yF < C @ ! i '5 p ` 0 y < C ? ! < @ ` 0 y < C y ! = @ g. ` C 0 yH <u C !Ok 5 @ ` 3 0 ! y <$ C ! j 5 @ ` 0 Y y^ <s C !O] G6 ` C @ 0 yl < C ` ! o 7 ` @ 0 y < C @ ! z @ = ` c 0 yl < C ! | p > 8 ` s 0 y < C !O p D 8 ` c 0 yL <( C ! E ` #@ ( 0 y` < @ C ?@ ! ! @ F ` C# 0 y < C ` ! @ gG ` #@ 0 y~ <; @ C ! m @ 6 ` # 0 yv <? C ! 6 ` c @ 0 yv <? C @ ! 6 ` c @ 0 y <a C 1 !O L @ ` # 0 y <m C ! l 6 `@ ` # 0 yv <; C ! m gG ` # 0 yv <? C ! @ G6 @ ` # 0 y y <s C :A ! gG ` "@ 0 y y < C @ ! O h ` #* 4 0 yJ < @ C T ! M ` * 4 0 q yf < C \ ! W ` + @ 0 yl < @ C rA ! l G ` & 0 1 y <; C @ ! gG ` # 0 yl < @ C ] ! W ` + 0 yv <; C ! @ 6 @ ` # 0 yd <= C @ ! @ M ` # 0 yz <o C 7 @ !O 6 ` ' 4 0 yv < @ C R !O G ` * 4 0 q y < C !O M @ ` c 0 1 yd < C ! @ ] p ` /@ ( 0 yz <; C 8A !O gN ` c/ 8 0 yF < C !O f ` 3 D 0 y <c C !O = ` # 0 yv <? C ! m 6 @ ` # 0 y~ < C 8 !O 7 ` ' 0 y <i C !O 'L @ ` 0 y <g C !O l @ ` 6 0 y <p C ` ! 0 n ` s @ 0 & y < C @ ! 't ` 3:@ 0 & yR < C ` ! Gv ` #;@ 0 yl < C ` ! w ` ;@ L 0 $ y < C ` ! 0 | ` >@ L 0 1 & y < C ! ~ ` C?@ ( 0 y < C ! G ` B@ ( 0 q! y` <0 C ! ` C@ ( 0 ! y| <` C 1 ! G ` #F@ ( 0 !# y <d C 3 ! ` F@ ( 0 Q# y <l C 7 ! ` G@ ( 0 # y <t C ? ! ' ` G@ 0 # y <} C P @ ! ( ` 3J 0 1% yX <{ @ C > @ !O g ` @ 0 @ y < C Y ! - ` K 0 q yz < @ C q ! 9 g h ` 3 4 0 q' y < @ C } !OL h ` R 4 0 ) yR <6 @ C @ !OK h ` S 4 0 ) yv <8 @ C ! O ' h ` CV 4 0 y <m @ C ! \ ` sW@ P 0 + $ y <{ C @ ! _ 0 ' ` 3Z@ L 0 )- $ yR < C @ ! k 0 ' ` C[@ L 0 - $ yt < C @ ! x 0 G ` C^@ L 0 1/ $ y < C @ ! | 0 ` c_@ L 0 / $ y < C @ ! 0 ` sb@ L 0 I1 $ yZ </ C @ ! 0 ` sc@ L 0 1 $ y <} C @ !Oi ' ` Z H 0 - $ yt < C @ ! y g ` _ H 0 / $ y < C @ !O ` c H 0 1 $ y| <` C 1 !O 0 ` f@ L 0 i3 * y <t C ; ! 0 G ` g@ L 0 3 * yD < C S ! 0 G ` j@ L 0 q5 * yd < C [ ! 0 G ` k@ L 0 5 * y < C s ! 0 G ` n@ L 0 q7 * y < C { ! 0 G ` o@ L 0 7 * yD <$ C ! 0 G ` r@ L 0 q9 * yd <4 C ! 0 g ` s@ L 0 9 * y <e C !O 0 g ` v@ L 0 y; * y <u C !O 0 g ` w@ L 0 ; * yF < C !O 0 g ` z@ L 0 y= * yf < C !O 0 g ` {@ L 0 = * y < C !O 0 ` ~@ L 0 ? * y < C ! 0 ` @ L 0 <" 0 * ` C ` yX0 ! @ L 0 <2 0 * ` C ` yx0 ! @ L 0 <b 0 * a C 4 ` y 0 ! @ L 0 <s 0 * a C < ` y 0 ! ( @ L 0 < 0 * b C U ` y\1 ! , @ L 0 < 0 * b C ] ` y~1 !O8 @ L 0 < 0 G ` Co@ L 0 7 * y < C ! 0 G ` Cr@ L 0 19 * yT <, C ! 0 G ` Cs@ L 0 9 * yv <= C !O 0 g ` Sv@ L 0 9; * y <m C !O 0 g ` Sw@ L 0 ; * y <} C !O 0 * c C v ` y 1 ! < @ L 0 < 0 G * c C ` yF2 !OI @ L 0 9 <) 0 g% * d C ` yh2 ! M @ L 0 <: 0 ' * d C ` # y 2 ! Y @ L 0 A <j 0 - * e C ` # y 2 ! ] @ L 0 <z 0 ` f@ L 0 3 * y <j C 6 ! 0 G ` Cg@ L 0 3 * y <| C ? ! 0 G ` Cj@ L 0 15 * yT < C W ! 0 G ` Ck@ L 0 5 * yt < C _ ! 0 G ` Cn@ L 0 17 * y < C w ! 0 * ` C ` yx0 ! @ L 0 <b 0 * a C 4 ` y 0 ! @ L 0 <s 0 * a C < ` y 0 ! ( @ L 0 < 0 * b C U ` y\1 ! , @ L 0 < 0 * b C ] ` y~1 !O8 @ L 0 < 0 * c C v ` y 1 ! < @ L 0 < 0 G * c C ` yF2 !OI @ L 0 9 <) 0 g% * d C ` yh2 ! M @ L 0 <: 0 ' * d C ` # y 2 ! Y @ L 0 A <j 0 - * e C ` # y 2 ! ] @ L 0 <z 0 / * e C ` # yH3 ! i @ L 0 A < 0 5 * f C ` # yh3 ! m @ L 0 < 0 7 * f C ` # y 3 ! y @ L 0 I < 0 = * g C ` 3 y 3 ! } @ L 0 < 0 ? * g C ` 3 yJ4 ! @ L 0 I <+ 0 E * h @ C ` 3 yj4 ! T 0 <; P G * h @ C 0 ` 3 y 4 ! T 0 I <k P M * i @ C 8 ` 3 y 4 ! @ ( 0 <{ O i C P ` 3 yJ5 ! @ ( 0 I < U j C X ` 3 yj5 ! @ ( 0 < W j C p ` 3 y 5 ! @ ( 0 I < ] k C x ` 3 y 5 ! @ ( 0 < _ k @ C ` 3 yJ6 ! 0 I <+ e l @ C ` 3 yj6 ! 0 <; g l @ C : ` y 4 !O 0 ) < U j @ C Z ` yz5 !O 0 ) < ] k @ C z ` y 5 ! 0 <# d l @ C ` yZ6 ! 0 <3 f l @ C ` yz6 ! 0 <a 'O m C > ` S yB5 ! @ 0 ) <i 'U m C V ` yj5 !O 0 < \ k @ C v ` y 5 !O 0 <m _ m C ` yF6 ! @ 0 ) <u d m C ` yZ6 ! 0 <3 f l @ C ` yz6 ! 0 <a 'O m C > ` S yB5 ! @ 0 ) <i 'U m C V ` yj5 !O 0 < \ k @ C v ` y 5 !O 0 <m _ m C ` yF6 ! @ 0 ) <u d m C ` yZ6 ! 0 <3 f l @ C ` yz6 ! 0 <a 'O m C > ` S yB5 ! @ 0 ) <i 'U m C V ` yj5 !O 0 < \ k @ C v ` y 5 !O 0 <m _ m C ` yF6 ! @ 0 ) <u d m C ` yZ6 ! 0 <3 f l @ C ` yz6 ! 0 <y O j @ C R ` yZ5 !O 0 < W k @ C r ` y 5 !O 0 < _ k @ C ` 3 yJ6 ! 0 I <+ e l @ C ` 3 yj6 ! 0 <; g l @ C : ` y 4 !O 0 ) < U j @ C Z ` yz5 !O 0 ) < ] k @ C z ` y 5 ! 0 <# d l @ C ` yZ6 ! 0 <3 f l @ C ` yz6 ! 0 <y O j @ C R ` yZ5 !O 0 < W k @ C r ` y 5 !O 0 < _ k @ C ` 3 yJ6 ! 0 I <+ e l @ C ` 3 yj6 ! 0 <; g l @ C : ` y 4 !O 0 ) < U j @ C Z ` yz5 !O 0 ) < ] k @ C z ` y 5 ! 0 <# d l @ C ` yZ6 ! 0 <3 f l @ C ` yz6 ! 0 <y O j @ C R ` yZ5 !O 0 < W k @ C r ` y 5 !O 0 < _ k @ C ` 3 yJ6 ! 0 I <+ e l @ C ` 3 yj6 ! 0 <; g l @ C ` y 6 ! @ ( 0 < t n C ` yZ7 ! @ ( 0 < v n C ` yz7 ! @ ( 0 < | o C ` y 7 ! @ ( 0 < ~ o C ` y 7 ! @ ( 0 <# p C ` yZ8 ! @ ( 0 <3 p C ` yz8 ! @ ( 0 <c q C 4 ` y 8 ! @ ( 0 <s q C < ` y 8 ! @ ( 0 < r C T ` yZ9 ! + @ ( 0 < r C \ ` yz9 ! / @ ( 0 < s C t ` y 9 ! ; @ ( 0 < s C | ` y 9 ! ? @ ( 0 <# t C ` yZ: ! K @ ( 0 <3 t C ` yz: ! O @ ( 0 <c u C ` s y 7 ! @ ( 0 < ' p C ` s yR8 ! @ ( 0 i </ ' p C ` s yr8 ! @ ( 0 <? ' q C 2 ` s y 8 ! @ ( 0 i <o ' u C ` y : ! \ @ ( 0 <w ' u C ` yB; ! h @ ( 0 ) < ' v C ` yb; ! l @ ( 0 < ' v C ` y ; ! x @ ( 0 <{ o m C ` 3 yJ7 ! @ ( 0 I < u n C ` 3 yj7 ! @ ( 0 < w n C ` 3 y 7 ! @ ( 0 I < } o C ` 3 y 9 ! ; @ ( 0 < s C | ` y 9 ! ? @ ( 0 <# t C ` yZ: ! K @ ( 0 <3 t C ` yz: ! O @ ( 0 <c u C ` y : ! [ @ ( 0 <s u C ` y : ! _ @ ( 0 < v C ` yZ; ! k @ ( 0 < v C ` yz; ! o @ ( 0 < w C ` y ; ! { @ ( 0 < w C ` y ; ! @ ( 0 <# x C ` yZ< ! @ ( 0 <3 x C ` yz< ! @ ( 0 <c y @ C 4 ` y < ! 0 <s y @ C < ` y < ! 0 yB= @ !O+ g y < C P ` \ 0 < G ` H 0 9 < @ g 0 z C V ` y^= ! @ P 0 < @ g 0 z C Z ` S yn= ! @ P 0 < @ g 0 z C ^ ` y~= ! @ P 0 < 4 { C v ` ` y = ! x 0 < < { C z ` C y = ! x 0 < < { C z ` C y = ! x 0 < < { C z ` C y = ! x 0 < < { C z ` s y = ! x 0 < < { C z ` C y = !O x 0 < ' < { C | ` y = !O x 0 < ' < { C | ` y = ` a C ` | C ~ | C C ` | : | C C ` | <* P 0 A 2 ! 0 @ y\>@ ` g C `8 | <6 0 5 ! 0 @ yh>@ ` k C `X { C C x ` ` l C h } Gn ` C m C ` C m C ` m C ` ! yV <l 0 q <l 0 q <p 0 A & } @ w ` C m C ` C m C ` m C ` ! y <| 0 <| 0 < 0 & ~ @ t ` C m C ` C m C ` m C ` ! yX? ` ! y`? ` ! y`? ` ! yh? ` ! yR < 0 8 ! y ? ` p C ~ < 0 1 8 ! y ? ` p C < ( 0 !A 8 ! y ? ` p C <&( 0 QA 8 ! ydP ` c p C G <.( 0 A 8 ! ytP ` p C G <d( 0 1C 8 ! y P ` p C : <h( 0 aC 8 ! y P ` p C > G < ( 0 QE 0 ! + ydQ ` C ` C [ G < ( 0 E 0 ! 8 y Q ` C p C s G < ( 0 G 8 ! 9 y Q ` p C u < ( 0 G 8 ! = y Q ` p C w G < ( 0 G 8 ! > y Q ` p C G$ <$) 0 G 8 ! ? y Q ` p C $ <() 0 QI 8 ! K y\R ` p C & <8) 0 I 8 ! O ydR ` C p C G' <<) 0 I 0 ! X y R ` C ` C G- <l) 0 qK 0 ! \ y R ` C ` C @ . <v) 0 K 8 ! ] y R ` c q C G/ <|) 0 K 9 ! h y R @ ` r C / < ) 0 M 9 ! i yLS @ ` r C G4 < ) 0 1M 9 ! j yTS @ ` r C G6 < ) 0 M 9 ! n y\S @ ` r C 6 < ) 0 M 9 ! o y|S @ ` r C < < ) 0 QO 9 ! { y S @ ` r C G= < ) 0 qO 9 ! | y S ` C ` C G? < ) 0 O 0 ! yDT ` C ` C GE <** 0 0 QQ 9 ! yTT ` ` s C GE <,* P 0 qQ : ! ydT ` C u C @ E <0* P 0 Q : ! ylT ` u C @ G <`* P 0 Q : ! ytT ` u C @ GL <d* P 0 1S : ! y T ` v C 1 @ L <h* P 0 QS : ! y T ` u C 9 @ N <x* ` 0 S : ! y T ` u C Q GO <|* P 0 S : ! yDU ` C v C S GU < * 0 qU 0 ! ydU ` C ` C [ GW < * 0 U ; !O @ yd < C = ! 0 )W < * '] y U ! ( ] y < * g] C w ` y U @ !O H 0 W < * g_ $ C ` yFV @ !O H 0 9Y <)+ ge $ C { ` y U @ !O H 0 W <!+ gd $ C ` yVV @ !O H 0 IY <-+ e $ C ` S ynV @ !O H 0 W <%+ d $ C ` y U @ !O H 0 W < * g_ $ C ` yFV @ !O H 0 Y <%+ d $ C ` yZV @ ! H 0 IY <++ e $ C { ` y U @ !O H 0 W <!+ gd $ C ` yVV @ !O H 0 y <y C Q ! ) @ ' ` J 0 yF < C T ! + @ ` 0 0 # @ yF < C T ! + @ ` 0 0 # @ yF < C T ! + @ g ` K@ ( 0 # yh < @ C \ ! ` #K 0 % yp < C < ! ( @ ` J 0 a% y < C < !O ! @ ' ` ` 3J 0 1% yX <;+ gg C > !O g yzV ! 0 Y <a+ 'l C ` CK 0 % C Z !O 0 9[ <e+ @ 'm <k+ m C @ ` 3 y V ! 0 [ <{+ o C ? !O ` J 0 a% y <y @ C X @ !O @ ( 0 1% yX < @ C ? !O ` J 0 a% y < * ' ` 3 @ y < @ C S !O* ` 0 ) y` < C T ! + @ g ` 0 # yR < C Q ! @ ' ` cJ 0 I% yF < C < ! ) @ ' ` J 0 % yD < + 0 9] = !O yVW @ ` z C ? ! 0 @ y^W@ a ` 0 0 @ y < @ C S !O* ` 4 0 ] < + v @ C h ` H 0 $ y < C S !O* @ ` 0 # @ yF < C T ! + @ ` yzW ! 0 _ < + ` 0H 0 # @ yF < C T ! + @ ` 0H 0 # @ yF < C T ! + @ @ ` G 0 # @ C t ` 0 9_ < C ?@ ! ) '} @ C > !O ! @ ' ` @ y W@ !O @ 0 % yp < C S ! * @ } C ` ` 3 y W ! 0 _ < + @ g ` s @ y < C ` G 0 i_ < + ` cK 0 % y W ! 0 0 _ <!, g C ` @ yRX ! , g C p ` yN <3, g ` ` @ y W !O 0 0 % y <a+ @ ~ @ C ` y@ <( @ C ! 4 0 a <;, @ C 1 h ` S y X !O 4 0 ac <n, @ C : h ` s y < C < ! 0 1% yX < @ C < h ` 0 y <{, ' @ ` G 0 # yR < @ C Q ! ' ` cJ 0 I% yF < @ C S !O } yR < @ C Q ! @ ` ` G 0 # yL < C V ! ' ` cJ 0 I% yF < @ C ` @ y <, 0 # y < , ' ` ` 3J 0 1% yX < , g @ C @ !O) 4 0 e < , C @ ! * 0 ie < , C X ` 3 yjY @ !O- @ 0 e < 4a ; ^Kl ( d$ 2 4 L &G C A A ? A E @: c T ? "@ [8 3T ?c h B d A 5? M A g? $ A ? C j = \ _Y 1 A.< ~ i ` @ - V ; M x~;4@ 4 } q -D @ DA ]g St Z iv 2` :^ 6 i k s}' $@ A A :g O ! ( 7 [ E 5\ t s f[x di $ y e I ^T _;\ Fe Al ~< q o O b &C g eq o5 |WY YT qU q U O s ' ul E [ m i 7 6 $ { Q3 a W ;} ?N X 7 kt y\ 'i c } _ a A mX i fo j M 8 s 0 K u VW s W k (O } %C3 } sU Q A W I5 T M8 ] [ >Qu 6_ U $ } m Xegu Um ,W= S;? gcu D~ - & X A Su y ] M Ul i UQ]W | H y / J G\ 0 sV Q Q S W5' [ Z 9 oXOE M Q r ] v z W L ? ! s \ N < 9 A g Y_ a $A fx i OqL S n WI v uE {5f :> 0 Kv Q 7 Y 7 a Q] g U _ f [ ` ? I 1GM eY \ s & w c z5 k \g 9 | o V w m k snw A aK Uz S[ M u N |w U E Av D H x Vq s } mkP aU I U } ]w$ Zm _ , D _q I ~ N2 _w q gvey Y q>m v ~ 4E W Q3 _ S t L y m Q i w , @5 6wa ~ } 7 > M _ k @ A A `, Y 9^[ w3 | ^ :ma e, oq pW Yx K2_ 5\ t s rl SV y a, 8 W\ 1_ P \O FO o a,a - ' S\ Y EU2 ^T _;\ K 4 a, c Q 5 tWx A2 > Y U~ E= a,a uv? ' y _ b &C g =7S . e, uY [M 8 4 sY [ _ w [ E n 7' e,! U% YW Pq y e0 O { 7Q e,A} _e ` Q2_ ] ] e ] a, 6o E~o 8 u U3_ m i > I > a, G A } ` >Cp ]2_ ls,M =M k a, & F p 4MU Mk0 W ;} y ]v _ 5 a, r? < >}[ m1 z '} F C u a,! q M de3_ c } Z&u { a, f E k yWQ _ V D e V Q $ a, W~ yT >T] j M 1][ a,! G7 O i1 D \ Q4 3' a,! 2k @ ' u1_ VW K W{=. e, PN}: 3_ \] Gs M e, < 3 r ]U w 3_ %C3 } > %C a, \ iT _ 2_ xu m |& % e, & fo? Y {?]0_ T M8 ] WD a, A= OT g1 7 3 ` y] M tw a, r, w ]]3 Xegu q Q a, E gU 7 C 6}wgO3 r = 2= , e,A s F xr 1_ D~ - | o} e, ,g:V | yF 1_ t?U G ' 5 a, 7UW e @ i0 i YZ S9. a, c ,u2u p Aw\ P u o _ C ' 7 a,! M 8 [ 2_ J G\ lC / ' e, qt Sq D 1_ U P< :< z4C 7 e,a^ To5 ( } C Z 9 [ = 7 e, S hq \Mi _ TM NO e, $ e> C1_ ] v at Qw e, ^ U% z5 rGK2_ R?' y-W2$ e, Oo ? h K 6G3 N < 75S e,AN p > 9 3 y W ^ a,A M~T{ X r7 g2_ fx i f P GV= e, S y c M1_ L ? e,! s g\% 6 Y3 v 3 Yt- . a, %cu]Q 5 P{|vs| M _ WcV v/O7vE a, 1/ F .o 3_ 7 Y 7 _ e, i /gTW C~UW ] _ `y W oW = e,A C K l Q W2_ ` ? I Q~ a,a Q gY } p u 4'C 5 >gY 9 - \' e,aNW X x 2 z5 k u 7= e, pN 9 8}\e ]}3 o m} 8 $s $ a,A v u 1_ k R / a, y ( <D }3_ I^ S W e,AOm 7U7 { 3_ N |w =\ S\ e,A CQ A pS -OV 3_ d IT Y >w > a,! O oS\ 4 3_ x Vq s Y a,A P D ,u3 V ~ |a S & a, T % D f[ ]w$ e } a,A V 7 1_ U| .O ; M < e,A~ $y M p E 3_ N2 _w q o z] a, ]Y d @ { K Q2_ J 9mw 1< a, Orv M | ^ m2 ~ ^ % e,!M Uq A 2_ y/a g 4c a,a$g OU 1 m2 t L T |eI > e,! s ` u u 3_ nSu = a, q {2 @5 6wa E & 5 a, < P U 3_ p s 'W=UT a,!~y Q| 8__5W ]o $ [rkn e [zko \ kp e J\ kq1 \ krQ e . \ ksq > ] kt e N J] ku ^ ] kv e n ] kw ~ ^ kx e J^ ky1 ^ kzQ e ^ k{q _ k| e J_ k} ( F S I : W #0 } X{ Y : #xQ:e y : k : # 0 V V = : # V\OQ u D Es : W # %i VQ m : # f > B . 6 : # o ? 7S : # < k o |^ } i : X #x P_m V={y : # A i K : #`U e l O~u : " #( | YSl m tM : (X # } \ H~ g : . # iU? Iz : 4 # ^ K B Y : : #P } c F : @X # Et { z s~ : F # 'WZ bS | : L #@Aq] 5 s m{ : R # A0 $C mI0 y : XX # R ]U O ^S >mx : ^ # A [ ?o ? v : d #PU UT e r= ~qu : j # Q q = s : pX # WV uV } D >{r : v # O | @~ I Aq : | #( q = 6O m _ : # F @ _? Q^ : X #Hm | { r Ty \ : # T KXL @ EW g[ : #P t } A r Y : #hA Eyp|M _Q X : X #Ha4 U Y M OW : #P } c R U : #8 P m < 9?qT : # oy 6CS : X # / C Q : #( %_ 7 T iP : # Y 6G[ = > : # _ k ; F = : X # a> g & g s k< : # Y C]f C; : #0 65a A [ f 9 : # { fG P s lw8 : X # I K uA Q7 : # uRD Q W 5 : # 3WCQ W & W 4 : # Yf_ [ F2] ?i3 : Y # ]0&a Nr P G2 : ! # e D } t 0 : ! #Pc UM %k h uS : " # At Q o ti : Y# #hW e< u bZ > K : $ # y &E y QO_ 4 : $ $ #( o } 6 : * % # e k w : 0Y& # <A ] : 6 ' # sV Gp5 L ^kV C : < ' # ] B?\c7 : B ( # O 8 L ? 3 : HY) # Oq 6T H\W } : N * # [ 6 g : T * # [ p FY-i2OQ : Z + # 6 K T F : `Y, #XG2| [ < S $ : f - # [o 2 k : l - #( 3F 87 [ mp E : r . # u^~ _m u : xY/ # kZn YVG : ~ 0 # w &US E b f} -a : 0 # Q| ?I V7% A : 1 #hA Eyp|M ot : Y2 # W ^ T Q V a5, : 3 # I U N m : 3 # tE [ J ,oX]U : 4 # :dq G_ @ _ ~ : Y5 # m8 G uc n T : 6 # o Vk g j e : 6 # k F } : 7 # { o g s k : Y8 #8A u n [O[ : 9 #(Q -y 7 uK : 9 # S L} }= > : : #0 Q4uRe ^ wv : Y; # k 2} R : < #P Ow ium : < # | C3 F : = # tAV ^ |W : Y> # x < D & <4 : ? #8u n Y8V{ : ? #Hs4} { MS w : @ # y { TMsgs : ZA # u f PUq : B #8A?. v t ~ : B #x p M ]G4 z : C # QY } _m u v : ZD #8 8 o v [ r : & E #(m | 3 cW$ ^ : , E # v Oq_ Z : 2 F # E_ _A nw CW : 8ZG # ]fs \C {|QS : > H # A TE n K ta? : D H # GG ` \}s; : J I #` C >I j : 7 : PZJ # A -u 4K |\ x 3 : V K # S &M \84 : \ K # g uw8 O /ys<Q : b L # [ Y Q f y m : hZM # t r Q \ 0 : n N # o 4I> S e}0% : t N # i a U V / ] : z O # } t W v [ : ZP # Y S/u : Q # Yf_ [ FQ-m E : Q # { ] L : R # / u_ nA s : ZS #(Q uiS^a |~ > Q : T # w N :Fc VOI ^ : T #0 Ds -e z| k : U # tO g Bq p : ZV #8w} : g : R : W #H 65kT i q&q4 : W # <. k b -[ .W : X # g <q m h _ G : ZY # o T 4$ : Z # u0| eq F m _ : Z # D Ds o ms : [# @ _ / S` M0 8 a% 0 h a= 1# bU m1/ Scm 1; d -2G ( % d 2S X + e 2_ 1Sf M3k 7 g 3w = g 4 C h m4 H ISi- 4 x O jE -5 U j] 5 [ # A A A _ P _q B` E E # } } $ _ P kt B` @ u #xW} G _ P kw B` ` [3VO G # W t _ P kz B` d [] #@C U U _ P k} B` #P 7 _ P k B` ` R s= #h q _ P l B` `t Wv R #@] .E V _ P(l B` I w # Ua _ P@l B` ` Y K G # Y _ PXl B` @ ] S #Hi w 7 _ Ppl B` @n F ^ #Pu _ P l B` |} 5 % #8Y\f } _ P l B` ` U ^M w # [7Gy _ P l B` @ ^ # z G s _ P l B` #hc A[ o _ P l B` t # eQ i _ P m B` A UW # e c _ P m B` ` A_D # K g_ _ P0m B` 7y e #@} 1 Y _ PHm B` & t # L dU _ P`m B` }g 7w # uF T O _ Pxm B` ^mr4 >U # [ | nK _ P m B` u #h G E _ P m B` @ u u # A _ P m B` Ypo 0 # S _ P m B` E mpF #(e MS _ P m B` 1 m m #@ ]g O _ P n B` @ C } # ?>k _ P n B` Gq #@kV A _ P8n B` } T=g2 #PQsWY = _ PPn B` C; q # < y _ Phn B` ` M / W' # c^ _ P n B` ` M #0 v A L _ P n B` t # _ P n B` } 8 #hc M _ P n B` 7G=7OR # Y_ Y w _ P n B` U= # g0dc]< _ P n B` O6 k # ]>= _ P o B` % #h G { _ P(o B` K?& {G # { w _ P@o B` Q> Q m #@ = _s _ PXo B` q ,qw # d 5o _ Ppo B` O # E k _ P o B` x # 4E4 e _ P o B` W #@ K a _ P o B` mY 2 # e i ] _ P o B` mzLe < # } tw ~Y _ P o B` r _ \ # o O\eU _ P p B` [ T } # U MQ _ P p B` @6k V # o57M _ P0p B` X s # 6 Y&I _ PHp B` C kX # E _ P`p B` ` m # C _s A _ Pxp B` _ 7/ # 9l 5 _ P p B` y $ #( S [ _ P p B` ] i04 # k , _ P p B` @= ]1D #X ]q _ P p B` T Q T # _K _ P p B` @ > d #XS _ P q" B` 5}I o # m { _ P q% B` L N_ # $ _ P8q( B` SWTO # Gv =y _ PPq+ B` T # A } ]q _ Phq. B` } [ # eQ i _ P q1 B` _ # [p U a _ P q4 B` , t W # Mk Y _ P q7 B` @\ # ; I S _ P q: B` \QP _{ # _KpFK _ P q= B` y? # SdQ; C _ P q@ B` u8 C{ #hk gC~ _ P rC B` CRe #xY ^ 5 _ P(rF B` ` M / W' #POy5 >\ _ P@rI B` sn 6 # g _ PXrL B` ? M F #p y _ PprO B` aU5 VU #(O_] \ _ P rR B` N 8 Q d # gs _ P rU B` Ku5 o # zM _ P rX B` mE> ~ # W _ P r[ B` Y > 0 #x s y _ P r^ B` 5 <EP #@ = _s _ P sa B` @ G | Z #`_ k _ P sd B` @UM q #` k:Oe _ P0sg B` w5n s #@ T ] _ PHsj B` C \ q # U OW _ P`sm B` [ # u6%A O _ Pxsp B` Au Q # c M<_I _ P ss B` Q3 # ] ~}w A _ P sv B` ` y~W # iq _ P sy B` }r E #@w } - _ P s| B` ` .{ & # ] d _ P s B` ] p5 #HQ lS _ P t B` A \q D #` g _ P t B` P N #0uZ 4s _ P8t B` ~ \M }] #@CU uY e _ PPt B` pO l # qy W _ Pht B` `.I v # _KpFK _ P t B` MI l W #`u gW _ P t B` M #( q % _ P t B` 5Q_Doq # _ P t B` `6K # ix _ P t B` ` 1 O\ # ; _ P t B` | I # ; 7} _ P u B` %AY y8 # m o _ P(u B` @ Y >e # V nc _ P@u B` \e> # g qr W _ PXu B` uyP #H uM I _ Ppu B` `vo #(WR [ _ P u B` # | u\ _ P u B` t 1 m #(]> KU _ P u B` YYu U, #p ][ lo _ P u B` D u~6 #P 5 W _ P u B` &EV D #`u gW _ P v B` vY ] N # U g _ P v B` r _ \ #@ 56 - _ P0v B` s} C g # 9 s _ PHv B` ] u # g [ _ P`v B` A # C _ Pxv B` TA a1 # _ v _ P v B` Q q0 # qz wx~g _ P v B` ` u u # M[ Y _ P v B` `? o #xE _ P v B` V s c # o]e &Y _ P v B` { U # _WL _ P w B` C /E # G _ P w B` #(e TW _ P8w B` ` F t #8s c e _ PPw B` U 4 ; # u 6 s _ Phw P AB 5 Z`#l M 56 6 ,[f l M 6 \[l m M 6 6 [rcn M U7 [x#o M 7 6 [~ o M 8 \ p N u8 7 L\ cq/N 8 |\ #rGN 59(7 \ r_N 94 \ swN 9@7 ] ct N U:L <] #u N :X7 l] u N ;d ] v N u;p7 ] cw B` A A @! ; 1 A A0 a C @a ; 1 A AP a ? @ ; 1 A Ap a a |m @! ; 1 A A a O O @ ; 1 A A a 4 } @ < 1 A A a M3 @A < 1 A A a ^ & @ < 1 A A a O>| @ %< 1 A A0 a @ w | @a 1< 1 A AP a `w y C m @ =< 1 A Ap a WxUs ^ @! I< 1 A A a va=T @ U< 1 A A a >m E @ a< 1 A A a ` &u 7 @A m< 1 A A a f Y , @ y< 1 A A a ty< @ < 1 A A0 a > @a < 1 A AP a < y @ < 1 A Ap a C4' @! < 1 A A a U @ < 1 A A a ` Y @ < 1 A A a M M @A < 1 A A a 7 s @ < 1 A A a Q uX @ < 1 A A0 a ` y mA @a < 1 A AP a q @ < 1 A Ap a M M @! = 1 A A a @ la: @ = 1 A A a @ e _ @ != 1 A A a Y0V } @A -= 1 A A a @D =K]t @ 9= 1 A A a @g 9g 9g @ E= 1 A A0 a @ g ^ @a Q= 1 A AP a | G U @ ]= 1 A Ap a ' L @! i= 1 A A a @?M<?M<? @ u= 1 A A a `6Mp6Mp6 @ = 1 A A a @ > - @A = 1 A A a @ [ o $ @ = 1 A A a dq8 @ = 1 A A0 a r { @a = 1 A AP a M8d @ = 1 A Ap a o @! = 1 A A a ~C @ = 1 A A a `4 %Q @ = 1 A A a 5 T @A = 1 A A a n t @ = 1 A A a K K @ > 1 A A0 a @a > 1 A AP a ^ tC^ @ > 1 A Ap a [ {? @! )> 1 A A a w ] 6 @ 5> 1 A A a y F 3 @ A> 1 A A a u ] 6 @A M> 1 A A a Q > @ Y> 1 A A a \Q f \ @ e> 1 A A0 a q @a q> 1 A AP a K K @ }> 1 A Ap a |K | @! > 1 A A a I3 8u @ > 1 A A a m k m @ > 1 A A a =m Q e @A > 1 A A a @ u >^ @ > 1 A A a Vk Vk V @ > 1 A A0 a ` G % 0O @a > 1 A AP a G @ > 1 A Ap a i VA5D @! > 1 A A a OC_ E < @ > 1 A A a U [5 @ ? 1 A A a ` u - @A ? 1 A A a r & @ ? 1 A A a ` K^ K^ @ %? 1 A A0 a @ @a 1? 1 A AP a ` @ =? 1 A Ap a O q @! I? 1 A A a K4Ta @ U? 1 A A a ` Ip Ip @ a? 1 A A a @D R @A m? 1 A A a m9 @ y? 1 A A a ]qO 3 @ ? 1 A A0 a ` 8 1 @a ? 1 A AP a ] O 3 @ ? 1 A Ap a C 8 @! ? 1 A A a 4}[ Q @ ? 1 A A a @. nc^ @ ? 1 A A a /I[,[~ @A ? 1 A A a f p @ ? 1 A A a WQ e @ ? 1 A A0 a & o @a ? 1 A AP a ,W 7 ? @ ? 1 A Ap a U e @! @ 1 A A a I I @ @ 1 A A a ` MA @ "@ 1 A A a S Eu @A .@ 1 A A a S @ :@ 1 A A a @&S Le2 @ F@ 1 A A0 a 7 : s @a R@ 1 A AP a Q } @ ^@ 1 A Ap a 7 4yt @! j@ 1 A A a O c ~ @ v@ 1 A A a ^| @ @ 1 A A a G R u u @A @ 1 A A a M to @ @ 1 A A a }: l @ @ 1 A A0 a ] f @a @ 1 A AP a @ M G 1d @ @ 1 A Ap a y &u ] @! @ 1 A A a S ~ qW @ @ 1 A A a `O < U @ @ 1 A A a uF N @A @ 1 A A a ` Y uL @ @ 1 A A a FI1FI1F @ A 1 A A0 a EA ? @a A 1 A AP a & k = @ A 1 A Ap a c Er7 @! *A 1 A A a ` |?K75 @ 6A 1 A A a u U w . @ BA 1 A A a ,I ,I , @A NA 1 A A a VE & @ ZA 1 A A a $I $I $ @ fA 1 A A0 a ,qr @a rA 1 A AP a M T @ ~A 1 A Ap a [ 9 @! A 1 A A a C Da0 @ A 1 A A a @ o? M @ A 1 A A a C E @A A 1 A A a I0DA @ AB yW w < x }< W P sy1 < 3zI == W za = {y = W s| ]> @ 3} > W p } ? ~ }? W s ? 4 >@ X 1 ! @ a 9 @!X t Q ^A- 4 i A 1 u _Q7 N ) R> :- 1 05Q Va N 9H ) _\ A 1 N ;x ) v ] 1 s uF_x N < ) @ E 1 [ Yt K9 N > ) } 1 :TW N ? ) . }\ = 1 N A8 ) c E] 1 Fc E} N Bh ) Cp4U| 1 G 7 > N D ) 7 {7 1 W N E ) b C 1 C N G ) d w 1 xEy N H( ) X]W R 1 KX N JX ) FG 1 QL N K ) ne 1 Q } N M ) F= SV} 1 { _ N N ) 1 E t N P ) Z { 1 | m8 N QH ) ry [?o 1 \.Y mY N Sx ) > eu- 1 y _ N T ) C~Uk 1 | { N V ) } C 1 . w X N W ) | Y -[1 1 ]> N Y8 ) 4 1 p4c N Zh ) h |U<4 7 1 6 ] N \ ) z m; 1 t Y o| N ] ) R > 1 Q N _ ) bT e9 Q 1 ]^W N `( ) F_W]eU 1 N bX ) - X 1 65M iU N c ) [ 1 ' u-i N e ) ls E= E_ 1 y] >\ } N f ) _r 1 N] Ec N h ) b $yu 1 .s ] N iH ) x 1 u vL T N kx ) { 1 Q Y K N l ) k; ~ 1 Uz< N n ) B NW &A 1 G Y N o ) < x& 1 C % N q8 ) j[ u K 1 UYRD[ N rh ) \8 Z^ 1 c2- N t ) mp Q 1 k N u ) D 1 | S1 9 N w ) : ]S 1 = ~ N x( ) ^ 1 8l y N zX ) j O 1 : k N { ) 7 m5N 1 ]m 6O N } ) ?m Q4I 1 w{ U\ N ~ ) D 1 - G N ) wo _ 1 ? I N H ) u 1 Yv P N x ) V w 1 y5}u C N ) TW c 1 s N ) j> | 1 T\ dA8 N ) M 1 8 N 8 ) Z 1 c> } N h ) N 1 G y k1 N ) > e 1 >\ N ) F- 1 3 x N ) n\ E 1 > N ( ) v 5u 1 e yOU N X ) N g Q 1 % u u N ) E O 1 >} N ) V c { 1 Z' } N ) X W % 1 E t N ) T ]]TDQ 1 t{ Q N H ) TQ V y 1 :. N x ) w , 1 y s u N ) } I 1 ~ _1 N ) 4 U\q 1 E{ K N ) tu N 1 q u x N 8 ) Zu 1 [q k N h ) _ 1 |g N ) _ 1 V N ) j_ ? 1 $] Y N ) | q G 1 P N ( ) 2 Y mi 1 } U3 M N X ) p 1 x w| w N ) P>l{8E 1 a N ) @sl G 1 > z 8 N ) ; e 1 k N ) R % 1 r.cx q N H ) ~ S\ 1 ]W] N x ) p K / 1 k N ) ^uYU 1 G Z. 1 N ) d; u W 1 y QZ N ) @ C7? 1 TE N 8 ) u oq 1 ='q [ N h ) FZUEyu 1 } N ) Xr { L 1 mGU 3 N ) nr S 1 pm 9 N ) ~?s t 1 T \ N ( ) N i 1 $ r N X ) ^ 1 = [ $ N ) U~M] } 1 g & > N ) G 1 5 O oK N ) ` _ 1 ~ _1 N ) ]-st Y 1 v \ N H ) F u4 1 s 'e N x ) V ]k 1 0%i84 ~ N ) v _ 1 Q< } N ) V - 7{ 1 1 W | N ) XzLi A 1 u suw N 8 ) D v 1 <| ]Wv N h ) O 1 9u N ) $c 1 C t N ) f sW,] 1 k du o N ) >vi 1 % L m N ( ) tXe t g 1 A - l N X ) 2 1 r ~ g N ) : s 1 /]R A f N ) D} [ ] 1 s Y } e N ) gI {0 1 v \ d N ) y 0 1 ~t[ <M ^ N H ) D 1 1 f | \ N x ) ~S } UG2 1 $ ]} V N ) w7 2 1 Qg TEk T N ) x |M3 1 \w 6 e~N N ) vw 3 1 wQ ksL N 8 ) Q A S4 1 ?4u f}YF N h ) 6 . 4 1 R ] PD N ) p 9&W5 1 V ^ q< N ) r ?w 5 1 c T4 N ) R y Y6 1 \&k9, N ( ) \G3D 6 1 S U0$ N X ) M [7 1 Fc< S2 N ) DeZ 7 1 x c\ E N ) rS|I}5]8 1 : A N $ ` { BBx a# fBN Ea)D BZx ua/ &Cf a5 Crx a; C~ bAD !FD x 5bG # $ D ebM ; ' E x bS S *fE bYD k - E x b_ 0&F %ce 3 F x Uck 6 F cqD 9FG x cw < G I A A A A A @ A\ ~ A A Eq A a % @ A0 | A ? A < A q d @ AP z A 7 A A @ A x A G A A> A ]/ @ A Uw A Y A Q_f A @ AP yu A P A L A Q f @ A8o s A U A D / A A & @ A8'Wr A x A Dg A A> @ A p A A A _ A Q } @ A I_ A % A A w @ Ax ] A 7aW A D A s @ A MS\ A a A ~ A a -m @ A Z A { A Ds^ A a lg @ A DoY A P A A AX a @ A CX A c A D v A R ] @ A|& V A 6 A D d A A W @ A yU A $mT A u N A S @ A O[T A 5 A U < A Q M @ AP R A %o A G<' A 7I @ A ' Q A p A G A A_ C @ A M P A G A M A A @ A & ? A W A D] A Q l @ A< w> A S A D 0 A y? @ Ap m= A / R A G A A $ @ A<|g< A y A DAV A @ A c; A A D 4 A @ A Gc A A 9 A @ A Oe A sQ A wu A @ A i A . A a ~ A w= @ A gq A A [o A d @ A d{ A Gu A q d A @ A A Z A o T A 2 @ A A A W E A QP @ A A A _ 7 A A V @ Ax? A A W, A @ A Q A ,y} A A 7 @ A g A S A yR A a m @ A A E A DW A @ A A K A D A a[N} @ Axd A e A c A qx y @ At%[ A A D A ;Nw @ A8 { A GY A A s @ A|^ A m 1 A { A Arlq @ A C A a A t A o @ A k A m A D A q k @ AT A 'Q A Sw A Q Fi @ A0 A y A ] A e @ A g A T A D} A A] c @ A A A A Q ]a @ A $C A A c } A _ @ A q A A Y t A 4 [ @ A8~ A . A I g A AW Y @ AP U A A ^ A Q tW @ A A ] A ;V A Q~EU @ AT A : A D M A q S @ A 4u A % A D A Q O @ A A } A Ds < A q M @ A4Fe A - A } 4 A K @ A / A %a A ' A I @ A Y A %I A y A Q G @ A A Sq A > A _ E @ A LS A P A u A qS C @ A f A Q0 A a A QP A @ A Q " T 7 O| K yX R x[F C? ~ ] K;% a u O| K(mqW \> P , e < A ]| K ~WmS Q [ Q^l Kt G ! ct kZ5e| K St AW n=% . U aW /c vU| K gU A o 7oQ o= Q$ _ } [4 t U| K8 \M \O Z6 [ q G | Uf Y< U| K@i_ I T{ xr_G_ u ' m ! e vm k| K { |e $ { o ! 0 g o| K q _ Q f G5 7 Z7 xv ~ =>[| K .U E} b ] [ } M } ! d [| KP U U /g VE[ ! } T]| K peI 4 A z S a <y: W= u| K E{ SS ] ~ / y QW l 9'K DE O 3 o| K`} u Ws B ]CTu z = Q A< Lg| K@g ] P 3 Q o A m3%Y7Fi| K uct 1 ot~]Z T M q e dO s| K t> = m_ G q a |s| K q dE 1 kU Ve ] =6ov q| K w ywY 8 aR <Fkl 7 f q| K |}m x G t ut sw !oM { w| K U n w kp EZ ] E A V aY W| K A> O q Fq A |i| K sR 7$ T^ K r 9fA^lU0 ! $At Y| K0KT a] i; }Y e v 5 W wu }| K E 5 G m / W =/K o tG| K` % Q @ IU&e C _ C }| K a / d[ v E t I a|s}$ 9 {| K M nW $e V du 7}S X m K;Wu }}| Khu Q m f]GG y s O ,O3 a, } u| K ]W w sv7 Q w 5 5 [ }| K w 5 RGK0 _X s i7 | KH ]u q < O ! = ]-{| K n i~ w \ $ { a x 9 y| K mV<ot = ; z ; 57} av 1 O ty| K W ? K W_ M Y o| K@G H u6. iX E5 _ y| K Z qU 4S g = K AGs ^ 4{| K w A \7 _ TUM S V }M{| K xvI U SL { A Q7y| Kx % Q I _ $ p q| K ve D[ L : [ A ! e O| K k c | WkV u'e ,y| A : {| K y p k L ^ pn X W 8 | K z ?u D S c vwUz q| Kx ~ } D c M Sz w tw| K ws {q =5 _ a { y| Kx}tlc Y a E2 1, | K W= ? q w4 wGY u W g| K l Z U G ; 7 A s[ sww{| K {6 S o=N SDU> o u Oy oi| K q \ f dm 0 q< Lk /a| K y E Tu \ 9 E ]Ip'k| K ]p q A _t 7M Ue s {< . p Y }| K g 5 _B F[v y 7<[;7 ? E ey i| K( <s _ w O i Q E ]7 y|o| Kh [ _ Lq [ ?gS' > e s Gm[ }| KP _ Aq _ da _ C % e g i| K Q I _\P w] ? Z }? % m &}| K _V} _ uV u I e &C M7 k| K(_u { _ ] O 1 uQ pu9 ]| K y $ _ju4S W = % Q g5 q| K [ =y _| ou i lq T %/cY a q| K S lE ]q _zvT W &G E }| K o 6 i _ p& &q c _Y 7]Pty <| K xls a _ E W U C A % _ E Vy| K } | Y _L < =Gu K_ %W OY | K` 2 S _ :m Z FG8 eu - | K q _FK _z Go t 3 } m Wv K $spwy| K : C _ c 5Q vO _Y g }| K z A~ _ K i ]nq < ~ N _mmU/y| K 4 5 _ d \} EO _ LY >y| K` { >\ _ t v w f{TOC etS < u| K o e _ oU D { q /] t s o| K c y _T S yvYy Q V m| K ; \ _n Ov wr Se 8 5 d x {| K y_ a _f:T > < I %/Q_ q| u| Kh _H u G _q $ T g y_ eq| K UW g _ } ep ~W , n{? | K 6 y _x o WK r Oyr [ =k| K M? _s _ w: ?n e^M M ] y| Kx : k _ U M{ 4 I y c ts| K a0?[:Oe _` Q 5 G EvW -s| K c w ] _l e { :>Q} \ W y| K KW> OW _ S 7 w m 7E9 euU mR w| K GZTW O _ U o > Ens p's| K S i<_I _` e LKx iZ e [ n > {| K Q ww A _ pU q u q| K q _TQ ] Uc e| .q| K g ,{ - _J E p] a4 m e% _G4 c| Kh 6 d _ e G > ? 6QW 6ne| K 5q _ \ s 0t s [2^ w| K`C M _D|= ~ 7 } p g:,y5Em| Kh q 4s _N 6c2 A< e gC m| K C ,AZ e _ Q [ w RLO e7 s q| K my W _x q T}2 v' < O I e6^u| K` _FK _tYLmQn d X ? .G Wm| K0u< _|4W} >] } v EnU u| K }? g % _F \ Ql e G; ~.q| K8 \ _TrW OR [ [ o<N[| K > x _~z/ - s S [r& a| K( eU _ o X$ n 6 e X <Fq| KPc 7} _v /Q ~ E _Up E p P w| K Z>k o _P q ]u ~ o Dk k| K O2 w nc _` c dI} q 6{ , o| K Iq kr W _tr SR ' O As w| K I _ qum .g> 9 eG0 C| KXq7| \ _@7LUr I 7 ~ E w M k| KHQt? u\ _n uW Q} _ 7 m| KPs uU _j E w % ]v' UOk| K _A lo _F } a s3v oe i| K ]~ 4 W _ GWXmy o1u t V | k| K8 _ 5u ~ Z G o M & a| K8 4 g _ M er g { m S Eg| K( - _ \i3e ?5dO l 'M da| K A s _ D e 4 ~f Tg ?M W| K t k [ _B O |EQ d - V i| K ?v C _ 'K S 7 R ^ Ev e| K u5 W v _R m8 lc q W . N I| Kx R z~g _x6 > 1 W T S| K 0 e\ _ ] } V& 7o M I } }?g| K@g _ 3<_ ]U _ F . R O| K8G &Y _ 74C } UG y D w Qx7]| K8 d _~ % lA D 8' 96 s ip _| K } _X USp Kr Q[, %gW~W r I| K NO TW _ W-YRN l 55{ 0 W| K V e _\ GvD^ M GU| K W is _ Q ^ 9 W|d { @ > G x c~ ? G d @ H y d T A6H !d BVH y!1d CvH !Ad # D H y"Qd T + E H "ad 3 F H y#qd ; G H # d C H I#y$ d T K I6I' $ d S JVI+y% d [ KvI/ % d c L I3y& d T k M I7 & d s N I;y' d { O I? ' e P JCy( e T Q6JG (!e RVJKy)1e SvJO )Ae T JSy*Qe T U JW *ae V J[y+qe W J_ + e X Kcy, e T Y6Kg , e ZVKky- e [vKo - e \ Ksy. e T ] Kw . e $ Z Z c c E W e 7c dkr% u C !Ds a@GRG[ 7C |GX O 7 C & a i n ~ m _ Us j A C A [ m@ Ar :\ A _ A $ S A 9m{ l@ A x A s A DI Ek A ay7 r&@ A .]r A oz Y A L A d@ A A m ' A o } A A ~[ @ A W A qn A 7 Mw A e_]@ A6? 3> A A K%qp A C W@ Ap S A k A [ Y A Yv U@ Ax?u3e A 4CV S A $ R A A WTT@ A 6 A ^c m A q O< A A va N@ A~ Gz A L 4> A Uw5 A Q @ A o4$ A O ` 6 @ A 41 A L]y A A G A A _{ -@ APFm6- A WUv A D] O] A AY GZ'@ A U A &_ $i A S u A y I %@ A L A ^ _ M A A t<K d@ A W[ A D ~o A doR C{ A q. [^@ A ~} A ; A vYt A a? i @ A a A M }O} A eg] A A1 a V@ A ? A a A \ V A e<U@ A W7 A gwGG A q9 ? A 6 @ A< 6 A C l A Y~ I9 A y] C M@ A N{ _ A t & A -o2 A Q8 : j A A A _ n@ A g A $ A $s W A i n _,@ A0>s A C y A k A &@ AxG A 0 ] A [ A a vo $@ A <& A 0 A A g ~ A Ay W>_@ A m A N 0 A Gx A P @ A QsN A em 5 A } Sq A ^ @ A G A A =q A Z A A M6V@ Ax :u A e W A | S A a @ A < A At A T U= A a y N@ A St A < A ,k6 A & 6M@ A / A A D ` 6 @ A AP A _ } A { A qW X-@ A y = A oG A wV]_ A g@ A A 0lm A wT> A QQvy %@ A ^e A . v Q A cr A aQ|AQd@ Ar q A t A mA| A }wS ^@ A4 A C A dys gu A :4O @ A<nCS A K% A ^ A Ap 7 @ A 6 A W _e A D ue W A ^ U@ A ' TG A }:tK A P A _>[ @ A4 u1 A AW A g ]: A 4 0N@ A ] n A A m A i3 A A[ z ( ^ K A A H Z Z _ c c E V q_[ ~X K /o _ 6=s7 A A A A a Z Z nC -m i< ~!]6 }}v_ h S $ K A A A @ A A T Z Z %Uk Vk V K0K? QR Q c c E V vq gA: U K {< <o e= [,u m~ K g | 6=s7 D # _ )0 @ A A A A a, Uk Vk V H Z Z _ nC % a, fK gA: ~ ]\ Y a _ S O ~ }m a, t t }Q~X K /o _ h S ~ M l E0 < 3a*L" A A K A A A @ A A T Z Z Uk Vk V K0K? QR Q nC E V fK gA: ~ K S O <o t t }Q~ K g | h S D f t bFL 91 @ A A A A e, Uk Vk V ` Z Z nC { Ev e, fK gA: ~ Y a S O S& e, t t }Q~ ]6 }}v_ h S ta 7{ T l ~Y1- ScnL $ ` AP y [ "G Q clang version 3.9.0 (trunk) A ! 4 *llvm.identSTF A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A Z 3 f = C8 B yx s q 3 B f0 = C8 = C= = x tp { yH pp zp vx p 0 n0 P 3 ! ! a f0 ; ; C9 < < ; v` {h 7h rh 7 p p` v( v vx w _ q r y , 0 b a ! a C9 C9 C9 C9 8 C8 ; / < ; ; i pX rp th x` t t S P @ P 3 ( A ! f Q8 C: ; P$v` {h 7` wx x r( w zXp C= 8 C9 A ! ! a ( A, c # E n C D ~ ` M PC # A| CP H d vjR fj20 b & C- Fj2HT` & , , } o o 2 a \ A, c l] ` y 2F t f /c n a (O 0F & d ? n J f c z= e A uo ,R " QC 0PE 4PG 8P # QK <PM @PO DPQ b # KP ' d ' jB0 b n & C- Fkb iR jR ` fkR P kR P j20 b & C-5m & 0 un & C- m & 0 n & C-5n & 0 uo & C- n & C-5o & 0 , kB PK a s A, ' c i o 0F *? < '* b c {? _ A en `K 0F h k c <z u / = 0Fp : ? n * c c . ~ # } N } @ D T A T A T A% T0A- T@A5 T@A= TPAE T`AM TpAU T A] TP ` 2N4A @ / kB I M I m I [ I P ][ PKm & C- , m & C- kB0 Q 0 0 I C I PK] I C [ I PK} I C I PK [ I PK I PK m & , 0 iR fkB a A, 0 c ` | , 3F j : 9 3 i b 2c - p> 3F < H a p* a /c l L 0y ) 1F kL / 6H 8 kI c >L k A< 4 a 1F ym qX 8H t y = 5ARP TRA \R dR lR tRA |R Pa`IYAT0 R T A g dPA H T R T A o b @ 9 kB I M[ I m I I P ][ I I P } I I P I I P PKm & C- kB0 PKo & 0 5m & 0 m & C- kR0 R lr P 7m & C- m & 0 n & C-un & 0 5o & [ xj & [ j & C-uo & [ 8k & 0 0 kB a w A, * c } x X , !3F z ` ` a ` 2c j Z % 2F ; H * a s c < h ~{ !1F ) jH ( , c *~ a z8 - 9RN LR TR \RA dR lR @u D T@A a TP H TP R T A i b D @ 2 kB [ I M I m[ I [ I I P ] I P }[ Cm FkB0 r PKn & C- kR P k20 b & 0 5n & C-um & 0 n & C- m & 0 5o & C-un & [ xj & [ j & C-uo & [ 8k & 0 0 vkB a * A, A!0F IP Z C # ` M $ 7 p 1T tC vj2 c & D, 0 4 j2 ` & H j2HGd & [ xl & C- a H A, R ! P %Ph $ ~ ` M ! D ~ ` M ! D $-PN`F ` B` p . - * ` $ FkB [ ! o & t X I! r #8MED 8 a & , n & C Q jR jR vkR0 R kR0 R kR0 R 6k ?8T iR kBHT a C A, T KP P %P. # y 1b` A A+ 7 # z 1b` A A+ 7 6 ! I *P " ` @* $ p ! FkBH [ &k _, 0 X H 8 T j2HGd & C- jR jR jR vkR0 R kR0 R iR m jR m jB !Q n & 0 : a ) A, T UVd R # x 1b` A A+ 7 W X < e j NS R I#8MED _, 0 0X H 8 d & [ zl & + i & , , a ~ A, 0 P c ! #1F I "c ( $ 7 \ 1bP ! DsA pC u@{A t R D V t t ) C L7 C1bP A 7 T%D ~ ` 'N UD \RA!# U0H T p D a0 @ A @ < &kbH B Nd & 4Um & D, 0 T t jB c I P m I P I P I P [ H? 8 a & < N Q d & , ] 0 , m & < m & D, 0 ,6o & D, 0 X I H P B P @3 I : [ '0 N K / !L a A ! D A8 jB I ~: a A ! p D A8 jB I ~: a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a A, c f e9 % A8 iR j20 a A, c yz e K % A8 iR j20 a 1 A, c CQ 7 PB v y D%J P H)A t $ Fj2 c & D, 0Y !Q n & TfjB8Qm P n & C- T j2HT` & [ 7 m & [ 7 Dm & C-VjB c[ I : [ !QA a 5 A, c 7 0F Q 7 PB !T D-L P H)A t $ fj2 c & D, 0 D5m & T kB0 P n & [ 7 m & [ 7 Dm & D j20 b & < oq !Q m & D 9 1 [ c a 0 A, c 4F Q 7 PB !T D-L P H)A t $ fj2 c & D, 0 !Q o & T k H B S Dun & [ 7 m & [ 7 Dm & D jRHTP jB0 [ P jR E a A B ~ ` M ib o im & D &jB a ( A, P # E Aj ZA V !8 v 8 v p fjr 8 a & iR j2 ` & D VjB I : BX I : Bl a A ! p D A8 iR jB a pC A0 y , # M r @E d j2 c & iR jR R 4Fj D T O I! R a ! X p iR k jR o jR s6j2 ` & , a ! T @ @ iR k jR o jR s6j2 ` & , a f A, T %@ P~# T C P 3 I! ) D$ 0bP A A; 6 ~ ` M, 4\ # ( j ` T$ @`B T@p E 7 L7 PPD FT ( .( ! L .`A @, @P g ] 7 ` d 5 VkbH B / " !L7o & <vo & D kRHT` iR k jR o jR svk s d & 4U 0 qM l H B N " !L m & < n & D, 0 0 Q , @3 I C I! R: ! a - A, T %@ 0 P 3 I! ) D$ 0b < 6 B@A 6 H rB D%B 7 A L7(F A8 j2 c & D, 0 R: . iR k jR o jR sVjr b & 0 jB ` ! !L< a 6 A, T %@ P~# 3 I ) D$E 0bP A A; 6q ~ ` M $\ # ( i ` T$ # H 7 L7 KPC j2 c & tD m & K 8 jbH B } / X p9 ,vjR jB\N !1 ! a 1 A, T E X U X & 0 0$P 5(ZA P u<X A8 jB0 r[ P n & C- fjB ` ! Qo & 0 0 4 n & 0 5m & 0 m & tDvj20 b & tDum & iR k jR oVjBHGT a ? A, T e X u X & 0 0$P 5(ZA P u<X 0l@P T!]) a @ & jB0 r I R: .S PKn & tD @3 kBHG o & C- 0 4 n & 0 5m & 0 m & tD j20 b & tDum & Y @3 I R: I R: Y I R: .S I 4C} ! Q a c A, @ 0 0F c i q x s Z 2 ( ` ^ 0 4b0 4 A ! p TN # j 3bP A < 6 T I L7 2 0 I T0A T@A TPA! T`A) T H- T t X 1 W @0 VkbH B j2 c & C- d vkB0 " !L n & 0 k2HT` & 0 um & 0 m & C- jR kR &kR kR0 R jr O! d & C-5n & C-5m & C- n & D uo & C- n & [ vl & 0 5o & 0 un & D, 0 < a A ! D A8 iR m jB a # ] Op j NS L iR E &j NS RX I! R a P A, T @ 0F @ c P T :B B 0/ 7 tC E,0 ,bP ,R % 0bP A < 6 T @1 7 L7 C0bP A < 3 T tC O d # &kB " !L m & C- ( # ;Ea & D, 0 0X H? L S 7m & D FkR P k20 b & ,K " !Lvo & 0 uo & < d iR m 6kb # a 9 A, c / `@O0F o0F ~ g V`@ H ~ ` M U 0bP A < 2 78 q t L74B A8 j2 c & <5m & D, 0Y X " !L5o & , m & C- jR Vj NS L j NS R I m & C-5 a A, c ") X # B d jB I : P a A, c # 7F` G # ^ C 0H Ad iR m VjB ` ! b & C-FjB0 R a A, c # ' ~ ` {M r \ @ j NS L iR E Fj NS R I! R P a d A, T A 0F c y 89 [ ( V A ! @ DSL # Ci 3bP A < 6 7 P #e 2 P t %DRA E R e R R $R PW ]P [ f 1 6kbH B L k2 c & C- d VkB0 PKo & D, 0 0X Q 0 0 I! r I! I! b I PK} 4 0 0 } oq H? L n & D 5o & H3 a A ! D A8 iR m jB a # [ Op j NS L iR E &j NS RX I! R a U A, T Q c G P c / 0/ w Vp A ! DrA pC A1 AH ~ ` M 40b` A = 6A c A ! DP P\P [A N7< A8 ) j2 c & D, 0 # d fk H B m ! R &k H B M # T k H B L jR j20 b & 0 m & ,Kn & kR kB I p9 0 fjb 4 0 a G A, c G 0 7 ~ ` {M RA # _ A P } ` L < ~ ` >M A ! u sA pC tCD " kbH B RY , I! b I! I! [ I! I#8MED _, 0 !8Me & <FD _8 / D D, 0 #8MED Ka & [ zl & 0 0 1 [ c a A, c ") X # B d jB I : P a A, c # # [ B d iR m jB P a A, c # ' ~ ` pM r \ @ j NS L iR E Fj NS R I! R P a a A, T @ 0F T @ 0F @ @ @ @ < 5 \P ; 08`0 4 p t Ec u P # k B0 <hP U 0 A ! P DP $ d 5 1 0 t 4 ' Vkb t fkR S k H B " !Lvo & ,K P 0 @3 !0 n & D, 0 t iR m kB Q d & H3 !1 ! j a 8 A, H@O0F Bc Wt VP A ! 1 D 1D U H L7 1bP A = T 0{ l @ vj2 c & D, 0 H t8 d & C- R PKo & 0 j2HT` & DS I! b P RX 4 , NT iR E a A, c #) X # A B d jB I : P a A, 5P # Az 0 bpA D @ Vj2 c & 4 T ! b & [ x a A, # z ` $@d 6j2 c & FjR NS jB I : a A, 5P # CY 0 bpA D @ Vj2 c & t8 d & D iR E &jB I!8M a A, > # Y ` t@d 6j2 c & D } oQ ,FjR NS a A, T % # CO B ^ A8 &j2 ` & 4 M 4 m & + i & , a A, V 5 W f iR 6j2H b & 0 Fj ?8T a A ! D A8 iR m jB a 0 A, *P ?P` # E( Q 1 R 6 2 A! ! k+ 0 ` P # jR0 R j RL (vjR HU jB0 I! ! b & ,KM I : !1 Pc a T A, T %@ 0F # 3 aP 9A # z A ! ` D0b` H 4! ` bM tA 1 { D T H ` cM @L n` 0 np ` =8k" 2 & &kbH B RY P n & C- , I! b I! I! I! I : H1m I#8MED _, 0Y &0 N K / !L j NS , , iR 6kb 5 1 [ c a A, c Z Z Z % RA RE R jR FjB0 b PKm & C- 0X Q } o a # A, c Z Z Z 5 R !e Q ! R ! $ A8 jR 6j20 b & C- vjB0 r P n & 0 Vj2HT` & [ xl & [ !1 s a A, # ` M $ [ {A l @ fj"8 @3 I H P BX 4 m &D $ S } o o 2 a A, T # ` gM Q [ { l @ fj"8 @3X 4 m & L } oq oq Hvj _, 0 a A, H # CY Gt V@h ^ A8 Fj OI M @3 I H?% N4 D } oQ oQ ,vjr K a ? A, T %P % Y @ 0F 8 `0Fp "lo V A ! RB AB 5$0 A ! D0b` A = 6 % 0b` A = 6 0E0RE d jbH B 0 Fk H B S] 0 Q , ! , , SH3Y I! I a $ A, c 7F 7 ~ ` 3M E TB r \ @ Fj2 He & 4 M 8 d & 0 iR E vj NS R I! R P 1 [ a a / A, c z [ _ {K 0F g c ? 5\ } c n e RA R (R 0R 8RA A8 vjB0 R[ P m & 0 jB [ P n & 0 jB ` n & [ xl & C- a . A, ] T %P =P @ 0F T # S c P T @ T c k8 7F a c s / 0FP ~c x/ $ 0F 5 ^ ` Q 6) 0F 9 o c r/ 7FP }hc + G P c / x c 7Fp & % 9 g c _ / A % + = 0F / rc { x/ b 0F Zzc `I 7F J{c 6; 7F0 zc o y # ` M 5 U 0 \P 1 P \P Q @ 0 p \P 1 P ( A= 5 pC` a0 @ GP R) 5 pC a0 GP pC aPD # pA l ^ [E % R A ! DPI U R A ! ` DPE # T R D T PE H R /@- T PM H RS < @ pC a0 P FP p tC t A ;` % % : D L7 u [ Q <H C 5 R <@ T@ PG T H R =@5 T 0 @ @ D \B N t a 5X[ Q ?H 5 R ?@ T PG T H " R H@5 T@ PO T H & E ; : E L7 XP z K QC T H . u R K@% T PK T H 2 R L@E T@ PS T H 6 j t & ? m2H b ' 0 xm ' 0 m ' 0 xn 'FC u I I'0 N K / !L5 I I'0 N K / !L5 I P o I 4 N I P [ CM f{R0 v|b P % 0 4n ' C-<m ' 0 5 ! b fzR4 nR S |b P L {R x20 b ' 0 ym & <FD _8 / D D, 0 ym ' 0 m & }R8Qm y gD ,@ K B S |b P @3 E 0 m ' C- n ' 0 u ! r F|R0 |b0 R tm ' , PKM xb 1 n ' C-5 I!8Mu[ I!8M D;n ' u I'0 N K / !L n[ I!Q I'0 N K / !L !8Me ' <FD _8 / D D, 0 n ' <FD _8 / D D, 0 :o &CC ob NS $ T m H n H B S oR4 Q {b NS A um ' C-u} I F I Fo Cm }b P 0 vo & 5m ' C-7n & D, 0 9m ' C- n ' 0 {o ' C-7o & n & L d ' D, 0 n ' D ] I" !Lu I!Q C} {R }b0 R NT }b0 R 0 m ' C- C} ~b0 R NT ~b P ( SH3 yn ' 0 w_ $ - 0 5 @3 = @3 E $ T M 0 @3 $ T 0 $ T } I" !L PK} H B S {R V{R f~b0 R m ' C- [ C m2HT` ' < n ' C- C ~b P U ] e i } oq 0 N } P w vn"8 8m ' C-5n I [ !0 m ' 0 ^ nB !8M 6n2 ` ' 0 m ' L T 8 i SH3 I P I P a A ! D A8 iR m jB a # CK Op j NS L iR E &j NS RX I! R a a A, H T %@ 0F ; T Q 0 P> c / @ ; f j 0F {c ] a/ 0F , @ T ` p[ @ P c / x c 7Fp & % 9 g c _ / * Q c 8 *7FP vc H {/ " A q c t8 7F , { 7 n % r T 0 7 p N7 F@ 7 p @T \F # C} ~P H A 5 R @ TP PG T H w V P Q H { %!R @Q @ 7 l: B L7 ` mu T@ PC T H u R )@% T PK T H R *@E T P X ;h u pC a0 plA T0 R D T@ PE H R -@- T PM H RH t % A 7 I t 0 yR0 mb $ T u 0 m 0 9 I ~ m ' 0 {n & D, 0 ] vo gD ,@ K B SM m H B S I" 8 2 I'0 N K / !L5 I _ I'0 N K / !L5 I!Q I I P O[ I I P o I P I P [ I P I 4 I P [ I I [ I!0OM[ I 4 C m ' D |o ' <FD _8 / D D, 0 5m & C- oR 6mrH ;Ea ' 0 m & 0 5o ' 0 9n & C-un & C-ym & C- n ' C- m & C-uo & [ vl ' 0 n & 4 ^ I C [ I PK I PK I PK I# 8 2 3 I H? 4S D;m & 0 6m & 0 m & 0 6n ' 0 :m & C-vm & 0 n & < U o H B SM mb NS 1 0 m a H 8 T @3 M $ T % ) 0 - $ T E 0X Dxn & 0 n & L&oR p nR0 r nR0 r mR P oR0 r yR0 nR0 r fm O! /N LVyRHT fyR0 yR0 6oR p a A ! D A8 iR m jB a # J Op j NS L iR E &j NS RX I! R a . C, ( T %0 @ 0F T 5 Q P >@ 0F `0F ; vc = 7F j-{c 8 G P 5@ 0F 8~c 6F d zc : 7F j-~3 # T P R V p t C' 5 c 7 L7 7 `@ h 7 a @L7 A 0 a pA ` q % e T@ R @ v T R @% T ` ` !` 2 6 n - H! @J @J ` @* (# D t @ * h B, , n( 08! d P D n b p ( n c ( n _ pC` `0 A lq TPH% T @ *d @ Y C (BPA, `+( w ` ! p lbH B 5 0 X " !L=m & <FD _8 / D D, 0 o H B S [ VnRHT xRH &nR0 nR nR fnR0 vnR0 nR nR0 FnR0 nR0 o mo 5}[ !8Mu flR S For D c & E "8MED 4 E p 9 D $ 6oR l20 b ' 0 ym & t, S o Q ` p 5 0 } oq O tm & mR p l"8 (@ 2\ m ' I 0 mR0 b mR0 b FmR ` 6mR0 b lB [ I P I P I#8MED _, 0 !0Oo &CC vmR0 b fmR ` 6xR FxR &y H B SM xR fx2 He & [ v <>] q 0 " !L m & D, 0 a 0 mR p l H B I m[ I P ][ H? 4 ) - 0oq tM yRHT x _, 0 @3 9 ( L=o ' C- n & q! 4 a & A, c / ` 7 ~ ` 3M 0bP A = 5a 7 Eq tC fj2 c & D, 0 I#8MED _, 0 Q } oQ 0 TD4 6jR VjR a A A 7 B1 0 d &j2 c & D, 0Y Q } o o 2 a A, # 5 1 @ t 6j2 c & D, 0 I I - Q a A, # 5 1 @ t 6j2 c & D, 0 Q } oQ oQ 2 a G, T Q 50 P c ! P @ 0 @ < 5 \P ;bP ! P tA l 7 \P a * v A * K d .( n $4 ` .! n " n 60 5 = v Ah 0 n dG ? A0 & ` k L B0 \P aC ` V q" b Lb ` ! + ~ ` =N A0bP A I 6 L7 w T A ! D 7 3 0 A @ ! ~ `@ M A ! p D0bp A 9 6 A ! D0 $ , ? 0bP A I 6 X ` !@ 3 L P ~ ` pN 0bP A I 6 7 + u Q ` V s b LB ` ! BF ? A0 ' ` y m"(Z b s mB B ! ` ! f Y Y b @ 10 x ja y(o" 18 a y s" n r e0 ` n ~ (^ ` ! B ! ` ` p ob NS $ Q ,}m ' <<n ' ,K I!Q N[ I!Q ~ / y H B Sm mRHT oR VkBHT [ I!0O I!0O B L?1 D} m20 b ' <}n ' [ H _ I @3X I!QA [ H? L lR c 6lR c Fmb U ,wo & D zn & 4 T5m & D zo &CC jB @ !8MU kb NS A , L5 I!0 ] ! mb } ,8o & , I "H ` & D ;n & 4 }[ I 4C !8Me kR P flR4 a nb ] , n & ,K [ I'0 N K / !L5 I!Q _[ !8Mu vlR ` x wm 6k2 c &EC m & , N "0 6n & ,:n & < m & t 9 D $ T } oq = @3 oq a T m & ,Kn n & "0O~ n & , N D7m & 4oq Z ]~] @3 ob , n & , ^ D n & < n & , I'0 N K / !L M B L?1 ) $ T &m H B SM ob , m ' , ,<o ' , Q T q $ T $ T $ T $ T 5 $ T < a ' A, T @ 0F @ T @ # ` jM 7 p 1T tC vj2 c & D, 0 !Q n & jr 4 o & [ vl & 0 VjB @ a A, T R 5 W f 6j2H b & 0 Fj _, 0 I J } a J F, # >@O0F A ~ # Z A ! 1 p p % {E pC A 2 A0 p( pC % ; P p ~ ` cM@ ,A1b` A H 01 @ + @x ! vj2 c & <um & D , n & <un & ,K S ,>m & ,Km & jB I D 4 m I H I I .[ ! b & a = A, c %@ # ? E A ~ ` M ! zA A ! s rA pC ApA D 7 L L7 J0l@D d j2 c & ! !LVj2HT` & 4 n & ,Km & C a & , n & jB NS H? 8 a & <FD _8 / D D, 0 ! b & [ xl & L a = A, c %@ # ? E A ~ ` M ! zA A ! s rA pC ApA D 7 L L7 J0l@D d j2 c & ! !LVj2HT` & 4 n & ,Km & C a & , n & jB NS H? 8 a & <FD _8 / D D, 0 ! b & [ xl & L a = A, c %@ # ? E A ~ ` M ! zA A ! s rA pC ApA D 7 L L7 J0l@D d j2 c & ! !LVj2HT` & 4 n & ,Km & C a & , n & jB NS H? 8 a & <FD _8 / D D, 0 ! b & [ xl & L a E A, T Q # c g @ < 5q\P [ @ 7 \P QC # I OAA ~ `@ %M % L7T 0l@T # j2 c & I! ! !LFk H B S} 4 m & T I! [ H? 4 @3 !8Me & [ vl & [ l &D &k gD ,@ K B a E A, T Q # c g @ < 5q\P [ @ 7 \P QC # I OAA ~ `@ %M % L7T 0l@T # j2 c & I! ! !LFk H B S} 4 m & T I! [ H? 4 @3 !8Me & [ vl & [ l &D &k gD ,@ K B a E A, T Q # c g @ < 5q\P [ @ 7 \P QC # I OAA ~ `@ %M % L7T 0l@T # j2 c & I! ! !LFk H B S} 4 m & T I! [ H? 4 @3 !8Me & [ vl & [ l &D &k gD ,@ K B a > A, c P T = u # = F A ~ ` L % z A ! u sA p t@ pC t @ @ j2 c & .>Sd & D d & D jR NS vjR jr Ka & 4Uo & ,Kn & k gD ,@ K B } oQ , a A, T % 3 P 9! # ( D= D@ a p j E .>S iR E 6jB a A, T % 3 P 9! # ( D= D@ a p j E .>S iR E 6jB a c A, 0 P c %@ G @ Q # ` M0 $ 7 \P 1 04`pA D 7 tCP $ @ 7!\ [ tX I+ v 0 3 6 / j2 c & ! !Lfkb @ NT k H B } I!8Me X I H 4F 4Co & tD6k20 b & C a & <FD _8 / D D, 0 j2 ` & < @3 T l NS # d & + w= jB @ I : a c A, 0 P c %@ G @ Q # ` M0 $ 7 \P 1 04`pA D 7 tCP $ @ 7!\ [ tX I+ v 0 3 6 / j2 c & ! !Lfkb @ NT k H B } I!8Me X I H 4F 4Co & tD6k20 b & C a & <FD _8 / D D, 0 j2 ` & < @3 T l NS # d & + w= jB @ I : a c A, 0 P c %@ G @ Q # ` M0 $ 7 \P 1 04`pA D 7 tCP $ @ 7!\ [ tX I+ v 0 3 6 / j2 c & ! !Lfkb @ NT k H B } I!8Me X I H 4F 4Co & tD6k20 b & C a & <FD _8 / D D, 0 j2 ` & < @3 T l NS # d & + w= jB @ I : a Y A, T 0 P c p P K T@ ? # ` oM, 7 \P 1 00`pA D 7 tC@ @ < 5!\P [ RtX I+ v ` a# a 0 . j2 c & D5m & D, 0 H? L5n & D, 0 p 9 D $ T jR NS k2 ` & 4Co & tD&k20 b & D, 0 j2 ` & < T k _, 0 I J ] HVkb @ 5 a Y A, T 0 P c p P K T@ ? # ` oM, 7 \P 1 00`pA D 7 tC@ @ < 5!\P [ RtX I+ v ` a# a 0 . j2 c & D5m & D, 0 H? L5n & D, 0 p 9 D $ T jR NS k2 ` & 4Co & tD&k20 b & D, 0 j2 ` & < T k _, 0 I J ] HVkb @ 5 a Y A, T 0 P c p P K T@ ? # ` oM, 7 \P 1 00`pA D 7 tC@ @ < 5!\P [ RtX I+ v ` a# a 0 . j2 c & D5m & D, 0 H? L5n & D, 0 p 9 D $ T jR NS k2 ` & 4Co & tD&k20 b & D, 0 j2 ` & < T k _, 0 I J ] HVkb @ 5 a G A, 5P AO0F u@QTLu @ P # `` L0 t Z ` !` ` a` "F I v B ! n e@Z < N7pAsE t < @ @ " kbH B Nt jR S 6kb @ 0 Q k NS # d & C-&k / N4 @3 I 4 M I H , [ I! I J ] H kR ` a A, T % 3 E ( ` L 0 " iR E jr m{ c & + w= j & , a A, T % 3 E ( ` L 0 " iR E jr m{ c & + w= j & , a 2 A, c # E o C @H T D T H D T H 7<~ d VjB0 b P m & C- jB0 !Q n & C- 0 Q 0 d & , } o a @ A, T %@!0F 3 aP 9A # z A ! D1bp A\ 3! C H H ` L )! '(! 2 j2 c & C- jB0 I!0OM P n & D, 0 NT VjR fjR vj20 b & , n & [ 8{ b & , } o o 2 a ) A, P # A9 FqA l VP A .y 6 N j ?8T @3X I : H1m H? 8 a & 0 j2HT` & , } o o 2 a s A, T P 0 @ 0F @ /T `A @ T P NP D 0F T R # ` |M` @ < 5 ]P ;b` A A+ 71 # B~ p F ! n >3 00 v a 0 b ) 0 a 3 3P 3 tC@ F nP 7( v 0 $7 n ' Zk 9@ ` n z @ @P tC $ W t b %L7 P G V P Q $R D1 T H A DA T [ *@ T z l Q iR D WH D A 7 ~ ` eN V ig ` ! 3 @ y y ? 7 0088 X` @ n8 ! ! y _, 0 m ' t, y2HGd ' < n & D xn & D n & D, 0 m ' C-<m ' C-|m ' C- m & D, 0 n ' 0 5m I'0 N K / !L5 I 4 I!0Om I!0O [ H 8 d & <uo ' < m & C- kR kR nRHT k2 ` & 0 yn & D, 0 wm & D, 0 m & D 9o & D, 0 wn ' <FD _8 / D D, 0 yn & D, 0 n ' <}o & D, 0 wo ' ;n ' C-5 [ I!0 I!8M [ I n I!Q I!Q [ !8Me & 0 :o & 0 n &G R vlb NS ] a Q d & 4U I" !L5 H 8 T Q T m 'EC =n & < n & L5^ H? 4S oRHT xR y H B S FxRHT y H B S z H B S fyR lB8Q I!0 [ D=o ' 0 m & C- m ' D <n ' D |n & 4 M H 8 T Q , L ] 0 } , L H 8 T I'0 N K / !Lum I C_ I 4 ] I I - I PK [ D kB ` D m & D vm & <FD _8 / D D, 0 m & D m & C-zm & C- m & < A $ # T , L5N[ H 8 T , L5 = ,|o & 0 7n & 0 wn & L l H B S] l H B S] m H B S] &m H B S] 6xR0 VxR0 nR a < A, # c G X % RB # _ Op# A ! u R t 7 M L74F A8 " fjB0 b D jbH B 0X P , 8 TD4 So & ,Kn & , n & 4 4 TD4 h 9 D $ d & 4 M , } oQ oQ 2 a F A, c H l F P 0 P # { pC %$2 ,xA t & ! 1( 0.( n 0 nHH= ' n0 ! p ! j2 c & D, 0 I!0OM[ " !Lvm & D, 0 "8MED 4 0 t +!Q j2HGd & C-6kbLN 8 , 4 TD4 H3 S jB I : a R A, T # P P @ 0F @ T @ # ` oM, 7 \P 1 04`pA D 7 \P 1 Df0 AA 7, T 3T0 t $ n@ 0 nP p ) j2 c & Y D m & < m & H3 d k H B m d jR NS kRHT` k2HGd & C-&kR NS j2 ` & < T kB I Q d & <FD _8 / D D, 0 5 a ? A, c F P eS # # T Q # [ pC %(2 @T tC & ! 1(J! 0 ' np ` j2 c & D, 0 " !L6m & < m & D, 0 T J L>m & C-6kbLN 8 $ S D } oQ ,&kb 4 a A, r T @ 0F c P 2 c P A ~@ P c ,n /P @ ? A b vi 0F @ b s J { ~ 4 p c > 7F l A ( 0F ~c . r 0F s * {8 0F m-~c [ / 4Y : c l: 7F @ " m ( </ 0F zc / A p Q T @ 0F @) `@ P c , P $ d A x c d7F0 : Z T W # ` M ) A B* p * B0 tC* A ^P 1 8bP A < 5! ~ ` +N # ~ ` mM # 0 ` BpA D 7 58;bP A < 5q . 1 \P Q .p 7 F p @ E ; @ ` U L7 0 0 7 / A C !L7 1 7 8 t 8 CP p p T= AL7 0 P 0 @ > !L70 PB:H E R :@ T PH H- T H R ;@E T PS T H 7\' F R =@q TP P^ R =@ A RA>@ A 2 7 B 7 C? - ] V D "!% A H # U R I@ TP PI H ' 2 0 0 0 P 1 7\-a e T0 tC@ K Ai/ 2 p fP^L@ L7 0bP A < 9 TP pCJ \P Qi \B k t A m # C RAOH D 5 R O@ T PG T H a R X@ X@ l@ T@ p X \P QUxp 7 F m " { t ! AL7 Y 7 | tCK A @ z Fob ,5n & ,K [ I" !Lu I" !Lu [ I" !Lu H? L d ' C- ^ I!0 O PK & b0 R n ( D I!Q N ! PK v b P n ' D, 0 tm ' D, 0 m ' <FD _8 / D D, 0 6o ' D, 0 tn & y H B M f{R0 y H B M {R0 {R0 |b P , m ( I!0O "8MED 4 #J'0 N K / !L M I PK] I!QA^[ I!0O 4 q $ d Q t 9 D $ d u $ d M , d _Y I" !Lv I PK_ I PK I" !Lv I PK C] Fnb 4 Q 0 5n ' D 5 C] }b P I <m & < m ' C-5 PKM fxR c } H B ] gD ,@ K B } zR P 6zR r NS m ' 0 zn ' D, 0 vm ' 4 M 8 d ' 0 :o ' D, 0 m ' D, 0 vn 'CC ~ H B m VnB @ I" !L !8MU }b P ,5 [ PK] 6}b0 R m 0 m ' C-u I!0 } PK] b S ! T5m[ PK] xR s }b P 0 0 tm ' 0 ;n ' ,K {R H B } &{R 6{R 6 H B } | P oR P xb NS a xo ' 0 m !8Me H B } f~b P U $ d I } 6o ' <xo ' 0 <n & I'0 N K / !L5 [ I I'0 N K / !L5 I 4 I I D [ I Dun 0 0 m & m ( C- C yR o2HT` ' 7o ' 0 =m ' < M I Co[ I C I C I [ !0Om yR0 xB8 m PK b P @3 9m & < zR0 &zR0 ~b S FzR0 fzR0 vzR0 V~b S $ T $ T 0 :m ' D, 0 <o ' 0 n[ C R8Q 6 b P 9n ' 0 b0 R n ' C-u " F xRHTp r NS 8o ' <5N I P ^[ I P ~ I P I" !Lu_[ I P I" !Lu[ ! R 6ob 6 a A ! D A8 iR m jB a # . Op j NS L iR E &j NS RX I! R a A, T % 3 E ( ` e) 0 " &jR m 6jB I : I J "F a A, T % 3 E ( ` e) 0 " &jR m 6jB I : I J "F a # A, # T 5P @ ~ ` L AA t Q D A ! 0 A8 Fj2 c & < d & , n & } oq , j m < a # A, # T 5P @ ~ ` L AA t Q D A ! 0 A8 Fj2 c & < d & , n & } oq , j m < a # A, # T 5P @ ~ ` L AA t Q D A ! 0 A8 Fj2 c & < d & , n & } oq , j m < a ! eA d iR m jB I J "F a # , p \ @ j NS L iR E 6j NS R I! R I J "F a A, T % 3 E ( ` L 0 " &jR m iR E 6jB I J "F a A, T % 3 E ( ` L 0 " &jR m iR E 6jB I J "F a C, = T # @ 0F @ ? 0F A T @ 0F Q 1 `0F@ i c ; / 2 0Fp j c ( 06F 8 % c 8 7F @ mB K J9 9 Z % @ # ` M E n p `pA t pC 1 rP u([A ; 0 TP 0 0 p ( Tp 2 C | # BP H A 5 R @ T PG T H ~ R @5 T HE T P ( tC0lE T0 0 p / 1 E % : C L7 j 7 * ! . C / t 9 *p @P +` *x Z8S \ [ % 0b` A = 9! R -H @ T p L @Ea 7 ` yb `L7 ` y `L7 a 8 ` ! 0 e ` v a j H * JB 0 : (% * # & ` a p xR x2H b ' [ v t x2HGd & 0 xm & 0 m ' <|o & 0 n & 0 n & 0 8o & D, 0 m ' D, 0 6n ' C- m & D, 0 6m ' t, n ' D, 0 6o ' D, 0 n ' C-<n ' 0 5] I P CM 6{b P Q U 0 m ' 0 m & C- oR oR z Q ` p - @3 I" !L } I" !L 4 $ T 1 @3 % # d ' C-=o & , ] I PK I!0 } I!0 I!8M I!8M [ I [ !8Me ' 4 M 8 d & C-6o &CC lB @ I I!Q N I ~ I P m I P I P [ I!Q I P I!Q Dum & m NT FyR nR0 oR0 &oR0 6oR0 yR vx 4Sm l2 c ' 2\O 0 y Q ` p ! oR n2HT` & <yn & [ vl ' 0 n ' S} &y _, 0 wm ' 5n[ Dfmr8Q 7o ' <zm ' tD{] t 9 D $ T 9 y m , O m & < A $ T @3 {} vn p 5^[ ! m2 ` & 0 7m & 0 wn & 0 n & D, 0 um & 0 wo & D, 0 5n & D, 0 n ' <FD _8 / D D, 0 n & D, 0 5o ' q! 4 @3 ; a 1 C, 3 T @ 0F Q c 7F * c / 0F ] c / 8^ c ( 0. 0/ T P @ R R @ 0F` | ~c j 7 @ 0 @ 0 @ P A 0 0F 8c G A H d E A A @ e 1T 0b` A = 7! QC T H j u R @% T PK T H T @ p L7 VD @ q 7 a f0b` A = 71 P @ 0 pA v - ` X xp `/ - V@D ~ `@ -N A T R ,A0P H S0PQ 0 '$ A ( ArXr 0 n N f n@ r *( n T( & @ XA*h 2w "\A*h J ` ' p vlbH B E 0 = 0 vM n2H b & ,K [ " !L m & tDvn H B S I ~ 4 4n ' D, 0 0 M 0 Q 0 <oq c 5 [ I o 0 p= D ! e & C- L l2HT` & C- nR lR0 R mR P mR0 R 6mR P &mR0 R VmR P FmR0 R &oRHT fmR0 R iR m Vx2 ` & D n & H3 tM VoR lB I M[ I m H? L n & 0 vn & C-vm & 0 n & C- m & C-6n & < }M nR ` mR ` oR0 oRH xR0 oR voR0 o m , O 4o & , ^[ I!0 I" !L5} I!0 m I!0 1 4 TD4 0 - Fx H B SM m H B " !L|o & <wo ' C-:n ' 0 {n ' E ^[ I 4CN H 8 xR0 xR0 yR0 lb L &yR a A, c ( % 1bP A < 4 T0@ @ d jB ` I 6j2HT` & D ,fj20 b & 0 a % C, c 7F c k / E 0bP A < 2 7 1 p B 2 B0b` A = 2 @ A8 Vj2 c & < oq O I , jR a j A, # @!0F ?c ! %@ BP l V Q # ` M0 $ 7 \ 1 08`pA t E ; pHfpA tCD E ; HhP $ $ N7 P P: @M . nP ! 6 j2 c & Y " !L8m & 4 M? 8 a & t k H B [ " !L6o & 7n & 4 M? 8 a k20 b & D m & 4 M? 8 a kRHG j2 ` & < @3 0 !0Oo & <FD _8 / D D, 0 8 TD4 C a &D } o 1 a _ A, T # @ 0F c ! P h T R +P # ` pM0 7 \P 1 08`pA t E ; pHfpA tCD E ; HhP $ N7 P P: @M . nP ! 1 j2 c & Y H? L m & D, 0 @3 NT vkR S k H B d kR NS l H B P @3 !0 n & 4 M 8 t jB NS !8MU iR m 6kB '0 N K / !L7o &D a G C, c F P eS # # c c # [ pC %(2 09 , A .x 1(J! 0 f n@ ` ! % *^A p " j2 c & D, 0 I!0 M[ H t8 d & D, 0 0oQ +!Q vk H B Q 19 , jR NS jRHGt k NS R I [ ! b & ,Km a A ! 0bP A 7! 7 0 P p 1 # 9 1 0 B @ 6j2 c & D, 0 " !L5m & , n & , , } o o 2 a A ! 0bP A < 5! 7 0 P p 1 # C* 1 0 B @ 6j2 c & D, 0 I! ! !L } oq oq ,&jR a A ! @ 0bP A = 5! 7 0 P p 1 # ) 1 0 B @ 6j2 c & D, 0 " !Lum & , o & [ zl & [ l & , ,5 a A ! 0bP A 7! 7 1 P p 1 # A) 1 0 B @ 6j2 c & D, 0 " !L5m & , n & , , } o o 2 a A ! 0bP A < 5! 7 1 P p 1 # ( 1 0 B @ 6j2 c & D, 0 I! ! !L } oq oq ,&jR a A ! @ 0bP A = 5! 7 1 P p 1 # D( 1 0 B @ 6j2 c & D, 0 " !Lum & , o & [ zl & [ l & , ,5 a 2 A, P # W$ @ 7a\ [ # ( PK $ N7$ Q f j2 c & H 4 @3 j ! !L j H B _ Q , @3 H 4 o &D } o 1 a 2 A, P # W$ @ 7a\ [ # ( PK $ N7$ Q f j2 c & H 4 @3 j ! !L j H B _ Q , @3 H 4 o &D } o 1 a 2 A, P # W$ @ 7a\ [ # ( PK $ N7$ Q f j2 c & H 4 @3 j ! !L j H B _ Q , @3 H 4 o &D } o 1 a 0 A, T Q # W @ < 5a\P [ # PK N7$ Q f j m 0 Nd & D, 0 4Cm & D, 0 X I! b 4 # I [ Q d & H3 a 0 A, T Q # W @ < 5a\P [ # PK N7$ Q f j m 0 Nd & D, 0 4Cm & D, 0 X I! b 4 # I [ Q d & H3 a 0 A, T Q # W @ < 5a\P [ # PK N7$ Q f j m 0 Nd & D, 0 4Cm & D, 0 X I! b 4 # I [ Q d & H3 a 1 A, HP # Wt @ = 3a\ [ # PK t N7$ Q < f j2 c & D, 0 .>Sd & D W j / N4 @3 jB8 Q @3 I [ Q d & ,K] a A, T % 3 P 9! # ( D D@ a p j E .>S iR E 6jB a A, T % 3 P 9! # ( D D@ a p j E .>S iR E 6jB a A, % {A l @ j"8 } / $ , a A, T % { l @ j"8 } /u L a A, ? % { l @ j"8 } /U R a ` A, c ! %@ P "c % @ !\ ; ( p 58\B T@ p t U$; z L7HV`T @ * D 2 9 vj2 c & Fk gD ,@ K B [ D m & D, 0 Nd jR S k H B " !L n & D, 0 t k H B ( t ~e & D, 0 NT xo & k H B X '0 N K / !L n & < a !8MU iR jR a ^ A, c ! P A c @ " R ; , p P \P Q % : 8K 7 O L7 JPE %L7HV`T @ * D 2 9 j2 c & <FD _8 / D D, 0 NT jR S k H B N " !L m & D, 0 _ t k H B N ( t ~e & D, 0 NT 8n & &k2 ` & < t iR m k24 a & [ l & 4Um[ H? LVk gD ,@ K B } a k A, c ! P = A A@ 0 @ P # J" ; 0 pC p ' @T % zA tC 1 \0 0Da0 , (; e I % ` ! , \ p pC t # C 6l gD ,@ K B n " !L m & D, 0 Tw l H B ^ 8 ~ W c & < aX !8Mu j2 c & <FD _8 / D D, 0 K M kR s &l H B ^ I!0O " !L m & D, 0 _Y " !L8o & T l H B ^ _ Du 6k2 ` & 4 M !8Me Fkb NS } oQ oQ 2 a ! d iR m jR m jB a # p \ @ j NS L iR E jR m &jR 6j NS R a A, 0 P P c ! $ @ 7 \ ;bP ! rA l 7 \ 1 `0bpA D 7 \ QC $@ q ^ ; `a0 TA 7H ! { A # A ! pC E 1 B 7 PE E 1 _ ; 0 A L7TB A8 Z k"8 NT jB ` " !L9m & l H B S [ I!0 m I!8M " !L9o & 4 o & <FD _8 / D D, 0 0 k ?8T n & 4 vk24 a &D T n & <6kb NS ,vn & , n & <un & , I!0 Hyo & D k H B I!0 M[ 4 = p 9 D $ vlR p l O-Nc @3 I!Q [ p9 9 , ,D I 4C I : I :. a A, T 1 P P c ! P @ < 5 \P ;bP ! rA l 7 \P 1 `4bpA D 7 \P QC @ 0q ^ ; da0 XA 7H ! D # n A ! pC E 1 B 7 PE E 1 _ ; 0 A L7TB A8 Y &k"8 @3 m H B S^[ 4 n & <vn & % T T 0 ! 0 jB NS !0 n & N [ Q d & 4U} ! b l O! j2 c & , m ! b jb @ l H B ~ '0 N K / !L9m & <5o & 0 fl2HT` & D, 0 1 lRHTp jr O! d & k _, 0 @3 } oq oq 9 '0 N K / !L8m & w a A, H0 P ?P c ! t @ = 3 \ ;bP ! rA l 7 7 \ qC D 7 \ QC %D|B D ^ ; `a0 TA 7H ! " A # i A ! P pC E 1 B 7 PE E 1 _ ; 0 A L7TB A8 [ kr8 4n & ! k gD ,@ K B 4 n & <vn & ,K ! jB I!0 ~ " !L}m & D, 0 A vlR l 5 [ I H , H jb NS !8Mu vj / N4Y I!0ON !8MU VkR s jR S k2 ` & D FkB8 I!0O Q k H B H t8 l H B I!Q N[ 4 0 5 n & <FD _8 / D D, 0 } oQ oQ 9 $ R T n & w a A, T % 3 E! ( `P * P c ( H! 6jR m jr m c & , } o o 2 a A, T % 3 E! ( `P * P c ( H! 6jR m jr m c & , } o o 2 a A, T P # % P c ! a0F T @ < 5 \P {P A ] 5 < PHbpA p 1 ; pT`pA p c 5 ZF @ 7H \P QC ex\B t AP # Cx i0bP A < 7 % `@ L ! @ D@ ~ ` L e F ~ `p nM 1 Q tCP 0 D Q 4 < D \P QE [I t F( t L7 0 GL7 0 P * 0 @ A8 mR kB8Q I!Q [ I 4 m 0 % ,vn & ) , n & , D6n & < n & <uo & , " !L n & , P M l2HT` & 4 M? L j2 ` & D 9n & < n & < m & 4 I!QA I I - !8M mb Nd & <FD _8 / D D, 0 @3 kb @ U n H B n[ " !L;n & D, 0 T VkB NS !0 n & 4UM !8MU kB I H? 4 n Q d &CC lb NS } p 9 D $ mR jr m c & <wm & D, 0 Q 0X '0 N K / !L{o & <7o & &mRHTp fmR p jr O! d & 8 [ I 4C} !8Me &nR a S G, T P # c ! P @ 0 S ; 0fpA D 7 \P Q @ 7$R \P Q eX\B ; =hpA D h 7 ] L7 A A 1 $ `@ L A 00 l ~ ` &N b0bP A I 2 L7 cPT b B Z 5 F ? A00 U& * 1( @ @`f 5 b @ !8 B 1( @ F ? A08 & b 1( @ e ` F ? A0 \& 7 y` @T { B Z ` F ? A00 _& " ` A S 3 ~ ` fN B0bP A I 3 L7 `TP ! 0 D ~ ` M U C ~ `p M 5bP A < 8 7 2 DP 1KP T q # - ~ ` M # m 1 ~ ` /N .0 F T ` , % L7 0 } 6o mk t uM &nb ,9n & A nb mR n H B S " !L n & D m & D, 0 a & ,K [ I!Q I" r 5m "0 m & , ][ 0 U 4oq Z ]>] Nd Fn gD ,@ K B S_[ ! b kR S lb # K ?GM j2HT` & , ~[ '0 N K / !L n & , P , m & D m & , 4 @oq Z ]~ / $ vnRHT iR m jR m o z I PK H? L lb Nd & , m[ ! r Fob ,;n & , n[ I!8M B L?1 DM oR FkR NS VlRHT` lRHT` kB s I!Q I P ^ !8Me & < Tum &CC mb NS T n & , N ! kR4 Q mb q , ~ 2 ` mR s o2 ` & D 7m & D, 0 - m mk t X ! &oRHT mR0 r kR P nR kR P vlb NS {M a ' A, T @ 0F @ T @ # ` jM 7 p 1T tC vj2 c & D, 0 !Q n & jr 4 o & [ vl & 0 VjB @ a A, T R 5 W f 6j2H b & 0 Fj _, 0 I J } a A, T % 3 E! ( ` dL D@B a p jr m c & [ vl & [ l & , t * a A, T % 3 E! ( ` dL D@B a p jr m c & [ vl & [ l & , t * a G, T %0 @ P # >@O0F @ P 3 E! ( A2 t V 9 ,:bP A = 5 ~ `` tMD A 7 RB Wt 7 T0 , 2 C0bp h 1 , 0 ` T pC T N . ' @ Y - Y c "h+ Q [ f B @ n J n@ a h b 2 E kR c jB I!0 I!0 I!0 N N3X 5 oQ o I H I 4 4 } t X ! b jr m c & D 0 Q ( K M7o & D I m[ I!Q [ 4 1 , ! 8 r l LN 8 I 4 } I I D 4 I D 4 [ ! R jR E a A C, T %@ 0F = 3 @! ( x ` } `@ ~) A 0 ! D0 < 7 1 A P % Y a @ qA 1 C8 j2 c & + J9 jR NS j2 ` & D 6k NS # d & C- jR kr E >m & [ J9vjB NS #8MED Ka & [ zl & [ l & , a " A, c ( # ^ 0bP A < 4 P ! @ 1 @ @ jr m c & [ vl & [ l & D 6jB I! R I! b a A, T % 3 E! ( `0 =L D@B a p jr m c & [ zl & [ l & , t * a A, T % 3 E! ( `0 =L D@B a p jr m c & [ zl & [ l & , t * a A, T Q # # c ! P T 5@ 0F c /P A Z Q @ < 5!]P [ EI: PI`pA p 6 @Tvq VP pC t ` h{ tC c f0 P p $ `pA D1 pC` a0 `4A ~ `@ M A0 @ ep AL7 q 7 sp `pA D ~ `@ L i0 A L7 o 7 w @ ~ ` M< 4L7 ApTt ! 0 $ H ( ! ( t ` ]) t ' kbH B ,9m & lR ` nR0 &mb NS Q T7n & < kR S lb jR m 6lR S l H B n D6n & D, 0 A l2HT` & D, 0 } J - @3 I !8M mR p l gD ,@ K B ^ DVlR c 6kB ` 4 m & D, 0 Y , n & y kB I!8M [ " !L n & D, 0 ] p 9 D $ vkB !8Me & 4 M 8 d & <FD _8 / D D, 0 HFnR mb p 9 D $ nb E M p 9 D $ &nB8 I!0 H? 4 ( L9o & 4 ] a A, c G 0 @O0 @ 0 @O0F u@ G P ~ ` M ! \ 7 4f0 5 # S _ 0 Da0 0E e {A pC` tC # E C^ # \ 7 la0 p< 0 a e E : d T ; A L7 7 A t A @ ^ fkbH B Nd & <FD _8 / D D, 0 ,um & ,K I!0 }[ D7m & < n & 4 D m & D, 0 - p 9 D $ lb8 M 9 j NS L kB [ !8MU Fkb NS h 9 D $ d & 4U I J }Z !8MU kb 0 l H B [ I!0 I! R[ I! r 4 < TD4 D p9 T m & 4 M 8 j NS R I '0 N K / !L 1 [ a !1 b L a s A, T %P c / `@ 0 @ 0 @ P c 7F : T V A ! p 4 <bP ~ ` cM DRB # Ck PD # k 4 @ pCC AQBL7 0 TbP ' XRV 5X0b` A = 6! U 2 `adP H g h L d 4 &kbH B t FlR c &lb " !L7n & D, 0 0 vkBHT 0 0X Q d kRHTP jR Fk20 b & , m & , n & , n & L kR0 R kR0 R lRHTP iR m lrHTP a 0 A, c 7F c G ~ ` 4M U TB 2bP A = 5 7 p tC j2 c & D, 0Y 0 4 TD4 I #8MED Ka & ,Km & C- jR 1 [ a a A, P T # c ! /1F = c ! $ V pC Dc @ pC p $ 1 Q pC %@2 tCd 0bP A 7! H 0IMB ~ ` 'N Q # A PT HeAT6 ! } D@4# T ! } 0 5 R` D # A ~ ` 5N 1bp A A 8 FY L7 6 A8 H j"8 , m & Flb , n & D, 0 jR NS l H B S [ I P } !0 n & C-vn & C- n & lR0 k gD ,@ K B kR ` kb ) ,8m & , ^ ! kb ,vo & D, 0 " !L8o & C- lRHTp &lRHTp lR0 r VlR p lRHTp lRHTp vlR0 r iR a a A, T A 0F c . c rK w7F` xY | V A ! RA # O A ~ `@ M0A9A 7 0b` A = 6 5 H@L7$DP ,RA$ QC EH0b` A = 6! RR J \P [ f . kb !0 n & <6k H B ] H? L6n & D, 0 Nd j2 ` & D l _, 0Y I C} I! R I! b I! [ P , @3 I PKM I C I PK I p9 0 jb 4 a @ A, H@ 0F Wt VP A ! q ` ~ ` 9M QB % 4 p( Op A"\ [ < f j2 c & D, 0 0 NT j2 ` & D fjR j20 b & , n & Vj2 ` & 4 M 8 d & t8 d & [ zl & 4 M , , S DS 1 [ d a 9 A, c H c AL7 t 2bP A 6 ! ! }0 D 5 2bp A A 71 H ! { D d Fj2 c & D, 0Y I! r P n & , m & , n & C- jR j2HT` & [ xl & C- a c A, $ c N I X j 5 0F n w a c 18 l~ !/ N + 0F ] ,- /c 0 d / 2F < gx : / # M T D T @ T @ T A% T A- T A5 T0A= T@AE TPAM T`AU TpA @ ( FkB [ P m & 0 VkB0 PKo & 0 5m & 0 6m & 0 vm & 0 m & C- kR P kR0 R kR P kR0 R lR P kR0 R kR0 R lR0 R kB ` ! b & 0 } o a ] A, ! c j w o p; 0F - z 8 /c * 2 1 7 2F@ L .K j c ! o > 2F o s ? ,RK 8R @RA HR PR XR `RA hR pR xR T d ' &kB P m & 0 6kB0 [ PKo & 0 5m & 0 6m & 0 vm & 0 m & C- kR P vkR0 R kR P kR0 R kR P kR0 R kR0 R kR0 R jB ` n & [ xl & C-5 a R A, a T A 0 @ P @ 0F c # 7F c | x7F wc 7F f c / @ " x@ P 5@ 0F` I{c ul 7F v. A c G P c / `0F c $8 `0F c *8 `0F @ @ P @ 0F0 k c 7FP A * / 3m A 0 c m 7F 9 A v ! y # C( zP p pC Q A 7 ; 0 T { tC C 7< 0 % {A A ! @ +T` 2 BT 1 4bP ! P D,\P ;b` A = 8 C A H U RA+@) ~ `@ L0A # C{ pC bpA tC- / ; B L7 B L7 # Hi L7 H1 ~ `@ dN C0b` A = 9 0 / % Z p ` a0 p APh@ R D A R 9@ A RA> tC Ps t 0b` A = 91 t dpA DM % : C L7 TP @ @ C =@ L7 0 0 0 ) T0 tC@ C >@ L7 0 0 + T0 tC@ C ?@ L7 0 @ . b , r! pC0 b0 0 B0 PBI@ % [ BL7 P JH ( 5 RAJ@ T PG T H , RAK@5-! H . R K@M T PU L7,AVX T I C # L7 L 7 h t ) A @ B { H B S { H B S zR | H B M 6| H B M | H B M 6yR | H B M | H B M ~ H B ] ~e ' C-<o & < m & S fzb NS ,vn & , Dzm & <5o ' <=m ' 4 M? L mR nb8Qo I I!0O 4 E $ d , d I" !Lv} I" !Lv I PK I" !Lv !QAM fnr8Q vm ' C-=o ' C-5} !QAM ob 4o & , [ I 4 NQ I [ I#8MED _, 0 I @3 H mR8 ] F|bHTP N yR 6oR0 r zR VoR0 r voR0 r {b S t 9 D $ T 4m ' 0 ][ C} |bHTP 9 vn ' 0 I!0 N !QAm 6nB8Q [ ! &xR }b P 9 , n ' 0 !0O] ~r :m ' <FD _8 / D D, 0 <n ' D <n ' D n ' C-xo & D, 0 zn & 6o & D, 0 :o & <Fob ` u @3 v PK} F}b0 R Nd f}b0 R 0 xo ' C- [ C n2HT` ' C- I!0O [ C }b P t 9 D $ T % 1 $ T } oq $ T Txm ' D, 0 ;n ' D n ' D, 0 | W6xb NS $ T $ T 0 m ' < PK V~b P y 8n ' , PK y PK x O! T q mB !0 n ' C- m ' C-zn ' D, 0 |m & m x H B S yR0 fy H B S z H B S yR0 6z H B S yb NS 9m ' C-un D n ' C-u PK foR p VzR oR p oRHTp mr O! d & D 7o ' C-{m ' <FD _8 / D D, 0 n ' C-;n ' D, 0 }m ' D, 0 m ' D, 0 W~e ' D, 0 } a A ! D A8 iR m jB a # Op j NS L iR E &j NS RX I! R a A, # ` M $ 7 \P A8 6j2 c & FjB NSY Q d & [ x a A, T # ` fM 7 \P A8 6j2 c & FjB NS I [ Q a A, ? # `` L t 7 \P A8 6j2 c & FjR NS iR E jB @ a A, c # z pC @d &j2 c & 4 , iR a A, c # C^ pC @d &j2 c & 4 } oq , a A, c # Y pC @d &j2 c & 4 } oQ , a p @d &j"8 } o o 2 a p @d &j"8 } oq oq 2 a p @d &j"8 } oQ oQ 2 a pC rA D @ j2 c & 4 } o 1 a A, # B \P A8 j2 c & 4 } oq 1 a A, # B \P A8 j2 c & 4 } oQ 1 a A, Q # ` M $ Z@ ` ! 6j2 ` & HFjr ;Ea & [ x a A, T P # ` gM Z@ ` ! 6j2 ` & } oq HFjr ;E a A, Q # `` L t Z@ ` ! 6j2 ` & } oQ HFjr ;E a p @d &j2 ` & [ xl & [ a p @d &j2 ` & [ vl & [ a p @d &j2 ` & [ zl & [ a p @d &j"8 } o o 2 a p @d &j"8 } oq oq 2 a p @d &j"8 } oQ oQ 2 a A, '$ V &j O-Nc S iR a A, T ' V ` @ jr O! d & [ vl & L a A, 't V &j OI M d & t8 d & [ z a ; A, c " X H # E C D ~ `@ K PC # CP H d vjR fj20 b & C- Fj2HT` & , , } o o 2 a A, c l] ` [ z % ~ u ) /l] ` X y B :k , 1) } / vL b y 2V / j }{ jz n U t f /3 1] Y yL ok 2 n t f /c n a i ; v ? z # n a X (O 8 - t )N a $ /` j <I (O 2V & d ? 1 * 0l aL x y & d ? U n J f / f+ $l + ? n J f c z= e ^ iY s; qZ ? j % z= e XE uo w { ? ] )x y j C uo 0V ? ? 0R # 0PC 4PE 8PG <P # <PK @PM DPO HPQ L0b` A l 0 T A8 & jB0 b n & C- 0 &kB0 P o & [ xl & 0 vkR P kR P j20 b & C-5m & 0 un & C- m & 0 n & C-5n & 0 uo & C- n & C-5o & 0 , kB PK a A, c / X lZ ! y %x - / i lZ 2V ? o ln 1 [ 9 j o ? U >8 / { 8 *? < >8 /c % X y b / @ X j ? '* b % X XE p #* ? ~ / {? _ K 2V l " ? :[ - -m C en `K l " ? U i x : /x / w i x : /c =Z +) C J : ? h k =Z +) X c] x X ) ? = u <z u / c] x 0V i #k ? hk ! ? < f = i #k ? U 3 g 9; 8 p : ? 3 c s n* 0 ? n * s n* X 0 x 8 ? 9 , c . ~ 0V ? ? # P T I H T H H T H H TSI H T H H T H H ` 6L4A @ / kB I M I m I P ] PKm & C- % , m & C- kB0 I CM I Cm[ P 0 0 0 0 jB n & [ xl & 0 : a / A, c ` / u: = p ( 2\ = 2 ` X | , # t 5+ 5 7 k b 2 M Z X | , 3V! j : 9 x 2r |= 3 9_ # j : 9 U 3 i b 2 h 9 ( 6+ c (, 9 3 i b 2c - p> L 7+ ! k 3 <z 2- p> X c y 1 ) y ` h 2f ; > 3V < H ;O . q / t * " < H U a p* a /u t K : " R H a p* a /c l 8 y { " fz / l X L 0y ) 1 2L ~ &H 3- l L 0y ) 1V kL / 6H K l hn 1y 4 kL / 6H U 8 kI 4 Z $l A x % >H 8 kI c >L k : ! * aH 09 a >L k XE< 4 a & w >H I l z i D< 4 a 1V ym qX 8H y^ i ) a f u D a ym qX 8H U t y = ' o f I q =x m ,H t y = c ? EERA XR `R hR pRA xR Tp \R T A f dP H T R T A n tP H p 8 kB I M I m I [ I P ] I I P } I [ I P I P [ PKm & C- kB0 [ PKo & 0 kR P lR P 6k20 b & 0 5n & C-um & 0 n & C- m & 0 5o & C-un & [ xj & [ j & C-uo & [ 8k & 0 0 kB a A, c } x x ) . z ? 2 } x X X , !# 6/ %K d u 22k b] $H X , !3V z ` ` 1 ) ? 2h w 1 ! z ` ` U a ` 28 |X 4 + + J 9 a ` 2c j Z _ e( , j . 2 j Z X % a = nX xz / , 3 % 2V ; H <* a / > t " ; H U * a s 2 g << # x ) - * a s 2c < h > . 1 ?H { < h X ~{ !a ( hH 9 ? y ~{ !1V ) jH c to ( : 8J ! ) jH U ( , 8J ) "h z ! l/ fH ( , c *~ a w 5/ x =H y 1^ b *~ a X z8 - ll /H , 3 0K z8 - 1V ? ? %=R PR XRA `R hR pR D @y T@A ` TP H T@ R T A h dP H j 1 kB I M I m I I P ][ I P } PKm & C- kB0 PKo & 0 kR P kR P k20 b & 0 5n & C-um & 0 n & C- m & 0 5o & C-un & [ xj & [ j & C-uo & [ 8k & 0 0 kB a s A, C c X H c & I n m XE ? O 3VA t@ t@ c ! O ?! l V BB l L70 P &0 @ A @ j2 c & D, 0Y H P B jBH 5 Y I H 4F P @3 &0 N W 09 / !Lvj 8 ! !L } o a s A, ) $ 3 T # $ # c x } ?x X * ( * c $ C ?$ X U A c 7VA t@ t@ s 2 Kr 6 ! ! D ~ ` K ! A D ~ ` K J AT d . a @* $ p , kB ! o & C [ I#8MED 8 ! i & t, k ?8T y}[ I$= 0 HD4 I! r[ I! I! b I PKM I! R I PKm "= 0 } o a g A, & c x } ?x X * ( * c $ C ?$ X U A c 7VA t@ t@ l ~ ` K ! D ~ ` K ! D D IV *P h J L A2 % FkB [ ! o & C I#8MED 8 [ 0 ,D^ k2 ` & D j2HGd & C- jR jR jR vkR0 R jR kR0 R kR0 R jR m iR 6kBHT a V A, $ c ? z ? U X ( ? c 0V A U ? ? X u] # 1b` A z / # 1b` A z / 5 Q $gB *( .( 2 ` ! 6kB ! n & S^ k2H b & C- 0 Q P , , , } oq t ,&kBHT [ I H 8 a = A, T UVd R T 3 T # $ # # y 1b` A A+ 7 W S 8 C 5 r :\ @ k NS R j NS L D /= 0! DD , /= 0 0 H 8 d & [ zl & + i & , , !1 ,@ 0 $Q y ( &j a 4 A, $ c ? ? U X ? ? ? U\ u] # G 1b` A z / P q R X e j NS R j NS L 0 I I J }Z ! b & ,Km & S a A, c X 1 @ 0 @ 0V H E XE ! G 1V H 9 H # H U ? c & I k X " 2V "H ( "H U ? l 7 \ R l ! T p 2 E\ 2 dh0 pu pC t v 5\2 A ! DP % 2bp A m 0 Z T I ~ `@ 4L W |RM t & P VkbH B Nd & <FD _8 _ D D, 0 , n & D, 0 ,uo & D, 0 t l H B I H? 8 [ I P M !0Om & C-vm & C- m & C-vn & D\ m & vkB [ !0Oo & C- n & D\ o & < lb ( ,Dn & D\ qM5m & D lR0 b k20 b & Fk gD !LN K B p 9 DE t k gD !LN K B } I : a A ! D A8 jB I ~: a A ! D A8 jB I ~: a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a i < j 4 D3a ! a A, c f e9 {Y i ^ 3H /| - f e9 % A8 iR j20 a A, c yz e K C e gY : ? Y . yz e K % A8 iR j20 a f A, ) # c ? X H 1V "H ( "H R\ 2 $ 5 ; (h0 $A5O E U H T D 7( L7$B A8 ) vj2 c & P n & D, 0 ! d & C- R Q } $o ` $o ` X &0 N W 09 / !L jRH 5 j gD !LN K B !Q m & [ xl & D 9 a A, , 3 T # $ # # c ? X H 1V "H ( "H ,1 C s 2 2 < C 0 4\ 2 0H ; Dh0 AA]JT P 0IMA pC t " A i { A $ Y DvkbH B T j I L , 4 M6kB I! [ $= 0 HD4 j"I L , 4 M : Q ,@d & D R ! d & C- 0 /= 0 kBHT Q 0 /= 0 k20 b & C-5m & , K Lfk gD !LN K B p 9 DE T jR a X A, $ # T c 7 0V ` X $ ` H R\ 2 $ 5 ; (h0 $A5O E U H T D 7( L7$B A8 ) vj2 c & P n & D, 0 ! d & C- } $oq ` $oq ` R Q X &0 N W 09 / !L j gD !LN K B qM oq !Q m & D 9 1 [ d a J A, # c > U B 4V C 0 R\ 2 $ 5 ; (h0 $A5O E U H T D 7( L7$B A8 ) vj2 c & P n & D, 0 ! d & C- R I A I Q Q X &0 N W 09 / !L jRH 5 j gD !LN K B [ I !Q m & D 9 a k A, 3 T # $ # # c > U B 4V C 0 ,1 C s 2 2 < C 0 4\ 2 0H ; Dh0 AA]JT P 0IMA pC t " A vkbH B Nd & D, 0 D /= 0! DD FkRH 5 j"I L , 4 M } @oQ ` / D j"I L , 4 M !Q n & T&kBH 5 P o & , K L k H L , Q X I PKM "= 0 h 9 DE d & <FD _8 _ D D, 0 oQ @oQ ` / D a ? A, T %@ 0 @ 0 @ 0 3 aP 9A 3 aP 9A 1bP A m / ` # K @D 9 $8 )! @ `dv ` ?8[! % H d jB0 r P n & [ xJ : vj2HT` & , K LH# d & C-Vj jR kR j H L , d & , fj ( a ( A, P # E ZA V !8 v 8 v p fjr 8 a & iR j2 ` & D VjB I : BX I : Bl a 6 A, T %@ 0 @ 0 @ 0 3 aP 9A 3 aP 9A # * H d A (*Pd q]" 1( V RB jB0 b[ P } o , /= 0 I$= 0 HD4 ! b & ,Km & [ 8+ a & [ 8+ !1 HY a E, T %@ 0 @ 0 @ 0 @!0F P4 U ? # # 3 aP 9A 3 aP 9A # * H d A A `I*pd ]" n ` ! @ x ? a Y ! & 1( Fp F ? A0 % 9 * " Y b aI e ` ? ] c l ! % :b A ; j2 c & D, 0Y I!0O] $= 0 HD4 k D- O ! R j I L , 4 M j20 b & , m & , K L , , , $o , } o , /= 0Y I PK &0 N W 09 / !L k2I L , 4 M5n & , 4 /= 0 4o , a ) A, c # E o C PH T D T H H)A H @ FjB0 R[ P m & C- jB0 P n & C- fj2HT` & , } o a ! T @ @ iR k jR o jR s6j2 ` & , a ! T @ @ iR k jR o jR s6j2 ` & , a A, . T %@ 0V # c A q m X ? 3V U " " 3 Q 9q 3 Q 9q # A ! 6 DS 09b A .A FA 6 &d N P 0 D`p 6 pC0 tCB e QF G` l 7p T p tC 78 A p h0 1 0 pC@ fp 6 pC` h0 0 QPE pC h0 P C A8 f kbH B 5 p 9 DE t jr c & <FD _8 _ D D, 0 t vl H B I!0 " !L n & D, 0 lbH 5 FlRHT` l H B } , 8 2Y 0 x 9 DE t xm & D qM kR S kR S k2 ` & D &lR S kbH 5 , 0 h 9 DE d & K z j2\Nd & <FD _8 _ D D, 0 ,fl gD !LN K B [ '0 N W 09 / !L7 a P A, T %@ 0V A U ? ? 3 Q 9q 3 Q 9q # ( " l a b ` !H m 2 T p t 0 l g Ax ` # j2 c & D, 0 R: . qMFkrH B n & 0 6k gD !LN K B Sn & < } / / / / X Cm & <FD _8 _ D D, 0Y I! t a E A, T %@ 0V # 3 Q 9q 3 Q 9q # H A ! 6" Q 9b A .A FA 6 &d N P pC D @ j2 c & D, 0Y R: . kBH 5 Q , jB\N I! Qm I J: I J: Y &0 N W 09 / !LFjr b & DfjB !1 ! a 9 A, c ` ` `0V ? E X U X & 0 0$P 5(ZA P u<X A8 jB0 r[ P n & C- fjB ` ! Qo & 0 0 4 n & 0 5m & 0 m & tDvj20 b & tDum & iR k jR oVjBHGT a G A, c ` ` `0V ? e X u X & 0 0$P 5(ZA P u<X 0l@P T!]) a @ & jB0 r I R: .S PKn & tD @3 kBHG o & C- 0 4 n & 0 5m & 0 m & tD j20 b & tDum & Y @3 I R: I R: Y I R: .S I 4C} ! Q a A, E $ c A X T # c 7V ` X y y y U i q i q X x x U 89 s 89 s 89 X [ Z [ Z [ U ( 2 ( 2 ( X 2 ? $ ( ` L 2 V pC C\ 2bP A .AU ! = D ~ ` # K LRE! L7 P % XPD \PF `PH dPJ" RK 1 OuA 7`e d A kbH B X H? 4Sn & D vm & < qM ) p 9 DE d j2 c & D\ k H B PKo & D, 0 0 Q 0 0 I! r[ I! I! I PKm I PK I!QA I PKM[ &0 N W 09 / !LVlR0 R FlR0 R iR m flR P 6lR P l H B a A ! ;b D A8 iR m jB a # p &j NS R iR E j NS L ,5 a A, 4 $ c 7V XE ! A c / / U ` `@ 0V : c q X 0/ 0/ 7 \ 2 0,gp 8H= 7 L7 MP 59P #% RB # H A 7< \ 2 Qg0 dh0 T t b # E A L7 1 }h0 A @B VkB ! R jB [ D qM p 9 DE d k gD !LN K B '0 N W 09 / !L6~ j2 c & <FD _8 _ D D, 0 qM k H B } P o & D, 0 qM m & 0 &k2HT` & 0 um & D, 0 I!0O " !Lvo & H3 kR P iR m fkb 4 a _ A, T c / / U ` `@ 0V o o o o o@ 0 @ 0V _ ~! X ~ ~ w Vp@ H ~ ` #~K U 0bP A * 7< qA> p 7PNpA> pC tCD * j2 c & D, 0 ! d & D\SM " !L n & 0 vj2HT` & 4 M 8 I! b P , 4 TD4 h 9 DE d & < } oQ 0 Vk gD !LN K B S [ PK a A, c ") X H 3o / ? < vh b ") X # B d jB I : P a ! A, T c # 7 ~ ~# 7 ~ ~# 7Va } {, ' ` # C 0H d iR m Vj2 ` & , PK a A, T c # 7 ~ ~# 7 ~ ~# ' ~ ` #xK r :\ @ Fj NS R iR E j NS L , a A, B $ c ( (P9 U X ` c G 0 @ 0VA {d G {d G {c - w b z - w b z - 7V 9<{> 9<{> 9<{c ;N {;N {;N 7V j-~o j-~o j-~c ? ? ? V A ! ;" SM # A3bP A . 7 p 8H q p t ! " 0I H H H T H @eAL7 s 8li _P A8 9 fkbH B $ # PKn & D\ d kB0 PKo & D, 0 0 Q 0 0 X I! b I! I C I! r I PK] H? L @3X &0 N W 09 / !L kR P iR m lR0 R lR0 R fl2\Nd & D 5o & S a A ! ; D A8 iR m jB a # p &j NS R iR E j NS L ,5 a A, , $ c ( ( U 0 @ 0V $ c c : P9 U / 0V 88 88 8 V A ! ; r 8 pC 80 0hP ! 40bP A . T ! =r 7( \ 2 Ph0 A= } ` # J P0 U |A9 t D 9 fk gD !LN K B S n & D, 0 _ I H? L } !0Oo & < k H B M ! d & D\SM " !L m & D, 0 0X I! R P 0 , , # 4 h 9 DE d & D iR m j 4S^ kB I H 8 [ ! R a M A, T c G 0 7 ~ ` #xK RA # H A P } ` # J ~ ` &6K A ! a 3 4h0 A @ ! jbH B RY 8 TD4 Sn & ,Km & C-fjR j NS R jR jR jR j gD !LN K B } oQ 0 jB 1 [ c !1 a A, c ") X H 3o / ? < vh b ") X # F B d jB I : P a A, T c # 7 ~ ~# 7 ~ ~# # B d iR m jB P a A, T c # 7 ~ ~# 7 ~ ~# ' ~ ` #lK r :\ @ Fj NS R iR E j NS L , a A, G $ c U / 0 @ 0V ? X $ c G 0V A ! X 8 U X U ( V p A 7 \ 2 Dh0 @8 pC V @IB ~ ` # K p 3 e RF C } ` # J d2 \ R tC! tC% P l gD !LN K B ! R vk _, 0 m & D, 0 NT 6lR c l H B ! d lb t l H B [ I!Q } I P M[ !0 n & D\Sn & < p 9 DE d &kbH 5 0X Q d kbH 5 I C H? L @3 I '0 N W 09 / !L7m & <FD _8 _ D D, 0 p 9 DE t !1 ! a L A, c c : U B 4V > g V` A ! ?b 2 5 R % TF E 0 `,h0 A ! ? DPA$ V # j2 c & C- Nd & T jBH 5 P n & D, 0 I! R P , ( K Myo & j gD !LN K B $ K M } oQ R a A, c #) X H 3o / 0 ? < vh b #) X # F B d jB I : P a 2 A, c ? X # 0 cp 6H @ Vj2 c & D\ ! b & 4Fn & [ x a # A, c # p l d 6j2 c & D\ /Nc jB I : a ! A, c c { # H 0 cpA>H @ Vj2 c & D\ I ! b & t8 a A, c ~ # p d 6j2 c & D\ $ K M } oQ , a A, $ c A m XE A # C ^ 1 `p 6H @ Vj2 c & fjBH 5 I#8MED 8 I J } ! a A, c 7VA t@ t@ 5 P p D f Fj ?8T } o a A ! ;2 D A8 iR m jB a 8 A, c 0 0 01V 0V X U X+` # E G T`H ` # E A ! m 0l@8 H @ jR jR jB0 0 4o 0X Q , iR jB0 R a X A, T %@ 0V # 3 Q 9q # F A ! D0b` A ,! ` #<K tA4 1 D T H `@ ;K @L4 n` 4 np ` Y" 2 & &kbH B RY P n & C- 8 TD4 Sn & ,Km & C-fjR jR j NS ,Dn & , n & , o & [ 8{ b & <FD _8 _ D D, 0 ! b & [ xl & ,K] 1 [ c a % A, c Z Z Z C j j P Z Z ? j j j Z Z Z % RA RE R jR FjB0 b PKm & C- 0X Q } o a - A, c Z Z Z C j j P Z Z ? j j j Z Z Z 5 R !e Q ! R ! $ A8 jR 6j20 b & C- vjB0 r P n & 0 Vj2HT` & [ xl & [ !1 s a 5 A, c X " Gl V0 Z D f Vj O-Nc Nd & j ?8T @3 6j O-Nc iR jR a * A, $ c U ( G V0 Z f vj"8 @3 4 m & L } oq oq $ SH3 $ L9 a " A, c # H G V@h ^ A8 Fj OI M9n & Y 4 R iR E jR E &jB H?% N4 a s A, . $ c A X ? c >i ( ^ O z- >i (P9 U 8/ 8 / 8/ @ 0 @\: @ 0V c ` U M M V A ! ; 3 ,dp 8 p A 7 L7 0 0 A ! ; D0b` A A . % 0b` A A . <E<RE d ' j2 c & D, 0 o & D, 0 qM j2H b & L 0 Q , I! !0 m & , n & , n & <FD _8 _ D D, 0 I '0 N W 09 / !L a - A, T c 7V 7 ~ ` #+K E TB r :\ @ vj NS R Fj2 He & 0 iR E &j NS L , 1 [ a a l A, M c z [ !> 0 i ! ? y c n z [ X _ {K o- ? u [ = - r _ {K 0V g c ? ? : ) : g c ? U 5\ } w = ] % _ p p ? 5\ } c n . + ? K q n X ? u R $R ,R 4RA <R jB0 R P m & 0 jB P n & 0 jB ` n & [ xl & C- a \ A, v $ c U A c ( ( U p+ 0V ; ; ;c U r , r0 @ 0V $ c ? ?P9 U ` `@ 0V p( X ( c ? ?P9 U ( 0V sI % k8 / \ sI X L 9 d L 9 d L 9 U u 0 m \ - s / u 0VA ' 0 $x / @ ' XE 8h _ 8h _ U ^ { | 5 x/ ^ 0VA 4 I ` $I / $ @ 4 X : x \ . s 5 : x c { ; { ; { G\: @ 0V } Q9 U X / * / / * c 3. 7 r {3. 7 r {3. 7V l j M / 6) l X z M / 7y 9 z c / / o / / U ( ( ( XE | _ | _ U ( ( ( X T c / / U x { x { x X 8 / * c *{ *{ 7Vq & i m / p & X % ] % ] % U 9 9 9 X g o / i| g c _ / ) _ / U N N XE % Y _ % Y _ % U + ` t 1 J 8/ + 0Vq v kw v kw vc )H o/ = B )H o/ U K \ t K \ t K X : { x/ : c 3/ b ; B( 3/ U x k x k x X X : % X : % X : U | + | + | X , , U , , , X r }, r }, r WC h } A e ( A( tC( A 70 @ \B * t ) A 7P \B + t * A V \X -h# H p 8l ^P [E % R A ! ; DPI U R A ! ; DPE # T R .@ T PE H R /@- T PM H RS A< 7 > p h0 0 ` FP p p L7 IPl 9 L7 C0 '1 pC` h0 ` AP l CLD H U R =@ T PI H R > pC8 \ R Np 7 < `m YD !! H " U R H@ T@ PI H & R I@= T PQ \ pC@ h0 @`A ] ET R K@ T PE H 2 R L@- T@ PM H 6 R M@M T PU 7` d P o O! yn & t,vz gD !LN K B S xR z gD !LN K B S yR 6| gD !LN K B S &yR }b4 Q Q 0 t 9 DE T Y 0 m t 9 DE T ) 0 4m ' C- n ' 0 5m[ I P CM }b P ,6n 'EC {m & D\ I 0 4o ' <=m ' C- yR ybH 5 i 0 u @3X I D M C] zR f}b P a 0 5n ' , ][ I PK [ PKM |b0 R ! ,wn ' C-5 ! r }b0 R M to ' i @3 5o ' D :n &CC n H B S o H B S ~b P a U um ' 0 PK] oR4 Q |R4 F~b P 0 vo '` 0 N W 09 / !Lu ;m ' D\ N I 4CM I P I" !LuN I [ I P I I P [ I 4C I!Q I" !Lu I H 8 [ I" !Lu I 4C !QAm ~b P } m & 6n ' 0 } PKm m O! [ PKm oB8Q C} ~b P 0 n ' 5 0 = @3 E @3 M $ T U $ T @3 ,@3 8 2 I I" !L [ 0 q $ T 0 7m ' 0 |o ' 0 |n ' C- [ PK} ~b0 R qM5n & D yR yR |bH 5 $ T 7o ' C-9m ' 0 5^[ I PKn C yR0 yR0 iR m f|RHT |R n"8 8m & m ' <zo & <FD _8 _ D D, 0 xn & 0 n & < t 9 DE T t 9 DE T xRHT` FnRH 5 nB I! I! [ 0 t 9 DE T t 9 DE T 1 0 < a A ! ;R D A8 iR m jB a # H p &j NS R iR E j NS L ,5 a I A, $ c A X ( c ` y ` P9 U ^ ` ^ ` X ? # T c / / U X x ) x c A 0V ; f / cl X & / j ` & c iK {iK {iK 7V1 % | h ] a/ w 0 % X ! w: / p c ! c . 3 , > h . 8 U ( 0V ? X ` ` ` U p[ m) + "/ p[ @ 0V X / c = s = s =7V * 8 / * X : : U p & i m / 0Va v {&o g v {&o g v {c /o 8~/o 8~/o 7V g o / i| X _ / ) c : ~h: ~h: 7V $ c ? ?P9 U 8 0V * 8 */ < XE / < ] / < ] / U # P B= H {/ # 0VA z G z G zc / j P i B q / U ( 2 ( 2 ( XEZ im / = , BZ c } z } z } 7V s : s : s# # : \ Rs 2 P \ Rv` 0 L7 EP t A0 P L7 BP pCp bp 8 A ! ;r (T RA @ T PE H | RA - T zA9l=A RB(HI T PT E PF kP dp 8 t - pCp h0 P|Au V P *H 5 R *@ T PG T H R +@5 T PO T H dp 8HY % : L7 ZP u T PC T H u R .@% T PK T H R / p T h0 @ A C 0 A @ &nb 9 I ! oRHT xR &zR0 FzR0 n O! U @3 E qM&m20 b ' 0 9m ' 0 m ' 0 9n & 6nR0 R xR VnR0 R xR vnR0 R fm gD !LN K B S_ '0 N W 09 / !L m & <FD _8 _ D D, 0 a N o gD !LN K B SM fy gD !LN K B SM xR z gD !LN K B SM nR0 b xR nR0 b yR 6ybH 5 t 9 DE T m 0 e } 0 0 u 0 5 SH3 vm H B So " !L=n & D, 0 0 LyM 6zR VzR vzR zR xR0 zRHT &xR0 nR ` m2 c & D\S] Q 0 0 ! } oq ) 1 a Nd & 0 6m ' <zn & 0 m & 0 6n & 0 n & < e o H B SM FmRH 5 vy H B SM oR mRH 5 yR0 xR0 z H B SM Vm2 ` & 0 $ T 0 0 i q y < a A ! ;" D A8 iR m jB a # p &j NS R iR E j NS L ,5 a C, $ c A X . ( . c ( ( P9 U / 0V X ? c ? ? U s < s@ 0V / X U ` j { + `0V ; v k ; v k ; vc = 7 s z = 7 s z = 7V! j-{2 ' j-{2 ' j-{c 8 j-~8 j-~8 G 0V1 0 U ? @ 0V 8~ 8~ 8~c F o F o 6V d z K d z K d zc : m-{: m-{: 7V j-~j j-~j j-~3 T # $ 3 # T %P $ c X u] 5V 7 a ! : \ 2 L7 l B t P A tC pC dp 8 pC h0 ` DP n P A H \ tA9X A H A H q T P (H s T PI Ts 0 \ RT p 7 R DU} % QA % T PD H u R` :K T J q T J e T K Y0PQ ) 0 B/ 7 \ rE U ( 1 + 2 @ F9 t ; '` C- 0 :L7 `0y ` 1 B . tC -f \ Y ! j @a < Z ( _ ~ * r 1 A p \P [A! 7D$ { lbH B 4 /= 0 u 0 0 0 0oq 3 tM x H L , &mR S 6lBH 5 '0 N W 09 / !L n & <FD _8 _ D D, 0 I 4 /= 0 a ! vyR Fl2 ` & <FD _8 _ D D, 0 4 O n & <FD _8 _ D D, 0 p 9 DE x gD !LN K B S #8MED _, 0 vz gD !LN K B SM mR0 b mR0 b mR0 b nR0 b 6nR0 b n24 a ' T nR s o m 5 [ " !L n ' 0 ;m & D, 0 y 0 i 0 , /= 0Y I!Q I H? 4Sn & D, 0 ] n H B S [ " !L n ' S^ L /= 0! DDS [ I P I P " !L}o & <Fz _, 0 5} 9 @ 2\ lbH 5 M qM m ' <9n & D x2I L , 4 Mzm & 0 uo & C-9m ' , K LH# iR m nR p m NS # D x Q ` p D /= 0! DD Y Nt mR ` x Q ` p nR ` 6y H B SM &nR ` lB I! d !0Oo & D\ n ' D, 0 tn ' C-zo & 0 FnR p nbH 5 0 0 0oq tM oR zR0 Vy 2 N3 !1 ua ., a 8 A, T c / / : U ` X `A 0 G ~ ` #,K 0bP A -q 7 FqA> p d vj2 c & 4 M ,En & D, 0 ! d & <FD _8 _ D D, 0Y Q } oQ 8 TD4 Sn & ,Km & , a A, # # E 1 P A d Fj2 c & D, 0Y ! d & <FD _8 _ D D, 0 Q } o o 2 a A, $ # T # E 1 P A d Fj2 c & D, 0Y ! d & <FD _8 _ D D, 0 I I - Q a A, # # E 1 P A d Fj2 c & D, 0Y ! d & <FD _8 _ D D, 0 Q } oQ oQ 2 a G, B $ c U ( 0V X ? # T c ! A ! 8 U ? ? XE ! ? C T @ 0V T %@ 0V ( q V E DZD G P ; `Lcp 8 k . A , - n :4( ) q " Aj 2 n *Pv (b Ajh .! r ` A@ " 1( N b $n <(! ` q F ? A0 % : 1( N =@ b @ (b c b do ` ! BF ? A0 % ` ! AF ? A0 % ` ! #f F ? A0 & d !]" 18 EH a 1a" n q B Du ` !P 0 e ` <H ` b v 0 @ Y B dv @ F ? A0 % R @ (b e b $w ` ! @F ? A0 & ` ]" ] b ]B B v ` ! q B D| ` ! 0 e ! b ( 8 B z ` F ? A0 % B P | F ? A0 4& AF ? A0 % ` 0 ) u . )s ` A 4 n ` Ia" T 4 nX ! n } ! mbH 5 $ Q y ,=o & D 8m ' < n & D } D s I" !L ] I!Q !Q o & H3 5M I!0O ! d & < n & C- n m l>] 8 /D A n ' [ H _ I # 4 , t & ) O[ I!0O I!0 m I!0 ! r mb t 9 DE T - t 9 DE T Q t 9 DE T ) D t & ) O HS a I!0 ] ! mb } t 9 DE T ,xo & , [ I'0 N W 09 / !Lu I'0 N W 09 / !Lu "H ` ' + H I J m 4 M I!Q I 4C [ I 4C I H 8 [ I [ ! mR n mk t t} Fob , n & ,K I'0 N W 09 / !L M[ H 8 tm ' D |m & S^ ) @3 % $ , ] 8 t & ) O Hc & < mR4 q ob Nd kbH 5 ,:n & qMun & < n ' D =m & C-ym ' D\S I I - I 4 I" D ob 9 Nt &kB ` I" 4 n ' , [ ! d ob qMvn & < n ' , D n ' , [ "0 ~ 2 ` l H B SM x mk t um kB [ I" !L5 ! xb M , m & D\ m ! yb E ,|o ' 0 n H B S] Vn H B S] o H B S] oR0 6x H B S] Vy m h>m ' D, 0 uo & ,K m ' C-;o ' + H > a T A, % $ c U " "T c f h 8 U p ? 0Vq] u U C ! ? V BB L70 P &0 @ A @ j2 c & D, 0 " !L5m & D\ 6k2 ` & H3 P # 4 h 9 DE d & [ vl & S a A, $ c 0Vq] u 5 P p f 6j2H b & 0 iR m Fj _, 0 a x A, T %@ 0 0V ~ X ~ ~ c ! _ ~! 3 Q 9Q # A ! ? D2 # J3 @( A\ RC 7,RpA> pCC! E Au pC t @9 V@ pC # H* I d q P2 = 6kbH B Nd & D, 0 NT lR c kB8Q ! d jB !0 n & D\Sn & < qM X '0 N W 09 / !Lvo & <um & D\ qM5m & qM m & < n & , , qM5o & [ j & <FD _8 _ D D, 0Y I H t8 I I . ! a R A, c ? m X " B 0 @ 0 # F F A ~ ` J % zA4 A ! 3 $ 5 ; ,h0 `$ 1 A8 j2 c & H P B jBH 5 ! !Lfj2HT` & 4Fn & ,Km & , n & j gD !LN K B , iR jB a R A, c ? m X " B 0 @ 0 # F F A ~ ` J % zA4 A ! 3 $ 5 ; ,h0 `$ 1 A8 j2 c & H P B jBH 5 ! !Lfj2HT` & 4Fn & ,Km & , n & j gD !LN K B , iR jB a V A, c ? m X " B 0 @ 0 # F F A ~ ` J % zA4 A ! 3 $ 5 ; ,h0 `$ 1 A8 j2 c & H P B jBH 5 ! !Lfj2HT` & 4Fn & ,Km & , n & j gD !LN K B , iR jB !1 A 9 a X A, $ c U ( 0V X w V`h 7 \ 2 @ `p 8H ~ ` # J< 1b` A A + , 7 L7 C0 P Q B8 " j2 c & ! !L jBH 5 4 m & D, 0 SH3 j2HT` & , n & jB s I! &0 N W 09 / !L jRH 5 iR m jR m k _, 0 a X A, $ c U ( 0V X w V`h 7 \ 2 @ `p 8H ~ ` # J< 1b` A A + , 7 L7 C0 P Q B8 " j2 c & ! !L jBH 5 4 m & D, 0 SH3 j2HT` & , n & jB s I! &0 N W 09 / !L jRH 5 iR m jR m k _, 0 a X A, $ c U ( 0V X w V`h 7 \ 2 @ `p 8H ~ ` # J< 1b` A A + , 7 L7 C0 P Q B8 " j2 c & ! !L jBH 5 4 m & D, 0 SH3 j2HT` & , n & jB s I! &0 N W 09 / !L jRH 5 iR m jR m k _, 0 a @ A, c ; P> U : P> # F A ~ ` & J % z : A ! ab 3 $ 5 ; ,h0 `$ 1 A8 j2 c & .>Sd & qM kbH B I! R I! [ 4 h 9 DE d & DSn & [ zl & , a A, T % 3 Q 9Q # ( D@ : a p j E .>S iR E 6jB a A, T % 3 Q 9Q # ( D@ : a p j E .>S iR E 6jB a A, j c X 1 0V H E X & I k &A 0V ? U X # ?" 3V # " ? # U ? $ # l V pC C l p eA2 Lh0 ` `: @]D @ eTZA N 'D N7 A ! 0 Q 8 vkbH B Nd & 0 TD4 H3 k H B S [ 4 n & !0Om & < qM qM /Nc k 8 X H P B jBH 5 " !Lvm & 0 k2HT` & C- j2 ` & <FD _8 _ D D, 0 J ] } o p 9 DE T a A, j c X 1 0V H E X & I k &A 0V ? U X # ?" 3V # " ? # U ? $ # l V pC C l p eA2 Lh0 ` `: @]D @ eTZA N 'D N7 A ! 0 Q 8 vkbH B Nd & 0 TD4 H3 k H B S [ 4 n & !0Om & < qM qM /Nc k 8 X H P B jBH 5 " !Lvm & 0 k2HT` & C- j2 ` & <FD _8 _ D D, 0 J ] } o p 9 DE T a A, j c X 1 0V H E X & I k &A 0V ? U X # ?" 3V # " ? # U ? $ # l V pC C l p eA2 Lh0 ` `: @]D @ eTZA N 'D N7 A ! 0 Q 8 vkbH B Nd & 0 TD4 H3 k H B S [ 4 n & !0Om & < qM qM /Nc k 8 X H P B jBH 5 " !Lvm & 0 k2HT` & C- j2 ` & <FD _8 _ D D, 0 J ] } o p 9 DE T a A, : $ c U 0 0V " P9 U e \ p e@ 0V C ? X u] 5V! " ? X '( c V pC p U=2 Hh0 \ \: 0YD 0 ePZ a c 7 fkbH B Nd & T l H B S 4 n & !0Om & < qM qM " !L6m & D\ 0 Q H? L @3X &0 N W 09 / !Lvk 4S^ iR m jr m{ c & Sn & <FD _8 _ D D, 0 ; a A, : $ c U 0 0V " P9 U e \ p e@ 0V C ? X u] 5V! " ? X '( c V pC p U=2 Hh0 \ \: 0YD 0 ePZ a c 7 fkbH B Nd & T l H B S 4 n & !0Om & < qM qM " !L6m & D\ 0 Q H? L @3X &0 N W 09 / !Lvk 4S^ iR m jr m{ c & Sn & <FD _8 _ D D, 0 ; a A, : $ c U 0 0V " P9 U e \ p e@ 0V C ? X u] 5V! " ? X '( c V pC p U=2 Hh0 \ \: 0YD 0 ePZ a c 7 fkbH B Nd & T l H B S 4 n & !0Om & < qM qM " !L6m & D\ 0 Q H? L @3X &0 N W 09 / !Lvk 4S^ iR m jr m{ c & Sn & <FD _8 _ D D, 0 ; a y A, " c U ~ 7 0V ` X f ` f c c ( X X X : :$ # V pC C p eA2 Lh0 ` `: @]D @ eTZA N ' N7 A ! 2 Q 9 vkbH B Nd & 4 M? L NT l K !0 m & < qM , K M ] I! '0 N W 09 / !Lvn & < jBH 5 " !L m & 0 k2HT` & D, 0 X 4 @3 @3 h 9 DE d & DSn & [ zl & + w= a A, T % 3 Q 9a # ( D@ 8 a p iR E jr m{ c & + w= j & , a A, T % 3 Q 9a # ( D@ 8 a p iR E jr m{ c & + w= j & , a O A, c ? X "H ( 1 @ 0 # E E `H D T H T D T H 7DNp 6 pC t E vjB0 b[ P m & C- kBH 5Y P n & D j2 ` & D Vj20 b & <6kbH B h 9 DE d & , } o a W A, T %@ 0V 6 3 Q 9q # A ! 1bp *! C H H `` J D )! . n` m n $4 n p ' k2 c & C- jB0 [ ! d & C- qMum & <5m & 0 fkbH B Nd & ,Km & , m & C- jR Fj RL (Vk gD !LN K B , iR jR a F A, % c X H c # Fq 6l VP A . 6 N vj2 ` & [ 8{ b & C j2 ` & D VjB I H? 8 I : I :. a A, $ c U z z X # T c 8 U o o0V ; X , , , U ? 0V R R Rc " X x } $ c p ? p ? U ( ? 0V N N Nc ( ( U ? @ 0V ( X ` $ c u] X U Vp e d:b` A z /1 # pB9 E 1 xfp 8H 7 `p p 2 `p 8 p S `p 8H 7 g g E 7 l 0 \ t qD9 E pCp h0 p@A VC PL pCS hp 8 7 Q [ tC V n c ! 4 @ d !P 4 nP ` j q H * J D ( * ! 2 ( a+ r 8C [ lA/( 4Mj ( )! " # 0 q ` # B vD q !- 7 p ( pC h0 @ ; U pA9lA 7 $ 7$& d Fz2H b ' tD6yR nbH 5 0 Ly m H B Sm xR0 xR0 fo _, 0 5N[ I" !L [ CM x _, 0 5 I P _ I 4 I!0Om[ ! d & <5n & <uo & H3 5 I!0Oo P , , # 4 $ T 0 $ T $ T $ T $ T @3 0 Ly vzb0 R ] 0 0 0 e a I" !L5 [ I F I!0 I'0 N W 09 / !Lum I'0 N W 09 / !Lu I!Q ^ I ~ ! T $ T ) $ T $ T $ L y @3 ) NT 6o O! I'0 N W 09 / !L m I!0 I'0 N W 09 / !L [ D=o ' D\ I I P ~[ I!Q H 8 4o ' D |n & <vlbH 5 X ! T n gD !LN K B S} y 4S^ q qM m ' 0 }m & wm & [ vl & [ l & C-yo & 4 m & D\ M[ D m & D vm & D m ' <FD _8 _ D D, 0 xn & S^ Y 0 Lym y gD !LN K B S &n _, 0 I P ^ I P ~ !0 o & S^ qM , SH3 5^[ H? 4S^ a qM7m & 0 vyb qM n ' <FD _8 _ D D, 0 m & 0 7n & 0 wn ' <FD _8 _ D D, 0 yn & D, 0 m & D, 0 un & D, 0 n & D, 0 uo ' C- n ' C-;o & a < A, # c ~ G Q X % RB # p# I} A ! ab R L d ! fjB0 b D jbH B < TD4 S 8 TD4 Sn & C- jR j NS R jR jR j gD !LN K B } oQ oQ 2 a C, 4 c H H U l & I l # c t@ t@ t@ 0 0VA t a@ X Q 8 U @ 0 @ 0V ( # pC l p t P l V 7 L7DP`D B xcn q B f ` ! ` A C * @ d ! ` " Y a B< 2 F kbH B 0 TD4 H3 Fk NS # T k NS # T &l m D- O $ S p 9 DE d j2 c & <5m & 4 M? L M[ ! d & D, 0 P 8 b & , n & , o & <FD _8 _ D D, 0Y '0 N W 09 / !Lun & , } o p 9 DE T a A, 4 $ c U 0V ( X " B 0V h f X ? p c u] XE ! ? C V 7 \ 2 <hP $ 7 TP t 5 e ; Pdp 8H= \ ; 0lh0 L t %`i 7,a d B k"8 t vkB8Qm " !L m & D 6m & tD jB !0 o & D\Sn & <FD _8 _ D D, 0 $ # p 9 DE d 6kRH 5 k gD !LN K B 0 qM kR S fk H B [ ! T k H B [ X H? L @3 I '0 N W 09 / !Lwm & S a C, c ` U n F 0 0V ( 8 Ul mc < X # $ c ( ( # pC p t P V 7 L7DP`D B $n q B f ` ! ` A C * @ d ! ` " Y a B< 2 F kbH B 0 TD4 H3 Vk gD !LN K B S #8MED 4S^ &l m D- O ( S DSn & <FD _8 _ D D, 0 p 9 DE d j2 c & D, 0 8 TD4 H3 vm & D\ d k NS # d kR S vk2HT` & C- kbLN 8 , h 9 DE d & [ zl & , ,5 a t A, $ c U @ 0V c ` 8 P9 8 U| }T c ? $ ( ` L 2 ? $ U @ 0V k k kc ? ?P9 U ~ kJ ) . ~@ 0V n~ n~ n~T c ,n / 6 ,n / 8 U A c X l l U p { p { p X h ] / vi 0 h c / / 8 U p { p { p X 9 s 9 s 9 Q9 U J J XEm { ^m { ^m U H ~ 4 H ~ 4 H X U y = p p / y 0V = z> = z> = zc . / [ l 5 . / U ^ ( ^ ( XEo n i / Bo n c n ~n ~n 7V h z % . 'Z h XE( . 4. r K B( . c ; / s B ; / U b * b * b X / {8 ( c m-~ m-~ 7Vq Y g [ / o} p Y X J 5 4Y J 5 4Y J 5 U { : / { 0V cYl: cYl: cYc / c| : g / 8 U ` `@ 0V q B m ;/ m q X ( ( ( U </ p 7 ~/ </ 0V z * z * zc / 7> ~ 3 / U _ _ XE p y _ p y _ p 8 U 0 c A X $ ` H $ c EQ X ( ` $ c a X * ` $ c q X , ` $ c 0 ` 0 P9 U j , &/ 0V =hs1 6 =hs1 6 =hsc =/ { 1 B x =/ U # ]8 1 # ]8 1 # X x s/ 0 : x c h j {h j {h 7V ? ~= ? ~= ? ~c / / 8 U g x g w 7 * 7 B* 7 * pC h0 GP B ~ ` #cK B # ! = , # A ! ; . 7 L7 7 ;bP A -a . 1 \ RE.p 7 F p 9 t 8 A 7 A8 e 7 L7 8 l0 cp 8H < t ` ` r cp 8 pCp h0 T@ 0 0 7 : h ? t ` a ~ ep 8 pC0 h0 # L7H 0 C H e R =@! T PJ T PM H R ?@M T PU T 0 p \ 2 L7 QP HH " R H@ A RAI@ A R I@ A 2 e 7 r 7 CK % 8 ]P V D 2! H 3 U R M@ TP PI H 7 2 \ R j p h0 F0 P \ RUO@ 7 7l`q P ! m t ` a@ gp 8H AY@ 7 7 Z u i 2 0 L7 F0bP A 1 T p X \ 2 7 5 ~ ` #dM MT H u! H v U R ]@ T PI H z U z % R { dp 8HU % : L7 YPC 7 & ] 1 ) 7 tCY A @ vob ,5n & ,K " ! T a zm ( C- ~ ' !QA b0 R y n ' D 8m ( C- [) 4C y H B M y H B M 6z H B M Fz H B M V|R0 z H B M v|R0 |R0 }b P - , m ' 0 5 I!0O [* PK zRHT fnr 4Sn ' D, 0 um ' D, 0 m ' D, 0 un ' C-}m ' C- m ' D, 0 n ' C-}n ' 0 um I PK [ C] v~b P $ d 0 5o ( D 5O[ I!0 } I!0 #8MED _, 0 ~b P t 9 DE T t 9 DE T $ d t 9 DE T ! ,5 I" !L }[ J" !L !J" !L #J" !L [ Cm 6 rH 5 m ' 0 [ I!0 } I!0 I'0 N W 09 / !LuO I'0 N W 09 / !Luo !0OM r m ' <FD _8 _ D D, 0 n ( D, 0 wm ( D, 0 m ( D, 0 wn & 5o ( D, 0 n ' 0 m C} yR yR R8Q FxR ` F b P % 0 n ' <9n ' D ~b S vn & H3 d ' 4 M? L Nd ( 0 u [% C &xbH 5 % qMvo ' < M ) F b S $ T $ T ] 0 :m ' D, 0 <o ( 0 n & C R8Q b P 9 qM7n ' D\ !0O x H B S b S E $ T I $ T ] $ T 0 ;m ' D, 0 }o ' <<m ' D\ D qM zbH 5 ! VoR0 R F}R vn2 ` ' D, 0 t W }bHTP y n ' C-5 I ^ I ~ I [ I ( !0O 6x24 a ' C-u] PK] f~b0 R n ' C-u I N[ I n I [ I [ ! T 0 0 m t 9 DE d 6o ' <FD _8 _ D D, 0 4n ' D\ _ I'0 N W 09 / !L6 I I I 0 Nd b0 R Nd b0 R t 9 DE d Y t 9 DE d t 9 DE d 1 0 9 0 A 0 U qM}o ' 0 n & [ vl ' D\Sm zR0 rH 5 n ' m ( uN I'0 N W 09 / !L M I'0 N W 09 / !L m J'0 N W 09 / !L !J'0 N W 09 / !L !0 m ( <FD _8 _ D D, 0 6o & < qM qM qM ] I P [ ! T E 9n ' 0 & b0 R Q n ( <FD _8 _ D D, 0 7m ( C-u *J'0 N W 09 / !L m[+J'0 N W 09 / !L +J'0 N W 09 / !L I!Q I P ^ I P ~ ! T ,5m & ,Km a A ! ; D A8 iR m jB a # p &j NS R iR E j NS L ,5 a A, T % 3 Q 9a # ) J D@ 8 a p &jR m 6jB I : I J "F a A, T % 3 Q 9a # ) J D@ 8 a p &jR m 6jB I : I J "F a ; A, T # $ # # $ c ? ? U A GA\ 2bP A * 7 1 0 h0 t r D A ! ; A8 fj2 c & < d & D\ h 9 DE d & [ vl & , n & <FD _8 _ D D, 0 jB I J "F a ; A, T # $ # # $ c ? ? U A GA\ 2bP A * 7 1 0 h0 t r D A ! ; A8 fj2 c & < d & D\ h 9 DE d & [ vl & , n & <FD _8 _ D D, 0 jB I J "F a ; A, T # $ # # $ c ? ? U A GA\ 2bP A * 7 1 0 h0 t r D A ! ; A8 fj2 c & < d & D\ h 9 DE d & [ vl & , n & <FD _8 _ D D, 0 jB I J "F a ! d iR m jB I J "F a # p :\ @ 6j NS R iR E j NS L , $ t ,b4 a A, T % 3 Q 9a # ( D@ 8 a p &jR m iR E 6jB I J "F a A, T % 3 Q 9a # ( D@ 8 a p &jR m iR E 6jB I J "F a C, $ c U / @ 0V ? X T c U / 0V A ! X / T c ` U X Q9 U X o "8 1 * c $ / xZ @ i $ / U > / > 0V n 9 ; / n XE* 8 2 C* c w / Z p j ] w / U / 0V x c( 0 x c( 0 x cc 8 / 0/ 8 8 / U 8^ x % ( 0. 8^ 0V 88 88 8c / / 8 U ? 0V ^ x e X X u] 5V C ! ? X EQ 5Vq q U X 9 + 9 + 9 U Z Z Z Z Z % @ X / / U + + 7 m 7 n 7 q p@ p `p 8 pCP h0 D0 r@\ 2 \ R t A) V m 7Xz T) T 0 0 L7 7p}` * T 2 0 L7 FPA) ! =2 T0 R (@ T@ PE H R )@- T PM# RQ T 0 [ L7 6 ` @\ 2 L7 pC h0 A0 p 7 V P . p!+ @ \ a +% a+ F ? A0 :& @* ` ( ` <H ` ` 9 q a ! n $0 @ = P c a u d % @ gO A 9 x a ! n " "x pC `0 A . ! = L tC lP & hriP VA=H T q RA u PJ U PG Y tC A @ # xR y2H b ' [ v t Fy2HGd & 0 xm & 0 m ' <<o & 0 n & D, 0 vm ' 0 8o ' D, 0 m & 0 n ' D, 0 vn ' C- m ' D, 0 n ' C-<n ' , K LH# { H B Sm yRH {R0 |b P 0 4n ' C- n & < m & D\ i 0 n ' L /= 0! DDSO CM 6|b P qM9n & C-&xR 6xR &{ Q ` p 1 # [ 4 E $ T $ T H# I 4 n I" !L ! r {R0 &|b0 R tm & < m & < n ' 4 M 8 ! yR | H B S V|b P M 0 % a I'0 N W 09 / !LuM I'0 N W 09 / !Lu}[ I'0 N W 09 / !Lu I'0 N W 09 / !Lu [ I!Q N[ I ~ I P m I P "= 0 q y 4 /= 0 NT V{ H L , mB8Q I'0 N W 09 / !L M H? Ly} nB8Q I'0 N W 09 / !L I'0 N W 09 / !L I P N I P n I! ^ I P [ I P ! 6zR yR l2 c ' 2\O 0 z Q ` p ! mbH 5 m qMun & D vxR { gD !LN K B S} | gD !LN K B S} iR m fzb >] } Nd ' <zm & D\ I$= 0 HD4Y ! d mB s[ ]: 8>] Q mRH 5 VmRH 5 zb 0 I M[ I } I [ I I" !Lu] H 8 m & D, 0 5n ' S^ 0 y $ T $ T L xR a C, $ c / /P9 U ` `0V $ # c G 0V / X U 1 * o "8 1 0VA i $ / xZ @ i X / > c ; / n 9 ; / U 2 C* 8 2 0Vq j ] w / Z p j X / c ( 0 x c( 0 x c( 06V 8 8 / 0/ 8 X % ( 0. 8^ x % c 8 88 88 G 0V ^ x e X X u] 5V C ! ? X EQ 5Vq q U X 9 + 9 + 9 U Z Z Z Z Z % @ X / # T # c 8 8 7VA r G r G r w h 7 h B G j 7 n T 0b` A A /! T PC T H p u RA @% T PK T H T @ v ` P pC* q 8 pCp h0 P yp 7 V P ~ + ? a ( +% a+ F ? A0 & @*8 ` ( ` <` ` ` 9 T Ra !H q n $0 @ = P c ! X d dA u@ #O A 9 [ la ! x n " "[ pC` `0 t +L7 Ap t B0b` A A 1 0 I U R E !!E T A @ tC < lbH B ! &o2HGd & 0 m & 0 n & D 8o ' C-<m & D\ A m gD !LN K B [ I#= 0 [ P 0 U ] # [ I PK I!QA &0 N W 09 / !L mR0 R mR0 R oRHT FoRHG Vy2 ` & 0 9o ' 5 I#= 0 Co ' <FD _8 _ D D, 0 p 9 DE x gD !LN K B SM y NS L } 0 <oq c 5 ! yb e I fx H L , d ' 0 ;o & Sn & H3 }o ' D, 0 ,yo ' D, 0 0 LyM y H B S " !L=o ' 0 |m ' 0 m ' 0 m ' 0 <n ' 0 |n & < xr D c ' E <oq c uM Q Y 0 a 0 i 0 q 0 } oq 1 L /= 0! DD I M[ I$= 0 HD4 I m I!0 I I [ I [ I! K I [ !0On ' C- m & C-:m ' , K LH# x H B SM lRH 5 n gD !LN K B S n ' D, 0 n ' C-:n ' D, 0 4n ' C-zm & 0 nbH 5 0 A (@ 2\ m & 9m ' C- n & ,KM I P B\ $8 !1 A ^ . a ( A, T c ( ( U / % 1bP A , T0@ @ d jB ` I 6j2HT` & D ,fj20 b & 0 a J C, T c 7V c k / Z j Z k / 8 P e 0bP A * 7 q 8 p r 7 H 7 I # I pC , # 2K T `@ @ vj2 c & D\ 0 19 , jB S I! !0 m & < qM oq O I I! ! b & , a A, v c X A 0V U ? ?c ! G ! m X H c & I l m X ? 3VA t@ t@ c ! O ?! l V pC C l 7 L7<NP $ l 7 L7HEP D l G T t %`h \ 6 L7<B A8 H 6k"8 t kB8Q " !L m & D, 0 t l2HGd & D m & 4 M P B jB I 4 M H 4Fn & D\Sn & < ( /Nc wm & <FD _8 _ D D, 0 '0 N W 09 / !Lvo & D\ qM5m & <un & D, 0 0 ! T k20 b & k gD !LN K B m I : [ '0 N W 09 / !L a A, C $ c U @ 0V X ? c ! A ! 8 U " "T c f h 8 U p ? 0Vq] u U C ! ? V pC C 7 L7<NP $ 7 L7HEP D G T t %`h \P 6 L7<B A8 H 6k"8 p 9 DE t vk H B ] D5n & D, 0 t fl H B [ Fl NS L I 4 ] I! !0Oo & <FD _8 _ D D, 0 ! d & D\SM[ I!0O d kbH 5 H? L @3 I H? L m '0 N W 09 / !L7m & [ vl & <FD _8 _ D D, 0 7 a C, c ` U n F 0 0V ( Ul mc < X X ~ ~ # H pC p t P V t & ! @ l 0q[ 1( @]` f n ,4 n ` a A *" nx | C f C jbH B 0oQ +!Q &k H B S [ 4 TD4 p 9 DE d kB '0 N W 09 / !L m & <FD _8 _ D D, 0 X " !Lvm & D\ qM5m & D, 0 d 6k2HT` & D\S [ P 8 b & , n & , n & <FD _8 _ D D, 0 I H t8 I ! a 7 A, # # A ! 0 A 7 q 6 ! 7 L7 B A8 Fj2 c & D, 0Y D j gD !LN K B n & D\ h 9 DE d & ,Kn & D, 0 &jB I! R I : I :. a 7 A, $ # # A ! ; 0 A 7 q 8 ! = 7 L7 B A8 Fj2 c & D, 0Y DVjBH 5 &0 N W 09 / !L jR jrH B o & [ vl & [ l & , , l 9 DE a 7 A, # # H A ! ?" 0 A 7 qA> ! o 7 L7 B A8 Fj2 c & D, 0Y D j gD !LN K B n & D\ h 9 DE d & ,Kn & D, 0 iR E jR E &jB I! R a 7 A, # # A ! 0 A 7 q 6 ! 7 L7 B A8 Fj2 c & D, 0Y D j gD !LN K B n & D\ h 9 DE d & ,Kn & D, 0 &jB I! R I : I :. a 7 A, $ # # A ! ; 0 A 7 q 8 ! = 7 L7 B A8 Fj2 c & D, 0Y DVjBH 5 &0 N W 09 / !L jR jrH B o & [ vl & [ l & , , l 9 DE a 7 A, # # H A ! ?" 0 A 7 qA> ! o 7 L7 B A8 Fj2 c & D, 0Y D j gD !LN K B n & D\ h 9 DE d & ,Kn & D, 0 iR E jR E &jB I! R a Z A, ( c X " 2V gl VPh 7 \ 2bP A m ) Kp q 6 p t " {A4l @ j2 c & ! !LvjB P :.>Sd & D\ W j2HT` & , m & n & j gD !LN K B /Nc iR a Z A, ( c X " 2V gl VPh 7 \ 2bP A m ) Kp q 6 p t " {A4l @ j2 c & ! !LvjB P :.>Sd & D\ W j2HT` & , m & n & j gD !LN K B /Nc iR a Z A, ( c X " 2V gl VPh 7 \ 2bP A m ) Kp q 6 p t " {A4l @ j2 c & ! !LvjB P :.>Sd & D\ W j2HT` & , m & n & j gD !LN K B /Nc iR a H A, $ c U ( 0V g VPh 7 \ 2bP A ) K` q 8 p t " {A9l @ j m 0 Nd & D, 0 4Cm & D\ W j2HT` & H3 , # 4 h 9 DE d & [ v a H A, $ c U ( 0V g VPh 7 \ 2bP A ) K` q 8 p t " {A9l @ j m 0 Nd & D, 0 4Cm & D\ W j2HT` & H3 , # 4 h 9 DE d & [ v a H A, $ c U ( 0V g VPh 7 \ 2bP A ) K` q 8 p t " {A9l @ j m 0 Nd & D, 0 4Cm & D\ W j2HT` & H3 , # 4 h 9 DE d & [ v a > A, c U U ~ 7 g VPh 7 \ 2bP A ) KP qA> p t " { :l @ j2 c & .>Sd & D, 0 4Cm & D\ W j2HT` & , n & j gD !LN K B $ K M , K My] I a A, T % 3 Q 9Q # ( J D@ : a p j E .>S iR E 6jB a A, T % 3 Q 9Q # ( J D@ : a p j E .>S iR E 6jB a A, c % {A4l @ j"8 ( ,Dn & K x a A, $ c % {A9l @ j"8 } /u $ L9 a A, c % { :l @ j"8 R iR T a A, - # c ! G ! m X ? C 0V "! H U A c A "\ r 6 p l 78Mp 6 pC tC U ; 0= 5@\B M R T p t e(; e A ` ! 0 v ! 4 nX p P j"8 NT iR k H B m " !L7n & D, 0 _ D n & D, 0 j 8 p 9 DE jRH 5 j gD !LN K B 0 qM6l H B N[ # !L8 W c & D\Sm " !L W k H B I!0O [ ! T Vl H B n[ 4 p 9 DE t k gD !LN K B } '0 N W 09 / !Lwn & [ a A, $ # T c ! A ! 8 U ? @ 0V B ! ( XE A@ 0V A "\ r 8 p 78Mp 8 pC tC U ; 0= 5@\B M R T p t e(; e A ` ! 0 v ! 4 nX p P j"8 NT k H B m " !L7n & D, 0 _ D n & D, 0 Fk24 a & <FD _8 _ D D, 0 qM p 9 DE d j2 c & <um & D\ l H B N ! T vk H B m d kR S kbH 5 jr 4Sn & iR m jR m fk gD !LN K B ][ '0 N W 09 / !L m & <FD _8 _ D D, 0 9 a A, # c ! _ ~! P> U : U U A c A "\ rK> p 78MpA> pC tC U ; 0= 5@\B M R T p t e(; e A ` ! 0 @ v ! 4 nX p P k gD !LN K B D kB8QM " !L7m & D, 0 t kB8Q " !L7o & D, 0 _Y !0 n &CC jRH 5 Fl gD !LN K B ~ 0 p 9 DE d &kR S jBH 5 " !L m & D\Sm[ # !L W c & <5o & D, 0 _Y ! T Vl H B [ 4 $ K M } oQ oQ p 9 DE t k gD !LN K B a ! d iR m jR m jB a # p :\ @ 6j NS R iR E jR m &jR j NS L9 a A, P c X " 2 0V U ? ? c ! G ! m X A\: l V - ,Z l 7 \ RC # l p 5L\B D 7 L7 VP U l ~ ` yJ A0 0|h0 A0bP A m 0 ~ `` .L A 7 p 6H D 7 g T pC l p h0 2 0 u _ ; L7lB A8 v vm H B S^[ D n & 4Fn & C , S '0 N W 09 / !L8m & &l gD !LN K B n[ ! b l gD !LN K B 0 , m & , } I!0Om ! d & <FD _8 _ D D, 0 A x 9 DE m & D\S} I!0O [ Q qMuo & 6m O-Nc 8o & Dfm gD !LN K B SN I : I :. D jB `[ 4 n & <vn & <vo & D\ I I !0On & < qM a I! " !Lxm & D, 0 9 qM7m & 0 l H B " !L n & C = @3 8 a A, . $ c U ( 0 0V X ? T c ! A ! 8 U @\: V - ,Z 7 \ RC # p 5L\B 7 L7 VP U ~ ` #;K A0 0|h0 A0bP A . ~ ` # K A 7 p 8H D 7 g T pC p h0 2 0 u _P ; L7lB A8 u vm H B S^[ H? 4Sn & p 9 DE Vk28Qo & <FD _8 _ D D, 0 ,6m & <FD _8 _ D D, 0 ! b Vlb qM m gD !LN K B '0 N W 09 / !L vkbH 5 % ! T j2 ` & [ vl & [ l & <FD _8 _ D D, 0 Q D jB `[ 4 n & <vn & S~ lR c lbH 5 0 ( SH3 n & 0 6o & < k24 a & D\ n & D\ o & D, 0 lbH 5 0 " !Lxn & S &m H B I!Q m H? 4S kR P a A, c U U ~ 7V @ 0V _ ~! X { { # V - ,Z 7 \ RC # p 5L\B 7 L7 VP U ~ ` &4K A0 0|h0 A0bP A . ~ ` # K A 7 pA>H D 7 g T pC p h0 2 0 u _ ; L7lB A8 v 6m / N4 n & 6l H B Sn " !L9n & D, 0 I!0O] '0 N W 09 / !Lxo & D\ Nd lb qM m & < n & , [ Q , n & D\S " !L:m & Fm2\Nd & [ zl & [ l & <FD _8 _ D D, 0 ) p 9 DE m gD !LN K B S Dfm gD !LN K B S 4 m & < m & qM6n & 9 I !0 n &CC kRH 5 j / N4 m & <7m & <7n & D\ ] A x 9 DE zm & D\ I }[ H ,E lRHTp j / N4 kR P a A, T % 3 Q 9a # ) f ( H! 6jR m jr m c & , } o o 2 a A, T % 3 Q 9a # ) f ( H! 6jR m jr m c & , } o o 2 a ; A, ? $ c U ( 0V X ? T c ! A ! U a p a0V ( X / $ c A X ? ? ? V A <Z 5@ZB F4 7 \ R I 74X L7 XPE 7H \ RC ex\B A t AP # i0bP A . % ` #}J ! = D@ ~ ` #~J e F ~ ` "dK 1 q 8H h t p 0 C ! 4 D \ R pC0 `0 0 AP d1 L7 MPL tC 7 A) V C S@ @ q 2 % U@ ` ` ` 2 n gD !LN K B I!0 N '0 N W 09 / !L n & } SH3 mbH 5 p 9 DE &nRHT VnR VlR ` Vk2 c & <um & , ! d & D\SM[ ! b 6lB8 ] I!0O [ I!0O ! b vl H B ! T lb - H? 4S lB8 [ ! j2 ` & D nR lb U iR m jR m Fk2\Nd & D 9n & , M[ #8MED 4Sn & I!0On[ 4 m & D\ M 4 n & D, 0 @3 Fn H B n " !L;n & D\S " !L n & D, 0 kB qM @3 y @3 p 9 DE jr m c & <wm & <FD _8 _ D D, 0 &mbH 5 Y 0 I!0 [ D n & D, 0 M m qMwo & 0 n & m & ym & <FD _8 _ D D, 0 5 a G, 4 $ c U ? 0 @ 0V A ! X ? ? ? U C ! ? @ P T c G 0 P T c ( ( P9 # ; <gp 8H 7 \ R `q 7 L7pWP # A 1 q WB v ! s D `P'rJ t Q ! sb D # tC0 F ~ ` # K pC ~ `p'fK ,C0 u F ! ~ ` # K A ! ; D0bp A - A ! ; D0 0 # pC `0 @Ey # A ` A z # I `P' J Q ! sB D # tC F ~ ` # K< A ! ; DP 0 ! (" H# pC # pC `0 @ A - ,A1PQ q # - ~ ` # K # 1 ~ ` #.L . ~ `p' K , ,Ca S 7 @\ RC8 p h0 p * L7 d kb p 9 DE nb NT Vl gD !LN K B ! R Flb } ,9n & ,K ! nb a & <z fnRHT VnR0 o m h> #MO I 5M J m 4 k2 c & , m ! b ob qM K ?GM lR S vmb i ,vo & D lbH 5 p 9 DE 6n gD !LN K B O P ,: ob # [ 4 5 , mr s }o & D yn & C- m & [ vl & [ l & + H o mk t I H? L ~ ! r Vk"8 U , m & , [ I J m t_[ ! r 7 ! O Q , m & + H n & D, 0 ! oR l H B ! 6kB s I!Q I P [ I!0 ^ I! !0 o &CC Fx gD !LN K B I! B L?1 m ,8n & , " !L|m & , [ " !L m ' D\ N " !L|n & + H > 0 I!Q } "H ` ' D, 0 y A ,v n ; J m 0oq Z ]~ o m h> # , a T A, % $ c U " "T c f h 8 U p ? 0Vq] u U C ! ? V BB L70 P &0 @ A @ j2 c & D, 0 " !L5m & D\ 6k2 ` & H3 P # 4 h 9 DE d & [ vl & S a A, $ c 0Vq] u 5 P p f 6j2H b & 0 iR m Fj _, 0 !1 0 $Q i ( 0' a A, T % 3 Q 9a # ) f ( H! jr m c & [ vl & [ l & , t * a A, T % 3 Q 9a # ) f ( H! jr m c & [ vl & [ l & , t * a V E, T %0 @ 0 @ 0 @ P 3 R 91 3 R 91 3 R 91 !0 0l@ d {/ ( 1 $`0 0 Y @l Az b F G B ^ U 1 f p * k2 ` & q! 4 t * X 0D&jb<oQ (oQ Cd & E 4 T & )>0 p= X L 8 b & E m & E n & E n & [ zl & [ l & + H O fkB a A C, T %@ 0F = 3 @! ( x ` } `@ ~) A 0 1 D0 < 7 1 A P % Y a @ qA 1 C8 j2 c & + J9 jR NS j2 ` & D 6k NS # d & C- jR kr E >m & [ J9vjB NS #8MED Ka & [ zl & [ l & , a " A, c ( # ^ 0bP A < 4 P ! @ 1 @ @ jr m c & [ vl & [ l & D 6jB I! R I! b a V E, T %0 @ 0 @ 0 @ P 3 !S 9A 3 !S 9A 3 "S 9A !0 0l@ d [0 ( 1 $`0 0 Y @ & Az b F G B v` U 1 f p * k2 ` & q! 4 t * X 0D&jb<oQ (oQ Cd & E 4 T & )>0 p= X L 8 b & E m & E n & E n & [ zl & [ l & + H O fkB a V E, T %0 @ 0 @ 0 @ P 3 (S 9A 3 (S 9A 3 )S 9A !0 0l@ d ;1 ( 1 $`0 0 F Y @l ^ Az b F G B 6b U 1 f p * k2 ` & q! 4 t * X 0D&jb<oQ (oQ Cd & E 4 T & )>0 p= X L 8 b & E m & E n & E n & [ zl & [ l & + H O fkB a V E, T %0 @ 0 @ 0 @ P 3 /S 9Q 3 /S 9Q 3 0S 9Q !0 0l@ K d 2 ( 1 $`0 0 ~ Y @ Az b F G B c U 1 f p * k2 ` & q! 4 t * X 0D&jb<oQ (oQ Cd & E 4 T & )>0 p= X L 8 b & E m & E n & E n & [ zl & [ l & + H O fkB a V E, T %0 @ 0 @ 0 @ P 3 6S 9a 3 6S 9a 3 7S 9a !0 0l@ d 2 ( 1 $`0 0 Y @l Az b F G B e U 1 f p * k2 ` & q! 4 t * X 0D&jb<oQ (oQ Cd & E 4 T & )>0 p= X L 8 b & E m & E n & E n & [ zl & [ l & + H O fkB a A, T %@ 0 @ 0 @ 0V ~ XE ~! _ ~$ c A X ? ? ? : U 3 Q 9Q 3 Q 9a D A ! ab 3bP A A ' A ! ? D4bP A - 7 AqA> p ; HgpA> p T`l 7 L7\N0l@PA pC # * R \ ] P* 0q0 t: x`0 @X \ 2 AQ p1 L7 M0l@ AP D `*H 8C d ! 4 n 6P A t @ P* nx ;@ a >( p o kbH B NT m H B S^ D n & 9 p 9 DE lR ` jR m &k2 c & <FD _8 _ D D, 0 a p 9 DE 6kBH 5 I!0O ! T l2HT` & 4 M? L9 I! R I! b[ I! r[ 4 oQ h 9 DE d & D m gD !LN K B SN I I .[ I 4 #8MED 4Sn & I!0 M I!0 m D7m & D\ ] I!0 [ I!0 ! d lbH 5 VkRH 5 jr m c & D, 0 0 " !L n & D, 0 E 0 Y m $ K M , !1 8% a A, T % 3 Q 9a # ) f ( H! jr m c & [ zl & [ l & , t * a A, T % 3 Q 9a # ) f ( H! jr m c & [ zl & [ l & , t * a G A, U $ c U ( 0V A P9 U A ! @ 0V X $ c ? ?P9 U X / $ c 0 XE ? C T c ~ ~ 7V j {k j {k j {$ c } ' V i pC D\ 2 PT`0 XA 7 L7\X0 l`p 8 pC t pA= ^P ; p pC \ 2 L7 D0 p \ R p 7 i F @ A9 ! =R t APoP 1 0 ` j 7 5 ;b` A A )a p h0 APmp : \ 2bP A / 7 ~ L7 A ! =B D$ H! V* A ! = D( * t ` * tC A @ kbH B ,9m & <FD _8 _ D D, 0 p 9 DE &lB8Q [ H? 4Sn & D\ N[ " !Lyn & S lR ` vnR0 Vk2 c & <um & D\ E , n & D, 0 t qM m & < n & 9 Vm H B ! T m H B [ P M n m d & Fm2HT` & <FD _8 _ D D, 0 I I 4 '0 N W 09 / !L9n & Y I!0 M '0 N W 09 / !Lyo & @3 lbH 5 m , n & kB #8MED _, 0 n H B [ " !L;n & D, 0 kB I! 5 p 9 DE &m gD !LN K B ~ I 4 [ ! m gD !LN K B I!0 ] '0 N W 09 / !Lzo & < m & , ! t mbH 5 } N a A, T c G 0 @ 0 @ 0 @ 0V ~ XE ~! _ ~$ c A ~ ` #~K ! = \ 7 0fpA> pC ~ ` & ILE < @h0 AA 7 L7 K0bP A - ] 0b` A -1p B 7 7| \ 2 qA> tC e e [ t 0 p \ 2 L7 d i VkbH B Nd & <FD _8 _ D D, 0 , m & < m & 4 M t8 I!0 ! R k H B ! d j NS L t VlbH 5 @ TD4 DS~ j NS R j NS L !0 n & D\ n & + i & <FD _8 _ D D, 0 1 p 9 DE j2 c & T lR s flB8 I!0O $8MED / N4 8m & <uo & , - @ TD4 DS jR l H B [ " !L m & &kR Fk gD !LN K B I '0 N W 09 / !Lw 1 [ a !1 b a A, S $ c A X O z- >i ( ^ O z- T c / 8/ 8 / 8 P9 U M M X U ` `@ 0V ( X T c / v^ yI h % / U : .8 0V1 - 3? b8 l 0 - X p y V A ! ;R D4 @bp 8H 7 L7 E0bP A , T0I ~ ` # KPC A ~ ` # K t X: \`p 8HaD 7 L7 F0 @icp 8 pC hPgp RA' tPC # BPE G R p h0 B0 M @ U VkbH B t lR c lb H? 4Sn & D\ m[ " !L7n & D, 0 = 0 - 9 kRH 5 kBHT [ 0 p 9 DE d 6lR S &kBH 5 ! T k2 ` & D k H B I!QAM I! R P , , , @3 I PK I PK &0 N W 09 / !L lRHTP iR m Vl gD !LN K B ] '0 N W 09 / !L m & D 5 a E A, T c 7V c ` P> W ~ ` #-K e TB 2bP A - 7 pA> p d j2 c & 4 M ,En & T jBH 5 ! !L j gD !LN K B I #8MED _, 0 VjR j20 b & , 1 [ a a ! A, # c " X A 0 0V ! G U U / K c = X ? 0V ? ? U ! C ? c " l 7 \ 2 08`p 6H 7 \ RC A D\ 2 `h0 Pi pCP l ` p t P % } `` K 5 RA&5dR # F p 0 ! 1 ! U R_ 1bp A m 0 ! `$ 0bp A m 0! G Qf0 ! D@P# q ~ `@ `L QV M7 A ^ lb Nd & , } ! R k H B Sn ! r &mb Y Fmb ] lR0 b flR ` jB c I P } !0 n & C- m & D vo & D\ m & qM N !0 o & C-8m & D\So & <FD _8 _ D D, 0 I P [ '0 N W 09 / !L8o & , ! d & < m & , [ " !Lxn & D\S Q k20 b & 0 m & D 6o & D wn & D n & C-7n & <FD _8 _ D D, 0 I : ! r a A, 9 $ c ( (P9 U X ` c ~ G g ~ G g ~ G 0F c P9 P 8 P9 U -i } rK w/ -i 0Va xY i e / 6^ ` xY X | : ! ` * | V A ! ;2 SA # A ~ ` # K@AIA 7 p 8 ! 1D 4 H p 7 L78IP AR % XPC E\0b` A A .! e RW \ [\ f D k"8 ,5n & Dvk I L , 4 M kB '0 N W 09 / !L6m & H3 6n & <FD _8 _ D D, 0 qM " !Lvm & D\ d j2 ` & D lRHTP &lR P jR kR &kR k20 b & C- m & , n & H3 kR0 R j2 ` & , K L iR m FlR0 R kB p I H 8 [ I C a [ A, c T c 8 8 U X 8 # g V` A ! ?b rA9` ~ ` #2K Q % 4 p, 7 7 L7 KpA>l ^ A8 ' j2 c & D, 0 D j2 He & D\ , S DS [ H ,En & 0 j2HT` & 4 M 8 [ H?% N4 vjR jR k NS R j20 b & k gD !LN K B } oQ 1 1 [ d a y A, @ c H H 6 P4 U ~ _ c ? X " 2V H H A\ 2 h0 p A } `` K 1bp A m / H ~ `@ K RB 2b` A l , fj2 c & D, 0 P m & D\ kB0 Q , , I! I! &0 N W 09 / !L iR !1 @ h a A, c N I ~ { =< d g ; ' / N I X X j 5 wM ? e ] < b )z $ X j 5 0V n 28 " / | / 3 1* n U w a ] } v z *x o ? w a c 18 l~ !/ C ( { 3 ? 18 l~ !/ X N + 0 m? $ } c. ; h N + 0V! ] ,- rz $K 6 / % M ( wI h " ] ,- U /c{ m x }n 8 2 w > ' /c 0 ! : 0 k = ? xO # 0 X d / ; N / }| xk d / 2V < gx > /: { i < gx U : / m } n y : / # M T @ T @ T @ T A% T A- T A5 T0A= T@AE TPAM T`AU TpA @ ( FkB [ P m & 0 VkB0 PKo & 0 kR P &lR ` kR P j20 b & 0 5n & C-um & 0 n & C- m & 0 5o & C-un & C- n & C-uo & 0 ,&kB I : PK a A, c j w ;, z } ) b / j w X o p; @ * ? > # O o p; 0V w = / } { .n s U - z 8 /eK =N K a R q - z 8 /c * 2 J c/ ( ? : 2> * 2 X 1 7 r e M y } = /g^ h t 1 7 2VA l /t : B U L .K j .9 K d 3 , ? L .K j c ! !| k q o l / ! X o > m &l ! g / f o > 2V o s ? v 3 ? n 1> o s ? U ? 0R <RA DR LR TR \RA dR lR tR |RA T`A @ & 6kB P m & 0 FkB0 PKo & 0 vkR P lR ` kR P j20 b & 0 5n & C-um & 0 n & C- m & 0 5o & C-un & C- n & C-uo & 0 0 iR jB0 R a A, s $ c ( (P9 8 U ? 0V XE ! A c U _ _ _ X 8 U @ 0V m - | x/ m m X o o U ; > # ; > # ; X ^ % Y ^ % Y ^ % U / 0V $ c p a p P9 U x x@ 0V 0 ` X ? T c 6 / <n ` I & 6 / U _ _ X * h / v. * c = / x + B = / U c| : g c| : g c| X Q9 U / 0V H $ ` H X 8 c ( ` ( U H $8 0V * ` X (8 c , ` , U *8 0V . ` X ,8 $ c G 0V ( X ` T c ] / vi 0 h ] / U Z k 0 e. 0V jY~ jY~ jY~c m / } P Bi m / U = _ = _ = X h h h U * / * / X ? v 3m ? v 3m ? v U [ [ X - - - U n ) 0 / n 0V1 6 ~ m 7 6 ~ m 7 6 ~c ) / l 9 B ( ) / U 8m _ v 8m _ v 8m X ! ! U w[ y w[ y w[ # zP p ~ C H 0 ^P ; 0 L7 7H 7 @ ,[ [ # H P + p % h0 BP p 1 P` :b` A A 0 B H U R ,@% ~ ` # J,A # pCS cp 8 pCP h0 Ip 8 pC` `p 8H 7 % R ' H1 ~ ` #iL C0b` A A 1 0 `` cp 8H 9p V ; L7 q T Pj H T Pn H T 0 D 2 ~ ` # L pC \ R ?p 7 / p 8P > p p 8H ?@ 7 8 7 ? ) T@ p h0 p * p 8H I@ 7 d 7 I , T@ p h0 p - p 8H K@ 7 p 7 K ] t / A AY `E AL7 EPT9 0 P 6! pC h0 P C0 P N@ ; i i 1 L7 EP XH ` 5 RAX@ T PG T H d RAY@5e! H f R Y@M T PU L7, VX T R ! = Do P h0 ` B A8 v| H B S | H B S fxbH 5 - qMxn ' <|n & <FD _8 _ D D, 0 :n ' D, 0 tm & <FD _8 _ D D, 0 n ' D, 0 m & <FD _8 _ D D, 0 zo ' D, 0 tn ' :m & &~ H B M ~ H B M H B ] ~e ' C-<o & < m & D\ ,vn & , Dzm & <5o 'EC {o ' <=m & ,Km & C-&|R vx gD !LN K B S ybH 5 i @3X I'0 N W 09 / !L " !L6 } NT $ d $ d $ d ! $ d ) m ' C-=o ' C-5} !QAM x O! {n ' , [ PKM Fxb e 8 TD4 Sn ' <FD _8 _ D D, 0 <n ' 0 :n ' 0 n ' 0 :o & S^ i a I 4 O !QA] 6{B8 o[ I'0 N W 09 / !LuO I P M I P ] I N I P } I n ! xR0 r { gD !LN K B S f| gD !LN K B S | gD !LN K B S |b S % qM5] I'0 N W 09 / !Lu C} |b S = qM5 !QAm F~bHTP 6o & U ,yn & L NT fyb ) 0 wn ' <FD _8 _ D D, 0 m ' <FD _8 _ D D, 0 4m ' <FD _8 _ D D, 0 n ' 0 ! F}b S , N[ C} V{RHT V}rH 5 um ' D n ' C-xo & D, 0 zn & 6o ' <u [ I" !L 0 7m ' 0 5 PK} oB8 m PK} b P qM m ' <FD _8 _ D D, 0 5m & D b0 R a qMuo ' D\S_ PK} b P t 9 DE d qM n ' C-ym ' D m ' C-9n & D, 0 ;m & [ vl & D, 0 m ' D n ' D, 0 ;n ' D\Sm &y H B S ~e ' D, 0 n ' 4 M? L Nd ' D, 0 {o ' < ! T 0 m ' C-5N 4 n ' C-5 ! b0 R 8o ' 0 5^[ C mB c !0On & < y qM qM M $ T qM ] $ T y $ T } $ T $ T 9m ' C- n ' C-un[ C o2 ` ' n ( C-u [ I m[ I!0 I I!Q I!Q I P ^ I P I" !Lu_ I" !Lu J# !Lv} _Y I" !Lu a A ! ;B D A8 iR m jB a # | p &j NS R iR E j NS L ,5 a - A, c X 7l V0 pC0 Fj2 c & VjBH 5 I H? 8 I : a " A, $ c U 7 V0 pC0 Fj2 c & VjBH 5 H? 4Sn & [ v a A, c U ~ 7 V0 pC0 Fj2 c & VjBH 5 I H?% N4 a A, c # pC l d &j2 c & D\ , iR a A, T c # pC d &j2 c & D\ } oq , a A, c ~ # pC d &j2 c & D\ } oQ , a p l d &j"8 } o o 2 a p d &j"8 } oq oq 2 a p d &j"8 } oQ oQ 2 a A, # B \ A8 j2 c & D\ } o 1 a A, T # B \ A8 j2 c & D\ } oq 1 a A, # B \ A8 j2 c & D\ } oQ 1 a > A, & c X 1V H Wl VP pCP 1 d fj2 c & < @3 ! d & $ S } o 1 a - A, $ c U 0V " W VP pCP 1 d fj2 c & < @3 ! d & SH3 iR m a $ A, c U ~ 7V ` W VP pCP 1 d fj2 c & < @3 ! d & } oQ ( S DS a p l d &j2 ` & [ xl & [ a p d &j2 ` & [ vl & [ a p d &j2 ` & [ zl & [ a p l d &j"8 } o o 2 a p d &j"8 } oq oq 2 a p d &j"8 } oQ oQ 2 a ! A, c " 'l V pC0 6j2 c & FjBH 5Y I H? 8 I : a A, $ c ( ( ' V pC0 6j2 c & FjBH 5Y H? 4Sn & [ v a A, c ' V pC0 6j2 c & FjBH 5 I [ H?% N4 a M, T Q # P@ c 7F T %P c G 1 @ 1 # 4 8`0 , A ! u D4 <`0 , A ! * @ ~ `PW HP A ~ `PW HX E` 9A 9Q A ! p DPA$ 1bP A < 6 # L [qA A U , 1P ( d0bP A < 4 @ p 1( 8 a "P @ HF ? A0h ' 20 ! p ( tC 5 L B0K t $ 1 Q@ ` ! r 0bp B (Q t T D1 2 j 2 U 2 m RD ! p3 0 kC( A8 g iR ` 6lb A 7n &HDL q 0 m ! b mBP O ! b lb k2HT` & 4 M? L kR vk20 b & , m & , n & ,Kn & D n & , n & D uo & ,Ko & 8 ` & D m & C-un & 4 Q , n & , I$= 0 HD4 !0 m & D n & 4 M 8 d & , K Lxm & 8 0 D C lR s &mBP O I!0 m[ ! fl2 ` & 0 wm & , K LH# lRHTp VkbLN 8 < Y I!Q "= 0 a , kb 6 a A P, T Q # T # P@ c 7F T %P %P # d 3 3 c G 1 @ 1 # 5 P`0 8 A ! u% 5 T`0 8 A ! * !d A ! uU 6 \a0 0 A ! u D7 Q E ~ ` >M \RG # n , 1bP A < 4 , 1 PX 5 ` 2Kp T |0bP A < 5 @ F ? A0 u$ ` 3' 3' B Z A " ~ ` .N , 2 ` L7hn X ` ` @G!!H v ~ ` B {0 n0bP A < 5 p ! 0 , ! ` `% 4 0 1 E VAAs w C ! w * B1bp B ( 4s z0 5 @s B s }P C0 ! y# D, 0bp B A )! 4 k#- 3P 6 B0% i s C0 PA!s 0 B)TpH <# * 0K T N @ n T 4 nb ,ym & a & ,K [ %8N4 2 ? E # @\vmb N3 1U fnR H 6nrT 4 d & 8 lr ~m &IE H L9n &IE H L n & < lb a lb E , n & C- , m & , ~[ Q 1 , TD4 H3 I " O I! R P , , , % , - , $ ! 2 L /= 0! DD !8M nb NS 4 /= 0 Txn & 4 q , n & , ~ ! r mb D /= 0! DD $ ! 2 mRHT` FoRHT fl NS L mB NS I P !8M &n2 He & <7m & U U 5 0 I " O I ] 19 ,fmRHTp oR jrH ,Dd & D n & , K L oR0 Fn T 4 VkB IR ! R 1 [ < - a P, # T Q 3 T # %@ 1 @}1 T P@d c c `0 c A0 c 7 @ P 5@ 0 @ 0 P T EP 3 s eN 9 D c G 1 # 7 p`0 8 A ! u 7 t`0 8 A ! * # 1| 7 x A ! u 7 b ~ `PW H 0G iN jN Ex2bP A ' T I A ~ ` 7 I A ! DRJ @ PX 5 a 2Kp T `pB g # A A T A ! ue D s D2b` A A (1 A]l # D0K Y % W h p t APM @G ` x @G X x A ! * c p # Cj A x @ ~ `p aJ y 2, ! yp X 1 B c M \ vs VB@s E s s A) T U - 0 0 H 0 * !h p X 1H / 1 + 1 s s s A- ! }S : C4bp B A ) ` 7wJ ; # * ,A3 @ c i s B G @s B s ; C . 1 ; 1 / 1 c q s K0 s A2 s = B C C 0bp B A * `P: J H$# * " ! H 1K T , 3P 6r @ 0 k# ! <T; 1 0 P D 1 Dp e R ! 2 @ =T J -1 =T I 1 L C L,51 ?T`I <# * M ? =1K T N @ vx T 4 lb ! $ ! 2 % $ ! 2 - ,=m ' ,K_[ %8N4 2 ? E # @\ xb -B' O #= 0 S { D T O #= 0 S Vnb N3 ! 2 ! R , m !8N4 M D _[ ! R , #= 0 S Vmb T m 'IE H L}n 'IE H L n & , IR S ! b mb P /= 0! DDS} foR H kR l20 b & , m & , n & Tyo & , n & , n & ,Ko & C- n & C-5m 'IE H L}o ' , K LH# T Vzr >m ' , K LH# T E 8 TD4 m & 4 ,8m & , ^[ ! o2 He ' 4U I!0 I1 ! R , /= 0Y ! b &IE H Lxo & a ' D !QAm Fzr H >m &HE H L 6o &IE H L m &IE H L9n &IE H Lyn & <V{b P zb0 R Q ( ! 2 m 'JE H L5} PK} fy T 4 T ] ( ! 2 n & D zb0 R 7o ' 0 5 I!QA I!QA [ IR N IR #8MED 4 m &IE H Lzn 'IE H L n ' 0 uN !8M ob NS e ( ! 2 5m & 4 M? L 8 2 R S] y T 4 T -R' O PK F{b0 R q ( ! 2 n ' C-5 I!Q ][ R S] lB c I!Q !8M Vob NS $ ! 2 $ ! 2 $ ! 2 T n & U y ( ! 2 6m & 0 xb ( ! 2 vo & 0 m & ! 5 ,u 1 [ ? - ) A a a 9 M, T Q 3 T # %P D 1 7 c / @}1 c ? 0 }# c @ 0 @ 0F %@ 1 @ 1 # 5 T`0 , A ! u5 6 X`0 , A ! '+ ~ `p &\s p ~ `PW Hx ~ `PW H 0G gN hN ~ ` 7 I dRc A ! C D0K` ~ ` 7 I A A @ P p mX v# T 0bP A ' }A ~ `PW H 0G (gN hN$# C e 0b` A (A J g udP p% @h 7, L7|m T , 2 / $ 1 / B$ 1 p0 0 q0bp B (1 @ ` :+J ( # * @ ! ) 1 A A c Z QC s w B TaH! 2 { 82 + 2 ~ @RD s C P $E 0 P - 2 P XRD ! C / / 0 kC( A8 flb } , m & ,K [ ! k T 4 ! o D T O[ !8 p krT 4 d & 0 |m & C-<m & C- n & , M 0 E ,vn & E I , n & , Q , I! r I! I!QA I! I! I!QA I! I PK [ I!8N4X I!QA I!QA IR N I PK #8MED 4 m & C-5m & , K L{m & , K L{n & 4 U H TD4 H3 d & , K L{o & 4 M 8 d I!Q ][ !0 m & , K LH# 6mRHT` nR0 Vo2I L , 4 M;n & C-zn & , K LH# nR0 oR0 l >0 O #8N4 0D~m & U , m & <wn & 0 fmR p kbLN 8 0 < I!Q "= 0 0 $ ! 2 , n T 4 Vlb 5 a M, , T Q D 3 T # %P 3 D c @ P `@ Qt 5 X `0 / a 5 A0 ? 5| 7 @ 0 @ 1 1 sN 91 Q sN 91 @ P # c G P E@ 1 # 0 7 p`0 , A ! u 7 t`0 , A ! )+ # ~ ` d0 7 C0| f y# 8 h0 2 C0bP A A] # E` 9A 9Q A ! DP H A ~ ` ; I A ! 3 DRJ @G PX 5 a 2Kp T `pB h # ~ A A @ T A ! u s D2b` A '1 A]m # D0K Y % W h p t APM @ ` x @ X x C` v0 x0 P y0 y0 0 2$ s s , C C0 0 p< 0 4 0 ) 14Q- 1 ` s t s . R C 0 \ 0 + ` ;dJ 9L# * N P ! c 9 3bp B ) ` ;hJ :,# * N ! : C2bp B ) ! - - 1 ` P D ! -T. Q s C% H% H5 T H) 1 Cp R ! 2 9T >0 0 9T I 1 ? C b E 0 PI 2 # d P H 1 J C j E 0 L 2 . CLh41 ?T RD ! O O 0 kC( A8 lb A , n ' C-u %= 0 HD4 vo 'HDL 8 /= 0 m ' , K L5 Q I D O[ !8N4 ] , m 'IE H L n ' , K LH# T m , n ' , K LH# T q ,vo & 4 ^ #= 0 S kR l20 b & , m & , n & ,Kn & C- m ' , K Lu I! I! I PK I PK I PK [ I PK ! r vyb0 R fyb0 R e n ' C-5 [ !8N4 6m NS L P /= 0! DDS yb0 R P /= 0! DDS {BI L , 4 Mu~ PK] yb0 R , /= 0 IR ~ IR IR [ IR [ ! b &IE H L8o &IE H Lxo ' 0 m I 0 A PKm m" NS # t } n &HE H L ! 2 zb0 R 0 n ' ,K Fo T 4 Vo T 4 fo T 4 vo T 4 o T 4 zb P X IR S C nBP O PK} F{b P wn & D zb0 R E 5 = I $ ! 2 $ ! 2 $ ! 2 e 0 TD4 H3 o T 4 {b P 0 n ' C-5~ R S] 6{b0 R Y a o T 4 o T 4 x T 4 x T 4 nBP O PK Fxb , m ' , 8 /= 0 7m ' , ! mRHTp xb % 8 b ' , I ! z H L , T < I!Q #= 0 S} &x T 4 6x T 4 lb 5 a M, T Q # P@ c 7F T %P c G 1 @ 1 # 4 8`0 , A ! u D4 <`0 , A ! * @ ~ `PW HP A ~ `PW HX E` 9A 9Q A ! p DPA$ 1bP A < 6 # L [qA A U , 1P ( d0bP A < 4 @ p 1( 8 a "P @ HF ? A0h ' 20 ! p ( tC 5 L B0K t $ 1 Q@ ` ! 0bp B 'Q t T Dq MOps k C kP !s n@ C nPA"E 0K ` ; I , 3P 2 ", j iR ` 6lb A 7n &HDL y 0 i u ! b vmb NS E lb ) , n & C- X "8MED 4 , I! r I! I! I!QA I! I!QA I! [ I!8N4X I!QA} I PK [ !8 ` & , ! r m I L , 4 M&kB c[ I!Q I#8MED _, 0 !8Me & , K L m & 8 0 D C lR s &mBP O I!0 m ! fl2 ` & 0 wm & I!Q } $= 0 HD4 < Y I!Q [ "= 0 , kb 6 !1 h]a 1+ a N P, T Q # T # P@ c 7F T %P %P # d 3 3 c G 1 @ 1 # 5 P`0 8 A ! u% 5 T`0 8 A ! * !d A ! uU 6 \a0 0 A ! u D7 Q E ~ ` >M \RG # n , 1bP A < 4 , 1 PX 5 ` 2Kp T |0bP A < 5 @ F ? A0 u$ ` 3' 3' B Z A " ~ ` .N , 2 ` L7hn X ` ` @G!!H v ~ ` B {0 n0bP A < 5 p ! 0 , ! ` `% 4 0 1 E VAAs w C ! 3 * B1bp B ( 4s z0 5 @s B s }P C0 ! D, 0bp B (! 4 (#- 3P 2 B0% i < < 1 A) B 1 Q * B , 3bp B ( @ d n T 4 nb ,ym & a & 4 ! R jb L D H3 T n & 4 S ,>m & T n &GE H LVlr >m & 8 n T 4 n T 4 fk2 c & , } A >m & , [ ! b lB0 ! ob "8MED 4 -R , X I! r I! [ I! [ I!QA I! I!QA I! I PK I!QA} IR ^ !8M nb NS Txn & , K L m & 4 q , n & , ! mb D /= 0! DD $ ! 2 mRHT` o2I L , 4 M{m & D zn & 4 M 8 d & 4 Tyn & T&mR s mBP O[ I!0 m[ -B M 0 8 b & D m & 0 BD mRHTp o H L , d & 0 ;n & C-;m &IE H L m & C- m & , $ ! 2 , 1 [ < - !1 hYa +, `f a + P, $ T Q 3 T # %@ 1 @}1 T P@d c c `0 c A0 c 7 @ P 5@ 0 @ 0 P T EP 3 s eN 9 D c G 1 @ 1 # 7 t`0 8 A ! u 7 2 N0bP A A * A ! * @ s ` |s 2 ~ `PW H pC0 a0 0 A ! ue D s DQ '# ~ A ` u 1bP A ' # M I)A vc Ba U , 1Pa7 ~ ` 7$J % qB_P k # = z0 Q J ! ` u ~ `0:)J , R d \I 5 ZB w `@ A5A ( !H b!D # * ! ~ ` M 5 \ 5bp A 9 )1 A0 0g0 ` `% 4 + !4~p X 1 , 1 ( 1 c )\ V Cs C C C 0 ` 84 0 ` 0 + 1( 8 1 , 1 # * ! 3 D; 2bp B ) ` ` >eJ ; C- ! . 1 : 1 / 1 m 0 0 0 8 ! 8 1, = 1 9 1 @ s q s s s > ! c DH 3bp B )! ! `@>xJ H # * O $1 ,A3P 2r @ 0 (# T , 3 P , C C 5 r < )Q ! < Op $r P $s p C P %E 0 M 2 \RD s # C@ #Q &E 0K ` > J X , 3P 2D#8 x T 4 lb % $ ! 2 ) $ ! 2 1 ,=m ' ,K_[ %8N4 2 ? E # @\ xb ( ! 2 7m 'G F| D T O #= 0 S fnb N3 ! 2 ! R , m[ !8N4 Q D _ ! R , #= 0 S fmb T m 'IE H L}n 'IE H L n & , IR S ! b mb R , ) I! r I! [ I1 U I! [ I! #= 0 S lR 6mR0 R lR0 R Fy T 4 v{BI L , 4 M5~ !8 ` 'G I {BI L , 4 M5 #8MED _, 0 nB NSY ! nb P /= 0! DDS nb R !8M FnR s FxR H V{ H L , d ' ,K kB IR I 0 AX !QAm zbHTP -R' O[ R Sn ' C- IR S~[ IR S IR S 0 zb0 R U ( ! 2 m 'JE H L5} C vy T 4 T a ( ! 2 n & D {b0 R wo & D un ' 4Um VmRHTP o T 4 o T 4 m NS # d IR [ IR C ob NS T8o ' 0 u R S] m" NS # d m ( ! 2 m 'JE H Lu} "uR xn 'JE H Lu [ PK vmRHT` y T 4 T m ' 4U} &{r NS n & < q T9m & 4U^[ IR IR IR !8M nBP O R Sm |b0 R e 0 !8MU - ,|o & 0 m & ! 9 ,u 1 [ ? - ) A a !1 pYa q+, v C a J M, T Q 3 T # %P D 1 7 c / @}1 c ? 0 }# c @ 0 @ 0F %@ 1 @ 1 # 5 T`0 , A ! u5 6 X`0 , A ! '+ ~ `p &\s p ~ `PW Hx ~ `PW H 0G gN hN ~ ` 7 I dRc A ! C D0K` ~ ` 7 I A A @ P p mX v# T 0bP A ' }A ~ `PW H 0G (gN hN$# C e 0b` A (A J g udP p% @h 7, L7|m T , 2 / $ 1 / B$ 1 p0 0 q0bp B '1 @ ` > I ( # * ~ @ ! ) 1 A A c Z QC < 1 Ap u r \ \ WK" < 2 H2 , 2 PRD s C` P %E 0 . 2 hRD ! C 8 8 0 (C( A8 nb NS ,5n & a & ,Kn ! Vnb ! 2 oR0 ob NS , m 'HDL u wo & 0 <m &GE H L xR o2I L , 4 M|m & C- m & 4 N[ ! b vk2 c & , A >m & , ! b Fl2HT` & ,Km & C- kR kR vlRHTP kR lR lRHTP &lR lR0 R jR nRHT vnRHT n T 4 nR0 l NS # d I PKM I#= 0 !8 ` & 4 M? L 8 2 I#= 0 [ #8MED _, 0 lRHT` kB c I!Q [ $= 0 HD4 T nR0 o2I L , 4 M n & C- n & C-zo & 8 - 0 D C o H L , mBP O I!0 ,|n & 0 m & ! q , /= 0 I P n I I P IR ! b &IE H L8o & ,K] !1 [a +, g a ? M, - T Q D 3 T # %P 3 D c @ P `@ Qt 5 X `0 / a 5 A0 ? 5| 7 @ 0 @ 1 1 sN 91 Q sN 91 @ P # c G P E@ 1 @ 1 # @ 7 t`0 , A ! u 7 2 K0bP A A * A ! )+ @ # B 1 s s g A ! u5 D 7 e ~ `PW H 0G jN kN E ~ ` ; I A ! C D0K` ~ ` ; I$ 1K` t A 5\ V @E 'T 0bP A ' A ~ `PW H 0G (jN kN$# 0b` A (A J o uhP p% @h 7, L7 A 1K t w t w 2 p c B) 2 c ) 2 s s A+ C ~0 ~0 0 2 L( 1 J, 1 C s AC s - C C 0 L 0 B* 1( . 1 s s / ! c 9 4bp B (q ` >8J 98# * O ! : 2bp B ( ` ><J :$# * O B B c vP u A B B B r . P !U r \- Op 9R " < Ops CE \ W " < U Op S; C e s C P H 1 = C j E 0 p K 2 p C P H 1 U ? C r E 0 XN 2 #! Ih=1 IT RD ! c Y EY 0 (C( A8 % mb 9o & ,K PK { H L , T 1U F{ H L , T ! 2 #= 0 S 6mr >m & 8 mb Y $ ! 2 q , n ' , K LH# T u ,vo & 4 ^ I! R P , , , 9 8 /= 0 n & , o & ,Ko & C-uo ' , K Lu~[ I PK I PK I PK ! r zBI L , 4 M5N PKM yb0 R yb0 R P /= 0! DDS jb Q 8 TD4 m ' C-5 #= 0 S VyB NS PK] {BI L , 4 Mun %= 0 HD4 n ' C-u [ !8MU q T5 [ "= 0 $ ! 2 $ ! 2 $ ! 2 $ ! 2 ,6o T 4 Fo T 4 &|BI L , 4 M N I 0 A PKm n" NS # t 0 wo &HE H L ! 2 yr NS m ' C- [ !8MU $ ! 2 $ ! 2 , IR S IR S [ IR S 0 $ ! 2 0 m & E m ' 0 5 PK} l2HT` ' C- !8MU I T I!QA_ I!QAo I!QA IR N IR ^[ IR #8MED 4 m &IE H L n ' 0 u^[ C {b0 R 0 yo ' C-5 I!Q M !8MU e o T 4 x T 4 x T 4 &x T 4 V|b P T &z T 4 T , m ' , ! m2 ` ' , ! xb y 1 ,|o & X I ! {b0 R < I!Q #= 0 S} 6x T 4 Fx T 4 {b0 R 5 ,u !1 I i EI ( A Z $ a y- m C ` , r 1 P^ Y a $ D, T 5 C` ~ ` pCP , 0 # Q !# G ] Ip 6j2 c & < } I!8N4 ! b & , m & ,N a $ D, T 5 C` ~ ` pCP , 0 # Q !# G ] Ip 6j2 c & < } I!8N4 ! b & , m & ,N a @ F, # T 5@ P c 0 f0 A ! #+ 7 2 E0 a C 2bP A =+4 B@ D ~ `0 A ! #+ H T ! H fj2 c & a & 0 k20 b & , m & < jR jB I! !8Me & 8 ` & C- m & , 8 a U G, # T 5@ P E c 1 f0 A ! %+ 7 2 F0 b ~ `P p , a c NrA A ! * 7 2 F0bP A A *L# 5bP A A *T5<R # P "% 0bp A & , @ " vj2 c & ,Km I 0 A I! r[ !0Om & < 0 &kR jB NS I!8N4 I PK [ !0 n & C-5o & ,Kn & , ,5m & ,N a R G, # T 5@ P E c 1 f0 A ! -+ 7 2 F0 b ~ ` p , a c N2bP A A %+@ B ~ ` A ! -+ 0 ~ ` T H H } ``BIh 6K``8 vj2 c & a & 0 n & 0 Fk20 b & , m & < kR jB I! !0 n & 8 ` & C- n & C-5n & ,Kn & , ,5m & ,N a = F, # T 5@ P c 0 f0 A ! ++ 7 2 E0 a C ~ ` p , Q # p 3bP A *<%(R ! 0bp A %1 ,A @ fj2 c & a & 0 j20 b & , m & C-5m & < jR jB I!8N4X I! ! b & ,N a $ D, T 5 C` ~ ` pCP , 0 # Q !# G Z Ip 6j2 c & < } I!8N4 ! b & , m & ,N a $ D, T 5 C` ~ ` pCP , 0 # Q !# G Z Ip 6j2 c & < } I!8N4 ! b & , m & ,N a @ F, # T 5@ P c 0 f0 A ! #+ 7 2 E0 a C 2bP A =+4 B@ D ~ `0 A ! #+ H T ! 4 H fj2 c & a & 0 k20 b & , m & < jR jB I! !8Me & 8 ` & C- m & , 8 a U G, # T 5@ P E c 1 f0 A ! %+ 7 2 F0 b ~ `P p , a c NrA A ! * 7 2 F0bP A A *L# 5bP A A *T5<R # P "% 0bp A % , @ " vj2 c & ,Km I 0 A I! r[ !0Om & < 0 &kR jB NS I!8N4 I PK [ !0 n & C-5o & ,Kn & , ,5m & ,N a R G, # T 5@ P E c 1 f0 A ! -+ 7 2 F0 b ~ ` p , a c N2bP A A %+@ B ~ ` A ! -+ 0 ~ ` T H H } ` CsIh 6K``8 vj2 c & a & 0 n & 0 Fk20 b & , m & < kR jB I! !0 n & 8 ` & C- n & C-5n & ,Kn & , ,5m & ,N a = F, # T 5@ P c 0 f0 A ! ++ 7 2 E0 a C ~ ` p , Q # p 3bP A *<%(R ! 0bp A %1 ,A @ fj2 c & a & 0 j20 b & , m & C-5m & < jR jB I!8N4X I! ! b & ,N a $ D, T 5 C` ~ ` pCP , 0 # Q !# G O Ip 6j2 c & < } I!8N4 ! b & , m & ,N a * D, T 5 C` ~ ` pCP , 0 # Q !# G O Ip 6j2 c & < } I!8N4 ! b & , m & ,N !1 A + a $ D, T 5 C` ~ ` pCP , 0 # Q !# G N Ip 6j2 c & < } I!8N4 ! b & , m & ,N a * D, T 5 C` ~ ` pCP , 0 # Q !# G N Ip 6j2 c & < } I!8N4 ! b & , m & ,N !1 A + a @ F, # T 5@ P c 0 f0 A ! #+ 7 2 E0 a C 2bP A =+4 B@ D ~ `0 A ! #+ H T ! h H fj2 c & a & 0 k20 b & , m & < jR jB I! !8Me & 8 ` & C- m & , 8 a J F, # T 5@ P c 0 f0 A ! #+ 7 2 E0 a C 2bP A =+4 B@ D ~ `0 A ! #+ H T ! h H fj2 c & a & 0 k20 b & , m & < jR jB I! !8Me & 8 ` & C- m & , 8 !1 A +,( ! ^VXP B a U G, # T 5@ P E c 1 f0 A ! %+ 7 2 F0 b ~ `P p , a c NrA A ! * 7 2 F0bP A A *L# 5bP A A *T5<R # P "% 0bp A % , @ " vj2 c & ,Km I 0 A I! r[ !0Om & < 0 &kR jB NS I!8N4 I PK [ !0 n & C-5o & ,Kn & , ,5m & ,N a b G, # T 5@ P E c 1 f0 A ! %+ 7 2 F0 b ~ `P p , a c NrA A ! * 7 2 F0bP A A *L# 5bP A A *T5<R # P "% 0bp A % , @ " vj2 c & ,Km I 0 A I! r[ !0Om & < 0 &kR jB NS I!8N4 I PK [ !0 n & C-5o & ,Kn & , ,5m & ,N !1 A +,( ! @WXP B [aA1 @ a R G, # T 5@ P E c 1 f0 A ! -+ 7 2 F0 b ~ ` p , a c N2bP A A %+@ B ~ ` A ! -+ 0 ~ ` T H H } ` G?Ih 6K``8 vj2 c & a & 0 n & 0 Fk20 b & , m & < kR jB I! !0 n & 8 ` & C- n & C-5n & ,Kn & , ,5m & ,N a _ G, # T 5@ P E c 1 f0 A ! -+ 7 2 F0 b ~ ` p , a c N2bP A A %+@ B ~ ` A ! -+ 0 ~ ` T H H } ` G=Ih 6K``8 vj2 c & a & 0 n & 0 Fk20 b & , m & < kR jB I! !0 n & 8 ` & C- n & C-5n & ,Kn & , ,5m & ,N !1 A +,( ! NWXP B [aA1 a = F, # T 5@ P c 0 f0 A ! ++ 7 2 E0 a C ~ ` p , Q # p 3bP A *<%(R ! 0bp A $1 ,A @ fj2 c & a & 0 j20 b & , m & C-5m & < jR jB I!8N4X I! ! b & ,N a G F, # T 5@ P c 0 f0 A ! ++ 7 2 E0 a C ~ ` p , Q # p 3bP A *<%(R ! 0bp A $1 ,A @ fj2 c & a & 0 j20 b & , m & C-5m & < jR jB I!8N4X I! ! b & ,N !1 A +,( ! VXP B a M, T %@ P c ! 0F ,? Y h 0 c \ * v n 1F 3 aP 9A 3 aP 9A # | c 7 ~ , 3 P4 , ` FC 2 EPG# A ! 2K 7$ G 2 H0bP A 7 T , S ## F D 2$J0bp ( 8!D , 2bp ( 7!D , R $ !) { A B0bP 8Q } ` ,N A b , 3 b@ A { DP 0 kb /Nc ! R lb ,uo & D 6m & < FkB I H ! b j2 c & < m & [ JH 2 0 P 0 , , o o , iR kb 5 a A, d## @\`#2 ` t @ 6j2 c & < @3 ! d & [ x :^: } o 1 a D K, 5 T %@62 @$0 c 0 fI ? Y h 0 c @ 0 @$0 ? ` c \ * 0 &H c w n v n 1 0 / 3 dP 9Q 3 dP 9Q 3 dP 9Q 3 dP 9Q # K pC ' 6" x D\`#R $ B `pG8I(W5bP A $ 7 2 A0bP A A $ 7 L7 F0K T 8 ! w D i# QO pC , 1 # E QO T 7 e d 0bp A % ~ ` GeI A , R q2b` A A % ! w w d0bP A % 7 j ` JhI e@ w D ~ ` GmI A ,C # * Z : ( E t 0 @k@ tC 0K <Ap@ }d A y B0bP A % # F ^ BP p 6 h0 t , 2PA B } D FkbH B ,5n & ,K ! R vm H B SN[ ! R m H B Sn[ " !L9n & <FD _8 _ D D, 0 ) ,6m & <FD _8 _ D D, 0 p 9 DE lb 0o +!Q l D- _ ! b jb I ,6o & , ! b fn D- o '0 N W 09 / !Lxo & C-6l LN 8K &0 N W 09 / !L jR jR iR Fn gD !LN K B S~ ! r nb , n & [ J ! r l LN 8 ] I P m[ !0 n & < A 8 b &kRH 5 6m LN 8 I! ! k H B [ vl H B 19 , mRHTp mR p 6nRHTp kB ! R kb , a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G&I B !0 A ! D0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y D I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y D I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y D I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a [ A, c # Az A ! P # { @ ! } % 2bp A A 7! ! }0 D a0bp A A 7! B% ~ ` M 2bp A A 7 ! } 0# ? A! ! } p 5 0b` A 5 P # jb ,um & ,K [ ! R 6kb &k2 ` & D 6jR VjR fjR jR vj20 b & , n & , n & D un & , ,5m & [ xl & [ a = D, c # Az pC00 C @ , 0P Lp # = 1bP A # ~ ` M 0bP A 7 7 3 0 @E ` !d j2 c & D Vj > I! R I! b I! r I! _ / 7 ! O a & < 4o O I , iR jR a Z F, @!0F # z A ! D1 y 7 w % {E pC A 2 A0 p( pC % ; P p ~ ` dM z # E B} A ! ` DcB b \ f 0P % fj2 c & ,K] ! R jr 8 a & ,K} !0Oo & D Vk D T O[ I! R D 4 jB [ !0 o & "5@c & un & n & , ,5m & [ xl & [ a K, A!0F c ~A P # V J A 70 1 @ pC a ( P0 @ %DRC$# ? BPD M F ? A0H & X \ ;b` A $ # AJ AQ %# J Q & @E h P $ [ 7 H ~ ` zM g0K T A l ^ [K @G 0 `F @ F jR kb % Nd & fk2H b & [ 8+ lRHT` j { !0Om & < o O : ) , , : Bl ,6m & < kB0 r P n & C- 0 Q $ /Nc $ /Nc I H P B I H 4 [ I! [ I PKm I!0O I PK I! 4 ! b & ,K] I : a E, D c A62 0 D c ! G A 0 P # H A ! yD 2 6"# H y 7 Kp p a pC t t K 74 \`#RC 7 \`#RD } ` K&I\# E I W ATtm ! pC ,C c f c ^ ! b0bp A + $1 , 0PA c I 7 g ! ! !<i0bp A + $1 , 1PA I &kbH B Nd & NT jB H 4 m & < ) o O : qM jRH 5 l LN 8 ! b kb '0 N W 09 / !L6o & <um & , ! d & D\SM[ I!0O ! T lB8 m D m & D kbH 5 d jR jR FlbLN 8 A , n & <FD _8 _ D D, 0 ! b & [ xl & [ a # A, $$3 c @@ P D 3 T # %0 @ 1 P gN r 2( 2b` A A #! c M2 (# A> B0 @, C 4 jR jB I : I :. a ' A, T$3 c @@d:E " W ^A ; p a # Q< BpA d u xA $ ,xA $ # > DpA d D ` d3 kR VkB ! b & [ xl & [ a F A, $3 c @@f:E "S 4E b w a ; C # < BpA f u(xA $ 4xA $ # ? DpA f L7 ` ( L . L B $ " L 3 lu ^P p l}a )\@ ;b` A A $A ^` a \ `/@ lb , H# , 5 H# ,&lR d iR jR a A, $3 c @@g:E "S 4E bS L h0E r ; , C ,# = BpA g u8xA $ DxA $ # H DpA g \7 ` 0 L 6 L B h% " L 3 [ e W xA $ # M DpA g j 2 H`K /(S v > K .( L : A A e ^P p ! } \P { ~p > L Q . 10 t/8 nP xA $ )\@ ;b` A A &A ^p aA,\ *k+` a/X ! lb o ,vn & ,K [ I 4R^ ! b kR t vkR ob0 H# )8n & ,Ko & Hwo & H ) ` & , } o ,v a A, %0 # R9 B0 E0 c A8 iR m j ms T , a A, # %@}1 c c 1bP A . # ! A ! D0 0 ! @ @ iR m j ms T , jR a 3 A, # %@ 0 P 3 D s cN 9Q @ hN 9A P d 3 D s cN 9Q X c @@ c 3bP A . # !H A ! D D0 0 !,c 2bP A . # 2 2 P C!, @ @ iR m j ms T ,&kR fkR a I A, # %@ 0 P 3 s cN 9Q D T %P s gN 9Q D e@ 1 @ 1 1 eN 9A P s cN 9Q D T @ 1 1 eN 9A P c @@ c @P c 4bP A . # !\ A ! D0 0 !@c 4bP A . # 2 4 P C!8c ` ~ ` K"I U 2 4 P A A iR m j ms T ,vkR kR lR a 6 A, T %@e2 @ 1 @ 1 @ 0 P e0 @ 1 R D fN 9 hN 9A 1 A A 1 $ 3 kS 9Q `0N H C D F d d a c @ I d e RV 2 3 p D8 iR m j ms T $oq - < ,6kR a p A, 3 T %@i2 @ 1 @ 1 @ 0 P e0 @ 1 T D fN 9 hN 9 hN 9 hN 9A 1 A A P %R$eB 1 T D fN 9 mN 9 hN 9 hN 9A 1 $ B P P @ 1 T D fN 9 sN 9 mN 9 hN 9A 1 4 C 1 @ $ E 3 kS 9Q e `0N H CpID F d 2j c @ d k $RV 2 6 p A5b` 8 $ 8 x G0Q e !0 0 d8 k 10F ` X A @ ` 0 V 2 m G s @ @ iR m j ms T $oq - < , kR flR lR a A, %0 # R9 B0 E0 c A8 iR m j ms T , a A, # %@}1 c c 1bP A . # ! A ! D0 0 ! @ @ iR m j ms T , jR a 3 A, # %@ 0 P 3 D s cN 9Q @ hN 9A P d 3 D s cN 9Q X c @@ c 3bP A . # !H A ! D D0 0 !,c 2bP A . # 2 2 P C!, @ @ iR m j ms T ,&kR fkR a I A, # %@ 0 P 3 s cN 9Q D T %P s gN 9Q D e@ 1 @ 1 1 eN 9A P s cN 9Q D T @ 1 1 eN 9A P c @@ c @P c 4bP A . # !\ A ! D0 0 !@c 4bP A . # 2 4 P C!8c ` ~ ` K"I U 2 4 P A A iR m j ms T ,vkR kR lR a 6 A, T %@e2 @ 1 @ 1 @ 0 P e0 @ 1 R D fN 9 hN 9A 1 A A 1 $ 3 kS 9Q `0N H C D F d d a c @ I d e RV 2 3 p D8 iR m j ms T $oq - < ,6kR a p A, 3 T %@i2 @ 1 @ 1 @ 0 P e0 @ 1 T D fN 9 hN 9 hN 9 hN 9A 1 A A P %R$eB 1 T D fN 9 mN 9 hN 9 hN 9A 1 $ B P P @ 1 T D fN 9 sN 9 mN 9 hN 9A 1 4 C 1 @ $ E 3 kS 9Q e `0N H CpID F d 2j c @ d k $RV 2 6 p A5b` 8 $ 8 x G0Q e !0 0 d8 k 10F ` X A @ ` 0 V 2 m G s @ @ iR m j ms T $oq - < , kR flR lR a A, %0 # R9 B0 E0 c A8 iR m j ms T , a A, # %@}1 c c 1bP A . # ! A ! D0 0 ! @ @ iR m j ms T , jR a 3 A, # %@ 0 P 3 D s cN 9Q @ hN 9A P d 3 D s cN 9Q X c @@ c 3bP A . # !H A ! D D0 0 !,c 2bP A . # 2 2 P C!, @ @ iR m j ms T ,&kR fkR a I A, # %@ 0 P 3 s cN 9Q D T %P s gN 9Q D e@ 1 @ 1 1 eN 9A P s cN 9Q D T @ 1 1 eN 9A P c @@ c @P c 4bP A . # !\ A ! D0 0 !@c 4bP A . # 2 4 P C!8c ` ~ ` K"I U 2 4 P A A iR m j ms T ,vkR kR lR a 6 A, T %@e2 @ 1 @ 1 @ 0 P e0 @ 1 R D fN 9 hN 9A 1 A A 1 $ 3 kS 9Q `0N H C D F d d a c @ I d e RV 2 3 p D8 iR m j ms T $oq - < ,6kR a p A, 3 T %@i2 @ 1 @ 1 @ 0 P e0 @ 1 T D fN 9 hN 9 hN 9 hN 9A 1 A A P %R$eB 1 T D fN 9 mN 9 hN 9 hN 9A 1 $ B P P @ 1 T D fN 9 sN 9 mN 9 hN 9A 1 4 C 1 @ $ E 3 kS 9Q e `0N H CpID F d 2j c @ d k $RV 2 6 p A5b` 8 $ 8 x G0Q e !0 0 d8 k 10F ` X A @ ` 0 V 2 m G s @ @ iR m j ms T $oq - < , kR flR lR a A, %0 # , B0 E c A8 iR E j E s T , a A, # %@}1 c c 1bP A J " ! A ! +u D0 0 ! @ @ iR E j E s T , jR a 3 A, # %@ 0 P 3 D s cN 9Q @ hN 9A P 3 D s cN 9Q X c @@ c 3bP A J " !H A ! + D0 0 !,c 2bP A J # 2 2 P C!, @ @ iR E j E s T ,&kR fkR a I A, # %@ 0 P 3 s cN 9Q D T %P s gN 9Q D e@z1 @ 1 1 eN 9A P s cN 9Q D T @ 1 1 eN 9A P c @@ c @P c 4bP A J # !\ A ! +e D0 0 !@c 4bP A J # 2 4 P C!8c ` ~ ` R H U 2 4 P A lR iR E j E s T ,vkR kR a 6 A, T %@ 1 @ 1 @ 1 @ 0 P e0 @ 1 R D fN 9 hN 9A 1 A A 1 $ 3 (S 9A ` S H C D d d a c @ b d e R 2 3 p D8 iR E j E s T $oQ - < , , a p A, 3 T %@ 1 @ 1 @ 1 @ 0 P e0 @ 1 T D fN 9 hN 9 hN 9 hN 9A 1 A A P %R$eB 1 T D fN 9 mN 9 hN 9 hN 9A 1 $ B P P @ 1 T D fN 9 sN 9 mN 9 hN 9A 1 4 C 1 @ $ E 3 (S 9A e ` S H CpID d 2j c @ bj d k $R 2 6 p A5b` AL # 8 x G0Q d !0 0 d8 k 10F A @ ` 0 2 m G s @ @ lR flR iR E j E s T $oQ - < , , a A, %0 # , B0 E c A8 iR E j E s T , a A, # %@}1 c c 1bP A J " ! A ! +u D0 0 ! @ @ iR E j E s T , jR a 3 A, # %@ 0 P 3 D s cN 9Q @ hN 9A P 3 D s cN 9Q X c @@ c 3bP A J " !H A ! + D0 0 !,c 2bP A J # 2 2 P C!, @ @ iR E j E s T ,&kR fkR a I A, # %@ 0 P 3 s cN 9Q D T %P s gN 9Q D e@z1 @ 1 1 eN 9A P s cN 9Q D T @ 1 1 eN 9A P c @@ c @P c 4bP A J # !\ A ! +e D0 0 !@c 4bP A J # 2 4 P C!8c ` ~ ` R H U 2 4 P A lR iR E j E s T ,vkR kR a 6 A, T %@ 1 @ 1 @ 1 @ 0 P e0 @ 1 R D fN 9 hN 9A 1 A A 1 $ 3 (S 9A ` S H C D d d a c @ b d e R 2 3 p D8 iR E j E s T $oQ - < , , a p A, 3 T %@ 1 @ 1 @ 1 @ 0 P e0 @ 1 T D fN 9 hN 9 hN 9 hN 9A 1 A A P %R$eB 1 T D fN 9 mN 9 hN 9 hN 9A 1 $ B P P @ 1 T D fN 9 sN 9 mN 9 hN 9A 1 4 C 1 @ $ E 3 (S 9A e ` S H CpID d 2j c @ bj d k $R 2 6 p A5b` AL # 8 x G0Q d !0 0 d8 k 10F A @ ` 0 2 m G s @ @ lR flR iR E j E s T $oQ - < , , a A, %0 # , B0 E c A8 iR E j E s T , a A, # %@}1 c c 1bP A J " ! A ! +u D0 0 ! @ @ iR E j E s T , jR a 3 A, # %@ 0 P 3 D s cN 9Q @ hN 9A P 3 D s cN 9Q X c @@ c 3bP A J " !H A ! + D0 0 !,c 2bP A J # 2 2 P C!, @ @ iR E j E s T ,&kR fkR a I A, # %@ 0 P 3 s cN 9Q D T %P s gN 9Q D e@z1 @ 1 1 eN 9A P s cN 9Q D T @ 1 1 eN 9A P c @@ c @P c 4bP A J # !\ A ! +e D0 0 !@c 4bP A J # 2 4 P C!8c ` ~ ` R H U 2 4 P A lR iR E j E s T ,vkR kR a 6 A, T %@ 1 @ 1 @ 1 @ 0 P e0 @ 1 R D fN 9 hN 9A 1 A A 1 $ 3 (S 9A ` S H C D d d a c @ b d e R 2 3 p D8 iR E j E s T $oQ - < , , a p A, 3 T %@ 1 @ 1 @ 1 @ 0 P e0 @ 1 T D fN 9 hN 9 hN 9 hN 9A 1 A A P %R$eB 1 T D fN 9 mN 9 hN 9 hN 9A 1 $ B P P @ 1 T D fN 9 sN 9 mN 9 hN 9A 1 4 C 1 @ $ E 3 (S 9A e ` S H CpID d 2j c @ bj d k $R 2 6 p A5b` AL # 8 x G0Q d !0 0 d8 k 10F A @ ` 0 2 m G s @ @ lR flR iR E j E s T $oQ - < , , a ) F, T EP Q eQ P R@ # + ) m C 4 a " ( f Y b %( Z N j X 3 Rm & 2\O 0 irH ,Dd & jB S ,> a ! A, T # S H # + ( m C @ 2 j2 c & 2\O 0 irH ,Dd & vj , Rm & , > a A, T # P # + t m C Fjr D c & 0 BD j2 ` & _, ! 6jB a A, T E a v X C" . j <Vj NS L ib8E! ,&jr ?S a A, %@ P E @ `G U A0 +>$ j < ib8E! 8 TD4 m & , 0 P a A, e@ P E @ `G U A0 -=$ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ `G U A08-<$ j < ib8E! 8 TD4 n & , 0 P a A, e@ P E @ `G U A0X-;$ 2 j < ib8E! ,Fjr ?Sd & C-vj NS L< a A, @ P E @ `G U A0x-:$ 4 j <vj NS L n & S 1 ! b & 0 3E6j20 a A, T E a `Zv X C" . j <Vj NS L ib8E! ,&jr ?S a A, %@ P E @ eG U A0 -8$ j < ib8E! 8 TD4 m & , 0 P a A, e@ P E @ eG U A0 -7$ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ eG U A0 /6$ j < ib8E! 8 TD4 n & , 0 P a A, e@ P E @ eG U A0 /5$ 2 j < ib8E! ,Fjr ?Sd & C-vj NS L< a A, @ P E @ eG U A0@/4$ 4 j <vj NS L n & S 1 ! b & 0 3E6j20 a A, T E a ]v X "C" . j <Vj NS L ib8E! ,&jr ?S a A, %@ P E @ eG U A0 /2$ j < ib8E! 8 TD4 m & , 0 P a A, e@ P E @ eG U A0 /1$ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ eG U A0 /0$ j < ib8E! 8 TD4 n & , 0 P a A, e@ P E @ eG U A0 / $ 2 j < ib8E! ,Fjr ?Sd & C-vj NS L< a A, @ P E @ eG U A0 1 $ 4 j <vj NS L n & S 1 ! b & 0 3E6j20 a A, T E a `v X A" . j <Vj NS L ib8E! ,&jr ?S a A, %@ P E @ fG U A0X1 $ j < ib8E! 8 TD4 m & , 0 P a A, e@ P E @ fG U A0x1 $ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ fG U A0 1 $ j < ib8E! 8 TD4 n & , 0 P a A, e@ P E @ fG U A0 1 $ 2 j < ib8E! ,Fjr ?Sd & C-vj NS L< a A, @ P E @ fG U A0 1 $ 4 j <vj NS L n & S 1 ! b & 0 3E6j20 a A, T E a v X C" . j <Vj NS L ib8E! ,&jr ?S a A, %@ P E @ `G U A0 +>$ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ `G U A0 -=$ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ `G U A08-<$ j < ib8E! 8 TD4 n & , 0 P a A, e@ P E @ `G U A0X-;$ 2 j < ib8E! ,Fjr ?Sd & C-vj NS L< a A, @ P E @ `G U A0x-:$ 4 j <vj NS L n & S 1 ! b & 0 3E6j20 a A, T E a `Zv X C" . j <Vj NS L ib8E! ,&jr ?S a A, %@ P E @ eG U A0 -8$ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ eG U A0 -7$ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ eG U A0 /6$ j < ib8E! 8 TD4 n & , 0 P a A, e@ P E @ eG U A0 /5$ 2 j < ib8E! ,Fjr ?Sd & C-vj NS L< a A, @ P E @ eG U A0@/4$ 4 j <vj NS L n & S 1 ! b & 0 3E6j20 a A, T E a ]v X "C" . j <Vj NS L ib8E! ,&jr ?S a A, %@ P E @ eG U A0 /2$ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ eG U A0 /1$ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ eG U A0 /0$ j < ib8E! 8 TD4 n & , 0 P a A, e@ P E @ eG U A0 / $ 2 j < ib8E! ,Fjr ?Sd & C-vj NS L< a A, @ P E @ eG U A0 1 $ 4 j <vj NS L n & S 1 ! b & 0 3E6j20 a A, T E a `v X A" . j <Vj NS L ib8E! ,&jr ?S a A, %@ P E @ fG U A0X1 $ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ fG U A0x1 $ j < ib8E! 8 TD4 m & , 0 P a A, E@ P E @ fG U A0 1 $ j < ib8E! 8 TD4 n & , 0 P a A, e@ P E @ fG U A0 1 $ 2 j < ib8E! ,Fjr ?Sd & C-vj NS L< a A, @ P E @ fG U A0 1 $ 4 j <vj NS L n & S 1 ! b & 0 3E6j20 a A, %@ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B l ` j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ c B , ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ c B l ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B , ` j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ c B @ ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B H ` j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ c B Pm ` j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ c B X- ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B ` ` j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ c B h ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B pm ` j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ c B x- ` j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ c B m ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B - ` j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ `G U A0 7 " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0 7 " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ `G U A0 7 " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0 9 " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ `G U A0 9 " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0@9 " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0`9 " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0 9 " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 9 " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0 9 " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0 9 " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 ; " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0(; " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0H; " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0h; " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ fG U A0 ; " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0 ; " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ fG U A0 ; " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0 ; " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ fG U A0 = " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ `G U A0(= " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0H= " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ `G U A0h= " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0 = " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ `G U A0 = " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0 = " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 = " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0 ? " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0(? " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0H? " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0p? " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 ? " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0 ? " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 ? " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0 ? " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A00 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ fG U A0P j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0p @ j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E ;@ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E ;@ `G U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E ;@ `G U A00 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E ;@ eG U A0X j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ eG U A0x @ j < ib8E! ,Fjr ?Sd & C- a A, E@ P E ;@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E ;@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E ;@ eG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E ;@ eG U A0@ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ eG U A0` j < ib8E! ,Fjr ?Sd & C- a A, @ P E ;@ eG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, %@ P E ;@ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E ;@ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ fG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, @ P E ;@ fG U A0( j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ `G U A0 7[ " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0 7Z " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ `G U A0 7Y " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0 9X " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ `G U A0 9W " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0@9V " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0`9U " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0 9T " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 9S " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0 9R " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0 9Q " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 ;P " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0(;? " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0H;> " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0h;= " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ fG U A0 ;< " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0 ;; " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ fG U A0 ;: " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0 ;9 " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ fG U A0 =8 " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ `G U A0H j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ `G U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0( @ j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0H j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0h j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A00 @ j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ fG U A0P j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B l ` j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ c B , ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ c B l ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B , ` j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ c B @ ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B H ` j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ c B Pm ` j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ c B X- ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B ` ` j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ c B h ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B pm ` j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ c B x- ` j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ c B m ` j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ c B - ` j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ c B ` j < ib8E! ,Fjr ?Sd & C- a A, %@ P E ;@ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E ;@ `G U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E ;@ `G U A00 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E ;@ eG U A0X j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ eG U A0x @ j < ib8E! ,Fjr ?Sd & C- a A, E@ P E ;@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E ;@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E ;@ eG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E ;@ eG U A0@ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ eG U A0` j < ib8E! ,Fjr ?Sd & C- a A, @ P E ;@ eG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, %@ P E ;@ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E ;@ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E ;@ fG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, @ P E ;@ fG U A0( j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ `G U A0H j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ `G U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0( @ j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0H j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0h j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A00 @ j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ fG U A0P j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E C@ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E C@ `G U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E C@ `G U A00 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E C@ `G U A0P j < ib8E! ,Fjr ?Sd & C- a A, @ P E C@ `G U A0p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E C@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E C@ eG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, E@ P E C@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E C@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E C@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, %@ P E C@ eG U A08 @ j < ib8E! ,Fjr ?Sd & C- a A, e@ P E C@ eG U A0X j < ib8E! ,Fjr ?Sd & C- a A, E@ P E C@ eG U A0x j < ib8E! ,Fjr ?Sd & C- a A, e@ P E C@ eG U A0 j < ib8E! ,Fjr ?Sd & C- a A, @ P E C@ eG U A0 @ j < ib8E! ,Fjr ?Sd & C- a A, %@ P E C@ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E C@ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, E@ P E C@ fG U A0 j < ib8E! ,Fjr ?Sd & C- a A, e@ P E C@ fG U A08 @ j < ib8E! ,Fjr ?Sd & C- a A, @ P E C@ fG U A0X j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ `G U A0 +>$ " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0 -=$ " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ `G U A08-<$ " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ `G U A0X-;$ " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ `G U A0x-:$ " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0 -8$ " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 -7$ " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0 /6$ " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 /5$ " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0@/4$ " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ eG U A0 /2$ " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 /1$ " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ eG U A0 /0$ " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ eG U A0 / $ " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ eG U A0 1 $ " p j < ib8E! ,Fjr ?Sd & C- a A, %@ P E @ fG U A0X1 $ " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0x1 $ " p j < ib8E! ,Fjr ?Sd & C- a A, E@ P E @ fG U A0 1 $ " p j < ib8E! ,Fjr ?Sd & C- a A, e@ P E @ fG U A0 1 $ " p j < ib8E! ,Fjr ?Sd & C- a A, @ P E @ fG U A0 1 $ " p j < ib8E! ,Fjr ?Sd & C- a A, T E a ' B 4 A j <Vj NS R D DL iB L a A, %@ P E @ ` 18 `O Y p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` 18 O X p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` A 18 `T W p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` y 18 T V p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ ` 18 `U U p j < jb8E! } 0 vj" NS R M 0 P a A, T E a `Z ' B ^50 A j <Vj NS R D DL iB L a A, %@ P E @ e 18 `V S p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e 18 V R p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e A 18 `W Q p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e y 18 W P p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ e 18 `\ ? p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ` ' B 5 A j <Vj NS R D DL iB L a A, %@ P E @ f 18 `] = p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f 18 ] < p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f A 18 `^ ; p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f y 18 ^ : p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ f 18 `_ 9 p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ' B 4 A j <Vj NS R D DL iB L a A, %@ P E @ ` 18 `O Y p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` 18 O X p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` A 18 `T W p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` y 18 T V p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ ` 18 `U U p j < jb8E! } 0 vj" NS R M 0 P a A, T E a `Z ' B ^50 A j <Vj NS R D DL iB L a A, %@ P E @ e 18 `V S p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e 18 V R p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e A 18 `W Q p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e y 18 W P p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ e 18 `\ ? p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ` ' B 5 A j <Vj NS R D DL iB L a A, %@ P E @ f 18 `] = p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f 18 ] < p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f A 18 `^ ; p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f y 18 ^ : p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ f 18 `_ 9 p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ' B 4 A j <Vj NS R D DL iB L a A, %@ P E @ ` 18 `O Y p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` 18 O X p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` A 18 `T W p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` y 18 T V p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ ` 18 `U U p j < jb8E! } 0 vj" NS R M 0 P a A, T E a `Z ' B ^50 A j <Vj NS R D DL iB L a A, %@ P E @ e 18 `V S p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e 18 V R p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e A 18 `W Q p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e y 18 W P p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ e 18 `\ ? p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ` ' B 5 A j <Vj NS R D DL iB L a A, %@ P E @ f 18 `] = p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f 18 ] < p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f A 18 `^ ; p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f y 18 ^ : p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ f 18 `_ 9 p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ' B 4 A j <Vj NS R D DL iB L a A, %@ P E @ ` 18 `O Y p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` 18 O X p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` A 18 `T W p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` y 18 T V p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ ` 18 `U U p j < jb8E! } 0 vj" NS R M 0 P a A, T E a `Z ' B ^50 A j <Vj NS R D DL iB L a A, %@ P E @ e 18 `V S p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e 18 V R p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e A 18 `W Q p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e y 18 W P p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ e 18 `\ ? p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ` ' B 5 A j <Vj NS R D DL iB L a A, %@ P E @ f 18 `] = p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f 18 ] < p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f A 18 `^ ; p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f y 18 ^ : p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ f 18 `_ 9 p j < jb8E! } 0 vj" NS R M 0 P a A, T E a v w0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0 ~ d = dy j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0( ~ d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A08 `~ d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0H ~ d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0X } d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv w0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0 ~ d Y Ly j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0( ~ d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A08 `~ d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0H ~ d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0X } d q x j < jb8E! } 0 vjB X L a A, T E a `v w0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0 ~ d u x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0( ~ d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A08 `~ d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0H ~ d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0X } d } x j < jb8E! } 0 vjB X L a A, T E a v ~w0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0x w d = dy j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0 w d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0 `w d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0 w d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0 v d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv ~w0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0x w d Y Ly j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0 w d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0 `w d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0 w d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0 v d q x j < jb8E! } 0 vjB X L a A, T E a `v ~w0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0x w d u x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0 w d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0 `w d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0 w d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0 v d } x j < jb8E! } 0 vjB X L a A, T E a v Nw0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0 t d = dy j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0( t d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A08 `t d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0H t d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0X o d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv Nw0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0 t d Y Ly j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0( t d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A08 `t d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0H t d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0X o d q x j < jb8E! } 0 vjB X L a A, T E a `v Nw0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0 t d u x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0( t d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A08 `t d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0H t d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0X o d } x j < jb8E! } 0 vjB X L a A, T E a v v0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0x m d = dy j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0 m d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0 `m d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0 m d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0 l d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv v0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0x m d Y Ly j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0 m d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0 `m d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0 m d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0 l d q x j < jb8E! } 0 vjB X L a A, T E a `v v0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0x m d u x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0 m d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0 `m d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0 m d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0 l d } x j < jb8E! } 0 vjB X L a A, T E a v nv0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0 f d = dy j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0( f d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A08 `f d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0H f d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0X e d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv nv0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0 f d Y Ly j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0( f d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A08 `f d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0H f d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0X e d q x j < jb8E! } 0 vjB X L a A, T E a `v nv0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0 f d u x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0( f d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A08 `f d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0H f d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0X e d } x j < jb8E! } 0 vjB X L a A, T E a v u0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0x _ d = dy j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0 _ d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0 `_ d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0 _ d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0 ^ d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv u0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0x _ d Y Ly j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0 _ d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0 `_ d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0 _ d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0 ^ d q x j < jb8E! } 0 vjB X L a A, T E a `v u0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0x _ d u x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0 _ d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0 `_ d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0 _ d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0 ^ d } x j < jb8E! } 0 vjB X L a A, T E a ' B 4 A j <Vj NS R D DL iB L a A, %@ P E @ ` 18 `O Y p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` 18 O X p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` A 18 `T W p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` y 18 T V p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ ` 18 `U U p j < jb8E! } 0 vj" NS R M 0 P a A, T E a `Z ' B ^50 A j <Vj NS R D DL iB L a A, %@ P E @ e 18 `V S p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e 18 V R p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e A 18 `W Q p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e y 18 W P p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ e 18 `\ ? p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ` ' B 5 A j <Vj NS R D DL iB L a A, %@ P E @ f 18 `] = p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f 18 ] < p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f A 18 `^ ; p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f y 18 ^ : p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ f 18 `_ 9 p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ' B 4 A j <Vj NS R D DL iB L a A, %@ P E @ ` 18 `O Y p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` 18 O X p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` A 18 `T W p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` y 18 T V p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ ` 18 `U U p j < jb8E! } 0 vj" NS R M 0 P a A, T E a `Z ' B ^50 A j <Vj NS R D DL iB L a A, %@ P E @ e 18 `V S p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e 18 V R p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e A 18 `W Q p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e y 18 W P p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ e 18 `\ ? p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ` ' B 5 A j <Vj NS R D DL iB L a A, %@ P E @ f 18 `] = p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f 18 ] < p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f A 18 `^ ; p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f y 18 ^ : p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ f 18 `_ 9 p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ' B 4 A j <Vj NS R D DL iB L a A, %@ P E @ ` 18 `O Y p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` 18 O X p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` A 18 `T W p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` y 18 T V p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ ` 18 `U U p j < jb8E! } 0 vj" NS R M 0 P a A, T E a `Z ' B ^50 A j <Vj NS R D DL iB L a A, %@ P E @ e 18 `V S p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e 18 V R p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e A 18 `W Q p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e y 18 W P p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ e 18 `\ ? p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ` ' B 5 A j <Vj NS R D DL iB L a A, %@ P E @ f 18 `] = p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f 18 ] < p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f A 18 `^ ; p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f y 18 ^ : p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ f 18 `_ 9 p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ' B 4 A j <Vj NS R D DL iB L a A, %@ P E @ ` 18 `O Y p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` 18 O X p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ ` A 18 `T W p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ ` y 18 T V p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ ` 18 `U U p j < jb8E! } 0 vj" NS R M 0 P a A, T E a `Z ' B ^50 A j <Vj NS R D DL iB L a A, %@ P E @ e 18 `V S p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e 18 V R p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ e A 18 `W Q p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ e y 18 W P p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ e 18 `\ ? p j < jb8E! } 0 vj" NS R M 0 P a A, T E a ` ' B 5 A j <Vj NS R D DL iB L a A, %@ P E @ f 18 `] = p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f 18 ] < p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, E@ P E @ f A 18 `^ ; p j < jb8E! D TD4 M } 0 Vjr ?Sd & C- a A, e@ P E @ f y 18 ^ : p j <vj NS R 4 jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ f 18 `_ 9 p j < jb8E! } 0 vj" NS R M 0 P a A, T E a v w0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0 ~ d = dy j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0( ~ d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A08 `~ d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0H ~ d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0X } d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv w0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0 ~ d Y Ly j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0( ~ d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A08 `~ d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0H ~ d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0X } d q x j < jb8E! } 0 vjB X L a A, T E a `v w0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0 ~ d u x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0( ~ d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A08 `~ d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0H ~ d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0X } d } x j < jb8E! } 0 vjB X L a A, T E a v ~w0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0x w d = dy j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0 w d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0 `w d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0 w d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0 v d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv ~w0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0x w d Y Ly j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0 w d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0 `w d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0 w d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0 v d q x j < jb8E! } 0 vjB X L a A, T E a `v ~w0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0x w d u x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0 w d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0 `w d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0 w d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0 v d } x j < jb8E! } 0 vjB X L a A, T E a v Nw0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0 t d = dy j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0( t d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A08 `t d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0H t d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0X o d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv Nw0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0 t d Y Ly j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0( t d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A08 `t d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0H t d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0X o d q x j < jb8E! } 0 vjB X L a A, T E a `v Nw0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0 t d u x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0( t d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A08 `t d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0H t d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0X o d } x j < jb8E! } 0 vjB X L a A, T E a v v0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0x m d = dy j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0 m d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0 `m d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0 m d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0 l d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv v0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0x m d Y Ly j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0 m d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0 `m d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0 m d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0 l d q x j < jb8E! } 0 vjB X L a A, T E a `v v0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0x m d u x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0 m d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0 `m d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0 m d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0 l d } x j < jb8E! } 0 vjB X L a A, T E a v nv0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0 f d = dy j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0( f d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A08 `f d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0H f d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0X e d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv nv0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0 f d Y Ly j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0( f d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A08 `f d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0H f d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0X e d q x j < jb8E! } 0 vjB X L a A, T E a `v nv0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0 f d u x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0( f d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A08 `f d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0H f d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0X e d } x j < jb8E! } 0 vjB X L a A, T E a v u0F > A0 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ `G ? A0x _ d = dy j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0 _ d ? `y j < jb8E! } 0 vjB X L a A, E@ P E @ `G ? A0 `_ d Q \y j < jb8E! } 0 vjB X L a A, e@ P E @ `G ? A0 _ d S Xy j < jb8E! } 0 vjB X L a A, @ P E @ `G ? A0 ^ d U Ty j < jb8E! } 0 vjB X L a A, T E a `Zv u0F > A0x ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ eG ? A0x _ d Y Ly j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0 _ d [ Hy j < jb8E! } 0 vjB X L a A, E@ P E @ eG ? A0 `_ d ] Dy j < jb8E! } 0 vjB X L a A, e@ P E @ eG ? A0 _ d _ @y j < jb8E! } 0 vjB X L a A, @ P E @ eG ? A0 ^ d q x j < jb8E! } 0 vjB X L a A, T E a `v u0F > A08 @ ! 0 j < jb8E! } 0 VjB L a A, %@ P E @ fG ? A0x _ d u x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0 _ d w x j < jb8E! } 0 vjB X L a A, E@ P E @ fG ? A0 `_ d y x j < jb8E! } 0 vjB X L a A, e@ P E @ fG ? A0 _ d { x j < jb8E! } 0 vjB X L a A, @ P E @ fG ? A0 ^ d } x j < jb8E! } 0 vjB X L a A, %@ P E @ B 6 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B 6 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ B F7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B N7p !8 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ B V7` !8 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ B ^7P !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B f7@ !8 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ B n70 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B v7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ B ~7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ B 7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B 7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ B 7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B 7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ B 7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ `G > A0 & !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0 & !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ `G > A0 `& !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0 & !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ `G > A08 % !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ eG > A0X % !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0x `% !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ eG > A0 % !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0 $ !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ eG > A0 $ !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ fG > A0 `$ !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0 $ !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ fG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ fG > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ eG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ eG > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ fG > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E ;@ `G > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E ;@ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E ;@ `G > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E ;@ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ eG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E ;@ eG > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ eG > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E ;@ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E ;@ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E ;@ fG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E ;@ fG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ `G > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ eG > A0X ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0x !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ eG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ fG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0X ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ fG > A0x !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ `G > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0x !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ `G > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ eG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ eG > A0x !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ fG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ fG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ B 6 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B 6 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ B F7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B N7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ B V7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ B ^7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B f7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ B n7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B v7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ B ~7p!8 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ B 7`!8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B 7P!8 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ B 7@!8 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ B 70!8 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ B 7 !8 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E ;@ `G > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E ;@ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E ;@ `G > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E ;@ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ eG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E ;@ eG > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ eG > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E ;@ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E ;@ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E ;@ fG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E ;@ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E ;@ fG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ `G > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ eG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ eG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ eG > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E C@ `G > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E C@ `G > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E C@ `G > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E C@ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E C@ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E C@ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E C@ eG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E C@ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E C@ eG > A08 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E C@ eG > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E C@ fG > A0x ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E C@ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E C@ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E C@ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E C@ fG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ `G > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ `G > A08 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ `G > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ eG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, %@ P E @ fG > A0X !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0x !0 j < jb8E! } 0 Vjr ?Sd & C- a A, E@ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, e@ P E @ fG > A0 ` !0 j < jb8E! } 0 Vjr ?Sd & C- a A, @ P E @ fG > A0 !0 j < jb8E! } 0 Vjr ?Sd & C- a A, T ( # E A @ jB a 0 A, F3 T # %P 3 s aN 91 # T e # z k R 1 A=N( )! B Z b Q ] kR j T 4 d !8Me &DE\ 8 TD4 4 m & 0 jB 1 ,7 a A, T e # B B@2N( 9! b Q ] 6jB NSY ! b & 0H3\FjR a A, T e # B B@1N( 9! b Q ] 6jB NSY ! b & 0H3\FjR a 0 A, F3 T # %P 3 s aN 91 # T e # z0 k R 1 A:N( )! B Z b Q ] kR j T 4 d !8Me &DE\ 8 TD4 4 m & 0 jB 1 ,7 a ( A, D 3 T # %P 3 s aN 91 T e # z C s 2 ~ ` ., ! $@d j T 4 T !8Me &DE\ , ir 4 e & , m & , a A, T e # B B@/N( 9! b Q ] 6jB NSY ! b & 0H3\FjR a A, T e # B B@.N( 9! b Q ] 6jB NSY ! b & 0H3\FjR a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a A ! d iR ` jB a + C, # # % D0@ n 0 e ` * "P P ` f H( 2 FjrLN 8Km & B4> / $ jbLN 8 } , /D A\ / vj 0 L H#X I" 0D>} O a 1 C, # 5P B T X 0 @ - T$C @ * l d 0 n 0 e VjrLN 8 m & R$ 4 @ 3E j2 ` & 1 t D s B L?1 O j ,D m & ! j2,D a $ C, %@ 0 @E{ @ T f A h` @ a ` A0 ` A iB 4 19 ,Fj 4 0D>m & Vj 0 L ,H# ?ST "E C a $ C, # %@ 0 B T$C # F+ { bX@@` !@ ` A , jbD C j ' ! O q D s m & i2 d & q! 4 a U F, # T %P @ P # T EP 5@ 0 @ P ; fQ(@; n E H 7 > A T A 2 np ! ` 6 / f }vC Q ` A $ a l0l@\ ; 3 p0l@ `8 k2 c & ! @ 2\ kBHS X Q RQ PH V L 19 ,Fl2 ` & vlB [ I 4 q M $@ 2\ &l2 a J, T # # T %@ P Ek 9k 9S T 5P~ G P> F P % N A o7DNCB Y a " 98 * 3 c 0 $ ! pCP p 1 A 2 DP % 0K@ T$ ` h: t`0 p @E ~@X 4 # ` 1 ,Ca utZe f B0 ( p !+ 4 e ` %H * ` l $ * @* 3 @*8` H p R vl H 3 I!0 M 19 , , O " b & ! IBD ] 0 B\ t D s !0 m & FmRHGT ! O a & tD m & t O 0VlB ID\ m IQ E\ ? q @DVmb NS 1 Q E - R I0 IB\ [ X !8Me & EN l Q D> / $ k20 b & 4 I 8 P D L ` & 0 uo & C-un & flR P a 0 C, T %0 @ 0 @ P 3 =V 9! 5 { 1 0K T $ # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a / C, T %0 @ 0 @ P 3 Y ( 5 {p m D ,A0PQ0@ \ 3`( $ b 0 pC , j2 ` & X I X 9 @ 2\ jB NSY I D ! e H O jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 gV 91 5 { 1 0K T $ # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 lV 9A 5 { 1 0K T $ 8 # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 qV 9Q 5 { 1 0K T $ l: # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 =V 9! 5 { 1 0K T $ # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a / C, T %0 @ 0 @ P 3 Y ( 5 {p m D ,A0PQ0@ \ 3`( $@ b 0 pC , j2 ` & X I X 9 @ 2\ jB NSY I D ! e H O jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 gV 91 5 { 1 0K T $ # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 lV 9A 5 { 1 0K T $ 8 # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 qV 9Q 5 { 1 0K T $ l: # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 R 91 5 { 1 0K T $ l; # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 , aN \ ;l@ 4 O ( qA N ! @ 3 7 2 A @ j2 ` & X I X 9 @ 2\ jB NSY I D ! e H O jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 )S 9A 5 { 1 0K T $ l= # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 0S 9Q 5 { 1 0K T $ l> # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 7S 9a 5 { 1 0K T $ l? # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 R 91 5 { 1 0K T $ l; # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 , aN \ ;l@ 4 O ( qA N ! @ 3 7 2 A @ j2 ` & X I X 9 @ 2\ jB NSY I D ! e H O jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 )S 9A 5 { 1 0K T $ l= # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 0S 9Q 5 { 1 0K T $ l> # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 7S 9a 5 { 1 0K T $ l? # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 R 9A 5 { 1 0K T $ l@ # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 "- aN \ P ;l@ B 4 [P (( qA N ! @ 3 7 2 A @ j2 ` & X I X 9 @ 2\ jB NSY I D ! e H O jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 +S 9Q 5 { 1 0K T $ lB # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 2S 9a 5 { 1 0K T $ lC # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 9S 9q $ 5 { 1 0K T $ lD # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 R 9A 5 { 1 0K T $ l@ # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 "- aN \ P ;l@ B 4 [P (( qA N ! @ 3 7 2 A @ j2 ` & X I X 9 @ 2\ jB NSY I D ! e H O jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 +S 9Q 5 { 1 0K T $ lB # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 2S 9a 5 { 1 0K T $ lC # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 9S 9q $ 5 { 1 0K T $ lD # ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a A, T %@ P T Av7 W D Q D)\`0; 0 AbG A { ! F @ i" @dH @n & a A, T %@ P0T Av7 W D P 9a 5 { cpC 0b P a`8 i" @dH @n &G L M jB ! a A, T %@ P@T Av7 W D(E p \ 2l@ $ q. a i" @dH @n & a A, T %@ P T Av7 W D cP 9q 5 { c0l@ $ q. a i" @dH @n & a A, T %@ P T Av7 W D cP 9 5 { c0l@ $ q. a i" @dH @n & a A, T %@ P T Av7 W D Q D)\`0; 0 AbG A { ! F @ i" @dH @n & a A, T %@ P0T Av7 W D P 9a 5 { cpC 0b P a`8 i" @dH @n &G L M jB ! a A, T %@ P@T Av7 W D(E p \ 2l@ $ q. a i" @dH @n & a A, T %@ P T Av7 W D cP 9q 5 { c0l@ $ q. a i" @dH @n & a A, T %@ P T Av7 W D cP 9 5 { c0l@ $ q. a i" @dH @n & a 0 C, T %0 @ 0 @ P 3 R 91 H 5 { 1 0K T $ H # ! ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 3- aN \ G 0 ;l@ 4 {R (x qA ! @ 3 7 2 A @ j2 ` & X I X 9 @ 2\ jB NSY I D ! e H O jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 (S 9A X 5 { 1 0K T $ J # ! ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 /S 9Q ` 5 { 1 0K T $ K # ! ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 6S 9a h 5 { 1 0K T $ L # ! ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 vS 9A p 5 { 1 0K T $ M # ! ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 =- aN \ G %;l@ B 4 S ( qA ! @ 3 7 2 A @ j2 ` & X I X 9 @ 2\ jB NSY I D ! e H O jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 kS 9Q | 5 { 1 0K T $ # ! ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 T 9a 5 { 1 0K T $ # ! ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a 0 C, T %0 @ 0 @ P 3 T 9q 5 { 1 0K T $ P # ! ; 6 h`0 ,`0 i" p= D ! e & 4 $@ 2\ O j2 ` & < M jB ! B\ $8 a A, T %@ P T Av7 W D A D)\`0; 0 AB A { ! F @ i" @dH @n & a A, T %@ P0T Av7 W D P 9a 5 { 2 D A { B1 @ i" @dH @n &G L M jB ! a A, T %@ P@T Av7 W D R )\`0; 0 ARJ A { ! F @ i" @dH @n & a A, T %@ P T Av7 W D R )\`0; 0 A J A { ! F @ i" @dH @n & a A, T %@ P T Av7 W D R *\`0; 0 A J A { ! F @ i" @dH @n & a F, T %@ 0 @ P e@ P T P %@ P T # @ P 5@ 0 @ P> 3 &V 9A 3 e- `N L Ku h H n &i ( g7 4l@ * 6 AD # ^ 5 # ` 9 CF W A0 ` f " ^ # F | B@ 7 2 DP @E 4\ Ku B T` 6 U0l@ F X n "0 e( }v E %@ _@ %@ _@ G P 18\ Q Y b 8 ` 1( ~ D] *H G k ?S _A / 2 < Y 1 ] , 1 8 2 / mB NS !0 o &F@ Y !! a & 4U [ I!MQ !8MU k2 c & ! p= D ! e & E 6 I 9Lm L K c & E W} Q8 L6kBHS Q 0 Y O c & , n & , n & Vmb H3 Ra & kB B\ $8 a 5 T %@ 0 @ 0 @ 0 @ P D P T P 5Q P P P P e P P P P % P eP @ PX @v7 P T 5 3 U 9A 3 &V 9A 3 bN LDQ 91 3 E! ( D P 9Q 3 g- bN LDZ 0 B! D) 6` a "p i7 n D0 @r a !p 0 e : q T D ` S : } S u Ouh > < :@y T H ` S &> } } Ou > P :` T L Da ( S 6R } W Ou L ) > C T : A* > ! TA a Ou V` } B+ S \a P T 3 X : A, > dA i0 OuP Z } B- S la p T 7 \ : A. > tA q Ou ^ } B/ S |a P T ; p : A8 > A y0 Su r C9 T a p ;U >@ t : A: N A v Su v` ( C; T F a @ ;U R x : B< N A v 0 SuH z C* C= T T a p ;U V | : B> N A v Su ~ C, C? T d a 0 ;U Z : BH N DB$v 0 # Su C. DI %#ABl 6 ! 7 % ` d B(` 0 2 a !P 0 e0 `3 ` A 0 $ # , | B; , B 0 & 0 D0bP =/ A 0 $ M , M( C & ` aa Bdb ' , 3PQ T@ : P : @ B 9 O A 8 D ? a1l@ D@ $0@ d 2( hs qs ys 8' @ 8 s" :'z _ s <'~A _ s >' a 3 s sbJs u SsB i & x F W A0 Y 6 10\ D f ` p z z_ w %h @ = }A$ a i & F W A0 h Y 6 10\ D f ` p z x_ u %h @ = }A$ a i & F W A0 H Y 6 10\ D f ` p z v_ s %h @ = }A$ a i & 2' 0 10\ D f ` p z _ r %h @ = }A$ a F W A0 Y 6 )& sb ?' 2Hs F W A0 Y 6 10\ D f ` p z r_ _ %h @ =p}A$|a i & @ ?' 5Hsb B ` y D a " %h y J a b %h y P d f ` a H ~ ` =X d f T D J (# + | KH 7 A] , D r o0PQ $o0b` A $8 DN\ Ou (H 2b / Df | ` x ` P sB ?' = u ( a " hB 9 sb 2' : 10\ p f `a p z _ v % @ =p ' a F W A0 ` P Y X ) & ?' < s" @ = ' a F W A0 @ Y X 10\ p f `a p z _ s % a " hB > s 2' ? 10\ p f `a p z _ r % @ =` ' a F W A0 Y X ) & ?'D Q sb @ = ' a F W A0 Y X 10\ p f `a p z _ _ % a " hB S s @ 2'P! T 10\ p f `a p z _ ^ % @ =P 'va F W A0 Y X ) & X ?'X VHs B x y p a % y v a % y | b f `a a H | ` = d f ` E 2H 0 e Y * D d .H : k $ 1H\ #0 5`0 2 ` j 0PQT 3 0LR M 9a oN B pA > -d# A 0 ( r 0 , - OuX (H 2b / ] E @O0Kp w$ S 7 , ` t y ) ` ` x v p % T 0 e = E ` P>(a/ @ Y b f x & 0 = 1H\ b ! % b < ` h" ( 1 0 h 0 ` q C0K@ ` dN 9 9 N 0 R M 9 N 8 ` A 0b` A %8 H @ "1K` ,E- 9 9q iN @ !1K` # + {@ i , = ` 0 R M 9 N : ` 0b` A #8 F? @ 0K` ,E- ; 9 iN @ 0K` # + { i , = ` A 0 R M 9 N < ` 0b` A !8 = @ 0K` `0 P 4 5 {P a0l@ DP @ Q H C e ` `>x 5X! ! n 0 Y { B 0f a {H a x v p` d P d @ _x Y 7 > < 9 . > 9 iN & J @ ~N @ D? 9 # + { l , L ` 01b` A .8 ? 0K1 4 ? 9 dN D !1b` A 78 ? 0K # + { l , L @ ~N $A DI 9Q # + {` l , L ` A 01b` A ,8 F> 0K1 4 I 9 dN D )1b` A 58 > 0K # + { l , L @ ~N ,A DK 9 # + {@ l , L ` A 01b` A *8 < p 8 2 M s F $ , L l ( A e @ _ ] A ? ` !& l F Y (@(& 10^ V t#<.H : F 1Pf z# | ( #H A< , ! F f hb R( @ Y@ u IP A u0 PG P P' P Pg P P P PG P' Pg P P P P P P P PG P PG$P $PG%P %P b S xo ' ,K ! R V{b ,uo & R & ` z 0 L O 4 @ 3Eum 'G V D S a H# }o ' \d / o Q ` p 5m & E W] &o Q ` p 5n ' q! 4 F b S e , L ! b y Q ` ! M vx Q ` p m ' E 6 to ( 2\O 0 % D ! U e (@ @ f ' 5N d (HDL i 0@ @ v m Q ` ! }[ PH u 0@ @ v mrX 2MDc & E 6 0@ @ v m Q ` ! R8 L>0 @3X D `wo ' ! q 0@ @ v r NS n & E 9o & T <>0 m 4@ @ f } 4@ @ f u 4@ @ f y 4@ @ f 4@ @ f 4@ @ f 4@ @ f q 4@ @ f 4@ @ f 4@ @ f ( p= vo & E 6 0@ @ Fn Q ` ! n[ D ` m & E 6 0@ @ n Q ` ! [ D ` n & E 6 0@ @ v} v [ 4B }2 ` ' E Wm 6| LN 8 [ I D ` M I D ` ] I D ` m[ R O tS D A 8 K L Q ` p n 'E >m ( 4 lr ! n ' E W} ~r NS tm ' 4UM n Q ` ! XN !8MU 1 @dHV~r NS n ' <5^ d ' 4UM b S 4 p= S H# m ( < m ( q! 4 A5 Dd M }v D A n ( <6M y~ D A 8o ' E m lRX 0 F Q ` p vo ( <5 2 A ( ` m2HE}w D s n ' E W] >% D ! e |R ` &|R ` |b NS @3 ( Dd ' < }r D c & E M P ! 1 2 ` F P {2HTp. D s z} D s m & E W D ! x Q ` ! X x Q ` ! X x Q ` ! X x Q ` ! X x Q ` ! X x Q ` ! X {"8 Q $ 8 q! ] (@ 2\zm & E ~ D `|m & E 6 0@ @ vo Q ` ! D `|n & E 6 0@ @ o Q ` ! D `|o ' < i H# :m & E 6 |b NS 4 O @3 9 4@ @ V = 4@ @ V A 4@ @ V E 4@ @ V I 4@ @ V M 4@ @ V Q 4@ @ V U 4@ @ V Y 4@ @ V 1 T m ' 2\O 0 } Q8 L |b NS q (@ 2\zn & "!Nc ' 4U [ D `=m & E 6 0@ @ j" 0@ @ x Q ` ! X D `}n ' E 6 0@ @ fx Q ` ! X D ! U 0@ @ b c 9 T9n & D ! U ] 8@ 2\u 9n ' 2\O 0 a 5 I, T # eT` U@eU EP Q % @E BN \P 2LS G E F U(;K , R H! A @W B Y@ A8 k"8 NT D Nt D T ib N (H# ?Sd &G Vkr `H~ a P F, EUaEA P T # EQadw# 5 pC , %,0 ,d0 0 f X ( Y b X + ` .( , @@W B0 Y@ 0@ " Y * 6 a %( * =@ & jRX 0 j2 c & ! k 4 5 0 qM> ;EQ &kR NS ib N (H# ?Sd & D Vk2 ` &HDL / G ! O a & m & "H p D A Y u a I, E P EUZ E@ 0 P V T # EQa5@v7 P pC ,Cp ! 6 (` 0 f + Y d3 `D f a 1 $ n $2 e( ` X 2 * P @l D` a0l@ A@ 0@ # Y * = b 0 O t 0K k , 2 a x` A8 8 k 4 5 M 4 @ 3E $ qM> ? ( qM> ;Ea & ! S ,>m &LC\ O NQ 0H# ?ST W` K ? $ O I T5} D A 0 } 1 d & D j < ! 4 k20 b & 0 lbLN 8 O ) $ O % $ ! 1 a Vk 0 LQ !1 `sbA! @ B C 9 a V I, @ P T EVf Vp%F P F P T R P E0 pC ,C A 6 (` pA 0M bN cN dN eN fN 6 f Y@ f - Y d3 H , @P a l j %@ 48 B 0 < < p &k2 c & ! k 0 L n & ! T } 1 d & ! S ,>m & < ,H# ?St 4 @ 3E ,H# ?S a > F, T P %@ P @ P T 5P %P E0 EP 9 9Al f 0 cN dN 6 f T@ f * 7 L7@O0KP Z A8 &k 0 L n & ! VkR S jB NS Q8 L j 0 L 1U k 0 L m & a J, T %@ 0 P*T 5P @ 0 @vW # EQ`5P B P T 2 P .C S%eN$eN u< 9 91 @WR DR P aI I 3 k- dN ^ ! 2 * n 4a A nC Y @ t ! , X ! % * $ ` = H a n f " 0 e a "Y C 0 " @ * ` 1 Y *L c nh f " :lp@ 0 ` %0f t !( 0 e@ 2 ` %H : K T8 ` \ "x 0 a jRX 0 l H 3 X I 4 _ EX S E 0D~m & < m & n HT ?S KT` & ! 4 n & M H U D ?S "H ` & < k `H>0 O / lB NSY !8MU G ! O a &F@ $Q L / d &E , a & \C ~m & _ 0 - 4 U D ?S } @ ! M l2D c & E 9 0 Q } $ IQ, ! I I D H 19 , m LN 8KM 4Bn & k = ! 4>0 O[ 1 m & r ! a 1 4 P C H# LQ !1 9' a r C, T %@ 0 P*T 5P # EQ`5@ 2 8UR DR 3 k- dN ^ !X G1 n a A a ` ` A ` A [ H 6 3l@ B T! p 1 , & FpO % qA 0 6 @ VP<b U = jRX 0 VkR c l HT ?S KT` & 4 m & ! PEAD 3E> / $ ` K ? , /D A S, ! 0D>m & 4 U Dd & D 3E rH H P I PEAD 3E>} $Q L / d & T k2D c & 0 i2 d &E d & "!Nc & 6k = ! 4>0 O IS E 0D>m LQ !1 0s a I A, T 5P %0 @ 0 @ 2 8U D P A D ] P P A D b (: ( t 0: 0`0 @4fpA t v nx b V\ a L 0 $ jRX 0 j2 c & ! PH 8 b & @ "!N j2 ` & "!N 0 C &j < ! 4vk = ! 4>0 _ DD \>m &E , a M A, # .C %fN$fN uL 9 9A P uP # .C C & C S%fN$fNP J 78 T tC 2 pC t ` J 4 ` [ ) q " 6jRX 0 &k2 c & kB N3 4 m & <D D PH ,OD gD IQ, ! I D H X DD \>m & Fk `H>0 O[ D H 0D>m & 4Cn &E , !1 pC a . D, # @ 2 qa` 9 9A P 5P dw# 5 ` r ; fP , ` a jRX 0 j2 c & 4 kb ; } $ IQ, ! IQ E I D H a N, .# 0 @ 2 QY_b Db @ P @! ` 4 a 2 `0 p @E @ 7 2 E` Y F [ A0 j (I C ! 2 f &8- d ! H * t !Q * 18p! ` u f b p> qa o H `g % d B =xw l 18H! Y 7 jRX 0 lb $ 8 q! ,wm & < m & <6n & < a & vkB c[ !0On & 4 T5m & < m & < kR S 6k Q ` p D 4Cm & D i2 d &E d & D 7m & "!Nc & X 4 , 1$ ! 1 H#X I O a < E, T %P # 5@ P@dw5 a : `PC s B = u Y a h v r] : .# Y b ,b@pA ! P , @ jRX 0 j2 c & ,K [ D 4Cm & D &j" } $ IQ, ! I!QAm 19 , j2 ` & jB NS !8MU jB !0 8 a y 3 T %@ 0 @ P T Av7 @ 0 P B 0 @ 2 8U D P YI I C t%mN$mN u< 9 9A P D 2 IY D PG$iI I T uP @ 2 I[ D PG$qI I T 5@ P @ P 5P dw5@ P P EA P F P T %A PZeE P u@ P\ F P` 3 m- eN L E 0 eN LDT 9 7 $ r. p n s h0 t `@ T@ : 2 CP{ : 2 CP}P : L7 @G{ T : 2 D #` j @ ? 9 ` r d^ : 8 ` l> u! 8( S ? % @ ? Y v V A pC` a0 @ s } `P A DP :b . E P x n D (H 2bP A . F ? A0 a d ! ` 0 * ` a ` l `0 @g %(_ $f Q CP @Ea$ 2P 0 9 7 @ .q @EA T0 q( n A |! ` Q' R' v 9PP a b :# 9 , # + {P b $ f ( f RpH pC h` ` ! Y h * ' h X" [ @ *t 7 ` B< A 2DR0 l ] 6 ! 6 . ~ a$(( b ! n 4 e ! # + { . @ 1 )P 0 2t $ n D f + PH R ; pCP `0 q ~ ! L %(( 2K %`b X f m "q A ` A P K , D+ 0l@$ p ux pC@ f`5! ` & a ( r L ' s0y : N ~ ! l '(( 2 f0 P T , @ , n 3 n ! & 2 !f ` p U: s o : o f [ A \ pC `P X e 4 [ 3 0 vH 2 E 7 x % ; w 7 u $; @ c l 6 Y 2 01a 1 p , A@ pb/` a1l@ B >$ ,f * b j ` %8 c D 0Kp && S v f ` ! @ ( *L @% H" pCp `0 k 7 4 @ @ eX ; ( 7$ 2 @* - Bs D D b a %p DP 0K && V f ` ;P 4 0 6 @ Ao , A0 @ P n j t ! n@ f ` D0 0K0 && @ f DP 0K` d @* 5 D E lc H a % @ o0 ab p , g '$@ # | FP - y L O ( "Q L /Q D U D ?S >% } (H# ?St" /D D S L D K L>% ) !8MU $ S , S ] / uo & , ! b 6n Q ` ! >o 'O@ OIVx 0 @ 0D>m ' C m } S OI~ Lf{ P M !1 e ' <}_ fnB N3 "8MU OI&}b ~ ? 9 0 ! 1 D xRHT V S OI6n ( D 3E~tH H q I!0 } I!0 [ 4E gD H~ ? u H# m & 5m ' "!N @3 % @OD 8 C vyRHT } 8 /8 {b S @3 a , | = ! 4>0 ' 4B 8 /8 &jRX 0 F "! 0 LQ >% ,H# 9 S [ I!0 n S 0 " , D H PEAD 3E S d D K L , S 9 $N N3 X D K L , d ' D ; nR ` zRHT mb TQ P 8 L5} O 0 D OD 0 T ~ D A y0 DT v b P IQ, ! I1 I!QA_ " !0Om b S | [ 8 a ' q=NC4SM { 4D3 tn ( ~ P OI yR &m2 ` ' <5n d ' <:o ' <5n t 6xR or8 /8 ` ( < m # !0O} vm OD 8 $ 0 Q !0O} ~ TQ L d ' < m ' q=NC4S] 6j < ! 4 } S OI mbLN 8 $ R y S 0 $ ! 1 M m ' q=NC4 ^ I 4C^ A1 e ' >% 19 , P } 19 , 8 [ 19 , H# , v S }[( $Q L / d &E , a ( ! 8m ' >% y T n ( ! 8n ' q=NC4S} 0 LQ P OI i2 d ' <=n ' <}o & n LN 8K} OD 0 8 C\ 2 ` n LN 8K 4 ( 8 L|n (FD05 [ C >% to ' q=NC4S y TQ L O[ PEAD 3E~m ' 4U >% E 0 U D ?S TQ L " PEAD 3E m ' T5m !QA] ~ ! 0 LQ >%Y B\ 6y2 He 'G 1Dd v} 8 /8 I1 [ I ^ 2 A d yR V TQ L t ~ ! 0 LQ >%Y 4C} Vo 4D3Y "0O] m & < "! 0 LQ >% OD } S OIvx 4 ON 8Kn[ 2 U >% $ 0 S m O 4Cm & @3 FnB I29 , [ !8 P {b P ,H# S B L?1 H U D ?S "H p( D A 0 D `5n ' q= S 1 D 5 & !8MU , S [ 4 @ 3E5N d ' ! - $ 0 6] vz 0 L & 1 U a _, = T %@ 0 @ P T Av7 @ 0 @ 0 @ P .C S%kN$kN u< 9 91 @W D P a T E@ P@ .C %kN$kN uD 9 9A P eP .C %kN$kN uD 9 9A P T EQ` 5@ P UV U@ P@ @ P % @ 2 1Q] D P Dy Q T V W A P 5P @ P`T 5@ P\T 3 m- eN L E 0 eN LDT 9 7 $ x. vP t0 y h0 0 z `@ A : 7 v ; a " % n f " R n f " S n ` Y b A A n D f # 0P | A* tC A0b` A </ A 0 6 0 , * xE 7 TH Q ` 10 pa t f] g ^ f - ~ A ^ (( 2 , ! n a @ 0 Ea bQ S0 L 0 l S 6 ! P n0P f % n@ SX6 ) V { f I a " ` R R tp `0 4 @E 0 R * p a0 h $ W@ Y X j H - pCP bPC * \ 0 L7 T \D \ a `1 A0 8 Y h 0 *L ! ` / W ` ! G Y` h . ` h $ V``! % *L i "! f ( Dj A7 n P a3 ` P = < & ` 1 Y " $ , ~ A |p Y , 5PQP a T V f ! a T EX &F b 7 a 5 n Z A 2dX @(r q D d &F` u Yz : 2tZ@ a ! 0 n@ / \ 2K T % 1 h0 u f @ a " % *L z!& D f H a " 8yH <! .( 1` ` $ 5Z 4Jc p 9 fnrLN 8 n & |R nrLN 8 o ' D 3E D Fx 0 L A $ _ I u I O P $ @T yrH D c ' "!N ][ 4 @ 3E= D s P e @ ! M {R {2T m ' 8 m ' [ D ` ~ 0 LQ !8 F~R | TQ L } $Y ! De a 29 ,5m ' D m & 6o LN 8K / m ' tD8o ' V|BH pY 4 $N N3 M @3 0H# ?S oB N3 I!0 / , d &L@ - _ 0 U D ?S x 0 L } 29 ,6m 'L@ 0 U D ?S x 0 L [ PEAD 3E> / $ yRHG zRHG ~b NS i @3 RY T n ' D 3E~tH H T5} I!0 !0 ^ % T7^[ PEAD 3E~m ~2IT ?S / 4 4m ' "!N @3 @3 ( 8 L n & , @3 2L E q ) yR &n 4D3 !0 ~ 8 U D ?S 5m & 0 3E ~ D A }R oR ` 6xb NS ] U Dd ' } U 0 3 8 xb NS q ? q @D { Q ` pY Q OD jR `H&{ 0 L 4 @ 3E:o ' 0 n ' wn ' D / 2 @ 3 VnB p[ I!0 N 4Cn ' < m & a ! 4Co ' nB c[ D 4 5 0H# ?S w ! O a 'R@ X ? ! 4 | ! 0 L I 4 Y 0H# ?S vob N3 = 0 I D H D ` n &F , Q 19 ,&}R ~2IT ?S G 4 t} /D D a ' ! } , C I 4C 29 ,; !1 , ! Z' : ` S' ` ! H X 0 q 0 @ 4Q % " C : |N, @ C 9 ` <' 0 R @ 9 ` tN, ` pN, xsb ! @ 2 l q H ,L <P$MTe]X a i H, T %@ 0 P @ 0 @ Ph% Q T Q EP 3 aP 9A 3 I ) D D 7 } `0 B d ! ` ! 6 f 0 H RA D0 ` a P P 91 9A 7 L7HQPA # Y ig ! b 0 ` @ @E A8 $ VkbL C PD} I0 4Cm &J , Y !8 ` & I Cm 8 b & q=NC4 2I kB [ !8Me & k2 ` &HDL P ( L $ > !1 a H, T # EP T` # E { sA pC )N D 1 f " 2 `A Y H f "8" d u ] i () ( J 8 ! ) d t\ nH 18p! ` v N @F ? A0 2 B =xw ` 0 K @F \ A0X ` 5 Y K FjRX 0 kB [ 2 2I B4Vlb 8 5E ? 2I>m & qM L _[ ! r kB DD \VkB [ !8Me & 4U] !8Mu lb NS 29 ! T7o & D b d & , m[ 3E gD H i2 d &E d & 29 ,5m & "!Nc & kR< vl LN 8 [ !8Me &kB P I 4 m & , T n & ,Km !1 ( a p ( C q Q 9 ` a & C, # % B T$G` " 1 6 n 0 e FjB S_ / j Hfj Q ` p B L?1 O j2 ` &C!I j 2 N3 a , C, # % B T$G` " 1 6 n 0 e FjB S_ / j Hfj Q ` p B L?1 O j2 ` &C!I j 2 N3 !1 ! 0 $Qn? a - E, T 0 @ 0 @ P V # | rTp pCp ,C@ 0(( b a bX ` !8 ` A b = q f B = u f < j2 c & q=NC4Sm & i jB s Q , jRT B a C, T # EA P % @E G0P 0 TP B f !H! Fj L O 0 } H#X R 0D> a 1 C, # T # EQ T % F B T$M E 0@ F 7 ` ` !P 2 n8 2 e ` # VjrLN 8Km &I } D sX 0 IP !8T3 C5 O j2 ` & P "H ` & T' ! O a _ G, T e2 @ 0 @ P %P a B 7 2 D nP c o7, AA C@ @Eq V0P T f ! H Q J f o7` DA 2 C@ ETZ \8 b0 P A! L@ / kB [ I t B\ t D s B L?1 m & D4 O 0 (> / $ kB [ IQ E\ ? q @Dvj2 c & T i Vk2D c & q=NC4 n & 0 j ( j20 b &F , a 4 H# 1 o & um & 0 L a z G, T # # T %P EA P UA P F P % b o7< BB Y a " 2 * 1 b #Lx@0 @Hh0 0 A P]P P 4 0 @Pb` `0 0 f @ ( J n A 3 e ` %0 * 0 ` ` c@ $ A* $ ? 6k2 ` & tD j 4D3] / W ! O a & < fkB NS !8MU k 4D3 0D>m lRHGT jRT B VlrT B 5m & 4U 0 R I0 IB\ [ ICD P 0X I PKm IBD t 4 o & 0 n &N , ? 8 1X AD H# I PK} 8CM 4 a D, T %@ 0 P # .C S%iN$iNP O P _ P 3 p- hN !P a "H ` Y ` J f (k NK Y a ` * 8 B7 ^@ B1 U 8 p`0 0 @ ` G%@ YB 0 `` A lP A h P VjRX 0 k H 3 I!0 ] " @ O@ l HT ?S KT` & t, k HG 3 I!8Mu 4 @ 3EFl2HGd & r PEAD 3E> / $ ` K ? 7 ! O a & 4 ? PEADvl IT ?S / 4 IQ E I! H1 0 4 U D ?S ! @ ! M l Q ` p Q $OD 8 ,OD gD PH @3 IS E 0D>m DD \ DD \Vkr< Q o & 0 3E5 !1 8 ( ` lN, q I ( H a A, T ( # E } B0bp B @ C @ iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B @ C @ iR ` jR 6jB a A, T ( # E } B0bp B @ C @ iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B @ C @ iR ` jR 6jB a A, T ( # E } B0bp B @ C @ iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B @ C @ iR ` jR 6jB a A, T ( # E } B0bp B A @ C @ iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B @ C @ iR ` jR 6jB a A, T ( # E } B0bp B A @ C @ iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B @ C @ iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a A, T ( # E } B0bp B - A8 iR ` jR 6jB a = J, T # %P # G P 5@ P @ P R@ # A ! BS # N \P 0bP A > UP A ! 0 UA" 0bP A > @m YY d:b` A A* 1( A NH nX 1( n ` # f pA pC ,CP , I" B @ < @ # p E `0 P @E 0T f A f A a " ; pC ,CA W%@ 7 A@ F T UP 0 lh0 p$ f ! 6 @ 1K T q 2P q L8 v pA - 1 6 )\ ~;l@ C l T f .` 6 ! 6 +\ ~KA T p P d0 $A C8 G K ? I2 O / <o &G 8 P &lb p 5Y IR- 0 ^ D ! n Q ` p $ C 7O_ / 2 a ' 0 3Ezm & 6m & 0 3E n & <7 mb NS ( Dd ' 0 3Eyo & m & C- U @ 2\ lb 6xR FlR S i2 d & ,Km & , m & C- kR0 R kR P vkR mR ~ kR0 R 6lr ?Sd & C- m & 0 3E K c & Fnb NS %$ 8 q! % R$ H ! 0 ) - , /D A !0 } A 5 , 0 !8Me & 0 3E K c & 0 3E K c & 4 3` tD 0 4_[ I L I2 O 2a !! a &LC1 A4 x 4 D C m & Q d & A<;m & <wm & A< m & A<{n & 0 Fo T oR vm Q ` p e ( L |o &I L M m & 0 3Eym & n & n & 0 3E K c & , ,5m & q! 4 , a A, % # ~@ BA B A8 &jR L j2H ` & MFjB X P o = a A, # E c C v 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, # [d C 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, # d C 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, # e C 6 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, # ;f C v 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, % # ~@ BA B A8 &jR L j2H ` & MFjB X P o = a A, # E c C v 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, # [d C 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, # d C 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, # e C 6 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, # ;f C v 0 $ ` i B` C @ &jR L j2H ` & MvjB X P o = a A, E WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, E WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, ( WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, ( WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, ( WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, E WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a A, WL ^ ;b A - AA &jR L j2H ` & MfjB X P o = a C J, T # %P # G P 5@ P @ P R@ # A ! BS # N \P 0bP A > UP A ! 0 UA" 0bP A > @m YY d:b` A A* 1( A NH nX 1( n ` # f pA pC ,CP , I" B @ < @ # p E `0 P @E 0T f A f A a " ; pC ,CA W%@ 7 A@ F T UP 0 lh0 p$ f ! 6 @ 1K T q 2P1[ q L8 v p - 1 6 )\ ~;l@ C l T f .h 6 ! 6 +\ ~KA T p P d0 $A C8 G K ? I2 O / <o &G 8 P &lb p 5Y IR- 0 ^ D ! n Q ` p $ C 7O_ / 2 a ' 0 3Ezm & 6m & 0 3E n & <7 mb NS ( Dd ' 0 3Eyo & m & C- U @ 2\ lb 6xR FlR S i2 d & ,Km & , m & C- kR0 R kR P vkR mR ~ kR0 R 6lr ?Sd & C- m & 0 3E K c & Fnb NS %$ 8 q! % R$ H ! 0 ) - , /D A !0 } A 5 , 0 !8Me & 0 3E K c & 0 3E K c & 4 3` tD 0 4_[ I L I2 O 2a !! a &LC1 A4 x 4 D C m & Q d & A<;m & <wm & A< m & A<{n & 0 Fo T oR vm Q ` p e ( L |o &I L M m & 0 3Eym & n & n & 0 3E K c & , ,5m & q! 4 , !1 @ P a A, % # BA B A8 &jR L j2H ` & MFjB X P o = a A, # E c C v 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, # [d C 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, # d C 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, # e C 6 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, # ;f C v 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, % # BA B A8 &jR L j2H ` & MFjB X P o = a A, # E c C v 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, # [d C 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, # d C 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, # e C 6 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, # ;f C v 0 $ ` H B` C @ &jR L j2H ` & MvjB X P o = a A, E W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, E W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, ( W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, ( W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, ( W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, E W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a A, W` ^1-;b A 8 "- AA &jR L j2H ` & MfjB X P o = a P, # T # %P (@ P~T 5@ P @ P eP P %Q eQ Q Q 33 Q [ O ~ ` %/d# Y ~ ` (/h% rA A ! BWA!# `PA" 0bP A > @ % 0b` A A+ f @G ? A0H 7 ApF d j 5 Al n0 f ! 10 [ ` ` H .H n 0 e ` 3 e( ` b \( ~ (` 0l@ A l ? v0 Dd0 P p a0 , U NTP @@ ` -48 d @(` 0l@ A l U 0 2 Ipd 1 ` 2(OP P Wh` W pC h0 < f 2 Z j CJ `3 A A+\1 \P P W R W R P R R P W R R R R R R R wP M @E @ l r @ . 2 ,A3P g S @ l L:4 `0 T$ CC 9 " Q 0@ c w 6 G 9 ! B 0@ c t @c@ 9 ! T 0@ c ~ Xg@ 9 ! B 0@ c y pk@ 9 ! 0@ c P a a Fb3 P q@ 9 !( $6 kP 0@ c P a a Vb3 yps ~;l@ C l @%l x K , < pC` d0 <A E8 ' lb A , n & ! / vy ?S y ?S y ?S o ?S D1 z ?S 6z ?S fz ?S z ?S fnr0 r m & C- ] ,6n & C- 9 4 T D O , A dR$ D C OGD O , ? q @D a & , o ' 0 3E;m ' 0 3E{m ' 0 3E m ' 0 3E m & 0 3E K c ' 0 3E{n & M L DH O I L X I L I L I L I L [ I L I L I!0 ] 4 u < 4 t E m $ 0 E 4 T D _ Q , 0 X I L O !8Me ' 0 3E; K c & 0 3Ew K c ' 0 3E K c ' 0 3E m ' 0 3E; K c ' 0 3E K c & 0D> 6nR s nR s n 0 L n[ I LQ I 4C ! b & uo & 4 O\ < 4 u I!0 ? q @D|n & 0 3E6m & C- n & 0 3E5 K c & C-8o & <v OD 0 #E /<?0 _ $ Q I < 4 6 0H ) 0 1 0 ] / 2 $ 0 }O I L I PK I PK I L I L !8M &x ?S D1 < L ob NS M <R$ 6 [ H e (R$ ! a & g ! O a & 0 3Exm ' 0 3E{ K c ' 0 3E K c ' <yo ' 0 3E{ K c &LC1 A4 - 4 0 /Q = d 4 D C OGD O DE4 ! 0X I O\ _ I 4 [ I LQ !0 $ 0 ,5m ' q! 4 % , a P, # T # %P (@ P G P @ P eP P 3 P S O ~ ` .D# Q ~ ` /H% rA A ! ` BUA!# X T0 A ! WB # vd {f B[e A0 K * * 10 [ w HpG d e ;@h ! Y a F ? A0H g ` H A .H n 0 e ` b ` 0 4 B ]( 7 ( 1l@ = u0 Hd0 P p a0 , T XC 1 f 4 H ] 1 ;@ Raw @ pC` d0 $ A pC d0 <A )\ A)\ A , 7 J fA*h :8 v u U p p p $@ 1K T a@ K)8 - 4 h L 4 @0s T$ ACB 9 ] aw @ v DA 9 ! RQ b a aw \ t c r @ v FA 9 !p Q b a aw } l 7 N ` v b0 - , y @ 6lb - , n & ! I&E /M@4 0D tD 0 4 / Fo ?S x ?S y ?S 6y ?S fy ?S W K ?Go P m & , [ PKo & ,Km & , m & C- kR0 R foR H nr n & , o & C-un & < y ?S y ?S y ?S OD 0 D sX 5H ?9 6 ? vz ?S o ?S D1Fz ?S m C }m ' 0 3Ez K c ' 0 3E m & < m ' 0 3E n & Vz2 ` & <6o & 0 3E D1 kB NSY I L N I L n #E /<?0 O 1 R I!0 M I!0 } 3H /<?0 _ 0 D n 0 L I P [ I LQ I P I 4C ! b & uo & 4 [ #E /<?0 _ p 5Y I!0 ^ I!0 I L ]_ / 2 e 4 I LQ I P I LQ ? q @DVk2 c ' M 0D i2 d & 0 m & 0 3E m ?St oR0 fx K M?0 ? > oR0 VoR0 voR0 o ?S D1 x H C |m & 0 3E: K c & 4 C / 2 I1 M[ I!0 n H $ 0 (R$ ! a & D n & n ?S g ! O a & C-:m ' 0 3E{ K c & 0 3E K c ' 2\>qM n & 4U^[ P o = d & Q d & 0 VnR Hu xR > o ?S kb L lb 6 a P, # T # %P (@ P G P %P T @ P 3 O O ~ ` .4# M ~ ` .8% rA A ! BTA!# T T0 A ! p VB # u` {b [a . A + * t T0o!(* p w$@V Z ` A & n@ 2 e ` Txo pf D t! + Y " ( f # P b ` C0 v 7 2 F0 A 7@| % : p$A H=~ . a Y d B, H _ 1 @ Ja @ pC` d0 $ A pC d0 <A \ (\ A , 7 J ^A*H :8 v u U u p pG$@ 1K T 3P ,A3P! @ / T$| | 0 h! ] 1 c ] 0 v JDA 9 ! ] B3 ;l@ q `0 28M @ ] u 7 @ < kb vlb i (H# ?Sd & 4 <} D s I L ^ !0 n $ 0 ! $ 0 - $ 0 9 $ 0 mb Y < 4 4 [ PKo & ,Km & , m & C- kR0 R &oR H mr } D A K ? , M $ 0 A $ 0 Q $ 0 E H#X 5H ?9 6 ? o ?S D1vm H C n & < m & FmR c l ?S K c & 4 < 4 5 0 m q 0 D n 0 L [ I LQ I P I P I 4C ! b & uo & 0D~ 6mb NS p 5Y I!0 ^ 3H /<?0 o %, 8 q! I L ][ !0 M 4 0 /Q 4 0 /Q 1( Dd & < x H C n & M kR P 6lr ?Sd & M 4 |m & 0 3E m & C-9m & C- m & C-yn & C-9o & 0 3E K c & 0 3E: K c & 4 C / 2 I1 M[ I!0 n H $ p 5 $ 0 (R$ ! a & D n & vn ?S g ! O a & C-:m & 0 3E K c ' n & 4U^[ P o = d & Q d & 0 nR Hu Vo ?S kb I L kb 6 a t P, # T # %P (@ P G P %@ P d#3 EP O O ~ ` .4# M ~ ` .8% rA A ! BTA!# T T0 A ! p VB # u` {b G[a N A + * t T0o!(* p' w$@V Z ` A ; & n@ 2 e ` Txo pf D t! + Y " ( f # ) p N A D 7,x A 2 IP} R H x 5 @ ` ( C@ ; v 7 f@ H $@ 7 A@ * 0 2,O @x T CJ `' P A A*\5 \P P wB @ ? @E8@K 4 L T < @E d _ @A 9 ! \ ;l@ \ `0 28M @p 7 @ : W K ? ! R kb , n & <xm & 0D~ or d ' q! 4 i (H# ?Sd & < ~ 8 C\ Vmr s m & 0 3Ev} D s 3H /<?0 o $ 0 I6H /M@4 0D tD 0 I LQ I P I L I LQ I L ? q @D6x ?S k2 c & C- Y < 4 4 ! b x ?S o H C {n & C- } 4Y !0 ^ , , X I L m I C} I! I PK I PK~ L -@ D / mb O , M O R ] <R$ 4 !8M x2 ` & 0 3E K s 8 C\ d & < m & T6m & xR FmR c o vxr $ d & 0 3E D16n ?S &j H KS I y N N3 I L ~ !8Me & C-:m ' ;~ 2 ` &n ?St D1 ob NS 0 L CHFn C m & Q d & T mR s mR s G OD 0 ~ 1 $ 0 R 0H# ?S o I K M?0 ? > l ?ST mR0 r nR0 r flR P Vo ?S &kB ! R lR P 6mb NS ; a i P, # T # %P (@ P G P %P O ~ ` .(# J ~ ` .,% rA A ! SA!# C Q T0 A ! @ BUB # u }* Y mD B Ra m# Y V mDh ! Y a F ? A0H g ` H .H n 0 e ` b ` 0 5 B 5 l C@ F 7 2 F0 A 7@y % : p$A H={ a Y d B 68 d b ( l C@ F A D 7 f@ H $@ 7 A@ ) 0 2,O mDx S CJ ` P A +\5 \P pA @ r9 k(8 4 j( L T @0I3P S4$ 6 L l ^ 6" 0 0 28M mDH m# 7 y@ 8 kb ,5n & ,K [ 3H /<?0 _ p 5Y B\ $8 ` & ! I!0 ? q @D n & 0 3Ev} D s !0 n $ 0 n ?S n ?ST D1 oR > o ?S o ?S D1 OD 0 P m & 0D~ lb $ Q i2 d & ,Km & , m & C- kR0 R < L n & 4 m & 0 3E m & , o & C-un & <7 kR P 6n T [ I PKN I PK 5H ?9 6 ? lr ?Sd & 6oR0 nR H o C =m & 4 C / 2 I!0 m[ I1 M #E /<?0 o M < 4 t E E -@ D / vo l ?S K c & C- m & 4E @ I!Q D 4 $ 0 TFn ?S g ! O a & 0 3E K c ' ! d 4 D C OGD O 0 L CHVob NS DE4 R #E /<?0 O a e U m & 0 &x ?S 6x ?S mR Hu nr }m & ! $ 0 q u @3 ,vkb ! @3 A T a i P, # T # %P (@ P G P %P O ~ ` .(# J ~ ` .,% rA A ! SA!# C Q T0 A ! @ BUB # u }2 Y @ B Ra Y V @h ! Y a F ? A0H g ` H .H n 0 e ` b ` 0 9 B 9 C@ [ 7 2 F0 A 7@y % : p$A H={ V a Y d B 68 d b ( C@ [ A D 7 f@ H $@ 7 A@ ) 0 2,O @x S CJ `+ P A A+\5 \P pA @ r9 s(8 4 r( L T @0I3P S4$( 6 L l ^ 0 0 28M @H 7 y@ 8 kb ,5n & ,K [ 3H /<?0 _ p 5Y B\ $8 ` & ! I!0 ? q @D n & 0 3Ev} D s !0 n $ 0 $ 0 4 0 /Q O $ 0 4 0 /Q 1( Dd & <6kB0 r #E /<?0 _ 5 ,v~ D s 4m & C- } 4 I! R I! b[ P %, 8 q! [ I&E /M@4 0D tD 0 to I L }[ I! I PK !0 M 0 nR0 lb O , M O 0 Y I PKN I1 U 3H /<?0 o T ~ 8 C\ d & < m & T6m & 0D 6m C }o & o2 ` & <6o ' <:~ D A K ? $ p 5 ) , 0 I PKn "E /M 2 lRHT` mr8 /8 ` & 0 3Exm & 4 $ 0 g ! O a & 0 3E K c ' ! d 4 D C OGD O 0 L CHVob NS DE4 R #E /<?0 O a e 0X Q- 0 &x ?S 6x ?S mR Hu nr }m & ! $ 0 q u @3 ,vkb ! @3 A T a E, # T # %P ( G D ~ ` . # E ~ ` . % rA A ! BRA!# L T0 A ! TB # s #! nH n( 2 n064(! Y 6 r n) l: 0 .H % * Pp d CA :" #A 6 3 Dd0 0 A A8 N vkb < 4 A / 2 O\ ) R$ !0 (R$ ! a & l ?Sd k ?Sd jB NS I L / fl H C m & 0 3Evo & 4U [ P o = d & < jB0 r IATD3Y PKo & < n & 0 i2 d & ,Km & , m & C-6kR0 R vlbT 0 , 0 I PK !8Me jB ! R Vkb 6 a E, # T # %P ( G D ~ ` . # E ~ ` . % rA A ! BRA!# L T0 A ! TB # s #! nH n( 2 n064(! Y v r n) < 0 .H % * Pp d CA <" #A v 3 Dd0 0 A A8 N vkb < 4 A / 2 O\ ) R$ !0 (R$ ! a & l ?Sd k ?Sd jB NS I L / fl H C m & 0 3Evo & 4U [ P o = d & < jB0 r IATD3Y PKo & < n & 0 i2 d & ,Km & , m & C-6kR0 R fkR P kR kr ?Sd & C-uo & 4 M ! b & ,KM Q- 0 , a A ! v) P d 6jR L&j KS R$ 0H , j 4 D3a ! a A, # c # v $ `` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # [d # $ `` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # d # $ `` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # e # 6 $ `` B B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # ;f # v $ `` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A ! v) P d 6jR L&j KS R$ 0H , j 4 D3a ! a A, # c # v $ `` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # [d # $ `` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # d # $ `` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # e # 6 $ `` B B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # ;f # v $ `` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $ `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a W` $} `` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a P, # T # %P (@ P~T 5@ P @ P eP P %Q eQ Q Q R O ~ ` $/`# C X ~ ` '/d% rA A ! WA!# _ T0 A ! ! " 5P c J *( 10 [ `3 @ ` 2 e ` T o Y a " s r b ! ` H ` 0 \H } *f ( 1 @ `3 @ p ,Ca p $ hPB G )8Q ) f Y d #A *fK 1 @ @a3 @ p d0 $ A p d0 <A )\ A)\ c , Z fA )! B. $rA @ +\ B,\ +H +\ +H -H ,H -\ C,H C,H C,H C,H C,H C,H C,H C, A '%@ 0 -8 E ,8 @ . *4 E0I3P L 0 q @8 a ` a B `3 pc : B C@ a 4 B f w 6 6 !8 0l@ A l 0 C a Tb0 ! @ ` a B `3 e f a+ 1 ! Bg c > B | 6 6 a c > B 1H 1 0 a B `3 P j`d 0 n f & l r Y & " lb = , n & ! / Fy ?S fy ?S vo ?S D1 y ?S y ?S y ?S y ?S Vnr0 r <n & C- Y ,6~ D s kR lR k20 b & C-u} D A K ? , $ 0 $ 0 $ 0 9 dR$ D C OGD O $ 0 $ 0 4 0 /Q $ 0 4 0 /Q $ 0 4 0 /Q $ 0 $ 0 U H# 3H /<?0 O $ 0 R$ I!0 [ I!0 L /Q $ 0 T x ?S D1fn ?St D16x ?S D1Vx ?S D1v{ ?S vx ?S D1 { ?S x ?S D1 m H C n & < m & <wo & ! A $ 0 9 @3 ,6yrT n & uo & 4 3H /<?0 _ - p 5 I!0 ? q @D n & 0 3E6m & C- n & 0 3E5 K c & <v oR0 OD 0 X #E /<?0 _ = < 4 6 0H % 0 - 0 ] / 2 $ 0 }O %E ?9 6 ? vn ?St foR0 oR0 o ?S D1 nb NS 4 0 /Q =$ 8 q! A <R$ 6 H a 5 d 4 D C OGD O N N3 B L?1 ( 4 ! a & 0 3E m ' 0 3E{ K c ' 0 3E K c ' 0 3E{ K c & 4Un[ P o = d ' 0 3E K c ' 0 3E{ K c & Q d & 0 x yR > 6nr s m & 0 3E n & 0 3E9o & ,KM B\ $8 ` & ,Km !1 ( I i ` X 0$ 4 E DU e 6 ( 9' a P, # T # %P (@ P G P @ P eP P Q O ~ ` .@# C P ~ ` .D% rA A ! P UA!# W T0 A ! VB # vc B{e [d a( ; " * t THo!(* $ V` Xo f ! 10 [( Y a " p jS b ` H ! Y *v!) @ ( 1 ;@ `w @ p ,Ca p hPB G ( R ` A %@ *vA8 d 78 A , m , p pe 7 b @(5 AP " T . . / U/ / / 8 qJ , 3P r @ f 3K T A3P $ @E L 4' R bw @ ` 1 ! BB ! 0l@ j ) a B `w Xc 8 B C` a D a u 6 @ v f = ` !X 0 ep `w q n ` f ' &lb ) , n & ! I&E /M@4 0D tD 0 4 / o ?S x ?S x ?S y ?S W K ?G[ P m & , PKo & ,Km & , m & C- kR0 R VoR H OD 0 D s !0 ^ , Q $ 0 a $ 0 Y $ 0 6 I L I L [ 4 I $ 0 4 0 /Q e < 4 to I L I!0 m E } $ 0 ] A , 0 !8Me & 0 3E; K c ' 0 3E K c ' 0 3E; K c & 0D> l2 He & <7m & < m & M 0D~ xbT 0H# ?S l ?ST &nR0 r 6nR0 r lR P VkB I 4C !8Me n H C <o ' 2\>qM nR G OD 0 O I!0 [ I L ]_ / 2 4 0 /Q 4 0 /Q 1( Dd & <vx C m & M mr s =m & 0 3E lR P m ?St oR0 Vx K M?0 ? > oR0 FmbI O , M O 4 0 /Q Txn ' 0D < L lR He zR xr $ d & 0 3E8m ' 2\>qM n & D n & &j KS , /D A I P N I L [ I L X I L ~ I L ^ X P o = d & 4U IATD3 R % O $ 0 ,5m ' q! 4 , a P, # T # %P (@ P G P %P T @ P O ~ ` .0# C L ~ ` .4% rA A ! TA!# S T0 A ! ` UB # u ( l v ! n ` B R ] B Y h b A ` i ` A B R % * A 63 f $ n 2 e( ` B ( 7 (( 1l@ 6 w0 Hd0 P p r a0 , } Tp XC 1 f _ 78 . A ] Q , m , ~p pe 7 b @(5p AP " T - - . qF , 3P r @ Xx 8 @ / T $ @E L K b ] q c B8 G0 ] 6 ` v 4 ` ! @X 1 ! ] B# 0 n f & D . a R Y kb flb a (H# ?Sd & 4 |} D s I L ^ I L I L I L [ P m & , [ 3H /<?0 O &kR FkR 6k20 b & C-um & <x nr <m & , o & C-un ' 0 3E m ' 0 3E;m & T n ' 0 3E;~ D A K ? 5 H#X I L #E /<?0 O 9 R$ I!0 L /Q 1 $ 0 T o ?S D1vl2 He & <7m & < m & M 0D~ 6xbT 0 D fn 0 L ~ I LQ I P I P [ I 4C [ ! b & uo & 0D~ &mb NS p 5 I!0 ^ 3H /<?0 o %, 8 q! [ I L ] !0 M 4 0 /Q 4 0 /Q 1( Dd & < x H C ;o & M&lr ?Sd & 0 m & M 4 m & 0 3E m & C-9m & C- m & L DH O I PK I PK I L X !8M < L lR He yR &xr $ d & 2\>qM m & 0 3E8m & D n & g ! O a & M 4E @ I L I P N[ I [ I L X P o = d & 4U IATD3 R $ 0 ,5m ' q! 4 , a s P, # T # %P (@ P G P %@ P EP O ~ ` .0# C L ~ ` .4% rA A ! TA!# S T0 A ! ` UB # u A l v; ! n ` B R B Y h b A ` i ` A B R % * A 63 f $ n 2 e( ` " B C@ ; v 7 2 F0 A 7@{ % : p$A A H=} N A Y d " #A * 1p @(H 2l@ = 0 2 Ipk 1 2(OP Wo0 Wf pC h0 < N R W P )! (rA @ *\ + G$@ 0 , 3P l ,A3P 35 L T$v D * 0 q @8 a a B `' 8 \ Y v @x ` y L p kb ,5~ D s <R$ 5o ! R nR o C n & 2\>qM x 2 N3 4 @ 3E nR < L m & <7 l ?Sd w` K ? $ 0 [ I LQ I P I L I LQ I L ? q @D k2 c & C- <R$ ! b Vm C n ' 0 3E:o & C- } 4 I! R I! b P q 5_[ I L m L , 0 A XR$ 3 ` ! ,>m & C-y~ D A K ? ) $ 0 R 4 0 /Q Y <R$ 4 [ !8M voR0 x ?S lR c lR He j2H ` ' 6mR c o K M?0 ? > o xr $ d ' < m & 0 3E D1&n ?S mRHT` mr8 /8 p 2 ` &j KS T&oR0 vn ?S n ?St D1 oR > j 4 D3a ! !8M 6n C m & Q d & <7m & T mR s xbT 0 ? q @D;n & T7 8 C\ d & ! dR$ D C OGD O ! $ 0 y } @3 $ 0 , kb ) @3 I T a i P, # T # %P (@ P G P %P O ~ ` .(# J ~ ` .,% rA A ! SA!# C Q T0 A ! @ BUB # u }+ Y mD B Ra m#B Y V mDp ! Y a F ? A0H g ` H .H n 0 e ` b ` 0 5 B 5 l C@ F A D 7 2 F0 A 7@y % : p$A H={ A Y d b H 5 ( l C@ F ( 7 f@ H $@ 7 A@ ) 0 2,O mD S CJ ` @ A1 \P Py wA @ r9 j(` 4 k( L T @0I3P S4$ 6 L l Y 6" 0 0 28M mDH m# 7 y@ 8 kb ,5n & ,K [ 3H /<?0 _ p 5Y B\ $8 ` & ! I!0 ? q @D n & 0 3Ev} D s !0 n $ 0 &o ?S n ?ST D1 oR > o ?S D1 OD 0 P m & 0D~ W K ?GM lb i2 d & ,Km & , m & C- kR0 R < L n & 4 m & 0 3E m & , o & C-un & <7 lr ?Sd & L DH O[ I PKN R- 0 ;o & C- n & 0 m & 6oR0 nR H o C =m & 4 C / 2 4 @ 3Ezo & < m & T6m & 0D 6m C }o & x ?S mR c FxR OD 0 D s I O\ n L /Q = m N N3 B L?1 ( 4 ! a & 4 $ 0 $ 0 } 4 0 /Q $ 0 d 4 D C OGD O 0 L CHFob NS DE4 R #E /<?0 O a e U m & 0 &x ?S mR Hu nR0 Fn 0 L I LQ I P !0 u @3 ,vkb ! @3 A T a i P, # T # %P (@ P G P %P O ~ ` .(# J ~ ` .,% rA A ! SA!# C Q T0 A ! @ BUB # u }3 Y @ B Ra B Y V @p ! Y a F ? A0H g ` H .H n 0 e ` b ` 0 9 B 9 C@ [ A D 7 2 F0 A 7@y % : p$A H={ V A Y d b H 9 ( C@ [ ( 7 f@ H $@ 7 A@ ) 0 2,O @ S CJ `+ @ A1 \P Py wA @ r9 r(` 4 s( L T @0I3P S4$( 6 L l Y 0 0 28M @H 7 y@ 8 kb ,5n & ,K [ 3H /<?0 _ p 5Y B\ $8 ` & ! I!0 ? q @D n & 0 3Ev} D s !0 n $ 0 $ 0 4 0 /Q O 4 0 /Q 1( Dd & <6kB0 r #E /<?0 _ $ Q 5 ,vn & C- } 4 I! R I! b[ P %, 8 q! [ I&E /M@4 0D tD 0 to I L }[ I! I PK !0 M 0 %E ?9 6 ? 6n T I PK I PK I C}[ I PKN I L N I1 U 3H /<?0 o T ~ 8 C\ d & ! 1 % R <R$ 6 3H /<?0 O R$ 4 E -@ D / vo l ?S K c & C- m & D n & g ! O a & M 4E @ !8Me & 0 3E n & 0 3Exm & C- m & 0 3E K c &H 8 d 4 D C OGD O 0 L CHFob NS DE4 R #E /<?0 O a e 0X Q- 0 &x ?S 6x ?S mR Hu nR0 Fn 0 L I LQ I P !0 u @3 ,vkb ! @3 A T a E, # T # %P ( G D ~ ` . # E ~ ` . % rA A ! BRA!# L T0 A ! TB # s #! nH n( 2 n064(! Y 6 r`p [ ' !( f ; ! * P b 1 H MG Q 7 2 D h O vkb < 4 Q- 0 G < L lR c j2H ` & <6~ k ?Sd lR0 b kr8 /8 ` & M 4E @ !8Me & 0 3E n & 0 3E m & 0D>} l ?Sd kb NS 0 L CH j2 c & C- DE4 kR S Fk2 ` & M jR jR j20 b & C-um & 2\>qM6o & 0 m & , D sX L T6m & , ,5m & ,Km a E, # T # %P ( G D ~ ` . # E ~ ` . % rA A ! BRA!# L T0 A ! TB # s #! nH n( 2 n064(! Y v r` [ '; !( f = ! * P b 1 H G Q 7 2 D h O vkb < 4 A / 2 I!0 E m I L ] I P m[ D 4 ( 4 ! a & 4 ! $ 0 $ 0 <R$ }[ I L !8MU j 4 D3a !Y 0 6jR L kB0 I!0O } 4 I! R[ I! b P $ p 5 0 , a & 0 3E&lR0 R 6lb NS ,&kb C [ ! R a A ! ** P d 6jR L&j KS R$ 0H , j 4 D3a ! a A, # c # v $ ` B B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # [d # $ ` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # d # $ ` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # e # 6 $ ` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # ;f # v $ ` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A ! ** P d 6jR L&j KS R$ 0H , j 4 D3a ! a A, # c # v $ ` B B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # [d # $ ` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # d # $ ` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # e # 6 $ ` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, # ;f # v $ ` B` D @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $ ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` B BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a X WL $} ` BP C @ 6jR L&j KS R$ 0H , j 4 D3a ! a A, T e # E. ` B @ i 4 L (DE4 a , A, $$3 c 0 D 3 T # %0 @ 1 P gNP @ 24 2 4 4E R % 1 < B !TK !` H A 1 A8 fkB0 b[ P m & D } o )m & [ xZ Q X PK a $ A, T$3 D c @ P @ b A 9Q gNP P A 9 D / b E 1 24 2b` A , s 2 A A8 ib o im & , a A d ib o im & C- a A, # % E 2 c PB ib o im & 0 6j20 a A, # %P U 2 c QB c DQ ib o im & 0 jB P P a A, # %P e e 2 c BQB c Q c Q ib o im & 0 jB P m & C- a A, # % # ? B0 ! ! { d iR &jB X I! R a A, # %P # R B@ ! ! { ! ! {@ d iR 6jB I! R I! b a " A, # %P e # BP ! ! {0 ! ! {P ! ! {p d iR FjB I! R[ I! b I! r a ; A, c A 0 # E Ao D PH D T H D T H } `P pM@ d fjB0 b P m & C- jB0 !Q n & C- 0 Q X ! !L jR k gD ,@ K B , iR VjB0 R a A, # % c PA c PA 5 A8 iR fj2 ` & C-VjB0 R a A, # %P c PA c QA 5 0 R jB0 b I : 0 Fj20 b & C-5 a A, # %P e c QA c GQA 5 0 R c MRA A8 jB0 b Cn & C- } o 0 m & C-vjB0 R a A, T % # + z pA 7 d{ 0.H iR ` &jr D c & 4 d & , a A, T E # + z pA 7 d{ 0.H iR ` &jr D c & @< a & 4 , a A, T % # + z pA 7 d{ 0.H iR ` &jr D c & 4 d & , a A, T E # + z pA 7 d{ 0.H iR ` &jr D c & @< a & 4 , a A, T # + z` pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z@ pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z` pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z@ pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T # + z pA 7 d{ .( iR ` &jr D c & p MC, L ?a a & 4 , a A, T e # + z` pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z@ pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z` pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z@ pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T e # + z pA 7 d{ 0.( iR ` &jr D c & p MC, Dd & 4 , a A, T E # + z@ pA 7 d{ 02 iR ` &jr D c & @< a & , a A, T E # + z pA 7 d{ 02 iR ` &jr D c & @< a & , a ( A, T # %@}1 # + z qA 8 d{ 0 qPP c 9 @P2 vj2L c & E O I 0 A 9 ! 2 D ! jBL c ! b &HE H L5 a ( A, T # %@}1 # + z@ qA 7 d{ 0 qPP c 9 @P2 vj2L c & E O I 0 A 9 ! 2 D ! jBL c ! b &HE H L5 a ( A, T # %@}1 # + z qA 8 d{ 0 qPP c 9 @P2 vj2L c & E O I 0 A 9 ! 2 D ! jBL c ! b &HE H L5 a ( A, T # %@}1 # + z qA 7 d{ 0 qPP c 9 @P2 vj2L c & E O I 0 A 9 ! 2 D ! jBL c ! b &HE H L5 a 6 A, T # %P 3 T e # + z qA 8 d{ 0 PP c{ P 0 c g ! 9 j2 j Q ` p } p= 11 n & E _ D ! k T 4 t[ 11On &HE H L ! 2 j2L c &GE H LVjB a 6 A, T # %P 3 T e # + z@ qA 8 d{ 0 PP c{ P 0 c g ! 9 j2 j Q ` p } p= 11 n & E _ D ! k T 4 t[ 11On &HE H L ! 2 j2L c &GE H LVjB a A, T % # + z pA 7 d{ 02 iR ` &jr D c & A 1Y ! a A, T % # + z pA 7 d{ 02 iR ` &jr D c & A 1Y ! a A, T % # + z` pA 7 d{ 02 iR ` &jr D c & A 1Y ! a A, T % # + z@ pA 7 d{ 02 iR ` &jr D c & A 1Y ! a A, T % # + z pA 7 d{ 02 iR ` &jr D c & A 1Y ! a A, T % # + z pA 7 d{ 02 iR ` &jr D c & A 1Y ! a A, T # + z` pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z@ pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z pA 7 d{ 02 Fj D KS } p= X ! a A, T # + z pA 7 d{ 02 Fj D KS } p= X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z pA 7 d{ 02 Fj D KS } p= X ! a A, T # + z pA 7 d{ 02 Fj D KS } p= X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & KS , a A, T # + z` pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z@ pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & 4E @X ! a A, T # + z` pA 7 d{ 02 Fj D KS } p= X ! a A, T # + z@ pA 7 d{ 02 Fj D KS } p= X ! a A, T # + z pA 7 d{ 02 Fj D KS } p= X ! a A, T # + z pA 7 d{ 02 Fj D KS } p= X ! a A, T # + z pA 7 d{ 02 iR ` &jr D c & KS , a A, T # # + z` pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z@ pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z` pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z@ pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a A, T # # + z pA 7 d{ 02 FjRX 0 iR ` &jr D c & , a J, ? @!0F ? " % G!0F $ ? 4; z c {> . " A- 0z j 0F h j j j c "M 2n x A : 2F \ 6 H J .O 9 23 c 'x q fK 1F +J "HP T h 0F +J ? w% Vp pCv A0 p A0 p 2 p u1 xB @ 7$ L7 P ' |PC T H a u R @% T0 PK T@ PN H f % R 9 PI@ q ~ ` LT @E - 5 R @ T Rl , q ^ [A A 2@ @ Tp 2Kp T `X , AM u A + Qx ,A2 < A8 f kbH B /NcX S ,>m & D, 0 R 0 , , ^[ I P : 0 I C} P 0 ! 0 @3X I PK I PK I C [ I PK I CN I!QA I PK^ : nR0 iR nRHT vmb 1 0 = 0 - kB c[ I P m !0 n & C-vn & C- m & < I M 0 Q E 0 } @3 ?fm2 He & :m & 0 7m & 0 n & D wn & C-7n & D 7o & C- a I, d#c 1 ? T %@62 @$0 c 2 +J "H j 3 T # D c 0 "d#c @$0 $ ? x & 1 c ( + J # 0 cl b) X d /c I + C- 0z j 0 h n !* f /c Z Z C j j 0 d/ 6 ? 4 = c x & K : 2 \ 6 H 8 ! c z 4 3 p 7 8i d 9N - /c A62 ?D c 'x q fK h 0 +J ? j V pC 6"# N pC ,C bP 6" t A0 ` ` \`#2 L7 d 70g # pC@ `0 0 p p pC hPf 1 P -@ j X 6"u w t P T PC T H o u R @% T PK T PN H t % R ;@% ~ ` G2+` ) , Q # ,A1PA ! C T PC + 1bP A & A- , q V z l Q % TN e P * tC , 1PA + Q D B A @ H B @ FlbH B ] p 9 DE l gD !LN K B ^ I!0 N[ I!Q n I!0 I!Q ~ I [ I P n H 4 m & [ 8 FoR0 VoRHT k2 c & I!0Om ! d & < m & < n & D\S [ ! T kR l H B P R @3 I PKn &0 N W 09 / !LfmR0 R oR xR l 0 % (o - < m & [ xl ' [ xK0 _[ ! r &m H B n " !L;n & 0 vm & 0 m ' D, 0 e y 0 lB s[ I P I I P [ !0 n & D\ n & C-6o ' D :n ' C-zm & D\ o ' D m ' D, 0 ( , m & C- m & , ^ '0 N W 09 / !L n & T l gD !LN K B [ " !L ?fob ) VnR p vnR p 6nR0 r FnR0 r nR p nR p fnR0 r nR0 r nR0 r oR lb 0 ; a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G * B !0 A ! 0 B0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a Q G, R P c n 1F $ V pC , b , 1 @$fP 0 @ A ! BP F AH ~ ` bL u 0bP A %a` ! ` d j2 c & ,K} Co & Vkb 0X Q 0 1U k20 b & 0 5n & C-um & jR jB s !0 n & [ x a r A, + d#c C$0 /d#c #A$0 H d## D c n @62 ? D c ! G V h- 7 \`#R "E RB # pC t t *B) ~ ` Gh) 5 0 Dhp pCP t D + j2 c & D, 0 n & D\ T k H B S Cn & 0 j2HT` & , m & C-VkR j2 ` & h 9 DE d & < p 9 DE T kRH 5 iR jB0 R a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G * B !0 A ! B0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a A 1 B A8 jB I : a 6 K, F P W W | c ) I } J # 0F cl b) b ' c ~ Y A j j 0F d/ 6 ? * - p /c - k j 4 3F ?P 7s 1Fp 7 8i d j B!0Fp 7 8i d> j c ! % V i 7 2 C0bP A 8 7 T ! p , a GG J T I H T H ` u RA @% T PK T0 PN H e % RA9 PI@ T 0K ~ ` aN A c D l Tp PC T H y u R @% T PK T PN H ~ % R ? 0bP A 2A "P 7 ( , E P (H 5 A $ $ V@ zA l Q % TM+H A D% A D B @E ! $ V {A , 2 6! C!$f A8 oR kr 8 a & ,Kn S ,>m & 0 8m & 0 m & 0 xn & C-xm & 0 n & C- m & C-8n & 0 xo & C- n & C-8o & zm & <&lR S m2HT` & T m & |m & 0 m & C- lR P kR flR0 R lR P FlR0 R lR0 R lR0 R lR P lR0 R &oR0 nR0 FoR VoR0 foRHT iR 6oR mb Nd & D yo ' m & 0 ym & @3 mR ` xB8 I I P M I P ] I [ I P } I !0On & C-vn & C- n & C lB I P I P I P I P ~ I!Q [ I!Q H P B o O 0 R 0X I M I H P B I I!Q N I I P m I [ I P } I P I P ^[ I P I!Q n I P I!Q [ I!Q ~ a A 1 yd B A8 jB I : a I, d#c 1 "c @ P d## D c 8 a ( 0 d#c @$0 ? c ) I } C o | 0 ! ? 4; z c {> . " H 2 P 1 ? b ' c ~ Y K m 2 P Z Z ? j j j c "M 2n x H 8 0 pk * - p /c - k j j s 1 + < J .O 9 2T # d#c s 0 ?D c 1 p 7 8i d 9N - /3 d#c C$0 p 7 8i d> 9N - c 8 a ( V i 7 \`#2bP A $ 7 2 B0bP A A $A * 7 b b , 0PA B@ @ I * # Y kP p S dp H f p t 0 T PC T H k u R @% T PK T PN H p % R :@% Up R * tC X # pC `0 0 A ! y VH q cp H { % :bP A & 7 D r@ , 1KP T @ P # pC `0 ` A6 ^@ [A AT5@ R +H B 5 QI,H B 5 Q , 1PA a pC h0 P pC L7 d \`#[ - $ vlbH B A p 9 DE ob N 6oR nbH 5 0 /Nc foRHT VoR0 x gD !LN K B _ 0 9 p 9 DE l D- O ! d & I!0Om : L~m & D\S} I!0O~ Q 9 I!QAN : N l>m & ,Kn & 0 5o & , n & C-5n & C- n & <FD _8 _ D D, 0 I PK I PK I PK I!QA I : [ I C [ H 4 kB P 4 n & , H P B <m ' T:m & 0 6m & E mR ` mR ` n H B I P ] I I P } I I P !0 n & C- n & < } aX I 4 I P n[ I! I!Q I P ^ ! xRHT VxRHT Vn2 He & , D m ' D :o ' C-zn & 0 x H B o I!Q I!0 I ] I } : N h>m & 0 wn & C-7m & C- m & C-7n ' D, 0 M 0 , l D- O[ I 4C ! R a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G * B !0 A ! P B0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y$ B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y$ B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y$ B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a A 1 B A8 jB I : a H, R W ; @!0F . + ?P ` A 0 @!0F $ V h Z ` !X ` a Y a F ? A0 & B & f Y F ? A0 & L1 B * ` ? I! %0 d ?(q + 1( * F ? A0 Y c # @ n <3(O ! 2H5 7 kb 0 jr 8 a & ,un & ,K I!0 m I M !0 m & < o O ! b k2 He & C- 0 Q 0 0 @3 S Vk20 b & , n & ,Kn & 0 5o & , n & kR0 R &lR HU l > KT` & 0 n & ,KM I : a A 1 y B A8 jB I : a E, / d#c 1 "c 1 ,? # D c ! G A 0 @62 H ; D c 2 . + ? K q V h 7 \`#2 @0dp H 7 L7PN0bP A 0 7 2 D0bP A A $q 70 \`#RC ;bP A 7 2 CP ' ~ ` G * P1 7, L7,B0K0 T ` A ! y BP t 0 $ n l @ S 6kbH B Nd & ,K ! R jB P 4 m & ,K D m & D, 0 ) ( /Nc vo & 0 6m & < /Nc VkB I! '0 N W 09 / !Lvn & <FD _8 _ D D, 0 I!0OM[ 0 qM kR S kbH 5 d k2 ` & D l H B H P B 7m & C- lR P &lR P l D- O I! I! &0 N W 09 / !L l2\Nd & [ xK0 O I : a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` Gx* B !0 A ! B0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a K, # @$0 @ 0 P c 8 a* %@ P .j 6 c 8 a h 2F +J ? $ @ 7 \ {Q A } EH: U CpE# E A ! {4 D0 T`0 p * 6"# M pC , L L7d 0 pC ,C L7h 3K L7t @ I A ! D0bP A T A A ` $ -a` `|A , 2P BB A @ G kbH B ,5n & <6m & lR c &kB `[ Q FkB R n & , m ! r l D T O I H 4 I# DD?"Y Q 5 , , I H Q d & <Fl2 He & D, 0 kR S l H B Q - $ /Nc 8 b & D 7n & vkR kR k LN 8K p9 ) (o - <>m & [ xl & [ a $ E, < d#c 1 0 "T # d## c 1 ?$ # D c 8 a ( 0 +J ? j c on 1 +J "H j c ! G 1 0 p 7 8i h 9N - / d#[A 5DYC # E R A ! U # L pCP , H 7( \`#2 ``0 ``0 hdp pC tC L7 1 p ! h0 2 p+C0 0 2 pCv h0 7Li 7 A 7 m f@ @ + # pC `0 0 A A ! yD D0bP A A T Po pC L7 D0 p y d p l A f FlbH B - l H B S~ H P B m & D, 0 M m H B S I!Q N H 4 m & 8 2Y '0 N W 09 / !L n & <um & <FD _8 _ D D, 0 0o +!Q kR S kbH 5 Q 0o +!Q m2HT` & D\S " !Lzm & , o & ,Ko & <FD _8 _ D D, 0 p9 ) p 9 DE l gD !LN K B Sn I : '0 N W 09 / !L9n & [ l & '0 N W 09 / !L n & <FD _8 _ D D, 0 ( /Nc xn & @3 mB8 }[ ! r mb U , n & <FD _8 _ D D, 0 !0 n & D\Sn & <FD _8 _ D D, 0 p 9 DE vm2 He & D, 0 % kbLN 8 Y 8 r kb ( /Nc a # A, $$3 c @@$0 @ 0 P 3 D s dN 9a %@ r 2( 2b` A A AR !8 c ` x* jB I! R I : I :. a @ C, T %0 P 3 T 9a 3 T 9a 3 T 9a ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9Eb2 jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a @ C, T %0 P 3 T 9q 3 T 9q 3 T 9q ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9Hr2 jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a @ C, T %0 P 3 T 9 3 T 9 3 T 9 ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9K ! p jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a K, # @$0 @ 0 P @!0F ? c ") X 0F $ @ 7 \ {P A | F ED: Q C`A# E A ! {$ D0 P`0 p q* 6"# M pC , L7 b 3K 7D 2 I0 h`0 ` t = tC, @ I A ! D0bP A T I b tC X @K X d8 qA l _ ;K T B A8 G kbH B ,5n & <6m & lR c kB ` Q Flb @3 Vk T 4 [ " !Lwo & n &HDL 4 qM?PLD # , m &GE H L l ?8T xn & "5@c &D 0 l H B ~[ I!0O Q ) $ /Nc 19 , j2 ` & , o & ,Ko & - Y : jR iR a E, 7 d#c 1 0 "T # d## c 1 ?$ # D c H 0 ? c 0 3 c ") X H 3o / ^d#[ 5@Y # E A ! U # L pC@ , 7( \`#2 \`0 \`0 ddp pC tC Z L7 1 p h0 | t t t + pCf h0 7Lh 7 7 l f@ @ + # Q pC `0 0 A A ! y4 D0bP A A T R pC L7 C0 p x d p l A f 6lbH B ) l H B Sn H P B m & D, 0 I fl gD !LN K B q j 8 a H 4 /N LFl gD !LN K B '0 N W 09 / !L n & <um & <FD _8 _ D D, 0 } 0o +!Q kR S kbH 5 M 0o +!Q m2HT` & D, 0 qM5o & C-FkR VkR &l gD !LN K B '0 N W 09 / !Lym & 6 I : [ '0 N W 09 / !L m & <FD _8 _ D D, 0 Nd & <FD _8 _ D D, 0 u p 9 DE kB ` 4 m & a ,wo & [ l & , ! r kB I! [ '0 N W 09 / !L m & TVl H B " !L8o & X 29 , n & ^ ! R a # A, $$3 c @@$0 @ 0 P 3 D s dN 9a %@ r 2( 2b` A A AR !8 c ` q* jB I! R I : I :. a @ C, T %0 P 3 T 9a 3 T 9a 3 T 9a ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9Eb2 jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a @ C, T %0 P 3 T 9q 3 T 9q 3 T 9q ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9Hr2 jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a @ C, T %0 P 3 T 9 3 T 9 3 T 9 ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9K ! p jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a J, V P h G!0F HP _ P /c H A 1F h < ? j c ; h ( 0 0F / >> 9N - c }/ o ' h 0F v) ? 2 c - - ; 8- y 0F ` 2 ? h j j c o t } 2F fz si /c 9k 9+ %@ ,m( ?d ~ ` (N p d0 p d0 A a n U ,A2 2 EP PI. PB@ p s d0 ` A1g T ,A2 1 $A o ,A2P ! d 1P ! , = p + @ j , 5 RA T` PC T H h u RA @% T PL QN H m % R @Q T @i T E \ p PsP zC t C _ A8 d fo ?8T n & [ 6 8>m & oR nRHT nRHT oRHT lBHT 0 5 mR S mR HU lB0 I1 U [ Q = 0 , 4 e 0 Y ] a I : Cn & 0 vm & 0 m & n & C-6m & 0 vn & < ! mR0 b mR0 b nR0 b lB : 0 @3 R 0 0 0 0 Q 4o 4 - R Fnr p 9o & C- n & C-w a I, d#c 1 H < T %@62 @$0 o8 ? t? c 8 a ( 0 r a| <> } c 'x q fK h 0 /c 2 ? d#c @$0 +J ? j c 'x q f h @62 ? p D c l{ - , 0 / >> o 1 c A62 ? D c 1l r mI C g[ 0 #{ l ? 2 c - - C ` l 0 (N w^ ? # z c `* ! d* 0 Z Z ? h j j c o t i (] 2 u i] /c l p K; } > 2 ) ; si /c 9k 9+ q s 2 $J d#c 2 +J ? j ' 6 ~ ` G?I p 0 dp A ! { D0 2 B0 0 L7 d0 B!c T 0 0 , 0PA H @ T 0PA R p dp A ! { D0 2 D0 0 L7 L7 ! & 0 0Di Ac d` 0PA d 0PA aP dp A ! { D0 2 F0 0 L7 L7 ! T 0 4E tC @ d@ `@ T T 1PA R pC \`#2bP A & 7 7 &s 's w @ f T qh @ 0 f T sh A ! {T 3 Q t ( B T H H U RA-@ T` PI H1 H R .@I T PT (PX tQ A 7 B8 7 W N7 C0 $ lbH B M 4o 4 4o 4 4o 4 4o 4 0 % 0 - 0 5 0 ,6m & <FD _8 _ D D, 0 ] qMvn gD !LN K B I!0O I! R I! b[ P I 0 @3 I CN I C &0 N W 09 / !L yR FyR Vz2\Nd ' m & , ] I!0 ] '0 N W 09 / !L n ' , I!0 " !L n ' <FD _8 _ D D, 0 n & D, 0 i 0 E ,o 0 O : ,o 0 o[ I!Q I!Q I!Q ~ I P : , /Nc 5 [ : qM:o ' C a 5m ' TfoR s l H B O[ " !L m ' <7o & D, 0 q m H B I P " !L=m & D, 0 n H B S " !L=o ' C-8m ' C-xm & ! ) 1 9 Q qMuo & D 5n & 0 n ' C-ym ' C- m ' C-9n ' C- n ' C-9o & [ xl ' < n & D vn & 0 n & < e $ T $ T $ T Q yR0 VmRH 5 m C 0>m & [ :4 n C 0 m & D\ M : 9 0 I : M@ O[ I : M@ _[ I : M@ o I : M@ ! R a # A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` Gd* B !0 A ! B0 0 F @ jB I! R I : !1 ` a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! yd B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! yd B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 8 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! yd B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 !1 (a a A 1 P B A8 jB I : a U F, P P | c %@ P "c ! $ @ 7 \ [ " E 7 2 CP FC @ b D ` h* D2 DfP C d0 @ ! j2 c & I!0O] H 4 R 4 m & 0 Q $ X S ,>m & C Q jB !0 o &D ,5m & [ x a E, 6 R V P W P 0 @!0 @ 0 @!0F ? q c y 1F@ 4? ? t < c * [ < x< 0F d) 2 ? 9 c 3[ Z % V pC , b $ V pC A @ A e A , AL7 CQAB 7 b@ b A1a {A t Aa z7 Y a "! T * P ,P ` k 3 9" 4 @ t Y H ($ Y b " @*` @*h " 7 J @* & ` -(l k (. (. q FlbH B /NcX I!0 N[ : $ /Nc m R I n I [ I [ I P : y !QAo & 0 ! ( ~e & D, 0 _ P 0 @3 I PK^[ I C I PK~ I!0O I PK [ I Cn #8MED ?8T lr >m & C- n & [ xl & D, 0 A o O[ " !L{n & D, 0 0 0 0 9 nR0 &oRHT oRHT 6oRHT Vl2 He & 0 6m H B I H P B " !L n & C-wn & C- n & n & C-w a A 1 y$ B A8 jB I : a C, * d#c 1 "c 0 @$0 c ! G A62 ,? T # D c 0 V h 7 \`#2 @4cp p t HC T -$ ~ ` G * TQ@ % 4bP A A Tp , 0PA B p t " $ B &kbH B , n & D, 0 @3 VkB8Q} 4 n & C a ,uo & lr >m & 6l 8 a qM p 9 DE d l gD !LN K B I!0O][ 0 0 , } FkbH 5 d k2 ` & D k20 b & <FD _8 _ D D, 0 p9 } o 1 a i E, | d#c 3 + ? c C 0 @62 @ t0 ?# D c B62 c ` > u0 ? c 0 c " C$0 @62 @$0 ? c n 0 ` | | > + : c 1 @ 4? ? 2 * 7 c ? 'z : O 0 2k ? >h z c o K 8 [ < x< 0 d) 2 ? :Y L 2 c $ 9k 9k o s 0 0 Z Z ? l j j V pC 6" t<bP A $ 7 2 APc` p l d AZ n . C J n( " j @ 4 lD 6@ 5H 4 5 t 5 d T 0PaGH A ! { 7 | 7 t t ( B s % r X u % Q PG@ R H w 5 R @ T PG T H { R @5 7\ 7 ) PT u P Q 1K@ T 0 A8 lbH B ( /Nc :n & <FD _8 _ D D, 0 q o O D5o & tD nR nR nR0 oR nR0 k 8 a I P I [ I P I I P [ 0 % lBHT !Q o & D\ E 1 mb ! T lR Vm H B [ " !Lzo & 0 ym & C- k2 ` & C-9m & C- m & <FD _8 _ D D, 0Y ! oR oR oR oR0 mr >m & [ xl & m o O I M[ #8MED ?8T n H B ~ " !L W mRHT` xRHT vlB I!Q n[ I!Q ^ I! } 8 b 6xr >m & C a '0 N W 09 / !L n & T o H B O R 8 b & C- m & 0 n & C-7n & m & C- n & C-wo & <FD _8 _ D D, 0 6 a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G<* B !0 A ! B0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a ! A, D 3 T # % U P % Q QB s 1 A8 j T 4 Q } o o 0X Q vjBHT` !Q m & 0 8 a A, D 3 T # % U P e 1 ` C vjrT 4 d &HE H L } o o 0X Q a A, D 3 # c %@ e 2 P D B ~ ` M$H0 0 E @ iR k jR ovj2HT` & , a " A, # % c 0 @ # ! P ~ ` M B0 # } ! 1 A A8 ib Em oQ f & , , ,6 a A, # % c 0 @ # ! Q q $ ib Em oQ f & 0 jB P[ ! a A, # % c 0b` A /* 1 ! D 1 A8 ib Em o 0 ! a A, # % c 0 @ # ! Q q $ ib Em oQ f & 0 jB P[ ! a A, # % c 0b` A 0* 1 ! D 1 A8 ib Em o 0 ! a ) A, # %@$0 @ 0 P c G1 PA QE U 0 , 0 5 0 C 4 jB [ Cn &GE H L6k T 4 k jb Em o 0 j2 ` & D jB `[ a A, # % c 0b` A .* 1T` P C ib Em o 0 ! b & C- a ( A, D 3 T # %0 @ 1 ! dN 91 D PA % Q QB 2 M2 I @ jBT 5 R n & [ f & [ f & 0 j2HT` & D jBHTp n &EE\S a ! A, D 3 T # %0 @ 1 ! dN 91 D PA 1 0$ B`d j T 4 t I : I : X !QAm &EE\ m &DE\ a $ A, D 3 T # %0 @ 1 ! dN 9A$0 " c @@ 2 D B ~ `0 2 1 @ F @ iR k jR o j2HT` & , a 0 A, T$3 c @0 D 3 T # %0 @ 1 Q gN 91 D K 2,J2b` A A ,* C ( B ~ `0 2 2 P = ~ `0 B 2 Q3 P M @ ib Em oQ f & , , ,6 a ! A, T$3 c @0 D 3 T # %0 @ 1 Q gN 91 D K 2,J2b` A A -* A9 T C 0 2 A8 ib Em oQ f & , a A, T$3 c @0 D 3 T # %0 @ 1 Q gN 91 D K ` RA 2 1 @ F @ ib Em o , a ! A, T$3 c @0 D 3 T # %0 @ 1 Q gN 91 D K 2,J2b` A A .* A9 T C 0 2 A8 ib Em oQ f & , a A, T$3 c @0 D 3 T # %0 @ 1 Q gN 91 D K ` B RA 2 1 @ F @ ib Em o , a 3 A, T$3 c @0 D 3 T # %0 @ 1 a hN 91 D K 24JRN T @=A @ 2L S U "9 2 A8 kRT 5 fkB [ R n &DE\ } oQ f & [ 6 Y I : Cm & 0 n & 0 7 a $ A, T$3 c @0 D 3 T # %0 @ 1 Q gN 91 D K ` 2 ,I 2 RB 2 A8 ib Em o 0 ! b & C- a A, e '$ ! B @ j OI M } o 1 a A, # 3 s `N 9 D e s B \ A8 iR< EDVj ?8T a A, 3 c 7@ 2 A8 &j OI M } o 1 a A, 3 T # %0 @ 1 cN 91 cN 9A 0 0 @ 1 R D eN 9Q D eN 9A 1 B F JR 2 p l @ j ?8T } c a A, t 3 c < 7\ 2 A8 iR &j OI M a , A, 3 T # %P e0 @ 1 cN 9Q D eN 9Q D eN 9Q D eN 9A 0 0 @ 1 t gN 9q gN 9q gN 9q gN 9A 1 D F $ 4 R 2 pA l @ j ?8T } c a A, $$3 T # %P 3 s aN 91 t 3 D c 2\p ; C @ iR j OI M a @ A, * $ 3 T # %P 3 s@aN 91 dN 9A dN 9A dN 9A # 3 t s@fN 9a fN 9a fN 9a gN 9q T R P %R %Q EB 1 cN 9 lN 9 pN 9A dN 9AE2 @ 1 V 28 qA CP k ?8T } c !1 0 B 8' oN a - A, $3 c @ c Da 3 T # %P e0 @ 1 B D fN 9 hN 91 $ ` ,# B0 00 Bpd k T 4 t Q d &EE\ m & , , } o 1 a - A, 3 c @ c Da T$3 T # %P e0 @ 1 B D fN 9 hN 91 $ `0 ,# B0 00 Bpd k T 4 t Q d &EE\ m & , } c ,5 a e A, 0 $3 c @ c Da c H ,c L < 3 T # %P e0 @ 1 d hN 9 jN 9 jN 9 jN 9A P %R$eB 1 d hN 9 D nN 9 jN 9 jN 9A P P @ 1 d hN 9 sN 9 D nN 9 jN 91 @ $ E e ` ]# B0 m A ! q+ 2x]6bP A A 1* F 2 [5 ] B 2 _6 O @ kR Vl T 4 IQ IQ Q d &HE H L ! 2 lRT 5 kB I! R I : I! b a e A, 0 t 3 c @ c Da c H ,c L <T$3 T # %P e0 @ 1 d hN 9 jN 9 jN 9 jN 9A P %R$eB 1 d hN 9 D nN 9 jN 9 jN 9A P P @ 1 d hN 9 sN 9 D nN 9 jN 91 @ $ E e `0 ]# B0 m A ! s+ 2x]6bP A 0* F 2 [5 ] B 2 _6 O @ kR Vl T 4 IQ IQ Q d &HE H L ! 2 lRT 5 kB I 8 I! R I! b a D, T %@ P W T # # EP P P %@ P c A 3 aP 9A '% V pC , B$ `0 VAF A 7 L7 DpC , 6 -Nd FA M Q d Dgh @ 4@ 8 ! !@6 5N Q e q 0 !@j * j i s 4 Hq @ ' RC E o A A D a d P kr 8 a & U (@ 2\6n & 0 6m &HDL M 0 } $o +! &mR0 b mR ` vmR0 b mR0 b mR0 b k Q ` p k Q ` p kB I D ! I I D ! 0 (@ 2\5m & E W] D ! U k D s k2 ` & D vk20 b & , m & I C I PK} 4 1 = 0 5 0 9 A q @3 u 8 r iR kR a A, T %@}1 %@ P # d#c 1 3? c # EP P P D c B62 ~ 3 dP 9Q # ) @ @j ` ! * J Mk : 0 n 02 F n 44 nx } a $P 5N P @ 7@ 8Q P@ e a@ } i $P =N 2 @ 7@ 8 P@ e <e@ @ B 2 )( J @ .NJ ! ?@ ` p g 6lbH B Nd & 4 M 4 m & kB p = (@ 2\ m & D, 0 E (@ 2\vn & 0 8m & E I ~[ I P ^ I P n H 4 m & C-vo & E n & t, '0 N W 09 / !Lxo & D\ (@ 2\5m & E W}[ o + I 9L~ D ! U fmR p Fk20 b & E W I I m I P ] 4 e q 0 h 9 DE d & C-wn & C- n & D mR p mR0 r &kB '0 N W 09 / !Lym & [ xl & t,x a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! yT B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! yT B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! yT B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # } CP j T 4 T[ Q d &HE H L , iR a i F, T %@ 0 @!0F P @ P 3 aP 9A # { A ! B0 `0 0 A ! 0 (`0 pC A0 d0b` A c( %!@F > A0 1 Y x@0bP ? 5 d A D@P @ ` ! K ` p 2 * j2 c & vkb 0 Q 1U jR jR jbD T 8 b & C- jR kR kR0 R 6kR kR0 R kR P kB I!QA [ I C ! b & [ 8l & [ xl & ,K] a C, T %@$0 z> aH ? q d## T # d#c 3 D c H 0 0 3 dP 9Q # I A ! B0 , 6"# ) Q A e < A! n 0 Fd =rI" n "0 e F > A0 ] ? $F > A0 ]A? (# E Q A- H5C H , 0PA B@ p h0 L p % h0 p F h0 p g+ tC+ A @ G 6lbH B ! &kRH 5 Fl gD !LN K B }[ I :n '0 N W 09 / !Lvn & < l D- O[ ! d & D, 0 d vk2 ` & D kR P l H B I! R I! b I C I! r P 8 b & , n & , n & ,Ko & <FD _8 _ D D, 0Y I!QAm I PK} I PK ! b & ,KM I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # { CP j T 4 T[ Q d &HE H L , iR a H D, T %@ P P c 8 a* 2F 3 aP 9A $ V pC , " `0 MAF 7 L0 a $) A8 j2 c & j2 ` & [ J06k D T O P $o +! , j2 ` & < , } o 1 a 0 A, T %@$0 +J "H j c A@$0 " 3 dP 9Q # ) @ Cj0` P D 2 j2 c & D, 0 o + X ! b & ,Km & [ xl & C- a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! yt B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! yt B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! yt B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # y CP j T 4 T[ Q d &HE H L , iR a N, ( T %@ P c h A 1F ? c n $ - ? 0Fp v !HP T B$0 - =Z ? H { c 3 aP 9A 3 aP 9A # } d TT ,C t T A0K 7 1 0 p " D T" , 1bP A 8 a@ BQ 1K 74 G 2 I0bP A 8 ,AS $# F RF 2(K0bp ( 8!T , 3bp ( 8!T , SR V HmA pEa q!@ 2b` 8! E 0b` x* }t B0 # P B0bP 8 # F B0K h t0 Qh tC0 G lb U d & FmRHTp 6mR c flRHT` lR ` lR0 b &kB s D 4 vkB I H !0Oo & < k {Q lb - , m & , [ I!0O ! b lb 0 Q I 0o +!Q k20 b & o & , I PKm 4 , , , [ I : I : ! b & ,KM I : a A A, # c ( %C P P ( c Q PC c R W$ V ' H LZ 'G > A0 & B a ? kB ! B )" 6kBHG [ H 4 @ 2\ kB0 [ PKo & 0 j2HT` & tDvk20 b & [ 6 I! [ I! 4 , &kB p a K, R T %@62 P yJ l .H t q: D c h C62 @$0 c 0 fI ? Y h 0 c @ 0 @$0 ? ` c ? 0 p v !H n v d#c C$0 0 /T$c 5 , h @ # ~ => H { D c 3 dP 9Q 3 dP 9Q 3 dP 9Q 3 dP 9Q # L 6 Au 7dVq H 7 7 r\`#2 lh0 0 [0 l 6" p2 L7 E0bp A % 7bP A % 7 2 A0bP A A %A 7 f d P ! w Df d0bP A % 7 g } ` GiIpu A 7 o d 0 l0\`#2 7bP A % 7 q J } ` GsI B0bp A % s # ^ pC` `0 p d n0Kp 7 L7 ~` # Q_ pC `0 D" q@t@ pC1 h0 A @!; 2 A $e V H B 5 A PB $ $PH H } ` G I A } ` H0b` - A 0 + ~ ` G I }$ 7 . t , 2PA B" p / q H / t P kbH B ,5n & ,K ! R fob 5 ,5o & ,K [ ! vob , m & ,K [ '0 N W 09 / !L;n & D xn & D n & 0 A ,vm & < lR S Fm D- O ! d & , : lbH 5 l H B Q M mb " !L:o & D\S I!0O 4 h 9 DE d & [ xj & [ j & [ JH 2 @3 } o q ,7m & , ] D&nb U o *m & D, 0 fmbH 5 mRHT` l LN 8 M !0 m & < qM m LN 8 '0 N W 09 / !Lzm & D\So & <FD _8 _ D D, 0 ( , m & [ >m & C-6o & <FD _8 _ D D, 0 I p 9 DE mR s nR Fob 0 ! t vlbLN 8 y 8 r 6n LN 8 ! b & <FD _8 _ D D, 0 6 a X A, T$3 c @@$0 rI \ c ( %C}1 d#c # D 3 %@62 c T @ , p l ! ' @c E` qB ( 2 @ R)R "A T } ` A ! + } ` G )@5 RH E A8 kBHG D ! e & C- 0X Q Y P } oQ |l & C-5m & , n & kR k 8 a I D ! u I! !QAm & 0 0 a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G ) B !0 A ! 0 B0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a E, 3 @!0F H <H n co a 2c 7 3 %@9P % @ ? ` @ Ph c 2F | |: "H o c 8n AI 0F m- ? \ } c ! # ` MX $ 7 2 A0 ] , @ E 2 CP %# z A X P PA $@l r &i)H 2 pph` a AP ! ] VA H 1bp A A 8 b ~ ` :N R H c E R H d e RD c RV @I , d E lb A , n & t,6mR ` m D T O Y 0 a 0 Q VmR0 b kB I P !8Me & 0 n & < ) T m & 4U} I P [ Q d & C- n & < l Q ` pY " Sd & 0 tD k D s Fl2 ` & 0 5m & D k20 b & o & 0 un & ,Kn & C q fk2 ` & C-5n & C-5o & C-uo & [ x a ) A, g d#c 1 # D c ! G 1 = n co a 2c ) ~ " 1 c 7 3 D M L A62 p c # D 3 %@62 ?c D c @62 @ t@$0 ? c 2 | |: "H ;: $ c [ C; 0 P | f ? " c % n CI 0 m- ? v* m[ = c , = * % _ V pC 6" 7 F\`#2 |h0 +D0 @ p H V p P h0 FPj 2bP A , T0 Y B0 [ 3' C f0 P a 4 ( 2 @ hp p hp 5j ` Ax 6 6 ( H * ! F ? A0 [aT R ` HU0 8 * 9 9 * ( nX W@ 5 { kbH B p 9 DE t m2H b & D, 0 - I$8MED ?8T vN[ H 4 m & vl gD !LN K B n[ '0 N W 09 / !Lxn & <Fnb qM l Q ` p I!0O [ ! b &m Q ` p ! T l20 b & mR P k gD !LN K B p 9 DE Vm 8 a } o Nd & C a } < TD4 C a I !0 m & C- m & 0 vo & < qM qM l H B ~ i m H B I m[ I [ I P M I P ] I P } I 4Cm I I P I P ! R a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! yt B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! yt B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! yt B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # Rm CP j T 4 T[ Q d &HE H L , iR a H, / @!0F dH & 2c %@9P % @ ? `@ ?T` '1F =P 0FP | f ? tK q c { r * % _ 0F # ` MX $ 7 2 A0 ] , p 2 GP %# z A X P PA $@l r &i)H 2 pph0 @ ! f 3 S8 L7p 3 a Q T$ A xg B`O ( 1 9 @*( @ 0 @ u G d ( J l2H b & [ 8+ k2HGd & 0 vm & C-6m & 0 n & < Y mR ` kB NS !0 o & C- m & C-vo & 4U [ Q d & 4U I P [ I P 0 @ 2\ k !Q / m 0 y 1U k D s Fl2 ` & D lR P k20 b & o & + Y , E 0 @3X H P B A I M } o 1 a 1 A, d d#c 1 # D c ! G 1 d & 2c H !1 c A62 p c # D 3 %@62 ?c D c @62 7 ?D c 'A62 @ t@$0 ? c 8n C) ! : 0 P - + ? tK q c { r o 0 r ? \ } V pC 6" 7 V\`#2 |h0 +D0 @ p H V p P h0 FPj 2bP A , T0 Y B0 [ 3' C f0 P a 4 ( 2 @ hp p hp 5j ` Ax 6 a !b 3 F 6 p h0 t B op 8p i$` U0 RC AT H v H w H T` PO 5 2 n kbH B m &n2H b & D, 0 l2HGd & D, 0 /Nc fl28 o & 4 M P B n & <FD _8 _ D D, 0 p 9 DE k2 c & <FD _8 _ D D, 0 qM l Q ` p I!0O D ! U mR S vmbH 5 y X P @3X &0 N W 09 / !L m gD !LN K B Sn I : [ H 4 Vl"8 p 9 DE mbH 5 < TD4 C a I } !0 m & 0 6o & D vo & < qM qM m2 ` & D, 0 0 , m H B I m I P M I P ][ I [ I P } I P I 4Cm I I P I I P ! R a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # k CP j T 4 T[ Q d &HE H L , iR a H, 8 @!0F . + aH " ( z 2c 5 %@9P % @ ? `@ ?T` '1F =P 0F 7x r x c d: ? A) ! : 0FP - + ? v* m[ = c , = A 1F # ` Md $ 7 2 A0 i , p F 2 CP &# z A [ P P $@l x &i)H 2 p|h0 @ ! f 3 S> L7| 3 a Q T$ A Y B . 18 3 F ? A0 0' 3 " ) 4 2 )" 1 )+ Y c $ C \ { 2 N fmb 9 : B I } S ,>m & C-vm & < e mR0 b lB NSY I !0 o & 0 6o & C- n & 4U Q d & 4U ! b mR0 b k2 c & <5m & 0 vo & E , ?E lrHT KGd & 0 l2HT` & 2\O 0wn & 0 m & C- l l O I! I C [ 4 U A , , I PK [ I P M I P ] I : a N A, t d#c 1 # D c ! G 1 . a " ( z 2c n !1 c 5 , h A62 p c # D 3 %@62 ?c D c @62 7 ?D c 'A62 @ t@$0 ? c 2 - =Z ? 7x r x c d: ? t 0 P | f ? " c % n CI 0 m- ? v* m[ = c , = * % _ V pC 6" c 7 b B g 6" [ tC A A A ! BP d f c l 8 s h B [ 7' 6 6" =@ @ ( t ` r` % U $ F V H 1bp A * # + APA T PD E T PF E P >@E T pC L7 d lbH B u Vn2H b & D, 0 Fn H B S 0 /Nc l28 o & 4 M P B yo & <FD _8 _ D D, 0 '0 N W 09 / !L n & D\ E @ 2\ mR S o H B ^[ D ! U mR S mbH 5 P @3 &0 N W 09 / !L m gD !LN K B SN I : '0 N W 09 / !L9n & , ] D m 8 a ,7m & D\ M #8MED ?8T 0 nR ` nRHT` flB I P I! I! '0 N W 09 / !L:m & D, 0 m 0 " !L8o & C a 0 0 = @3 0 5 ,u a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # Rj CP j T 4 T[ Q d &HE H L , iR a I, > @!0F . + aH " ( z 2c 5 %@9P % @ ? `@ ?T` '1F =P Z P P_ P c 0F < >> j c O b 0F Z Z ?P A 1F # ` Nx $ 7 2 A0 3 p z 2 C0 0 `@ 2 DPd 2bP A A) T yB @ b $@ ( ,Ca v f 2 t b L7 / t @E Ba a a T$Pa U pA C h0 Y!`W U RC A ~ ` jN l # RA H m 5 RE e R H p 5 RA c )T ! } c U ~ ` zN APC -a C C @d fl 1U Vl2HGd & nb X I!0OM[ ! b l Q ` pY !Q / 9 X I Cm P Q f l FlR k2 ` & D uo & 0 5o & C-5n & C- n & C q iR nb ,wn & 2\O 08m & , K LH# d & [ 8+ 6m w , O I !0 m & C- m & < vlB NS I P !0 o & C-vo & C-6o &D m Tun & 4U [ I P I 0 0 0 e , /= 0 I P a A, | d#c 1 # D c ! G 1 . a " ( z 2c 2 . + aH K q c 1 - =Z 9H 7x r x d#c 1 @ 0 P d#c ! O 3 @$0 = c 'A62 7 ?c t@ D 3 # c A@$0 ? c 2 . + ? K q c s | 3_ 0 Z ? j c / 0 c ? 4) ( c [ Z j j @}1 c ' 6 7 b 7 c cp p q pCp h0 P D0 \`#2 L7 7 A T l V p ! h0 GPw 2bP A , T Y B 9' ;' p 2 hp )t ! ` A` ;H a a nx . @0 L7 G0 0 `C > H` > d : H * ! F ? A0 [!W va tU B! DA* ! * ( 2JA*( ! d S @ B V8Wa A J B VHW (0 d A @ 2 flbH B ] ,un & <FD _8 _ D D, 0 M NT xb ! m2HGd & 0 8n ' 0 n & C- m & I N [ I P I P I [ IR S IR Sn 0 = 5 p 9 DE FlBH 5 D ! e & D\S] " !L m & <5o & D, 0 y (@ 2\ n & D Vm H B P 0 qMuo ' D m & FxR0 Vl gD !LN K B - 0 4 /= 0 } o E Nd & < m & D, 0 ,wo & D, 0 qM6n & D, 0 0 , n H B [ #8MED ?8T vlB s I I P N !0 n & D\ n & D\ n & <FD _8 _ D D, 0 5 p 9 DE ob Q p 9 DE 6n gD !LN K B [ " !L<m & 0 x H B I P M I I P }[ I!Q [ "= 0 D TD4 C a e @3 : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! yD B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! yD B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! yD B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # h CP j T 4 T[ Q d &HE H L , iR a < D, c ( # ^ pC00 C @ , 0P 0 !T` A ! ` D0bp A 9 4 A ! D0 ( , B @ j2 c & TVj m > Q , , , q 2 ` 6jB I I I -[ ! 1 [ c a H E, # # H W ^ 8b` A = < ] {B l 7 2 D0 P( , 0 # O 3K@T = % { l-A # j2 c & <5m & D6n & D ( K Mvm & 4Um & D } D n & D kr Ka & 6kr E >m & 4 } oQ oQ ,vj NS RX ! R !1 @ Y a Q E, T %0 @ 0 @ 0 @ P 3 R 91 3 R 91 3 R 91 !, 0l@ \ {/ ( 1 $`0 0 Y @l ! "q l &( 6 A f [& 7 2 A @ & fk2 ` & q! 4 p= 0D&jb<oQ (oQ Cd & E 4 T & )>0 8 b & E m & E n & E n & [ zl & [ l & + H O FkB a Q E, T %0 @ 0 @ 0 @ P 3 !S 9A 3 !S 9A 3 "S 9A !, 0l@ \ [0 ( 1 $`0 0 Y @ ! "q &( 6 A f [& 7 2 A @ & fk2 ` & q! 4 p= 0D&jb<oQ (oQ Cd & E 4 T & )>0 8 b & E m & E n & E n & [ zl & [ l & + H O FkB a Q E, T %0 @ 0 @ 0 @ P 3 (S 9A 3 (S 9A 3 )S 9A !, 0l@ \ ;1 ( 1 $`0 0 F Y @l ! "q l &( 6 A f [& 7 2 A @ & fk2 ` & q! 4 p= 0D&jb<oQ (oQ Cd & E 4 T & )>0 8 b & E m & E n & E n & [ zl & [ l & + H O FkB a Q E, T %0 @ 0 @ 0 @ P 3 /S 9Q 3 /S 9Q 3 0S 9Q !, 0l@ J \ 2 ( 1 $`0 0 ~ Y @ ! "q &( 6 A f [& 7 2 A @ & fk2 ` & q! 4 p= 0D&jb<oQ (oQ Cd & E 4 T & )>0 8 b & E m & E n & E n & [ zl & [ l & + H O FkB a Q E, T %0 @ 0 @ 0 @ P 3 6S 9a 3 6S 9a 3 7S 9a !, 0l@ \ 2 ( 1 $`0 0 Y @l ! "q l &( 6 A f [& 7 2 A @ & fk2 ` & q! 4 p= 0D&jb<oQ (oQ Cd & E 4 T & )>0 8 b & E m & E n & E n & [ zl & [ l & + H O FkB a K, T %@!0F HP P -m 3 z # c 2F ? /c 3 aP 9A D p A0 ,A 2(A0 y 2(B0bP A \ 0 7 N 7H P ~ ` HP A ; HhP ~ ` Md 2 E0bP A T , 2bP )H# + DT Sf # 1( TS j d ? K! . Y d ?hM 1( R8* * A*( f 0 )( @ f 00 BH z |!P A I kb 5 H : L>m & Vkr 8 a & ,K ! R kb 9 1U 6lRHT` jB S D 4 flRHT` vlRHT` FkB I H I D 4 [ I D 4 0 , m & , m ! b kR S Vlb (o Cd & 0 k2HT` & [ JH 2 , I!Q } 29 ,um & , n & C-7m & D wm & [ x a 4 C, c #) X 4 n < f !( b - @F ? A0 & B $ F ? A0 & a ` @ " 6j2 c & , m & C- , , X ! b & [ 8+ iR Fj20 a L F, EP # c 0F "H " 1( B .H &I A < ` ` %( P` x %( E e * j d %( Z $ @ HR F ? A0 z j2 c & 0 &kB0 : B X #8MED 8 a & ,Ko & 0 , jB I : [ a ] A, ! c j w o p; 0F - z 8 /c * 2 1 7 2F@ L .K j c ! o > 2F o s ? ,RK 8R @RA HR PR XR `RA hR pR xR T d ' &kB P m & 0 6kB0 [ PKo & 0 5m & 0 6m & 0 vm & 0 m & C- kR P vkR0 R kR P kR0 R kR P kR0 R kR0 R kR0 R jB ` n & [ xl & C-5 a a A, $ c * {k 0F 2m . a c 1 n< ~9 0F 0 sk = /c # 9 : 2F Z Z / / AC 4RM 5 R U R u R RA R R R RA 5 R U R ( FkB [ P m & 0 R PKn & C- kR P &lR ` jR ` kR P j20 b & 0 5n & C-um & 0 n & C- m & 0 5o & C-un & C- n & C-uo & 0 0 iR jB0 R a A, T %@!0F +J "H 3 aP 9A # ) BF > A08 1 ! p &jr c & , , } o a 3 C, T %0 @ 0 @ P 3 dP 9Q 3 dP 9Q p ,A0PQ(@ \ I` # ] & H a " B PB % p Vjr d & 2\O 0 j Q ` p I D ! e : 0DfjB >} 4 , iR j 2 N3 a 3 C, T %0 @ 0 @ P 3 T 9a 3 T 9a p ,A0PQ(@ \ d # ] H a " B P"$& p Vjr d & 2\O 0 j Q ` p I D ! e : 0DfjB >} 4 , iR j 2 N3 a 3 C, T %0 @ 0 @ P 3 T 9a 3 T 9a p ,A0PQ(@ \ d # ] . H a " B PR$& p Vjr d & 2\O 0 j Q ` p I D ! e : 0DfjB >} 4 , iR j 2 N3 a 3 C, T %0 @ 0 @ P 3 T 9q 3 T 9q p ,A0PQ(@ \ d # ] F H a " B P $' p Vjr d & 2\O 0 j Q ` p I D ! e : 0DfjB >} 4 , iR j 2 N3 a 4 C, T %0 @ 0 @ P 3 T 9 3 T 9 p ,A0PQ(@ \ d # ] ^ H a " B P $ 2 Vjr d & 2\O 0 j Q ` p I D ! e : 0DfjB >} 4 , iR j 2 N3 a @ I, T %@ P # T 5 F ,C Q , 2 p y 2 C0bP A # 7 I0 @ 0K ~ ` M(# ( 0 (: (`0 p 4 0K 2 A ! A8 Vj2 c & , n & < @3 I! [ I! r I#8MED O-NcX 19 , , } o $ t ,b4 a : C, T %0 @ 0 @ P 3 dP 9Q 3 dP 9Q ,A0PQ( \ I` / F ? A0 ` p( `G ` Y ! H! A8 j 2 N3 9 @ 2\ j Q ` p Vj >0 o $@ 2\ H# tn & , } o $ t ,b4 a : C, T %0 @ 0 @ P 3 T 9a 3 T 9a ,A0PQ( \ d 0 F ? A0 ` p( `G ` Y ! H A8 j 2 N3 9 @ 2\ j Q ` p Vj >0 o $@ 2\ H# tn & , } o $ t ,b4 a : C, T %0 @ 0 @ P 3 T 9a 3 T 9a ,A0PQ( \ d {1 F ? A0 ` p( `G ` Y ! H) A8 j 2 N3 9 @ 2\ j Q ` p Vj >0 o $@ 2\ H# tn & , } o $ t ,b4 a : C, T %0 @ 0 @ P 3 T 9q 3 T 9q ,A0PQ( \ d [2 F ? A0 `# p( `G ` Y ! HA A8 j 2 N3 9 @ 2\ j Q ` p Vj >0 o $@ 2\ H# tn & , } o $ t ,b4 a ? C, T %0 @ 0 @ P 3 T 9 3 T 9 ,A0PQ( \ d ;3 F ? A0 `/ p( `G ` Y ! HY j 2 N3 9 @ 2\ j Q ` p Vj >0 o $@ 2\ H# tn & , } o $ t ,b4 !1 ( Y a A 1 B A8 jB I : a * M, > # P c H %@ Z @ P C V P %@ ? Ao d 0F 9 ? 3 hM 4 /c | ~ 2F o =} ? h * /c . o ~ " 0F ? # ` Mt $ 7| L 7 20B0 0|f0 p , Q 5 @ 8 \ ;KP T$ ) 0 T B P c \P pE l f p ` bPB q {A l ,ARG A% Q s" 6 (@ 9 L7 1 QAB @ ? Y j v q ((t@A D !@ Af 0 70 d ! eP = > 2 @* (% P r @j ` ` ( @1 0 5H@ 8! S %` J @X\ ` 4 FmrHGT :n & + w=? m m{ #~m & + w=? vl >0 O Q o m{ # x D T O 0 a $ p= 0 0 I , , ^[ H P B 0 ^ I P I 4 I P [ :. X !Q o & < m & 0 8o & <5n & + v e cX Nd &l20 b & 0 9m & 0 m & D n & oR0 oR oR0 xR oR0 o NS , ] $N N3 u (o cX>m & [ xl & [ x _[ D m a 4fmR c p ` & < n & - T mr8 /8 ` & < FnRD < nr >m & HVmb NS ) 0 I H 4 N I!0 I!Q [ I 4C] I` I P I P a A 1 y B A8 jB I : a G, d#c 1 @$0 ?c ! G A62 c C 0 @62 D c H &A62 ?c t@ c ! O 3 c m c ? 0 ? D c B62 # T %@$0 @ P d#c @$0 |+ # & H /c x z p 0 5} 3 hM 4 /c | , 0 * * /c v ' I 0 y+ h * /c . o 0 H ? h+ : 6 7 7 c T0 p ` h0 ` e 7 e0 Ta \B [o 0 0 L7 H0bP A @ 7 l 7Hl@ 7 u op 6 V hD U V 8 0 \`#2 @ L7 Q { l v 6" A*(# i pC` `0 0 R' B 1 A c l R ( 2 @ 0 L7 $ d * T pC hPB l # m pCp `0 P ['Z! B 1 B c c ]'b! B 1 , 7, d b0 ^@ ; Q wB s . 0 Q (w u F p@ s F b r8 s CP Q x h0 ` BP 9H 5 R 9@ T PG T H R :@5 T PO E , U 2 7 T@ p 9 L7 d d lbH B % N m2HGd &GE H Lfl28 n ' C-|m ' C- m ' C-|n ' C- n ' V~ ! d & < m & <5n & m & C- l2 ` & C a m & <FD _8 _ D D, 0 I PKO I H P B 5 :^: x a = p 9 DE fm gD !LN K B S [ H 4 ] , n & <FD _8 _ D D, 0 m & <FD _8 _ D D, 0 tn ' <FD _8 _ D D, 0 n &CC y2X m & < m & , I'0 N W 09 / !LuM[ I'0 N W 09 / !Lum ; e y 0 $ ! 2 1 0 0 i @3 5 NT m H B S " !L n ' 0 <m & D, 0 0 /Nc zR zR mR ` x T 4 zR o LN 8 [ IR S I 4 0 0o +!Q FmbH 5 q Dvo ' 0 }m & } x T 4 nR p nR p iR Vy T 4 &y T 4 fyrD <:o &EC n 'IE H Lzo & 0 6m & qMvn & < M ! $ T qM % oB, a I" !L5 I! D m & 0 nbH 5 N fnRHTp nbLN 8 } q $ T $ T i u } E , a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` Gc) B !0 A ! B0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! yT B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! yT B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! yT B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a I, P P G!0F c H %@ B Q 7 @!0 @ P P V P W P 0 @!0F + ? + : c ) b| 0F q| g ? >h z c o K 8 A d* 0F@ ? l j j 7 0 : \ 1 p n L7 j A1 e 7 e@ % Zn R H A q N t {A , 0P . a 0 \ Q ~ 2 2 p q `0 0 pCG hP L7 \ [ pCp fP P D A PL7 , (4 { : L7 V ! j0 f DB b a " , N ` @ 1 0 n " n B @ @ U g 8 :V h p \A*p ! ^ X : @* % f d !k 0 n8 @ / b P b ! ! FA 2 &lr 8 a & C Q o O : I I'0 N K / !L5 I" !L } : A $ T I $ T y $ T e T7n & :n ' C-|o & < mb NS Y 0o +!Q xb P ) I 0 4n & <5o & D FmB8 I P [ P R A 0 m & vnRHT 6n H B S} nRHT nRHT n H B S} nRHT n H B S} mR p or >m & D, 0 wo & [ xl & + H xR x NS , % 0 - @3 mR c xR yb0 R T M Nd u I!0 D{m & [ 6yb0 R 5 ! 9 i 0 5n ' C-5] I" !L5n H 4F} o H B S yb P } o O I'0 N K / !Lu [ " !L Q 0 n & T yb0 R } N ybHTP y 5o ' D u I!0 [ ] @3 S oR l ` u [ PKM yb P $ T Y 4o & D, 0 Wvy H B S z H B S a A 1 y$ B A8 jB I : a O G, d#c 1 ?c "m H @ 0 @$0 /d## D c 3 c H &C62 d> D c @b: @62 (? D 3 d#c ~M _ 2 ?c 1 I l c t@ c ! O 3 c ` > u0 ? c 0 c " 3 @$0 + ? q c y = } 0 H c L ) b| 0 q| g ? t < c * 6 0 > 4 ? . c N * L C d* 0 @ ? 9 c 3[ Z j j g 6 ` : \`#2bP A % 7 h B 7 7 i i pC Aq p p p dPv` R H A tC t pC dp pC h0 @<A v$ T 0 \`#2 A \`#RC (| 7 A 6" ) t ;bP A &q 7 7 ( 6"E + t ` 6 V` i ) ` ! 3 F \ * b 4 n ` ! n ` . n d! bA+ X f T` 0K@ T 1 0PA ` @ p j E # { pC `0 ` p L7 L7 !T RB G U R 8H u TA T PC T H u RA9@% T` PK T p `p pC h0 7_PX E R P\ |Q\ @ @ h0 B A8 yr s>m & D\ ~ ) N oRHT oRHT oRHT oRHT oRHT yR0 &x H B Sm x H B Sm &zR0 x H B Sm FzR0 zR0 fzR0 zR0 F{b P I % qMFmR S mR S fxbH 5 U I! r[ I!0O 4 Y $ T Y I" !L " !L = O I PK !QAM { H B S} &{R0 v{bHTP , m & < m ' D 5] I!0 [ I!0 I'0 N W 09 / !L5 I N[ I'0 N W 09 / !L5 I!Q I" !L5N 0 u t 9 DE T t 9 DE T t 9 DE T , /Nc u I'0 N W 09 / !Lu I1 29 ,7n ' 0 ;o ' C a vn & < m ' <FD _8 _ D D, 0 m ' 0 m & 0 0 0 @3 ! X : L>m & a <FD _8 _ D D, 0 t_ M qM m ' , Q Nd Vy gD !LN K B S} VxR &yR\N z gD !LN K B S} zR zbH 5 0 t 9 DE T 0 0 } o , & ) O[ DvlB ` ! d nB8 m ! d yr >m & D\ #8MED ?8T @3 1 l H B SM lRH 5 Fy LN 8 :> qM7m & 0 &obH 5 - 8 b & D, 0 5m & 0 n & D, 0 m & D, 0 5n ' C- m & D, 0 n ' C- m ' C-{n ' m ' D, 0 uo ' C- a # A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G<) B !0 A ! B0 0 F @ jB I! R I : !1 ` a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 8 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 !1 hi a # E * Op# DM A8 j NS L iR E &j NS RX I! R I! r !1 @ n a 3 C, T %0 @ 0 @ P 3 R 91 3 R 91 p ,A0PQ(@ \ b ' # M H a " B P # p j2 ` & 2\O 0Fj E >0 @ 2\ j Q ` p fjB >} I ! b & [ JH j 2 N3 a 3 C, T %0 @ 0 @ P 3 !S 9A 3 !S 9A p ,A0PQ(@ \ c ' # M H a " B P $ p j2 ` & 2\O 0Fj E >0 @ 2\ j Q ` p fjB >} I ! b & [ JH j 2 N3 a 3 C, T %0 @ 0 @ P 3 (S 9A 3 (S 9A p ,A0PQ(@ \ c ' # M F H a " B P $ p j2 ` & 2\O 0Fj E >0 @ 2\ j Q ` p fjB >} I ! b & [ JH j 2 N3 a 3 C, T %0 @ 0 @ P 3 /S 9Q 3 /S 9Q p ,A0PQ(@ \ c ' # M ~ H a " B P % p j2 ` & 2\O 0Fj E >0 @ 2\ j Q ` p fjB >} I ! b & [ JH j 2 N3 a 3 C, T %0 @ 0 @ P 3 6S 9a 3 6S 9a p ,A0PQ(@ \ -c ' # M H a " B Pb & p j2 ` & 2\O 0Fj E >0 @ 2\ j Q ` p fjB >} I ! b & [ JH j 2 N3 a A 1 ` B A8 jB I : a $ M, ; # P c H %@ Z @ P C V P %@ ? v[ < 0F@ ~ r ? (- v /c _ L A , h 2F = gx ? 7x r x /c 5 A 1F # ` Mp $ 7x L 7 20B0 0xf0 p , Q % @ 8 \ ;KP T$ ( 0 T B P b \P pE l e C p P bPB a {A l ,AR I A% Q ps 5 (@ 9 L7 1 QAB @ ? Y jz v a D((s@A !@ Af 0p 70 d ! eP = = 2 @* (% ? r @j ` ` ( @1 0 5H@ 8! f 0 T" ! p 6mrHGT :n & + w=? m m{ #~m & + w=? fl >0 O Q o m{ # o D T O 0 ] $ p= 0 0 E , , ^ H P B 0 ^ I P [ I 4 [ I P :. !Q o & < m & 0 8o & <5n & + v a cX } Nd l20 b & 0 9m & 0 m & D n & voR0 oR oR0 oR o NS , Y $N N3 q (o cX>m & [ xl & [ x _ D m a 4VmR c p ` & < n & ) T lr8 /8 ` & < 6nRD < nr >m & HFmb NS % 0 I H 4 N I!0 [ I!Q I 4C][ I` I P I P a A 1 yD B A8 jB I : a G, d#c 1 @$0 ?c ! G A62 c C 0 @62 D c H &A62 ?c t@ c ! O 3 c m c ? 0 ? D c B62 # T %@$0 @ P d#c @$0 > k u s /c t * , ] / 0 , 9x (- v /c _ L g} = 0 P l- =Z -[ r x /c { } C i 0 - =Z 7x r x /c 5 , h 6 7 7 b T0 p P h0 P d 7 d0 TQ \B [n 0 0 L7 H0bP A @ 7 k 7Hk@ T 7 t n` 6 V h U V 8 0 \`#2 @ L7 A { l u I 6" *(# Qi pCP `0 0 Q' B 1 A c l N ( 2 @ 0 L7 # d ( T pCp hPB l # m pC` `0 P Z'X! B 1 B c c \'`! B 1 A, 7, d b0 ^@ ; Q w" r C. 0 Q w t F p@~ s F B q8 s C@ Q x h0 ` BPA9H 5 R 9@ Tp PG T H R :@5 T PO E , M7 MP 0 0 . @ i vlbH B ! N m2HGd &GE H LVl28 n ' C-|m ' C- m ' C-|n ' C- n ' V~ ! d & < m & <5n & m & C- l2 ` & C a m & <FD _8 _ D D, 0Y I H P B 5 :^: vx a 9 p 9 DE Vm gD !LN K B S H 4 ] } , n & <FD _8 _ D D, 0 m & <FD _8 _ D D, 0 tn ' <FD _8 _ D D, 0 n &CC x2X m & < m & , I'0 N W 09 / !LuM I'0 N W 09 / !Lum I!Q N[ I IR N I`Y I I [ I 4C D5m & D, 0 Y 6zR vm H B S [ I o H 4 m ' 0 <n ' 0 n & m 'IE H Lym ' 0 <o & $ ! 2 @3 X : L>m & D\S Q Nd zR or, a wo 'IE H L:m & wn & n & [ xl 'IE H L n 'IE H L m 'GD oR4 vy T 4 mR ` lB [ #8MED ?8T qMvn & < I ! $ T qM ! oB, a I" !L5 [ I! D m & 0 vnbH 5 N VnRHTp nbLN 8 y m $ T $ T e q y A , a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G.) B !0 A ! 0 B0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a A 1 B A8 jB I : a ] M, ; # P c H %@ Z @ P C V P %@ ? 1 ' 0F 9 } ? 8 j /c j 9+ 2F Z Z ? /c n A 1F # ` Mp $ 7x L 7 20B0 0xf0 p , Q % @ 8 \ ;KP T$ ( 0 T B P b \P pE l e C p P bPB a {A l ,AR I A% Q `s 5 (@ 9 L7 1 QAB @ ? Y jz v a D((s@A !@ Af 0p 70 d ! eP = = 2 @* (% ? r $ (( %X : 3P c # E P8N f 0 X" ! p 6mrHGT :n & + w=? m m{ #~m & + w=? fl >0 O Q o m{ # x D T O 0 ] $ p= 0 0 E , , ^ H P B 0 ^ I P [ I 4 [ I P :. !Q o & < m & 0 8o & <5n & + v a cX } Nd l20 b & 0 9m & 0 m & D n & voR0 oR oR0 oR oR0 o NS , Y $N N3 q (o cX>m & [ xl & [ x _ D m a 4VmR c p ` & < n & ) T lr8 /8 ` & < 6nRD < nr >m & HFmb NS % 0 I H 4 N I!0 [ I!Q I 4C][ I` I P I P !1 4 p ( I i . 0 1 :m 0 & @ @ @ BA F J N RA V Z ^ bA f j n rA v z ~ A A A A $BB$F $J $N %RB%V %Z %^ &bB&f &j & a A 1 y B A8 jB I : a G, d#c 1 @$0 ?c ! G A62 c C 0 @62 D c H &A62 ?c t@ c ! O 3 c m c ? 0 ? D c B62 # T %@$0 @ P d#c @$0 w l~ /c s C{ \ ) 0 X Z 8 j /c j 9+ } s 0 w /c qZ Z Z C j j 0 . + ? K q V pC q p `p H 7 d d0 p 2 cp H d % Z m t # pC `0 p dp H p 0 h0 A0 u `#[ h o F , @P h p C 6" t A s V@ 0 \`#2 ` 1 2bP A & 7 !8y Q uB < 0 F ? s D , t 2 , 0PA `bAU 7 % V@ <bP A & 7 !| Q ub [ * 0 0 Q u ] p 2 h0 @ ,A1PA ! C A, $ c lp _'p! B 1 B` c p q'x!@ B 1 A/l ( 2 A;l # ( 2 0 P 2 v T@ PC T H u R 9@% T PK T H l Rd X { A 7 K t 8 , 1PA Ba @ @ flbH B N m2HGd &GE H LFl28 n ' C-|m ' C- m ' C-|n ' C- n ' V~[ ! d & < m & <5n & m & C- k2 ` & C a m & <FD _8 _ D D, 0Y I PKO I H P B 5 [ :^: fx a 5 p 9 DE Fm gD !LN K B S H 4 ] y , n & <FD _8 _ D D, 0 m & <FD _8 _ D D, 0 tn ' <FD _8 _ D D, 0 n &CC x2X m & < m & , [ I'0 N W 09 / !LuM I'0 N W 09 / !Lum ; ] q 0 $ ! 2 ) 0 y 0 a @3 - NT l H B S [ " !L n ' 0 <m & D, 0 0 /Nc fzR zR mR ` o T 4 zR o LN 8 IR S [ I 4 0 0o +!Q &mbH 5 i Dvo ' 0 }m & } x T 4 vnR p nR p iR 6y T 4 y T 4 FyrD <:o &EC n 'IE H Lzo & 0 6m & } qMvn & < E ! $ T qM oB, aY I" !L5 I! D m & 0 fnbH 5 N FnRHTp nbLN 8 u i $ T $ T a m u } = , !1 a & i EI X a $ A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G&) B !0 A ! B0 0 F @ jB I! R I : !1 8 b a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a ' A, c { r A) ! : 0F r ? tK q U R RA $R ,R A8 fjB0 R P m & 0 Vj2 ` & 0 0 iR Fj20 a 0 A, D c { r o 0 P | f ? " c , = * % _ 0 P - + ? tK q U R RA $R ,R @ @ fjB0 R P m & 0 Vj2 ` & 0 0 iR Fj20 a L A, # c M , 6 i 2F q{ ? +^ r x /c { } X , h 9 4 : % 7x r x dO i c R " PC $PE (PG ,PI # F } ` G<*P ! } B } ` G>*XA @ ib Em jB0 R PKn & ,K][ P n & 0 j20 b & , o & 0 , jB ! R kB a { A, A!0F IP Z ? N 0F ?P @ C C V $ 7 T tC $ V e V ! t 7$@T@ t 55 ( ` X , *0 8a ,0 8 @ 10 `g 8 a ! * 1 10 `g ; ` < K! ' l T p 6 Vk"8 0 jr 8 a & ,K ! R FkB p[ ! Qo lb $ /Nc Y : G>m & uo & < 5 T k 0 j2 c & C- @ 2\Vl Q ` p 0 Q $ , X I!QA} I 4CM J: H# I : ! R a Y D, # c $H l !3F rI \2 %P Q c c 2 ( , B 2 BP (PE c R W$ V * H OZ (G > A0 & B a ? IA ! B )" Y a # " j2 c & Fk Q ` p ! n & 0 j2HT` &HDL P } oQ |l & C-5m & < @3X I! I! I! I PK] !Q m & 0 0 a l F, D 3 T # %@ 0 P c A s Gb 1 1bP A , ~ ` G&I B `p ? N3 (c 2b` A = , @ # ? pC@9 ~ ` MX# B0b` A A :* A ! * ` ()d A* A% E tCP @G h @ A8 ) &k2 c & ,K] ! R j T 4 T[ ! R kb S ,>m & , m & X I! r I! Q , d & 4 jB X ! R iR jR a t G, D 3 T # %@ 0 @!0F H %@!0F 8H m s 1 2bP A , ! pC ,C0 # > pC ~ ` MH A( t @G A j \ 7 < ~ ` $I` A 2 F0bP A U0 , 1 B # A\ Aw ts e 2 k2 c & <5m & ,Km R Sm & [ x , m & k2 ` & , m & X I! I Q < TD4 S !0On & 4 M 8 t /D D a & [ l $ ! 2 , , l T 4 T iR jR a ! @ d jB I : I :. a A, c & # Az C T0@ C ~ ` M 6j2 ` & D VjBHTP ! b & , m & [ a d A, 3 T$3 c @@$0 < d ? 3 7 c = 6 i 2 q{ ? o h 3 c 5^ K , h 2 = gx ? ?H T$c 5 , h 9 4 : 7y #M /c 5 , h @ t| ~ => = { J T H H T H H T ! e+ # F U0b` A - # F W A8 ib Em jB0 R PKn & ,K] P n & 0 j20 b & , o & 0 , jB [ ! R kB a A, L d#c 3 0 ?D c &A62 @ t0 c 0 ?c 2 l0 A 0 @$0 @ P T # 3 %@ 1 pN 91 oN 91 BA$0 ? t c @62 T$3 c @@$0 / c V pC 6" x2 p l ` % V { !a ! P d b c l s d BA [ 2' f 5@( 2 l h ( pC 6"u 7 ~ B n a FU A 6 A ` PU B L . B V UAx O lbH B Nd & 0 t &n H B [ 4Cn & tDVnRHT` n NS , m & ,6m & <vl ?8T , m & , m ! d & E - &m Q ` p a (@ 2\ m & D, 0 ! I!0O [ U (@ 2\ m & C- mbH 5 0 @3 I 4CM I PK &0 N W 09 / !L nb } p 9 DE t iR 6l 8 a < a A, ( T$3 c @@$0 rI \ c ( %C}1 d#c c 2 A 0 @$0 @ P D c $H !1 d & 2d## D c T @ 5= p l e T0 A ! + 0 } ` B Am l B 1X 5 X[ ' s D ` G:)@ RC 2 u 6" G\`#2 0|h0 p h0 +B A8 6 lbH B = T vk2HGd & [ 6 [ H 4 m & E n & D ! X ! n & <um & E % qMflB0 ! T k2 ` & D Vl20 b & C-5m & ,Kn & , n & FlR l gD !LN K B 0 kB p '0 N W 09 / !L a C, d## D c B 0 @ 1 @}1 c @$0 0 # QI A ! + } `P 2bP A ( # = pC 6" 7 Q 7 R 6"E)1 Xh0 0 A ! 6bP A , U A ! yT 7 t 6" 4z A ! { 1 2 A0b` A ,) 2 a 1 + d 7$i c0 t ! O kbH B Nd & ,K I : I :.[ ! d l H B ] #8MED ?8T &kB !0 o & [ 7 JH 2 qM qM ,vm & <Flb , m & <FD _8 _ D D, 0 qM kR S fk2HT` & <uo & D\S I! R I! b I! r[ I! " !Lvo & &0 N W 09 / !L l gD !LN K B M[ ! b & ,K] ! R a $ A, D c &1 l2 # ? C T0@ C ~ ` G"I 6j2 ` & D VjBHTP ! b & , m & [ a A, d## D c 1 ? c A 1 @ 0 P 3 s fN 9 c @@ # E A ! yT B3 8 6" { A ! y 5 p pCP tCE \` 7bP A , ~ ` G%)p A \`#2bP A A U p h0 x ! } D0 tC q x | B e O vkbH B } o ,un & ,K I :. Q d & 4 M 8 d !0 m & < &kRH 5 k gD !LN K B m[ I! [ '0 N W 09 / !L6n & <FD _8 _ D D, 0 ! d & D, 0 d kbH 5 0X " !L n & ,Km &FE\ M I! $8MED _, 0 6o &IE H Lvm & <FD _8 _ D D, 0 ! b & ,K] ! R a ! + jB I : I :. a @ C, T %0 P 3 T 9a 3 T 9a 3 T 9a ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9Eb2 jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a @ C, T %0 P 3 T 9q 3 T 9q 3 T 9q ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9Hr2 jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a @ C, T %0 P 3 T 9 3 T 9 3 T 9 ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9K ! p jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a - A, $$3 T # %P 3 s bN 9A D c @ P a 5 R 1 1 0 Cp # = C0 F @ j T 4 T Q d &HE H L qM ! 2 jB I : I :. a U E, # T # # E Y pC0 pC1 A 2 Bp 1 B \ 8K@ ~ ` M,# E BpL ! =+ # E B0bP A > 5 7 2 C0b` A 51H @G H 0 B @ ' Vj2 c & ,K] S ,>m & , m & I! I! D 4 , , 4 TD4 , 8 R j NS , t , j NS ,Dm I : a ! d iR m jR m jB a _ A, d## # # ? A ! + \A 6b` A A ) A ! + } ` 9 ! } 7 L7 D0bP A , 74 \`#RC `0 ; At p ! t 3 j2 c & D, 0 I#8MED 8 a D6k gD !LN K B S " !L n & 4 M 8 d I! R[ #8MED ?8T , , , , D TD4 C a , h 9 DE d & + i & , } o ,u a ! + iR m jR m jB a @ C, T %0 P 3 T 9a 3 +S 9Q 3 T 9a ! p ? G D " ( 2b` A ( & A1 @( C" 7 2 A@N kB 9 @ 2\Vj m >0 (o Cd & [ JH j Q ` p k Q ` p &k2 ` & + i & L iR a @ C, T %0 P 3 T 9q 3 2S 9a 3 T 9q ! p ? G D " ( 2b` A ( & A1 @( C" 7 2 A@ kB 9 @ 2\Vj m >0 (o Cd & [ JH j Q ` p k Q ` p &k2 ` & + i & L iR a @ C, T %0 P 3 T 9 3 9S 9q 3 T 9 ! p ? G D " ( 2b` A ( & A1 @( C" 7 2 A@ ` kB 9 @ 2\Vj m >0 (o Cd & [ JH j Q ` p k Q ` p &k2 ` & + i & L iR a . A, $$3 T # %P 3 s bN 9A D c @ a P a 5 b 1 F1 C # 2 A8 j T 4 T Q d &HE H L qM ! 2 jR m kB I : a O E, D 3 T # %@ 0 P c ! , s Gb 1 1bP A , ~ ` G&I `p 8 N3 (c 2b` A = # E ` 4b` A A 6* A ! * a vj2 c &HE H L 1U jR jR jR kR jrT 4 d & , n & ,Ko & X #8MED ?8T Fkb } o o 2 a R C, D 3 T # %@ 0 @!0F H %@ 1 s r 1 1bP A , ! pC p AP t S0\ 7 4 A ~ ` jMD , 0P n ps q 1 A8 & j2 c &HE H L 0o C VkrLN 8 n & [ 8 b &GE H L kB s I! IR S] I#8MED _, 0 #8MED _, 0 , k T 4 T iR jR a ! P d iR m jR m jB a q A, d## D c 1 ? d 3 T # %0 @ 1 Q gN 91 D # E p 6" B % { p T 6" R 7 L7\Bp m A ! 6b` A A $qe B \` 7 `d Y B`e : j2 c & D, 0Y ! R jBH 5 " !L n & 4 M 8 d " !L5o &DE\ qM m & <FD _8 _ D D, 0 jB c $8MED _, 0 uo & < , h 9 DE d & D\ m &IE H L5n & D\Sn & , p 9 DE T iR jR a j C, T # 3 c @0 D 3 d## D c ! G # E P B2b` A A !* A ! + 70yB\`#2bP A , } ` Kv*8 ;bP A $ 7 2 A0b` A (L C A ` 9 Bp , 0PA B@ pC" t d / j2 c & Y ! !L jBH 5 " !L m & ,Km & , m & , m & , n & ,Kn & I! [ I! &0 N W 09 / !Lfk NS , m & [ 7 JH 2 p 9 DE T jB I : I :. a ! + iR m jR m jB a @ C, T %0 P 3 T 9a 3 T 9a 3 T 9a ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9Eb2 jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a @ C, T %0 P 3 T 9q 3 T 9q 3 T 9q ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9Hr2 jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a @ C, T %0 P 3 T 9 3 T 9 3 T 9 ! p ? G D " & ( 2b` A A 0 6 `0 @`0 9K ! p jR jr D c & E (o Cd & [ : $@ 2\ $@ 2\ H# tn & , L iR a - A, $$3 T # %P 3 s bN 9A D c @ P a 5 R 1 1 0 Cp # / C0 F @ j T 4 T Q d &HE H L qM ! 2 jB I : I :. a , A, T&3 c @ 3 T # %P e0 @ 1 B D fN 9 hN 9A 1 A A 1 $ 24 2b` A ( C c 2D 1b` A ( C ) E d iR m jR m jB I! R a A, & c c ( # c c ? c ! A c 4 # , V - ,Z , 7 \ RC # , p !5L\B 7 L7 VP U , ~ ` : b 7 L7 d ~ ` ; A ! !, P % 0 !U 1 L7 GPA 2\ R B tC t p , | j pC6 h0 A @ u vm H B S^[ H? 4 n & ~ kB8Q H? 4 ~ k gD !LN K B N[ D p 9 DE lb ) p 9 DE j2 c & , m[ ! b fkR S jBH 5Y '0 N W 09 / !L n & <FD _8 _ D D, 0 zn ! T kR S l2HT` & kbH 5 @3 H? 4 iR m jR m fm gD !LN K B SN p9 Nd & @3 vlR c lR c lbH 5 0 1 0 6kB qM qM 6l H B ~ ! t l2 ` & D, 0 I lRHTp kR P a c A, 2 &3 c @ 3 T # %P e0 @ 1 D D fN 9 hN 9 hN 9 hN 9A 1 A A P %R$eB 1 D D fN 9 mN 9 hN 9 hN 9A 1 $ B P P @ 1 D D fN 9 sN 9 mN 9 hN 9A 1 4 C 1 @ $ E e 2d 5b` A ( C I & 2t 4b` A ( C Y E 2 D b 1 + A l E 2 A @ g` 1 + C L iR m jR m kB I! R I! b I! r a G, T %0 @ P @!0F P % 3 E! ( 2 $ V 5 (:bP A 7 ~ ` M@ A p RB W$ 7 T0 , 2 C0bP A A) 7 } `P M$& ! 1@t p % f 0 6 G e( x: xa0 PHA 2 FP @0l@t a` A^ @ < L7 0 e U GL7 0l@ 1 I kb ,um & 6k 8 /8 ` jB ` I!Q M I ] I!Q I!Q D 4 ) 8 b l ` D 6n & 7m & < o _ I H !0Oo & [ kr >m & m & + j & < jr m c & <5n & <un & < n & 0 k2HT` & $ /Nc $ /Nc , , @3 I 4C} ! R iR jR a I, T %@ P c H 1F l( c %@ _ 3 aP 9A A 7< 1 @ p a@ ) R0 ` %PR % 02b` A $1 # ) . , a B Ra ' ( } ` -I A0b` A $ hR &# F AL B0bp A\ $X a B1 z@ 2 HPB u!@* / Y d " C1 B \P 4l@ A0 9 D jR lb /Nc I!0 m ! R k2H b & [ 8+ lR ` lRHT` j { !0Om & < o O : <o , O[ ! b j2 c & C- &jr m c & C- k2 ` & D l NS # d & C- k ?8T vkR kR &lR0 R 6lR0 R jr c & , } o , a # A, c # F < 0bP A # P ! } 1 @ @ fjR Vj2HT` & [ J96jB I! R I : I :. a E, T %@62 # D c ! G A 0 @ 0 0 @}1 p # %@}1 3 c 0 @$0 " 3 E! ( D 0bP A , @ ~ ` K (P% <bP A A $q ~ ` G3I\ BP\`#2 0 Jp pC * 6"5 { pC 6"E ; |h0 9 A ! 3bP A , $ D 7 e ! e0 2 A0 p c H `p B= |s M 0 h Y a ~! [ 5 n f ! C 6 C 7 C ` @R h ` 1$ d` 0P / ` % P pCp `0 0 p pC 6" ) [ p p h0 4A5 W, 2 ) t Z* ! ?X d P V@ n0 Z@ ] p FlbH B ,5n & ,K Dum & D, 0 A ,uo & D, 0 ! NT oRHT k 8 a '0 N W 09 / !L8n & H3 8o & < mb p 9 DE kBH 5Y ! T fo gD !LN K B [ I!0O Q , , , ) qM5o & H3 &n2 ` & + K h 9 DE d & 7m & D o gD !LN K B S^ I 4 I : I :. D nB8 ] I!0 } I!0 I!0 [ ! d vnbH 5 ] 8 b kB !0 n & + K ] : kRH 5 kRH 5 Fmr >m & + J9 n2 ` & D, 0 lbLN 8 0 ,Vmr m >m & + a F C, T %0 P 3 T 9a 3 T 9a 3 T 9a ! p ? G ;K T 0 $ l ( c (F ? A0Ha B 6 1l@ B X2 ` ! ` A d jR fk 2 N3X J R p= D ! e & [ x :. 0D k Q ` p vjR &k Q ` p Fk Q ` p Vk2 ` & , O iR a F C, T %0 P 3 T 9q 3 T 9q 3 T 9q ! p ? G ;K T 0 $ l ( c (F ? A0Ha B 6 1l@ B X2 ` ! ` A d jR fk 2 N3X J R p= D ! e & [ x :. 0D k Q ` p vjR &k Q ` p Fk Q ` p Vk2 ` & , O iR a F C, T %0 P 3 T 9 3 T 9 3 T 9 ! p ? G ;K T 0 $ l ( c (F ? A0Ha B 6 1l@ B X2 ` ! ` A C @ fk 2 N3X J R p= D ! e & [ x :. 0D&kr ?Sd & E m & [ j & E n & 6kB tn & [ xl & [ a D A, T %@B2 @}1 D 3 T # 3 s fN 9q E@}1 @ 1 ` gNP X 3 R 9A 3 E! ( 2HN3 = A ), C 0c 3 `5# ) s D d ! Z ` 1 4l@pA 2 A8 jr m tm & + j[ J R ! 2 kBT 5 ! b & ,Km & [ xl & [ !1 @ t[ a J, # dw5@ 0 @!0F P A # E Y pCp p 2 A 70{ : (`P 7@ 7@ L7 z # Y 4 ,A2 @=`0 A ! sq 5 L`0 p p E t A0b` A 5 h $# A ! + `0 B. ! }t } ` L , `# ] A $ =a a @ qd 8 kbH B , m & ,K ! r vkR c kb ,uo & , ! r 6k H B [ S ,>m & N N3X !0On & < t K L j2 c & <5m & , " !L m & < n & D, 0 8 b & , $N N3 } o ,7 !1 G , r ! A" a !`# E An 1 { ` B C A8 j NS , } t , , ,7 a ! } mP 5 A8 &j20 b & D jB I : I :. a A, D 3 T # c @ # { FA Ca % RE s CPd j20 b &GE H L j T 4 T[ ! b & [ xl & [ a A, d## # c A@$0 c ! G # H A ! + `P ( ! t } `0 = A ! + 7 74 \`#2 0`p pC 6" T L7 T2 p r H) V@ p * 6"# , ]- 7 L7 Q pC h0 0` ! } D@ t 0 M t p v h0 B A8 ^ kbH B Nd & 4 M 4 m & <6m & <FD _8 _ D D, 0 qMvm & 4 M 4 } &k NS /Nc 7n & D, 0 NT Vl H B [ !0 n & < p 9 DE jR m l gD !LN K B n 0 , m & < m & D, 0 ,6o & < n & % FkbH 5 , , , , , @3 &0 N W 09 / !LvkbH 5 ! b & [ xl & <FD _8 _ D D, 0 9 a $`# E 1 }t ` C A8 6jR iR m j NS , m & ,Km & , a A, D c # RD 6j20 b & D &jB I : I :. a / A, D c 2 @ 0 P 3 s cN 9Q D D c B 1 D # B H A 2 1 @ F @ j20 b &HE H L qM jRT 5 jB I : I :. a @ C, T %0 P 3 T 9a 3 +S 9Q 3 T 9a ! p ? G D " ( 2b` A ( & A1 @( C" 7 2 A@N kB 9 @ 2\Vj m >0 (o Cd & [ JH j Q ` p k Q ` p &k2 ` & + i & L iR a @ C, T %0 P 3 T 9q 3 2S 9a 3 T 9q ! p ? G D " ( 2b` A ( & A1 @( C" 7 2 A@ kB 9 @ 2\Vj m >0 (o Cd & [ JH j Q ` p k Q ` p &k2 ` & + i & L iR a @ C, T %0 P 3 T 9 3 9S 9q 3 T 9 ! p ? G D " ( 2b` A ( & A1 @( C" 7 2 A@ ` kB 9 @ 2\Vj m >0 (o Cd & [ JH j Q ` p k Q ` p &k2 ` & + i & L iR a + A, $$3 T # %P 3 s bN 9A D T e@ 1 @E2 @ 1 R 1 | Mq 1 1b` A A ( Cp j T 4 T Q d &HE H L qM ! 2 jR m jB I : a F, T %@ P W c ! % @ A! B1 C P 3 aP 9A 7% V pC ,C DE B$ VD a , p d 0 n (0 n M V`m Z ( '2 " ( i q C2 B l j ( ' ( RR E PT PV PX PZ E @W M n !@ * < (3h n n @P ( pC `0 k i s ? 4@ 9 P e q D( @A M D ` !P6 {N 4@ 9q (P e D*0 @A @ B (? )( @ ( V'l!{ B H T*xR !5 PdP : - 1 @ a i @d &kr 8 a & : 9 JH6nr k~m & E N D ! n Q ` p (@ 2\ m & E S ,>m & 2\O 0 n ' 0 z KT 6oR VoR &oR0 FoR0 foR0 kB I 4 n 0 (@ 2\5m & E W] D ! U l Q ` p y P 0 , 5 0 = 0 @3 I PK I PK I PK I 4 M I PK [ I 4 } I PK^ I PK I PK~[ I PK I : [ I :. I C I C [ D ! oR kB [ D ! e mR ` 6mR ` 6xR VkB S I P ] I I P [ I P I P 9 m 0 $@ 2\ $@ 2\ $@ 2\ 8 fxRHT l2 ` & 0 m & E D ! u m HH G kbLN 8 u 8 r &n LN 8 a A, T % 3 aP 9A # ( D@B a p j <o # d & , } o # ! a A, T % 3 aP 9A # ( D@B a p j <o # d & , } o # ! a Y A, T %@ P T E@ 0 @62 c ? 0 0 @ P eP P @$0 "d#c ~ c A 3 dP 9Q # ) @ @ * t * ` # lD @ @C .I 7@ 8 A P@ e Q e@ } eP $P 9N @ 7@ 8 P@ e ,c@ } m $P aN S @)0 J )$ " @ (4 < : n ! 4 n ` ! @ TA . n !( 4 n = V W 1 * ! N B @ 7@ :A -P@ e - @ } p $P N B2 @ 7@ : -P@ e /4 @ } $P* )" @ j! b [ * )* KJ z Bj ! Z s ` a ` 2 6lbH B e $ T , [ 8 H+! N 6nR vxR nR0 &nR0 nR k 8 a[ I o I P _ I I P [ I I P [ ! Kn ' C- n ' 0 <o & < yR0 kBH 5 D ! U l Q ` p o + D ! U Fn2HT` & C-VnRH fo Q ` p 5 (@ 2\uo ' 0 =m & nRH FyR &l gD !LN K B ( p= m ' C-}m ' C- m ' D =n & [ xl & I#8MED 8 a[ 9L m & @3 fn gD !LN K B SM l Q ` p t 9 DE T (@ 2\:m & E [ I'0 N W 09 / !L5 D ! 6m Q ` p (@ 2\ n & D, 0 tm & E [ I" !L5} I'0 N W 09 / !L5 I! K $8MED 8 a 4n & D, 0 n & C-vo ' D, 0 to & E n & 0 mR p x Q ` p i 0 (@ 2\{n & C-7m & 0 wn & C- m & 0 n & C-7n & 0 wo & C- n & C-7o & ym & m & , (@ 2\;o ' C-{ a A, T % 3 dP 9Q # ( @ e ( H! j <o # d & [ 8 H+! ! b & [ x a A, T % 3 dP 9Q # ( @ e ( H! j <o # d & [ 8 H+! ! b & [ x a : C, T %0 P 3 T 9a 3 T 9a p ? 7 #;K T $ l ( b 10 = ` D f HL @ Vjr d & 2\O 0 j Q ` p s $@ 2\ (o Cd & E n & jB > ! b & [ xl & q! 4 a A, T % 3 T 9a # ( P$f ( H! j <o # d & [ 8 H+! ! b & [ x a A, T % 3 T 9a # ( P$f ( H! j <o # d & [ 8 H+! ! b & [ x a : C, T %0 P 3 T 9q 3 T 9q p ? 7 #;K T $ l ( b 10 = ` D f IN @ Vjr d & 2\O 0 j Q ` p s $@ 2\ (o Cd & E n & jB > ! b & [ xl & q! 4 a A, T % 3 T 9q # ( $g ( H! j <o # d & [ 8 H+! ! b & [ x a A, T % 3 T 9q # ( $g ( H! j <o # d & [ 8 H+! ! b & [ x a : C, T %0 P 3 T 9 3 T 9 p ? 7 #;K T $ l ( b 10 = ` D f fI0d Vjr d & 2\O 0 j Q ` p s $@ 2\ (o Cd & E n & jB > ! b & [ xl & q! 4 a A, T % 3 T 9 # ( ` $ "@ j <o # d & [ 8 H+! ! b & [ x a A, T % 3 T 9 # ( ` $ "@ j <o # d & [ 8 H+! ! b & [ x a 0 A, T %@B2 @ 0 P 3 s cN 9A D T e@E2 @ 1 3 T 9a LR 1 | # ( ` B0 2 FAE A 9 (0 j s R ! 2 j <o # d &DE\ ! 2 k T 4 [ ! b & [ x a A, T % 3 T 9a # ( 0 $f ( H! j <o # d & [ 8 H+! ! b & [ x a A, T % 3 T 9a # ( 0 $f ( H! j <o # d & [ 8 H+! ! b & [ x a 5 D, T %@ P W c ! 3 aP 9A w$ V` pC` , ! `0 B KAF @ N @ % : @ 8@ 2 j2 c & < , /Nc 4 , 1U iR VjR a A, T %0 @ 0 P eP P P T E@!0F 8RN A i q M P e A D@ 4@ 8A !P6 (NX DA M 2Q e P )) " (* B (+ b (, (- + " 3 RD TpH T 7 p u CL7 A8 D k D c lR ` Fm mR ` lR0 b lR0 b lR0 b &k Q ` p 6k Q ` p Vk Q ` p vk Q ` p k Q ` p k Q ` p k Q ` p jR m k >C- mR ` &m LN 8 PKo & 0 6m2HT` & 0 um & 0 m & E W [ P 8 b & 0 n & C-5m & 6lR0 R flR P VlR0 R vlR0 R iR !1 :n 2 *j " q fQ 0 b a 9 A, T %@62 c ? 0 3 dP 9Q # ) @ e P Kld+@t !@ A 2 j2 c & D, 0Y 4 qM j 8 a &0 N W 09 / !LFjr c & , , } o 1 a A, %@ P E@ 0 P eP P @62 0 @$0 "d#c ~ c S s 8: 9 DZC $@ H ( ' ( o Pq ;, H X ( ' ( o q (u g RE 5 RI U RM u RQ RU 6" 7 g N pR_ R "5 Pm D)mp t @ U FmbH B Nd & 4 M 4 m & (@ 2\6m & t, mRH Fl Q ` p $ p= I ) 0 1 0 % $@ 2\ - t * k Q ` p k Q ` p m gD !LN K B [ I P D ! U k Q ` p } o + Q (@ 2\ n & 0 7m & C- l2 ` & 0 m & C-wm & fmR p 6m gD !LN K B U ] a e 0 u !1 :n 2 *j " q fQ 0 b @ a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! yd B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! yd B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! yd B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # CP j T 4 T[ Q d &HE H L , iR a & A, c 5 3_ E 2bP A # ~ ` M te @H A H@ G$ e fjB0 b P Tvj2HT` & , , } o o 5 a ; A, c u+ 3 = / ; y 0F . q? 8 -H c 3J 1J 1 A j j u R "% R E RA e R R R R vjB0 b P m & C- 0 jB0 Co & C- 0X I C] I C} P } o 0 a 9 A, c * s g ? 0F@ ~? + + v c Z Z u R ! PC PE $PG (PI ,PK b jB0 b n & C- 0 jB0 P o & 0 &kR P fj20 b & C-5m & 0 } o 0 vjB0 R a A, 5P # Az 0 bpA D @ Vj2 c & 4 I!8M ! b & [ x a w E, T %@ 0 @!0F P @ P 3 aP 9A # { A ! B0 `0 A ! 0 (`0 , 1b` A b( !!@F ? A0 1 Y b p@0bP A ? 5 c A ! D@O B ! K ` a 1 F ? A0 & / p , Fkb 8 r[ I!QA}[ : L>m & ,K , I Cm I! R I! b[ 19 , kR P jR jR kR0 R &kR kR0 R kB P ,fjR iR fkb 5 !1 "i * @ ea ) @ a 1 A, D c 5 , h 0 . + K q /c s | 3_ U 2bP A A ~ `0 B q @H A IP G e fjR vjB0 b[ I#8MED 8 a Q , jR iR Fj20 a I A, ! D c u+ 3 = C n 0 y 'j 6? b c z = / | 0 ` ? 8 -H c 3J 1J 1 b b 0 P Z Z ? j j j u R "% R E RA e R R R R vjB0 b P m & C- 0 jB0 Co & C- 0X I C] I C} P } o 0 a G A, ! D c * s j 0 Y q d? y h 3 c h q ! 9 o t 0 p ? + + v c Z Z j j 0 ? u R ! PC PE $PG (PI ,PK d jB0 b n & C- 0 jB0 P o & 0 &kR P fj20 b & C-5m & 0 } o 0 vjB0 R a C, T %@$0 z> aH ? q d## T # d#c 3 D c H 0 0 3 dP 9Q # I A ! 4 B0 , 6"# ( Q A e < A! n 0 Fd =rI" n "0 e F > A0 ] ? $F > A0 ]A? (# A- H5C H , 0PA B@ p h0 L p % h0 p F h0 ! } D E 6lbH B &kRH 5 Fl gD !LN K B ] '0 N W 09 / !L m & , M 0 0o +!Q jBH 5Y " !L m & D, 0 0X Q 0 , , 0 , 19 ,6kR fkR kR &l gD !LN K B , kb o } o 1 a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # CP j T 4 T[ Q d &HE H L , iR a K F, T %@ P P c 8 a* A 3 aP 9A $ Vp pCp ,C ! ~ ` ?M y # ) 0 Ac EF > A08 5 a ! e ` =(k" i ( G 0 j2 c & fjr c &HDL I! r I! I! !0 m & kR kB I : a + A, T %@$0 +J "H j 3 dP 9Q # ) @ BF > A0x_ ` 10 d A ` A j2 c & , m & D, 0 : ,fjR iR Vj20 a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y$ B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y$ B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y$ B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # R CP j T 4 T[ Q d &HE H L , iR a : D, T %@ P P | c ! 3 aP 9A w$ V` pC` , A `0 B KAF @ N @ % : @ $ 2 j2 c & , n & < /Nc 4 o + X S ,>m & [ xl & , !1 A R a G, : P \ G!0F +J ? 9N - c N v Y ? 0F 9 N ? 9 J c w\ ( \ > a b 0F@ ~? 9 5 c H h f A 0F0 ao /o ? /l -z c Z Z Z @ P % Vpi 7 2 B0bP A 8 D a ~ T H T ImA H T H H T H I T H ` RA @E T PS Ha T#@ H h P^ j 2 D 7 k o TQH P I QA H A\ [ ! pCs `0 P A ^ [A DUA ] [A ! u RAI P !% PH e 0K` t B D @ nbH B /Nc : 0D>m & zn &HDL , , H P B t P n & C- VlB0 [ I1 U^ Q 0 ! 0 , I C vlR0 R lR0 R k2 ` & C-un & 0 5o & 0 n & C- n & C-uo & DfoR mR p oR voR0 iR oR0 FlB [ I PK I!QAN[ 4 m & 0 6m & 0 m & 0 6n & 0 :m & C-vm & 0 n & C- m & C-vn & C- n & C-6o & C-vo & <FD _8 / D D, 0Y I 4 0 0 I H 4 n I H 4 ~ I ] I m[ I } 19 , mR0 r &nR p FnRHTp nR0 r 6oR n ?8T !1 2 0 DY y H x a = A, T %@62 c ? 0 3 dP 9Q # ) @ e LP Kld+@t !@ A 2 j2 c & D, 0Y 4 qM j 8 a &0 N W 09 / !LFjr c & , , } o 1 !1 A T a p C, y d#c 1 "c 4 % @$0 +J ? j c 'x q f h @62 @$0 0 4h o^ | ; ; /c fM #, X Y ? 0 9 N ? hN : c h 5 lM d 0 p u O ? q s c 1J 1 > a b 0 @ ~? z c o xM C !^ 0 o ? # - ! c 5 ? _ C 0 0 ao /o ? d 1 c { a w 0 0 Z Z ? k j j c A@62 @$0 /c A 0 @62 ? V A ! y DW 6 GD 7 L7 d T H T I H ` U RA @ T PI 2 R @5 T@ PO T H f 5 R @Y vI5 Hi R PA 5 o T 7 @ 7 A L7 T P L Q H A\`#[t $ U ~ ` G:+ ,C g V z l w q l H $ e R RF / t $ @ 6lbH B " !L}m & D, 0 1U 6mR n H B S [ I ~ " !L=o & C-8m & 0 xn & C- m & Y e 0 a i m 0 0 I [ PKn & D\ I! R P q 0 0 4 , ] @3 I C I PK [ I C &0 N W 09 / !L mR0 o2\Nd & C-5o & C- m & C-9o & 0 yo & C-ym & [ xl & {n & <FD _8 _ D D, 0 4 TD4 0 , m & Nd & vM Vx gD !LN K B SM lR ` lR ` o ?8T vM lR0 b lR ` lR0 b nR lR0 b nRHT nRHT nRHT j m 0 I P [ I 4 O I" !L5 H P B n2 He & v H 4 l2 ` & X I I!Q I P I!Q !1 . 0 $Q q ( & s a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # R CP j T 4 T[ Q d &HE H L , iR a A 1 A A8 jB I : a d G, P _ P c 3F $ V h 7 2 B0 y 2 E0 @(b0bP A 7 2 P "# j A P b ,AQ ## k AAA 0A a BpA l _ ;K` T P A A8 ) j2 c & jB P 4 m & TFkB0 I1 U}[ I H 4F I!QA] I Cm P 1U jR jB s I! [ !0On & C Q k2\Nd & ,KM I : [ :> 4 a A 1 yt A A8 jB I : a g A, d#c 1 "c @$0 H c B62 w Vph 7 \`#2bP A A $ T H%A ~ ` G ) # j p t 0 1 C P A p\`#[Q f , j2 c & D, 0 !Q n & TvjB P 4 m & D, 0 qMvk H B S !QAo & C- jR jR jR fj 8 a &0 N W 09 / !L k2\Nd & C a H 4 ] iR a A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G!( B !0 A ! ` B0 0 F @ jB I! R I : a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y4 B I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y4 B I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y4 B I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a r G, T %@ P P EP # c 2F +J "H 3 aP 9A $ V pC , # ~ ` dM z # ) d d ! e "-! @ ` S A I J b ` A Y JF > A08 f ( OP " p / j2 c & D, 0 '0 N K / !L n & kb T jr c & @3 k2HT` & C- kR kR Fk NS /Nc !0 m & 6kB S ,>m & <FD _8 / D D, 0 ! R iR a ^ A, T %@$0 +J "H j d#c ~ c # D c 1 " 3 dP 9Q # ) A @ DF > A0x_A `8 F JXn >"I O A F b x ` A rH 7 L7 L A8 & kbH B I#8MED 8 a " !L m & D, 0 Q o + I! R P , h 9 DE d & <FD _8 _ D D, 0 jB I : !1 ! T] a 3 C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y A I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y A I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a 3 C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y A I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 a " A, $$3 T # %P 3 s aN 91 T e@E2 @ 1 JB 1 z # CP j T 4 T[ Q d &HE H L , iR a O, ) T %@!0F r? k 0 @!0F l> D c 5 t B!0F "D c B62 @ 0 @}1 @62 @!0F 3 aP 9A 3 aP 9A 0 p $ A0 ! {p D 8 2 NpV l ~ ` #I` A 7 U T p R ~ ` $Nx A 2 E0bP A 1 A 0 + ` I!@ N eP ` ?pcB * H 2 SG A ! @ 0K } ` tL 1( | B HN j( 10 g 8 B zV SA c8 40 ` ( c ` X A!( Y Af B @f 00 5 RB @O B > 0 d \ mb U d & ,K [ H 4 , n & ,K [ 19 , e ,7o & , I$= 0 HD4 S ,>m & < N N3X I!Q I P m !0 n & C-8m & "5@c & , M 0 (o , m & , }[ ! b kR S lb 1 , n & [ x ! b 6lR S 6kR fl20 b & D m & D 7m & ,Kn & [ JH 2 @3 "= 0 Q h 9 DE d & C- n & C- n & m & C-wo & [ xl & ,Km !1 ( 0 $Q q H X a + C, c 8 a* $ n < f ! 1( ? j d ? a" B c H % * Q 2 &j2 c & C- , ,o , O ! b & ,Km & [ xl & C- a C F, EP # c 0F "H t 1( @ .H &I A < ` X %( H` p %( D e * j d %( Z @$ @ DR 2 j2 c & 0 kB0 [ ,o , O P 0 TD4 jB ` ! b & 0 } o 0 a C, # c ~ %1F r P @ D c 2 , % P E 1 $ pE l n V B *xr kb 1( F > A0 )$ Y a " & ` " @ ` $ j2 c & tD /Nc D ! e & C- 0 Q 1U Fk2HGd & [ 8+ a & [ 6 I! I! [ 4 , X !QAm & 0 ( D CD a & 0 6 !1 ; ! ( I i / ` @ ` ` @! Da H L P! Ta X \ `! da h l p! ta x | ! a _X D @a H ,L <P$U ]X u a c@ e` g i k m o q s@ u` w y { } @ ` a % A, T %@!0F +J "H 3 aP 9A # ) BF > A08 1 ! p &jr c & , , } o !1 1 a E, H T %@62 " # D 3 %@$0 ? T # d## T$c 5 , h B # ~ = H { /D c BE2 @}1 d#3 # T 3 s fN 9 c 0 s fN 9 c ! D c 0 c * - 1 3 dP 9Q 3 dP 9Q m6 h I` 4m p ? FP(F ? A0x] a M q# B0 0 -$P Fd = K" n f 1( ZP((" RB # E A= 7Hf d 7,i ~ ` GmI A , 1 @ 1( pP F > A0H_a, a Z S!x "F F > A0([!N ! 8(b T A @ A 1 8 n " d @ < ` ! 4 n ` ! : d8 : 10F 5 8 1( P@ r 4 8( 0 n @ H T p L7 c d ~ ` G I pC 6"# E 0 L7 F0bP A A / 7 p aPB 7 7 B/ A ^`#2 L7 7 , 7 @ 3 6"# y B: t P lbH B U ,5n & ,K [ '0 N W 09 / !L m & <FD _8 _ D D, 0 p 9 DE o gD !LN K B [ I!0 ! oR oR0 k 8 a '0 N W 09 / !L|m & < k e ,6n & [ JH 2 0o +!Q VlBH 5 P n & [ x Y ! T obH 5 ] , m & , K Lvo & <ym & 0 3E kR lR flR lR 6m LN 8Km 4 , - , 5 h 9 DE d ' <FD _8 _ D D, 0 ) ! b FxR xbH 5 4 /= 0 } o = ,zo & < m & , ! r xR y gD !LN K B " !L m ' <:n & D, 0 qM n & D, 0 ) qMzm & D m & D, 0 i 9 qMzn & D n ' D\ d & < , m & , [ " !L<m & , " !L m ' D, 0 8 b ' D, 0 ( ~e & C-7o & <FD _8 _ D D, 0 I ,u !1 @ j a F C, T # D c 8 a* ( C62 D @ n Fd = I" n 0 e ` <J (# B E 8 F ? A0 # $ (( Y a Fj2 c & C- d & D\ ,o , O I! R[ P , 8 b & ,Kn & <FD _8 _ D D, 0 ! !L , iR a A, T$3 c @@$0 rI \ c ( %C}1 d#c # D 3 %@62 c D c ~ !C62 O T @ 5 p l ! ( C Hc E E` q ( 2 @ T)T BA V } ` A ! + } ` G9)@5 RH F\`#2 lh0 G0l@ AP R - fl2 c & D, 0 ! Qn & E qMVlB0 $o , } oQ |l & C- lR Vk2 ` & , n & ! h 9 DE d & E m & D, 0 , 6kB ` !1 c 8 DY y H L ` ` X0 Da H ,L <P$MTe]X m\ }` b0 dP fp h j l n p r0 tP vp x z | ~ 0 P p 0 P p 0 P p 0 P p "1 $Q &q ( * , . 0 21 4Q 6q 8 : < > ` b1 dQ fq h j l n p r1 tQ vq x z | ~ 1 Q q 1 Q q mN, @ 8 z Y a 7 A, D c A62 0 D c 0 +J "H j U 2bP A A \`#T qH-AT ! + jB0 r I#8MED 8 a 4 , j2HT` & , 0 TD4 H3 iR Fj20 a 8 A, $$3 c @@$0 @ 0 P 3 D s cN 9Q %@ r ` G B !0 A ! A0 0 F @ jB I! R I : !1 R ( I i @ @ @ @ BA F J N a ; C, T %0 P 3 T 9a 3 T 9a ` ? 7 4 ! A ! y$ A I@8 a " B R$& p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 !1 N ( I i @ @ @ @ BA F J N RA V Z ^ bA f j n rA v z ! A ! A A $BB$F $J $N %RB%V %Z %^ &bB&f &j &n 'rB'v 'z '~ , B, , , - B- - - . B. . . / B/ / / 4BC4F 4J 4N 5RC5V 5Z 5^ 6bC6f 6j 6n 7rC7v 7z 7~ < C< < < = C= = = > C> > > ? C? ? ? DBDDF DJ DN ERDEV EZ E^ FbDFf Fj Fn GrDGv Gz G~ L DL L L M DM M M N DN N N O DO O O TBETF TJ TN UREUV UZ U^ VbEVf Vj Vn WrEWv Wz W~ \ E\ \ \ ] E] ] ] ^ E^ ^ ^ _ E_ _ _ dBFdF dJ dN eRFeV eZ e^ fbFff fj fn grFgv gz g~ l Fl l l m Fm m m n Fn n n o Fo o o tBGtF tJ tN uRGuV uZ u^ vbGvf vj vn wrGwv wz w~ | G| | | } G} } } ~ G~ ~ ~ G BH F J N RH V Z ^ bH f j n rH v z ~ H H H H BI F J N RI V Z ^ bI f j n rI v z ~ I I I I BJ F J N RJ V Z ^ bJ f j n rJ v z ~ J J J J BK F JK a C, T %0 P 3 T 9q 3 T 9q ` ? 7 4 ! A ! y$ A I@8 a " B $' p Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 !1 L p ( I i @ @ @ @ BA F J N RA V Z ^ bA f j n rA v z ~ A A A A $BB$F $J $N %RB%V %Z %^ &bB&f &j &n 'rB'v 'z '~ , B, , , - B- - - . B. . . / B/ / / 4BC4F 4J 4N 5RC5V 5Z 5^ 6bC6f 6j 6 a v C, T %0 P 3 T 9 3 T 9 ` ? 7 4 ! A ! y$ A I@8 a " B $ 2 Fjr d & 2\O 0 j Q ` p I D ! e : 0DvjB >}[ 4 , iR j 2 N3 !1 A ( I i @ ` @ @ BA F J N RA V Z ^ bA f j n rA v z ~ A A A A $BB$F $J $N %RB%V %Z %^ &bB&f &j &n 'rB'v 'z '~ , B, , , - B- - - . B. . . / a A, V T _R R6e@!0F |+ ! : # %P eP P c 8 a # ` ML $ V0 .( ( J ( XP * J* ; @v 4Nh @A * ( RJ U P v >N P @ F ? A0( *p ! 0E k , Hu T @ G }s x )2 3 < " ?0 T @ T bm 1@ :a m P * # HA [ } n Q ` p 0 D ! l Q ` p /QL D ! U D1yn & E W] Q $ , O @@ 2\u K vnR0 nR nR0 nR0 n Q ` p /QL !Q m & C- lBHT [ PKn & C- 6mb 0 p= X Q ! (@ 2\5n & C- l Q ` p (@ 2\um & 0 n & C- m & lR0 R 6oR &oR0 lR0 R VoR0 FoR vl Q ` p /Q E 0 I 0 A ] a 0 T&kB @ Y ! Qm & tD $ p= m (@ 2\wm & E I } I [ I P M[ I P m[ I I P Ip I I P [ !8Me fmb NS : !1 : P 0 q ( & ., 2' a F, # %@ P @ P c #) 0F ] b /c J ,+ @ & "P j /c h 2F < ! O [ # ~ p ,C %DRA ] 6bp A A 8 L ! }P 0 # \ [ g$ V ! ' o DP @ p , @ T pA !` xR^ # A E|Ra ! } A TPD A @ D T @=i (P u pA l i W% V |A pB ! , @ 0KP t @d d Fn D T O[ #8MED 8 a & < lb 9 ,vn & <5n & D fk20 b & , m & H3 kR flR P kR k2 ` & , n & C- n & D mrHTp n & 4 4 m & 4 [ I!8M [ I!Q [ I P ] I I P } I!Q [ I!Q !8Me & 0 vo & 4 T m & 4FN Iq9 N H? 8 vlb NS u ( S 9n & D m & , M 0 Q U 0 Y 0 e 0 i 0 , ,D^ I P H P B } ! T6 !1 " ( I a X @ Dq H ,L <P$MTe]X m\ }` b0 dP fp h j` ( I Y @ @ @ a A, * d#c 1 @ t@}1 c 8^ ? x= 0 Ac 6 c @$0 |+ c ` #A}1 @ 0 P D 3 EP d#c @ P P D c 8 a ( w V`i ^ ` % . Tp *BP `Yb I T D A p t w # N L7 t $ ! ; ' 0 d ! @v bN A0 d 4 @ c 0sB s j =j n cp lj ) t@O 9 ' ; :' ` ( 2 y` ` \ !@ - B A# @ # @ ~ ` Ka* v N B ch L R ; V'b! B 1 B0 f D P !@ j! Y \ s L D !@ p ; ^' B 10 8 F V` Dy + , @ , -DRB E P @I B$% PD /DRB E P ; A A \ d vlbH B ! ,un & E N[ D ! fk O-Nc Vx Q ` p % (@ 2\ m & tD x Q ` p E I 0 M Q fl2 c & C- FlBHT [ P n & C- ) p= X I!QAM[ D ! U k20 b & :. I C^[ I CN D ! e D1{m & n Q ` p /Q n I PKn I PK~ D ! e D1 n ' E ] 1 @@ 2\v K yR0 yR0 yR k NS # d I 4 I : [ I C [ D ! U D1zo ' 0 yn & , D ! e fm Q ` p i (@ 2\6n & E I C D ! e n Q ` p U 8@ 2\ K c & E [ I n I ~ #8MED ?8T } u @@ 2\ K 6zR0 o Q ` p /Q ~ D ! U D1;n ' E W lBHG I 9L D ! e D1 l D S m D S oR p o Q ` p 0 a I P } I P ] I P [ I #8MED 4 !1 ( I i @ @ @ @ BA F J N RA V Z ^ bA f j n rA v z ~ A ! A A A $BB$F $J $N %RB%V %Z %^ &bB&f &j &n 'rB'v 'z '~ , B, , , - B- - - . B. . . / B/ / / 4BC4F 4J 4N 5RC5V 5Z 5^ 6bC6f 6j 6n 7rC7v 7z 7~ < C< < < = C= = = > C> > > ? C? ? ? DBDDF DJ DN ERDEV EZ E^ FbDFf Fj Fn GrDGv Gz G~ L DL L L M DM M M N DN N N O o @ $ 4 I DU e u a c@ e` g i k m o q s@ u` w y { } @ ` @ ` @ ` @ ` !! #A %a ' ) + - / 1! 3A 5a 7 9 ; = ? a! cA ea g i k m o q! sA ua w y1 Q q ! ~ | ! A a ! A a ! A a "!""#B"%b"' ") "+ "- "/ #1"#3B#5b#7 #9 #; #= #? &a"&cB&eb&g &i &k &m &o 'q"'sB'ub'w 'y '{ '} ' * "* B* b* * * * * + "+ B+ b+ + + + + . ". B. b. . . . . / "/ B/ b/ / / / / 2!#2#C2%c2' 2) 2+ 2- 2/ 31#33C35c37 39 3; 3= 3? 6a#6cC6ec6g 6i 6k 6m 6 @ 8 DY y H L ` ` ` ` @! Da H L P! Ta X \ `! da h l p! ta x | ! a ! a ! a ! a @"$Db$H $L $P"%Tb%X %\ %`"&db&h &l &p"'tb'x '| ' ", b, , , "- b- - - ". b. . . "/ b/ / /@#4Dc4H 4L 4P#5Tc5X 5\ 5`#6dc6h 6l 6p#7tc7x 7| 7 #< c< < < #= c= = = #> c> > > #? c? ? ?@$DDdDH DL DP$ETdEX E\ E`$FddFh Fl Fp$GtdGx G| G $L dL L L $M dM M M $N dN N N $O dO O O@%TDeTH TL TP%UTeUX U\ U`%VdeVh Vl Vp%WteWx W| W %\ e\ \ \ %] e] ] ] %^ e^ ^ ^ %_ e_ _ _@&dDfdH dL dP&eTfeX e\ e`&fdffh fl fp>fgx g| g &l fl l l &m fm m m &n fn n n &o fo o o@'tDgtH tL tP'uTguX u\ u`'vdgvh vl vp'wtgwx w| w '| g| | | '} g} } } '~ g~ ~ ~ ' g @( Dh H L P( Th X \ `( dh h l p( th x | ( h ( h ( h ( h @) Di H L P) T p) t i ) X Tj J N R ^ j v J I I BJ F n rJ z ~ i ) ~ v z bJ f f j bI V Z ^ J * j * j @+ Dk H L P+ Tk X \ `+ dk h l p+ tk x | + k + k + k + k @, Dl H L P, Tl X \ `, dl h l p, tl x | , l , l , l , l @- Dm H L P- Tm X \ `- dm h l p- tm x | - m - m - m - m @. Dn H L P. Tn X \ `. dn h l p. tn x | . n . n . n . n @/ Do H L P/ To X \ `/ do h l p/ to x | / o / o / o / o @0 @ H0( P0H @ X0h `0 @ h0 p0 @ x0 0 @ 1 0( 3 0H @ 6' a F, L d#c 2 c H aj #A P D c #) H 3o / 0 ? c a 2 tI = ] b /c J ,+ 8 ) B}1 0 d#c H aj %A$0 +J j /c 2 p 7 8i d 9N - /c |? 9~ n B62 0 ' V i ~ ` G0IT D ~ ` G * TAI \ t ! c+ X ! c+ X ! c+ 0X 6 | lE _@ {e ;l@ E TA pC 6"# pCp `0 0 Aag \`#t X d E A ~ `0 B E 1bp A t* g @@ ET D A PB e PE D 6 _e#[s $ w DP 6B ^ 0KP `P B @G B@ A8 | nb ) ,uo & C a 8 TD4 H3 n &HDL } 0 0 /Nc l NS , Vk2 c & D\ I , n & , I!0O [ Q % qM5o & , m & , m & :.[ P @3X I! I! I! [ p9 8 TD4 H3 :n & 4 M? L } o - 9 4 TD4 @3 k NS , m & 0 m & C-vm & < A M Q ( /Nc 9n & v Iq9 H 4 VnR\N k2 ` & C a Y 0 ] e 0 i 0 < TD4 ~ I!Q m I!Q I [ I [ I 4C^ I 4C I P H 4 6lR\NT !1 ( 8 $Q q ( XX Q ( 8 I UY i y ( ( ) ) * * + + , , - - . . / / 8 8 9 9 : : ; ; < < = = > > ? ? H H I I J J K K L L M M N N O O X X Y Y Z Z [ [ \ \ ] ] ^ ^ _ _ h h i i j j k k l l m m n n o o x x y y z z { { | | } } ~ ~ ) * + R, R+ < S= = S> > S? ? TH H , R- - R. . R/ / S8 8 S9 9 S: : S; ; S< * R) R( R I I J J K K L L M M N N O O X X Y Y Z Z [ [ \ \ ] ] ^ ^ _ _ h h i i j j k k l l m m n n o o x x y y z z { { | | } } ~ ~ [ ! `0 % `p ) ` - ` 1 `0 5 `p : 0 $a q ( & ., 6 a X A, c @ P U 2bP A # \ tA @ aH-A K@ 9 jB0 b I !8Me & 4Um & e & 4 ?E j2HT` & , !1 1 ^ ( I i @ @ ` @ @ BA F J N RA V Z ^ bA f j n rA v z ~ A A A A $BB$F $J $N %RB%V %ZB a k A, % d#c 1 I l D c A62 0 D c @62 D c ! G V pC tC 0A ~ ` G ( U } E0RG J3 UP Y j2 c & D, 0 I#8MED 8 a " !Lum & C- @3 &k2HT` & , m & C- j2 ` & j <o + #8MED 4 m & [ x !1 0 $Q q ( L ` ` ` I~ a U A, 3 T # # c ? 0 #82 c c A0 0 p] s 2 K2b` A $# n A2b` A $# o ARC (Y r&, ` lc+q "*x *8)# ( kBH H 8 d PKo & 0 k2HT` & , K LH# d & tD6k20 b & , m & ,Km & C-um & , m & C-5m & , K L iR m jR m fk _, 0 jB !Q n & 0 : a Y A, D 3 T # D # c ? X 5 c 0 X ? ? 5\ s 2 K2b` A $# k A2b` A $# Nl ARC (Y r&, ` c+q "*x *8)# ( k _, 0 m & t, PKo & 0 k2HT` & , K LH# d & tD6k20 b & , m & ,Km & C-um & , m & C-5m & , K L iR m jR m jB I H 8 t !Q n & 0 : a ^ A, 3 T # # c ? z c 8 #8 #c ( ? c c A c c u] s 2 K2b` A A+ ! , ~ $# A ~ ` ARC (Y r&, ` Vc+q "*x *8)# ( k _, 0 m & t, PKo & 0 k2HT` & , K LH# d & tD6k20 b & , m & ,Km & C-um & , m & C-5m & , K L iR m jR m jB I H 8 !Q n & 0 : a n A, ( $ 3 T # $ # c! ? z ? z c!8 #8 #8 #8 #c!( ? ( ? c! c!A A c! c! u] u] s 2 K2b` A A, ! , ~ $# A ~ ` B ARC (Y r&, ` d+q "*x 2 *8)# ( fk _, 0 kBH H 8 PKo & 0 k2HT` & , K LH# d & tD6k20 b & , m & ,Km & C-um & , m & C-5m & , K L iR m jR m jB !Q n & 0 : a A, I 3 T # # cA ? z ? z ? z ? z cA8 #8 #8 #8 #8 #8 #8 #8 #cA( ? ( ? ( ? ( ? cA cAA A A A cA cA u] u] u] u] s 2 K2b` A A- ! , ~ $# A ~ `P ARC (Y r&, ` d+q "*x 4 *8)# ( kBH [ I PK][ Fk2 ` & D j I L , 4 M&k2HGd & C- jR jR fk _, 0 , 0 L ^ kR0 R j H L , d & [ vl & + 6i & , kB !1 & v ( I i @ @ @ @ BA F J N RA V Z ^ bA f j n rA v z ~ A A A A $BB$F $J $N %RB%V %Z %^ &bB&f &j &n 'rB'v 'z '~ , B, , , - B- - - . B. . . / B/ / / 4BC4F 4J 4N 5RC5V 5Z 5^ 6bC6f 6j 6n 7rC7v 7z 7~ < C< < < = C= = = > C> > > ? C? ? ? DBDDF DJ DN ERDEV EZ E^ FbDFf Fj Fn GrDGv Gz G~ L DL L L M DM M M ND TP%UTeUdeVh V^ Vb UX U E_ _ _ ^ dBFdF dJ dN eRFeV eZ e^ fbFff fl Vp%WteWx W| W %\ e\ \ \ %] e] ] ] %^ e^ ^ TH TF O@%T dO O N $O N DN $Nj fn grFgv gz g~ l Fl l l m Fm m m n Fn n n o Fo o o tBGtF tJ tN uRGuV uZ u^ vbGvf vj vn wrGwv wz w~ | G| | | } G} } } ~ G~ ~ ~ G g BH F J N RH V Z ^ bH f j n rH v z ~ H H H H BI F J N RI V Z ^ bI f j n rI v z ~ I I I I BJ F J N RJ V Z ^ bJ f j n rJ v z ~ J J J J BK F J N RK V Z ^ bK f j n rK v z ~ K K K K BL F J N RL V Z ^ bL f j n rL a A, D 90 ` a 7Q # q *M R "d D H9@ ZW "0 H3 _ \`<I` .! H]u E { V. ? z%MND MYW uw Eu7 ? K i: ? S FC 49 S BW $ e+ s 8 ,HF PZY \ 49 GS U L ^A s 9 t ] S@ 4 ]u o @ 3 FW X0 \ 49 MMW uw (s :0 : J s^D ) ? C tU ] v6 \ W D U 0 {k 7Clh s W D R MYW _0iw pA {%MND ] uwh Cvs R, AL? p _ *Z -H H? q' ? S FC 49 R {kl-t wG | v HX# ) 9 KS 0 #,?Q d v v 2 @4 D LSt #,? Q ? E [N U ` M smW D K w L {w J ? = a [N F P /M 2 /8 G { DE4 zJ + ? = a [N F P /M 2 /8 ]U $ 3L OTD3i A( D oD ! 1 ` {kl U / 7 ; Lf @ l O5 1 D / N4 U /%:. n l 5 o9 C= 4E @ <X [/ {k M. ; L )`~) 3.! l O5 1 D 8 Q {kl-tU Kb ? 0OQ Fm m ? b4 / 0 D|J :t \ W D U 0 {k } C ? b4 K ?% @ U $& ]0@Q <A x | D o 0 A c ! Q = p mE D b D= @ o9]e HW ? ? ] d q ] D oD ` {k U 5 L OTD3 @ b QW ] F H G QNQ 5 v HX# ) 9 KS wW 5 ; L& m ? b4 / 0 xJ N l \ 3 U ? D D oD ! 1 ` {kl= 791L OTD3)y m @ : 4 `tGw )r P 4 M? O 4 q #,? Q ? E [ v o , tGw(c % ] D oD ` {k 5 0 #,?Q ? 49 qw 3L ( v ( D oD ! 1 ` {k U {klM ? DE4 W #X KH#8RW o9 ? H > ? 3 ` NS # ` t8 d D= U D G ! @ 9 ?o l 1 D 6 0 A D u n 0 A 4 0 = M; # ` Q ` x 3. zD0 t v # 8A o =8SW JX J s 8FM @ l O5 1 D 4S BW $ Z @ 8 O\ ND p ) t ` ? c ^I K t L {w \~ d \ Ka3 {klMv K ? = a [N F P /M 2 /8 ] L { 0 #,?Q d ? ctU i ^J smW Ka3 {k Mv /h x \ 49 4 a H KHF(} ( D oD ! 1 ` {k U {klM ? DE4 vZ W#4 KH ]u B & ? uD 0 A 5 0 A 9 +X t \ 49 R L {w 3 k x \ 49 4= b ^I , G U _0 {k `zY0 \ 49 MOW ww { m ? b4 / 0 w [ B ? 49 w 3L , s # ` A 1 #,? a B > s W D Ka u L {w > L \ 1 F P v ] D oD ` {kl= 790 #,?Q x v HX# ) 9 wW $ 3 #,?Q w u # ` M; # ` Q ` #, 0 BD] |F H G QNQ 7 ? @\OW _ q \ ? Q #,? a ? E GN]; K ,D U A ? b4 / 0 DS 6)$ - n l 5 o9 C= 4E @ <X [w ' {k M ? DE4 G ? = a [N F P /M 2 /8 ]u R [ 0 #,?Q a R, D 0 ! ?@$ E ) @ = U ? ' ^ d \ 49 R ]u v /x* ? {%MND , G U ?0 {kl zH {:0 s 4 uU o d T , /MND {kl-tG b 6 R, D D 8V U _tU # k` J ^- 0 L { a ? 3 ` K ?0M #,? a ? E [N U h , z 8 `3 {k M ? s^D 0uG {w " H W 6 ? 7 h . z 8 `3 {k M& @ Z s W D R 4e] v # ' H W 6 ? 7 hh m3 z 8 `3 {k M H z D e ~ } ? b4 K ? 4 BW h - z 8 `3 {k MJZ) ) } o ` 2h4 s1 z 8 `3 {k MN M \ 49 R 4 ] ? C 3 {klM L0 ^- 0 : c ^I Kq Dt L [w L W 5Y } ? b4 K ? 4 ] I ? C 3 {klM m J0 ^- 0 : $ ? C 3 {klM&* O s W D K u L z@ l O5 1 t8 5)$ K0 ^- 0 : $ y v HX# ) 9 uW 7 L OTD3 = j2 { 8 P L [ n3h x \ 49 MYW ? 49 qw w ? C 3 {klMJ i0[J s}W KQ L [ ? C 3 {klMN P l O5 1 P B {klM > ? NS # ` H3 ]; # ` TQ 9 P N \ 49 R 4=]e x v HX# ) 9 wW $ 3 #,?Q d ? c5] EW ?b c T , 8 {k M 2p6 ? |%MND ,E DtU v ? ? 3 ` NS # ` t8 d D= @ 9 @ l O5 1 ? 8 6)$& P l O5 1 ?% N4 {k M 3$ ? |%MND ,E uU a c T , /MND Dx*t S H !PQD4 N P ? z%MND , MD a i 6 T , /MND BW h t R, L tU * l l 5 o9 C= 4E @ <X {w 3 {klM ? DE4 > l W DD wU uw D A( D oD ! 1 ` {kl U ? 7 ; L l O5 1 D Kq U H 3 HW ? o h T , /MND Lw [ ]u I ? 49 w 'L [' -K ?4 > < x | D o 0 A c ! Q = s v HX# ) 9 DE4 O c 4 ] V> H W D U ?0 ? cuU " A( D oD ! 1 ` {k U 5 ; L M0 ^- 0 L [ ? 49 w OL:)f ! U w MD / , d R D U ? Z? ' H 1 KS 4 O0 d h T , /MND w { ]u K ? U {kl z ]p o D / N4 ? c ]U ? ED\OW vU # z\0 s / , dD ? 49 qw #L [# h | KT D oD ` {k ] 5Y1 #,?Q e 5v@ R,? 8 T w (l {%MND ]e Jfx@ l O5 1 8 5)$ 3^ 3 j 4 y v HX# ) 9 uW w 7 L OTD3)h@ w e}/ q= , b | 2 @4 TD4 ?9?% N4 #,? Q @ ? v 8 8 ` ]I ,E wU x v HX# ) 9 uW $ 3 #,?Q ? #=HW ? c OW ? ` b4] k$ e}# c ,] j O s P ND0L f> H W D U ?0 ` i 6 T , /MND BW ; L] Z2 F ? |%MND ,E tU v :4 \ W D U 0 {kl} 8 s W D KQ 4 ]U ww L R, E O@ e x d. y 8S3 :]Q 3 8V U ? HGW ? H 7@ #M1 } l {%MND ] t l O5 1 ? LwJ R DW X \ Q! S v HX# ) 9 KS wW $ 3L OTD3 8n R, L Z;A o@ \ 1 qL5 0 A o9 I [{ ? b T L] E [ j ` \ 8 !M U Z^ I | D o / _ DD? D]; K ,Dd h T , /MND v [ ]e K H 1 @d L H 1 @d L H 1 @d L? H 1 @d L? y v HX# ) 9 uW 7 L OTD3 E 7 4GW ` d T , 8 S Dv k Bb d T , 8 SH3 z k B A-D GD 8 _ fN l D # ` M; # ` Q ` #, 0 BD]e n6@ \ W D U 0 {k h A R, A8 /A ND 9A( ] ? D 0 A 6 0 A D S < u #Z @ N \ 49 R 45] a { 2 @4 TD4 ?9?% N4 #,? Q ? E [ ? 3 ` K ?0M #,? a $] r o $ 8 3tU 8 ? H 0!N , 0 ( D oD ! 1 ` {kl U {k M ? DE4 1& ? S FC 8 Q {k M V P # DD ] v m ? AL #C ? c tW ` ? 4] C F ? 5 a [N F P /8 G [ ; LjJ < 3.A U ?h# A 90 U ?X ESW ? 49 aw L { `lN \ 49 R 45]u c ^I Ka t L {w 2 O ( G 35 ? U ? ? <HW ?h pA {%MND ]e uwh ,p @ AH N 4 | U ? 8 L \ D5N4 1tGwh %r P 4 M? O 4 q #,? Q @ c ? S FC O! T ))$: ,Z0 \ 49 MYW uwh y y U {kl V ? c f p ` \ 8 !M U :H h:@ s uU w > ' b t }( M ` ? < | U ? ? k+ A R, AL XD U ? q= s W D K u L [w >3 z ? {%MND , GS U _0 {kl Z[p H 3^0 0 v+ 3^ U ? x RW ? z%MND MDW ? 5]0 P ] kC l {%MND ]e & 1Nh N /M ? / @$ 2K ? = a [N F P /M 2 /8 ]e S { 0 #,?Q ? T ua m 39 S >9 k 4 / tU w ' ? S FC 49 R !> ? S FC 49 ,D U +T \ TD4 45 * t \ 49 R 4 ]u v ? S FC K 5)$ P s NS R @ X s W D R 4 ]e v t \ H /8 U ? R8 p \ L 8 u OJ M smW D Kaw L [ @4X@D c ! : ! tU @ l O5 1 ? 8 7)$ /0 , HH ] K ? = a [N F P /M 2 /8 dw0L OTD3 = m ? b4 / 0 | [ Bb ? c 'HF P W 5 i l 5 o9 C= <X {w {klM ? ; L Y\@ ^I |W w0iw * z 8 p3 {k M : L ^- 0 L { 8 O ] ? 7Y B < s W D KQ 4=]U ww * 0 z 8 p3 {k M :n@ J ^- 0 L { n H W 7 d e 5_I KQ 45]U uw > w2 z 8 p3 {k M.z>Q x 3 HH3 / z 8 p3 {k M2* 3 HHS g #w@ x 8CQXx@ x 0 cb s W D R MDW _0iw - z 8 p3 {k MJ: ^L ^- 0 L { " G X KH#8RW ? w%MND , U _0 {k j o\ sm / ,?2$ Z@ 3_I U LZhhD* A ] D oD ` {k U {klM ? ; L \ 9I .! HE { n u 2 @4 TD4 ?9?% N4 #,? Q ; 3 } _0 3 !LN U U / ? 0 G]U vU 3 o ? {%MND , G U ?0 {k s NS R 45] +T \ TD4 4= h \ KQ L { a f v T , 8 S DS 7)$ P l O5 1 P B {klM *h \ TD4 MMW | v HX# ) 9 KS w d 0 #,?Q D D 8V W y+T \ TD4 4= * @ G @D F P l O5 1 ?% N4 {k M B*0z ? z%MND MDW ww c >p l D o o,N ,?2T N1 } M\OW H ( }l l 5 o9 C= 4E @ <X {' {klM& ; L [p ^I wW ub ` 6 T , 8 S D B H %L W *[H &p G@c D 0!N ? _ j) ) o ` b F ` l O5 1 D O-Nc z*tU L v HX# ) 9 KS uW $ 3L OTD3i0 g A HGW ? (A u]- 0 7 dw(m ] D oD ` {kl U / 7 L OTD3 1E A H U ? x@ x MQ q@'| b f;P sM MW j X0 \ 49 MDW uw ) be ^I K t L vA i i< s W D Kq t L [w 2 g ? {%MND , G U ?0 {kl Zp ^I vW ? 5b d 6 T , /MND 4 ]u L o n 0 A 4 0 =D ; # ` G Sl ( / 0 ? 0uW wh p` ]I Kqw L [w BK ? = a [N F P /M 2 /8 ]U $ 3L OTD3i) , @ 4GW w zB } ? b4 K , BW w$ | } ? b4 / 0 D Bb d T , 8 S v [ B q u # ` E ; # ` GN]; K ,D U _ $;A ^I , GS U ?0iw ] ? b4 / 0 {k M 28S x \ 49 MMW : ? H 0!N , 0 A>) ]- 0 , 5 fX l D /MND 4EG ; # ` [N U & l O5 1 D O {k -t .p \ TD4 GS U 6 \ ? #,? q #, 0 BD] a.p \ TD4 GS U A j l 5 o9 C= <X [wU C { DE4 B ? uD 0 A 5 0 A 9u / QW ? ? t 8 R0 {k Mv ; ? S FC 49 /Nc z { ]U ( A } # ` p MC, Dd = @ 9J( hl l 5 o9 C= 4E @ <X {w O {klM ? DE4 7 \ W D U 0 {k hu ~ R, S ND z MM smW D Kqw L [w ; ? S FC 49 /Nc U $ a i0 l 5 o9 C= <X { {klM L OTD3igE # vW c / D [ H 3^0 U ? ? 3 ` K ?0M a = @ o9IW whq 1$ 4 #u {kl F m ? b4 / 0 |J f/ | \ 49 |W ww(s 4 z 8 3 {k Mv C|R ? 5 a [N F P /8 ] S [ DE4 *VH 4 / Q ] z/ h \ 49 xW a ` R, L ?t ) o d T , 8 S Dw k B ? 49 aw #L {# ? Yy E $ q : 8 h ;J@ s]W , dw( q : 8 \a 3 8V U ? ? 3 ` K ?0MQQ D= t F P | D /8MED 0 A S DS ; # ` [ :T H W D U 0 ? v%MND |W ww C ? b4 K ?% @d U $ -` + sm / BtU Wl \ o< ?8T D U ? 8 !MW ` ? c OW w 9 8 !MW H 1 @d D o+ -t R, AL? t8 Z ]` o D / N4 SD 8 / 0@W ` ? tU h0 l O5 1 , ft R, AL? t8 *<p=/ s^D tU {kl U h, A R, AL XD U ?(~ A( D oD ! 1 ` {k U 5 ; L ` N s W D K Dt L H : D9] uW ?b c T , /MND |*t / >l l D o oD P 2 U ? *9qJo` l 1 / @ ? O C #,? Q @ ? 49 w Lz( ( D oD ! 1 ` {kl U {k M ? DE4 ); ? S FC 49 S D BW . : ! tU w Bp H 1 KS 4 O0 7 W\ #D KH#8RW ' b d \ 49 R L [w VWX "L G @D] ;D ] D oD ` {k - 5)1 #,?Q ? z%MND MDW ? {%MND , G U _0iw , e s W D R 4=] a ? 4 M ,E tU +p \ TD4 G U N > \ ? q #,? a #, 0 BD]e O@6 8 # ]U ` q u # ` G ; # ` GN]; K ,D U h{ 5A ]I , U _0iw p@ R, $ 1 } ? b4 / 0 D ( : s W D K t L {w ~2 N ? {%MND , GS U ?0 {k + * \ G 8 DW ?K H z 0 8F ? z%MND , MO ww(p #A 4 #u ) < A ] D oD ` {k U K {klM ? ; L @ sMK L 4 OwtGwh ? # ` p MC, L ?a Q D= b ^I , GS U _0 {k O s W D K GS60 {k *M0 ^- 0 L k a u 2 @4 TD4 ?9?% N4 #,? q @ 9 ! U + MW Z]`zI .! H] & ? S FC ?8T | k B ? 49 Q ]U a> ? S FC 49 , ] C ND # e E#2 4 G ? 5 a [N F P /8 ]U w 7 L OTD3 k 90 = Z hX0 \ 49 MDW uw( * A } # ` p MC, Dd = @ o9F l O5 1 D Kq U |7@ h * z 8 3 {k M Z L ^- 0 L { |7@ h A , z 8 3 {k M )L ^- 0 L { PV L # DD ] k A + z 8 3 {k M" IP ;p D9] iW ? c un 0 A 2LG ; # ` G \ |7@3i!B / z 8 3 {k M2 + * s _0 # c ] v H W 8 db /M _ P L ^- 0 L { @ LC [ Z hL ^- 0 L { ;x \ W D U 0 {kl h A - z 8 3 {k MJz N \ 49 R 45]e c ^I K u L [w . t \ 49 R 4e]e v D 3 PtG {w 4E~M+ b QW vU # q m /M _ q 5n d T , 8 Lv { B v HX# ) 9 KS wW $ 3L OTD3 $ 7 \] k mE D #,? a t #] " ? S FC O-Nc z [ B ? 0 U ? : ? b4 / 0 t8 ( 0cB m o9 S t % 4 #u wG 8 8o M /A B4 tt j l 5 o9 C= <X [w 3 {k M ? ; L q u K X? ! _ Z 8 O\ ? AL 9 #C ? 0 U F l O5 1 D / N4 z [ ]U @ y 8N U ? y ? 4 M 0 BD t8 T < Y @ y 8N U _ 5B ? b4 / 0 t8 7)$ P ZP \ 49 GS U L {w R @ 3 b h@ l O5 1 ,E 6)$ j J` s}W KQ LJv V2 F x \ 49 MMW ? 49 aw 'L [' j 3 T AP DL 9 ho l 1 / @ ? O C #,? q A v T , 8 R ? b4 K P B {kl-t & H W < ? 69 .8MED K t yp>K ^- 0 L k I: ? S FC 49 S v { ]e L ? 6yh + z 8 3 {k M" ~ K ^- 0 L k Y | l O5 1 p Q 0 T , 8 S DwJ F" H W < $ ? z%MND MMW ? 6 B .8MED K GSV B .8MED K GS6 f v 9q=L p s^D 0 {k =( < e}/ q= , #\ H W < ? 6) $ 2d ^I Kq t L s NS R 4=] B | N /M ? / @$ o {%MND ] ' ? S FC 49 R U ZNl ? AL? 4 v 0 A PEAD / s]G 0 Q = U * y u R, D c v HX# ) 9 KS wW ? $ 3L OTD3 7 ,]e >F c ? 5 a [N F P /8 ] K [ DE4 i6 ? S FC 49 # d U $ oh@ ? Dhw m5 s}W D KQ ]U uw } ? b4 / 0 4 l ] D oD ` {kl U / 7 L OTD3iqCwk {%MND ] ZK 8= s HHStU w * ? z%MND MDW ww b s W D R 4 ]e ` R,?" 9 4? ] a c T , /MND Lw*t ' KL ? = a [N F P /M 2 /8 ] $ 3L OTD3 ] ? b4 / 0 H3 {klM FJ " ? = a [N F P /M 2 /8 ] I [ 0 #,?Q ? ]e W #X KH#8RW ? ? w%MND , U _0iwh @ 9"5@S( 7 s W D KQ 4 ]U wwh C l |%MND zW 0i ? 49 aw 'L {' H` D9] ] >/( h \ 49 ? cE] n zD0 tGw , | Q U ? b } ? b4 K p ]u B v HX# ) 9 KS uW $ 3L OTD3 C } ? 4 M? O OI M5 0 A o9 l O5 1 D / @d U /$ ` l O5 1 P B z [ Bb d T , 8 S Dx k Bb i 6 T , /MND D BW ht } b Qw * ? z%MND MMW ww q ] D oD ` {kl U 7 L OTD3i. @ 9"5@ U ?h e*A ]- 0 , dwX x MW K == s H tU : j l 5 o9 C= <X [w / {k M ? ; L * l l 5 o9 C= 4E @ <X {w {klM ? DE4 ^O( ? AL? [ 0 5 0 A o9 Kq(| -8RW v HX# ) 9 KS uW ? $ 3L OTD3) q 7 ] ? H]u 2 > 4 I > [ KHs zj ~J smW K 3 {k Mv f f \ KH#8RW w 5 E 3 4 ` l T , /MND t8 T {kl-tU S ? H M D j un 0 A 2L ]; # ` TQ 9& l O5 1 D ?8T BW ?$ - n l 5 o9 C= 4E @ <X [w {k M ? DE4 * j x \ 49 R ] a { v 2 @4 ? Q #,? q #, 0 BD] ? 3 ` G 0 DQ = S < u #f}0 l O5 1 ? 4 hE $ ]e b D \ 8 !M S d \ K 3 {k Mv F3 z ? {%MND , GS U _0 {kl h 0 H?1 / ? 4vW 0 l O5 1 4 c D oD ! 1 ` {k {klMv DE4 d 3 r ] x l O5 1 ? 4 B y v HX# ) 9 wW 5 L OTD3i :A u^I , M ww % 6 R,?C- : ` s} H 3 J0 ? = a [N F P /M 2 /8 ]u B { 0 #,?Q ] ? 1(v } ` ? <H ? c : ? S FC 49 S Dx*t rN$ ? AL? 4 5 0 A o9 ? y s L@cwU k? g ] D oD ` {k U 5 L OTD3 : y U _ wW ? a 5^I KQ ]U uw( 4B 4 2h# = zD0 tU ] & ? S FC ?8T vJ 6 $? 4 I N ? 3 ` # ` X 4E @ #,? Q ? E G ? S FC / N4 {k M P q=] vU #& C=?2 D R! 4 S 1i`@<s R,?" 9 4? ? 49 w 3L [3 .P + P ] 3E 8 BW ? tU H ? ! # ` ]; # ` TQ o9HW a o v 2 @4 D LS #,? a $] j? 3 T f?H2 T n? 3 T 7 ? S FC 49 K M ]U ( B =A ^I , GS U _0iw > u^I , M a ? S FC 4S 9 b JI I{ ? ; H W D U 0 H 1 @d _ p \P o D / @ : P [p ^I wW e 5_I KQ 45]U uw g A ] D oD ` {k U {klM ? ; L P N@ \ 49 R MOW _0 {k QXj l 5 o9 C= <X [w # {k M ? ; L s NS R 4e]u . ? {%MND GS U L [w I.h \ TD4 MYW ? tU 'Jj0yJ smW Ka3 {k Mv , |7@ U i R, L t O! ~ l 3 4E u w w K) + w 4] >' N 8 W 7 a d T , 8 Lw { B ? 49 w /L , e s W D R 4=] ? 0 U ? 4GW b ^I , GS U ?0 {k j P9Z0 \ 49 MYW ww < ] ? D 0 A 5 0 A 9u / QW ? 49 w 3L {3 N l D # ` G ; # ` GN]; K ,D U A ? b4 / 0 DS 5)$ / Q Q _ @ bS S 8 S ]U H 0 DE4& P l O5 1 ?% @T {k M FK ? = a [N F P /M 2 /8 H { DE4 n 2 ? H 0 G 8 U _ ] V X / 0 u iW ? ? c5]e CW ?b w v 2 @4 ? q #,? Q #, 0 BD F [ ? 5 a [N F P /8 ]U $ 3 #,?Q | v HX# ) 9 KS 5 $ 0 #,?Q d w v 2 @4 ? q #,? Q #, 0 BD ? ! # ` M; # ` Q ` t #] &F(_ ? 5 a [N F P /8 ] E [ DE4 SP 0 tt O \ 49 R 4=] j un 0 A 2L ]; # ` TQ o9: @ [ ^I xW ; \ W D U 0 {k (; { ] D oD ` {k U 5 L OTD3) i ( D oD ! 1 ` {k U {klM ? DE4 ^G ? 5 a [N F P /8 ]u L { DE4 K ? = a [N F P /M 2 /8 ]u $ 3L OTD3):El A 9q=L U ? x A( D oD ! 1 ` {k U ? 5 ; L*L Z=` s]# 8 @D U ? b 8 @ c ^I K Dt L [w I; ? S FC 49 S D BW 2 dg ^I K t L *> x s tt *+ X* .!F Swh h; s W D Kq t L [w 2tW ? {%MND , G U _0 {kl J i< l ,X 0 tU @ l O5 1 ?% @ 7)$ _ x p .! H]U ? w%MND , U _0 {kl ] I .! H]U w 5 m ? b4 / 0 D| [ B ? 7 @ l O5 1 ? 8 5)$ P l O5 1 ?% N4 {k M *.l t \ 49 R 4=] v * t \ 49 R D L {w &3Xs x \ 49 MOW | ? 4Gwh (a ]I Kqw L j ( 3 8C1 OH ? 3 ` # ` X 4E @ #,? Q ? E [ K ? = a [N F P /M 2 /8 ]U w 7 ; L:: ). 3^ U ? 8 p j l 5 o9 C= <X [w {k M ? ; Lz }Z ^I wW </ H G Q 0 5 x v HX# ) 9 uW $ 3 #,?Q x v HX# ) 9 wW $ 3 #,?Q ? H p B0D3u * (j l 5 o9 C= <X [w K {k M ? ; L jA = MW ? v R,CX HS D J C h l Q! D ? w%MND , U _0 {k f l O5 1 D OI Mw [ ]u S p 6 C TD4 ?9? U D= ? @ v Xc 4 Q!tU w 8 L 7 5 DD] p # 4 #uU E *+ *m D oD 4 ! 1 ` j R,? a [N F P ?H /M 2 /8 :+a^m D oD 4 ! 1 `? a n C=?Q $!i OTD3) < HX# ) 9 KS & p ? ! # ` H ; # ` [ U } } ? b4 K ? 4 BW { q/ y 8S U ?t #vB O\ o ? B p : , b ? M]e RT 0 t Z ^I |W [ | l / Q? 4] 25B 4 U ?( A( D oD ! 1 ` {kl U / 7 ; Lj q h \ ? q #,? Q Lp l D # ` E ; # ` GN]; K ,DTX2 ] ? D 0 A 5 0 A 9u / bG ? 3 ` , IP4 kZ 3_I U L [ Z a i l 5 o9 C= <X {w {klM ? ; L:J ;0 s 9 tU wGW ? ? c JZ 8 D / W ! |/ Q ? b4 K ? 8 a BW ? hq z ] D oD ` {kl U 7 L OTD3iiD ] D oD ` {kl- 7)0 #,?Q ? @ 3 {k i x RW ` ? H]e B ? uD 0 A 5 0 A 9u / v HX# ) 9 KS wW $ 3L OTD3Y x WW ,K H~Q ] @ s 4 uU b ] ? 49 5 0 A o9IW w @ 4Gw T , 8 R ))$ <[ ^I xW V f"\ ? / a ND zD0 tGw 7b ` 6 T , 8 , Bb c T , 8 /Nc {k M " ? S FC O {klM N70 d W DD wU a ? S FC O! T {klM 9> ? S FC 49 , BW (~ 36 ]I , U ?0 {kl : JM s]W D KQ0 {kl 6C DH3 @ w ? b4 K t8 T {k -tU R c ^I K t L {w . L / 0 {kl > } ? b4 / 0 h C q P 4 M? O 4 q #,? a ? E G & 2 X \ # CW ? v HX# ) 9 KS uW ? $ 3L OTD3 {p@ H 0 5q {%MND ]e ? C 3 {k M : L0 ^- 0 : ? C 3 {k M |O s W D K GSV0iw . 0 { 8 P L k RN ? AL? 4 6 0 A D ? C 3 {k M" ~ K0 ^- 0 : db d T , 8 K Mx { B ? C 3 {k M2 @ L0 ^- 0 : ? {kl *N [> \ ? q #,? Q #, 0 BD * r d \ 49 R ] v L W 6) 7A 7 4]u 8 1 { 8 P L k f.x t \ 49 R L {w , LEZ(? ` ] D oD ` {k U 5 L OTD3Y oq L TD d / , 5 R1~ _ 3 x \ 49 4e ? 49 qw 3L [3 l O5 1 ?% N4 ))$: zZ 3_I U L { j l 5 o9 C= <X [w {k M ? ; L 0nN \ 49 R 45] K X _ `JZ s W D R L [Ah 8VW & l O5 1 D ?8T w [ ]u C v HX# ) 9 KS uW $ 3L OTD3i# c s W D R 45]u a d 6 T , /MND 4 ] L ? 49 Q ]U d i 6 T , /MND BW nE X]e [5 .8MED 8 a Dt [p ^I vW b m u # ` G ; # ` GN]; K ,D ~ q1B 4 #u ) + l5 4 U J hP \ ? A!5 0 A 9] J ? = a [N F P /M 2 /8 ]U $ 3L OTD3i r ? AL? KS M; # ` Q ` (4 g s W D R 4e] ? 0 GC {#: @ Z ^I vW ? ` H ? tU wGW ?b e 6 T , /MND D ]U hg A ] D oD ` {k U {klM ? ; L: \ l o< /8MED 0 A # @\5 0 A o9 ON \ 49 R 45]e H 1 @d p _ l O5 1 D 8 U $ Na^~ sN\ Sw l O5 1 D / N4 {k -t K a } ? b4 / 0 4 Bb d T , 8 Lx { Bb v 2 @4 ? q #,? a ? E GN]; K ,D U _ A( D oD ! 1 ` {kl U ? 7 ; L N l D # ` M; # ` Q ` #, 0 BD] N: \ W D U 0 {k Ey8B 4 U ? E 7 \]e R,?" HStU \ ?I` .! H] E { ? S FC 4 $ } ? b4 / 0 4 c )!B U ?h. cf ^I K t L XP \ 49 G U L {w ? H 0!N , U ? 3h \ W D U /0 {kl- *u R, AL? ? L c un 0 A LG ; # ` G ?pS P # [p ^I vW ? @ U _ U qE XMW U ( cu R, AL? ? L? H 1 @d H3 W "0 KH#8 N s W D Ka t L f P l O5 1 D ?8T w*t 1: ? S FC 49 S x [ ] L ? cE] aA sm[ 2 ? q #,? a t #] ? ED\O J h \ / Q? DDW ? z%MND MOW a= T _ : d R, D 0 ! ?@$ "!N ? {%MND , G U _0iwX7D smG 0 #,? Q @ S < ! X s}W D R ]u v ZH#0 O@st l O5 1 D / N4 {kl-t K * ? z%MND MDW wwht k {%MND ] v @ d \ R0 {k Mv > X W DD wU m u # ` E ; # ` GN]; K ,DT(bD ] D oD ` {k U _ 5 L OTD3) k A ? AL? KS ]; # ` TQ 9 h -J smW ,E 3 {k Mv # ? S FC OI M X,D s]G 0 DQ D= S < !j q j l 5 o9 C= <X [w 3 {k M ? ; LF p l O5 1 D 4 BW ? (8 7q= Zd #X KH#8RW o ? P l O5 1 ?% N4 {k M R l < U ?h C,r P 4 M? O 4 q #,? a ? E [ 1& $ t F* z ? z%MND MDW wwh - @ u HT D 0( a s W D R 4 ]e v HX# ) 9 KS wW 5 ; Lf l O5 1 D OI M BW ?% yZp ^I |W `0 H NED , vN ? AL? 4 ; @D5 0 A 9 9Q]oP l 1 / @ ? O C #,? a ? E [ j , O 0@wh 2r P 4 M? O 4 q #,? q ($ A 90 U ?h >? ]I KQ0 {kl j {]` o D O! i ? S FC O! d 7)$ I Y{0 ? b g u # ` ]; # ` TQ 9 v ? ! # ` H ; # ` [NW ? U : 9q=L U MQm} 3N\ U ? z 'A u]- 0 7 dw(n %z y S 7 ? v 8 7 dw E 4B 4GW ?h s2 4]e nZ S#4 KH ] O(B 0 t P ]` o D 8 A x l O5 1 p Bb h T , /MND Dx [ ] B ? y%MND 4= H 1 @d 4 p< s W D K t L [w 2 g ? {%MND , G U ?0 {kl Zp ^I |W ? 49 Q ]U ` ? 3 ` , tU = 8 ] vG ? 5 a [N F P /8 ]u C { DE4 ? g X S ? v v R,D0 4E uU ]U U # Xq s 8FMwU ? f X S m ? H 1 c QW ? w%MND , U ?0 {k i l 5 o9 C= <X {w / {klM ? ; L `:( 3 8CQ u t 2 @4 1 /M 2 6 0 A D k R,? a [N F P ?H /M 2 /8 ? S FC K ( |o 2 n T H 4 @tU ? @ U _ [wU # ]` o D O-Nc @z ? 3 ` K ,D 4 8 Q < D- A( D oD ! 1 ` {kl U 7 ; L&i m ? b4 / 0 xJ . ` ? Q p 5 U /0 ( 8) D Q O ? 5"Q DD E ? t 8 R0 {klMv X \ _0H 7@ U ? 49 Q ]U t 2 @4 1 /- @ ! Q = j n 0 A d = @ 9JM1 } sN\OMw & | D /8MED 0 A S D M; # ` Q ` h 8 EW ? H ' Z x \ 49 R ] g ? H 7 ? S FC 49 SH3 z [ ]U h $ 9 U ? G ? = a [N F P /M 2 /8 B [ DE4 ' C L W < dwh e A( D oD ! 1 ` {kl U 7 ; L 0 l O5 1 D O! d BW (, u R, D c QW d e 6 T , 8 L KS Va & ` ? Q p 5 U ?06b # ? S FC 8 7)$& @ l O5 1 ?% @t 5)$ hN s W D K GSS0 {k .Y s W D R L {w f3 d \ 49 4e v F> d W DD wU ' _ d \ 49 R ] v y 4E n! /M B : s W D KQ 45]U ww KS : o0 \ 1 ? t #,? q ~ / D oD ! 1 ` {k - 5)1L OTD3 1C gA s W D R MOW ?0 {k , MW ? f 0 l O5 1 D / @d BW (qDt ] D oD ` {kl U 7 L OTD3 HX# ) 9 KS m" /M k{ 8 E /0 ? x%MND ,E wU a /M +9 & ] D oD ` {k U / 5 L OTD3 KS f 0 A O <D4! O@ v HX# ) 9 KS uW $ 3L OTD3 d l! U jYQo s 8F t w 3 x \ 49 MYW q mE D #,? Q ? E [NW ? U } ? b4 / 0 D h nA |%MND zW ?1 {k = & { R,?0 0 eC ? uD 0 A v 0 A PEAD #, 0 BD :X \ W D U 0 {kl h 6 ] D oD ` {k U wG [ DE4 J ? = a [N F P /M 2 /8 ] B { 0 #,?Q u 2 @4 1 /M 2 v 0 A PEAD | m ? b4 / 0 | [ B v HX# ) 9 KS wW $ 3L OTD3 n R, 8 , t Z J\ ^I |W w0 {k y } ? b4 / 0 B ? U {kl P \ l o< /8MED 0 A # @\5 0 A o9ZN! ~ M\OW ? OD $ {klMvU RG ? 5 a [N F P /8 ]U $ 3 #,?Q d c T , /MND L|*t ' , 3H 0h } # ` p MC, DT D= x v HX# ) 9 wW ? $ 3 #,?Q d} ? H a u v 2 @4 D LST #,? Q ? E [N U _ t % 4 #u wG ( xl l 5 o9 C= 4E @ <X {w # {klM ? DE4 =[4 |3 U R P ` ? ? .:P 3 8C U {kl v s>ET# : 3 ! U _ z@ Q P 4A y 8N U _h > s W D K u L {w ? H ? _ D] ] R jK 9= s}# BH DD] c } ? b4 K p ] B d ^I ,E uU k ? H H ] } ? b4 / 0 D z ( D oD ! 1 ` {k U {klM ? DE4 O c 8 ]U ? AW ? 49 w L [ <` / s , tU ;Y0 \ 49 MMW ww ? y U ? o ? 8 ? U {k s^, k0 l O5 1 p o +4 z 8 `3 {klMv ? S FC 4S 7)$ @ 3 DDAL gB ? b4 / 0 C 5)$ P}N s W D Ka t L [1k 3 8V3 `mO \ 49 R 4e]u ? 49 aw 3L {3z+ n D oD 4 ! 1 ` kqE"*B XMW U | } ? b4 K , ] ] ? b4 / 0 H3 {k M : ? S FC 49 S Dw*t V "< Xe E a 2 U _ J Y0 \ 49 MYW ww v & 4 #u wG [ 2 ` ? Q p 5 U 0 l O5 1 D O {kl-t &; \ W D U ?1 {kl= 5 T 09 !I] I v HX# ) 9 KS wW $ 3L OTD3 v # : \ ` G ? = a [N F P /M 2 /8 ]u B [ 0 #,?Q ? 0 Q *; o \ 1 qL6 0 A D H 1 KS 4 P +p ? z%MND MOW uw } ? 4 M? O OI M6 0 A D c p 2 @4 D LSD!5 0 A o9IW w u # ` M; # ` Q ` #, 0 BD]e * P ? Q p 590z;a o l D o 0 A ! Q D= c w u # ` M; # ` Q ` #, 0 BD]e C ? ? 5 a [N F P /8 B [ ; L \A @4X@D cE \ x @4X@D c5 Ya 3 8 U ? z ./ DD _ ZY ? \ V L 0 A 6 0 A D U ? w%MND , U ?0iwh g: s W D Kq t L [w b2dG ? {%MND , GS U ?0 {kl :lQ* > ]U ? 0 U ? > ` ? Q p 5 U 0Fy@ l O5 1 8 d 6)$ \p ^I |W `%` R,? ? ? B k m 0 A 4 N4 Q ; # ` G Y[8 |3H U # o( H , O\ Z #0 O@st 0 3 8F HH a ? c5 b e 6 T , 8 S D |7A u^I , MD wwh b ^I K G 10 {k i[ ^I vW ? Q ( # a d T , 8 R z [ B y v HX# ) 9 uW 7 L OTD3 < A } _0 3 !LN U w wU R - N+ 3 DDAL dW C n {%MND ] F`^ ? 5 a [N F P /8 ]e E [ DE4 Z #4 < /8 W r , 3 FQ m ? b4 / 0 Lw { B T ? OD $ {klM 6 4 W 6 & > 4 W 6 v d 4 W 6 Bd& ? uD 0 A 5 0 A 9 6 ? ! # ` ]; # ` TQ o9HW ? ? $ ? d ? a ? @ !Z P K ^- 0 LJ2 l O5 1 P B ))$&v ? @ U ? U l 2 @4 C S 0 Z| K ^- 0 LJJZ, H+ s P P B ESW ? ? ` b4 l O5 1 D O! U $ l O5 1 D _, 0 {k -t >p \ /QAE U 0 L ^- 0 LJ.ZK {p -8 a ] 4? TD$ ] A( D oD ! 1 ` {kl U / 7 ; LJ -N \ 49 R 4 ] c ^I Kq Dt L {w O,V $ & $ h \ G < DDW g mE D #,? Q ] . ? z%MND MOW ww j j |%MND zW 0) ? w%MND U L V \ ? A!5 0 A 9u / x v HX# ) 9 uW $ 3 #,?Q ? OD $ {klMvU / B/ | \ 49 vW uw fE(" 8 K N@ ? AL? S = c ? tGwh "o {%MND ]u N _ s 9 t ]u ; ? S FC 49 /Nc {k -t / . L \ K dwh o 1 G [ s v HX# ) 9 u d DE4 V , l G QNW {k U lC ? b4 K 8 t U _$ 3.8 JO ~ BDD !L ' zD0 tU w uW ? ? DTtU " ? S FC O {klM r3 x \ 49 MYW a i T , /MND x [ ] .8MED Ka t *-PX+ 3 DDAL dW ? hu /5 ]I , U _0 {kl s NS R 45]e >2`? ? {%MND , GS U _0 {k . n l 5 o9 C= 4E @ <X [w 3 {k M ? DE4 r* ? z%MND MDW uw(T o 1 G [ n 2 @4 1 /M 2 5 0 A o9 [ ^I |W ? H 0 8 8 ,vW ` ? S FC _, 0 ))$J H P ? v 8 < dw C ? b4 K ? 8 U $Zk _ @ BDD !L vM } ? b4 K 4 BW ? b4 K P B z*tU Cb H F P R, D ? a [N F P /8 U { ; L j C x l Q! DDW ` v 2 @4 ? Q #,? Q ? E GN]; K ,D U _ s A ] D oD ` {kl U {k M ? ; L L l D # ` M; # ` Q ` #, 0 BD]e ^Z N#0 KHst : i l 5 o9 C= <X {w {klM ? ; L: \ ^I vW [ #8 O 0@W k m 0 A 4 N4 Q ; # ` [ bKp ? = a [N F P /M 2 /8 ]e I { 0 #,?Q d ? H D /DcLGW ? H ! /8 1 4 g ^I K GSV0 {k * l l 5 o9 C= 4E @ <X {w wG [ 0 #,?Q v HX# ) 9 KS uW w 7 ; L E @ 3 DDAL d h A (A u]- 0 8 dw = ! ] D oD ` {k U ? 5 L OTD3 h m ? b4 K ? L| { ] H e ? 0F 0 l O5 1 4 8 EW w ? 4GW H ! c 8 H W < ` ` 6 T , 8 L B j mE D DQ = U t x .K ^- 0 L { & : H W < ? B M H W < $b ? B M ~ H H W < d ? 7 ! / z 8 3 {k M2 O l D /MND 4EG ; # ` [N U AXl l 5 o9 C= 4E @ <X {w K {klM ? DE4 *h \ TD4 MMW H 1 KS 4 _8 L A\f sM 0 - z 8 3 {k MJz iL ^- 0 L { ~R P 4 0 {@ l O5 1 t8 t 6)$ +L ^- 0 L { $ | 0 zN ? AL? 4 ; @Dv 0 A PEAD e T , 8 /Nc zJ 9+h \ TD4 MMW v HX# ) 9 KS uW $ 3L OTD3 ` } ? b4 K p BW ~ A s # ` a D= @ 9 , yn l 5 o9 C= 4E @ <X [wU R { 0 #,?Q d u # ` H ; # ` GNW ?b c T , 8 {k M ~V >"0 / aw Z8 , m HFD 4EW ? c Ow( @ D9? H I t ? U _ 5 { T , /MND 4 #R D t J= P ? Q p 5 0 + M* .!F ` b v T , 8 # 7)$ + N* .!F Sa e 6 T , 8 S D ( B5= ^I ,E tU v ? G \ S D o ? ]I Kaw L .]p o D OI M? H 1 @d t8 Z< o l D o 0 A ! Q = H 1 @d t8 }XP \ 49 G U L {w Z ? H 0 8 8 ,]e C * ? uD 0 A 5 0 A 9] U[8 |3 U # b R, D 0 ! N a ihP ? % zY z s 8F t w N ? AL? S = ? DTt O l D /MND 4EE ; # ` [N U _ ~ i6 ]I , U ?0 {kl >O s W D Ka t L ** l l 5 o9 C= 4E @ <X {w 3 {klM ? DE4 &W "$ ? b h \ R L [ ? E SW ? H c /8 R j l 5 o9 C= <X [wU B { DE4 Ni P ? Q p 5 0 \ 3 8VT >j l 5 o9 C= <X [w O {k M ? ; L sM MQ 1 e}# c , o : ` M \ 49 R 4 ] a d T , 8 Lw k B ? 49 Q ]U u v HX# ) 9 KS uW 7 ; L [ H 3^0 U ? jS V c J[A 8 O\ W ` q=] C [wU #J p O \ 49 R 4e] a ? S FC 8 q 9 h s W D R 4e]u v HX# ) 9 KS wW $ 3L OTD3 /B ? b4 / 0 p Q 6)$zK | -8RW ? ? ? 4 ? d ? O 4S i0 "1A z 8 3)yh 5,A z 8 3) T , 8 R ))$ 0 K ^- 0 LJ& L ^- 0 LJ. p L ^- 0 LJ2 " 8 8 O rK ? = a [N F P /M 2 /8 ]U $ 3L OTD3 %;Bc e <D ] D oD ` {k U / 5 L OTD3i /.A z 8 3))i: 1A z 8 3)9 / f s W D R 4=] ? OD $ {klMvU K P 3 PtU {k }0 l O5 1 ? 4 ? b4 K ? 4S U ' G ? 5 a [N F P /8 ]u $ 3 #,?Q d m 39 S >9 : X s W D R 4 ] v VP^", |/ U ? *Dw R, P 7HCH = x 3 U ?h E$b 2 U _ 6? s>ET#tU N s W D K G S0 {kl v? s>ET#tU : N \ 49 R 4=] ? w%MND U L @ l O5 1 ?% @ 6)$z O \ 49 R 4e]e ? 49 Q ]U w ? z%MND MDW ? {%MND , G U ?0iw . qf ^I K G 30 {kl J= 8 ] ? OD $ {klMvU O *' K L W 7 dw ? ]I K w L {w Q> ? S FC 49 , ]e Cb e v T , /MND t8 BW 2B ? b4 / 0 t8 d 5)$ lj0 l 5 o9 C= <X [ {k M L OTD3 % f{ _8 L 4EHc I o! t 7 4 v HX# ) 9 KS wW $ 3L OTD3 * ~e s W D R 4=]u ? 4 v HX# ) 9 KS uW ? 7 ; L*:!o l 1 / @ D #,? Q @ ? B M] Z #( O 0 ? 0 PX DSW ? 5) e .3 z 8 `3 {klM I!]{ ? 0 h, z 8 `3 {klM * PI s^D 0uG [w ? S FC Ka 7)$zm J ^- 0 L [ > ( H W 6 d ? 5y ; 12 z 8 `3 {klM.z K ^- 0 L [ NO ? AL? [ 0 6 0 A D ? qM@1 Qwt B ? vD 0 APH ; # ` GN]; K ,D U h D oD ! 1 ` {kl] 7Y0L OTD3 e- z 8 `3 {klMJz ML ^- 0 L [ >S ; 0 Q!t z< x l D o 0 A ! Q = c ? $ ^K ? = a [N F P /M 2 /8 I { DE4 RD t \ L 8 uU : ? S FC 49 S Dx { ] G ? 3 ] E &\a s} H 3 ]e FS0? 4 Q!tU .2 ; x \ 49 45 a u v 2 @4 D LST #,? a ? E [N U _ B 9 s W D KQ 45]U wwh% / R, H ? 2 _ ? |%MND ,E tU ? 3 v I[4 |3 U 3t ? |%MND ,E uU a j v T , /MND t8 d U ?% _ i ` .! H] C { i> ? S FC 49 , ] C ? @ U ] ? ! # ` E ; # ` [ U _ E<8B 4 2 * : tU / s NS R 4=]e 6 \ W D U _0 {kl] 6*A ]- 0 , dw .8MED Ka t & P l O5 1 P B {k M R4 H U ? 4 t ? 49 w #L C ? b4 K ?% @t U $ , }n l 5 o9 C= 4E @ <X [w O {k M ? DE4 ! |3H ,f 0 l O5 1 4 o 1 G [ ? # ] OH7 < ` 4 $ i v @ 9q=L U _( ?a 5^I KQ ]U ? 49 Q ]U ? ? ! # ` M; # ` Q ` t #] 'hj x \ 49 R ]u a d 6 T , /MND ] E x v HX# ) 9 uW $ 3 #,?Q ? #=HW ` ? H 7@ #M U ? ) :e ^I K t L j >i l 5 o9 C= <X {w O {klM ? ; L yO \ 49 R 4e] k # ` b = @ 9] vJ4+ ? = a [N F P /M 2 /8 ] K [ 0 #,?Q ? 0 0uU / @ N@ \ 49 R MDW ?0 {kl j[0 H 3 4 @ 3 DDAL } ? b4 / 0 D X8 7 4 ? {%MND G U L > 9 ] # c s W D R 45] ? ED\O "fo ] ? b4 / 0 H3 ))$ Zp ^I |W w ? c ? c O ? 49 w w a c T , 8 {k M O 2 4 # ]u jC 3 ? uD 0 A v 0 A PEAD l O5 1 D O! U $ Z iH MDEW ? z%MND MOW ? u 8 LJv +h \ TD4 MOW H 1 @d m ? 4 M , G U _ vA R, AL? , ok! vA R, AL? , ~ f(A u]- 0 < dwh A")A ]- 0 dwh d6B R, 4D @ e+! vA R, AL? , +1 r u HT D CW w ? O ` S D _ < x | D o 0 A c ! Q = v HX# ) 9 KS wW ? $ 3L OTD3i v: s W D K t L [w [t #l G@c D @ ,U " x 8CW v] 3^0 U _ ? 3 ` K ?0M a D= U D [N U z)1 l l 5 o9 C= 4E @ <X {w {klM ? DE4 I ? 3 ` K ?0M b D= @ o9IW ? ? H p B0D3u [ ^I vW ZFHj ? 5 a [N F P /8 ] L [ DE4 L / / a[ ) ? A R,?0 ? 0 b 4 ! 80 MW s v HX# ) 9 w d DE4 V 4 / Q ]e W #X KH#8RW ? t j M 8F CX ? @E D m R! U _ )> ? S FC 49 , BW u 8 8RW b ^I , GS U _0 {kl j P X0 \ 49 MMW uw k 2'B R, X?1 ], 0).Eg H] a ? S FC _, 0 {k M V< "` ? A _ 8 o =8SW : -l l 5 o9 C= 4E @ <X {w {klM ? DE4 K ? = a [N F P /M 2 /8 ]u G { 0 #,?Q q ? H jlqo A 1P ? ESW ? {%MND , G U _0iw ] ? b4 / 0 H3 {k M ~ 8 /DcLGW ? c ] E 4 KH ] Z D \ \ 8 !M U ? ? a ^I K G Q0 {k J>p 9 3 8F U _ } ? b4 / 0 4 } @ 8 8RW wh> b t *? ky D e 9"5@ @ l O5 1 D O U $ J { s o 8 u J; o@ \ 1 qL5 0 A 9 M s W D K Dt L V. (p ; ] D oD ` {kl U 7 L OTD3 ,b ^I Kq Dt L <@ / s^D tU {k U 7 x RW ? J f O@s f8 3^ U ? C p |%MND zW ?0 ? C 3) ( J \ ` < / s~` 3uU x 7 2 @4 1 9 /M 2 6 0 A D ? u 8 L k ? H3 QW l O5 1 D 4 ] H c ^I K Dt L {w ' ? S FC 49 R {k -t wG ? v 8 R : dw 4 ? b4 / 0 t8 T {klM F `b KP4 s NS R MMW ? ESa ? 4 M ,E tU )# ? S FC OI Mw [ B ? u 8 R L { H 1 @d C Y l D /MND 4EH ; # ` [N U # w R, AL? P B >B { \ , k# w R, AL? P B J* { ? z%MND MDW wwh * { 8 P L { | l O5 1 8 hj 3 { 8 P L { F L W 7Y uC ? b4 K t8 d U /% ,L0 ^- 0 : ? C 3 {k M" ~ K0 ^- 0 : d ? 49 w w v H W 7 ? C 3 {k M2 0 L ^- 0 L [ N F Q! x K ^- 0 L [ ? S FC Kq 7)$ mp J ^- 0 L [ + ? {%MND G U L [w 0 q= " L ^- 0 L [ \ H W 7 $c c T , 8 SH3 {k M . t \ 49 R 4e] v L W 7)), t <" H LDW ? 5yh,A <" H LDW a ? \ ? v 8 7 dwh k- z 8 p3 {klMJ NL ^- 0 L [ & * L W 7 h h. z 8 p3 {klM& 0kL0 ^- 0 : ? z%MND MYW b ^I , G U _0 {k xX0 \ 49 MDW ww 7 `] V X / 0 u iW ? ? DT 3 x \ 49 MYW c ^I K t L [w .P | \ 49 vW uw g m ? b4 K ? Lw { ]u H ? 49 qw w a i 6 T , /MND 4 BW ? .q |%MND zW L {w , | U / d M ? AL? G KS D ; # ` [ B & ? vD 0 APH ; # ` G b i 6 T , /MND 4 BW ? : u ] D oD ` {k U 5 L OTD3 ? b4 K ?% @ BW q n o,N , S 1%J li l 5 o9 C= <X {w ' {klM ? ; L M \ 49 R 4 ]e q u # ` E ; # ` GN]; K ,D U _ .8MED K u s NS R 4e] C ? uD 0 A 5 0 A 9u / QW ? ? 4 t ? U {k j+ y* s 4 ] Y X / 0 uU iW ?b h T , /MND Dw { ]u B y v HX# ) 9 wW 5 L OTD3i*Dd _8 L 4EHc 1 AL , a d T , 8 K M| { B ? x%MND ,E wU v 2Gh ? 5 a [N F P /8 ] E { DE4 &R 4 tU 5C ? vD 0 AP M; # ` Q ` #, 0 BD]e & ? S FC ?8T w { B ? w 8 7 p l O5 1 D 4 BW ? k o ] D oD ` {kl U 7 L OTD3 4 x 4SW H 0 * @ M \ 49 R zW ?0 {k L N| 3.8 U ? m x 4SW ? <HW ? tU T \ _0H 7@ U ? %m l D ?8T D 3h @ < MW 3^0 U yP l O5 1 8 T {k M R2 C x \ 49 MMW a c T , 8 /Nc {k M BS\> 0 Q!t Y L s 8F t P 8 m! ^ 0E 35D ! m ? S FC 4 B ? H c ] V X 8 W ? C 3)9 D? s # ` A 1 #,? q h A?- { 8 P LJ Z KL ^- 0 : $ 8 W $ ? C 3) T , 8 K MvJ v"d 8 W $ ? E SW ? C 3) Q o 5 C C G M 7 D \ t 8C ND 3 ? S FC 49 {kl-t 6 8 W ? H 7@ #M U :<a o | D o 0 A /M 2 6 0 A D ? 7 zJ 9< 3> U _ } ? b4 / 0 D ? b QW v #*< o | D o 0 A c ! a = @ o9: @ Z ^I wW 6 T P \ Ka3) [@ H 3^0 U ? 49 Q ]U a d T , 8 L| { Bb k 6 T , /MND BW # " 8 W ? 0 G] E [wU #j oi0 l 5 o9 C= <X { {klM L OTD3it & ] D oD ` {kl U 7 L OTD3) 5 A( D oD ! 1 ` {k U / 5 ; L: X s}W D R ] a f v T , /MND p Q BW $Z A=i l 5 o9 C= <X {w O {klM ? ; LZ hZp ^I xW ? 49 w LZ ?+A z 8 3)) n 3A z 8 3)9 9-A z 8 3)Yh$ A 90 U ? 0 (1A z 8 3)y <,A z 8 3) 3/A z 8 3) d "3A z 8 3) & 00A z 8 3) 7a ]I K w L * p=\ ^I vW w0 {k \i l 5 o9 C= <X {wU H [ DE4 ~W "X G QNW iW ? ? ? | v HX# ) 9 KS 0 #,?Q v HX# ) 9 KS wW ? $ 3L OTD3 7 8q=vW ` a v T , 8 ,D v e5 ]I , U _0 {kl ZY l s 8F t w G` ? = a [N F P /M 2 /8 G [ DE4 ? uD 0 A 5 0 A 9u / QW c ^I K u L {w >7h \ W D U /1 {kl- 1D s]G 0 Q = S < u # h -!MW ? 8 tH tU ; .` s^D 0uU wG { fJ ' ? = a [N F P /M 2 /8 K [ DE4 ? S FC / N4 {klM ~: H W D U 0) ? 4]u F ? 5 a [N F P /8 ] B { DE4 W "@ L D , hqz .! H]u C Fl0 l O5 1 p C9nA |%MND zW 0 {k } m ? b4 / 0 H3 z k B | v HX# ) 9 KS 0 #,?Q b ^I , GS U _0 {k Z Y0 \ 49 MYW ww A( D oD ! 1 ` {k U 5 ; L L | OD c ] ? b4 / 0 H3 {k M S ( ` ? 7"- $ LD U ? 49 w L { lam s t P / / Q ? M O} sN\OMw [p H .! H]e E | l O5 1 t8 T ))$ @kY0 \ 49 MOW uwh 4 si 8 A 1P 8MW ) + u R, D c QW k # ` b D= @ 9]e R D ` Zh \ G < DDW ? 49 w KL {K i l 5 o9 C= <X {wU E [ DE4 .+ ? z%MND MMW uwh& }d s W D R 45]u a d T , 8 Lv [ B ? z%MND , MO uw 7 7 \]u v HX# ) 9 KS wW $ 3L OTD3 />A ^I , GS U _0iw Bc= s W D Ka u L [w . t \ 49 R L [w 2 O ? |%MND ,E tU a u 2 @4 TD4 ?9?% N4 #,? a y . DD F ? 5 a [N F P /8 ]U $ 3 #,?Q x v HX# ) 9 wW $ 3 #,?Q v HX# ) 9 KS wW w 5 ; LZ ! j l 5 o9 C= <X [w wG { DE4 Z {#, ` ek trA R, 4E 3B ? b4 / 0 t8 5)$Z^ D <?2 Q v HX# ) 9 KS uW $ 3L OTD3 o 4 ] D oD ` {kl U 7 L OTD3i o {%MND ]e . s>ET#t ( ? t ? H U \`LI` .! H] E { B @ p l / 0 S ": 3^0 ? z%MND MYW s v HX# ) 9 5 $ DE4 N ? AL? c = @ 9*> n9 m 8F ,EW q mE D #,? a ? E [NW ? U * z 8 3 {klM L ^- 0 L [ P H W 8 d h # ` b D= U D G b c T , 8 R {k M V L # DD ] x+ z 8 3 {klM":} K ^- 0 L [ 6O ? AL? [ 0 5 0 A 9: L ^- 0 L [ ? S FC O! t 6)$ \` o D O H W 8 $ ? {%MND , GS U _0iw ( h0 z 8 3 {klM z \K ^- 0 L [ .# H W 8 v HX# ) 9 KS uW ? $ 3L OTD3 C m {%MND ] ? > X S D? H 1 @d p k| 5 @ 8 Ew uwh M # ` ? E KHF #,? Q ? E G @ H G 35] EW ?b ? H DT ?q= /8 U ? Dx ? AL? KS M; # ` Q ` h y U _ ] & ? S FC 8 7)$ : MW ? (r 4 { 8 P L { a ` 6 T , 8 S D B x v HX# ) 9 wW $ 3 #,?Q l R,? a [N F P /E /M 2 /8 6 k mE D #,? q t #] " 7 ? H B M 4 G @ 4C: p {%MND ] \` o D O J ? = a [N F P /M 2 /8 ]U $ 3L OTD3): | s]G 0 a = @ 9u / QW H DT ?q= _ v q \ ? q #,? a ? E GN]; K ,D U X7A y 8N U _ 4C gA s W D R MYW _0 {kl l O5 1 D OI Mx [ ] S v HX# ) 9 KS uW $ 3L OTD3) b s W D R 4 ] u v HX# ) 9 uw 7 L OTD3i Cwn |%MND zW 0 ` 5_I KQ 4=]U ? , C tU 8 -o M /A B4 tt f l O5 1 D Ka U .H ? z%MND MOW ww ? o b " l O5 1 D O z [ ]U 0C f s W D R 4=]e o n 0 A 4 0 =D ; # ` G 7 ? S FC 49 SH3 {k -t ' JC$2 ? uD 0 A 6 0 A D U hx .l {%MND ]u Jz /X s}W D R ]u ? t 3 s & ? S FC ?8T x { B ? #= ? 49 w L { :,0 +0 s tU wGW ?b ? S FC / N4 ))$ } ? b4 / 0 p B ? 0 G] ] 7 ? S FC 49 K Mx*t K J ? = a [N F P /M 2 /8 ] B { 0 #,?Q y v HX# ) 9 wW / 5 L OTD3 C ? b4 K ?% N4 U ?% \ < ` v 8 ? c OW `+ H c ? Z` Hp MD ` a 6 R, 0 ? 5 U ? e |u 7 J / ? = a [N F P /M 2 /8 ]U ? $ 3L OTD3 @+ @ 1 G [ ] rD ] D oD ` {kl U _ 7 L OTD3 x 5 ]I , U _0 {k z Z 3_I U #L [# ? m HFD 4EW ` a 2 @4 C O 0 eA ] ? 49 !6 0 A D t # ]p o D O-Nc ? 4 U ?hyC;l {%MND ] J \p:I` .! H]e E { v*( ? z%MND MDW uw 2 <g ^I K t L s 4 C: 6 ? S FC 49 Lv { ]e E ,X 0 J @ X0 \ 49 MDW uw C%p {%MND ] >K4 ? = a [N F P /M 2 /8 ] S { 0 #,?Q d ^I ,E DtU a ? 0 0- v HX# ) 9 KS wW 5 ; L u s O, C4 ` h T , /MND Lv [ ]e I ? 4GW ? w%MND , U _0iwha i {%MND ]e ( \) s 9 t ? cE]u +h $ A ] D oD ` {k U {klM ? ; L ] 3 8V U _ ( / q= W ? 8 tH ? , C P | D /8MED 0 A S DS ; # ` [ " ? S FC O-Nc {k M D d \ K 3 {klMv MST \ TD4 4 3 \ W D U /0 {kl- fC } ? b4 K ? L BW $ j0jJ smW K 3 {k Mv B ? uD 0 A 5 0 A 9u / QW ? ? 49 w OL [O 0 l O5 1 4 mE ( R, 3 ?Q _ l O5 1 D 8 a U $f ` l O5 1 D KQ U wG ? U ? 5 % 5 L ?0 {kl & W, "D ? t ] F < P \ K 3) :a op \ 1 ? M; # ` Q ` h u9 s W D K t L [w BG ? 5 a [N F P /8 ]e K { DE4 6l d W DD wU j / l / 0 uU {k U ( D ? AL? KS M; # ` Q ` . H c un 0 A 2LG ; # ` [ > $B t Zp ^I wW ? ? L PEAD ( E /8 H 1P 1 v HX# ) 9 KS wW ? 5 ; L \p ^I xW ` d T , 8 K Mw [ Bb j v T , /MND C U ?$ O! ~ HH D >NT ? AL? Q ` d M; # ` Q ` = ] ? 49 v 0 A PEAD $] ' f x \ 49 R ] ? u%MND a c T , 8 {k M 7 ? S FC 49 Lw*t ? ! # ` M; # ` Q ` t #] ? H R! NDtU ? H BD ? ED] 7 H W D U 0ib b v T , 8 # 6)$& P l O5 1 ?% N4 {k M J ? = a [N F P /M 2 /8 ]u S [ 0 #,?Q ? 49 qw L { @ [p ^I xW ? y%MND 45 a ? S FC O! d h 90 U ? ZC 2 ? uD 0 A 6 0 A D U i ] D oD ` {kl U / 7 L OTD3Y5A( ] ? D 0 A 6 0 A D S < u JpL< 3> U ` DL P P NQH d v 2 @4 ? Q #,? a ? E GN]; K ,D U # ` p MC, L ?a Q = ? z%MND MDW a ? t :, ^n l 5 o9 C= 4E @ <X [w {k M ? DE4 )7 ? S FC 49 L ]U hoD( ] D oD ` {kl 7 0 #,?Q ? 49 qw KL {K hP \ ? A!5 0 A 9]e A 4 G ] 8 7 5 DD ? 49 w 'L } ? b4 / 0 a s W D R 4 ] g mE D Q D= t w : D KH#8RW V6 \ W D U 0 {kl (: h s W D R 4e] c un 0 A 2LG ; # ` G " ? S FC O z [ B ? 4 t b ^I , GS U ?0 {k P:M ^- 0 LJv A7 ? S FC 49 K Mx [ ] R ? @\OW w :N } M\OW ? ] # ? S FC O zJ F ? 5 a [N F P /8 ]e H { DE4 + ? {%MND G U L [w + ( < ? 0 U ?( r : ! ~0 l O5 1 ? 4 @ 7 \] 2 s]G 0 b D= @ 9u / QW ? ? 0 U O ? \ V L 0 A v 0 A PEAD ] ? 8 tH CW ` 5_I KQ 4=]U a ? 4 j h( s } , puGw ~ }D0 D4 j 0 M ` A4 f @ l O5 1 ?% @ 5)$ O \ 49 R 4e]u ? v}` 3 %L C:(+ e s W D R 4=] c ^I Ka u L [w V xW $ Q!t ( D L] t l O5 1 ? L|J $ G P @ q=C [#z\ 0 3 8V U ]U ? ? ] 9p - s OD _, 0uU j< x/ s^D tU wG [wU #: j\@ s /! 0 T , 8 S DxJ ~6 \ W D U 0 {k ,;A ^I , GS U ?0iw(/ <"5N KW ? 0uW ? 8 ,] z t $ # G, ? = a [N F P /M 2 /8 ]u G [ 0 #,?Q ? 4E ? 5 \h ? 2 C5 6 ? S FC 49 # t BW ? (' R,?0 0 ? a d c T , 8 R {k M CxF ? 5 a [N F P /8 ]e G [ DE4 )" ? S FC O-Nc z { B ? 49 Q ]U u ? z%MND MMW ? {%MND , GS U ?0iw A 9 ! U ?hz 5 s}W D KQ ]U ww(. ;f ^I K t L _qk .! H]U W #\ KH#8RW ? 5 + @ 90 U ( s 4 V/ h \ 49 ? 4EW ? 4EW ? DTtU Z _ s^D {k 48A u^I , M uw @; b QW w wW ? H # D @ [p ^I wW ? 8 0h @l u R, d Sa t u # ` ]; # ` TQ 9u / x v HX# ) 9 uW $ 3 #,?Q ? 4] a e 6 T , 8 , y R,? 8 mwU X l D /MND 4E R D= t ' (( 3 8C1 ` k 6 T , /MND BW 0 #R D 8[ 3_I U 'L {' *`=* 3 H 1 R x MW j^ I | D o / 8 ,HF 8 #, 0 BD [ oHp _0 H /8 a d T , 8 S w { B c un 0 A 2LG ; # ` [ : H W D U 0 ? w%MND , U _0 {kl Z [p ^I wW d ? H] 3H \ W D U /0 {kl- @. 8 8RW ? U {k n l O5 1 ? L| { Bb1 H C ? B < m ? b4 / 0 w [ B s v HX# ) 9 7 $ DE4 ;( P W DD wU . O s W D KQ 4e]U ? 0 G] vU #JH Hz 3 L@3h D D oD ! 1 ` {kl- 7)0L OTD3 5 R, 4D @ Z! p 8 O\ ND ? ? 49 aw KL [KZ s ? 2 D 0(q {@ 9 8FP C ? b4 K ?% @d U $z Y0 \ 49 MYW ww C>p {%MND ]u Olv < ] +l v A ] D oD ` {kl U {k M ? ; L*iA ` /8 G @ W T \ D /! H ? S FC / N4 {klM x l O5 1 ? 4 Bb f v T , 8 ,D 7)$ s~` 3 fZlR#4 KH ]e 3 ? S FC 49 z [ ]U h1Au M L] Z* ~ t \ 49 R 4 ]e v W < K U _ ' 9 8F U K! | -8RW ?h D oD ! 1 ` {kl- 7)1L OTD3 m ? b4 / 0 Dx k B OD0 a~ ,( 3 8C1 ? ct ZA 8FW ? x WW <X \ 49 U L {w *C . ? uD 0 A 6 0 A D U & { _8 L 4EHc I 8 R D ? 49 aw L { zh ,J s]W , 6 [p ^I wW ? Aw n ? b4 / 0 C q hx !. zD0 tU ]U ?b j v T , /MND t8 U ?% * z 8 `3 {k M @ L ^- 0 L k V w"h ? / a ND ? 6YX6 ] ? D 0 A 5 0 A 9u / QW ? 6y + z 8 `3 {k M" M l D # ` E ; # ` GN]; K ,D U . z 8 `3 {k M&: L ^- 0 L k ." H W 6 $ c ^I K t L [w ^+ ` \ 49 R L [p ^I |W u n mE D #,? Q @ t ' ~0 l O5 1 ? 4 r@ 90 Q z 8 BW ? 69 - z 8 `3 {k MJ H z s L@s Z P Zp ^I vW j u # ` M; # ` Q ` t #: p[N \ 49 R 45] c ^I Kq t L [w F@ ? 5 a [N F P /8 ]e B { DE4 ? S FC _, 0 {klM )+h \ TD4 MMW H 1 @d .8MED Kq t Zi , 3.! U ?(i@*x y 4 6. t \ 49 R L [w . 8b ? uD 0 A 6 0 A D S < u 8 RW ? ? 8Swt B2 ? ? |%MND ,E tU a ? @ uU / Z s W D R L [w %C ? uD 0 A 6 0 A D S < u # [ vk9 8 . ? {%MND GS U L {w a ? S FC 4 n ] D oD ` {kl U ? 7 L OTD3im o(B X]e + A( D oD ! 1 ` {kl U 7 ; LFM MW ? iP l 5 o9 C= <X {wG [ DE4 V j"` ? / a 5 @ :K { s o 8 uU , | U ( D A 8 8RW ? m x 4 ` i T , /MND v { ]e Xh x 4Sa k v T , /MND p Q U b c | Q z 8j0 l 5 o9 C= <X [O {k MNL OTD3 4 A( D oD ! 1 ` {kl U 7 ; L p.[p ^I |W w ? 49 Q ]U [ #8 O 0@W ` ? S FC / N4 ))$vZ s 4 ]e @ LE [ : N s W D K t L zi`JJ s]W K 5 z9 , 3.8 U _ % T , 8 S vJ B'\O 8 W 8 v HX# ) 9 KS uW $ 3L OTD3) A s # ` a = @ 9Z 8O \ 49 R 4=] H 1 @d o+" 1w R, AL? 8 ]` o D _, 0 "SL" 4 ]u + t \ 49 R 45]u v d \ Ka3 {k Mv lF X KH#8RW o d T , /MND w*t wG H 1 @d k< ] D oD ` {k U / 5 L OTD3 $C+d ^I Ka t L :L [=` s]# 8 @D U _ 2Z\6#L KHs 1P 1 a s W D R 4 ] ? 49 w L [ XP \ 49 G U L [w BZ >#x KHs %L j u # ` M; # ` Q ` t #J>a x s tt N \ 49 R 4=]u c ^I Ka t L {w J ? = a [N F P /M 2 /8 ]e B { 0 #,?Q d u # ` G ; # ` GNW ?b c T , 8 R {k M A> ? S FC 49 , BW X; ] ? D 0 A 5 0 A 9u / QW a c T , 8 SH3 {klM v 4 #R 4 Dt ? 3 ` G 0 Q = S < u # KA s] 8 U x g' 4 #uU o o v 2 @4 D LST #,? q $] / | \ 49 wW ww 1 H U {P l O5 1 t8 T {k M f p h \ R L [ ? ED\OW w wW ?b i T , /MND H3 z { ]U ? ( 7 4GW q m 0 A 4 N4 M; # ` Q ` (k@ x y T w b ^I , G U ?0 {kl F @ l O5 1 D K BW w$ @/( 3 8CQ S D #R D tU w : 3 ? H B M 4 G @ 4] C J: +. 3^ U _ BB ~ ` , _ 0 l O5 1 D 8 BW ( A( D oD ! 1 ` {k U 5 ; L - s O, C4SW l ? H s v HX# ) 9 7 $ DE4 "V 4 / Q ]u .* s ? z%MND MDW uw ma s W D R 4 ]e p 6 C TD4 ?9? U = ? {%MND GS U L & l O5 1 D _, 0 {kl-t Fd ? 5 a [N F P /8 ] R { DE4 ; \ W D U ?0 {kl= < }C\ PLD U _ S ? H ? _ D] ] R Zp ^I xW w ? LMW ?tU ? S FC / N4 {k M K0 ? = a [N F P /M 2 /8 ]U $ 3L OTD3 ! 80 MW ? {%MND GS U L i h p = ? H 0 L] ^ 8 @ 3 ? w 8 6 P l O5 1 P B {k M *J` ? = a [N F P /M 2 /8 ] H [ 0 #,?Q d ? 8Qw + k u R, d SW a c T , 8 {k M ^R @ 3 ? f @ l O5 1 ? 8 7)$&p [ vk9 8 a ? H] a e 6 T , 8 L C}n {%MND ]e ; ? S FC 49 /Nc {kl-t / 9 x l O5 1 p B ? ` b4] *I =; sY @\ /= KW U yni ? @E D m R! Q j- n l 5 o9 C= 4E @ <X [wU H { 0 #,?Q ? 0 U ? = m ? b4 / 0 x [ Bb O H 0 0 BD? ,HFD:* /*P s}# BH DD P l O5 1 D OI Mv*t O C R ? 5 a [N F P /8 ]U $ 3 #,?Q l R,? a [N F P ?H /M 2 /8 6 ? w%MND , U ?0 {kl NAo~ 4 a 8 d i 6 T , /MND D BW k A( D oD ! 1 ` {k U _ 5 ; LV \ ? A!6 0 A D S < u # -M0 ^- 0 L k ? H 1 c QW y v HX# ) 9 wW w 5 L OTD3 x ? b4 K t8 t BW i % ] !N0 @ u ZX ? \ V L 0 A 5 0 A o9] HW w v x RW 4 ND vmk 8p {%MND ]e "W< "D ? t ]u J D #R 4 DtU w A x l O5 1 , Bb a v T , 8 S DS v ,B zD0 C ( D oD ! 1 ` {kl U {k M ? DE4 ? S FC / @T {klM 2 @ L] M smW D Kaw L {w 0 ( # ? 3 ] C [ i ? S FC _, 0 {k M f' S x \ 49 R ] ? u%MND ? 49 aw OL: |D A( D oD ! 1 ` {k U / 5 ; Lf, m ? P B ESW i un 0 A 2L M; # ` Q ` (e ! U {N s W D K GSS0iw ( %eA ^I K GS30iw C ? b4 K ? 8 U $ [p ^I vW v HX# ) 9 KS uW / 7 ; Lj M smW D K w L *jQ = MW ? y%MND 45 ? z%MND , M uwXt 2 @4 Zl` J ^- 0 L k &4; H W 7 d ^I ,E tU ? 6Yhw & 4 #uG {w Z ? H @ 3 !LN U U / v #:i >J@ s]W , dwh A + z 8 p3 {k M" IP^;0 l G Q H W 09QW w W U haB 2 z 8 p3 {k M.Z~ K ^- 0 L k j ? H @ 3 !LN U U / v # K ^- 0 L k y ? H @ 3 !LN U U / vU #Z /L ^- 0 L k H W 7 ? 69 o@ 1 G [ e m ? b4 K ? L| [ ] H e 5_I KQ 4=]U uwhf %" ` ? t # s v R,D0 4E u w w K) ] y; ? S FC 49 S D ] S ? 49 w /L h D A( D oD ! 1 ` {k U ? 5 ; L @ l O5 1 ?% @d 7)$f P l O5 1 D O! T U ' ? S FC O! T {k M N8 ? AL? 4 ; @D6 0 A D ? cu o c T , 8 {klM UB, R1~ D3 m ? b4 / 0 H3 z [ B c ^I K u L {w . ` \ 49 R L & @ l O5 1 4F 7)$*Z! D / K > d W D U L [w i ? S FC 4 1 T , 8 S D|J .[ &8 / q=]e ? v%MND , p 6 C TD4 ?9? U = h mE D R = U o H < @ * ? z%MND MMW ww & T , 8 S xJ , 8 8~ 2 U ?tU # s NS R 4=]u +h \ TD4 MOW a h T , /MND D| [ ] Bb ? pu # x v HX# ) 9 wW ? $ 3 #,?Q d d 6 T , /MND ]e Eb ? L]u * | \ 49 R MDW ?0iwh toA |%MND zW 0 {kl h z> s W D K u L [w F ? 5 a [N F P /8 ]u S { DE4 Z #4 O@ ] KT ? = a [N F P /M 2 /8 ]u R { 0 #,?Q ? LMW U ( @2 R,? _, 0uU s^D tG [# =` 8 s 8F tU 0)Y0 \ 49 MMW uw .s R,?" 9 4? M 0 |3 U Q h@ \ ? #,? a t #Z> x s tt \ )Ip .! H]U ? p1 U ? U _ b ^I , GS U _0 {kl [ H .! HEZ 3Cyg s W D R 4e]e a e 6 T , /MND ]U ) 6 R,?0 ? | v HX# ) 9 KS 7 $ 0 #,?Q ? z%MND MOW ? 49 qw L [ P P sY 7 59 0 ) l l 5 o9 C= 4E @ <X {3 {klM2 ; L M ? 2 C f l O5 1 D _, 0 z [ ]U (. w s]G 0 DQ = U 7 | A 8q=vW ? f " vW ` c T , 8 R {k M 9 ? 3 ` K ?0M b D= U D [N U m ? b4 / 0 Lw [ B v HX# ) 9 KS wW $ 3L OTD3 Dd A( D oD ! 1 ` {kl U 7 ; L ?O s W D Kq t L Y s W D R 4=]e v 8 #=HW ` d 6 T , /MND ] E ? H U _ ? b4 K ? 8 Q {kl-tU L x v HX# ) 9 uW ? $ 3 #,?Q ? 49 Q ]U ? 4] D q= +$ | \ 49 R MMW _0iw(2 s]G 0 Da D= @ 9]e R\ T \ ? ED :VL c _ / , s L@stU 0 l O5 1 4 hs 4 { 8 P L k k m 0 A 4 N4 Q ; # ` G !\ Z (NEDx L> .7 4] C\K ? 5 a [N F P /8 ]u R [ DE4 -, 8 8> kb i {%MND ] : O smW D R L {w fK ? = a [N F P /M 2 /8 ]u I { 0 #,?Q ? U ? 7 +7 b 8q=vW ` R, D 0 ! ?@$ ? y%MND 4 ? z%MND , M uw r R, D 0 ! 2 D: M@ s]W D K10iw 2 4] O O 0 t &m m ? b4 / 0 DxJ 6 \ W D U _0 {k ]( Dw 90 U ? .h t \ 49 R L {w . ? z%MND MOW wwX c x l O5 1 ? 4 B c ^I Kq t L {w 6 ? S FC 49 z { ]U ( @ } D U ? " }D0 D U o e 6 T , 8 , ` ] D oD ` {k U 5 L OTD3)d > ] D oD ` {k U 5 L OTD3 @ R, E /8 U ? ? b4 K ?% N4 {k -t O >D P \ @ 1 ?2T P !F l O5 1 D 4 ]e H ? tW v HX# ) 9 KS uW $ 3L OTD3 aE 8FM s v HX# ) 9 DE4 2 3 x \ 49 MDW a ? S FC KQ ))$ / o s.D $u ? 49 w /L [/ 9 s /D 0 XD U ?i$ $dA ^I K GSS0iw } 7(A u]- 0 7 dwh q@ 9 8 Q j8 s W D K Dt L [w > H \ 1 #C c ^I Kq Dt L [w : ? S FC 49 S Dx [ ] G ? H c '`_ d \ 49 R ] v +$ ? z%MND MOW uwh A 9 8 1h' R,?C- 0 N ? AL? S = ? R,CX tU 9 - 3.8 U A j l 5 o9 C= <X [w {k M ? ; L X ? \ V L 0 A 6 0 A D U t w Gp ? 5 a [N F P /8 ] I { DE4 " \ \ o< ?8T D 3 # } ? b4 / 0 4 ? b4 K ?% N4 {kl-t O ? S FC K l !A R,D0 D A ) ]- 0 , 6 N!{~ _0 3 ) , 3 # #: s v HX# ) 9 DE4 "/ ? x%MND ,E wU a ? cuU j R,? a [N F P /E /M 2 /8 ] j R,? a [N F P /E /M 2 /8 xk D oD R$ ! 1 `? ? @ S )b w 2 @4 D LSD!v 0 A PEAD $] n L 0 #R 4 D ) * 3 H Q e m ? 49 Q M; # ` Q ` $] & ; H W 8 ? 6) , z 8 3 {k M :_ J sMW , dw + z 8 3 {k M"Z: -. 3^ U ? 6 a 2 z 8 3 {k M. K ^- 0 L k : L / 0 {kl .8MED Ka u s NS R 4e]e ) ? 3 ` K ?0M R D= t #z ` M0 ^- 0 L { ? 7"- $ LD4 z } ? b4 / 0 B ? 0 @#uU { |K ^- 0 L k z o \ KH#8RW w 7 7 1 z 8 3 {k MN N s W D K G S0iw - 0 z 8 3 {k M 9 M\OW a d T , 8 S Dw { B ? v%MND ,E ? 3 * ` \ 49 R D L z: o l 1 / @ D #,? a 1 'gA ^I K G 30iw m ? b4 / 0 Dw [ B ? H D /DcLGW ? z%MND , MY uw 1A M L] a ? puU # ? 49 w /L {/ Q[i l 5 o9 C= <X {w # {klM ? ; L ? -:P 3 8C U {k @ N s W D KQ 4 ]U ? 7"- $ LD U _ 2 l3 t l @4X@D B M] z. ? {%MND GS U L {w J P / 0 uG [# m l O5 1 ? Lx [ Bb e 6 T , 8 S D h /8B 4GW ?hiC j {%MND ]u "J j l 5 o9 C= <X [w wG { DE4 >: d W DD wU 1> ? S FC 49 , BW "E# L@s ,@d T _ 4 c ^I K t L [w : \ W D U 0 {kl} oC ? b4 K 8 U _$ k / s> t Zk` J ^- 0 L [ v& 6 H W < ? 5Y j m ? b4 K ? L|*t # ? S FC K 7)$ m J ^- 0 L [ V T H W < d ? 5yX+ @ KW ? 0 GE {# K ^- 0 L [ O 8 #R 4] g R, D 0 ! N 1 P < tU w k=Bd2 z 8 3 {klM. z ^K ^- 0 L [ L \ dD 0 QQh3Bg1 z 8 3 {klMN s NS R 4e] "[ #d G@c D 0!N W + t \ 49 R 4=] v Y.h \ TD4 MYW ? U {k p l O5 1 D OI M ]U hj j {%MND ] "& l O5 1 D 8 U $ l O5 1 D O! U $ Hk D oD R$ ! 1 `? H D @ ek `=B R, 4 G @ 4U / 2 U _tU #Z=@ 8 3 U ? uW ? b ^I , G U _0 {k J i l 5 o9 C= <X {w 3 {klM ? ; L X +` 3 U ? ]u O ? 3 ` # ` 4E @ #,? a (n ] D oD ` {kl U ? 7 L OTD3i ;A ^I , G U _0iw -C-f ^I Ka t L p_[ 3_I U 3L {3: } @ 3 {k k x@ y iwhkC j {%MND ]e > P W D U L l O5 1 D ?8T v [ ]e C b ^I , GS U ?0 {k P8Y0 \ 49 MMW ww aA s W D R MDW _0 {kl > 9 ] C-n {%MND ] N? # 4 KS 3 ? |%MND ,E uU v @ L] E /@:, s ttU w W4 # ]e , | Q U ? m ? b4 / 0 Lx [ B ? 7 * H* s HN4 1 & ? S FC ?8T | { B H c c ?qMD3 _ f l O5 1 D O-Nc {k -t 3 @ T L] C [ ~;L P W DD wU N M } 3N\ U ?( A s} # ` 05 0 A o9 \]P o D 4 _ xM@ s]W D KQ0iwh; A ] D oD ` {k U {klM ? ; Lz,PI+ s P P B ! OW ? t ` M \ 49 R 4 ] a i 6 T , /MND D BW hQ o@ y$A 4 p@ ; L ht 4 z 8 3) i l 5 o9 C= <X {w {klM ? ; Lz ~]P o D 8 z[ H 3^0 U ? ?$b T /Nc ? b T /Nc ., ? z%MND MYW uwh8 h s W D R 4e]u H 1 @d ?o ? S FC 8 a A( D oD ! 1 ` {k U 5 ; L > Jy 3 HH U ? b ] D oD ` {k U _ 5 L OTD3 g m ? b4 K ? Lx { ] H ? 0u ? #u +i l 5 o9 C= <X {w K {klM ? ; L = ^x 3 U ? 3+A z 8 p3)) m 3A z 8 p3)9 A( D oD ! 1 ` {kl U ? 7 ; L y KK ^- 0 LJ jNa ~ sN\ S ?L ^- 0 LJ zo K ^- 0 LJ" ~ K ^- 0 LJ&z Zp ^I vW w ? U wG z L ^- 0 LJ2 A \ ? q #,? Q @ S < ! ` L ^- 0 LJ.zM1I} sN\OMw ^0 l O5 1 , ).A z 8 p3)) %B ? b4 / 0 4F 6)$z ~L ^- 0 LJN ? :@ 3 8C U _ 5 + A( D oD ! 1 ` {k U 5 ; L X s W D R 4 ] v ): ? S FC 49 S w [ ]u L k R,? a [N F P /E /M 2 /8 C ? vD 0 APH ; # ` GN]; K ,D U D ;0 ? D CQh C8m {%MND ] NR 8 ]U OD0 4~ *? 9 3 8C U ? o i 6 T , /MND D BW } ? b4 / 0 ` } ? b4 K p BW ?r R,? ! m @ l O5 1 D O-Nc U $ ] .!F SW ? tU Z/P | \ 49 vW ww w ] D oD ` {kl U ? 7 L OTD3 ` ] D oD ` {k U 5 L OTD3) ? A( D oD ! 1 ` {k U _ 5 ; L O s}W D R ] a g T , /MND H3 {kl-t # OXS 4 tU S ? H ? _ D]e ]e R q j0 l 5 o9 C= <X [ {k M L OTD3 E 7 4] 4 s]G 0 b = @ 9u / QW ?bB ? p! *(o d \ 49 R ]u v V "4 |? U ? 8 D] X O a Le 9 ED# D ] q(l l 5 o9 C= 4E @ <X {w {klM ? DE4 a& ? S FC ?8T v [ B ? v%MND vW ww } ? b4 K 4 ]u K ? {%MND , GS U ?0iw :C- tU / g u # ` ]; # ` TQ 9 X \ vW k R,? a [N F P /E /M 2 /8 > ? NS # ` H3 M; # ` Q ` # } ? b4 / 0 4 8 s W D Ka Dt L {w OH ? 3 ` # ` 4E @ #,? a h- &fA ^I K G S0iw wm {%MND ] .S + 0 Q!t &o l O5 1 ? L| k Bb h T , /MND Dw [ ]u B ? z%MND MYW u n 0 A 4 0 = M; # ` Q ` j s 4 ]e C , k! nc ^I K GSS0 {kl 8 ;o l 1 D 6 0 A D v HX# ) 9 KS wW {klM ? DE4 3x x \ 49 MYW < ? H ? 8F0() % R,?0 ? b X 0 KHstU j JP smW Ka3) z _N@ \ 49 R MMW _0 {kl } ? b4 / 0 4 B x v HX# ) 9 wW $ 3 #,?Q ? y%MND 4 v R l[ H KH#8RW w ? 0 U _ `@cs R,?" HSt F ? 5 a [N F P /8 ]U $ 3 #,?Q e 5_I KQ 4=]U uw "cA ^I K G 10iwha / 8FM ,@ v HX# ) 9 KS uW $ 3L OTD3ikDb ] D oD ` {kl U 7 L OTD3 ;3 R, 4 A 1P 8 W #X KH#8RW o ` 6 T , 8 S B H 0 ` f v T , 8 ,D 6)$j s HHst " ? S FC O {k M N6 \ W D U 0 {kl ( D# A 9 ! U ? >A sm[ 2 ? Q #,? a t #] ? S FC / @ 5)$ ^ { ` D9] ] 7 ? S FC 49 K Mv*t K Z ##H KH G @ ? H 1 KS 4 _8 L? H 1 KS 4 _8 L ? u 8 R L [ a ? \] ] _I .! H v & 4 ` \ / 0 _, 0 j lJ smW K 3 {k Mv B8 t N /M D 0 |3 , *pJ* s HN4 1tGw C m {%MND ]u nB t N /M D 0 7 ? S FC 49 L BW _$ A,_ _8 L 4EHc 1 ; =_ _8 L 4EHc 1 ? M smW D Kqw L [w B8 t N /M D 0 rB@ t N /M D 0 < [N 5 \ 4 ? # ]e 7 H W D U _0ia c T , 8 SH3 {k M GT H 5 o9 C= 4E @ < convert_ulong8_rte convert_uchar3_sat_rtz vstore_half5 convert_uchar3_sat_rtp convert_uint5_sat convert_ulong8_rtn atomic_fetch_or_explicit convert_ulong8_rtp work_group_scan_inclusive_max convert_uchar3_sat_rtn work_group_scan_inclusive_min convert_uchar3_sat_rte convert_ulong8_rtz get_image_depth convert_uchar2_sat convert_char3_sat convert_uchar8_rtz convert_float16_rtp convert_short8_sat convert_half5_rtp convert_float16_rtz convert_uchar8_rtp convert_half5_rtz convert_long16_sat_rtn convert_half5_rte convert_uchar8_rtn convert_float16_rte as_double5 convert_half5_rtn convert_ulong8_sat convert_float16_rtn convert_uchar8_rte vstore_half16_rtn convert_long3_rtn convert_uchar2_sat_rte convert_short8_sat_rtp convert_ulong4_sat_rtn __opencl_binop_or convert_long3_rte convert_ulong4_sat_rte atomic_fetch_sub_explicit convert_uchar5_sat_rtp convert_uchar2_sat_rtn convert_uchar5_sat_rtn convert_uchar2_sat_rtp convert_ulong4_sat_rtz convert_long3_rtz convert_short8_sat_rtn convert_ulong4_sat_rtp convert_uchar2_sat_rtz vstore_half4_rtp convert_long3_rtp convert_uint_sat vstorea_half8_rtp vloada_half16 convert_uchar16 convert_char16 convert_int2_sat convert_long8_sat_rtz vstore_half8 convert_ushort2_sat convert_short5_rtp convert_ulong5_rtn vstore_half convert_long4_sat_rtp convert_short2_rtn convert_short5_rtz as_ushort16 as_int16 convert_short2_rte convert_long4_sat_rtz convert_long4_sat_rte convert_short2_rtz convert_long8_sat_rtp convert_short2_rtp convert_long4_sat_rtn convert_short5_rtn atomic_fetch_min convert_ushort_rtn convert_uint2_sat_rtn vstorea_half5 convert_long16_rtp convert_uchar16_sat_rtz convert_uint2_sat_rte convert_ushort_rte vstorea_half4 convert_long16_rtz convert_uchar16_sat_rtp ctz convert_float atom_dec convert_ulong3_sat_rtp convert_uint2_sat_rtz convert_uchar16_sat_rte atomic_fetch_and convert_ulong3_sat_rtz convert_uint2_sat_rtp convert_ulong5_rtp convert_int8_rtz convert_short16_rtz convert_short_sat convert_long_rtp convert_int8_rtp convert_short16_rtp convert_long_rtz convert_long_rte convert_int8_rtn convert_short16_rtn convert_uchar16_rtz convert_long_rtn atom_min convert_short16_rte convert_int8_rte convert_uint4_sat_rtn convert_uchar16_rtn convert_int3_rtn convert_uint4_rtz convert_long5_sat_rte convert_short_sat_rtn convert_int3_rte convert_uchar16_rte convert_uint4_sat_rte read_imagef convert_short_sat_rte as_ushort2 convert_uint4_rtp convert_half4 convert_half5 convert_short_sat_rtz convert_uint4_sat_rtz convert_half2 convert_half3 convert_short_sat_rtp convert_long5_sat_rtz convert_uint4_rte convert_half8 convert_int3_rtp convert_uint4_sat_rtp convert_ushort2_rte convert_ushort2_rtn as_float16 convert_uchar3_rtn convert_ushort2_rtp convert_ulong4_sat convert_short2_sat convert_ushort2_rtz convert_long8_sat convert_int3_sat_rtz as_uchar5 as_uchar4 as_uchar3 as_uchar2 atomic_exchange_explicit convert_uchar3_rte as_half get_image_height vstorea_half4_rte convert_half8_rtp convert_long8_rte get_image_width convert_uchar8_sat vstorea_half4_rtn convert_char3_sat_rtn convert_long8_rtn convert_long8_rtp fast_length vstorea_half4_rtp convert_half8_rte convert_float16 convert_long8_rtz convert_half8_rtn convert_long16_sat_rtz convert_uchar4_rtp convert_ushort2_sat_rte convert_ushort2_sat_rtn convert_ushort2_sat_rtp work_group_reduce_min convert_ushort2_sat_rtz vload_half8 convert_double16 vstore_half8_rtp convert_char4_rte atomic_or vload_half3 convert_uchar3_rtz convert_char4_rtn convert_long4_rtz lgamma_r convert_char4_rtp convert_int5_sat convert_int3_sat_rte convert_char4_rtz convert_uchar5_sat_rtz work_group_scan_inclusive_add mem_fence atomic_work_item_fence as_half4 convert_uchar2_rte vstorea_half3_rte vstorea_half5_rtp as_half2 as_half3 convert_uchar2_rtn as_half8 convert_uint3_rtp convert_uchar atomic_xchg convert_uchar2_rtp convert_half16_rte vloada_half as_short16 vstorea_half5_rtn convert_uchar2_rtz convert_long5_rte convert_ushort_sat_rtz convert_char8_rtz convert_char2_rtn as_half5 convert_ushort_sat_rtp convert_char8_rtp convert_char8_rtn convert_ushort_sat_rtn convert_half3_rtp convert_char8_rte convert_ushort_sat_rte as_int4 as_long3 convert_short5_sat_rte convert_long2_rtp as_long2 convert_short5_sat_rtn atomic_fetch_add convert_long2_rtz vloada_half5 convert_long2_rte convert_ulong5_sat_rte convert_short5_sat_rtp convert_long2_rtn convert_short5_sat_rtz atomic_fetch_add_explicit convert_int3_sat convert_ushort5_sat_rte convert_ulong16 write_imagei write_imageh convert_ulong5_sat_rtn as_long4 get_image_channel_order convert_ulong5_sat_rtp convert_long_sat_rtz work_group_reduce_add read_imageh vstorea_half5_rtz convert_ulong5_sat_rtz convert_char4_sat_rtn as_short4 as_short5 convert_int16_sat convert_uchar5_sat_rte vstore_half2_rtn as_short2 convert_long2_sat_rtp convert_double16_rtp atomic_compare_exchange_strong_explicit as_short8 convert_long2_sat_rtz vstorea_half2_rtn convert_long2_sat_rte convert_double16_rtn convert_long2_sat_rtn convert_ushort3_sat convert_double16_rte convert_double5_rte convert_int16_rte convert_ushort_sat convert_uint2_rtp convert_int16_rtn vstorea_half3_rtp convert_int16_rtp vstorea_half3_rtn convert_char3 convert_char2 convert_char5 convert_char4 vstorea_half16_rte convert_ulong3 convert_int16_rtz vload_half2 convert_long_sat_rtn convert_ulong2 convert_char5_rtp atomic_load_explicit convert_double4_rtz as_half16 vload_half5 vload3 read_imageui convert_half4_rtn convert_double2_rtp convert_short5_sat convert_ulong8_sat_rtp convert_char8 convert_ushort5_sat_rtn convert_half4_rte convert_ulong16_sat_rtn arm_get_core_id convert_ulong8_sat_rtz convert_ulong8_sat_rte vstore_half2_rtp convert_float8_rtn convert_half4_rtz convert_uint2_rte vload_half4 convert_ulong16_sat_rtz atom_cmpxchg convert_ulong8_sat_rtn convert_half4_rtp convert_uchar4_rte convert_float4_rtz vstorea_half2_rtz vstore_half3_rtp convert_long3 convert_long2 atomic_flag_clear_explicit convert_uint8 convert_long5 convert_long4 convert_uint5 convert_uint4 convert_long8 convert_uchar5_sat convert_uint3 convert_uint2 convert_uint_sat_rtp convert_half_rtz convert_uint_sat_rtz convert_half_rtp convert_half_rtn as_ushort3 as_ushort4 as_ushort5 convert_uint_sat_rte as_ushort8 convert_half_rte convert_uint_sat_rtn convert_half2_rte convert_uint3_sat convert_long16_sat_rte convert_double3_rtp convert_half2_rtn vstorea_half16_rtn convert_char convert_half2_rtp convert_char_sat get_fence convert_half2_rtz vstore5 convert_uint2_rtz convert_int2_sat_rtn vstorea_half8_rtz convert_double4_rtn convert_int2_sat_rte work_group_any vstore_half5_rte convert_uint2_rtn convert_int2_sat_rtz vstorea_half8_rte convert_int2_sat_rtp vstorea_half8_rtn convert_short16 convert_ulong3_rte convert_int_sat_rte atomic_init convert_int8_sat_rtz convert_uint8_rte convert_int_sat_rtn convert_ulong3_rtn as_int convert_uint8_rtn convert_int8_sat convert_int8_sat_rtp convert_int8_sat_rtn convert_uint8_rtp convert_double convert_int_sat_rtp convert_ulong3_rtp convert_uint8_rtz convert_int8_sat_rte vstorea_half convert_int_sat_rtz convert_ulong3_rtz convert_ulong convert_short3_sat_rtn atom_max convert_int2_rtz atomic_sub convert_int2_rtp async_work_group_strided_copy atomic_min convert_int2_rtn convert_ushort as_uchar vstore_half4 convert_int2_rte convert_short_rte convert_ushort8 convert_char2_sat_rtp convert_ulong_sat convert_char8_sat convert_ushort2 convert_ushort3 convert_ushort4 convert_ushort5 atomic_compare_exchange_weak_explicit convert_double5_rtp convert_char2_sat_rte work_group_reduce_max as_double3 __opencl_binop_and convert_uint16_sat convert_char2_sat_rtn atom_sub convert_short5_rte convert_uint convert_ushort16_sat_rtp as_double4 sincos convert_ushort5_sat_rtp vstore4 convert_float2_rtp vstore2 convert_ushort3_sat_rtz atom_xor convert_char_rte convert_float2_rtz vstore8 convert_ushort3_sat_rtp convert_ushort16_sat_rtz convert_ushort3_sat_rtn convert_float2_rte convert_char_rtz convert_ushort3_sat_rte convert_int16 convert_float2_rtn as_ushort atom_and convert_ulong3_sat_rte as_char8 convert_ulong16_rtp as_double16 vstorea_half_rte convert_uint16_sat_rte convert_ushort3_rtn convert_int4_rte convert_float2 convert_int4_rtn convert_ushort3_rte as_int5 vstore_half8_rtz vstore_half3 convert_ulong3_sat_rtn vstore_half2 vstorea_half_rtp convert_ushort3_rtz vstore_half8_rtn remquo convert_int4_rtz as_ulong5 vstorea_half_rtz convert_uint16_rte convert_char16_rte convert_short4_rte convert_long8_sat_rtn convert_uint16_rtn convert_long8_sat_rte convert_short4_rtn convert_char16_rtn atomic_store convert_char16_rtp async_work_group_copy convert_short4_rtp convert_uint16_rtp convert_uchar16_rtp as_short convert_short4_rtz convert_char16_rtz convert_uint16_rtz convert_uchar_sat_rtz atomic_fetch_or convert_ulong2_sat vstorea_half5_rte convert_uchar_sat_rtp convert_uint5_rtp write_imageui convert_uint5_sat_rtz convert_long16_rte convert_uchar_sat_rtn as_short3 convert_char16_sat convert_uchar_sat_rte convert_ushort8_sat_rtz convert_ushort_rtz convert_uint8_sat convert_ushort8_sat_rtp convert_ushort8_sat_rtn convert_long16_rtn as_long5 convert_char5_rte convert_ushort8_sat_rte convert_int5_rte convert_float5_rtz convert_ulong5 convert_ulong4 convert_long4_rtp convert_int_sat convert_ulong16_rtz convert_ushort_rtp convert_float5_rtp convert_float4_rte convert_ulong8 convert_long4_rte convert_float5_rtn convert_double3_rte dpa atomic_add convert_long4_rtn convert_float4_rtp convert_float5_rte convert_short3_sat_rte convert_uint_rtz convert_float_rtz convert_char2_sat_rtz convert_float_rtp convert_uint_rtp atomic_fetch_xor_explicit as_long8 convert_ulong5_rtz vstore_half5_rtp convert_uint_rtn convert_float_rtn convert_uint5_rtn convert_float8 convert_float_rte convert_uint_rte convert_short3_sat_rtz convert_uchar5_rtn as_ulong8 convert_uchar5_rte as_ulong4 as_ulong3 as_ulong2 convert_uint2_sat vload_half convert_char5_rtz vload_half16 vload16 convert_uchar5_rtz convert_double4_rte atom_add vstorea_half4_rtz convert_uchar5_rtp atomic_flag_clear atom_or convert_double16_rtz convert_ulong3_sat atomic_store_explicit convert_double8_rte convert_half16 as_char3 as_uint5 convert_short8_rtp atomic_fetch_xor convert_double8_rtp convert_double8_rtz convert_char5_sat atomic_max convert_int16_sat_rtn convert_int16_sat_rte convert_short8_rtz convert_int16_sat_rtz convert_int16_sat_rtp convert_ushort16_sat convert_long3_sat_rtz atomic_flag_test_and_set write_imagef convert_long3_sat_rtp convert_uint16_sat_rtn convert_short8_rte work_group_scan_exclusive_min convert_long3_sat_rtn vstore3 as_float convert_long5_sat convert_long3_sat_rte as_float4 as_float5 as_float2 as_float3 convert_short3_sat as_float8 convert_long convert_short8_rtn read_imagei convert_int4_sat convert_short16_sat convert_ulong5_rte convert_half16_rtz as_uint3 as_uint2 convert_char_sat_rtz as_uint4 convert_long4_sat convert_uint16_sat_rtp as_uint8 convert_half16_rtp convert_char4_sat convert_char_sat_rtp convert_char_sat_rtn convert_short8 convert_half16_rtn convert_short4 convert_short5 convert_char_sat_rte convert_short2 convert_short3 convert_float4 convert_float5 convert_uint3_rtn convert_int4_sat_rte convert_float3 convert_uint3_rte as_ulong16 convert_int3_sat_rtp convert_int4_sat_rtn convert_ushort4_sat convert_int3_sat_rtn convert_int4_sat_rtp convert_long5_sat_rtn convert_uint3_rtz convert_int4_sat_rtz convert_uchar3_rtp vstorea_half3_rtz convert_short3_sat_rtp convert_uint4_rtn as_int3 as_int2 convert_long_sat_rtp convert_char5_rtn as_int8 convert_double5_rtz convert_long5_rtn convert_float4_rtn convert_half3_rtz convert_long_sat_rte vload8 convert_long5_rtp as_uchar16 vload4 vload5 convert_half3_rtn convert_short8_sat_rte convert_double5_rtn convert_long5_rtz convert_short3_rtp convert_int5_rtn convert_double2 convert_uchar4_sat_rtn convert_char_rtn convert_long16_sat convert_short3_rtz convert_int3_rtz convert_uchar4_sat_rte convert_uchar4_sat_rtz convert_short3_rte vstorea_half2 convert_uchar4_sat_rtp convert_short3_rtn convert_int5_rtp as_double8 convert_ulong2_sat_rtp convert_ulong16_rtn convert_uchar_sat as_double2 convert_ulong2_sat_rtz convert_long5_sat_rtp convert_short_rtn convert_ulong16_rte convert_int convert_half3_rte convert_ulong2_sat_rte convert_double8_rtn as_double convert_short_rtz convert_ulong2_sat_rtn convert_ushort5_rtn convert_char8_sat_rtn convert_uint5_sat_rtp convert_ulong_rtn convert_short16_sat_rtz convert_char3_rtn convert_ulong_rte convert_char8_sat_rte convert_ushort5_rte convert_char3_rte convert_uint5_rtz convert_short16_sat_rtp convert_half convert_short16_sat_rtn convert_uint5_rte convert_char3_rtz convert_ushort5_rtz convert_char8_sat_rtz convert_ulong_rtz convert_char3_rtp convert_short16_sat_rte convert_uint5_sat_rtn convert_ulong_rtp convert_ushort5_rtp convert_char8_sat_rtp convert_uchar8_sat_rtz vstorea_half16 convert_uchar8_sat_rtp convert_uchar8_sat_rtn as_char16 as_uint popcount convert_uchar8_sat_rte convert_uchar8 vloada_half8 convert_int5_sat_rtz vloada_half3 vloada_half2 convert_uchar3 convert_uchar2 convert_uchar5 convert_uchar4 convert_int5_sat_rtp vloada_half4 convert_int5_sat_rtn atomic_cmpxchg write_mem_fence convert_int5_sat_rte convert_ushort4_rtz convert_char5_sat_rtn convert_double2_rtz convert_double3_rtn convert_short2_sat_rte convert_int5_rtz convert_uint16 convert_ushort8_sat convert_short2_sat_rtn convert_ushort4_rtp convert_short2_sat_rtp convert_ushort4_rtn convert_ulong5_sat convert_char5_sat_rtz convert_double2_rtn read_mem_fence convert_short2_sat_rtz convert_char_rtp convert_char5_sat_rtp convert_char5_sat_rte convert_int8 convert_uint4_sat convert_int4 convert_ulong_sat_rtz convert_int3 convert_int2 convert_char16_sat_rte convert_uint16_sat_rtz atom_inc convert_char2_sat convert_short convert_double_rtz atomic_fetch_and_explicit convert_double3_rtz vstore_half4_rtn get_image_array_size vstore_half4_rte vstore_half4_rtz convert_ulong_sat_rtp atomic_fetch_min_explicit as_ulong as_long vstorea_half3 as_char convert_double4_rtp convert_short4_sat_rtn convert_ushort16_rtn vstore_half16 convert_long_sat vstorea_half8 convert_ushort16_rte convert_short4_sat_rte convert_short4_sat_rtz convert_ushort16_rtz get_image_dim convert_short_rtp vstorea_half16_rtp convert_short4_sat_rtp convert_ushort16_rtp vstorea_half16_rtz convert_ushort4_rte as_uchar8 convert_char2_rtz convert_double_rtn convert_long3_sat convert_char2_rtp convert_char3_sat_rte atomic_and convert_double_rte convert_short8_sat_rtz convert_double2_rte convert_char3_sat_rtz atom_xchg fast_distance convert_double_rtp convert_char3_sat_rtp convert_char2_rte atomic_load convert_ushort8_rtz vstorea_half2_rte convert_uchar4_rtz convert_ulong_sat_rtn convert_ulong2_rtp as_char5 as_char4 convert_ushort8_rtp convert_ulong2_rtz vstore_half2_rte convert_char4_sat_rte as_char2 convert_uchar4_rtn convert_char4_sat_rtz vstore_half2_rtz convert_ulong2_rte convert_ushort8_rtn vstorea_half2_rtp convert_ulong2_rtn convert_char4_sat_rtp convert_ushort5_sat convert_ushort8_rte convert_char16_sat_rtp atomic_fetch_max_explicit convert_ulong16_sat_rte convert_uint5_sat_rte atomic_dec convert_ulong_sat_rte convert_uchar4_sat convert_int5 fast_normalize convert_uchar16_sat convert_uchar_rtn convert_uint3_sat_rtz work_group_broadcast convert_int_rtz convert_uint3_sat_rtp convert_uchar_rte work_group_all vstore_half16_rtz vstore_half5_rtn convert_uchar_rtz convert_uint3_sat_rtn convert_ushort16_sat_rte vstore16 convert_char16_sat_rtz convert_ushort16_sat_rtn convert_uint3_sat_rte convert_uchar_rtp vstore_half_rte convert_uint8_sat_rtn vstore_half_rtn get_image_channel_data_type convert_uint8_sat_rte convert_uint8_sat_rtz convert_ulong16_sat_rtp vstore_half_rtp convert_uint8_sat_rtp vstore_half_rtz atomic_flag_test_and_set_explicit convert_long2_sat convert_double3 vstorea_half_rtn convert_uchar16_sat_rtn convert_double4 convert_double5 convert_double8 convert_ushort5_sat_rtz convert_long16_sat_rtp convert_ushort16 vstore_half5_rtz convert_char16_sat_rtn convert_ulong16_sat work_group_scan_exclusive_max convert_ulong4_rtz as_uint16 atomic_compare_exchange_strong convert_ulong4_rtp as_long16 convert_ulong4_rtn vstore_half8_rte convert_half8_rtz convert_ulong4_rte convert_long16 atomic_compare_exchange_weak convert_float8_rtz convert_float3_rtz convert_int4_rtp atomic_fetch_max convert_float3_rtp vstore_half16_rte vstore_half3_rtn atomic_fetch_sub convert_float3_rtn work_group_scan_exclusive_add convert_uchar3_sat vstore_half16_rtp convert_float3_rte convert_short4_sat vstore_half3_rtz convert_ushort4_sat_rtn __sizeof5 atomic_exchange convert_ushort3_rtp convert_float8_rte convert_int_rtp convert_ushort4_sat_rte convert_ushort4_sat_rtz convert_int_rtn vload2 atomic_inc convert_ushort4_sat_rtp vstore_half3_rte atomic_xor convert_int_rte convert_float8_rtp as_intptr_t __get_printf_buffer as_size_t get_work_dim as_ptrdiff_t as_uintptr_t __midgard_popcount *%16776960__clcc_char size_t ptrdiff_t uintptr_t *!C%16776961__clcc_half *!C%16776962__clcc_half *!C__clcc_half *!C%16776960__clcc_half *!C%16776961ulong *!C%16776961ushort *!C%16776961__clcc_char *!C%16776961__clcc_short *!C__clcc_double *!C%16776960uchar *!C%16776960__clcc_int *!C%16776960ushort *!C__clcc_int *!C%16776962__clcc_int *!C%16776962uint *!C%16776961__clcc_double *!Cuchar *!C__clcc_float *!C%16776960__clcc_double *!C%16776961__clcc_float *!C%16776961uint *!C%16776961__clcc_long *!Cushort *!C%16776960__clcc_long *!C%16776960__clcc_short *!C%16776960uint *!C%16776961uchar *!C%16776962ulong *!C%16776960ulong *!C%16776960__clcc_char *!Cuint *!C%16776962uchar *!C__clcc_char *!C%16776960__clcc_float *!C%16776961__clcc_int *!C%16776962ushort *!C__clcc_short *!C%16776962__clcc_double *!C__clcc_long *!Culong *!C%16776962__clcc_long *!C%16776962__clcc_float *!C%16776962__clcc_short *!C%16776962__clcc_char *%16776961__clcc_half *%16776960__clcc_half *__clcc_half *%16776961uint *%16776960__clcc_short *__clcc_char *%16776961ulong *%16776961__clcc_long *%16776960uchar *uchar *%16776961__clcc_float *%16776960uint *%16776960__clcc_long *%16776960__clcc_double *%16776961__clcc_int *%16776961__clcc_double *__clcc_double *%16776960__clcc_float *%16776961uchar *uint *%16776960__clcc_int *__clcc_short *ushort *__clcc_long *%16776960ulong *%16776961ushort *ulong *__clcc_float *%16776961__clcc_char *%16776960ushort *__clcc_int *%16776961__clcc_short __clcc_image1d_wo_t __clcc_image2d_wo_t __clcc_image3d_wo_t __clcc_image2d_array_wo_t __clcc_image1d_array_wo_t __clcc_image1d_buffer_wo_t cl_mem_fence_flags *event_t *%16776960int2 *%16776960int5 *%16776961int5 *int8 *%16776960int4 *%16776961int3 *%16776961int2 *%16776960int3 *%16776960int8 *%16776961int4 *%16776961int16 *int3 *%16776961int8 *int5 *int2 *int4 *int16 *%16776960int16 __clcc_image1d_buffer_ro_t __clcc_image2d_array_ro_t __clcc_image1d_array_ro_t __clcc_image3d_ro_t __clcc_image2d_ro_t __clcc_image1d_ro_t sampler_t *%16776960double4 *%16776960float3 *%16776961float2 *%16776960half3 *half4 *%16776960double5 *float3 *%16776960float8 *double4 *%16776960float4 *%16776961double8 *half16 *half5 *%16776960half8 *double16 *%16776961half2 *half2 *%16776960float16 *%16776961half3 *%16776961half5 *%16776960double16 *%16776961float8 *%16776961double3 *double3 *half3 *float2 *float5 *double8 *%16776961float16 *%16776961half4 *%16776961double16 *%16776961float3 *%16776960half5 *%16776960float2 *%16776960half2 *double2 *float16 *float4 *%16776960double2 *%16776961half8 *%16776960double8 *%16776961double2 *%16776961double5 *double5 *float8 *%16776960double3 *%16776961float4 *%16776960float5 *%16776961float5 *half8 *%16776961half16 *%16776960half4 *%16776961double4 *%16776960half16 *!C%16776960int4 *!C%16776960uint2 *!C%16776960long3 *!C%16776960double3 *!C%16776960double16 *!C%16776960ushort3 *!C%16776960float16 *!C%16776960uchar16 *!C%16776960uchar5 *!C%16776960half16 *!C%16776960uint4 *!C%16776960ushort8 *!C%16776960ushort16 *!C%16776960ulong4 *!C%16776960long4 *!C%16776960int3 *!C%16776960half3 *!C%16776960ushort5 *!C%16776960float8 *!C%16776960int5 *!C%16776960long2 *!C%16776960char5 *!C%16776960short3 *!C%16776960float3 *!C%16776960int2 *!C%16776960uint16 *!C%16776960short8 *!C%16776960half5 *!C%16776960ulong8 *!C%16776960float4 *!C%16776960half4 *!C%16776960int16 *!C%16776960ushort4 *!C%16776960char16 *!C%16776960short16 *!C%16776960char2 *!C%16776960ulong2 *!C%16776960double4 *!C%16776960double8 *!C%16776960short2 *!C%16776960double2 *!C%16776960uint3 *!C%16776960char8 *!C%16776960uchar3 *!C%16776960long8 *!C%16776960uint5 *!C%16776960char4 *!C%16776960float2 *!C%16776960uint8 *!C%16776960uchar4 *!C%16776960ulong16 *!C%16776960double5 *!C%16776960short4 *!C%16776960ulong5 *!C%16776960long16 *!C%16776960float5 *!C%16776960ushort2 *!C%16776960long5 *!C%16776960uchar2 *!C%16776960int8 *!C%16776960half2 *!C%16776960short5 *!C%16776960half8 *!C%16776960uchar8 *!C%16776960char3 *!C%16776960ulong3 *!C%16776961__clcc_void *!C__clcc_void *!C%16776960__clcc_void *!V%16776961uint *!V%16776961ulong *!V%16776960ulong *!V%16776961__clcc_long *!V%16776960__clcc_long *!V%16776960__clcc_int *!V%16776961__clcc_int *!V%16776960uint *!V%16776960__clcc_float *!V%16776961__clcc_float *!V%16776961atomic_double memory_order memory_scope *!V%16776961atomic_float *!V%16776961atomic_ulong *!V%16776961atomic_long *!V%16776961atomic_uint *!V%16776961atomic_int *!V%16776960atomic_double *!V%16776960atomic_float *!V%16776960atomic_ulong *!V%16776960atomic_long *!V%16776960atomic_uint *!V%16776960atomic_int *!Vatomic_double *!Vatomic_float *!Vatomic_ulong *!Vatomic_long *!Vatomic_uint *!Vatomic_int __clcc_bool *!V%16776961atomic_flag *!V%16776960atomic_flag *!Vatomic_flag *!C%16776961double4 *%16776961char5 *%16776960long2 *!C%16776961long2 *%16776960ulong8 *!C%16776961ulong8 *!C%16776961int4 *%16776960short5 *!C%16776961short5 *!C%16776961int3 *!C%16776961int8 *%16776960short8 *!C%16776961short8 *!C%16776961half5 *!C%16776961float8 *%16776960uchar8 *!C%16776961uchar8 *!C%16776961double3 *!C%16776961int5 *%16776961ushort4 *!C%16776961double8 *%16776960char8 *!C%16776961char8 *%16776961char4 *%16776961ulong3 *%16776961ushort8 *%16776960ushort4 *!C%16776961ushort4 *%16776961long8 *%16776960ushort16 *!C%16776961ushort16 *%16776960long4 *!C%16776961long4 *%16776961uchar16 *%16776961short4 *%16776961long3 *%16776960char5 *!C%16776961char5 *%16776961short8 *%16776960ulong4 *!C%16776961ulong4 *%16776960long8 *!C%16776961long8 *!C%16776961float5 *%16776961ulong16 *%16776961short2 *%16776961uint8 *%16776960uchar2 *!C%16776961uchar2 *%16776961uint5 *%16776961uint4 *!C%16776961double16 *%16776961short3 *!C%16776961half8 *%16776961uchar5 *%16776960char2 *!C%16776961char2 *%16776960ulong5 *!C%16776961ulong5 *%16776961long5 *%16776960ulong3 *!C%16776961ulong3 *%16776960uchar16 *!C%16776961uchar16 *%16776960short4 *!C%16776961short4 *%16776961ulong5 *%16776961uint2 *%16776961uchar2 *%16776961ulong4 *!C%16776961int2 *%16776960char4 *!C%16776961char4 *!C%16776961int16 *%16776961uchar3 *%16776960short2 *!C%16776961short2 *%16776961uchar4 *%16776961ushort5 *%16776960long5 *!C%16776961long5 *!C%16776961half3 *%16776961long2 *%16776960long16 *!C%16776961long16 *%16776960uint2 *!C%16776961uint2 *!C%16776961half2 *%16776960uint16 *!C%16776961uint16 *%16776961short5 *%16776960ulong2 *!C%16776961ulong2 *%16776961uint16 *%16776961char3 *!C%16776961float4 *%16776960uint5 *!C%16776961uint5 *%16776960ushort2 *!C%16776961ushort2 *%16776960char16 *!C%16776961char16 *!C%16776961half4 *!C%16776961float16 *%16776960char3 *!C%16776961char3 *%16776960uchar4 *!C%16776961uchar4 *%16776960long3 *!C%16776961long3 *!C%16776961double2 *%16776961char16 *%16776960ushort5 *!C%16776961ushort5 *%16776960ulong16 *!C%16776961ulong16 *!C%16776961half16 *%16776961long4 *%16776961uchar8 *%16776961ushort3 *%16776961char8 *%16776960uint8 *!C%16776961uint8 *%16776961ulong2 *%16776961short16 *%16776960uchar3 *!C%16776961uchar3 *%16776961char2 *%16776961ulong8 *%16776961long16 *%16776961ushort2 *!C%16776961float2 *%16776960uint4 *!C%16776961uint4 *%16776960uchar5 *!C%16776961uchar5 *%16776960ushort3 *!C%16776961ushort3 *!C%16776961float3 *!C%16776961double5 *%16776961ushort16 *%16776961uint3 *%16776960short16 *!C%16776961short16 *%16776960ushort8 *!C%16776961ushort8 *%16776960uint3 *!C%16776961uint3 *%16776960short3 *!C%16776961short3 /* * Copyright: * ---------------------------------------------------------------------------- * This confidential and proprietary software may be used only as authorized * by a licensing agreement from ARM Limited. * (C) COPYRIGHT 2015-2017 ARM Limited, ALL RIGHTS RESERVED * The entire notice above must be reproduced on all authorized copies and * copies may only be made to the extent permitted by a licensing agreement * from ARM Limited. * ---------------------------------------------------------------------------- */ #ifndef MALI_CLCC_SHARED_H_ #define MALI_CLCC_SHARED_H_ #ifdef __cplusplus extern "C" { #endif /** * @file mali_clcc_shared.h OpenCL runtime/compiler interface. * * This file defines shared data structures used by runtime, clcc and/or BIFL functions, * and sometimes test-code that requires internal "knowledge". * * Note that the structures defined here are sometimes included in CL-code, so should be * freestanding [not refer to types or structures outside of this unit]. * * Care should be taken to ensure data structures do not change alignment or size. Where * relevant, specific tests should be written to ensure the size/alignments are correct. */ /** * @addtogroup mcl OpenCL * @{ */ /** * @addtogroup mcl_clcc OpenCL C Compiler * @{ */ #ifdef __OPENCL_C_VERSION__ /* In the OpenCL C compiler, we need to define some types, which should match the corresponding * definition in the driver. */ typedef unsigned long u64; typedef unsigned int u32; /* Prefix for OpenCL BIFL code */ #define CLCC_APPLY_PREFIX(x) __ ## x #else /** Prefix for the driver */ #define CLCC_APPLY_PREFIX(x) mcl_ ## x #endif #if !__OPENCL_C_VERSION__ || (__OPENCL_C_VERSION__ >= CL_VERSION_2_0) /** * @brief ndrange_t - defines an N-dimensional range over which a kernel executes (device-side enqueue). */ typedef struct { u32 ndim; /**< Number of dimensions to describe the work to be done */ size_t global_work_offset[3]; /**< Offsets used to calculate the global ID of a work-item */ size_t global_work_size[3]; /**< Size of the global work-items */ size_t local_work_size[3]; /**< Defines the number of work-items per work-group */ } ndrange_t; /** * @brief mali_mcl_device_command_queue - command queue for device-side enqueue. * * This structure represents the queue that @c enqueue_kernel() enqueues the new work into. * The queue contains @c mcl_device_queue_content. The current design assumes that the queue * is simply big enough to handle all work, and therefore no requirement to track which entries * can be reused. For a fully functional implementation, this would have to be added (along with * quite a bit of other changes to make the whole device-side enqueue fully functional). * * The @c size is the total size of @c buffer. * * The @c alloc is the index that points to the first allocatable point in the buffer. This field is * updated by an atomic add operation, to ensure that simultaneous allocation of space is safe. * See diagram below. * * The @c commit is the index for the committed data. This is the index at which ALL data up to that point * has been filled in. This is updated by atomic compare exchang, to ensure that the data is always * complete up to the point indicated by this index. See diagram below. * * The @c queue is used to "remember" the host queue that this queue represents. This allows us to have * put the queue pointer value into the @c mcl_device_queue_content entry. * * Finally the @c buffer is the acutal storage for the queued work. The value of @c alloc and @c commit * are indices into @c buffer. (In other words, the first free address is at @c &buffer[alloc]). * * The driver-side maintains a "read pointer" that is not stored within this data structure, which * is the index up to which where the host side has processed the entries in the queue. * * Diagram showing the the queued format: * (For simplicity, in the below "filled in" means completely filled in and ready to be processed) * * +-----------------------+ <- buffer[0] * ! Queue Entry 0 ! * +-----------------------+ <- buffer[sizeof(mcl_device_queue_content) * 1] * ! Queue Entry 1 ! * +-----------------------+ * ! Queue Entry 2 ! * buffer[readptr]-> ~~~~~~~~~~~~~~~~~~~~~~~~~ * Z ---------- Z (skipping over several entries) * ~~~~~~~~~~~~~~~~~~~~~~~~~ * ! Queue Entry 8 ! (All entries up to this point are filled in) * buffer[commit]-> +-----------------------+ * ! Queue Entry 9 ! (Not finished filling in here) * +-----------------------+ * ! Queue Entry 10 ! (Finished, but waiting for 9 to be filled in) * buffer[alloc]-> +-----------------------+ * ! Queue Entry 11 ! (Not filled in at all, shouldn't be "touched") * ~~~~~~~~~~~~~~~~~~~~~~~~~ * Z ---------- Z (skipping over several entries) * ~~~~~~~~~~~~~~~~~~~~~~~~~ * As we can see in the above, the host has processed up to entry number 2, the device has filled in 8 * entries that are ready for the host, and are in the process of filling in entry 9, where entry 10 * is already filled in, but has to wait for entry 9 to be filled in. The next call to @c enqueue_kernel * would use entry 11. */ typedef struct CLCC_APPLY_PREFIX(device_command_queue) { u32 size; /**< size of the entire buffer */ u32 alloc; /**< index to end of allocated space (first unallocated byte) */ u32 commit; /**< index to end of committed space (committed = filled in completely to that point) */ uintptr_t queue; /**< host-side queue-pointer - retrieved at a later stage, never used by device */ char buffer[1]; /**< Actual queue space. */ } CLCC_APPLY_PREFIX(device_command_queue); /** * Error codes used to give information about queue content. */ typedef enum { MCL_ENQUEUE_NO_ERROR, /**< No error, all good */ MCL_ENQUEUE_ERR_TOO_LARGE_CAPTURE, /**< Captured variables don't fit in block_context field */ MCL_ENQUEUE_ERR_TOO_LONG_NAME, /**< Kernel name too long for name field */ MCL_ENQUEUE_ERR_EMPTY_NAME, /**< Kernel name should not be 'empty' */ MCL_ENQUEUE_ERR_TOO_MANY_LOCALS, /**< Too many local values */ MCL_ENQUEUE_ERR_NO_EVENTS, /**< Can't allocate event */ } CLCC_APPLY_PREFIX(enqueue_errcodes); /** * MCL_MAX_LOCALS defines how many local sizes can be passed to enqueue_kernel. The * number choosen here is sufficient to cope with the conformance test. No intention * to support code more complex than the conformance test. */ #define MCL_MAX_LOCALS 3u /** * Data structure inside the queue. */ typedef struct CLCC_APPLY_PREFIX(device_queue_content) { u32 status; /**< Status per enqueue_errcodes enum above */ char name[128]; /**< Kernel/block actual name */ /** * Used to store the context of the block. It contains 32 bytes of fixed data. * Adding another 96 bytes allows for some captured arguments to the block-function. * enqueue_kernel should check that size fits. */ char block_context[128]; ndrange_t ndrange; /**< ndrange describing the enqueued work */ uintptr_t queue; /**< Queue which this work should be enqueued onto */ uintptr_t owner_payload; /**< Owning payload for this kernel */ u32 num_locals; /**< Number of local sizes. */ size_t locals[MCL_MAX_LOCALS]; /**< Local sizes */ u32 magic; /**< Special magic value to identify end of block */ } CLCC_APPLY_PREFIX(device_queue_content); /** * Data structure for event list. * * @c free_list points to @c NULL if empty, otherwise to a free clk_event (whose "next" pointer indicates * where the next element in the list is, or @c NULL if it's the last element. * @c first_event is the address of the beggining of the event buffer. * @c last_event is the address of the end of the event buffer. * @c next_unused is the address of the first element in the event buffer that is not yet used. * The following should always be true: * @c first_event >= @c next_unused >= @c last_event */ typedef struct CLCC_APPLY_PREFIX(clk_event_admin) { void* free_list; void* first_event; void* last_event; void* next_unused; } CLCC_APPLY_PREFIX(clk_event_admin); #endif /* !__OPENCL_C_VERSION__ || (__OPENCL_C_VERSION__ >= CL_VERSION_2_0) */ /** * @} */ /** * @} */ #ifdef __cplusplus } /* end of extern "C" */ #endif #endif /* MALI_CLCC_SHARED_H_ */ #define CL_VERSION_1_0 100 #define CL_VERSION_1_1 110 #define CL_VERSION_1_2 120 #define CL_VERSION_2_0 200 #ifdef cl_khr_fp64 #pragma OPENCL EXTENSION cl_khr_fp64 : enable #endif #define NULL ((void*)0) typedef unsigned char uchar; typedef unsigned short ushort; typedef unsigned int uint; typedef unsigned long ulong; typedef __typeof__ (((int *)0) - ((int *)0)) ptrdiff_t; typedef half half2 __attribute__((ext_vector_type(2))); typedef half half3 __attribute__((ext_vector_type(3))); typedef half half4 __attribute__((ext_vector_type(4))); typedef half half8 __attribute__((ext_vector_type(8))); typedef half half16 __attribute__((ext_vector_type(16))); typedef float float2 __attribute__((ext_vector_type(2))); typedef float float3 __attribute__((ext_vector_type(3))); typedef float float4 __attribute__((ext_vector_type(4))); typedef float float8 __attribute__((ext_vector_type(8))); typedef float float16 __attribute__((ext_vector_type(16))); #ifdef cl_khr_fp64 typedef double double2 __attribute__((ext_vector_type(2))); typedef double double3 __attribute__((ext_vector_type(3))); typedef double double4 __attribute__((ext_vector_type(4))); typedef double double8 __attribute__((ext_vector_type(8))); typedef double double16 __attribute__((ext_vector_type(16))); #endif typedef char char2 __attribute__((ext_vector_type(2))); typedef char char3 __attribute__((ext_vector_type(3))); typedef char char4 __attribute__((ext_vector_type(4))); typedef char char8 __attribute__((ext_vector_type(8))); typedef char char16 __attribute__((ext_vector_type(16))); typedef uchar uchar2 __attribute__((ext_vector_type(2))); typedef uchar uchar3 __attribute__((ext_vector_type(3))); typedef uchar uchar4 __attribute__((ext_vector_type(4))); typedef uchar uchar8 __attribute__((ext_vector_type(8))); typedef uchar uchar16 __attribute__((ext_vector_type(16))); typedef short short2 __attribute__((ext_vector_type(2))); typedef short short3 __attribute__((ext_vector_type(3))); typedef short short4 __attribute__((ext_vector_type(4))); typedef short short8 __attribute__((ext_vector_type(8))); typedef short short16 __attribute__((ext_vector_type(16))); typedef ushort ushort2 __attribute__((ext_vector_type(2))); typedef ushort ushort3 __attribute__((ext_vector_type(3))); typedef ushort ushort4 __attribute__((ext_vector_type(4))); typedef ushort ushort8 __attribute__((ext_vector_type(8))); typedef ushort ushort16 __attribute__((ext_vector_type(16))); typedef int int2 __attribute__((ext_vector_type(2))); typedef int int3 __attribute__((ext_vector_type(3))); typedef int int4 __attribute__((ext_vector_type(4))); typedef int int8 __attribute__((ext_vector_type(8))); typedef int int16 __attribute__((ext_vector_type(16))); typedef uint uint2 __attribute__((ext_vector_type(2))); typedef uint uint3 __attribute__((ext_vector_type(3))); typedef uint uint4 __attribute__((ext_vector_type(4))); typedef uint uint8 __attribute__((ext_vector_type(8))); typedef uint uint16 __attribute__((ext_vector_type(16))); typedef long long2 __attribute__((ext_vector_type(2))); typedef long long3 __attribute__((ext_vector_type(3))); typedef long long4 __attribute__((ext_vector_type(4))); typedef long long8 __attribute__((ext_vector_type(8))); typedef long long16 __attribute__((ext_vector_type(16))); typedef ulong ulong2 __attribute__((ext_vector_type(2))); typedef ulong ulong3 __attribute__((ext_vector_type(3))); typedef ulong ulong4 __attribute__((ext_vector_type(4))); typedef ulong ulong8 __attribute__((ext_vector_type(8))); typedef ulong ulong16 __attribute__((ext_vector_type(16))); typedef half __clcc_half; typedef float __clcc_float; #ifdef cl_khr_fp64 typedef double __clcc_double; #endif typedef char __clcc_char; typedef bool __clcc_bool; typedef void* __clcc_block_void_t; typedef void* __clcc_block_t; typedef short __clcc_short; typedef int __clcc_int; typedef long __clcc_long; typedef void __clcc_void; #if __OPENCL_C_VERSION__ >= CL_VERSION_1_2 typedef read_only image1d_t __clcc_image1d_ro_t; typedef write_only image1d_t __clcc_image1d_wo_t; typedef read_write image1d_t __clcc_image1d_rw_t; #endif typedef read_only image2d_t __clcc_image2d_ro_t; typedef write_only image2d_t __clcc_image2d_wo_t; typedef read_write image2d_t __clcc_image2d_rw_t; typedef read_only image3d_t __clcc_image3d_ro_t; #ifdef cl_khr_3d_image_writes #pragma OPENCL EXTENSION cl_khr_3d_image_writes : enable typedef write_only image3d_t __clcc_image3d_wo_t; typedef read_write image3d_t __clcc_image3d_rw_t; #pragma OPENCL EXTENSION cl_khr_3d_image_writes : disable #endif #if __OPENCL_C_VERSION__ >= CL_VERSION_1_2 typedef read_only image1d_array_t __clcc_image1d_array_ro_t; typedef write_only image1d_array_t __clcc_image1d_array_wo_t; typedef read_write image1d_array_t __clcc_image1d_array_rw_t; typedef read_only image2d_array_t __clcc_image2d_array_ro_t; typedef write_only image2d_array_t __clcc_image2d_array_wo_t; typedef read_write image2d_array_t __clcc_image2d_array_rw_t; typedef read_only image1d_buffer_t __clcc_image1d_buffer_ro_t; typedef write_only image1d_buffer_t __clcc_image1d_buffer_wo_t; typedef read_write image1d_buffer_t __clcc_image1d_buffer_rw_t; #endif #if __OPENCL_C_VERSION__ >= CL_VERSION_2_0 typedef read_only image2d_depth_t __clcc_image2d_depth_ro_t; typedef write_only image2d_depth_t __clcc_image2d_depth_wo_t; typedef read_write image2d_depth_t __clcc_image2d_depth_rw_t; typedef read_only image2d_array_depth_t __clcc_image2d_array_depth_ro_t; typedef write_only image2d_array_depth_t __clcc_image2d_array_depth_wo_t; typedef read_write image2d_array_depth_t __clcc_image2d_array_depth_rw_t; #endif typedef sampler_t __clcc_sampler_t; typedef event_t __clcc_event_t; #if __OPENCL_C_VERSION__ >= CL_VERSION_2_0 typedef reserve_id_t __clcc_reserve_id_t; typedef pipe void __clcc_pipe_t; #endif #if (__OPENCL_C_VERSION__ >= CL_VERSION_2_0) || defined(__CLCC_ENABLE_CL20_ATOMICS__) #define ATOMIC_VAR_INIT(value) (value) #ifndef __ATOMIC_RELAXED #define __ATOMIC_RELAXED 0 #endif #ifndef __ATOMIC_CONSUME #define __ATOMIC_CONSUME 1 #endif #ifndef __ATOMIC_ACQUIRE #define __ATOMIC_ACQUIRE 2 #endif #ifndef __ATOMIC_RELEASE #define __ATOMIC_RELEASE 3 #endif #ifndef __ATOMIC_ACQ_REL #define __ATOMIC_ACQ_REL 4 #endif #ifndef __ATOMIC_SEQ_CST #define __ATOMIC_SEQ_CST 5 #endif typedef enum { memory_order_relaxed = __ATOMIC_RELAXED, memory_order_consume = __ATOMIC_CONSUME, memory_order_acquire = __ATOMIC_ACQUIRE, memory_order_release = __ATOMIC_RELEASE, memory_order_acq_rel = __ATOMIC_ACQ_REL, memory_order_seq_cst = __ATOMIC_SEQ_CST } memory_order; typedef enum { memory_scope_work_item, memory_scope_work_group, memory_scope_device, memory_scope_all_svm_devices, } memory_scope; #define ATOMIC_FLAG_INIT ATOMIC_VAR_INIT(0) #endif #define __kernel_exec(X, typen) __kernel __attribute__((work_group_size_hint(X, 1, 1))) __attribute__((vec_type_hint(typen))) #define kernel_exec(X, typen) __kernel_exec(X, typen) #define NAN __builtin_nanf("") #define INFINITY __builtin_inff() #define HUGE_VALF INFINITY #define MAXFLOAT FLT_MAX #define FLT_DIG 6 #define FLT_MANT_DIG 24 #define FLT_MAX_10_EXP +38 #define FLT_MAX_EXP +128 #define FLT_MIN_10_EXP -37 #define FLT_MIN_EXP -125 #define FLT_RADIX 2 #define FLT_MAX 0x1.fffffep127f #define FLT_MIN 0x1.0p-126f #define FLT_EPSILON 0x1.0p-23f #define FP_ILOGBNAN 0x7fffffff #define FP_ILOGB0 0x80000000 #define M_E_F 2.71828174591064453125e+00f #define M_LOG2E_F 1.44269502162933349609e+00f #define M_LOG10E_F 4.34294492006301879883e-01f #define M_LN2_F 6.93147182464599609375e-01f #define M_LN10_F 2.30258512496948242188e+00f #define M_PI_F 3.14159274101257324219e+00f #define M_PI_2_F 1.57079637050628662109e+00f #define M_PI_4_F 7.85398185253143310547e-01f #define M_1_PI_F 3.18309873342514038086e-01f #define M_2_PI_F 6.36619746685028076172e-01f #define M_2_SQRTPI_F 1.12837922573089599609e+00f #define M_SQRT2_F 1.41421353816986083984e+00f #define M_SQRT1_2_F 7.07106769084930419922e-01f #ifdef cl_khr_fp64 #pragma OPENCL EXTENSION cl_khr_fp64 : enable #define HUGE_VAL (as_double(0x7ff0000000000000)) #define DBL_DIG 15 #define DBL_MANT_DIG 53 #define DBL_MAX_10_EXP +308 #define DBL_MAX_EXP +1024 #define DBL_MIN_10_EXP -307 #define DBL_MIN_EXP -1021 #define DBL_MAX 0x1.fffffffffffffp1023 #define DBL_MIN 0x1.0p-1022 #define DBL_EPSILON 0x1.0p-52 #define DBL_RADIX 2 #define M_E 2.718281828459045090796 #define M_LOG2E 1.442695040888963387005 #define M_LOG10E 0.434294481903251816668 #define M_LN2 0.693147180559945286227 #define M_LN10 2.302585092994045901094 #define M_PI 3.141592653589793115998 #define M_PI_2 1.570796326794896557999 #define M_PI_4 0.785398163397448278999 #define M_1_PI 0.318309886183790691216 #define M_2_PI 0.636619772367581382433 #define M_2_SQRTPI 1.128379167095512558561 #define M_SQRT2 1.414213562373095145475 #define M_SQRT1_2 0.707106781186547572737 #pragma OPENCL EXTENSION cl_khr_fp64 : disable #endif #ifdef cl_khr_fp16 #pragma OPENCL EXTENSION cl_khr_fp16 : enable #define HUGE_VAL (as_double(0x7ff0000000000000)) #define HALF_DIG 3 #define HALF_MANT_DIG 11 #define HALF_MAX_10_EXP +4 #define HALF_MAX_EXP +16 #define HALF_MIN_10_EXP -4 #define HALF_MIN_EXP -13 #define HALF_RADIX 2 #define HALF_MAX 0x1.ffcp15H #define HALF_MIN 0x1.0p-14H #define HALF_EPSILON 0x1.0p-10H #define M_E_H +0x1.5c0p1H #define M_LOG2E_H +0x1.714p0H #define M_LOG10E_H +0x1.bccp-2H #define M_LN2_H +0x1.630p-1H #define M_LN10_H +0x1.26cp1H #define M_PI_H +0x1.920p1H #define M_PI_2_H +0x1.920p0H #define M_PI_4_H +0x1.920p-1H #define M_1_PI_H +0x1.460p-2H #define M_2_PI_H +0x1.460p-1H #define M_2_SQRTPI_H +0x1.20cp0H #define M_SQRT2_H +0x1.6a0p0H #define M_SQRT1_2_H +0x1.6a0p-1H #pragma OPENCL EXTENSION cl_khr_fp16 : disable #endif #define CHAR_BIT 8 #define CHAR_MAX SCHAR_MAX #define CHAR_MIN SCHAR_MIN #define INT_MAX 2147483647 #define INT_MIN (-2147483647 - 1) #define LONG_MAX 0x7fffffffffffffffL #define LONG_MIN (-0x7fffffffffffffffL - 1) #define SCHAR_MAX 127 #define SCHAR_MIN (-127 - 1) #define SHRT_MAX 32767 #define SHRT_MIN (-32767 - 1) #define UCHAR_MAX 255 #define USHRT_MAX 65535 #define UINT_MAX 0xffffffff #define ULONG_MAX 0xffffffffffffffffUL typedef enum { CLK_LOCAL_MEM_FENCE = 1 << 0, CLK_GLOBAL_MEM_FENCE = 1 << 1, CLK_IMAGE_MEM_FENCE = 1 << 2, // CL2.0 - 6.1.3 } cl_mem_fence_flags; enum { CLK_NORMALIZED_COORDS_TRUE = (1 << 0) , CLK_NORMALIZED_COORDS_FALSE = (1 << 1) , CLK_ADDRESS_NONE = (1 << 2) , CLK_ADDRESS_CLAMP = (1 << 3) , CLK_ADDRESS_CLAMP_TO_EDGE = (1 << 4) , CLK_ADDRESS_REPEAT = (1 << 5) , CLK_ADDRESS_MIRRORED_REPEAT = (1 << 6) , CLK_FILTER_NEAREST = (1 << 7) , CLK_FILTER_LINEAR = (1 << 8) , }; enum{ CLK_SNORM_INT8 = ( 0) , CLK_SNORM_INT16 = ( 1) , CLK_UNORM_INT8 = ( 2) , CLK_UNORM_INT16 = ( 3) , CLK_UNORM_SHORT_565 = ( 4) , CLK_UNORM_SHORT_555 = ( 5) , CLK_UNORM_INT_101010 = ( 6) , CLK_SIGNED_INT8 = ( 7) , CLK_SIGNED_INT16 = ( 8) , CLK_SIGNED_INT32 = ( 9) , CLK_UNSIGNED_INT8 = (10) , CLK_UNSIGNED_INT16 = (11) , CLK_UNSIGNED_INT32 = (12) , CLK_HALF_FLOAT = (13) , CLK_FLOAT = (14) , }; enum{ CLK_R = ( 0) , CLK_A = ( 1) , CLK_RG = ( 2) , CLK_RA = ( 3) , CLK_RGB = ( 4) , CLK_RGBA = ( 5) , CLK_BGRA = ( 6) , CLK_ARGB = ( 7) , CLK_INTENSITY = ( 8) , CLK_LUMINANCE = ( 9) , CLK_Rx = (10) , CLK_RGx = (11) , CLK_RGBx = (12) , #if __OPENCL_C_VERSION__ >= CL_VERSION_2_0 CLK_DEPTH = (13) , CLK_DEPTH_STENCIL = (14), CLK_sRGB = (15) , CLK_sRGBx = (16) , CLK_sRGBA = (17) , CLK_sBGRA = (18) , CLK_ABGR = (19) , #endif }; #if __OPENCL_C_VERSION__ >= CL_VERSION_2_0 typedef struct { /// \brief If the data from the window was written or read. /// Indicates the data corresponding to this window has been read or written. bool is_committed; /// \brief Index of the first element from the reserved window. unsigned index; /// \brief Window size. short count; } __reserve_id_t; #define CLK_NULL_RESERVE_ID NULL typedef struct { unsigned max_num_packets; // pipe capacity unsigned packet_size; // size of single packet (i.e. data element) volatile unsigned count; // number of packets in the buffer volatile unsigned reservation_count; // total number of packets in reserved window volatile unsigned read_start; // offset of the first window reserved for reading volatile unsigned read_end; // offset of the last window reserved for reading volatile unsigned write_start; // offset of the first window reserved for writing volatile unsigned write_end; // offset of the last window reserved for writing volatile atomic_flag mutex; // mutex protecting access to the buffer volatile unsigned read_count; // count the total number of packets read, used for logging only volatile unsigned write_count; // count the total number of packets written, used for logging only // TODO: MPGCOMP-2576 Add pointer to the following implicit members. // The memory allocated for a pipe has the following implicit members: /* Information about reserved windows. Each element of this implicit array corresponds to a packet and indicates whether there is a reserved window starting from the corresponding packet. The array stores information about both windows reserved for writes and windows reserved for reads. These windows can not intersect (e.g. the same window can not be reserved for read and write simultaneously).*/ // __reservation_t reservations[max_num_packets]; /* Data packets. */ // int data[max_num_packets]; } __pipe_t; extern global int * global __pipe_log_buffer; extern global int is_null; /* Add completion status values for events etc */ #define CL_COMPLETE 0x0 #define CL_RUNNING 0x1 #define CL_SUBMITTED 0x2 #define CL_QUEUED 0x3 /* Return status for device-side enqueue */ #define CLK_SUCCESS 0 #define CLK_ENQUEUE_FAILURE -1 /* Event and queue null values - same as pointer NULL in our world */ #define CLK_NULL_EVENT NULL #define CLK_NULL_QUEUE NULL /* Flags for device-side enqueue */ #define CLK_ENQUEUE_FLAGS_NO_WAIT 0 #define CLK_ENQUEUE_FLAGS_WAIT_KERNEL 1 #define CLK_ENQUEUE_FLAGS_WAIT_WORK_GROUP 2 /* Field names for capture_event_profiling_info() */ typedef enum { CLK_PROFILING_COMMAND_EXEC_TIME = 1 } clk_profiling_info; #endif #pragma OPENCL EXTENSION all : disable #if __OPENCL_C_VERSION__ >= CL_VERSION_2_0 #pragma OPENCL EXTENSION cl_khr_3d_image_writes : enable #endif 1.1 2.0 ' requires at least OpenCL C -cl-uniform-work-group-size -g -create-library -enable-link-options -cl-denorms-are-zero -cl-no-signed-zeros -cl-unsafe-math-optimizations -cl-finite-math-only -cl-fast-relaxed-math __ENDIAN_LITTLE__ __IMAGE_SUPPORT__ parameter missing -cl- -cl-single-precision-constant -cl-opt-disable -cl-mad-enable __FAST_RELAXED_MATH__ -cl-strict-aliasing ignoring deprecated OpenCL C option '-cl-strict-aliasing' -cl-arm-non-uniform-work-group-size -cl-arm-svm -cl-std= CL1.1 CL1.2 'CL1.1' and 'CL1.2' unsupported OpenCL C version ' ' (currently supported: -cl-kernel-arg-info unknown OpenCL C option ' -D -w -Werror -Wall -emit= preprocessed frontend transforms pre-converter unknown emit option " -fno-dim-interchange -fno-kernel-unroller multiple kernel unroller options specified -fno-kernel-vectorizer multiple kernel vectorizer options specified -fkernel-unroller -fkernel-unroller= invalid kernel unroller option ' ' (or multiple kernel unroller options specified) -fkernel-unroller-stride -fkernel-unroller-stride= -fkernel-vectorizer -fkernel-vectorizer= invalid kernel vectorizer option ' ' (or multiple kernel vectorizer options specified) -fbasic-block-vectorizer -verify -o -kernel-stats= kernel statistics file already exists -print-available-passes -print-pass-sequence -pass-sequence-from-file= -pass-sequence= -O ignoring invalid optimization level ' -kernel= invalid chunk name '-container= -v -verbose -b midgard64 invalid target name '-b -midgard-core= -midgard-core-revision= -fforce-safe-atomics ignoring deprecated option '-fforce-safe-atomics' -fno-force-safe-atomics ignoring deprecated option '-fno-force-safe-atomics' -revision= -XINITIALIZE_REGISTER_VALUES -print-build-info -print-default-target unknown build option ' unknown compile option ' unknown link option ' unrecognised core/revision combination -I final-opts mid-converter cannot request -container=none with other container options cannot request for container with source code only Kernel transformations are disabled when '-cl-opt-disable' is enabled Kernel transformations are only enabled at optimization level '-O1' and higher t60x t62x t72x t76x t88x t86x t83x t82x Build called before compile. Compiler middle failed (error code Compiler frontend failed (error code encountered invalid build options cannot open source file ' Common module // Program: Linking failed (error code <source> Failed to open directory: ./ invalid kernel name ' error: warning: note: _Z Dv Dh opencl.kernels ocl_image1d_ro ocl_image1d_array_ro ocl_image1d_buffer_ro ocl_image2d_ro ocl_image2d_array_ro ocl_image2d_array_depth_ro ocl_image3d_ro ocl_image1d_wo ocl_image1d_rw ocl_image1d_array_wo ocl_image1d_array_rw ocl_image1d_buffer_wo ocl_image1d_buffer_rw ocl_image2d_wo ocl_image2d_rw ocl_image2d_array_wo ocl_image2d_array_rw ocl_image2d_depth_ro ocl_image2d_depth_wo ocl_image2d_depth_rw ocl_image2d_array_depth_wo ocl_image2d_array_depth_rw ocl_image3d_wo ocl_image3d_rw map::at the OpenCL program contains recursion. The following functions can call themselves: An OpenCL module cannot contain recursion. Contains recursion pass contains-recursion program contains no kernel information program contains invalid kernel information arm_thread_limit_hint kernel_attributes OpenCL kernel statistics kernelstats ] Kernel statistics is possibly collected on an unoptimized IR. This may cause inaccuracy in an argument access type computation. "name": " ", "type": " "scalar_ops": "vector_ops": "int_to_fp": "fp_to_int": "is_kernel": "basic_blocks": "insert_elements": "extract_elements": "shuffle_vectors": "loops": "max_loop_depth": "arguments": [ { , { "llvm_type": " , "addr_space": , "access_qual": " , "cl_type": " , "access_type_qual": " , "access type": W MW R MR } ], "calls": [ "bifls": [ {"name": " "count": {"mangled_name": " "unmangled_name": " "arith_types": { }, "operation_types": { Dv5_ Linker failed. llvm. Symbol definition not found: .v5 BIFL linker failed. invalid source module. Optimizations failed. Add noduplicate attribute Mark functions as noduplicate noduplicate Failed to open file ' ' - using default pass sequence CLCC_PASS_SEQUENCE_FILE Internal error: pass ' ' not initialized properly (out of memory error) ignoring pass ' ' (pass not registered) replace_math_bifs LLVM passes used None Available LLVM passes Replace math built-in functions with native versions native_ Replace math bifs with their native versions Rewrite trivial built-in functions sext_after_is zext_after_is vload vloada fpext vstore cmp_zero_for_vector_select cmp_zero_for_scalar_select Uniform variable analysis uniform-variable-analysis Analyze thread-dependent instructions analyze-thread-dependent Unknown | bif.wd bif.aci bif.pbuf bif.lid bif.gid bif.lsz bif.gsz bif.goffs bif.grpid bif.ng bif.fli __get_first_local_id _Z12get_work_dimv _Z15arm_get_core_idv _Z19__get_printf_bufferv _Z17get_global_offsetj _Z14get_num_groupsj _Z20__get_first_local_idj _Z10atomic_incPU3AS1Vi _Z10atomic_incPU3AS1Vj _Z10atomic_incPU3AS3Vi _Z10atomic_incPU3AS3Vj _Z10atomic_decPU3AS1Vi _Z10atomic_decPU3AS1Vj _Z10atomic_decPU3AS3Vi _Z10atomic_decPU3AS3Vj _Z10atomic_addPU3AS1Vii _Z10atomic_addPU3AS1Vjj _Z10atomic_addPU3AS3Vii _Z10atomic_addPU3AS3Vjj _Z10atomic_subPU3AS1Vii _Z10atomic_subPU3AS1Vjj _Z10atomic_subPU3AS3Vii _Z10atomic_subPU3AS3Vjj _Z11atomic_xchgPU3AS1Vii _Z11atomic_xchgPU3AS1Vjj _Z11atomic_xchgPU3AS3Vii _Z11atomic_xchgPU3AS3Vjj _Z11atomic_xchgPU3AS1Vff _Z11atomic_xchgPU3AS3Vff _Z10atomic_minPU3AS1Vii _Z10atomic_minPU3AS1Vjj _Z10atomic_minPU3AS3Vii _Z10atomic_minPU3AS3Vjj _Z10atomic_maxPU3AS1Vii _Z10atomic_maxPU3AS1Vjj _Z10atomic_maxPU3AS3Vii _Z10atomic_maxPU3AS3Vjj _Z10atomic_andPU3AS1Vii _Z10atomic_andPU3AS1Vjj _Z10atomic_andPU3AS3Vii _Z10atomic_andPU3AS3Vjj _Z9atomic_orPU3AS1Vii _Z9atomic_orPU3AS1Vjj _Z9atomic_orPU3AS3Vii _Z9atomic_orPU3AS3Vjj _Z10atomic_xorPU3AS1Vii _Z10atomic_xorPU3AS1Vjj _Z10atomic_xorPU3AS3Vii _Z10atomic_xorPU3AS3Vjj _Z14atomic_cmpxchgPU3AS1Viii _Z14atomic_cmpxchgPU3AS1Vjjj _Z14atomic_cmpxchgPU3AS3Viii _Z14atomic_cmpxchgPU3AS3Vjjj _Z8atom_incPU3AS1Vi _Z8atom_incPU3AS1Vj _Z8atom_incPU3AS3Vi _Z8atom_incPU3AS3Vj _Z8atom_decPU3AS1Vi _Z8atom_decPU3AS1Vj _Z8atom_decPU3AS3Vi _Z8atom_decPU3AS3Vj _Z8atom_addPU3AS1Vii _Z8atom_addPU3AS1Vjj _Z8atom_addPU3AS3Vii _Z8atom_addPU3AS3Vjj _Z8atom_subPU3AS1Vii _Z8atom_subPU3AS1Vjj _Z8atom_subPU3AS3Vii _Z8atom_subPU3AS3Vjj _Z9atom_xchgPU3AS1Vii _Z9atom_xchgPU3AS1Vjj _Z9atom_xchgPU3AS3Vii _Z9atom_xchgPU3AS3Vjj _Z9atom_xchgPU3AS1Vff _Z9atom_xchgPU3AS3Vff _Z8atom_minPU3AS1Vii _Z8atom_minPU3AS1Vjj _Z8atom_minPU3AS3Vii _Z8atom_minPU3AS3Vjj _Z8atom_maxPU3AS1Vii _Z8atom_maxPU3AS1Vjj _Z8atom_maxPU3AS3Vii _Z8atom_maxPU3AS3Vjj _Z8atom_andPU3AS1Vii _Z8atom_andPU3AS1Vjj _Z8atom_andPU3AS3Vii _Z8atom_andPU3AS3Vjj _Z7atom_orPU3AS1Vii _Z7atom_orPU3AS1Vjj _Z7atom_orPU3AS3Vii _Z7atom_orPU3AS3Vjj _Z8atom_xorPU3AS1Vii _Z8atom_xorPU3AS1Vjj _Z8atom_xorPU3AS3Vii _Z8atom_xorPU3AS3Vjj _Z12atom_cmpxchgPU3AS1Viii _Z12atom_cmpxchgPU3AS1Vjjj _Z12atom_cmpxchgPU3AS3Viii _Z12atom_cmpxchgPU3AS3Vjjj e-i64:64-i128:128-i256:256-i512:512-i1024:1024-i24:32-i48:64-i96:128-i192:256-n8:16:32:64 e-m:e-i64:64-i128:128-n8:16:32:64 bifrost---mbs2 e-m:e-p:32:32-i64:64-i128:128-n8:16:32:64 bifrost32---mbs2 opencl. opencl.image1d_ro_t opencl.image1d_array_ro_t opencl.image1d_buffer_ro_t opencl.image2d_ro_t opencl.image2d_array_ro_t opencl.image2d_depth_ro_t opencl.image2d_array_depth_ro_t opencl.image3d_ro_t opencl.image1d_wo_t opencl.image1d_array_wo_t opencl.image1d_buffer_wo_t opencl.image2d_wo_t opencl.image2d_array_wo_t opencl.image2d_depth_wo_t opencl.image2d_array_depth_wo_t opencl.image3d_wo_t opencl.image1d_rw_t opencl.image1d_array_rw_t opencl.image1d_buffer_rw_t opencl.image2d_rw_t opencl.image2d_array_rw_t opencl.image2d_depth_rw_t opencl.image2d_array_depth_rw_t opencl.image3d_rw_t opencl.sampler_t opencl_event_t opencl.pipe_t_ro opencl.pipe_t_wo opencl_queue_t Program contains recursion Midgard LIR backend: function call checker opencl.llvm2lir.intrinsic. __llvm2lir_large_int_nop_bitcast_ __llvm2lir_irlib_ Error: Function ' ' calls undefined function ' Midgard LIR backend: data layout checker Linker failed Invalid kernel module given as input (contains metadata for interchange). ALT with spilling Entry point: work registers used uniform registers used Number of instruction words emitted: %g + %g + %g = %g Number of cycles for shortest code path unknown (the shader contains printf calls) Number of cycles for shortest code path: %g / %g / %g = %g Number of cycles for longest code path unknown (the shader contains printf calls) Number of cycles for longest code path unknown (the shader contains loops) %g / %g / %g = %g %u_%u_%u%n i%c%c%n __llvm2lir_nop_bitcast __llvm2lir_convert __llvm2lir_as __unaligned_store_ __llvm2lir_unaligned_store __unaligned_load_ __llvm2lir_unaligned_load __midgard_read_image_weights __midgard_read_image_gatherr __midgard_read_image_gatherg __midgard_read_image_gatherb __midgard_read_image_gathera __midgard_read_image_gather4 __midgard_read_imagef __midgard_read_imageh __midgard_store_attrf __midgard_store_attri __midgard_store_attrui __midgard_store_attrh __accurate_f32_divide __fmin_nan __fmax_nan __subvector_access __llvm2lir_memcpy __midgard_sincos __midgard_get_local_id __midgard_get_group_id __midgard_get_global_id __midgard_double_fma_up __midgard_double_fma_down __midgard_double_fma_trunc __midgard_double_rsqrt __midgard_double_recip __midgard_ld_special __midgard_convert_sampler_to_ushort __midgard_convert_image_to_ushort __llvm2lir_va_start __llvm2lir_va_end __llvm2lir_va_copy __llvm2lir_nop __llvm2lir_llvm_expect __llvm2lir_llvm_annotation __llvm2lir_entry_ kernel_param_ x BC 5 b 0$LY >-U ! T$ # A I 29 % b $E B B$ 2 8 K 2 H CF 2B H $ PAQ IF Q b 6 D 1 @ I @ & ( 1L c 2"H d $ $ L $M R P a ( T a (C H ` ` 0G e A M F( 2T P , 9 2d @ m D b` A a 4P b` @ 4 @ @ ( $0 @' ` F " XA, .\ a (B $c 1 @ F " A8 F " A= ?~ a ) !4d a P F " ABI K a a = F V Q a b @ U F@V W a h E m) e A F " Cc e a D* 4 f f ) f A F " Ct v a (B < g ) B 0 * BH A * 8 B X a %* x B| 5* 9 B p E* ~ B A U* ; B ! e* ! B ) u*D < B *D " B A * > B * $ B Y a ( W k Ax " E ( Zdk x " E ( ] k z " E + 4 \P " A %+ 4 h( 4 P4#0 P i 0 jF $H @ F -[ l m A Bp u F r } F ( 8q a $7 Q \ rdn B C + W ^ B %K +D Z j B + ] v B ( { a > O >} o a B F H ( a > a A t P H E zX (b h E * ], { ( 0Bq e q#q, = "H G" , d 6 2 T A ! E ! q F 9 0 PhS 6 0h 6 h C < y 0 9 ` ` ! C < y @ 0 ` c g @ ! C < y& X 0 ` @ ' ` 3 0 ) y <l C 7 @ ! ` 0 y@ < C S @ !O* ` 0 yp < C ^ @ ! 8 g ` c 0 I y <i C = @ !O/ ' ` 0 y <o C P @ ! 8 ` # 0 y <u C S @ !O: ` 0 I y <! C @ !OI $ ` 0 Y y^ <1 C @ !OM & ` 0 y~ <a C @ !OY , ` 0 Y y <! C @ !OI $ ` 0 Y y^ <1 C @ !OM & ` 0 y~ <a C @ !OY , ` 0 Y y <i C = @ !O/ . ` 3 0 y < C @ ! h 4 ` s 0 I y\ < C ! m 5 ` 0 y\ < C ! m 5 ` 0 y\ < C ! m 5 ` 0 yt < C ! x < ` 0 Y y < C !O} ? ` 0 yH <' C !O gE ` " 0 y yf <5 C !O G ` #@ 0 y <f C 4 !O C <j C 6 ! G7 ` @ 0 q y < C x ! ` @ 0 y@ < C { ! g ` c @ 0 yL < C ~ ! ' ` @ 0 q y < C x ! ` @ 0 y@ < C { ! g ` c @ 0 yL < C ~ ! ' ` @ 0 y < C ! G ` '@ 0 h 09 5 _ x]v _c x M i P4 Z 3 f = C8 B yx s q 3 B f0 = C8 = C= = x tp { yH pp zp vx p 0 n0 P 3 ! ! a f0 ; ; C9 < < ; v` {h 7h rh 7 p p` v( v vx w _ q r y , 0 b a ! a C9 C9 C9 C9 8 C8 ; / < ; ; i pX rp th x` t t S P @ P 3 ( A ! f Q8 C: ; P$v` {h 7` wx x r( w zXp C= 8 C9 A ! ! a A U H Ad f( \v( ` a A U H Ad f( \v( ` a A T H Ad f( \v( ` a A T H Ad f( \v( ` a A U H Ad f( \v( ` a A U H Ad f( \v( ` a A T H Ad f( \v( ` a A T H Ad f( \v( ` a A Y f( \v( ` a A U H Ad f( \v( ` a A T H Ad f( \v( ` a A T H Ad f( \v( ` a 1 A, to A A A # G # A! + % RF 5 RF # ` & X 1( 1 H V ! n 3 n "4 n $3 n &4 n (3 n *4(c 2 - -! " - n 0( ` ! f( \v( ` a 9 A, q A A A A A A $@ A A A A A A A A # Gl #6 A! I* % RF 5 RF # ` & T H5A\ *0d @ D " 2 *B A2 bB 2 B 2 - - - 2 -! 0 (0 n ! f( \v( ` a ! A, to A A A # A H W + A! I+ % RG 5 R "u r z ^U` I b ! * I(" f( \v( ` a 4 A, q A A A A A A $@ A A A A A A A A A @ A A Wl +6 A! * % RG 5 R "u rA z `cU` I b ! * I(" f( \v( ` a 7 A, to A A A # 5P # ` # ` 1bP ` A D A! , 4" ' A! - 2bP br B` k2 B 2 B 2 C 2 - - - 2 -! 0 a0 2 f( \v( ` a M A, q A A A A A A $@ A A A A A A A A # c ? XE A # `@& ` 1bP f A D A! + 4RO # `@& T` A! - HRE 0 `Mf0 pQh0 @Tf0 PXh0 ]f0 ahP e Z % ZB E Z % ; a@ tC PB f( \v( ` a ! A, to A A A # A HB g 3 A! + % RH 5 RA"u r ^U` I k ) ! f( \v( ` a 6 A, q A A A A A A $@ A A A A A A A A A @ A A XE A0 gl 36 A! * % RH 5 RA"u rA `cU` I k ) ! f( \v( ` a l L, $a I( bP H [$ p ,C`$ 7, 2 K0P!5 $ T0 D . 0 <f0 P, @ q - @ n 6 ! @0 `df0 P, , P f TH @ xpl P ` $ pC` h0 , A 0 2(K0P , \ A6 @ a @0 ` 2(K @$ < L p K ? n V)P >] Wp K ? n M (P b4 *P O )P O &+P O ` K ? Q ) <S49H3 ) <S49H3 ' OD 0 o "U L B ? q @D (0,D a l L, $a I( bP H [$ p ,C`$ 7, 2 K0P!5 $ T0 D . 0 <f0 P, @ q - @ n 6 ! @0 `df0 P, , P f TH @ xpl P ` $ pC` h0 , A 0 2(K0P , \ A6 @ a @0 ` 2(K @$ < L p K ? n V)P >] Wp K ? n M (P b4 *P O )P O &+P O ` K ? Q ) <S49H3 ) <S49H3 ' OD 0 o "U L B ? q @D (0,D a l L, $a I( bP H [$ p ,C`$ 7, 2 K0P!5 $ T0 D . 0 <f0 P, @ q - @ n 6 ! @0 `df0 P, , P f TH @ xpl P ` $ pC` h0 , A 0 2(K0P , \ A6 @ a @0 ` 2(K @$ < L p K ? n V)P >] Wp K ? n M (P b4 *P O )P O &+P O ` K ? Q ) <S49H3 ) <S49H3 ' OD 0 o "U L B ? q @D (0,D a , L, ` 1 , d !8 ` a( $ , ,@0K@Xa ` @ %Xf 2 2 4h0 ( d ` " %H `@0Kp , v(0T b 6)@ O 0H % ) ( T9 0! a B4 a , L, ` 1 , d !8 ` a( $ , ,@0K@Xa ` @ %Xf 2 2 4h0 ( d ` " %H `@0Kp , v(0T b 6)@ O 0H % ) ( T9 0! a B4 a , L, ` 1 , d !8 ` a( $ , ,@0K@Xa ` @ %Xf 2 2 4h0 ( d ` " %H `@0Kp , v(0T b 6)@ O 0H % ) ( T9 0! a B4 a A, d % X p% A8 f( \ a A, b, A % X p% A8 f( \ a A, b A % X p% A8 f( \ a A, c, A % X p% A8 f( \ a A, Dc, A A % X p% A8 f( \ a A, tc, A A A A % X p% A8 f( \ a A, @ ' A0H .` WF A0H .` U A8 f( \ a A, c, ' A0` . WF A0` . U A8 f( \ a A, c ' A0x . WF A0x . U A8 f( \ a A, $d, ' A0 . WF A0 . U A8 f( \ a A, Td, ' A0 .( WF A0 .( U A8 f( \ a A, d, ' A0 .@ WF A0 .@ U A8 f( \ a A, @ 70 A0 .X WG A0H .X U A8 f( \ a A, @ -) r2 ") W A0 .p WI A0` .p U A8 f( \ a A, @( (s ) ") W A0 . WI A0x . U A8 f( \ a A, @ -) 2 ") ") W A0 . WI A0 . U A8 f( \ a A, @ -) 2 ") ") ") ") W A00 . WI A0 . U A8 f( \ a " A, @H -) 2 ") ") ") ") ") ") ") ") W A0H . WI A0 . U A8 f( \ a A, $ '0 A0 . WF 0 A0 . U A8 f( \ a A, e, ' A0 . WF A0 . U A8 f( \ a A, $f ' A0 . WF A0 . U A8 f( \ a A, Tf, ' A0 .( WF A0 .( U A8 f( \ a A, f, ' A00 .@ WF A00 .@ U A8 f( \ a A, f, ' A0H .X WF A0H .X U A8 f( \ a A f( \ a A f( \ a A A f( \ a A f( \ a A d f( \ a A d f( \ a A A d f( \ a A d f( \ a A d f( \ a A d f( \ a A B d f( \ a A d f( \ a A d f( \ a A d f( \ a A B d f( \ a A d f( \ a A d f( \ a A d f( \ a A B d f( \ a A d f( \ a A d f( \ a A d f( \ a A B d f( \ a A d f( \ a A, # ` ~@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, d @ # ` }@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, # ` |@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, $ # ` {@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, g, A # ` z@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, b, # ` y@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, c, # ` x@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, e, @ # ` w@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, 4g A # `@ v@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, b # ` u@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, c # ` t@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, $f @ # `0 s@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, dg, A # `p r@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, c, # ` q@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, $d, # `0 p@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, Tf, @ @ # `` o@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, g, A A # ` n@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, Dc, # `P m@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, Td, # `` l@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, f, @ @ @ @ # ` k@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, g, A A A A # ` j@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a A, tc, # ` i@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a " A, d, # ` h@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a " A, f, @ @ @ @ @ @ @ @ # ` g@ 0D Ad ( 8 KHF %M G D- - $ P ) ( !Q d e " 9? D a + A, J F u \ % :bP @ A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a + A, d J @F u \ % :bP i0 A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a + A, J F u \ % :bP z A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a + A, $ J F u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a - A, g, ? c,! d u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a - A, b, `,! h u \ % :bP l A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a / A, c, `, ` u \ % :bP } A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a 1 A, e, `, @a u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a - A, 4g ? ? k@ d u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a . A, b ` ! F u \ % :bP o A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a 1 A, c k ` F u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a 4 A, $f @ @a u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a . A, dg, ? ? c," `, A d u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a 0 A, c, `," `, h u \ % :bP rp A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a 3 A, $d, a," `, ` u \ % :bP ` A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a 7 A, Tf, g," `, @ @a u \ % :bP P A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a 1 A, g, ? ? ? ? c,$ `, A A d u \ % :bP @ A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a 4 A, Dc, `,$ `, h u \ % :bP u0 A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a : A, Td, a,$ `, ` u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a C A, f, g,$ `, @ @ @ @a u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a 7 A, g, ? ? ? ? ? ? ? ? c,( `, A A A A d u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a = A, tc, `,( `, h u \ % :bP x A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a I A, ! d, a,( `, ` u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a [ A, 3 f, g,( `, @ @ @ @ @ @ @ @a u \ % :bP A A 70 L7,B A8 ( 8 KHF %M G D- 9 , % NC ", Lf( \ (P4 _&) [ t 9 ( K # CMv( S @ )`D D- a ) A, 5 T W $X 5 [Ar $Z (ZC ,W % A8 &) 8 ] NT f(0T b = 4Cn tD ] D5o E 9 @3 @ 4C}[ ! Q Q a 9 A, d Z T 9 * <y (W 0X 5 [ s 0Z 4ZC 8W 5@X 5 [ t%DXB V) 8 i NT f(0T b I 4Cn } NT )@ @! K [ ! Qo )0 ` vm tD6o m tD ~ )P P *pHGd wm t,: a H A, Z Z T U 3g 9s * > <y @ 4WA =X 5 [ s <ZC @ZC DWA 5LX 5 [ t LZC PZC TW % A8 & ) 8 q f(0T b e @3 &*@8Q][ m @3 v*@8Q 4 n t, m ] Y @! QM[ @! M @! K 4 @3 u N [ @ 4C Dvm t, } a b A, $ Z Z Z Z5 T U U U U 3g 3g 9s 9s * >| <y = ? @* AW 5IXA 5 [ t HZ LZC PW 5XXA 5 [ u XZ \ZC `W 5hXA 5 [ v%lXB / ) 8 NT )@ P 4 m t, )@ D n @3 )0HGd tD5m t,5o tDun )@H r ! o tD Dvm ] @3X @! @ 4Cm @ 4C @ 4C [ @ 4C a A8 f( \ a A8 f( \ a A8 f( \ a A8 f( \ a A8 f( \ a A8 f( \ a W A8 f( \ a Y A8 f( \ a Z A8 f( \ a \ A8 f( \ a ] A8 f( \ a _ A8 f( \ a A, U P % W AB 6 B A8 ( H RLDH D /! a S Q 8 - ! B DH a A, d @ U P % W AB 6 B A8 ( H RLDH D /! a S Q 8 - ! B DH a A, h U P % W AB 6 B A8 ( H RLDH D /! a S Q 8 - ! B DH a A, $ U P % W AB 6 B A8 ( H RLDH D /! a S Q 8 - ! B DH a + A, F e PD % W (\ % : $h0 lC ( H RLDH D /! a S Q 8 I DNED X DH _ 1 ! B DH D e H 1 !Y B DH D? a + A, d @F e PD % W (\ % : $h0 lC ( H RLDH D /! a S Q 8 I DNED X DH _ 1 ! B DH D e H 1 !Y B DH D? a + A, F h e PD % W (\ % : $h0 lC ( H RLDH D /! a S Q 8 I DNED X DH _ 1 ! B DH D e H 1 !Y B DH D? a + A, $ F e PD % W (\ % : $h0 lC ( H RLDH D /! a S Q 8 I DNED X DH _ 1 ! B DH D e H 1 !Y B DH D? a A, U Q % W A" 6 B A8 ( H RLDH D /! a S Q 8 - ! B DH a A, d @ U Q % W A" 6 B A8 ( H RLDH D /! a S Q 8 - ! B DH a A, h U Q % W A" 6 B A8 ( H RLDH D /! a S Q 8 - ! B DH a A, $ U Q % W A" 6 B A8 ( H RLDH D /! a S Q 8 - ! B DH a ) A, F e QD % W $\ % : $h0 lC ( H RLDH D /! a S Q 8 I DNED X DH _ 1 ! q E @ ) G _N _ ( 0 a ) A, d @F e QD % W $\ % : $h0 lC ( H RLDH D /! a S Q 8 I DNED X DH _ 1 ! q E @ ) G _N _ ( 0 a ) A, F h e QD % W $\ % : $h0 lC ( H RLDH D /! a S Q 8 I DNED X DH _ 1 ! q E @ ) G _N _ ( 0 a ) A, $ F e QD % W $\ % : $h0 lC ( H RLDH D /! a S Q 8 I DNED X DH _ 1 ! q E @ ) G _N _ ( 0 a % A, d` W + D \ 0 5 8 a0 lC (`\ 1 o! a d 5 ! 2 ) 8 c 9 ! @ D /! [ @ a % A, ` W0 + D \` ` 5 8 a0 lC (`\ 1 o! a d 5 ! 2 ) 8 c 9 ! @ D /! [ @ a % A, $a WH +$D \ 5 8 a0 lC (`\ 1 o! a d 5 ! 2 ) 8 c 9 ! @ D /! [ @ a 6 C, $a H Y u 2 p `0 A G \ " 2 4a0K Th 6 B A8 &) H !( ( 8 KHF TDT, R A 5 ! @!M@4] 38 T p b # c S Q 8 = `' ; cY B DH a / A, d @ g 3 A. % Y E W D 6 B A8 (`\ 5 o! a d = ! 2 F) E K D ) D o! a t o! a S Q 8 9 4Nd A ! a / A, g0 3 A.0 % Y E W D 6 B A8 (`\ 5 o! a d = ! 2 F) E K D ) D o! a t o! a S Q 8 9 4Nd A ! a / A, $ gH 3$ A.` % Y E W D 6 B A8 (`\ 5 o! a d = ! 2 F) E K D ) D o! a t o! a S Q 8 9 4Nd A ! a J D, $a j H @ $2 `0 0 p p A 2 BPI e W # `0 H 7 S ` 60 0 A @ - &) \?" H3 3HCI ( 8 KHF @2 / X TDT, R A A ! @!M@4 38 T p b # c S Q 8 U `F)0 H !(?" T# q L S Q 8 8 A ? / a H 1 ! a B A8 f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a B A8 f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a 2 A @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A T @ @ f( v( ( a A, a f(P,DE, a A, a f(P,DE, a A, $a a A, % A8 f(@L C a A, % | f(@L C a A, % | f(@L C a A, % | f(@L C a A, % | f(@L C a a C, $ ? ? 7 ? "c I(@@@@@@@ P H - = v @ r $l _po+ {[ I 4-A m v @ rD E. ^poK C A0 8 {;b` 9B BPA! r {[ A # A 10 ! : # ` # P ' v @ r ` @ d$ b @ F ?Pa 18 P ! * F ?X! ` @ `(* ` Y ! n p @ T( A ~ B`h# ` ,G ! - B7bp q 2 ~ B B ! . O0bp Y@L7@ s ->@ .! m @ F*` ,un ,K ! *` 9 ,9n ,K^ ! 6-` ,6m , m[ ! b *` ,vn , [ ! ,0 c , ! f-` @!0O ! f)P *00 b , m , n ,K~ L f , n , n ,Ko C- n C- m m D -` E m , n [ xl [ l , ] @q9 ^ ! r -` % ] @3 +` Q ,wo , n , n 8 O4 e a ,8m , ^ ! ,` ,8n , [ ! f,` ! ! .` @3 U , *P P *` , a A, Ta A A A A A A D@ A A A A A A A A A A A ?@ A A A A A A A A A ? *@ A A A A A A A ! A A @ A A A A A ?@ A A A A A A A A A ? * ? A A A A A A A /@ A A A A b A A AP A A A @ A A A A A A A AP A A A ?@ A A A A D A A A A A ?h X " 2V ? ? P A A A A A A A ?@ A A A A c T - 6 = w @ x$ *l _ q+ [ U 4-A 6 m w @ x E. ^ qK ` l C A0 6 ;b` < BPA! rA [ A # ` 10 ! : # ` #P ' w @ x ` @ $ b @ D F NFa 18 8) ! * F NN! ` @ `(* ` * n 2 @ A 7 % [ P 1bp p2 B , x # ` ' a0bp pb 3 B B ! I. S0bp p ]@L7P sA -P` .! 6n @ F*` ,un ,K ! *` = ,9n ,K^ @ P @q9 ] ! b *` , m , ! b +` 9 qM ,0 c , ! f-` @!0O @!0O @! R P a , e , i , D3E m , u , } , 1 @3 q ! -` m , n [ xl [ l , ] ! r -` % ] @3 +` ,{m , @!0O ! )@ [ ! +` U ] , m D\S @!Q ~[ @ P @ P [ @!Q @q9 @ P ! +` ,xm , n[ ! &,` ,xn , ! ,` @3 U , *P P *` , q R "d D H9@ /K H , @ ? #8T3u / f , c/H # T /LK W @ h , c/H # T ?E c g 2 @4 C O ] /K H , : } )d R1 D? -H /K 2EDED #:n ? L]u y /K H , U # > ` R1 D? -H /K 8 _ 3c R1 D? -H /K C- 0 ^ >Yg /K H , > /K H , K 0 2 S Q 8 <^ /K H , <~e# p #` R1 D? -H /K 4e~ # 0l R1 D? -H /K C- L TDT, # m "` R1 D? -H /K 4e~u#: C a R1 D? -H /K 8 _ H k ] T D RD0] k T D R1~ Y W . cx , c/H # T /LK # e R1 D? -H /K H ?5 J T D R1 4 M S a ] T D T a R1 D? -H /K d _ H r@ w EQ l 6 T D R1~ P 0 ~ : ; a R1 D? -H /K 8 _ H | < C5SW +g R1 D? -H /K TD4 E 0~ *l l , c/H # X x WW 0\C , c/H # T !L > & 3 8 P U r@ 7 \] [r@ 7 \] | < C5SW /K H , <>R Y! , c/H # T H U #8 ? /K H OE 3 8 P U / j " T D R1~ P 0 ~ P ` R1 D? -H /K d~e# -l R1 D? -H /K 0 L TDT, # *g R1 D? -H /K TD4 Wv [| , c/H # T /L 0 T D R1 0- _ H d@ T D R1>%Q o! ; c H +l 1 T D R1~ P 0 ~u : ? /K H /E #IJt , c/H # T /L <[x , c/H # T /L L /K H , m ) R1 D? -H /K d~ # )z /K H , U #: 1k R1 D? -H /K C- L TDT, # J /K H , S 2 S Q 8 : , c/H # T H | , c/H # T /LS W< k^ I T D R1 0M _ : : , c/H # T /LK W7R J O3 , c/H # T 5 0D $ D T D R1~ Y W<R s{ , c/H # T /L d^ /K H , <~e#: q $` R1 D? -H /K 4e~ #: 1l R1 D? -H /K C- L TDT, #: k R1 D? -H /K 0NE C# : /K H , K 0 2 S Q 8 B9 T D R1~ Y # 1 b R1 D? -H /K d _ : - , c/H # T H r s /K H , R /K H , <~e#8 .l R1 D? -H /K D L TDT, # 1l R1 D? -H /K C- L TDT, # ` v R1 D? -H K tU ? a R1 D? -H /K 8 _ H [ } ? P B U ? ? ] T D TD0] ka@ J T D R1 4 M~ 9 _ S Zq , c/H # T T ?5 k ] T D RD0] & R1 D? -H /K d b /K H , <~U H + T D R1 0- _ m o ] T D T] C+ v R1 D? -H S , < /K H , Wx % , c/H # T /LK W6 J > , c/H # T H F /K H , K 0 2 S Q 8 ? 3 ` , _0 ?ET# ` ? puU # E a R1 D? -H /K 8 _ m d T D R1 $ 0IHF H M /K H , +n g T D R1 $ 0IHF " a R1 D? -H /K d _ m T D R1 0- _ H k uE T D R1~ Y W6 r , c/H # T /8MED ?9~u O +h T D R1 P o! ; c m+ E T D R1 0= W8r -,YW / ?E T D R1~ Y W< | , c/H # T /L T \ TD4 4 : f| , c/H # T /LK W6 2 @4 C S 0 l , c/H # LW 6 -,YW x d]U ? k R1 D? -H /K 0NE s# | , c/H # T /LS W6 [x d]U , /K H , <> ! , c/H # T /L U # m ? u -,YW ? a R1 D? -H /K d _ H w d] (S /K H , <~u#8 5 ? /K H _ H5 5 , c/H # T /LK W< p -, ` ? u KZ , c/H # T OIT [ t NED X> jgj , c/H # T /LS W Z O# , c/H # T _D C d ? ! l , c/H # 4 UW p -, 3d R1 D? -H /K C- 0 U ? /K H /E p -, d ? 4 M P B 4e] _ /K H , <~ # b o /K H , V-n /K H , ^ \ /K H , K 2 S Q 8 E /K H , hZ /K H , <~ #: ` v R1 D? -H S tU R /K H , F s NS /Nc 4 ] /K H , NS ]< j ! /K H , z l , c/H # ? LW :R= , c/H # T H m{x , c/H # T /LS # . a R1 D? -H /K d _ q@ 7 \]e kh T D R1 P o! ; c kP E T D R1 0= W8 F 3 8 P U /hk@( T D R1~ P 0 ~U m @ x 0 } < C5SW ?b ? tGwt /K H , NS O _ z @ ? #8T3u /: ;3 , c/H # T _0 _ E y < C5 ` ? L] & b /K H , <~U +f T D R1 $Q o! ; c m y < C5 *g R1 D? -H /K TD4 Wx /K H , S /K H , <~ #8o ? L /K H , NS O _ S @ , c/H # T O [ t NED X>R V 3 8 P $ ; T D R1 0M _ H R1 D? -H /K d~ # >@3 ? /K H OE U A , | K U / ^< T D R1~ L Q D H k D T D R1>C0 1 > & -,YW ? n " /K H , 6 -,YW ? /K H /E ,* ] T D T d /K H , m e T D R1 $Q o! ; c o ? u K U , c/H # T /LK W8 g 2 , c/H # T SDTD$ > @ w 0 t T D R1 0M _ H f & T D R1> P o! ; c o ? tU &( 3^0H U ? D+l l , c/H # ? h L T D R1~ P 0 ~Q : l , c/H # ?5 UW m ? P B ! +k R1 D? -H /K 0 L TDT, # |3 j o , c/H # T /L P?3 , c/H # T _0 _ m+c T D R1> o! ; c m i T D R1~ P 0 ~ / a R1 D? -H /K d _ m b T D R1~D !8T3 /K H , /K H , ;AB d +l l , c/H # ? $)j L T D R1~ P 0 ~q B , c/H # T SDTD$ >r z , c/H # T /8MED _D Wx Q , | K U / l@9 T D R1~ P 0 ~U +b J T D R1 4 M~ 9 _ S Q , c/H # T DL s# Y , | K U ~@ < C5SW / u d]u h[| , c/H # T /L H p 2 @4 C G <] D ? #8T3uU U , | K U / ~@ < C5SW ( T D R1 0M _ m z < C5SW /l R1 D? -H /K D L TDT, #: i ` R1 D? -H /K 4e~e#: 3c R1 D? -H /K C- 0 ] D ? #8T3uU @ ? #8T3u #j , c/H # T /L U # $ @ ? #8T3u / U , c/H # T /LK W & /K H , NS U O [z < C5SW : ` R1 D? -H /K 8 _ w &a R1 D? -H /K 4e~U H +k % T D R1~ P 0 ~ e /K H , M E T D R1 0= W6R 9 , c/H # T /LS W8R , c/H # T O1 [ t NED X>R `[C , c/H # T !L >r 18! , c/H # T H U # n ? u p s NS , M 4c R1 D? -H /K C- 0 ] i , | K U (M R1 D? -H /K 8 m , | K U k@. T D R1~ P 0 ~e : ^ ` R1 D? -H /K d~U o ? u K , c/H # T O [ t NED X> 4 T D R1 0- 3 8 P U / { < C5SW ? b /K H , Midgard LIR backend: IR converter __sampler Midgard LIR backend: remove ConstantExpr's vector_const_expr_combiner aggregate_const_expr_combiner binary_constant_expr cast_constant_expr gep_constant_expr cmp_constant_expr extract_element_constant_expr insert_element_constant_expr shuffle_vector_constant_expr extract_value_constant_expr insert_value_constant_expr Midgard LIR backend: remove large ints llvm.sadd.with.overflow. llvm.uadd.with.overflow. llvm.ssub.with.overflow. llvm.usub.with.overflow. llvm.smul.with.overflow. llvm.umul.with.overflow. llvm.objectsize. llvm.bswap. llvm.ctpop. llvm.ctlz. llvm.cttz. to_ from_ llvm.uadd.with.overflow.i64 llvm.usub.with.overflow.i64 llvm.ctpop.i64 llvm.ctlz.i64 llvm.cttz.i64 from_vec _to_ _to_vec Midgard LIR backend: software workaround remover write_image Midgard LIR backend: rewrite LLVM-IR library calls bitcast_to_i8_ptr srem urem sdiv udiv fdiv powi memmove memset objectsize ctpop uadd usub umul ssub smul ctlz len_arg_i64_type llvm.memmove.p i8.p i8.i64 llvm.memset.p llvm.objectsize.i sext_for_intrinsic_function zext_for_intrinsic_function extract1_after_intrinsic_function trunc_after_intrinsic_function insert0_after_intrinsic_function insert1_after_intrinsic_function sadd cttz extract0_after_intrinsic_function sqrt:s:n:y pown:s:n:n sin:s:n:y cos:s:n:y pow:s:n:y exp:s:n:y log:s:n:y fabs:s:y:y fma:s:y:y __llvm2lir_llvm_expect:s:y:y __llvm2lir_llvm_annotation:s:y:y memcpy __llvm2lir_memcpy:s:y:y va_start __llvm2lir_va_start:s:y:y va_end __llvm2lir_va_end:s:y:y va_copy __llvm2lir_va_copy:s:y:y var.annotation __llvm2lir_nop:s:y:y lifetime.start lifetime.end pcmarker dbg CLCC 7 6 MBSXh MBS2X VEHW CCOM8 CMMN VELA SSYM SSYM SSYM\ SYMBp STRI kernel_param_0 TYPE( TPPO TYPE TPGE RLOC SYMB\ STRI kernel_param_1 ( TYPE TPGE RLOC SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SSYM SSYM SSYM UBUF , EBIN RLOC RLOC RLOC FSHA STRI __llvm2lir_entry_fill_buffer_1 OBJC@ Y " n n j{ @G A { @ KERN STRI fill_buffer_1 KPAR, STRI buffer STRI kernel_param_0 KPAR, STRI pattern STRI kernel_param_1 KRNL @ , - , MBSXh MBS2X VEHW CCOM8 CMMN VELA SSYM SSYM SSYM\ SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMBp STRI kernel_param_0 TYPE( TPPO TYPE TPGE RLOC SYMB\ STRI kernel_param_1 ( TYPE TPGE RLOC SSYM SSYM SSYM UBUF , EBIN RLOC RLOC RLOC FSHA STRI __llvm2lir_entry_fill_buffer_2 OBJC@ Y * n j n{ { @G A @ KERN STRI fill_buffer_2 KPAR, STRI buffer STRI kernel_param_0 KPAR, STRI pattern STRI kernel_param_1 KRNL @ , ; , MBSXh MBS2X VEHW CCOM8 CMMN VELA SSYM SSYM SSYM\ SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMBp STRI kernel_param_0 TYPE( TPPO TYPE TPGE RLOC SYMB\ STRI kernel_param_1 ( TYPE TPGE RLOC SSYM SSYM SSYM UBUF , EBIN RLOC RLOC RLOC FSHA STRI __llvm2lir_entry_fill_buffer_4 OBJC@ Y * n j n{ { @G A KERN STRI fill_buffer_4 KPAR, STRI buffer STRI kernel_param_0 KPAR, STRI pattern STRI kernel_param_1 KRNL @ , I , MBSXh MBS2X VEHW CCOM8 CMMN VELA SSYM SSYM SSYM\ SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMBp STRI kernel_param_0 TYPE( TPPO TYPE TPGE RLOC SYMB\ STRI kernel_param_1 ( TYPE TPGE RLOC SSYM SSYM SSYM UBUF 0 EBIN RLOC RLOC RLOC FSHA STRI __llvm2lir_entry_fill_buffer_8 OBJC@ Y " j n n{ @G { KERN STRI fill_buffer_8 KPAR, STRI buffer STRI kernel_param_0 KPAR, STRI pattern STRI kernel_param_1 KRNL @ , W , MBSXh MBS2X VEHW CCOM8 CMMN VELA SSYM SSYM SSYM\ SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMBp STRI kernel_param_0 0 TYPE( TPPO TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SSYM SSYM SSYM UBUF 8 EBIN RLOC RLOC RLOC FSHA STRI __llvm2lir_entry_fill_buffer_16 OBJC@ Y " j j n{ @G { A L KERN STRI fill_buffer_16 KPAR, STRI buffer STRI kernel_param_0 KPAR, STRI pattern STRI kernel_param_1 KRNL @ , e , MBSX MBS2 VEHW CCOMx CMMN VELA SSYM SSYM SSYMl SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMBp STRI kernel_param_0 @ TYPE( TPPO TYPE TPGE RLOC SYMBl STRI kernel_param_1 TYPE TPGE RLOC RLOC SSYM SSYM SSYM UBUF H EBIN RLOC RLOC RLOC RLOC FSHA STRI __llvm2lir_entry_fill_buffer_32 OBJC` Y " j j n{ @G { A L X n{ A L KERN STRI fill_buffer_32 KPAR, STRI buffer STRI kernel_param_0 KPAR, STRI pattern STRI kernel_param_1 KRNL @ , t , MBSX( MBS2 VEHW CCOM CMMN\ VELA SSYM SSYM SSYM SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset @ TYPE TPGE RLOC SYMBp STRI kernel_param_0 ` TYPE( TPPO TYPE TPGE @ RLOC SYMB STRI kernel_param_1 TYPE TPGE @ RLOC RLOC RLOC 0 RLOC 0 @ SSYM SSYM SSYM UBUF h EBINd RLOC RLOC RLOC RLOC RLOC 0 RLOC 0 @ FSHA STRI __llvm2lir_entry_fill_buffer_64 OBJC Y " j j n{ @G { A L X xn{ A L X n{ A L X n{ A L KERN STRI fill_buffer_64 KPAR, STRI buffer STRI kernel_param_0 KPAR, STRI pattern STRI kernel_param_1 KRNL @ , , MBSX, MBS2 VEHW CCOM CMMN` VELA SSYM SSYM SSYM SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMBp STRI kernel_param_0 TYPE( TPPO TYPE TPGE RLOC SYMB STRI kernel_param_1 TYPE TPGE RLOC RLOC RLOC 0 RLOC 0 @ RLOC @ P RLOC P ` RLOC ` p RLOC p SSYM SSYM SSYM UBUF EBIN( RLOC RLOC RLOC RLOC RLOC 0 RLOC 0 @ RLOC @ P RLOC P ` RLOC ` p RLOC p FSHA STRI$ __llvm2lir_entry_fill_buffer_128 OBJC Y " j j n{ @G { A L X m{ A L X n{ A L X 8n{ A L X Xn{ A L X xn{ A L X n{ A L X n{ A L KERN STRI fill_buffer_128 KPAR, STRI buffer STRI kernel_param_0 KPAR, STRI pattern STRI kernel_param_1 KRNL @ , , MBSX MBS2 VEHW CCOMx CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI$ __llvm2lir_entry_fill_image1d_int4 OBJC@ Y n j{ A @ | KERN STRI fill_image1d_int4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , , MBSX MBS2 VEHW CCOMx CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI$ __llvm2lir_entry_fill_image1d_uint4 OBJC@ Y n j{ A @ | KERN STRI fill_image1d_uint4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , , MBSX MBS2 VEHW CCOM| CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI( __llvm2lir_entry_fill_image1d_float4 OBJC@ Y n j0 @. @ | KERN STRI fill_image1d_float4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI, __llvm2lir_entry_fill_image1d_buffer_int4 OBJC@ Y n j{ A @ | KERN STRI fill_image1d_buffer_int4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI, __llvm2lir_entry_fill_image1d_buffer_uint4 OBJC@ Y n j{ A @ | KERN STRI fill_image1d_buffer_uint4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI, __llvm2lir_entry_fill_image1d_buffer_float4 OBJC@ Y n j0 @. @ | KERN STRI fill_image1d_buffer_float4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI, __llvm2lir_entry_fill_image1d_array_int4 OBJC@ Y " n j{ A @ | KERN STRI fill_image1d_array_int4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , ) , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI, __llvm2lir_entry_fill_image1d_array_uint4 OBJC@ Y " n j{ A @ | KERN STRI fill_image1d_array_uint4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , A , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI, __llvm2lir_entry_fill_image1d_array_float4 OBJC@ Y " n j0 @. @ | KERN STRI fill_image1d_array_float4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , Z " , MBSX MBS2 VEHW CCOMx CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI$ __llvm2lir_entry_fill_image2d_int4 OBJC@ Y " n j{ A @ | KERN STRI fill_image2d_int4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , t $ , MBSX MBS2 VEHW CCOMx CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI$ __llvm2lir_entry_fill_image2d_uint4 OBJC@ Y " n j{ A @ | KERN STRI fill_image2d_uint4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , & , MBSX MBS2 VEHW CCOM| CMMN VELA SSYM SSYM SSYMD SYMBt STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC FSHA STRI( __llvm2lir_entry_fill_image2d_float4 OBJC@ Y " n j0 @. @ | KERN STRI fill_image2d_float4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , ( , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMT SYMB STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC RLOC FSHA STRI, __llvm2lir_entry_fill_image2d_array_int4 OBJC@ Y n j j{ A { @ @$ \ KERN STRI fill_image2d_array_int4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , * , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMT SYMB STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC RLOC FSHA STRI, __llvm2lir_entry_fill_image2d_array_uint4 OBJC@ Y n j j{ A { @ @$ \ KERN STRI fill_image2d_array_uint4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , , , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMT SYMB STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC RLOC FSHA STRI, __llvm2lir_entry_fill_image2d_array_float4 OBJC@ Y n j j0 @. { @ @$ \ KERN STRI fill_image2d_array_float4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , . , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMT SYMB STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC RLOC FSHA STRI$ __llvm2lir_entry_fill_image3d_int4 OBJC@ Y n j j{ A { @ @$ \ KERN STRI fill_image3d_int4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , 0 , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMT SYMB STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC RLOC FSHA STRI$ __llvm2lir_entry_fill_image3d_uint4 OBJC@ Y n j j{ A { @ @$ \ KERN STRI fill_image3d_uint4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , 2 , MBSX MBS2 VEHW CCOM CMMN VELA SSYM SSYM SSYMT SYMB STRI( __bifl_global_offset_plus_hdsdv_offset TYPE TPGE RLOC RLOC SYMB\ STRI kernel_param_1 TYPE TPGE RLOC SYMBX STRI __bifl_image_properties_table_w TYPE TPPO TYPE TPST STRI TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE TPSE4 STRI TYPE TPGE SSYM` SYMBT STRI kernel_param_0 TYPE TPSA RELO 0 SSYM SSYM UBUF 0 EBIN RLOC RLOC RLOC FSHA STRI( __llvm2lir_entry_fill_image3d_float4 OBJC@ Y n j j0 @. { @ @$ \ KERN STRI fill_image3d_float4 KPAR, STRI image STRI kernel_param_0 KPAR0 STRI fill_color STRI kernel_param_1 KRNL @ , 4 , STRT1 -fno-kernel-unroller -fno-kernel-vectorizer fill_buffer_1 fill_buffer_2 fill_buffer_4 fill_buffer_8 fill_buffer_16 fill_buffer_32 fill_buffer_64 fill_buffer_128 fill_image1d_int4 fill_image1d_uint4 fill_image1d_float4 fill_image1d_buffer_int4 fill_image1d_buffer_uint4 fill_image1d_buffer_float4 fill_image1d_array_int4 fill_image1d_array_uint4 fill_image1d_array_float4 fill_image2d_int4 fill_image2d_uint4 fill_image2d_float4 fill_image2d_array_int4 fill_image2d_array_uint4 fill_image2d_array_float4 fill_image3d_int4 fill_image3d_uint4 fill_image3d_float4 TERM arm_release_ver of this libmali is 'r18p0-01rel0', rk_so_ver is '5'. Failed creating base context during %s. Kernel module may not have been loaded DDK compatibility check opening of kernel driver memory mapping of tracking handle initializing of kernel context flags allocation of GPU properties initializing of memory dump lock initializing of job dispatch context initializing of profiling an invalid initialization state Mali-G71 Mali-THEX Mali-G51 Mali-T604 Mali-T628 Mali-T622 Mali-T624 base_jd_event_term base_jd_event_wait_v2 In file: base/src/mali_base_kbase.c line: 286 Could not notify message handler of driver termination. As a result, your application may not terminate properly. In file: base/src/mali_base_kbase.c line: 323 U:r18p0-01rel0 $ ( 0 1 2 @ D H L P T V W X ` h p x ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B 0 C @ D P E ` F p G H I J K L M N O reading from event semaphore fd, events in queue and semaphore count probably out of sync malitl_%d_%p pic 402* in file included from in module ' ' imported from while building module ' ': expanded from here expanded from macro ' (skipping expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) #line 3 3 4 #ident #pragma warning(pop) #pragma clang __debug #undef #pragma warning(push #pragma diagnostic pop diagnostic push diagnostic remark fatal @import /* clang -E: implicit import for " " */ #include /* clang -E: implicit import for module */ #pragma warning( message(" warning " error " __VA_ARGS__ <uninit> #pragma #pragma GCC #pragma clang #pragma omp <built-in> In file included from In included file: In module ' ': While building module ' (in PCH) + note fatal error (clang) fix-it:" ":{ }:" ... (frontend) File Line {{ }} regex no-diagnostics -re \n File Line * (directive at <stdin> complex objc_object objc_selector opencl_image1d_ro_t opencl_image1d_array_ro_t opencl_image1d_buffer_ro_t opencl_image2d_ro_t opencl_image2d_array_ro_t opencl_image2d_depth_ro_t opencl_image2d_array_depth_ro_t opencl_image2d_msaa_ro_t opencl_image2d_array_msaa_ro_t opencl_image2d_msaa_depth_ro_t opencl_image2d_array_msaa_depth_ro_t opencl_image3d_ro_t opencl_image1d_wo_t opencl_image1d_array_wo_t opencl_image1d_buffer_wo_t opencl_image2d_wo_t opencl_image2d_array_wo_t opencl_image2d_depth_wo_t opencl_image2d_array_depth_wo_t opencl_image2d_msaa_wo_t opencl_image2d_array_msaa_wo_t opencl_image2d_msaa_depth_wo_t opencl_image2d_array_msaa_depth_wo_t opencl_image3d_wo_t opencl_image1d_rw_t opencl_image1d_array_rw_t opencl_image1d_buffer_rw_t opencl_image2d_rw_t opencl_image2d_array_rw_t opencl_image2d_depth_rw_t opencl_image2d_array_depth_rw_t opencl_image2d_msaa_rw_t opencl_image2d_array_msaa_rw_t opencl_image2d_msaa_depth_rw_t opencl_image2d_array_msaa_depth_rw_t opencl_image3d_rw_t opencl_sampler_t opencl_clk_event_t opencl_reserve_id_t long int long long int long unsigned int long long unsigned int _vptr$ "- \\ \" __vtbl_ptr_type reserved __block_descriptor __isa __flags __reserved __FuncPtr __descriptor __forwarding __size __copy_helper __destroy_helper __byref_variable_layout __block_literal_ vector::_M_fill_insert .compoundliteral .str add.ptr exn.adjusted <CGBitFieldInfo Offset: Size: IsSigned: StorageSize: StorageOffset: <CGRecordLayout LLVMType: NonVirtualBaseLLVMType: IsZeroInitializable: BitFields:[ ]> *** Dumping IRgen Record Layout Record: Layout: __captured_stmt imr &{ __asm__ =* ~{ __MSASMLABEL_ asmresult srcloc agg.captured coroutine LLVM IR generation of compound statement ('{}') lhs.begin rhs.begin ptrint maskcond maskedptr omp.arraycpy.isempty omp.arraycpy.srcElementPast omp.arraycpy.destElementPast omp.arraycpy.dest.element omp.arraycpy.src.element omp.arraycpy.done .priv.ptr.addr .firstpriv.ptr.addr .init omp.arrayinit.isempty .omp.sections.lb. .omp.sections.ub. .omp.sections.st. .omp.sections.il. .omp.sections.iv. vla .ref std stdext non-trivial argument copy for return-adjusting thunk llvm.bitsets __read_only basic_string::erase __write_only __read_write indirect.goto.dest callsite const volatile kernel_arg_base_type __cyg_profile_func_exit vla_bound_not_positive no-jump-tables dummy_arg_name allocapt __cyg_profile_func_enter agg.result retval array.begin vla.begin vla.end vla.cur vla.next vla-init.isdone missing_return " llvm.metadata llvm.metadata -framework Could not read profile %0: %1 cannot compile this %0 yet global-dynamic local-dynamic initial-exec local-exec llvm.used llvm.compiler.used opencl.sampler.constructors __objcFastEnumerationState .cxx_destruct .cxx_construct clang.global.decl.ptrs clang.decl.ptr llvm.ident llvm.dbg.cu llvm.gcov _GUID_ __builtin_ Linker Options vector::_M_range_insert fpmath= tune= arch= no- <string literal> all-vtables static initializer .cp.rodata __CFConstantStringClassReference __TEXT,__ustring __TEXT,__cstring,cstring_literals _unnamed_cfstring_ __DATA,__cfstring __OBJC,__cstring_object,regular,no_dead_strip __DATA,__objc_stringobj,regular,no_dead_strip OBJC_CLASS_$_NSConstantString OBJC_CLASS_$_ _NSConstantStringClassReference ClassReference __builtin_NSString _unnamed_nsstring_ Generating code for declaration llvm.global_ctors llvm.global_dtors Dwarf Version CodeView StrictVTablePointers StrictVTablePointersRequirement Debug Info Version wchar_size min_enum_size Cross-DSO CFI nvvm-reflect-ftz linkage spec enable-value-profiling Enable value profiling Simple C++ TBAA Simple C/C++ TBAA omnipotent char vtable pointer any pointer anon File exit not handled before popRegions __DATA,__llvm_covmap __llvm_covmap __llvm_coverage_mapping __llvm_coverage_names Expansion, Skipped, File -> (Expanded file = # __cxa_pure_virtual __cxa_deleted_virtual __cxa_guard_abort __cxa_rethrow __cxa_end_catch __cxa_begin_catch __cxa_bad_typeid __cxa_bad_cast memptr.offset vbase.offset.ptr vbase.offset vtt memptr.isnull src.adj memptr.tobool memptr.virtualbit memptr.isvirtual memptr.ne memptr.eq lhs.memptr.ptr rhs.memptr.ptr cmp.ptr cmp.ptr.null lhs.memptr.adj rhs.memptr.adj cmp.adj cmp.or.adj vfn offset.to.top complete-offset.ptr memptr.adj.shifted this.adjusted memptr.virtualfn memptr.nonvirtualfn __cxa_allocate_exception __cxa_throw __cxa_atexit __cxa_thread_atexit _tlv_atexit __dso_handle non-trivial TLS destruction __tls_init __tls_guard __clang_call_terminate __asan_load_cxx_array_cookie __asan_poison_cxx_array_cookie exn.byref.tmp exn.byref exn.casted __cxa_get_exception_ptr __dynamic_cast _ZTVN10__cxxabiv123__fundamental_type_infoE _ZTVN10__cxxabiv117__array_type_infoE _ZTVN10__cxxabiv120__function_type_infoE _ZTVN10__cxxabiv116__enum_type_infoE _ZTVN10__cxxabiv129__pointer_to_member_type_infoE _ZTVN10__cxxabiv119__pointer_type_infoE _ZTVN10__cxxabiv121__vmi_class_type_infoE _ZTVN10__cxxabiv117__class_type_infoE _ZTVN10__cxxabiv120__si_class_type_infoE guard.uninitialized __cxa_guard_acquire tobool __cxa_guard_release __fundamental_type_info __cxxabiv1 _purecall thread wrappers __tlregdtor _Init_thread_abort __RTtypeid __ImageBase eh.CatchableType rtti.BaseClassDescriptor rtti.ClassHierarchyDescriptor eh.ThrowInfo _CxxThrowException lhs.0 rhs.0 memptr.cmp.first memptr.cmp.rest memptr.cmp.iszero memptr.cmp thunk vbptr vbase_offs vbtable vbtindex is_most_derived should_call_delete memptr.is_vbase member pointer representation requires a complete class type for %0 to perform this expression memptr.base memptr.cmp0 __RTCastToVoid __RTDynamicCast memptr.converted $initializer$ .CRT$XDU vtordisp.value vtordisp.ptr is_complete_object this.int8 vbptr. ??_7type_info@@6B@ rtti.TypeDescriptor rtti.CompleteObjectLocator bad_alloc .xdata more than 32 guarded initializations _Init_thread_epoch _Init_thread_header _Init_thread_footer eh.CatchableTypeArray. nosanitize init llvm.asan.globals movl %ebp, %ebp ## marker for objc_retainAutoreleaseReturnValue mov fp, fp ; marker for objc_retainAutoreleaseReturnValue mov r7, r7 @ marker for objc_retainAutoreleaseReturnValue &y nvvm.annotations opencl.spir.version opencl.ocl.version __isr_ eic sw0 sw1 hw0 hw1 hw2 hw3 hw4 hw5 interrupt mips16 nomips16 .lib opencl.kernel_wg_size_info -l amdgpu_num_vgpr amdgpu_num_sgpr stack-probe-size /DEFAULTLIB: .aligned /FAILIFMISMATCH:" maxntidx minctasm varet (ABIArgInfo Kind= Direct Type= Extend Ignore InAlloca Offset= Indirect Align= ByVal= Realign= Expand CoerceAndExpand Type= darwinpcs hard apcs-gnu aapcs16 soft elfv2 elfv1-qpx elfv1 avx IRQ FIQ SWI ap.cur extend indirect.arg arg.addr ap.next argp.cur argp.next vaarg.promotion-temp overflow_arg_area_p overflow_arg_area overflow_arg_area.next .vareal .vaimag vacplx fpr numUsedRegs vaarg.addr aggr overflow_arg_area_ptr reg_count_ptr reg_count fits_in_regs reg_offset reg_save_area_ptr reg_save_area raw_reg_addr raw_mem_addr va_arg.addr indirect_arg scaled_reg_count gr_offs_p gr_offs vr_offs_p vr_offs new_reg_offs inreg reg_top_p reg_top stack_p new_stack vaargs.addr align_regoffs aligned_regoffs align_stack ){ uc p( f{ }( ,va va a( xcore.typestrings b( ={eax} =A gp_offset_p gp_offset fits_in_gp fp_offset_p fp_offset fits_in_fp c: r: cr: v: cv: rv: crv: atomic-load atomic_bitfield_base atomic-temp __atomic_load __atomic_compare_exchange __atomic_store .atomictmp __atomic_exchange __atomic_fetch_add __atomic_fetch_and __atomic_fetch_or __atomic_fetch_sub __atomic_fetch_xor __atomic_fetch_nand atomic library call cmpxchg.bool struct.__block_descriptor struct.__block_literal_generic _Block_object_dispose _Block_object_assign _NSConcreteGlobalBlock _NSConcreteStackBlock forwarding __Block_byref_object_copy_ dest-object src-object __Block_byref_object_dispose_ __copy_helper_block_ block.source block.dest blockcopy.src block.literal __destroy_helper_block_ __block_descriptor_tmp __block_literal_global .block_descriptor block.addr block.captured-this block.captured-const block.isa block.flags block.reserved block.invoke block.descriptor block.captured-this.addr block.captured block.capture.addr byref.capture ref.val block.captured_block struct.__block_byref_ byref.addr byref.isa byref.forwarding Inline flag for BYREF variable layout (%d): BLOCK_BYREF_HAS_COPY_DISPOSE BLOCK_BYREF_LAYOUT_EXTENDED BLOCK_BYREF_LAYOUT_STRONG BLOCK_BYREF_LAYOUT_WEAK BLOCK_BYREF_LAYOUT_UNRETAINED BLOCK_BYREF_LAYOUT_NON_OBJECT byref.flags byref.size byref.copyHelper byref.disposeHelper byref.layout blc __cudaUnregisterFatBinary __cuda_module_dtor __cudaRegisterVar __cudaRegisterFatBinary __cuda_module_ctor __cuda_fatbin_wrapper .nvFatBinSegment __cuda_gpubin_handle __cuda_register_globals __cudaRegisterFunction cudaSetupArgument cudaLaunch vfnkxt cannot yet compile %0 in this ABI loads of member pointers member function pointer comparison member function pointer null testing array cookie initialization reading a new[] cookie complete object detection in ctor calls through member pointers member function pointer conversions @ A F P O N C D M K L arg.unpromote inalloca.save nonnull_arg clang.arc.no_objc_arc_exceptions coerce.val coerce.val.pi coerce.highbits coerce.val.ii coerce.val.ip offsetcast offsetptr coerce.dive icr.temp icr.cast icr.to-use agg.tmp cond-cleanup.save icr.argument icr.isnull coerce swifterror.temp .coerce sret nonnull_return funclet split-stack trap-func-name no-frame-pointer-elim no-frame-pointer-elim-non-leaf disable-tail-calls less-precise-fpmad no-infs-fp-math no-nans-fp-math unsafe-fp-math use-soft-float stack-protector-buffer-size stackrealign target-features nvptx-f32ftz target-cpu argmem icr.writeback-cast __sanitizer_dtor_callback lambda conversion to variadic function cmp.vtables destaddress object.index __asan_poison_intra_object_redzone __asan_unpoison_intra_object_redzone cfi_check_fail cast.nonnull sub.ptr arrayctor.cur arrayctor.done isempty arrayctor.end arrayctor.next cast.result cleanup.is_active saved-rvalue saved-complex cleanup.cond cleanup.isactive cleanup.dest.slot cleanup.dest nrvo.val arraydestroy.isempty arraydestroy.elementPast arraydestroy.element arraydestroy.done pad.arrayend pad.arraybegin nrvo saved_stack this initialization requires a guard variable, which the kernel does not support atexit __cxx_init_fn_ptr _GLOBAL__I_ _GLOBAL__sub_I_ _GLOBAL__D_a __cxx_global_array_dtor __cxa_free_exception OBJC_EHTYPE finally.endcatch cleanup.dest.saved finally.shouldthrow _ZSt9terminatev __std_terminate ?terminate@@YAXXZ objc_terminate exn.slot ehselector.slot finally.exn finally.for-eh catch.dispatch ehcleanup terminate lpad.val ehspec.fails __cxa_call_unexpected __exception_code 'this' captured by SEH VLA captured by SEH abnormal_termination exception_pointers frame_pointer __CxxFrameHandler3 __C_specific_handler _except_handler3 __gnustep_objc_personality_v0 __gnustep_objcxx_personality_v0 __gnu_objc_personality_v0 objc_exception_throw __gxx_personality_seh0 __gxx_personality_sj0 __gxx_personality_v0 __objc_personality_v0 __gcc_personality_seh0 __gcc_personality_sj0 __gcc_personality_v0 @ .ref.tmp ref.tmp agg-temp dec undef.agg.tmp conv.ptr.element vector.elt temp.lvalue __ubsan_handle_ frombool storetmp nontemporal extractVec llvm.named.register. bf.load bf.value bf.shl bf.clear bf.result.shl bf.result.cast bf.set bf.result.ashr bf.ashr bf.lshr bf.cast __cfi_slowpath_diag __cfi_slowpath type_mismatch __ubsan_vptr_type_cache dynamic_type_cache_miss out_of_bounds load_invalid_value castToVec4 loadVec4 vecext __cfi_check_fail function_type_mismatch callee.knr.cast l-value expression arraydecay vecins sub.ptr.rhs.cast sub.ptr.lhs.cast ivar.offset idxprom arrayidx idx_sub_1 len_sub_1 lb_add_len conditional operator cond-lvalue unexpected cast lvalue agg.tmp.ensured weird std::initializer_list arraystart aggregate va_arg expression aggregate binary expression aggregate expression GNU array range designator extension arrayinit.begin arrayinit.endOfInit arrayinit.element arrayinit.start arrayinit.end arrayinit.cur arrayinit.next arrayinit.done non-simple lvalue dynamic_cast lvalue dynamic_cast with a destination atomic-to-nonatomic.temp delete.end del.first array.init.end array.exp.next array.end array.isempty array.cur array.next array.atend new.isnull complex expression add.i add.r sub.i sub.r .realp .imagp .real .imag mul_ac __mulhc3 __mulsc3 __muldc3 __multc3 __mulxc3 real_mul_phi imag_mul_phi mul.il mul.ir mul.rl mul_bd mul_ad mul_bc mul_r mul_i isnan_cmp mul.rr mul.r mul.i __divhc3 __divsc3 __divdc3 __divtc3 __divxc3 cond.r cond.i complex va_arg expression conj.i neg.r neg.i scalar expression shift_out_of_bounds divrem_overflow add_overflow sub_overflow mul_overflow negate_overflow rem sh_prom shl.mask shl.zeros shl.check idx.ext idx.neg vla.index sub.ptr.sub sub.ptr.div conv splat float_cast_overflow vla.negsize vla.inc incdec.funcptr incdec.ptr incdec.conv incdec.objptr shr.mask virtual base in offsetof sext land.ext lor.ext astypeCast astype concat shuf_idx shuf_elt shuf_ins cmp.r cmp.i and.ri or.ri lnot lnot.ext vecinit vext llvm.loop.vectorize.width llvm.loop.interleave.count llvm.loop.unroll.count llvm.loop.vectorize.enable llvm.loop.unroll.enable llvm.loop.unroll.full llvm.loop.unroll.disable llvm.mem.parallel_loop_access clang.arc.retainAutoreleasedReturnValueMarker objc_retain objc_release dealloc clang.arc.use objc_retainBlock clang.arc.copy_on_escape objc_retainAutoreleasedReturnValue objc_unsafeClaimAutoreleasedReturnValue clang.imprecise_release objc_storeStrong objc_autorelease objc_autoreleaseReturnValue objc_retainAutoreleaseReturnValue objc_retainAutorelease objc_loadWeak objc_loadWeakRetained objc_storeWeak objc_initWeak objc_destroyWeak objc_moveWeak objc_copyWeak objc_autoreleasePoolPush objc_autoreleasePoolPop drain objects keys Obj-C optimized setter - NYI Obj-C setter requiring atomic copy Obj-C getter requiring atomic copy cmd Obj-C fast enumeration for this runtime state.ptr countByEnumeratingWithState items.ptr iszero mutationsptr.ptr mutationsptr forcoll.initial-mutations forcoll.index forcoll.count statemutations stateitems.ptr stateitems currentitem.ptr currentitem __copy_helper_atomic_property_ __assign_helper_atomic_property_ NSAutoreleasePool @id _c_ _i_ __objc_ivar_offset_ __objc_ivar_offset_value_ .guess __objc_class_ref_ __objc_class_name_ objc_lookup_class _OBJC_CLASS_ GNUObjCMessageSend objc_sync_enter objc_sync_exit objc_enumerationMutation objc_getProperty objc_setProperty objc_getPropertyStruct objc_setPropertyStruct retain objc_assign_ivar objc_assign_strongCast objc_assign_global objc_assign_weak objc_read_weak objc_memmove_collectable objc_msg_lookup_sender objc_slot_lookup_super _Unwind_Resume_or_Rethrow objc_begin_catch objc_end_catch objc_exception_rethrow objc_setProperty_atomic objc_setProperty_atomic_copy objc_setProperty_nonatomic objc_setProperty_nonatomic_copy objc_setCppObjectAtomic objc_getCppObjectAtomic objc_msg_lookup objc_msg_lookup_super objc_msg_lookup_stret objc_msg_lookup_super_stret __objc_id_type_info __objc_eh_typeinfo_ _ZTVN7gnustep7libobjc22__objc_class_type_infoE __objc_eh_typename_ .objc_method_list .objc_protocol_name .objc_protocol .objc_protocol_list .objc_ivar_list _OBJC_METACLASS_ .class_name NXConstantString .objc_str .objc_static_class_name .objc_statics .objc_statics_ptr .objc_sel_name .objc_sel_types .objc_selector_list .objc_source_file_name .objc_load_function __objc_exec_class class_registerAlias_np no_alias __ObjC_Protocol_Holder_Ugly_Hack AnotherHack .ivar.offsets .objc_property_list .super_class_name .objc_selector_ objc_get_meta_class objc_get_class .objc_metaclass_ref .objc_class_ref objc_msgSend_fpret objc_msgSend_stret objc_msgSend objc_msgSendSuper2 objc_msgSendSuper objc_exception_extract _setjmp __DATA, __objc_const __DATA, __objc_data __OBJC, __image_info,regular __DATA, __objc_imageinfo, regular, no_dead_strip Objective-C Version Objective-C Image Info Version Objective-C Image Info Section Objective-C Garbage Collection Objective-C GC Only Objective-C Class Properties Objective-C Is Simulated __DATA, __objc_classlist, regular, no_dead_strip OBJC_LABEL_CLASS_$ __DATA, __objc_nlclslist, regular, no_dead_strip OBJC_LABEL_NONLAZY_CLASS_$ __DATA, __objc_catlist, regular, no_dead_strip OBJC_LABEL_CATEGORY_$ __DATA, __objc_nlcatlist, regular, no_dead_strip OBJC_LABEL_NONLAZY_CATEGORY_$ weakread __TEXT,__objc_classname,cstring_literals OBJC_CLASS_NAME_ __TEXT,__objc_methtype,cstring_literals OBJC_METH_VAR_TYPE_ __OBJC,__cat_cls_meth,regular,no_dead_strip 0x0%x%s 0x%x%s block variable layout for block: Inline BYREF variable layout: Inline block variable layout: 0x0%llx , BL_STRONG:%d , BL_BYREF:%d , BL_WEAK:%d , BL_OPERATOR:0 Byref variable layout: Block variable layout: BL_OPERATOR: BL_NON_OBJECT_BYTES: BL_NON_OBJECT_WORD: BL_STRONG: BL_BYREF: BL_WEAK: BL_UNRETAINED: OBJC_IVAR_$_ strongassign weakassign invariant.load ivar.conv %s ivar layout for class '%s': _objc_super struct._prop_t struct._prop_list_t struct._objc_method struct._objc_cache struct._objc_method_description struct._objc_method_description_list struct._objc_protocol_extension struct._objc_protocol struct._objc_protocol_list struct._objc_ivar struct._objc_ivar_list struct._objc_method_list struct._objc_class_extension struct._objc_class struct._objc_category struct._objc_symtab struct._objc_module struct._objc_exception_data struct.__method_list_t struct._protocol_t struct._ivar_t struct._ivar_list_t struct._class_ro_t struct._class_t struct._category_t _message_ref_t struct._super_message_ref_t struct._objc_typeinfo objc_exception_try_exit globalassign objc_assign_threadlocal threadlocalassign objc_msgSendSuper2_stret objc_msgSendSuper_stret objc_msgSend_fp2ret objc_lookUpClass objc_copyCppObjectAtomic objc_copyStruct OBJC_SYMBOLS __OBJC,__symbols,regular,no_dead_strip OBJC_MODULES __OBJC,__module_info,regular,no_dead_strip .objc_class_name_ =0 .globl .objc_class_name_ .lazy_reference .objc_class_name_ .objc_category_name_ .globl .objc_category_name_ OBJC_CLASSLIST_REFERENCES_$_ __DATA, __objc_classrefs, regular, no_dead_strip OBJC_PROP_NAME_ATTR_ __OBJC,__property,regular,no_dead_strip l_OBJC_$_CLASS_PROP_LIST_ l_OBJC_$_PROP_LIST_ OBJC_CLASSEXT_ __OBJC,__class_ext,regular,no_dead_strip OBJC_CLASS_REFERENCES_ __OBJC,__cls_refs,literal_pointers,no_dead_strip l_OBJC_PROTOCOL_$_ OBJC_PROTOCOL_ __OBJC,__protocol,regular,no_dead_strip OBJC_EHTYPE_$_ objc_ehtype_vtable __DATA,__objc_const OBJC_EHTYPE_id sync.arg exceptiondata.ptr *m =*m _call_try_exit objc_exception_try_enter setjmp_buffer setjmp_result did_catch_exception objc_exception_match matched caught propagating_exception setjmp.result __TEXT,__objc_methname,cstring_literals OBJC_METH_VAR_NAME_ OBJC_PROTOCOL_INSTANCE_METHODS_OPT_ __OBJC,__cat_inst_meth,regular,no_dead_strip OBJC_PROTOCOL_CLASS_METHODS_OPT_ OBJC_$_PROP_PROTO_LIST_ OBJC_PROTOCOL_METHOD_TYPES_ OBJC_$_CLASS_PROP_PROTO_LIST_ l_OBJC_PROTOCOLEXT_ OBJC_PROTOCOL_REFS_ OBJC_PROTOCOL_INSTANCE_METHODS_ OBJC_PROTOCOL_CLASS_METHODS_ OBJC_CATEGORY_INSTANCE_METHODS_ OBJC_CATEGORY_CLASS_METHODS_ OBJC_CATEGORY_PROTOCOLS_ OBJC_CATEGORY_ __OBJC,__category,regular,no_dead_strip l_OBJC_$_PROTOCOL_REFS_ l_OBJC_$_PROTOCOL_INSTANCE_METHODS_ l_OBJC_$_PROTOCOL_CLASS_METHODS_ l_OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_ l_OBJC_$_PROTOCOL_CLASS_METHODS_OPT_ l_OBJC_$_PROTOCOL_METHOD_TYPES_ l_OBJC_LABEL_PROTOCOL_$_ __DATA, __objc_protolist, coalesced, no_dead_strip l_OBJC_PROTOCOL_REFERENCE_$_ __DATA, __objc_protorefs, coalesced, no_dead_strip l_OBJC_$_CATEGORY_ INSTANCE_METHODS_ CLASS_METHODS_ l_OBJC_CATEGORY_PROTOCOLS_$_ l_ objc_msgSendSuper2_stret_fixup objc_msgSend_stret_fixup __DATA, __objc_msgrefs, coalesced msgSend_fn objc_msgSend_fpret_fixup objc_msgSendSuper2_fixup objc_msgSend_fixup OBJC_CLASS_PROTOCOLS_ OBJC_CLASS_METHODS_ __OBJC,__cls_meth,regular,no_dead_strip OBJC_METACLASS_ __OBJC,__meta_class,regular,no_dead_strip OBJC_INSTANCE_VARIABLES_ __OBJC,__instance_vars,regular,no_dead_strip OBJC_INSTANCE_METHODS_ __OBJC,__inst_meth,regular,no_dead_strip OBJC_CLASS_ __OBJC,__class,regular,no_dead_strip l_OBJC_$_ l_OBJC_CLASS_PROTOCOLS_$_ l_OBJC_METACLASS_RO_$_ __DATA, __objc_ivar l_OBJC_$_INSTANCE_VARIABLES_ l_OBJC_CLASS_RO_$_ _objc_empty_cache _objc_empty_vtable OBJC_METACLASS_$_ OBJC_SELECTOR_REFERENCES_ __OBJC,__message_refs,literal_pointers,no_dead_strip objc_super __DATA, __objc_selrefs, literal_pointers, no_dead_strip isFlipped allocWithZone isKindOfClass respondsToSelector objectForKey objectAtIndex isEqualToString isEqual addObject OBJC_CLASSLIST_SUP_REFS_$_ __DATA, __objc_superrefs, regular, no_dead_strip opencl.image2d_msaa_ro_t opencl.image2d_array_msaa_ro_t opencl.image2d_msaa_depth_ro_t opencl.image2d_array_msaa_depth_ro_t opencl.image2d_msaa_wo_t opencl.image2d_array_msaa_wo_t opencl.image2d_msaa_depth_wo_t opencl.image2d_array_msaa_depth_wo_t opencl.image2d_msaa_rw_t opencl.image2d_array_msaa_rw_t opencl.image2d_msaa_depth_rw_t opencl.image2d_array_msaa_depth_rw_t opencl.clk_event_t opencl.reserve_id_t .omp_outlined. .atomic_reduction __kmpc_for_static_init_4 __kmpc_for_static_init_4u __kmpc_for_static_init_8 __kmpc_for_static_init_8u __kmpc_dispatch_init_4 __kmpc_dispatch_init_4u __kmpc_dispatch_init_8 __kmpc_dispatch_init_8u __kmpc_dispatch_fini_4u __kmpc_dispatch_fini_8u __kmpc_dispatch_fini_8 __kmpc_dispatch_fini_4 __kmpc_dispatch_next_4 __kmpc_dispatch_next_4u __kmpc_dispatch_next_8 __kmpc_dispatch_next_8u .cache. .gomp_critical_user_ .var omp_offload.info __tgt_offload_entry .omp_offloading.entry_name .omp_offloading.entry .omp_offloading.entries __tgt_device_image __tgt_bin_desc __kmpc_fork_call __kmpc_global_thread_num __kmpc_threadprivate_cached __kmpc_critical __kmpc_critical_with_hint __kmpc_threadprivate_register __kmpc_end_critical __kmpc_cancel_barrier __kmpc_barrier __kmpc_for_static_fini __kmpc_push_num_threads __kmpc_serialized_parallel __kmpc_end_serialized_parallel __kmpc_flush __kmpc_master __kmpc_end_master __kmpc_omp_taskyield __kmpc_single __kmpc_end_single __kmpc_omp_task_alloc __kmpc_omp_task __kmpc_copyprivate __kmpc_reduce __kmpc_reduce_nowait __kmpc_end_reduce __kmpc_end_reduce_nowait __kmpc_omp_task_begin_if0 __kmpc_omp_task_complete_if0 __kmpc_ordered __kmpc_end_ordered __kmpc_omp_taskwait __kmpc_taskgroup __kmpc_end_taskgroup __kmpc_push_proc_bind __kmpc_omp_task_with_deps __kmpc_omp_wait_deps __kmpc_cancellationpoint __kmpc_cancel __kmpc_push_num_teams __kmpc_fork_teams __kmpc_taskloop __tgt_target __tgt_target_teams __tgt_register_lib __tgt_unregister_lib __tgt_target_data_begin __tgt_target_data_end .omp_offloading.img_start. .omp_offloading.img_end. .omp_offloading.device_images .omp_offloading.descriptor .omp_offloading.reg_unreg_var .omp_offloading.descriptor_unreg .omp_offloading.descriptor_reg .omp_offloading.entries_begin .omp_offloading.entries_end .run_host_version .casted .offload_baseptrs .offload_ptrs .offload_sizes .offload_maptypes .omp_combiner. .omp_initializer. omp_in omp_out omp_priv omp_orig ;unknown;unknown;0;0;; .kmpc_loc.addr .threadid_temp. .__kmpc_global_dtor_. .__omp_threadprivate_init_. .__kmpc_global_ctor_. .zero.addr .omp.copyprivate.did_it .omp.copyprivate.cpr_list .omp.copyprivate.copy_func .omp.reduction.red_list .omp.reduction.reduction_func .reduction ident_t __omp_offloading _%x_ .omp_offload.region_id kmp_task_t kmp_task_t_with_privates .kmp_privates.t .omp_task_privates_map. .omp_task_entry. .omp_task_destructor. kmp_depend_info .dep.arr.addr nvptx_warp_size nvptx_tid nvptx_num_threads master_tid _worker should_terminate active_thread __kmpc_kernel_init excess_in_master_warp is_worker __omp_num_threads __tgt_work_id e vaddhn vcvt vcvt_n vld1 vmovl vmovn vmull vpaddl vqdmlal vqshl_n vqshlu_n vrshr_n vshl_n vshll_n vshrn_n vshr_n vsubhn vtrn vtst vuzp vzip vabs .inst.n 0x .inst 0x rbit ldrexd ldrex strexd strex vget_lane vset_lane vsha1h vcvtr vld1q_lane vld1_lane vld_dup vqrshrn_n vqrshrun_n vqshrn_n vqshrun_n vrecpe vrshrn_n vrsra_n vsli_n vsra_n vtbl1 vtbl2 vtbl3 vtbl4 vtbx1 vtbx2 vtbx3 vtbx4 ldxp ldxr stxp stxr v2i64 lane0 lane1 vpaddd v2f64 v2f32 vceqz vcgez vclez vcgtz vcltz vceqzd vcmpd vceqd vtstd vgetq_lane vdups_lane vdupd_lane vaddd vsubd vqdmlXl shld_n shrd_n vtbx vbsl fmla vmax vmin vabd vpadal vpmin vpmax vminnm vmaxnm vrecps vrnda vrndi vrndm vrndn vrndp vrndx vrndz vcvta vcvtm vcvtn vcvtp vmulx vnegd vpmaxnm vpminnm vsqrt vrbit vaddv vmaxv vminv vaddlv vsri_n vld1xN vld2 vld3 vld4 vld2_lane vld3_lane vld4_lane vsqadd vuqadd cmpps cmpss cmppd cmpsd ap.val cmov popcnt sse sse2 sse4.1 avx2 sse4a xop avx512f bmi2 __cpu_model stmxcsr palignr pslldq psrldq sse4.2 tabort __read_pipe_2 __write_pipe_2 __read_pipe_4 __write_pipe_4 __reserve_read_pipe __reserve_write_pipe __work_group_reserve_read_pipe __work_group_reserve_write_pipe __sub_group_reserve_read_pipe __sub_group_reserve_write_pipe __commit_read_pipe __commit_write_pipe __work_group_commit_read_pipe __work_group_commit_write_pipe __sub_group_commit_read_pipe __sub_group_commit_write_pipe __get_pipe_num_packets __get_pipe_max_packets abscond expval builtin_unreachable iseq fpclassify_result __builtin_dwarf_sp_column __builtin_init_dwarf_reg_size_table extend.cast extend.sext extend.zext __atomic_is_lock_free was_set _setjmpex _setjmp3 __enqueue_kernel_basic __enqueue_kernel_vaargs __enqueue_kernel_basic_events __enqueue_kernel_events_vaargs __get_kernel_work_group_size_impl __get_kernel_preferred_work_group_multiple_impl builtin function cmpinf vabdd_f64 vabds_f32 vabsd_s64 vaddlv_s32 vaddlv_u32 vaddlvq_s32 vaddlvq_u32 vaddv_f32 vaddv_s32 vaddv_u32 vaddvq_f32 vaddvq_f64 vaddvq_s32 vaddvq_s64 vaddvq_u32 vaddvq_u64 vcaged_f64 vcages_f32 vcagtd_f64 vcagts_f32 vcaled_f64 vcales_f32 vcaltd_f64 vcalts_f32 vcvtad_s64_f64 vcvtad_u64_f64 vcvtas_s32_f32 vcvtas_u32_f32 vcvtd_n_f64_s64 vcvtd_n_f64_u64 vcvtd_n_s64_f64 vcvtd_n_u64_f64 vcvtmd_s64_f64 vcvtmd_u64_f64 vcvtms_s32_f32 vcvtms_u32_f32 vcvtnd_s64_f64 vcvtnd_u64_f64 vcvtns_s32_f32 vcvtns_u32_f32 vcvtpd_s64_f64 vcvtpd_u64_f64 vcvtps_s32_f32 vcvtps_u32_f32 vcvts_n_f32_s32 vcvts_n_f32_u32 vcvts_n_s32_f32 vcvts_n_u32_f32 vcvtxd_f32_f64 vmaxnmv_f32 vmaxnmvq_f32 vmaxnmvq_f64 vmaxv_f32 vmaxv_s32 vmaxv_u32 vmaxvq_f32 vmaxvq_f64 vmaxvq_s32 vmaxvq_u32 vminnmv_f32 vminnmvq_f32 vminnmvq_f64 vminv_f32 vminv_s32 vminv_u32 vminvq_f32 vminvq_f64 vminvq_s32 vminvq_u32 vmull_p64 vmulxd_f64 vmulxs_f32 vpaddd_s64 vpaddd_u64 vpmaxnmqd_f64 vpmaxnms_f32 vpmaxqd_f64 vpmaxs_f32 vpminnmqd_f64 vpminnms_f32 vpminqd_f64 vpmins_f32 vqabsb_s8 vqabsd_s64 vqabsh_s16 vqabss_s32 vqaddb_s8 vqaddb_u8 vqaddd_s64 vqaddd_u64 vqaddh_s16 vqaddh_u16 vqadds_s32 vqadds_u32 vqdmulhh_s16 vqdmulhs_s32 vqdmullh_s16 vqdmulls_s32 vqmovnd_s64 vqmovnd_u64 vqmovnh_s16 vqmovnh_u16 vqmovns_s32 vqmovns_u32 vqmovund_s64 vqmovunh_s16 vqmovuns_s32 vqnegb_s8 vqnegd_s64 vqnegh_s16 vqnegs_s32 vqrdmulhh_s16 vqrdmulhs_s32 vqrshlb_s8 vqrshlb_u8 vqrshld_s64 vqrshld_u64 vqrshlh_s16 vqrshlh_u16 vqrshls_s32 vqrshls_u32 vqrshrnd_n_s64 vqrshrnd_n_u64 vqrshrnh_n_s16 vqrshrnh_n_u16 vqrshrns_n_s32 vqrshrns_n_u32 vqrshrund_n_s64 vqrshrunh_n_s16 vqrshruns_n_s32 vqshlb_n_s8 vqshlb_n_u8 vqshlb_s8 vqshlb_u8 vqshld_s64 vqshld_u64 vqshlh_n_s16 vqshlh_n_u16 vqshlh_s16 vqshlh_u16 vqshls_n_s32 vqshls_n_u32 vqshls_s32 vqshls_u32 vqshlub_n_s8 vqshluh_n_s16 vqshlus_n_s32 vqshrnd_n_s64 vqshrnd_n_u64 vqshrnh_n_s16 vqshrnh_n_u16 vqshrns_n_s32 vqshrns_n_u32 vqshrund_n_s64 vqshrunh_n_s16 vqshruns_n_s32 vqsubb_s8 vqsubb_u8 vqsubd_s64 vqsubd_u64 vqsubh_s16 vqsubh_u16 vqsubs_s32 vqsubs_u32 vrecped_f64 vrecpes_f32 vrecpxd_f64 vrecpxs_f32 vrshld_s64 vrshld_u64 vrsqrted_f64 vrsqrtes_f32 vrsqrtsd_f64 vrsqrtss_f32 vsha1cq_u32 vsha1h_u32 vsha1mq_u32 vsha1pq_u32 vshld_s64 vshld_u64 vslid_n_s64 vslid_n_u64 vsqaddb_u8 vsqaddd_u64 vsqaddh_u16 vsqadds_u32 vsrid_n_s64 vsrid_n_u64 vuqaddb_s8 vuqaddd_s64 vuqaddh_s16 vuqadds_s32 vabs_v vabsq_v vaddhn_v vaesdq_v vaeseq_v vaesimcq_v vaesmcq_v vcage_v vcageq_v vcagt_v vcagtq_v vcale_v vcaleq_v vcalt_v vcaltq_v vcls_v vclsq_v vclz_v vclzq_v vcnt_v vcntq_v vcvt_f16_f32 vcvt_f32_f16 vcvt_f32_v vcvt_n_f32_v vcvt_n_f64_v vcvt_n_s32_v vcvt_n_s64_v vcvt_n_u32_v vcvt_n_u64_v vcvtq_f32_v vcvtq_n_f32_v vcvtq_n_f64_v vcvtq_n_s32_v vcvtq_n_s64_v vcvtq_n_u32_v vcvtq_n_u64_v vcvtx_f32_v vext_v vextq_v vfma_v vfmaq_v vhadd_v vhaddq_v vhsub_v vhsubq_v vmovl_v vmovn_v vmul_v vmulq_v vpadd_v vpaddl_v vpaddlq_v vpaddq_v vqabs_v vqabsq_v vqadd_v vqaddq_v vqdmlal_v vqdmlsl_v vqdmulh_v vqdmulhq_v vqdmull_v vqmovn_v vqmovun_v vqneg_v vqnegq_v vqrdmulh_v vqrdmulhq_v vqrshl_v vqrshlq_v vqshl_n_v vqshl_v vqshlq_n_v vqshlq_v vqshlu_n_v vqshluq_n_v vqsub_v vqsubq_v vraddhn_v vrecpe_v vrecpeq_v vrecps_v vrecpsq_v vrhadd_v vrhaddq_v vrshl_v vrshlq_v vrshr_n_v vrshrq_n_v vrsqrte_v vrsqrteq_v vrsqrts_v vrsqrtsq_v vrsubhn_v vsha1su0q_v vsha1su1q_v vsha256h2q_v vsha256hq_v vsha256su0q_v vsha256su1q_v vshl_n_v vshl_v vshll_n_v vshlq_n_v vshlq_v vshr_n_v vshrn_n_v vshrq_n_v vsubhn_v vtst_v vtstq_v vabd_v vabdq_v vbsl_v vbslq_v vcvt_s32_v vcvt_s64_v vcvt_u32_v vcvt_u64_v vcvta_s32_v vcvta_s64_v vcvta_u32_v vcvta_u64_v vcvtaq_s32_v vcvtaq_s64_v vcvtaq_u32_v vcvtaq_u64_v vcvtm_s32_v vcvtm_s64_v vcvtm_u32_v vcvtm_u64_v vcvtmq_s32_v vcvtmq_s64_v vcvtmq_u32_v vcvtmq_u64_v vcvtn_s32_v vcvtn_s64_v vcvtn_u32_v vcvtn_u64_v vcvtnq_s32_v vcvtnq_s64_v vcvtnq_u32_v vcvtnq_u64_v vcvtp_s32_v vcvtp_s64_v vcvtp_u32_v vcvtp_u64_v vcvtpq_s32_v vcvtpq_s64_v vcvtpq_u32_v vcvtpq_u64_v vcvtq_s32_v vcvtq_s64_v vcvtq_u32_v vcvtq_u64_v vld1_dup_v vld1_v vld1q_dup_v vld1q_v vld2_lane_v vld2_v vld2q_lane_v vld2q_v vld3_lane_v vld3_v vld3q_lane_v vld3q_v vld4_lane_v vld4_v vld4q_lane_v vld4q_v vmax_v vmaxnm_v vmaxnmq_v vmaxq_v vmin_v vminnm_v vminnmq_v vminq_v vmull_v vpadal_v vpadalq_v vpmax_v vpmin_v vrnd_v vrnda_v vrndaq_v vrndm_v vrndmq_v vrndn_v vrndnq_v vrndp_v vrndpq_v vrndq_v vrndx_v vrndxq_v vst1_v vst1q_v vst2_lane_v vst2_v vst2q_lane_v vst2q_v vst3_lane_v vst3_v vst3q_lane_v vst3q_v vst4_lane_v vst4_v vst4q_lane_v vst4q_v vtrn_v vtrnq_v vuzp_v vuzpq_v vzip_v vzipq_v non-scalar arg to printf printf_args vprintf <eof> parser at end of file <unknown> parser at unknown location : at annotation token : unknown current parser token : current parser token ' STATISTICS: __except oneway bycopy nullable null_unspecified pixel _exception_info __exception_info GetExceptionInformation _exception_code GetExceptionCode _abnormal_termination __abnormal_termination AbnormalTermination __if_exists __if_not_exists top-level asm block argument_with_type_tag pointer_with_type_tag availability callable_when consumable declare simd objc_bridge objc_bridge_mutable objc_gc objc_method_family objc_ownership ownership_holds ownership_returns ownership_takes pcs return_typestate set_typestate test_typestate type_tag_for_datatype type_visibility exclusive_lock_function shared_lock_function acquired_after acquired_before assert_capability assert_shared_capability assert_exclusive_lock assert_shared_lock exclusive_trylock_function guarded_by lock_returned locks_excluded pt_guarded_by release_capability release_shared_capability release_generic_capability unlock_function requires_capability exclusive_locks_required requires_shared_capability shared_locks_required shared_trylock_function try_acquire_capability try_acquire_shared_capability objc_bridge_related param_typestate introduced obsoleted NA <> __declspec class __interface __interface union enum instancetype layout_compatible must_be_null iboutletcollection enable_if _Atomic type name _Noreturn parsing struct/union body nodiscard maybe_unused sealed gnu __underlying_type noexcept(false) , "" & && { namespace } parsing namespace attributes list alias declaration access declaration parsing struct/union/class body (anonymous) { block literal parsing __is_abstract __is_arithmetic __is_array __is_base_of __is_class __is_complete_type __is_compound __is_const __is_constructible __is_convertible __is_convertible_to __is_destructible __is_empty __is_enum __is_floating_point __is_final __is_function __is_fundamental __is_integral __is_interface_class __is_literal __is_lvalue_expr __is_lvalue_reference __is_member_function_pointer __is_member_object_pointer __is_member_pointer __is_nothrow_assignable __is_nothrow_constructible __is_nothrow_destructible __is_object __is_pod __is_pointer __is_polymorphic __is_reference __is_rvalue_expr __is_rvalue_reference __is_same __is_scalar __is_sealed __is_signed __is_standard_layout __is_trivial __is_trivially_assignable __is_trivially_constructible __is_trivially_copyable __is_union __is_unsigned __is_void __is_volatile __bridge_retained < :: __uuidof const_cast dynamic_cast reinterpret_cast static_cast operator template lambda expression parsing () '<' @class @compatibility_alias @dynamic @throw @synchronized @catch clause @encode @protocol readwrite setter null_resettable getter @selector autoreleasepool finally @end @end parsing Objective-C method 2 4 G # # < @ = & - ( . ( ( # ) ( * * $ ' + / , 0 / ' 0 ' ! cancellation enter schedule modifier defaultmap modifier directive name modifier reduction identifier dependency type notinbranch inbranch simdlen 'initializer' '#pragma omp declare target' " # clang optimize 'on' or 'off' ".CRT$XCU" ".CRT$XCC" compiler ".CRT$XCL" user exestr pragma detect_mismatch vectorize vectorize_width interleave_count unroll_count execute nocache remove nopage ms_struct redefine_extname FP_CONTRACT STDC EXTENSION detect_mismatch init_seg data_seg bss_seg const_seg code_seg runtime_checks full assume_safety OPENCL EXTENSION show best_case full_generality single_inheritance multiple_inheritance virtual_inheritance native natural mac68k power in compound statement ('{}') do/while co_return __leave 'case' ; case 'default' 'do' auto && __attribute__ parsing function try block InternalPragmaState parsing function body asm operand <MS inline asm> fpsw > > > = func ommon evice lloc i_tag ounded latten insize jc_gc egparm eakref SObject nnotate utlet ips16 ntinel sv_abi nable_if lag_enum _struct wiftcall ls_model ecreturn ormat_arg u_inline arded_by lign_value sanitize uplicate bjc_bridge navailable ector_size rn_unused ak_import vailability jc_boxable reserve_all dress_space ways_inline allable_when nit_priority unch_bounds ck_returned eserve_most _guarded_by eturns_twice t_typestate ift_context ec_type_hint quired_after udart_builtin evice_builtin ntel_ocl_bicc ocks_excluded o_split_stack jc_ encl_version t_guarded_var est_typestate quired_before dgpu_num_ xt_vector_type ot_tail_called jc_root_class nership_ olds akes aram_typestate eturns_nonnull coped_lockable ype_visibility nlock_function nternal_linkage on_vector_type pencl_extension eturn_typestate sert_capability jc_runtime_name nership_returns ransparent_union quire_capability sert_shared_lock arries_dependency isable_tail_calls boutletcollection o_sanitize_ encl_unroll_hint elease_capability wift_error_result arn_unused_result f_ _sanitize_address bjc_ ridge_ elated equires_super equires_capability eon_polyvector_type bjc_runtime_visible eqd_work_group_size hared_lock_function ork_group_size_hint m_thread_limit_hint sert_exclusive_lock bjc_precise_lifetime ointer_with_type_tag ared_locks_required ift_indirect_result ype_tag_for_datatype rgument_with_type_tag o_instrument_function bjc_independent_class f_returns_not_retained xclusive_lock_function orce_align_arg_pointer s_returns_ hared_trylock_function ssert_shared_capability xclusive_locks_required o_thread_safety_analysis elease_shared_capability onsumable_auto_cast_state xclusive_trylock_function o_address_safety_analysis bjc_returns_inner_pointer ease_generic_capability uires_shared_capability evice_builtin_ bjc_designated_initializer consumable_set_state_on_read objc_requires_property_definitions objc_arc_weak_reference_unavailable objc_protocol_requires_explicit_implementation uuid aked llocate estrict electany gnu:: :noreturn nu:: :nodiscard acked :deprecated :fallthrough :maybe_unused lang::optnone nu_inline isibility clang::capability lang:: allthrough lways_inline wift_context ssume_aligned :carries_dependency nu::returns_nonnull nu::transparent_union lang::internal_linkage o_sanitize_thread ssert_capability nu::no_sanitize_address clang:: lang::requires_capability nu::swift_indirect_result gnu::no_instrument_function clang::lto_visibility_public clang::try_acquire_capability lang::assert_shared_capability nu::no_address_safety_analysis clang::re clang::try_acquire_shared_capability _w64 lignas ullable naligned __forceinline _Null_unspecified __single_inheritance __virtual_inheritance __multiple_inheritance __unspecified_inheritance abi_tag _Alignas always_inline assume_aligned cdecl __cdecl _cdecl carries_dependency cleanup cold __const dllexport dllimport disable_tail_calls fallthrough __fastcall _fastcall flatten format_arg gnu_inline hot ifunc internal_linkage ms_abi may_alias naked nocommon nodebug no_instrument_function noreturn no_sanitize no_sanitize_thread no_sanitize_memory no_split_stack nothrow not_tail_called __constant __generic generic __global __kernel __local __private optnone pascal __pascal _pascal pure regparm malloc returns_twice allocate sentinel stdcall __stdcall _stdcall swiftcall swift_context swift_error_result sysv_abi tls_model thiscall __thiscall _thiscall vectorcall __vectorcall _vectorcall vector_size warn_unused_result weakref unspecified auto register __private_extern__ __thread _Thread_local long long imaginary wchar_t char16_t char32_t __int128 _Bool _Decimal32 _Decimal64 _Decimal128 type-name typeof __auto_type (decltype) decltype(auto) __unknown_anytype (error) __wchar_t _Noreturn concept __pixel vsx power8-vector *** Semantic Analysis Stats: SFINAE diagnostics trapped. __float128 __va_list_tag __int128_t __uint128_t __NSConstantString type_info clk_event_t queue_t reserve_id_t __builtin_ms_va_list __builtin_va_list atomic_intptr_t atomic_uintptr_t atomic_size_t atomic_ptrdiff_t ///< /**< deque::_M_new_elements_at_front deque::_M_new_elements_at_back 'weak' + & a prior #pragma section .CRT$XCU stack empty hidden internal vector element property expression . 7 7 7 7 7 7 NSInteger NSUInteger SInt32 UInt32 _Block_copy scanf printf0 NSString CFString strfmon cmn_err vcmn_err zcmn_err freebsd_kprintf os_trace strftime extdiv bpermd spsel daifset daifclr pan uao < 0 >= 0 0 > 0 <= ' ( addOperationWithBlock (size_t)( sizeof( cstdlib cmath std::abs ) - strlen( ) - 1 __builtin_operator_new __builtin_operator_delete 'kernel_enqueue_flags_t' (i.e. uint) ndrange_t 'ndrange_t' \u %04x \U \x %02x unichar c_str() .c_str() (void*) "%s", @"%@", _cmd in inout out bycopy byref oneway nonnull nullable null_unspecified restrict struct <anonymous> __interface <anonymous> class <anonymous> union <anonymous> enum <anonymous> typename template<...> class operator+ operator- operator* operator/ operator% operator^ operator& operator| operator~ operator! operator= operator< operator> operator+= operator-= operator*= operator/= operator%= operator^= operator&= operator|= operator<< operator>> operator<<= operator>>= operator== operator!= operator<= operator>= operator&& operator|| operator++ operator-- operator, operator->* operator-> operatorco_await operator new operator delete operator new[] operator delete[] operator() operator[] (^ (...) (void) , ... nil YES NO Nil @interface protocol @implementation compatibility_alias @import @end dynamic synthesize @try synchronized statements @catch @finally char[] const char[] encode @" @[ @{ @( Protocol * protocol-name NSString * NSArray * objects, ... NSDictionary * object, ... _Complex _Imaginary qualifier _Nonnull _Nullable __PRETTY_FUNCTION__ __FUNCTION__ __func__ new new[] delete[] include include_next @property @required @optional optional @private @protected @public @package package string-literal inc-expression std::type_info expression-or-type std::nullptr_t sizeof... parameter-pack _Alignof init-statement init-expression __bridge __bridge_transfer Objective-C type CF type , nil , NULL , (void*)0 copyWithZone mutableCopy mutableCopyWithZone awakeFromCoder replacementObjectFromCoder classForCoder superclass IBAction BOOL NSMutableArray NSArray NSMutableSet NSSet AtIndexes NSIndexSet * object-type ** range: NSRange inRange AtIndex insertObject insertObject: atIndexes atIndexes: removeObjectFrom replaceObjectIn withObject withObject: replace with enumeratorOf NSEnumerator NSEnumerator * NSSet * intersect keyPathsForValuesAffecting countOf objectIn memberOf automaticallyNotifiesObserversOf await_ready await_suspend await_resume coroutine_traits promise_type __promise initial_suspend final_suspend get_return_object co_yield yield_value return_void return_value cudaConfigureCall DllMain asprintf vasprintf __CFStringMakeConstantString stdio.h ucontext.h setjmp.h global or constant int jmp_buf sigjmp_buf ucontext_t typename static constexpr word unwind_word byte Android android iOS OS X ios macosx tvOS tvos watchOS watchos iOS (App Extension) ios_app_extension OS X (App Extension) macosx_app_extension tvOS (App Extension) tvos_app_extension watchOS (App Extension) watchos_app_extension vector=sw0 vector=sw1 vector=hw0 vector=hw1 vector=hw2 vector=hw3 vector=hw4 vector=hw5 weak_import __declspec(thread) consumed unconsumed opencl_extension 'minsize' 'dllimport' ns_consumed cf_consumed string type NSMutableString __CFString a string type gcc_diag gcc_cdiag gcc_cxxdiag gcc_tdiag a CFString an NSString aapcs aapcs-vfp mutex role 'interrupt' __builtin_memcpy __builtin_objc_memmove_collectable initializer_list __i const & const & auto & __atomic inline using __covariant __contravariant : (id) NSProxy forwardInvocation : NSObject priority_queue throw() throw( noexcept( static_cast<void>( (void)( nextObject this-> object_setClass object_setClass( object_getClass object_getClass( ![ isEqual: (vector of ' values) __real __imag performSelector (void*) 0 self-> __builtin_trap cl_khr_gl_sharing cl_khr_gl_event cl_khr_d3d10_sharing invalid_CL_extension __builtin_shufflevector 00000000-0000-0000-0000-000000000000 _GUID .* 'size_t' even odd NSConstantString CFBridgingRelease __bridge_transfer CFBridgingRetain CFBridgingRelease CFBridgingRetain __bridge NSCopying stringWithUTF8String valueWithBytes objCType __bridge_retained 0.0 '\0' L'\0' u'\0' U'\0' = {} {} *( &( `- CF audited function Parameter Result New CompoundLiteral RelatedResult Delegating ArrayElement VectorElement ComplexElement LambdaCapture Failed sequence: too many initializers for reference array requires initializer list address of unaddressable function was taken array requires initializer list or string literal array requires initializer list or wide string literal narrow string into wide char array wide string into char array incompatible wide string into wide char array array type mismatch non-constant array initializer address of overloaded function failed overload resolution for reference initialization failed non-const lvalue reference bound to temporary non-const lvalue reference bound to unrelated type rvalue reference bound to an lvalue reference initialization drops qualifiers conversion failed conversion from property failed too many initializers for scalar referencing binding to initializer list initializer list for non-aggregate, non-scalar type overloading failed for user-defined conversion constructor overloading failed default initialization of a const variable initialization of incomplete type list initialization checker failure variable length array has an initializer initializer expression isn't contextually valid list constructor overloading failed list copy initialization chose explicit constructor Dependent sequence Normal sequence: resolve address of overloaded function derived-to-base case (rvalue derived-to-base case (xvalue derived-to-base case (lvalue bind reference to lvalue extraneous C++03 copy to temporary user-defined conversion via qualification conversion (rvalue) qualification conversion (xvalue) qualification conversion (lvalue) non-atomic-to-atomic conversion load (lvalue to rvalue) implicit conversion sequence ( implicit conversion sequence with narrowing prohibited ( list aggregate initialization unwrap reference initializer list rewrap reference initializer list constructor initialization list initialization via constructor zero initialization C assignment string initialization Objective-C object conversion array initialization parenthesized array initialization pass by indirect copy and restore pass by indirect restore Objective-C object retension std::initializer_list from initializer list list initialization from std::initializer_list OpenCL sampler_t from integer constant OpenCL event_t from zero basic_string deque forward_list multimap multiset unordered_map unordered_set static_cast< Filter Mode Addressing Mode __invoke result(s) , ambiguous , base paths present lookup results for <top-level> __make_integer_seq [...] retain (or strong) __attribute__((objc_method_family(none))) nonatomic, (nonatomic) or .global_tid. .bound_tid. .part_id. .privates. .copy_fn. .task_t. .lb. .ub. .st. .liter. .capture_expr. .copyin.src .copyin.dst 'source' or 'sink' threadprivate or private in the enclosing context .copyprivate.src .copyprivate.dst .firstprivate.temp .lastprivate.src .lastprivate.dst .linear.start .linear.step .omp.iv .omp.lb .omp.ub .omp.is_last .omp.stride schedule dist_schedule .reduction.lhs (by copy constructor) (direct reference binding) (reference binding) No conversions required aggregate initialization Worst std::initializer_list element conversion: Standard conversion: User-defined conversion: Ellipsis conversion Ambiguous conversion Bad conversion 'enable_if' No conversion Lvalue-to-rvalue Array-to-pointer Function-to-pointer Noreturn adjustment Qualification Integral promotion Floating point promotion Complex promotion Integral conversion Floating conversion Complex conversion Floating-integral conversion Pointer conversion Pointer-to-member conversion Boolean conversion Compatible-types conversion Derived-to-base conversion Vector conversion Vector splat Complex-real conversion Block Pointer conversion Transparent Union Conversion Writeback conversion OpenCL Zero Event Conversion C specific type conversion $ ( objectForKeyedSubscript setObject forKeyedSubscript atIndexedSubscript objectAtIndexedSubscript 'try' __context __begin __end __range UNREFERENCED_PARAMETER '__try' default captured statement OpenMP region __MSASMLABEL_. #pragma nounroll #pragma unroll #pragma clang loop [with template<> cannot instantiate %0 yet common_type instantiating variable definition instantiating function definition _Map_base __detail tr1 __strong autoreleasing NSError neon ext_vector_type __autoreleasing '__ptr32' '__ptr64' '__sptr' '__uptr' __kindof type qualifier 'static' [[clang::fallthrough]] [[fallthrough]] *** Analysis Based Warnings Stats: functions analyzed ( w/o CFGs). CFG blocks built. average CFG blocks per function. max CFG blocks per function. functions analyzed for uninitialiazed variables variables analyzed. average variables per function. max variables per function. block visits. average block visits per function. max block visits per function. __block /* DISABLES CODE */ ( ?: break; ; / 7 . 7 w OVERLOAD: [# #] <# #> {# #} COMPLETION: (Hidden) Pattern : OSAtomicCompareAndSwap objc_atomicCompareAndSwap dispatch_sync dispatch_once xpc_ CF CG DADisk DADissenter DASessionRef reate ' (aka ' I32 I64 ssize_t intmax_t uintmax_t wint_t __int32 __int64 unsigned __int32 unsigned __int64 const unichar * wchar_t * let let _x BB_ BB_ #null #undefined #ptr #vref #lit new := + cast[ ]( CFG { phi( goto BB_null branch ( return ? if ( ) then else \( )$ vector::_M_default_append raise NSException Uninitialized Int: Float: Vector: ComplexInt: ComplexFloat: LValue: <todo> Array: x Struct bases: fields: Union: MemberPointer: <todo> AddrLabelDiff: <todo> <uninitialized> (char*) *(& + 1 - ;{}#@ *** AST Context Stats: types total. Builtin types Complex BlockPointer LValueReference RValueReference MemberPointer ConstantArray IncompleteArray VariableArray DependentSizedArray DependentSizedExtVector Vector ExtVector FunctionProto FunctionNoProto UnresolvedUsing Paren Typedef Adjusted Decayed TypeOfExpr TypeOf Decltype UnaryTransform Elaborated Attributed TemplateTypeParm SubstTemplateTypeParm SubstTemplateTypeParmPack TemplateSpecialization Auto InjectedClassName DependentName DependentTemplateSpecialization PackExpansion ObjCObject ObjCInterface ObjCObjectPointer Pipe Atomic Total bytes = implicit default constructors created implicit copy constructors created implicit move constructors created implicit copy assignment operators created implicit move assignment operators created implicit destructors created __NSConstantString_tag __block_descriptor_withcopydispose __va_list __stack __gr_top __vr_top __gr_offs __vr_offs __ap __gpr __fpr __overflow_arg_area __reg_save_area @? {objc_object=} {objc_class=} "_vptr$ ^^? @0: @?0 ,R ,C ,& ,W ,D ,N ,G ,S ,V CopyFuncPtr DestroyFuncPtr (no argument) (no qualifiers) != (no qualifiers) ] aka (default) [(default) (default) template [template [(default) template != * ...] ' (vector of ' objcclass objcinstance the global namespace the global scope block literal namespace method function first <undeserialized lookups> <invalid sloc> col capture this :' <<NULL params x also in <undeserialized declarations> virtual xvalue bitfield objcproperty vectorcomponent postfix elidable zeroing ' ComputeLHSTy= ComputeResultTy= optional readonly assign retain nonatomic atomic weak strong unsafe_unretained synthesize dynamic <not a builtin command> <<<NULL>>> Name=" Arg[ ]=" explicitly implicitly Param=" ParamIndex= Position=< " CloseName=" Text=" Attrs: SelfClosing RenderNormal RenderBold RenderMonospaced RenderEmphasized DeclarationName StoredDeclsMap primary prev C C++ original - covariant contravariant bounded none private protected public package combiner " " parent in (local) implicit referenced __objc_yes __objc_no (CXXTemporary global functional cast to array filler field extended by selector= isFreeIvar class= super (instance) super (class) Kind=MethodRef Getter=" " Setter=" (null) Kind=PropertyRef Property=" Messaging= Getter Setter Kind=ArraySubscript GetterForArray=" Kind=DictionarySubscript GetterForDictionary=" " SetterForArray=" " SetterForDictionary=" no ADL) = ' sizeof alignof vec_step __builtin_omp_required_simd_align catch all super Getter&Setter capture byref nested TemplateArgument decl nullptr integral template template expansion expr typename CXXCtorInitializer mutable tls tls_dynamic nrvo cinit callinit listinit FallThrough SwiftContext SwiftErrorResult SwiftIndirectResult Annotate CFConsumed CarriesDependency NSConsumed PassObjectSize AMDGPUNumSGPR AMDGPUNumVGPR ARMInterrupt ARMThreadLimitHint AcquireCapability AcquiredAfter AcquiredBefore AlignMac68k Aligned AlwaysInline AnalyzerNoReturn AnyX86Interrupt ArcWeakrefUnavailable ArgumentWithTypeTag AsmLabel AssertCapability AssertExclusiveLock AssertSharedLock AssumeAligned Availability Blocks C11NoReturn CDecl CFAuditedTransfer CFReturnsNotRetained CFReturnsRetained CFUnknownTransfer CUDAConstant CUDADevice CUDAGlobal CUDAHost CUDAInvalidTarget CUDALaunchBounds CUDAShared CXX11NoReturn CallableWhen CapturedRecord Cleanup Cold Common Const Constructor Consumable ConsumableAutoCast ConsumableSetOnRead DLLExport DLLImport Deprecated Destructor DisableTailCalls EnableIf ExclusiveTrylockFunction FastCall Final FlagEnum Flatten FormatArg GNUInline GuardedBy GuardedVar Hot IBOutlet IBOutletCollection InitPriority IntelOclBicc InternalLinkage LTOVisibilityPublic LockReturned LocksExcluded MSABI MSInheritance MSNoVTable MSP430Interrupt MSStruct MSVtorDisp MaxFieldAlignment MayAlias MinSize Mips16 MipsInterrupt NSConsumesSelf NSReturnsAutoreleased NSReturnsNotRetained NSReturnsRetained Naked NoAlias NoCommon NoDebug NoDuplicate NoInline NoInstrumentFunction NoMips16 NoSanitize NoSplitStack NoThreadSafetyAnalysis NoThrow NonNull NotTailCalled OMPCaptureNoInit OMPThreadPrivateDecl ObjCBridge ObjCBridgeMutable ObjCBridgeRelated ObjCException ObjCExplicitProtocolImpl ObjCIndependentClass ObjCMethodFamily ObjCNSObject ObjCPreciseLifetime ObjCRequiresPropertyDefs ObjCRequiresSuper ObjCReturnsInnerPointer ObjCRootClass OpenCLExtension OpenCLKernel OpenCLUnrollHint OpenCLVersion OptimizeNone Override Packed ParamTypestate Pascal Pcs PreserveAll PreserveMost PtGuardedBy PtGuardedVar Pure ReleaseCapability ReqdWorkGroupSize RequiresCapability Restrict ReturnTypestate ReturnsNonNull ReturnsTwice ScopedLockable Section SelectAny Sentinel SetTypestate SharedTrylockFunction StdCall SwiftCall SysVABI TLSModel Target TestTypestate ThisCall TransparentUnion TryAcquireCapability TypeTagForDatatype TypeVisibility Unavailable Used Uuid VecReturn VecTypeHint VectorCall WarnUnused WarnUnusedResult WeakImport WeakRef WorkGroupSizeHint X86ForceAlignArgPointer AbiTag AlignValue IFunc InitSeg LoopHint OMPDeclareSimdDecl OMPDeclareTargetDecl ObjCBoxable ObjCDesignatedInitializer ObjCRuntimeName ObjCRuntimeVisible OpenCLAccess Overloadable Thread Attr Inherited Implicit IRQ FIQ SWI ABORT UNDEF Generic IsPointer Unavailable Strict ByRef Unknown Consumed Unconsumed Vectorize VectorizeWidth Interleave InterleaveCount Unroll UnrollCount Enable Disable Numeric AssumeSafety Full BestCase sw0 sw1 hw0 hw1 hw2 hw3 hw4 hw5 eic BS_Undefined BS_Inbranch BS_Notinbranch OMF_None OMF_alloc OMF_copy OMF_init OMF_mutableCopy OMF_new AAPCS AAPCS_VFP LayoutCompatible MustBeNull Default Hidden Protected IR_None IR_ARCForbiddenType IR_ForbiddenWeak IR_ARCForbiddenConversion IR_ARCInitReturnsUnrelated IR_ARCFieldWithOwnership <<<NULL>>> OMPClause OMP Clause <implicit> LocInfo Type sugar dependent instantiation_dependent variably_modified contains_unexpanded_pack imported written as lvalue reference trailing_return underlying_type depth index decltype(auto) expansions undeduced QualType altivec altivec pixel altivec bool neon neon poly noreturn produces_result regparm virtual noexcept-unevaluated noexcept-uninstantiated simdlen( linear( __attribute__((amdgpu_num_sgpr( ))) __attribute__((amdgpu_num_vgpr( __attribute__((interrupt(" "))) __attribute__((arm_thread_limit_hint( __attribute__((abi_tag( [[gnu::abi_tag( )]] __attribute__((acquire_capability( [[clang::acquire_capability( __attribute__((acquire_shared_capability( [[clang::acquire_shared_capability( __attribute__((exclusive_lock_function( __attribute__((shared_lock_function( __attribute__((acquired_after( __attribute__((acquired_before( __attribute__((alias(" [[gnu::alias(" ")]] (No spelling) __attribute__((align_value( align_value __attribute__((aligned( [[gnu::aligned( __declspec(align( alignas( _Alignas( __attribute__((always_inline)) [[gnu::always_inline]] __forceinline __attribute__((analyzer_noreturn)) analyzer_noreturn __attribute__((annotate(" annotate __attribute__((interrupt)) __attribute__((objc_arc_weak_reference_unavailable)) __attribute__((argument_with_type_tag( __attribute__((pointer_with_type_tag( asm(" ") __asm__(" __attribute__((assert_capability( [[clang::assert_capability( __attribute__((assert_shared_capability( [[clang::assert_shared_capability( __attribute__((assert_exclusive_lock( __attribute__((assert_shared_lock( __attribute__((assume_aligned( [[gnu::assume_aligned( __attribute__((availability( , strict , unavailable , introduced= , deprecated= , obsoleted= __attribute__((blocks(" __attribute__((cdecl)) [[gnu::cdecl]] __cdecl _cdecl __attribute__((cf_audited_transfer)) cf_audited_transfer __attribute__((cf_consumed)) __attribute__((cf_returns_not_retained)) cf_returns_not_retained __attribute__((cf_returns_retained)) cf_returns_retained __attribute__((cf_unknown_transfer)) cf_unknown_transfer __attribute__((constant)) __attribute__((device)) __attribute__((global)) __attribute__((host)) host __attribute__((launch_bounds( launch_bounds __attribute__((shared)) [[noreturn]] __attribute__((callable_when( __attribute__((capability(" [[clang::capability(" __attribute__((shared_capability(" [[clang::shared_capability(" __attribute__((carries_dependency)) [[carries_dependency]] __attribute__((cleanup( [[gnu::cleanup( __attribute__((cold)) [[gnu::cold]] __attribute__((common)) [[gnu::common]] __attribute__((const)) [[gnu::const]] __attribute__((__const)) [[gnu::__const]] __attribute__((constructor( [[gnu::constructor( __attribute__((consumable(" __attribute__((consumable_auto_cast_state)) consumable_auto_cast_state __attribute__((consumable_set_state_on_read)) __declspec(dllexport) __attribute__((dllexport)) [[gnu::dllexport]] __declspec(dllimport) __attribute__((dllimport)) [[gnu::dllimport]] __attribute__((deprecated(" , " [[gnu::deprecated(" __declspec(deprecated(" [[deprecated(" __attribute__((destructor( [[gnu::destructor( __attribute__((disable_tail_calls)) [[clang::disable_tail_calls]] __attribute__((enable_if( __attribute__((exclusive_trylock_function( [[fallthrough]] [[clang::fallthrough]] __attribute__((fastcall)) [[gnu::fastcall]] __fastcall _fastcall final sealed __attribute__((flag_enum)) flag_enum __attribute__((flatten)) [[gnu::flatten]] __attribute__((format( [[gnu::format( __attribute__((format_arg( [[gnu::format_arg( __attribute__((gnu_inline)) [[gnu::gnu_inline]] __attribute__((guarded_by( __attribute__((guarded_var)) guarded_var __attribute__((hot)) [[gnu::hot]] __attribute__((ibaction)) ibaction __attribute__((iboutlet)) iboutlet __attribute__((iboutletcollection( __attribute__((ifunc(" [[gnu::ifunc(" __attribute__((init_priority( init_priority #pragma init_seg __attribute__((intel_ocl_bicc)) intel_ocl_bicc __attribute__((internal_linkage)) [[clang::internal_linkage]] [[clang::lto_visibility_public]] lto_visibility_public __attribute__((lock_returned( __attribute__((locks_excluded( #pragma clang loop #pragma unroll #pragma nounroll __attribute__((ms_abi)) [[gnu::ms_abi]] __single_inheritance( __multiple_inheritance( __virtual_inheritance( __unspecified_inheritance( __declspec(novtable) novtable __attribute__((interrupt( __attribute__((ms_struct)) [[gnu::ms_struct]] __attribute__((may_alias)) [[gnu::may_alias]] __attribute__((minsize)) minsize __attribute__((mips16)) [[gnu::mips16]] __attribute__((mode( [[gnu::mode( __attribute__((ns_consumed)) __attribute__((ns_consumes_self)) ns_consumes_self __attribute__((ns_returns_autoreleased)) ns_returns_autoreleased __attribute__((ns_returns_not_retained)) ns_returns_not_retained __attribute__((ns_returns_retained)) ns_returns_retained __attribute__((naked)) [[gnu::naked]] __declspec(naked) __declspec(noalias) noalias __attribute__((nocommon)) [[gnu::nocommon]] __attribute__((nodebug)) [[gnu::nodebug]] __attribute__((noduplicate)) [[clang::noduplicate]] __attribute__((noinline)) [[gnu::noinline]] __declspec(noinline) __attribute__((no_instrument_function)) [[gnu::no_instrument_function]] __attribute__((nomips16)) [[gnu::nomips16]] __attribute__((noreturn)) [[gnu::noreturn]] __declspec(noreturn) __attribute__((no_sanitize( [[clang::no_sanitize( __attribute__((no_split_stack)) [[gnu::no_split_stack]] __attribute__((no_thread_safety_analysis)) no_thread_safety_analysis __attribute__((nothrow)) [[gnu::nothrow]] __declspec(nothrow) __attribute__((nonnull( [[gnu::nonnull( __attribute__((not_tail_called)) [[clang::not_tail_called]] #pragma omp declare simd #pragma omp declare target __attribute__((objc_boxable)) objc_boxable __attribute__((objc_bridge( __attribute__((objc_bridge_mutable( __attribute__((objc_bridge_related( __attribute__((objc_designated_initializer)) objc_designated_initializer __attribute__((objc_exception)) objc_exception __attribute__((objc_protocol_requires_explicit_implementation)) __attribute__((objc_independent_class)) objc_independent_class __attribute__((objc_method_family(" __attribute__((NSObject)) __attribute__((objc_precise_lifetime)) objc_precise_lifetime __attribute__((objc_requires_property_definitions)) __attribute__((objc_requires_super)) objc_requires_super __attribute__((objc_returns_inner_pointer)) objc_returns_inner_pointer __attribute__((objc_root_class)) objc_root_class __attribute__((objc_runtime_name(" objc_runtime_name __attribute__((objc_runtime_visible)) objc_runtime_visible __read_only read_only __write_only write_only __read_write read_write __attribute__((opencl_extension(" __kernel kernel __attribute__((opencl_unroll_hint( opencl_unroll_hint __attribute__((opencl_version( opencl_version __attribute__((optnone)) [[clang::optnone]] __attribute__((overloadable)) overloadable override __attribute__((ownership_holds( __attribute__((ownership_returns( __attribute__((ownership_takes( __attribute__((packed)) [[gnu::packed]] __attribute__((param_typestate(" __attribute__((pascal)) __pascal _pascal __attribute__((pass_object_size( pass_object_size __attribute__((pcs(" [[gnu::pcs(" __attribute__((preserve_all)) preserve_all __attribute__((preserve_most)) preserve_most __attribute__((pt_guarded_by( __attribute__((pt_guarded_var)) pt_guarded_var __attribute__((pure)) [[gnu::pure]] __attribute__((release_capability( [[clang::release_capability( __attribute__((release_shared_capability( [[clang::release_shared_capability( __attribute__((release_generic_capability( [[clang::release_generic_capability( __attribute__((unlock_function( __attribute__((reqd_work_group_size( __attribute__((requires_capability( [[clang::requires_capability( __attribute__((exclusive_locks_required( __attribute__((requires_shared_capability( [[clang::requires_shared_capability( __attribute__((shared_locks_required( __declspec(restrict) __attribute__((malloc)) [[gnu::malloc]] __attribute__((return_typestate(" __attribute__((returns_nonnull)) [[gnu::returns_nonnull]] __attribute__((returns_twice)) [[gnu::returns_twice]] __attribute__((scoped_lockable)) scoped_lockable __attribute__((section(" [[gnu::section(" __declspec(allocate(" ")) __declspec(selectany) selectany __attribute__((sentinel( [[gnu::sentinel( __attribute__((set_typestate(" __attribute__((shared_trylock_function( __attribute__((stdcall)) [[gnu::stdcall]] __stdcall _stdcall __attribute__((swiftcall)) [[gnu::swiftcall]] __attribute__((swift_context)) [[gnu::swift_context]] __attribute__((swift_error_result)) [[gnu::swift_error_result]] __attribute__((swift_indirect_result)) [[gnu::swift_indirect_result]] __attribute__((sysv_abi)) [[gnu::sysv_abi]] __attribute__((tls_model(" [[gnu::tls_model(" __attribute__((target(" [[gnu::target(" __attribute__((test_typestate(" __attribute__((thiscall)) [[gnu::thiscall]] __thiscall _thiscall __declspec(thread) __attribute__((transparent_union)) [[gnu::transparent_union]] __attribute__((try_acquire_capability( [[clang::try_acquire_capability( __attribute__((try_acquire_shared_capability( [[clang::try_acquire_shared_capability( __attribute__((type_tag_for_datatype( __attribute__((type_visibility(" [[clang::type_visibility(" __attribute__((unavailable(" [[maybe_unused]] __attribute__((unused)) [[gnu::unused]] __attribute__((used)) [[gnu::used]] __declspec(uuid(" __attribute__((vecreturn)) vecreturn __attribute__((vec_type_hint( __attribute__((vectorcall)) __vectorcall _vectorcall __attribute__((visibility(" [[gnu::visibility(" __attribute__((warn_unused)) warn_unused [[nodiscard]] [[clang::warn_unused_result]] __attribute__((warn_unused_result)) [[gnu::warn_unused_result]] __attribute__((weak)) [[gnu::weak]] __attribute__((weak_import)) __attribute__((weakref(" [[gnu::weakref(" __attribute__((work_group_size_hint( __attribute__((force_align_arg_pointer)) force_align_arg_pointer NoCommentKind BlockCommandComment ParamCommandComment TParamCommandComment VerbatimBlockComment VerbatimLineComment ParagraphComment FullComment HTMLEndTagComment HTMLStartTagComment InlineCommandComment TextComment VerbatimBlockLineComment [in] [out] [in,out] ink odo rief elps aram uthor ark rows uthors oclass etails ndcode ngroup fonly also bpage efgroup ainpage verload ecurity ttention opyright aragraph extblock eakgroup textblock ddtogroup scussion eaderfile lassdesign elperclass ethodgroup erformance elate ndlatexonly nstancesize unctiongroup ubsubsection emplatefield abstract addtogroup attention author authors brief callback category classdesign coclass endcode copyright date defgroup details discussion enddot f} f[ f] f$ functiongroup headerfile helper helperclass helps htmlonly endhtmlonly ingroup instancesize latexonly endlatexonly /link mainpage manonly endmanonly methodgroup msc endmsc overload ownership par paragraph param performance post relatedalso relates relatesalso remarks rtfonly endrtfonly security seealso since subpage subsection subsubsection templatefield /textblock throws todo tparam verbatim endverbatim weakgroup xmlonly endxmlonly CFStringCreateWithFormat CFStringCreateWithFormatAndArguments CFStringAppendFormat CFStringAppendFormatAndArguments wmain WinMain wWinMain nothrow_t `anonymous namespace' (anonymous namespace) (anonymous memcmp strncpy strncmp strncasecmp strndup strlen strncat field-padding 0 operator"" <using-directive> not available on introduced in obsoleted in first deprecated in AccessSpec Captured ClassScopeFunctionSpecialization Empty ExternCContext FileScopeAsm Friend FriendTemplate LinkageSpec Namespace NamespaceAlias ObjCCompatibleAlias ObjCCategory ObjCCategoryImpl ObjCImplementation ObjCProtocol ObjCMethod ObjCProperty BuiltinTemplate ClassTemplate FunctionTemplate TypeAliasTemplate VarTemplate TemplateTemplateParm CXXRecord ClassTemplateSpecialization ClassTemplatePartialSpecialization ObjCTypeParam TypeAlias UnresolvedUsingTypename Using UsingDirective UsingShadow ObjCAtDefsField ObjCIvar CXXMethod CXXConstructor CXXConversion CXXDestructor MSProperty NonTypeTemplateParm ImplicitParam OMPCapturedExpr ParmVar VarTemplateSpecialization VarTemplatePartialSpecialization EnumConstant IndirectField OMPDeclareReduction UnresolvedUsingValue OMPThreadPrivate ObjCPropertyImpl PragmaComment PragmaDetectMismatch StaticAssert TranslationUnit *** Decl Stats: decls total. AccessSpec decls, each ( bytes) Block decls, Captured decls, ClassScopeFunctionSpecialization decls, Empty decls, ExternCContext decls, FileScopeAsm decls, Friend decls, FriendTemplate decls, Import decls, LinkageSpec decls, Label decls, Namespace decls, NamespaceAlias decls, ObjCCompatibleAlias decls, ObjCCategory decls, ObjCCategoryImpl decls, ObjCImplementation decls, ObjCInterface decls, ObjCProtocol decls, ObjCMethod decls, ObjCProperty decls, BuiltinTemplate decls, ClassTemplate decls, FunctionTemplate decls, TypeAliasTemplate decls, VarTemplate decls, TemplateTemplateParm decls, Enum decls, Record decls, CXXRecord decls, ClassTemplateSpecialization decls, ClassTemplatePartialSpecialization decls, TemplateTypeParm decls, ObjCTypeParam decls, TypeAlias decls, Typedef decls, UnresolvedUsingTypename decls, Using decls, UsingDirective decls, UsingShadow decls, Field decls, ObjCAtDefsField decls, ObjCIvar decls, Function decls, CXXMethod decls, CXXConstructor decls, CXXConversion decls, CXXDestructor decls, MSProperty decls, NonTypeTemplateParm decls, Var decls, ImplicitParam decls, OMPCapturedExpr decls, ParmVar decls, VarTemplateSpecialization decls, VarTemplatePartialSpecialization decls, EnumConstant decls, IndirectField decls, OMPDeclareReduction decls, UnresolvedUsingValue decls, OMPThreadPrivate decls, ObjCPropertyImpl decls, PragmaComment decls, PragmaDetectMismatch decls, StaticAssert decls, TranslationUnit decls, using namespace using typename __asm ( @synthesize @dynamic __covariant __contravariant mutable __module_private__ __thread _Thread_local thread_local extern __private_extern__ = 0 = delete = default explicit throw( noexcept auto extern " @compatibility_alias @interface @implementation @protocol - + @required @optional getter = setter = ) typedef #pragma omp declare reduction ( initializer( #pragma omp threadprivate static_assert( friend " #pragma omp end declare target @class > template < 0123456789ABCDEF __FUNCDNAME__ L__FUNCTION__ __FUNCSIG__ __cdecl __stdcall __fastcall __thiscall __vectorcall \U00 \t \a \b __extension__ Dependent BitCast LValueBitCast LValueToRValue NoOp BaseToDerived DerivedToBase UncheckedDerivedToBase Dynamic ToUnion ArrayToPointerDecay FunctionToPointerDecay NullToMemberPointer NullToPointer BaseToDerivedMemberPointer DerivedToBaseMemberPointer ReinterpretMemberPointer UserDefinedConversion ConstructorConversion IntegralToPointer PointerToIntegral PointerToBoolean VectorSplat IntegralCast BooleanToSignedIntegral IntegralToBoolean IntegralToFloating FloatingToIntegral FloatingCast FloatingToBoolean MemberPointerToBoolean CPointerToObjCPointerCast BlockPointerToObjCPointerCast AnyPointerToBlockPointerCast ObjCObjectLValueCast FloatingRealToComplex FloatingComplexToReal FloatingComplexToBoolean FloatingComplexCast FloatingComplexToIntegralComplex IntegralRealToComplex IntegralComplexToReal IntegralComplexToBoolean IntegralComplexCast IntegralComplexToFloatingComplex ARCConsumeObject ARCProduceObject ARCReclaimReturnedObject ARCExtendBlockObject AtomicToNonAtomic NonAtomicToAtomic CopyAndAutoreleaseBlockObject BuiltinFnToFnPtr ZeroToOCLEvent AddressSpaceConversion IntToOCLSampler ' ! " # & $ % $ % , captures not currently allowed 'strlen' <invalid cast> 0123456789abcdef__cxx_global_var_init char_traits AS CLglobal CLlocal CLconstant CLgeneric CUdevice CUconstant CUshared ml co eo aS pL mI mL dV rM aN oR eO lS rS oo pp cm pm qu fL St allocator basic_ostream So basic_iostream Sd Sa Sb basic_istream Ub Da Dc Di Dn 11objc_object 10objc_class 13objc_selector ocl_image2d_msaa_ro ocl_image2d_array_msaa_ro ocl_image2d_msaa_depth_ro ocl_image2d_array_msaa_depth_ro ocl_image2d_msaa_wo ocl_image2d_array_msaa_wo ocl_image2d_msaa_depth_wo ocl_image2d_array_msaa_depth_wo ocl_image2d_msaa_rw ocl_image2d_array_msaa_rw ocl_image2d_msaa_depth_rw ocl_image2d_array_msaa_depth_rw 11ocl_sampler 9ocl_event 12ocl_clkevent 9ocl_queue 13ocl_reserveid U13block_pointer A_ u6typeof DT 3eut _SUBSTPACK_ Ts Tu Te Dp U8__kindof objcproto 8ocl_pipe U7_Atomic Dt U17pass_object_size cv 12_GLOBAL__N_1 Ul Ut C1 C2 C5 D0 D5 Int16 Int8 Float64 Float32 Float16 Uint64 Uint32 Uint16 Uint8 Int64 Int32 poly8_t poly16_t poly64_t int8_t uint8_t int16_t uint16_t int32_t uint32_t int64_t uint64_t float64_t float32_t float16_t __simd64_ __simd128_ Poly8 Poly16 Poly64 _ZTS _ZTI fR fr cannot yet mangle expression type %0 u8__uuidoft u8__uuidofz ?: operator with omitted middle operand cannot be mangled _E nx cannot yet mangle vec_step expression cannot yet mangle __builtin_omp_required_simd_align expression v1U v110_SUBSTPACK Lb LDnE v18co_await v18co_yield 0_ sZ sP Ua9enable_ifI 0E _ZTW _ZTH _ZGV _ZGR _ZTT _ZTV _ZTC __fin_ __filt_ __dtor_ Mangling declaration _ZT dt dtdefpT _block_invoke _block_invoke_ ,/\:. '- 00FG 1HIJ ?1 ?_D ?_G ??@ A@ $0 ?$ ??_C@_ W4 <decltype-auto> <auto> $$B cannot mangle this dependent-length array yet _K _L _M _N _S _U _W PA PAUocl_image1d_ro@@ PAUocl_image1d_array_ro@@ PAUocl_image1d_buffer_ro@@ PAUocl_image2d_ro@@ PAUocl_image2d_array_ro@@ PAUocl_image2d_depth_ro@@ PAUocl_image2d_array_depth_ro@@ PAUocl_image2d_msaa_ro@@ PAUocl_image2d_array_msaa_ro@@ PAUocl_image2d_msaa_depth_ro@@ PAUocl_image2d_array_msaa_depth_ro@@ PAUocl_image3d_ro@@ PAUocl_image1d_wo@@ PAUocl_image1d_array_wo@@ PAUocl_image1d_buffer_wo@@ PAUocl_image2d_wo@@ PAUocl_image2d_array_wo@@ PAUocl_image2d_depth_wo@@ PAUocl_image2d_array_depth_wo@@ PAUocl_image2d_msaa_wo@@ PAUocl_image2d_array_msaa_wo@@ PAUocl_image2d_msaa_depth_wo@@ PAUocl_image2d_array_msaa_depth_wo@@ PAUocl_image3d_wo@@ PAUocl_image1d_rw@@ PAUocl_image1d_array_rw@@ PAUocl_image1d_buffer_rw@@ PAUocl_image2d_rw@@ PAUocl_image2d_array_rw@@ PAUocl_image2d_depth_rw@@ PAUocl_image2d_array_depth_rw@@ PAUocl_image2d_msaa_rw@@ PAUocl_image2d_array_msaa_rw@@ PAUocl_image2d_msaa_depth_rw@@ PAUocl_image2d_array_msaa_depth_rw@@ PAUocl_image3d_rw@@ ocl_sampler ocl_event ocl_clkevent ocl_queue ocl_reserveid $$T cannot mangle this built-in %0 type yet __clang $$Q cannot mangle this dependent-sized extended vector type yet $$A6 cannot mangle this unresolved dependent type yet cannot mangle this typeof(expression) yet cannot mangle this typeof(type) yet cannot mangle this decltype() yet cannot mangle this unary transform type yet cannot mangle this template type parameter type yet cannot mangle this substituted parameter pack yet cannot mangle this template specialization type yet cannot mangle this 'auto' type yet cannot mangle this dependent name type yet cannot mangle this dependent template specialization type yet cannot mangle this pack expansion yet cannot mangle this OpenCL pipe type yet $$C $$A8@@ PEAXI@Z __pass_object_size $$J0 __m __vector __m64 cannot mangle a local inside this block yet __block_invoke ??_R3 ?_9 $B $0A@ ? $1? $E? $$V $$$V __s_GUID $S $$Y ?A@ <lambda_ <unnamed-type- ?_O ?_F ?0 ?B ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9 ?A ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z ?_0 ?_1 ?_2 ?_3 ?_4 ?_5 ?_6 ?_U ?_V cannot mangle this conditional operator yet cannot mangle this operator co_await yet ?__K ??_R2 ??_R1 ??_K $C ??_8 7B ?fin$ @0@ ?filt$ ??_E 6B ??_S ??_7 ??@ ??_R4@ ??_R4 ?$TSS ?$RT ??__J ??_B @4IA @5 ?$S1@ ??__ YAXXZ _CTA _TI ??_R0 @8 _CT __super stringWithString initWithUTF8String stringWithCString initWithString arrayWithArray arrayWithObject arrayWithObjects initWithArray initWithObjects replaceObjectAtIndex atIndex dictionary dictionaryWithDictionary dictionaryWithObject forKey dictionaryWithObjects forKeys dictionaryWithObjectsAndKeys initWithDictionary initWithObjectsAndKeys setValue numberWithChar numberWithUnsignedChar numberWithShort numberWithUnsignedShort numberWithInt numberWithUnsignedInt numberWithLong numberWithUnsignedLong numberWithLongLong numberWithUnsignedLongLong numberWithFloat numberWithDouble numberWithBool numberWithInteger numberWithUnsignedInteger initWithChar initWithUnsignedChar initWithShort initWithUnsignedShort initWithInt initWithUnsignedInt initWithLong initWithUnsignedLong initWithLongLong initWithUnsignedLongLong initWithFloat initWithDouble initWithBool initWithInteger initWithUnsignedInteger NSDictionary NSMutableDictionary NSNumber NSMutableOrderedSet NSValue //< /*< %10lld | (primary base) (base) (primary virtual base) (virtual base) vtable pointer) vftable pointer) vbtable pointer) (vtordisp for vbase (empty) , dsize= Type: <ASTRecordLayout Size: Alignment: FieldOffsets: [ | [sizeof= , align= DataSize: nvsize= , nvalign= *** Dumping AST Record Layout GCCAsmStmt MSAsmStmt AttributedStmt BreakStmt CXXCatchStmt CXXForRangeStmt CXXTryStmt CapturedStmt CompoundStmt ContinueStmt CoreturnStmt CoroutineBodyStmt DeclStmt DoStmt BinaryConditionalOperator ConditionalOperator AddrLabelExpr ArraySubscriptExpr ArrayTypeTraitExpr AsTypeExpr AtomicExpr BinaryOperator CompoundAssignOperator BlockExpr CXXBindTemporaryExpr CXXBoolLiteralExpr CXXConstructExpr CXXTemporaryObjectExpr CXXDefaultArgExpr CXXDefaultInitExpr CXXDeleteExpr CXXDependentScopeMemberExpr CXXFoldExpr CXXNewExpr CXXNoexceptExpr CXXNullPtrLiteralExpr CXXPseudoDestructorExpr CXXScalarValueInitExpr CXXStdInitializerListExpr CXXThisExpr CXXThrowExpr CXXTypeidExpr CXXUnresolvedConstructExpr CXXUuidofExpr CallExpr CUDAKernelCallExpr CXXMemberCallExpr CXXOperatorCallExpr UserDefinedLiteral CStyleCastExpr CXXFunctionalCastExpr CXXConstCastExpr CXXDynamicCastExpr CXXReinterpretCastExpr CXXStaticCastExpr ObjCBridgedCastExpr ImplicitCastExpr CharacterLiteral ChooseExpr CompoundLiteralExpr ConvertVectorExpr CoawaitExpr CoyieldExpr DeclRefExpr DependentScopeDeclRefExpr DesignatedInitExpr DesignatedInitUpdateExpr ExprWithCleanups ExpressionTraitExpr ExtVectorElementExpr FloatingLiteral FunctionParmPackExpr GNUNullExpr GenericSelectionExpr ImaginaryLiteral ImplicitValueInitExpr InitListExpr IntegerLiteral LambdaExpr MSPropertyRefExpr MSPropertySubscriptExpr MaterializeTemporaryExpr MemberExpr NoInitExpr OMPArraySectionExpr ObjCArrayLiteral ObjCBoolLiteralExpr ObjCBoxedExpr ObjCDictionaryLiteral ObjCEncodeExpr ObjCIndirectCopyRestoreExpr ObjCIsaExpr ObjCIvarRefExpr ObjCMessageExpr ObjCPropertyRefExpr ObjCProtocolExpr ObjCSelectorExpr ObjCStringLiteral ObjCSubscriptRefExpr OffsetOfExpr OpaqueValueExpr UnresolvedLookupExpr UnresolvedMemberExpr PackExpansionExpr ParenExpr ParenListExpr PredefinedExpr PseudoObjectExpr ShuffleVectorExpr SizeOfPackExpr StmtExpr SubstNonTypeTemplateParmExpr SubstNonTypeTemplateParmPackExpr TypeTraitExpr TypoExpr UnaryExprOrTypeTraitExpr UnaryOperator VAArgExpr ForStmt IfStmt IndirectGotoStmt LabelStmt MSDependentExistsStmt NullStmt OMPAtomicDirective OMPBarrierDirective OMPCancelDirective OMPCancellationPointDirective OMPCriticalDirective OMPFlushDirective OMPDistributeDirective OMPForDirective OMPForSimdDirective OMPParallelForDirective OMPParallelForSimdDirective OMPSimdDirective OMPTaskLoopDirective OMPTaskLoopSimdDirective OMPMasterDirective OMPOrderedDirective OMPParallelDirective OMPParallelSectionsDirective OMPSectionDirective OMPSectionsDirective OMPSingleDirective OMPTargetDataDirective OMPTargetDirective OMPTargetEnterDataDirective OMPTargetExitDataDirective OMPTargetParallelDirective OMPTargetParallelForDirective OMPTaskDirective OMPTaskgroupDirective OMPTaskwaitDirective OMPTaskyieldDirective OMPTeamsDirective ObjCAtCatchStmt ObjCAtFinallyStmt ObjCAtSynchronizedStmt ObjCAtThrowStmt ObjCAtTryStmt ObjCAutoreleasePoolStmt ObjCForCollectionStmt ReturnStmt SEHExceptStmt SEHFinallyStmt SEHLeaveStmt SEHTryStmt CaseStmt DefaultStmt SwitchStmt WhileStmt *** Stmt/Expr Stats: stmts/exprs total. $( $| $) ${:uid} ${ -0123456789 break; continue; @catch (...) { /* todo */ } __leave; __asm sizeof...( @selector( @protocol( '\\' '\'' '\a' '\b' '\f' '\n' '\r' '\t' '\v' '\x '\u '\U __array_rank __array_extent { } /*implicit*/ /*implicit*/( @encode( __builtin_types_compatible_p __has_nothrow_assign __has_nothrow_move_assign __has_nothrow_copy __has_nothrow_constructor __has_trivial_assign __has_trivial_move_assign __has_trivial_copy __has_trivial_constructor __has_trivial_move_constructor __has_trivial_destructor __has_virtual_destructor Ui8 Ui16 UL ->isa .isa co_await co_yield __null /*no init*/ <null expr> ?: __builtin_astype( __c11_atomic_init( __c11_atomic_load( __c11_atomic_store( __c11_atomic_exchange( __c11_atomic_compare_exchange_strong( __c11_atomic_compare_exchange_weak( __c11_atomic_fetch_add( __c11_atomic_fetch_sub( __c11_atomic_fetch_and( __c11_atomic_fetch_or( __c11_atomic_fetch_xor( __atomic_load( __atomic_load_n( __atomic_store( __atomic_store_n( __atomic_exchange( __atomic_exchange_n( __atomic_compare_exchange( __atomic_compare_exchange_n( __atomic_fetch_add( __atomic_fetch_sub( __atomic_fetch_and( __atomic_fetch_or( __atomic_fetch_xor( __atomic_fetch_nand( __atomic_add_fetch( __atomic_sub_fetch( __atomic_and_fetch( __atomic_or_fetch( __atomic_xor_fetch( __atomic_nand_fetch( __cl20_atomic_fetch_min( __cl20_atomic_fetch_max( delete [] throw typeid( __uuidof( >>>( __builtin_choose_expr( __builtin_convertvector( ... /*base*/ /*updater*/ _Generic( super. __builtin_offsetof( __builtin_shufflevector( __alignof vec_step __builtin_omp_required_simd_align __builtin_va_arg( goto * asm volatile ); <<<NULL STATEMENT>>> catch ( try __if_exists ( __if_not_exists ( @catch( @autoreleasepool __except ( <<unknown expr type>> __finally __try @synchronized ( if( final( num_threads( safelen( collapse( default( firstprivate lastprivate reduction( linear copyin copyprivate proc_bind( schedule( untied mergeable update seq_cst depend( : device( map( num_teams( thread_limit( priority( grainsize( nogroup num_tasks( dist_schedule( defaultmap( #pragma omp atomic #pragma omp barrier #pragma omp cancel #pragma omp cancellation point #pragma omp critical #pragma omp flush #pragma omp distribute #pragma omp for #pragma omp for simd #pragma omp parallel for #pragma omp parallel for simd #pragma omp simd #pragma omp taskloop #pragma omp taskloop simd #pragma omp master #pragma omp ordered #pragma omp parallel #pragma omp parallel sections #pragma omp section #pragma omp sections #pragma omp single #pragma omp target data #pragma omp target #pragma omp target enter data #pragma omp target exit data #pragma omp target parallel #pragma omp target parallel for #pragma omp task #pragma omp taskgroup #pragma omp taskwait #pragma omp taskyield #pragma omp teams default: for ( do while ( *this switch ( @[ ] @{ } '\ (no value) (null template argument) __fp16 signed char unsigned char unsigned short unsigned long unsigned long long unsigned __int128 long double nullptr_t <overloaded function type> <bound member function type> <pseudo-object type> <dependent type> <unknown type> <ARC unbridged cast type> <builtin fn type> __read_only image1d_t __read_only image1d_array_t __read_only image1d_buffer_t __read_only image2d_t __read_only image2d_array_t __read_only image2d_depth_t __read_only image2d_array_depth_t __read_only image2d_msaa_t __read_only image2d_array_msaa_t __read_only image2d_msaa_depth_t __read_only image2d_array_msaa_depth_t __read_only image3d_t __write_only image1d_t __write_only image1d_array_t __write_only image1d_buffer_t __write_only image2d_t __write_only image2d_array_t __write_only image2d_depth_t __write_only image2d_array_depth_t __write_only image2d_msaa_t __write_only image2d_array_msaa_t __write_only image2d_msaa_depth_t __write_only image2d_array_msaa_depth_t __write_only image3d_t __read_write image1d_t __read_write image1d_array_t __read_write image1d_buffer_t __read_write image2d_t __read_write image2d_array_t __read_write image2d_depth_t __read_write image2d_array_depth_t __read_write image2d_msaa_t __read_write image2d_array_msaa_t __read_write image2d_msaa_depth_t __read_write image2d_array_msaa_depth_t __read_write image3d_t <OpenMP array section type> spir_function spir_kernel typeof decltype( read_only write_only __restrict type-parameter- (anonymous namespace):: anonymous __attribute__((address_space( "aapcs" "aapcs-vfp" __attribute__((ext_vector_type( __attribute__((ns_consumed)) __attribute__(( )) __attribute__((pcs("aapcs"))) __attribute__((pcs("aapcs-vfp"))) __attribute__((regparm ( _Nonnull _Nullable _Null_unspecified address_space( __vector_size__( * sizeof( neon_vector_type( neon_polyvector_type( regparm( objc_gc( objc_ownership( pcs( inteloclbicc __attribute__(( __underlying_type( NULL TYPE _Complex typeof( __ptr32 __ptr64 __sptr __uptr _Atomic( __vector __pixel __vector __bool __vector __attribute__((neon_vector_type( ))) __attribute__((neon_polyvector_type( __attribute__((__vector_size__( )))) ::* [return adjustment (to type ' '): vbptr at offset vbase # non-virtual] vtordisp at vbptr at to the left, vboffset at in the vbtable, entry entries [scalar deleting] VFTable indices for vbtable index vfptr at offset %4llu | -- accessible via Construction vtable for (' ', ) in ' Vtable for ' entries). %4d | vcall_offset ( vbase_offset ( offset_to_top ( RTTI [pure] [deleted] vbase offset offset [this adjustment: non-virtual vcall offset offset () [complete] () [deleting] [unused] -- ( ) vtable address -- Virtual base offset offsets for ' Thunks for ' [complete] [deleting] VTable indices for ' [return adjustment: return adjustment: this adjustment: VFTable for ' in () [scalar deleting] Unexpected vftable component type %0 for component number %1 mall caption colgroup blockquote quot EG au uml UOT eta arr bsp uot irc circ ega rime igma ADE pha ymp appa eil quo ash bla dic lig ade cute rave ilde cedil ambda tilde acute loor lusmn igmaf psilon apos comments::Token Kind= \@&< [out,in] __attribute__((deprecated)) module.map module.modulemap module_private.map module.private.modulemap *** HeaderSearch Stats: %d files tracked. %d #import/#pragma once files. %d included exactly once. %d max times a file is included. %d #include/#include_next/#import. %d #includes skipped due to the multi-include optimization. %d framework lookups. %d subframework lookups. Modules .framework Frameworks/ .framework/ Headers/ PrivateHeaders/ .system_framework Private .pcm ` i f o f o f o f o f o P Y 3 | ^[] ~ \ {#} ( ) / / _ _ 0 0 <<<< >>>>>>> */ <<<<<<< >>>> __include_macros ident sccs unassert o / P z z O Q \ ^ 1 V Y Y a ! : @ R ` i p 9 = M P R X c f o ( * 0 2 3 5 6 8 9 > B G H K M Y \ ^ ^ f o t t ( * 0 2 3 6 9 = C G H K M \ ] _ a f o ( * 3 5 9 > D F H J M ` a f o ( * 9 > C F H J M ` a f o : @ [ 3 5 5 7 7 9 9 > G I i q E H M P W Y Y [ [ ] ] _ } ? @ ! ! ! ! ! ! ! ! ! ! $! $! &! &! (! (! *! 1! 3! 8! `! ! 0 0 !0 )0 A0 0 0 0 0 0 0 0 1 ,1 N * . ? @ T T ` o p ! `$ $ v' ' , - . / 0 0 !0 /0 10 ?0 @0 = @ D G P O Q \ ^ 1 V a ! : @ R p 9 X b ( * 0 2 3 5 6 8 9 Y \ ^ ^ ( * 0 2 3 6 9 \ ] _ a ( * 3 5 9 ` a ( * 9 ` a 0 2 3 @ F O [ Y a E H M P W Y Y [ [ ] ] _ } A0 0 0 0 0 0 1 ,1 N - 6 8 < > > @ A B D F ? P p r t t v ! : A Z f MacroInfo allow_redefinitions_without_warning warn_if_unused header_guard #define <macro> DefMacroDirective UndefMacroDirective VisibilityMacroDirective from_pch float.h iso646.h stdalign.h stdarg.h stdatomic.h stdbool.h stddef.h limits.h stdint.h tgmath.h unwind.h Modules: Headers: " " -> _Static_assert requires __attribute __builtin_choose_expr __builtin_offsetof __builtin_va_arg __label__ __is_literal_type __unaligned __builtin_astype __bool __bridge_retain __kindof __alignof__ __asm __complex __complex__ __const__ __decltype __imag__ __inline__ __nullptr __real__ __restrict__ __signed __signed__ __typeof __typeof__ __volatile__ __ptr64 __sptr __w64 __try __finally __int8 _int8 __int16 _int16 _int32 _asm _alignof __builtin_alignof _uuidof _declspec __builtin_convertvector __char16_t _Generic __inline __volatile __ptr32 __uptr _int64 __char32_t config_macros conflict exclude umbrella textual Darwin excluded Tcl IOKit avc cplusplus exhaustive extern_c system Frameworks Headers PrivateHeaders .tbd ndif lif __public_macro __private_macro 'defined' .H .hpp "%s %2d %4d" "%02d:%02d:%02d" address_sanitizer assume_nonnull attribute_analyzer_noreturn attribute_availability attribute_availability_with_message attribute_availability_app_extension attribute_availability_with_version_underscores attribute_availability_tvos attribute_availability_watchos attribute_availability_with_strict attribute_availability_with_replacement attribute_availability_in_templates attribute_cf_returns_not_retained attribute_cf_returns_retained attribute_cf_returns_on_parameters attribute_deprecated_with_message attribute_deprecated_with_replacement attribute_ext_vector_type attribute_ns_returns_not_retained attribute_ns_returns_retained attribute_ns_consumes_self attribute_ns_consumed attribute_objc_ivar_unused attribute_objc_method_family attribute_overloadable attribute_unavailable_with_message attribute_unused_on_fields c_thread_safety_attributes cxx_exceptions cxx_rtti enumerator_attributes nullability memory_sanitizer dataflow_sanitizer efficiency_sanitizer objc_arr objc_arc_weak objc_default_synthesize_properties objc_fixed_enum objc_instancetype objc_kindof objc_modules objc_nonfragile_abi objc_property_explicit_atomic objc_protocol_qualifier_mangling objc_weak_class objc_bool objc_subscripting objc_array_literals objc_dictionary_literals objc_boxed_expressions objc_boxed_nsvalue_expressions arc_cf_code_audited objc_bridge_id objc_bridge_id_on_typedefs objc_generics objc_generics_variance objc_class_property c_alignas c_atomic c_generic_selections c_static_assert c_thread_local cxx_access_control_sfinae cxx_alias_templates cxx_alignas cxx_atomic cxx_attributes cxx_auto_type cxx_decltype cxx_decltype_incomplete_return_types cxx_default_function_template_args cxx_defaulted_functions cxx_delegating_constructors cxx_deleted_functions cxx_explicit_conversions cxx_generalized_initializers cxx_implicit_moves cxx_inheriting_constructors cxx_inline_namespaces cxx_lambdas cxx_local_type_template_args cxx_nonstatic_member_init cxx_noexcept cxx_nullptr cxx_override_control cxx_range_for cxx_raw_string_literals cxx_reference_qualified_functions cxx_rvalue_references cxx_strong_enums cxx_static_assert cxx_thread_local cxx_trailing_return cxx_unicode_literals cxx_unrestricted_unions cxx_user_literals cxx_variadic_templates cxx_aggregate_nsdmi cxx_contextual_conversions cxx_decltype_auto cxx_generic_lambdas cxx_init_captures cxx_relaxed_constexpr cxx_return_type_deduction cxx_variable_templates has_nothrow_assign has_nothrow_copy has_nothrow_constructor has_trivial_assign has_trivial_copy has_trivial_constructor has_trivial_destructor is_abstract is_base_of is_class is_constructible is_convertible_to is_empty is_enum is_final is_literal is_standard_layout is_pod is_polymorphic is_sealed is_trivial is_trivially_assignable is_trivially_constructible is_trivially_copyable is_union modules safe_stack tls underlying_type attribute_cf_consumed thread_sanitizer objc_arc c_alignof cxx_alignof cxx_constexpr cxx_binary_literals has_virtual_destructor '__has_warning' ??? ??? ?? ??:??:?? ???? __DATE__ __TIME__ __COUNTER__ _Pragma __has_cpp_attribute __BASE_FILE__ __INCLUDE_LEVEL__ __TIMESTAMP__ __identifier __pragma __has_feature __has_extension __has_builtin __has_attribute __has_declspec_attribute __has_include __has_include_next __has_warning __is_identifier __building_module __MODULE__ MacroState overrides ModuleMacro undef Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec pragma message pragma warning pragma error parser_crash dump llvm_fatal_error llvm_unreachable overflow_stack handle_crash pragma clang __debug captured #pragma clang __debug llvm_fatal_error suppress pragma once DEFAULT push_macro pop_macro poison system_header diagnostic __debug FENV_ACCESS CX_LIMITED_RANGE include_alias endregion Unknown buffer [StartOfLine] [LeadingSpace] [ExpandDisabled] [UnClean=' '] Loc=< MACRO: *** Preprocessor Stats: directives found: #define. #undef. #include/#include_next/#import: source files entered. max include stack depth #if/#ifndef/#ifdef. #else/#elif. #endif. #pragma. #if/#ifndef#ifdef regions skipped obj/fn/builtin macros expanded, on the fast path. token paste (##) operations performed, Preprocessor Memory: B total BumpPtr: Macro Expanded Tokens: Predefines Buffer: Macros: #pragma push_macro Info: Poison Reasons: Comment Handlers: <scratch space> <invalid> Header Map : -> ' ' ' address_space bounded cudart_builtin device_builtin device_builtin_surface_type lockable neon_polyvector_type neon_vector_type nv_weak nosvm device_builtin_texture_type math.h pP sS not a builtin function __builtin_atan2 ddd Fnc __builtin_atan2f fff __builtin_atan2l LdLdLd __builtin_abs ncF __builtin_copysign __builtin_copysignf __builtin_copysignl __builtin_fabs __builtin_fabsf __builtin_fabsl __builtin_fmod __builtin_fmodf __builtin_fmodl __builtin_frexp ddi* Fn __builtin_frexpf ffi* __builtin_frexpl LdLdi* __builtin_huge_val __builtin_huge_valf __builtin_huge_vall __builtin_inf __builtin_infl __builtin_labs LiLi __builtin_llabs __builtin_ldexp __builtin_ldexpf ffi __builtin_ldexpl LdLdi __builtin_modf ddd* __builtin_modff fff* __builtin_modfl LdLdLd* __builtin_nan dcC* fcC* __builtin_nanl LdcC* __builtin_nans __builtin_nansf __builtin_nansl __builtin_powi __builtin_powif __builtin_powil __builtin_pow __builtin_powf __builtin_powl __builtin_acos __builtin_acosf __builtin_acosl __builtin_acosh __builtin_acoshf __builtin_acoshl __builtin_asin __builtin_asinf __builtin_asinl __builtin_asinh __builtin_asinhf __builtin_asinhl __builtin_atan __builtin_atanf __builtin_atanl __builtin_atanh __builtin_atanhf __builtin_atanhl __builtin_cbrt __builtin_cbrtf __builtin_cbrtl __builtin_ceil __builtin_ceilf __builtin_ceill __builtin_cos __builtin_cosf __builtin_cosh __builtin_coshf __builtin_coshl __builtin_cosl __builtin_erf __builtin_erff __builtin_erfl __builtin_erfc __builtin_erfcf __builtin_erfcl __builtin_exp __builtin_expf __builtin_expl __builtin_exp2 __builtin_exp2f __builtin_exp2l __builtin_expm1 __builtin_expm1f __builtin_expm1l __builtin_fdim __builtin_fdimf __builtin_fdiml __builtin_floor __builtin_floorf __builtin_floorl __builtin_fma dddd __builtin_fmaf __builtin_fmal LdLdLdLd __builtin_fmax __builtin_fmaxf __builtin_fmaxl __builtin_fmin __builtin_fminf __builtin_fminl __builtin_hypot __builtin_hypotf __builtin_hypotl __builtin_ilogb __builtin_ilogbf __builtin_ilogbl iLd __builtin_lgamma __builtin_lgammaf __builtin_lgammal __builtin_llrint LLid __builtin_llrintf LLif __builtin_llrintl LLiLd __builtin_llround __builtin_llroundf __builtin_llroundl __builtin_log __builtin_log10 __builtin_log10f __builtin_log10l __builtin_log1p __builtin_log1pf __builtin_log1pl __builtin_log2 __builtin_log2f __builtin_log2l __builtin_logb __builtin_logbf __builtin_logbl __builtin_logf __builtin_logl __builtin_lrint Lid __builtin_lrintf Lif __builtin_lrintl LiLd __builtin_lround __builtin_lroundf __builtin_lroundl __builtin_nearbyint __builtin_nearbyintf __builtin_nearbyintl __builtin_nextafter __builtin_nextafterf __builtin_nextafterl __builtin_nexttoward ddLd __builtin_nexttowardf ffLd __builtin_nexttowardl __builtin_remainder __builtin_remainderf __builtin_remainderl __builtin_remquo dddi* __builtin_remquof fffi* __builtin_remquol LdLdLdi* __builtin_rint __builtin_rintf __builtin_rintl __builtin_round __builtin_roundf __builtin_roundl __builtin_scalbln ddLi __builtin_scalblnf ffLi __builtin_scalblnl LdLdLi __builtin_scalbn __builtin_scalbnf __builtin_scalbnl __builtin_sin __builtin_sinf __builtin_sinh __builtin_sinhf __builtin_sinhl __builtin_sinl __builtin_sqrt __builtin_sqrtf __builtin_sqrtl __builtin_tan __builtin_tanf __builtin_tanh __builtin_tanhf __builtin_tanhl __builtin_tanl __builtin_tgamma __builtin_tgammaf __builtin_tgammal __builtin_trunc __builtin_truncf __builtin_truncl __builtin_cabs dXd __builtin_cabsf fXf __builtin_cabsl __builtin_cacos XdXd __builtin_cacosf XfXf __builtin_cacosh __builtin_cacoshf __builtin_cacoshl XLdXLd __builtin_cacosl __builtin_carg __builtin_cargf __builtin_cargl __builtin_casin __builtin_casinf __builtin_casinh __builtin_casinhf __builtin_casinhl __builtin_casinl __builtin_catan __builtin_catanf __builtin_catanh __builtin_catanhf __builtin_catanhl __builtin_catanl __builtin_ccos __builtin_ccosf __builtin_ccosl __builtin_ccosh __builtin_ccoshf __builtin_ccoshl __builtin_cexp __builtin_cexpf __builtin_cexpl __builtin_cimag __builtin_cimagf __builtin_cimagl __builtin_conj __builtin_conjf __builtin_conjl __builtin_clog __builtin_clogf __builtin_clogl __builtin_cproj __builtin_cprojf __builtin_cprojl __builtin_cpow XdXdXd __builtin_cpowf XfXfXf __builtin_cpowl XLdXLdXLd __builtin_creal __builtin_crealf __builtin_creall __builtin_csin __builtin_csinf __builtin_csinl __builtin_csinh __builtin_csinhf __builtin_csinhl __builtin_csqrt __builtin_csqrtf __builtin_csqrtl __builtin_ctan __builtin_ctanf __builtin_ctanl __builtin_ctanh __builtin_ctanhf __builtin_ctanhl __builtin_isgreater __builtin_isgreaterequal __builtin_isless __builtin_islessequal __builtin_islessgreater __builtin_isunordered __builtin_fpclassify iiiii. __builtin_isfinite __builtin_isinf __builtin_isinf_sign __builtin_isnan __builtin_isnormal __builtin_signbit __builtin_signbitf __builtin_signbitl __builtin_canonicalize __builtin_canonicalizef __builtin_canonicalizel __builtin_clzs __builtin_clz __builtin_clzl iULi __builtin_clzll iULLi __builtin_ctzs __builtin_ctz __builtin_ctzl __builtin_ctzll __builtin_ffs __builtin_ffsl __builtin_ffsll __builtin_parity __builtin_parityl __builtin_parityll __builtin_popcount __builtin_popcountl __builtin_popcountll __builtin_bswap16 UsUs __builtin_bswap32 __builtin_bswap64 __builtin_bitreverse8 UcUc __builtin_bitreverse16 __builtin_bitreverse32 __builtin_bitreverse64 __builtin_constant_p nctu __builtin_classify_type __builtin___CFStringMakeConstantString FC*cC* __builtin___NSStringMakeConstantString __builtin_va_start vA. __builtin_va_end vA __builtin_va_copy vAA __builtin_stdarg_start __builtin_assume_aligned v*vC*z. __builtin_bcmp iv*v*z __builtin_bcopy vv*v*z __builtin_bzero vv*z nF __builtin_fprintf iP*cC*. Fp:1: __builtin_memchr v*vC*iz __builtin_memcmp ivC*vC*z v*v*vC*z __builtin_memmove __builtin_mempcpy __builtin_memset v*v*iz __builtin_printf icC*. Fp:0: __builtin_stpcpy c*c*cC* __builtin_stpncpy c*c*cC*z __builtin_strcasecmp icC*cC* __builtin_strcat __builtin_strchr c*cC*i __builtin_strcmp __builtin_strcpy __builtin_strcspn zcC*cC* __builtin_strdup c*cC* __builtin_strlen zcC* __builtin_strncasecmp icC*cC*z __builtin_strncat __builtin_strncmp __builtin_strncpy __builtin_strndup c*cC*z __builtin_strpbrk c*cC*cC* __builtin_strrchr __builtin_strspn __builtin_strstr __builtin_return_address v*IUi __builtin_extract_return_addr v*v* __builtin_frame_address __builtin___clear_cache vc*c* __builtin_flt_rounds __builtin_setjmp iv** __builtin_longjmp vv**i __builtin_unwind_init __builtin_eh_return_data_regno __builtin_snprintf ic*zcC*. nFp:2: __builtin_vsprintf ic*cC*a nFP:1: __builtin_vsnprintf ic*zcC*a nFP:2: __builtin_eh_return vzv* __builtin_frob_return_addr __builtin_dwarf_cfa vv* __builtin_extend_pointer ULLiv* __builtin_object_size zvC*i nu __builtin___memcpy_chk v*v*vC*zz __builtin___memccpy_chk v*v*vC*izz __builtin___memmove_chk __builtin___mempcpy_chk __builtin___memset_chk v*v*izz __builtin___stpcpy_chk __builtin___strcat_chk __builtin___strcpy_chk __builtin___strlcat_chk zc*cC*zz __builtin___strlcpy_chk __builtin___strncat_chk c*c*cC*zz __builtin___strncpy_chk __builtin___stpncpy_chk __builtin___snprintf_chk ic*zizcC*. Fp:4: __builtin___sprintf_chk ic*izcC*. Fp:3: __builtin___vsnprintf_chk ic*zizcC*a FP:4: __builtin___vsprintf_chk ic*izcC*a FP:3: __builtin___fprintf_chk iP*icC*. Fp:2: __builtin___printf_chk iicC*. __builtin___vfprintf_chk iP*icC*a FP:2: __builtin___vprintf_chk iicC*a FP:1: __builtin_unpredictable __builtin_expect LiLiLi __builtin_prefetch vvC*. __builtin_readcyclecounter __builtin_debugtrap __builtin_unreachable v. __builtin_alloca v*z __builtin_call_with_static_chain __sync_fetch_and_add __sync_fetch_and_add_1 ccD*c. __sync_fetch_and_add_2 ssD*s. __sync_fetch_and_add_4 iiD*i. __sync_fetch_and_add_8 LLiLLiD*LLi. __sync_fetch_and_add_16 LLLiLLLiD*LLLi. __sync_fetch_and_sub __sync_fetch_and_sub_1 __sync_fetch_and_sub_2 __sync_fetch_and_sub_4 __sync_fetch_and_sub_8 __sync_fetch_and_sub_16 __sync_fetch_and_or __sync_fetch_and_or_1 __sync_fetch_and_or_2 __sync_fetch_and_or_4 __sync_fetch_and_or_8 __sync_fetch_and_or_16 __sync_fetch_and_and __sync_fetch_and_and_1 __sync_fetch_and_and_2 __sync_fetch_and_and_4 __sync_fetch_and_and_8 __sync_fetch_and_and_16 __sync_fetch_and_xor __sync_fetch_and_xor_1 __sync_fetch_and_xor_2 __sync_fetch_and_xor_4 __sync_fetch_and_xor_8 __sync_fetch_and_xor_16 __sync_fetch_and_nand __sync_fetch_and_nand_1 __sync_fetch_and_nand_2 __sync_fetch_and_nand_4 __sync_fetch_and_nand_8 __sync_fetch_and_nand_16 __sync_add_and_fetch __sync_add_and_fetch_1 __sync_add_and_fetch_2 __sync_add_and_fetch_4 __sync_add_and_fetch_8 __sync_add_and_fetch_16 __sync_sub_and_fetch __sync_sub_and_fetch_1 __sync_sub_and_fetch_2 __sync_sub_and_fetch_4 __sync_sub_and_fetch_8 __sync_sub_and_fetch_16 __sync_or_and_fetch __sync_or_and_fetch_1 __sync_or_and_fetch_2 __sync_or_and_fetch_4 __sync_or_and_fetch_8 __sync_or_and_fetch_16 __sync_and_and_fetch __sync_and_and_fetch_1 __sync_and_and_fetch_2 __sync_and_and_fetch_4 __sync_and_and_fetch_8 __sync_and_and_fetch_16 __sync_xor_and_fetch __sync_xor_and_fetch_1 __sync_xor_and_fetch_2 __sync_xor_and_fetch_4 __sync_xor_and_fetch_8 __sync_xor_and_fetch_16 __sync_nand_and_fetch __sync_nand_and_fetch_1 __sync_nand_and_fetch_2 __sync_nand_and_fetch_4 __sync_nand_and_fetch_8 __sync_nand_and_fetch_16 __sync_bool_compare_and_swap __sync_bool_compare_and_swap_1 bcD*cc. __sync_bool_compare_and_swap_2 bsD*ss. __sync_bool_compare_and_swap_4 biD*ii. __sync_bool_compare_and_swap_8 bLLiD*LLiLLi. __sync_bool_compare_and_swap_16 bLLLiD*LLLiLLLi. __sync_val_compare_and_swap __sync_val_compare_and_swap_1 ccD*cc. __sync_val_compare_and_swap_2 ssD*ss. __sync_val_compare_and_swap_4 iiD*ii. __sync_val_compare_and_swap_8 LLiLLiD*LLiLLi. __sync_val_compare_and_swap_16 LLLiLLLiD*LLLiLLLi. __sync_lock_test_and_set __sync_lock_test_and_set_1 __sync_lock_test_and_set_2 __sync_lock_test_and_set_4 __sync_lock_test_and_set_8 __sync_lock_test_and_set_16 __sync_lock_release __sync_lock_release_1 vcD*. __sync_lock_release_2 vsD*. __sync_lock_release_4 viD*. __sync_lock_release_8 vLLiD*. __sync_lock_release_16 vLLLiD*. __sync_swap __sync_swap_1 __sync_swap_2 __sync_swap_4 __sync_swap_8 __sync_swap_16 __c11_atomic_init __c11_atomic_load __c11_atomic_store __c11_atomic_exchange __c11_atomic_compare_exchange_strong __c11_atomic_compare_exchange_weak __c11_atomic_fetch_add __c11_atomic_fetch_sub __c11_atomic_fetch_and __c11_atomic_fetch_or __c11_atomic_fetch_xor __c11_atomic_thread_fence vi __c11_atomic_signal_fence __c11_atomic_is_lock_free __atomic_load_n __atomic_store_n __atomic_exchange_n __atomic_compare_exchange_n __atomic_add_fetch __atomic_sub_fetch __atomic_and_fetch __atomic_or_fetch __atomic_xor_fetch __atomic_nand_fetch __atomic_test_and_set bvD*i __atomic_clear vvD*i __atomic_thread_fence __atomic_signal_fence __atomic_always_lock_free izvCD* __cl20_atomic_fetch_min __cl20_atomic_fetch_max __sync_synchronize __sync_fetch_and_min iiD*i __sync_fetch_and_max __sync_fetch_and_umin UiUiD*Ui __sync_fetch_and_umax __builtin_abort Fnr __builtin_index __builtin_rindex _alloca __assume __debugbreak __GetExceptionInfo v*. ntu _InterlockedCompareExchange LiLiD*LiLi _InterlockedCompareExchangePointer v*v*D*v*v* _InterlockedDecrement LiLiD* _InterlockedExchangeAdd LiLiD*Li _InterlockedExchange _InterlockedExchangePointer v*v*D*v* _InterlockedIncrement __noop __readfsdword ULiULi __va_start vc**. iJ fj setjmpex.h stdlib.h calloc v*zz _Exit v*v*z string.h strcpy strcmp strcat strxfrm zc*cC*z memchr strchr strcspn strpbrk strrchr strspn strstr strtok strerror fp:0: fprintf fp:1: snprintf fp:2: sprintf ic*cC*. icC*a fP:0: vfprintf fP:1: vsnprintf fP:2: vsprintf icC*R. fs:0: fscanf iP*RcC*R. fs:1: sscanf icC*RcC*R. vscanf icC*Ra fS:0: vfscanf iP*RcC*Ra fS:1: vsscanf icC*RcC*Ra vJi stpcpy stpncpy strdup strings.h rindex bzero strcasecmp _exit unistd.h vfork __sigsetjmp iSJi sigsetjmp setjmp_syscall savectx qsetjmp getcontext iK* _longjmp siglongjmp vSJi strlcpy strlcat GGH. objc/message.h LdGH. XLdGH. vGH. GM*H. vM*H. objc_getClass GcC* objc/runtime.h objc_getMetaClass vG GG* objc/objc-auto.h GGG* GGGY Gv* objc/objc-exception.h iGG iG objc/objc-sync.h NSLog vG. Foundation/NSObjCRuntime.h NSLogv vGa fne atan2f atan2l fnc labs llabs copysignf copysignl fabsf fabsl fmodf fmodl frexpf frexpl ldexpf ldexpl modff modfl nanf nanl powf powl acosf acosl acoshf acoshl asinf asinl asinhf asinhl atanf atanl atanhf atanhl cbrtf cbrtl ceilf ceill erff erfl erfcf erfcl exp2f exp2l expm1f expm1l fdimf fdiml floorf floorl fmal fmaxf fmaxl fminf fminl hypotf hypotl ilogbf ilogbl lgammaf lgammal llrint llrintf llrintl llround llroundf llroundl logf logl log10f log10l log1pf log1pl log2f log2l logbf logbl lrint lrintf lrintl lround lroundf lroundl nearbyint nearbyintf nearbyintl nextafterf nextafterl nexttoward nexttowardf nexttowardl remainderf remainderl scalbln scalblnf scalblnl scalbn scalbnf scalbnl sqrtf sqrtl tgammaf tgammal truncf truncl cabs complex.h cabsf cabsl cacos cacosf cacosl cacosh cacoshf cacoshl carg cargf cargl casin casinf casinl casinh casinhf casinhl catan catanf catanl catanh catanhf catanhl ccos ccosf ccosl ccosh ccoshf ccoshl cexp cexpf cexpl cimag cimagf cimagl conj conjf conjl clog clogf clogl cproj cprojf cprojl cpow cpowf cpowl creal crealf creall csin csinf csinl csinh csinhf csinhl csqrt csqrtf csqrtl ctan ctanf ctanl ctanh ctanhf ctanhl __sinpi __sinpif __cospi __cospif __tanpi __tanpif __exp10 __exp10f vv*vC*iC Blocks.h vvC*iC __builtin_annotation __builtin_assume __builtin_addcb UcUcCUcCUcCUc* __builtin_addcs UsUsCUsCUsCUs* __builtin_addc UiUiCUiCUiCUi* __builtin_addcl ULiULiCULiCULiCULi* __builtin_addcll ULLiULLiCULLiCULLiCULLi* __builtin_subcb __builtin_subcs __builtin_subc __builtin_subcl __builtin_subcll __builtin_add_overflow __builtin_sub_overflow __builtin_mul_overflow __builtin_uadd_overflow bUiCUiCUi* __builtin_uaddl_overflow bULiCULiCULi* __builtin_uaddll_overflow bULLiCULLiCULLi* __builtin_usub_overflow __builtin_usubl_overflow __builtin_usubll_overflow __builtin_umul_overflow __builtin_umull_overflow __builtin_umulll_overflow __builtin_sadd_overflow bSiCSiCSi* __builtin_saddl_overflow bSLiCSLiCSLi* __builtin_saddll_overflow bSLLiCSLLiCSLLi* __builtin_ssub_overflow __builtin_ssubl_overflow __builtin_ssubll_overflow __builtin_smul_overflow __builtin_smull_overflow __builtin_smulll_overflow __builtin_addressof v*v& __builtin___get_unsafe_stack_start __builtin___get_unsafe_stack_ptr __builtin_nontemporal_store __builtin_nontemporal_load sub_group_reserve_read_pipe sub_group_reserve_write_pipe sub_group_commit_read_pipe sub_group_commit_write_pipe work_group_reserve_read_pipe work_group_reserve_write_pipe work_group_commit_read_pipe work_group_commit_write_pipe get_pipe_num_packets Ui. get_pipe_max_packets enqueue_kernel get_kernel_work_group_size get_kernel_preferred_work_group_size_multiple to_global to_local to_private 0 0 0 0 0 0 P P P P P P @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ <can't format argument> 'nonnull' '_Nonnull' 'nullable' '_Nullable' 'null_unspecified' '_Null_unspecified' plural ordinal ^ + , - o B f F 8 = ; < > ? : @ A C D T G H K I J [ ~ n ; q r _ < E s 0 1 = 8 x y > } V 2 l > O % ' ( ) * 7 = ? @ A ^ ` 3 ! 0 a b c [ d f $ 5 6 + ? @ A B C = D E F G H I J M N O P Q R S T U V W X Y Z \ ] I K L H [ N \ c e d Y h l G H O H I y M | 4 5 ? C H Q i j O t u ^ v w d z x . } < ] / Q R S i j k l n s t u v w x z { | } ~ m o p q r y h ` A J a \ @ B a v j B D E ( " # ) * + < = ! $ % & ' ( d : ? 1 / : ~ c { 4 5 Z g g y 9 F c | i r 6 7 L N T U V W 9 X Y Z \ ] ^ ` a b c d e f g h i z 3 6 ; m e y z { | } l m n o p q r s t u v w x y z { | } ~ 9 { j U F W X 1 x Y $ Q P G % 2 ` f c @ S T k l V 8 9 p b s s " % 6 L < z x . } e ~ V ] ^ ~ # _ " d z ) 8 # _ a ( ` a 4 \ S e f h 6 7 I m o @ A M _ F G M & p , r N h i j 9 R S D E o m W ! B 0 1 2 3 ; 4 / c e f h l o p $ t u w { . 0 1 2 3 : , C E I N U Y < u 2 3 b O R M K & ' ! , k t " # ) + , 5 e k , 0 1 2 - / 3 7 8 8 9 B : C C D q H F G 3 I J G J K N M O Q R ; U W X [ P Y Z \ ] ^ _ D | g } : h 5 r V 1 2 - . v w o s t u v w 0 / 7 x ~ * ] 4 q 0 L u * q J K > P l m _ > ? n [ ' f W [ - 1 L _ c r % B ! X \ # % ' ) + - / 3 $ 8 D H ; [ = g ? n A z C E G I K M 2 O > Q K Y Z [ s ] ` b e g j l " n ( p 4 s L v d x | z $ & ( | * 0 , 3 = N e u 7 9 ; = ? B 8 K D g F t ! # K / 1 8 < % G 0 I A K K V N f Q s V P X Z R _ b d f h j T $ l = n Q p Z y V e c u , 6 J h e 3 M k s m ( E Q b o r 6 U f t ' 4 D S ^ t ! # v % ' ~ * ! - * / 4 1 N 4 _ 6 k 8 : < ? W Y [ _ a c + e > G g [ i n l n u x z | ~ ' 6 J k , = P d } $ 1 @ V i " / % Q ' o , | . 0 2 4 6 8 $ : G < ^ > y @ C E G I L / N M P \ R o T V Y [ ] ` b d ( f F h X j i m o r u x { ~ - < J a z & + < T s : P q / A ] w $ : U m } - F Y o " ) $ I N S ` & j ( ~ * , . 1 3 5 0 7 @ < Q > Y o A C F I K M S U W ! Y @ [ l ] _ f h j l o * q = x ] z v | ~ ! 7! R! j! ! ! ! ! " " -" A" [" _" n" " " " " " " " " # !# 4# D# _# s# z# # # # # # # # # # #" $% $, 0$/ =$ Q$1 g$3 $5 $7 $9 N $; $= %? %A .%C G%E b%G ~%L %N %P %R %V %X &Z &] 4& D&_ S&a Q \&c s&e &g &i &k &m S &p &r 'v U '~ +' ?' P' X' W a' x' Y ' ' ' ' ' [ ' ' ] ' _ ' b ( ?( K( `( u( ( ( ( ( ( ( ( ( ) $) =) U) h) t) ) d ) ) ) ) ) * * (* :* J* \* n* * * * * * * * * + + 5+ B+ ^+ e+ q+ + + + + f + + , 2, Q, v, k , , , , , , - "- ,- 8-$ D-( Y-* j-, -. -1 -3 -6 -8 -: -< .? %.A p <.C D.I W.K r e.S v.U .W .Y .l .n .q u .s /v -/x w >/ y Z/z q/| /~ / / / / / 0 } 0 *0 G0 Y0 o0 0 0 0 0 0 0 0 1 #1 81 M1 [1 h1 x1 1 1 1 1 1 1 1 2 2 2 #2 82 N2 d2 q2 2 2 * l ! " w H V = 6 A E I I D B S Q T R F G H Q R J M Q S W Y S Q U V T R z e 3 6 l * w B [ ^ g F | w ~ y W H ; J > G N Q C R K L P E B ? O M A I H F : = S 9 < @ a e W X m o 5 F J Z y ^ J I p + x . - 5 x Z F H J % / ; < > @ A G H M w q ~ h r ~ ' J D U ( * ) + / . 2 3 Y S P R T [ ` b h c k l i N c O ] j C ^ r | ARC Lexical or Preprocessor Issue Lambda Issue ARC Semantic Issue ARC and @properties ARC Casting Rules ARC Parse Issue ARC Weak References ARC Restrictions OpenMP Issue Inline Assembly Issue Coroutines Issue Backend Issue AST Deserialization Issue Modules Issue Nullability Issue Generics Issue User-Defined Issue VTable ABI Issue Value Conversion Issue Documentation Issue ARC Retain Cycle Related Result Type Issue Deprecations Format String Issue Cocoa API Issue #pragma message Directive Instrumentation Issue Unused Entity Issue NSInvocation's %0 is not safe to be used with an object with ownership other than __unsafe_unretained %0 attribute cannot be applied to types cannot open file '%0': %1 only special member functions may be defaulted only functions can have deleted definitions enumeration cannot be a template expected %1 after %0 method name referenced in property setter attribute must end with ':' expected %0 or %1 expected namespace name expected string literal %select{in %1|for diagnostic message in static_assert|for optional message in 'availability' attribute}0 file '%0' modified since it was first processed integer literal is too large to be represented in any %select{signed |}0integer type character literal with user-defined suffix cannot be used here numeric literal with user-defined suffix cannot be used here invalid storage class specifier in function declarator string literal with user-defined suffix cannot be used here module '%0' is needed but has not been provided, and implicit use of module files is disabled cyclic dependency in module '%0': %1 no handler registered for module format '%0' %select{|umbrella }0header '%1' not found could not acquire lock file for module '%0' timed out waiting to acquire lock file for module '%0' could not build module '%0' module '%0' not found module '%0' %select{is incompatible with|requires}1 feature '%2' [rewriter] %0 nullability specifier %0 conflicts with existing specifier %1 directive '#pragma omp %0' cannot contain more than one '%1' clause%select{| with '%3' name modifier| with 'source' dependence}2 option '%0' cannot be specified with '%1' redefinition of parameter %0 %0 only allowed in __except block or filter expression %0 only allowed in __except filter expression %0 only allowed in __finally block expected '__except' or '__finally' block unknown target ABI '%0' unknown target CPU '%0' unknown FP unit '%0' unknown target triple '%0', please use -triple or -arch the '%0' unit is not supported with this instruction set the %0 sub-architecture does not support unaligned accesses unable to make temporary file: %0 unable to rename temporary '%0' to output file '%1': '%2' %0 byte order mark detected in '%1', but encoding is not supported 'long long' is an extension when C99 mode is not enabled 'enable_if' is a clang extension 'long long' is a C++11 extension integer literal is too large to be represented in a signed integer type, interpreting as unsigned integer literal is too large to be represented in type 'long' and is subject to undefined behavior under C++98, interpreting as 'unsigned long'; this literal will %select{have type 'long long'|be ill-formed}0 in C++11 onwards variadic templates are a C++11 extension too many errors emitted, stopping now also found %1 %0 is hidden by a non-type declaration of %0 here previous case defined here forward declaration of %0 subexpression not valid in a constant expression to match this %0 one possibility #pragma entered here previous declaration is here previous definition is here previous implicit declaration is here previous use is here definition of %0 is not complete until the closing '}' [rewriter] call returns pointer to GC managed memory; it will become unmanaged in ARC conflicting nullability specifier on parameter types, %0 conflicts with existing specifier %1 conflicting nullability specifier on return types, %0 conflicts with existing specifier %1 'long long' is incompatible with C++98 variadic templates are incompatible with C++98 redeclaration of method parameter %0 redefinition of method parameter %0 duplicate nullability specifier %0 integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C89; this literal will %select{have type 'long long'|be ill-formed}0 in C99 onwards integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C++98; this literal will %select{have type 'long long'|be ill-formed}0 in C++11 onwards analyzer-config option '%0' should contain only one '=' analyzer-config option '%0' has a key but no value -fobjc-arc is not supported on platforms using the legacy runtime -fobjc-arc is not supported on versions of OS X prior to 10.6 '%0' not supported, please use -iquote instead invalid argument '%0' not allowed with '%1' invalid argument '%0' only allowed with '%1' -fembed-bitcode is not supported on versions of iOS prior to 6.0 unable to open CC_PRINT_OPTIONS file: %0 the clang compiler does not support '%0' the clang compiler does not support '%0' for C++ on Darwin/i386 %0 command failed with exit code %1 (use -v to see invocation) unable to execute command: %0 %0 command failed due to signal (use -v to see invocation) conflicting deployment targets, both '%0' and '%1' are present in environment Unsupported CUDA gpu architecture: %0 -emit-llvm cannot be used when linking failing because environment variable '%0' is set invalid Xarch argument: '%0', cannot change driver behavior inside Xarch argument invalid Xarch argument: '%0', options requiring arguments are unsupported invalid arch name '%0' invalid argument '%0' to -fdebug-prefix-map invalid Darwin version number: %0 invalid output type '%0' for use with gcc tool invalid integral value '%1' in '%0' invalid deployment target for -stdlib=libc++ (requires %0 or later) invalid linker name in argument '%0' invalid float ABI '%0' OpenMP target is invalid: '%0' cannot use '%0' output with multiple -arch options invalid PGO instrumentor in argument '%0' invalid option '%0' not of the form <from-file>;<to-file> invalid runtime library name in argument '%0' invalid library name in argument '%0' invalid thread model '%0' in '%1' for this target invalid value '%1' in '%0' invalid version number in '%0' malformed sanitizer blacklist: '%0' option '-MG' requires '-M' or '-MM' argument to '%0' is missing (expected %1 value%s1) option '-fmodules-validate-once-per-build-session' requires '-fbuild-session-timestamp=<seconds since Epoch>' or '-fbuild-session-file=<file>' '%0': unable to use AST files with this tool cannot find CUDA installation. Provide its path via --cuda-path, or pass -nocudainc to build without CUDA includes. no input files '%0': unable to pass LLVM bit-code files to linker '%0': unable to use module files with this tool [no]neon is not accepted as modifier, please use [no]simd instead no such file or directory: '%0' cannot specify both '-fobjc-arc' and '%0' The provided host compiler IR file '%0' is required to generate code for OpenMP target regions but cannot be found. The target '%0' is not a supported OpenMP host target. %0 in '%1' cannot specify '%0%1' when compiling multiple source files cannot specify -o when generating multiple output files incorrect format for -preamble-bytes=N,END unable to remove file: %0 unknown argument: '%0' language not recognized: '%0' unknown or ill-formed Objective-C runtime '%0' -E or -x required when input is from standard input use /Tc or /Tp to set input type for standard input unsupported value '%0' for -linker option unsupported option '%0' unsupported option '%0' for target '%1' unsupported argument '%1' to option '%0' unsupported runtime library '%0' for platform '%1' unsupported use of internal gcc -Z option '%0' there is no external assembler that can be used on this platform -fobjc-weak is not supported on the current deployment target -fobjc-weak is not supported in Objective-C garbage collection the target architecture '%0' is not supported by the target '%1' -ftest-module-file-extension argument '%0' is not of the required form 'blockname:major:minor:hashed:user info' AddressSanitizer doesn't support linking with debug runtime libraries yet diagnostic msg: %0 The last /TC or /TP option takes precedence over earlier instances -O4 is equivalent to -O3 ignoring -fapple-kext which is valid for C++ and Objective-C++ only cannot compress debug sections (zlib not installed) unknown platform, assuming -mfloat-abi=%0 argument '%0' is deprecated, use '%1' instead implicitly disabling vptr sanitizer because rtti wasn't enabled joined argument expects additional value: '%0' implicitly enabling rtti for exception handling %0: '%1' input unused%select{ when '%3' is present|}2 %0: '%1' input unused in cpp mode falling back to %0 libLTO.dylib relative to clang installed dir not found; using 'ld' default search path instead Objective-C garbage collection is not supported on this platform, ignoring '%0' optimization level '%0' is not supported; using '%1%2' instead overriding '%0' option with '%1' precompiled header '%0' was ignored because '%1' is not first '-include' %0: previously preprocessed input%select{ unused when '%2' is present|}1 option '%0' was ignored by the PS4 toolchain, using '-fPIC' environment variable SCE_PS4_SDK_DIR is set, but points to invalid or nonexistent directory '%0' treating '%0' input as '%1' when in C++ mode, this behavior is deprecated unable to find %0 directory, expected to be in '%1' unknown argument ignored in clang-cl: '%0' argument unused during compilation: '%0' support for '/Yc' with more than one source file not implemented yet; flag ignored support for '/Yc' and '/Yu' with different filenames not implemented yet; flags ignored support for '%0' without a filename not implemented yet; flag ignored support for '%0' without a corresponding /FI flag not implemented yet; flag ignored optimization flag '%0' is not supported ignoring invalid -ftabstop value '%0', using default value %1 using sysroot for '%0' but targeting '%1' no such sysroot directory: '%0' ignoring '-mnan=2008' option because the '%0' architecture does not support it ignoring '-mnan=legacy' option because the '%0' architecture does not support it action %0 not compiled in cannot link module '%0': %1 -dependency-file requires at least one -MT or -MQ option error in backend: %0 error opening '%0': %1 error reading '%0' error reading stdin: %0 expected a clang compiler command unable to handle compilation, expected exactly one compiler job in '%0' cannot locate code-completion file %0 unable to find plugin '%0' no suitable precompiled header file found in directory '%0' PTH file '%0' does not designate an original source header file for -include-pth could not remap from missing file '%0' could not remap file '%0' to the contents of file '%1' unable to change standard output to binary unable to create target: '%0' unable to interface with target machine unable to load PCH file unable to load plugin '%0': '%1' unable to open output file '%0': '%1' invalid virtual filesystem overlay file '%0' no module named '%0' declared in module map file '%1' no module name provided; specify one with -fmodule-name= virtual filesystem overlay file '%0' not found cannot create includes file for module %0: %1 module map file '%0' not found file '%0' specified by '-fmodules-embed-file=' not found no submodule named %0 in module '%1' no submodule named %0 in module '%1'; did you mean '%2'? must specify system root with -isysroot when building a relocatable PCH file test module file extension '%0' has different version (%1.%2) than expected (%3.%4) no analyzer checkers are associated with '%0' '%0' diagnostics %select{expected|seen}1 but not %select{seen|expected}1: %2 invalid expected %0: %1 %select{expected|'expected-no-diagnostics'}0 directive cannot follow %select{'expected-no-diagnostics' directive|other expected directives}0 invalid range following '-' in expected %0 cannot find end ('}}') of expected %0 file '%0' could not be located in expected %1 missing or invalid line number following '@' in expected %0 cannot find start of regex ('{{') in %0 cannot find start ('{{') of expected %0 no expected directives found: consider use of 'expected-no-diagnostics' could not determine the original source location for %0:%1:%2 instantiated into assembly here FIX-IT applied suggested code changes FIX-IT unable to apply suggested code changes FIX-IT unable to apply suggested code changes in a macro FIX-IT detected an error it cannot fix current API version is '%0', but plugin was compiled with version '%1' macro was %select{defined|#undef'd}0 here use -analyzer-disable-all-checks to disable all static analyzer checkers %0; allow reordering by specifying '#pragma clang loop vectorize(enable)' before the loop. If the arrays will always be independent specify '#pragma clang loop vectorize(assume_safety)' before the loop or provide the '__restrict__' qualifier with the independent array arguments. Erroneous results will occur if these options are incorrectly applied! %0; allow reordering by specifying '#pragma clang loop vectorize(enable)' before the loop or by providing the compiler option '-ffast-math'. building module '%0' as '%1' finished building module '%0' -fsanitize-address-field-padding applied to %0 -fsanitize-address-field-padding ignored for %0 because it %select{is not C++|is packed|is a union|is trivially copyable|has trivial destructor|is standard layout|is in a blacklisted file|is blacklisted}1 unable to open CC_LOG_DIAGNOSTICS file: %0 (using stderr) unable to open CC_PRINT_HEADERS file: %0 (using stderr) stack frame size of %0 bytes in %q1 macro '%0' contains embedded newline; text after the newline is ignored overriding the module target triple with %0 unable to open file %0 for serializing diagnostics (%1) unable to merge a subprocess's serialized diagnostics FIX-IT detected errors it could not fix; no output will be generated checker plugin '%0' is not compatible with this version of the analyzer missing submodule '%0' %select{definition|#undef}0 of configuration macro '%1' has no effect on the import of '%2'; pass '%select{-D%1=...|-U%1}0' on the command line to configure the module module file %0 cannot be loaded due to a configuration mismatch with the current compilation unknown %select{warning|remark}0 option '%1'%select{|; did you mean '%3'?}2 unknown %0 warning specifier: '%1' input is not a PCH file: '%0' file '%0' has been modified since the precompiled header '%1' was built file '%0' from the precompiled header has been overridden malformed or corrupted AST file: '%0' malformed block record in PCH file: '%0' unable to read PCH file %0: '%1' module '%0' imported by AST file '%1' found in a different module map file (%2) than when the importing AST file was built (%3) module '%0' in AST file '%1' (imported by AST file '%2') is not defined in any loaded module map file; maybe you need to load '%3'? module '%0' was built in directory '%1' but now resides in directory '%2' module '%0' %select{uses|does not use}1 additional module map '%2'%select{| not}1 used when the module was built module '%0' is defined in both '%1' and '%2' file '%1' is not a valid precompiled %select{PCH|module|AST}0 file %select{PCH|module|AST}0 file '%1' not found%select{|: %3}2 AST file '%0' was not built as a module %select{PCH|module|AST}0 file '%1' is out of date and needs to be rebuilt%select{|: %3}2 %q0 has different definitions in different modules; %select{definition in module '%2' is here|defined here}1 instantiation of %q0 is different in different modules %q0 from module '%1' is not present in definition of %q2%select{ in module '%4'| provided earlier}3 %0 is currently enabled, but was not in the PCH file PCH file built from a different branch (%0) than the compiler (%1) %0 was %select{disabled|enabled}1 in PCH file but is currently %select{disabled|enabled}2 %0 differs in PCH file vs. current file definition of macro '%0' differs between the precompiled header ('%1') and the command line ('%2') macro '%0' was %select{defined|undef'd}1 in the precompiled header but %select{undef'd|defined}1 on the command line PCH was compiled with module cache path '%0', but the path is currently '%1' %select{command line contains|precompiled header was built with}0 '-detailed-preprocessing-record' but %select{precompiled header was not built with it|it is not present on the command line}0 %select{AST file|current translation unit}0 was compiled with the target feature'%1' but the %select{current translation unit is|AST file was}0 not PCH file was compiled for the %0 '%1' but the current translation unit is being compiled for target '%2' %select{command line contains|precompiled header was built with}0 '-undef' but %select{precompiled header was not built with it|it is not present on the command line}0 PCH file uses a newer PCH format that cannot be read PCH file uses an older PCH format that is no longer supported PCH file contains compiler errors after modifying system headers, please delete the module cache at '%0' imported by %select{|module '%2' in }1'%0' definition in module '%0' is here definition has no member %0 declaration of %0 does not match please rebuild precompiled header '%0' '%0' required by '%1' duplicate module file extension block name '%0' %select{precompiled header|module}0 uses __DATE__ or __TIME__ backslash and newline separated by space _Pragma takes a parenthesized string literal illegal character encoding in character literal illegal character encoding in string literal character too large for enclosing character literal type version control conflict marker in file 'defined' cannot be used as a macro name digit separator cannot appear at %select{start|end}0 of digit sequence embedding a #%0 directive within macro arguments is not supported %select{hex|octal}0 escape sequence out of range expected a module name in '__building_module' expression exponent has no digits builtin feature check macro requires a parenthesized identifier hexadecimal floating %select{constant|literal}0 requires %select{an exponent|a significand}1 \%0 used with no following hex digits invalid character '%0' character in raw string delimiter; use PREFIX( )PREFIX to delimit raw string invalid argument to convert to character invalid digit '%0' in %select{decimal|octal|binary}1 constant invalid or corrupt PTH file '%0' invalid suffix '%0' on %select{integer|floating}1 constant source file is not valid UTF-8 failure when lexing a string configuration macros are only allowed in top-level modules expected an attribute name expected configuration macro name after ',' expected ',' after conflicting module name expected a message describing the conflict with '%0' only '*' can be exported from an inferred submodule expected a feature name expected a header name after '%0' expected %select{module exclusion with 'exclude'|'export *'}0 expected '{' to start module '%0' expected '{' to start inferred submodule expected %select{library|framework}0 name as a string expected umbrella, header, submodule, or module export expected a module map file name expected module declaration expected module name expected '}' expected ']' to close attribute inferred framework modules cannot be 'explicit' 'explicit' is not permitted on top-level modules inferred submodule cannot be a framework submodule inferred submodules require a module with an umbrella redefinition of inferred submodule expected excluded module name no module named '%0' in '%1' no module named '%0' visible from '%1' expected a module name or '*' redefinition of module '%0' qualified module name can only be used to define modules at the top level only submodules and framework modules may be inferred with wildcard syntax umbrella for module '%0' already covers this directory umbrella directory '%0' not found skipping stray token use declarations are only allowed in top-level modules Unicode character literals may not contain multiple characters non-ASCII characters are not allowed outside of literals and identifiers Pascal string is too long '##' cannot appear at end of macro expansion '##' cannot appear at start of macro expansion expected 'begin' or 'end' pasting formed '%0', an invalid preprocessing token ':' without preceding '?' %0 must be used within a preprocessing directive division by zero in preprocessor expression already inside '#pragma clang arc_cf_code_audited' already inside '#pragma clang assume_nonnull' duplicate macro parameter name %0 empty filename #endif without #if '#pragma clang arc_cf_code_audited' was not ended within this file '#pragma clang assume_nonnull' was not ended within this file error opening file '%0': %1 missing %1 after %0 expected comma in macro parameter list expected end of line in preprocessor expression expected identifier in macro parameter list expected ')' in preprocessor expression expected value in expression expected "FILENAME" or <FILENAME> token is not a valid binary operator in a preprocessor subexpression function-like macro %0 is not defined invalid token at start of a preprocessor expression '%0' file not found '%0' file not found with <angled> include; use "quotes" instead cannot convert %0 token to an identifier floating point literal in preprocessor expression #import of type library is an unsupported Microsoft feature cannot #include files inside '#pragma clang arc_cf_code_audited' cannot #include files inside '#pragma clang assume_nonnull' #include nested too deeply invalid preprocessing directive can only poison identifier tokens invalid token in macro parameter list %select{character|integer}0 literal with user-defined suffix cannot be used in preprocessor constant expression %select{#line|GNU line marker}0 directive requires a simple digit sequence invalid filename for #line directive #line directive requires a positive integer argument invalid filename for line marker directive invalid flag line marker directive invalid line marker flag '2': cannot pop empty include stack line marker directive requires a positive integer argument macro name must be an identifier invalid #ident directive macro name missing missing ')' in macro parameter list nested parentheses not permitted in %0 variadic macros not supported in OpenCL C++ operator %0 (aka %1) used as a macro name remainder by zero in preprocessor expression '%select{#|#@}0' is not followed by a macro parameter not currently inside '#pragma clang arc_cf_code_audited' not currently inside '#pragma clang assume_nonnull' unterminated conditional directive attempt to use a poisoned identifier no macro named %0 pragma %select{message|warning|error}0 requires parenthesized string pragma %0 requires a parenthesized string raw string delimiter longer than 16 characters; use PREFIX( )PREFIX to delimit raw string differing user-defined suffixes ('%0' and '%1') in string literal concatenation too few arguments provided to function-like macro invocation too many arguments provided to function-like macro invocation universal character name refers to a control character character '%0' cannot be specified by a universal character name incomplete universal character name invalid universal character module %0 does not depend on a module exporting '%1' unsupported non-standard concatenation of string literals unterminated function-like macro invocation missing terminating ')' character unterminated /* comment raw string missing terminating delimiter )%0" escaped newline between */ characters at block comment end binary integer literals are a GNU extension binary integer literals are a C++14 extension ISO C99 requires whitespace after the macro name charizing operator #@ is a Microsoft extension pasting two '/' tokens into a '//' comment is a Microsoft extension treating Ctrl-Z as end-of-file is a Microsoft extension '$' in identifier embedding a directive within macro arguments has undefined behavior empty character constant empty macro arguments are a C99 feature multi-character character constant hexadecimal floating constants are a C99 feature hexadecimal floating literals are a C++1z feature imaginary constants are a GNU extension // comments are not allowed in this language must specify at least one argument for '...' parameter of variadic macro whitespace required after macro name invalid suffix on literal; C++11 requires a space between literal and identifier multi-line // comment named variadic macros are a GNU extension no newline at end of file use of non-standard escape character '\%0' expected 'ON' or 'OFF' or 'DEFAULT' in pragma token pasting of ',' and __VA_ARGS__ is a GNU extension __VA_ARGS__ can only appear in the expansion of a C99 variadic macro comma operator in operand of #if extra tokens at end of #%0 directive #ident is a language extension #import is a language extension #include_next is a language extension #include resolved using non-portable Microsoft search rules as: %0 C requires #line number to be less than %0, allowed as extension #line directive with zero argument is a GNU extension %0 macro redefined redefining builtin macro undefining builtin macro #warning is a language extension expected end of directive in pragma unknown pragma in STDC namespace string literal of length %0 exceeds maximum length %1 that %select{C90|ISO C99|C++}2 compilers are required to support extension used treating Unicode character as whitespace unknown escape sequence '\%0' missing terminating %select{'|'"'}0 character variadic macros are a C99 feature %0 is defined here; did you mean %1? submodule of top-level module '%0' implicitly imported here cannot use initializer list at the beginning of a macro argument macro %0 defined here to match this '{' to match this ']' previously defined here expanding this definition of %0 other definition of %0 parentheses are required around macro argument containing braced initializer list did you mean to use '\u'? null character(s) preserved in %select{char|string}0 literal null character ignored disabled expansion of recursive macro #elif after #else #elif without #if #else after #else #else without #if the #__include_macros directive is only for internal use by -imacros #include_next with absolute path #include_next in primary source file invalid string literal, ignoring final '\' macro is not used current file is older than dependency %0 poisoning existing macro #pragma once in main file #pragma system_header ignored in main file trigraph converted to '%0' character trigraph ends block comment trigraph ignored ignored trigraph would end block comment treating #%select{include|import|include_next|__include_macros}0 as an import of module '%1' %select{using this character in an identifier|starting an identifier with this character}0 is incompatible with C99 unicode literals are incompatible with C99 character constant too long for its type binary integer literals are incompatible with C++ standards before C++14 digit separators are incompatible with C++ standards before C++14 identifier after literal will be treated as a reserved user-defined literal suffix in C++11 identifier after literal will be treated as a user-defined literal suffix in C++11 '%0' is a keyword in C++11 unicode literals are incompatible with C++ standards before C++1z hexidecimal floating literals are incompatible with C++ standards before C++1z empty macro arguments are incompatible with C++98 '<::' is treated as digraph '<:' (aka '[') followed by ':' in C++98 universal character name referring to a control character is incompatible with C++98 specifying character '%0' with a universal character name is incompatible with C++98 C++98 requires newline at end of file #line number greater than 32767 is incompatible with C++98 raw string literals are incompatible with C++98 using this character in an identifier is incompatible with C++98 unicode literals are incompatible with C++98 variadic macros are incompatible with C++98 macro expansion producing 'defined' has undefined behavior extraneous characters in character constant ignored __has_warning expected option name (e.g. "-Wundef") %0 is used as a header guard here, followed by #define of a different macro whitespace recommended after macro name unknown attribute '%0' module '%0' conflicts with already-imported module '%1': %2 '/*' within block comment include of non-modular header inside framework module '%0' include of non-modular header inside module '%0' ambiguous expansion of macro %0 %select{left|right}0 side of operator converted from negative value to unsigned: %1 expansion of date or time macro is not reproducible integer overflow in preprocessor expression %select{#line|GNU line marker}0 directive interprets number as decimal, not octal keyword is hidden by macro definition macro name is a reserved identifier ignoring redefinition of Objective-C qualifier macro %0 is not defined, evaluates to 0 missing argument to debug command '%0' unexpected debug command '%0' pragma diagnostic pop could not pop, no matching push pragma diagnostic expected 'error', 'warning', 'ignored', 'fatal', 'push', or 'pop' pragma diagnostic expected option name (e.g. "-Wundef") unexpected token in pragma diagnostic unknown warning group '%0', ignored unknown pragma ignored pragma include_alias expected '%0' pragma include_alias expected include filename angle-bracketed include <%0> cannot be aliased to double-quoted include "%1" double-quoted include "%0" cannot be aliased to angle-bracketed include <%1> pragma pop_macro could not pop '%0', no matching push_macro #pragma warning expected '%0' #pragma warning expected a warning number #pragma warning(push, level) requires a level between 0 and 4 #pragma warning expected 'push', 'pop', 'default', 'disable', 'error', 'once', 'suppress', 1, 2, 3, or 4 pragma STDC FENV_ACCESS ON is not supported, ignoring pragma incomplete universal character name; treating as '\' followed by identifier \%0 used with no following hex digits; treating as '\' followed by identifier universal character name refers to a surrogate character universal character names are only valid in C99 or C++; treating as '\' followed by identifier universal character names are only valid in C99 or C++ umbrella header for module '%0' does not include header '%1' use of private header from outside its module: '%0' interface types cannot specify '%select{private|protected}0' access use of address-of-label extension outside of a function body name defined in alias declaration must be an identifier %select{partial specialization|explicit specialization|explicit instantiation}0 of alias templates is not permitted declaration of anonymous %0 must be a definition unknown cast annotation __bridge_retain; did you mean __bridge_retained? argument required after attribute __asm used with no assembly instructions 'asm goto' constructs are not supported yet cannot use %select{unicode|wide}0 string literal in 'asm' @defs is not supported in Objective-C++ unexpected '@' in member specification use of '@import' when modules are disabled parentheses must be omitted if %0 attribute's argument list is empty an attribute list cannot appear here expected 'introduced', 'deprecated', or 'obsoleted' expected a platform name, e.g., 'macosx' redundant %0 availability change; only the last specified change will be used %0 is not an availability stage; use 'introduced', 'deprecated', or 'obsoleted' bitfield member cannot have an in-class initializer redeclaration of C++ built-in type 'bool' bracket nesting level exceeded maximum of %0 brackets are not allowed here; to declare an array, place the brackets after the %select{identifier|name}0 '_Noreturn' keyword must precede function declarator template template parameter requires 'class' after the parameter list missing return type for function %0; did you mean the constructor name %1? missing ',' between base or member initializers attribute %0 cannot have an argument list attribute '%0' cannot be used as an attribute pack attribute %0 cannot appear multiple times in an attribute specifier declaration does not declare a parameter '%0' qualifier may not appear after the virtual specifier '%1' unexpected end of default argument expression '= %select{default|delete}0' is a function definition and must occur in a standalone declaration default template argument for a template template parameter must be a class template destructor name %0 does not refer to a template expected a class name after '~' to name a destructor '~' in destructor name should be after nested name specifier duplicate 'virtual' in base specifier duplicate default generic association class member already marked '%0' cannot have both throw() and noexcept() clause on the same function missing ',' between enumerators unnamed enumeration must be a definition unexpected end of exception specification expected variable name or 'this' in lambda capture list expected 'case' keyword before expression expected catch expected class name 'typename' is redundant; base classes are implicitly types expected '::' after '__super' expected ',' or '>' in template-parameter-list expected ',' or ']' in lambda capture list expected '#pragma omp end declare target' expected '= constant-expression' or end of enumerator definition expected '=' or another designator expected expression expected external declaration expected a field designator, such as '.field = 4' expected function body after function declarator expected a foldable binary operator in fold expression variable declaration in condition must have an initializer variable declaration in condition cannot have a parenthesized initializer expected body of lambda expression expected '{' after base class list expected '{' in compound literal expected '<' after '%0' expected '(' after '%0' expected '(' for function-style cast or type construction expected member name or ';' after declaration specifiers expected class member or base class name expected method body method type specifier must start with '-' or '+' '@end' must appear in an Objective-C context expected the name of a parameter pack expected parentheses around type name in %0 expression expected property name expected ')' or ',' after '%0' expected a qualified name after 'typename' expected ')' after '%0' expected selector for Objective-C method expected ';' after attribute list expected ';' after expression expected ';' after method prototype expected ';' after namespace name expected ';' after static_assert expected ';' after %0 statement expected ';' at end of declaration list expected ';' at end of declaration expected ';' in 'for' statement specifier expected 'this' following '*' in lambda capture list expected template expected template parameter expected a type expected an identifier or template-id after '::' expected %select{identifier|unqualified-id}0 expected a version of the form 'major[.minor[.subminor]]' expected 'while' in do/while loop enumerations cannot be explicitly instantiated explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword explicit %select{specialization|instantiation}0 of non-template %1 %2 extraneous closing brace ('}') extraneous ')' after condition, expected a statement extraneous '%0' before ';' operators in fold expression must be the same 'co_await' modifier can only be applied to range-based for loop for range declaration must declare a variable range-based for loop requires type for loop variable cannot define a type in a friend declaration friend cannot be declared in an explicit instantiation; if this declaration is meant to be a friend declaration, remove the 'template' keyword 'friend' used outside of class function definition does not declare parameters function definition declared 'typedef' function definition is not allowed here unexpected %0 in function call; perhaps remove the %0? GNU-style inline assembly is disabled expected template name after 'template' keyword in nested name specifier %0 declared as a reference to a reference cannot cast 'super' (it isn't an expression) array bound cannot be deduced from an in-class initializer initializer list cannot be used on the %select{left|right}0 hand side of operator '%1' namespace alias cannot be inline nested namespace definition cannot be 'inline' cannot use %select{dot|arrow}0 operator on a type '%0' qualifier may not be applied to a reference invalid %0 at end of declaration; did you mean '='? expected ';' after top level declarator C++11 only allows consecutive left square brackets when introducing an attribute label at end of compound statement: expected statement %select{'mutable'|'constexpr'}0 cannot appear multiple times in a lambda declarator lambda requires '()' before %select{'mutable'|return type|attribute specifier|'constexpr'}0 string literal after 'operator' must be '""' string literal after 'operator' cannot have an encoding prefix '...' must %select{immediately precede declared identifier|be innermost component of anonymous pack declaration}0 expected %0 at end of module @try statement without a @catch and @finally clause C requires a comma prior to the ellipsis in a variadic function type use 'template' keyword to treat '%0' as a dependent template name missing '}' at end of definition of %q0 expected parameter declarator found '<::' after a %select{template name|const_cast|dynamic_cast|reinterpret_cast|static_cast}0 which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'? expected a module name after module import expected ';' after module name __declspec attributes must be an identifier or string literal property declaration specifies '%0' accessor twice expected name of accessor method expected ',' or ')' at end of property accessor list expected '=' after '%0' putter for property must be specified as 'put', not 'set' property declaration cannot have an in-class initializer missing 'get=' or 'put=' property does not specify a getter or a putter expected 'get' or 'put' in property declaration MS-style inline assembly is not available: %0 Unsupported architecture '%0' for MS-style inline assembly %select{|a template declaration|an explicit template specialization|an explicit template instantiation}0 can only %select{|declare|declare|instantiate}0 a single entity namespaces can only be defined in global or namespace scope parameter named %0 is missing @%0 must be followed by a number to form an NSNumber object unexpected token after Objective-C string directive may only be specified in protocols only expected '=' for Objective-C getter expected '=' for Objective-C setter unknown property attribute %0 expected selector for Objective-C %select{setter|getter}0 expected type parameter name illegal interface qualifier illegal visibility specification missing '@end' attributes may not be specified on a category @implementation cannot have type parameters postfix attributes are not allowed on Objective-C directives postfix attributes are not allowed on Objective-C directives, place them in front of '%select{@interface|@protocol}0' properties are an Objective-C 2 feature property name cannot be a bitfield property requires fields to be named protocol qualifiers must precede type arguments '@end' appears where closing brace '}' is expected prefix attribute must be followed by an interface or protocol expected an Objective-C directive after '@' expected a related ObjectiveC class name, e.g., 'NSColor' expected a class method selector with single argument, e.g., 'colorWithCGColor:' function declaration is expected after 'declare simd' directive unexpected '%0' clause, '%1' is specified already expected identifier specifying the name of the 'omp critical' directive expected ',' or ')' in '%0' %select{clause|directive}1 expected identifier or one of the following operators: '+', '-', '*', '&', '|', '^', '&&', or '||' '#pragma omp %0' %select{|with '%2' clause }1cannot be an immediate substatement missing map type unexpected OpenMP clause '%0' in directive '#pragma omp %1' unexpected OpenMP directive '#pragma omp %0' expected an OpenMP directive incorrect map type, expected one of 'to', 'from', 'tofrom', 'alloc', 'release', or 'delete' incorrect map type modifier, expected 'always' ^^ is a reserved operator in OpenCL OpenCL extension token %0 is specified OpenCL extension %0 is not supported taking address of function is not allowed OpenCL only supports 'opencl_unroll_hint' attribute on for, while, and do statements out-of-line constructor for %0 cannot have template arguments qualified reference to %0 is a constructor name rather than a %select{template name|type}1 wherever a constructor can be declared '%0' keyword not permitted with interface types unexpected parenthesis after '::' missing parentheses around the size of parameter pack %0 pragma comment requires parenthesized identifier and optional string unknown kind of pragma comment pragma detect_mismatch is malformed; it requires two comma-separated string literals '#pragma fp_contract' can only appear at file scope or at the start of a compound statement invalid argument; expected 'enable', %select{'assume_safety'|'full'}0 or 'disable' %select{invalid|missing}0 option%select{ %1|}0; expected vectorize, vectorize_width, interleave, interleave_count, unroll, or unroll_count missing argument; expected %select{an integer value|'enable', %select{'assume_safety'|'full'}1 or 'disable'}0 missing argument to '#pragma %0'%select{|; expected %2}1 unexpected extra argument '%0' to '#pragma clang optimize' unexpected argument '%0' to '#pragma clang optimize'; expected 'on' or 'off' unexpected %0, expected to see one of %select{|'best_case', 'full_generality', }1'single_inheritance', 'multiple_inheritance', or 'virtual_inheritance' a space is required between a right angle bracket and an equals sign (use '> =') scoped enumeration requires a name range-based 'for' statement uses ':', not '=' expected parenthesized parameter pack name in 'sizeof...' expression statement expression not allowed at file scope '__super' cannot be used with a using declaration expected a property name in @synthesize %select{function|class|variable}0 cannot be defined in an explicit instantiation; if this declaration is meant to be a %select{function|class|variable}0 definition, remove the 'template' keyword identifier followed by '<' indicates a class template specialization but %0 %select{does not refer to a template|refers to a function template|<unused>|refers to a variable template|<unused>}1 a static_assert declaration cannot be a template cannot template a using %select{directive|declaration}0 'this' cannot be captured by reference a space is required between consecutive right angle brackets (use '> >') invalid comparison flag %0; use 'layout_compatible' or 'must_be_null' type trait requires %0%select{| or more}1 argument%select{|s}2; have %3 argument%s3 typename is allowed for identifiers only type name does not allow constexpr specifier to be specified type name does not allow function specifier to be specified type name does not allow storage class to be specified typename specifier refers to a non-type template type name requires a specifier or qualifier unexpected '@' in program unexpected ':' in nested name specifier; did you mean '::'? attributes cannot be specified on namespace alias attributes cannot be specified on a nested namespace definition @implementation declaration cannot be protocol qualified unexpected namespace scope prior to decltype unexpected ';' before %0 '%0' cannot be a part of nested name specifier; did you mean ':'? unexpected type name %0: expected identifier type-id cannot have a name unknown template name %0 'static' may not be used without an array size 'static' may not be used with an unspecified variable length array size 'using namespace' is not allowed in classes version number must have non-zero major, minor, or sub-minor version use of empty enum property synthesize requires specification of an ivar ISO C++11 requires a parenthesized pack declaration to have a name alias declarations are a C++11 extension %0 applied to an expression is a GNU extension 'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases '__auto_type' is a GNU extension %0 is a C11-specific feature generic selections are a C11-specific feature _Noreturn functions are a C11-specific feature _Static_assert is a C11-specific feature compound literals are a C99-specific feature variable declaration in for loop is a C99-specific feature enumeration types with a fixed underlying type are a Microsoft extension 'constexpr' on lambda expressions is a C++1z extension enumeration types with a fixed underlying type are a C++11 extension 'decltype(auto)' type specifier is a C++14 extension %select{defaulted|deleted}0 function definitions are a C++11 extension exception specification of '...' is a Microsoft extension ISO C requires a translation unit to contain at least one declaration commas at the end of enumerator lists are a C99-specific feature commas at the end of enumerator lists are a C++11 extension extern templates are a C++11 extension extra ';' %select{outside of a function|inside a %1|inside instance variable list|after member function definition}0 extra ';' outside of a function is a C++11 extension pack fold expression is a C++1z extension range-based for loop is a C++11 extension generalized initializer lists are a C++11 extension use of GNU address-of-label extension use of GNU array range extension use of GNU case range extension use of GNU ?: conditional expression extension, omitting middle operand use of GNU empty initializer extension use of GNU indirect-goto extension use of GNU 'missing =' extension in designator use of GNU old-style field designator extension use of GNU statement expression extension type-less parameter names in function declaration inline namespaces are a C++11 feature keyword '%0' will be made available as an identifier %select{here|for the remainder of the translation unit}1 'sealed' keyword is a Microsoft extension nested namespace definition is a C++1z extension; define each namespace separately in-class initialization of non-static data member is a C++11 extension type nullability specifier %0 is a Clang extension '%0' keyword is a C++11 extension reference qualifiers on functions are a C++11 extension rvalue references are a C++11 extension scoped enumerations are a C++11 extension template template parameter using 'typename' is a C++1z extension '__thread' before '%0' use -fbracket-depth=N to increase maximum nesting level comma separating Objective-C messaging arguments or insert whitespace before ':' to use %0 as parameter name and have an empty entry in the selector insert ',' before '...' to silence this warning place '...' %select{immediately before declared identifier|here}0 to declare a function parameter pack preceding '...' declares a function parameter pack still within definition of %q0 here introduce a parameter name to make %0 part of the selector %select{class|protocol|category|class extension|implementation|category implementation}0 started here previous default generic association is here ignored %0 qualifier on asm '%0' casts have no effect when not using ARC attribute %0 ignored, because it is not attached to a declaration GCC does not allow %0 attribute in this position on a function definition 'unavailable' availability overrides all other availability information use of C-style parameters in Objective-C method declarations is deprecated 'decltype(auto)' type specifier is incompatible with C++ standards before C++14 use of right-shift operator ('>>') in template argument will require parentheses in C++11 attributes on %select{a namespace|an enumerator}0 declaration are incompatible with C++ standards before C++1z constexpr on lambda expressions is incompatible with C++ standards before C++1z pack fold expression is incompatible with C++ standards before C++1z nested namespace definition is incompatible with C++ standards before C++1z template template parameter using 'typename' is incompatible with C++ standards before C++1z alias declarations are incompatible with C++98 'alignas' is incompatible with C++98 alignof expressions are incompatible with C++98 C++11 attribute syntax is incompatible with C++98 'decltype' type specifier is incompatible with C++98 %select{defaulted|deleted}0 function definitions are incompatible with C++98 enumeration types with a fixed underlying type are incompatible with C++98 commas at the end of enumerator lists are incompatible with C++98 extern templates are incompatible with C++98 range-based for loop is incompatible with C++98 generalized initializer lists are incompatible with C++98 inline namespaces are incompatible with C++98 lambda expressions are incompatible with C++98 literal operators are incompatible with C++98 noexcept specifications are incompatible with C++98 noexcept expressions are incompatible with C++98 in-class initialization of non-static data members is incompatible with C++98 'nullptr' is incompatible with C++98 '%0' keyword is incompatible with C++98 reference qualifiers on functions are incompatible with C++98 rvalue references are incompatible with C++98 scoped enumerations are incompatible with C++98 static_assert declarations are incompatible with C++98 extra ';' outside of a function is incompatible with C++98 trailing return types are incompatible with C++98 consecutive right angle brackets are incompatible with C++98 (use '> >') add explicit braces to avoid dangling else use same version number separators '_' or '.'; as in 'major[.minor[.subminor]]' extra ';' after member function definition meaningless 'volatile' on asm outside function GCC does not allow an attribute in this position on a function declaration dependent %select{__if_not_exists|__if_exists}0 declarations are ignored qualifiers after comma in declarator list are ignored '...' in this location creates a C-style varargs function%select{, not a function parameter pack|}0 %0 used as the name of the previous parameter rather than as part of the selector protocol has no object type specified; defaults to qualified 'id' extra tokens at the end of '#pragma omp %0' are ignored expected '=' following '#pragma %select{align|options align}0' - ignored invalid alignment option in '#pragma %select{align|options align}0' - ignored '#pragma comment %0' ignored expected action or ')' in '#pragma %0' - ignored missing ':' after %0 - ignoring missing ':' or ')' after %0 - ignoring expected 'enable' or 'disable' - ignoring expected identifier in '#pragma %0' - ignored expected 'compiler', 'lib', 'user', or a string literal for the section name in '#pragma %0' - ignored expected integer between %0 and %1 inclusive in '#pragma %2' - ignored missing '(' after '#pragma %0' - ignoring expected non-wide string literal in '#pragma %0' expected ')' or ',' in '#pragma %0' missing ')' after '#pragma %0' - ignoring expected a stack label or a string literal for the section name in '#pragma %0' - ignored expected a string literal for the section name in '#pragma %0' - ignored expected push, pop or a string literal for the section name in '#pragma %0' - ignored extra tokens at end of '#pragma %0' - ignored '#pragma init_seg' is only supported when targeting a Microsoft environment unknown action for '#pragma %0' - ignored unknown action '%1' for '#pragma %0' - ignored incorrect use of '#pragma ms_struct on|off' - ignored unexpected '#pragma omp ...' in program expected 'align' following '#pragma options' - ignored expected integer or identifier in '#pragma pack' - ignored unknown OpenCL extension %0 - ignoring argument to '#pragma unroll' should not be in parentheses in CUDA C/C++ known but unsupported action '%1' for '#pragma %0' - ignored expected '#pragma unused' argument to be a variable name semicolon before method body is ignored ignoring '%select{static|inline}0' keyword on explicit template instantiation empty symbolic operand name in inline assembly string invalid %% escape in inline assembly string invalid operand number in inline asm string unknown symbolic operand name in inline assembly string unterminated symbolic operand name in inline assembly string template parameter lists have a different number of parameters (%0 vs %1) template parameter has different kinds in different translation units field %0 declared with incompatible types in different translation units (%1 vs. %2) external function %0 declared with incompatible types in different translation units (%1 vs. %2) instance variable %0 declared with incompatible types in different translation units (%1 vs. %2) non-type template parameter declared with incompatible types in different translation units (%0 vs. %1) %select{class|instance}0 method %1 has a different number of parameters in different translation units (%2 vs. %3) %select{class|instance}0 method %1 has a parameter with a different types in different translation units (%2 vs. %3) %select{class|instance}0 method %1 has incompatible result types in different translation units (%2 vs. %3) %select{class|instance}0 method %1 is variadic in one translation unit and not variadic in another property %0 is implemented with %select{@synthesize|@dynamic}1 in one translation but %select{@dynamic|@synthesize}1 in another translation unit property %0 declared with incompatible types in different translation units (%1 vs. %2) class %0 has incompatible superclasses property %0 is synthesized to different ivars in different translation units (%1 vs. %2) parameter kind mismatch; parameter is %select{not a|a}0 parameter pack external variable %0 defined in multiple translation units external variable %0 declared with incompatible types in different translation units (%1 vs. %2) cannot import unsupported AST node %0 ambiguous vftable component for %0 introduced via covariant thunks; this is an inherent limitation of the ABI %select{read of|assignment to|increment of|decrement of}0 member %1 of union with %select{active member %3|no active member}2 is not allowed in a constant expression %select{read of|assignment to|increment of|decrement of}0 dereferenced null pointer is not allowed in a constant expression %select{read of|assignment to|increment of|decrement of}0 dereferenced one-past-the-end pointer is not allowed in a constant expression %select{read of|assignment to|increment of|decrement of}0 temporary is not allowed in a constant expression outside the expression that created the temporary %select{read of|assignment to|increment of|decrement of}0 object outside its lifetime is not allowed in a constant expression %select{read of|assignment to|increment of|decrement of}0 volatile %select{temporary|object %2|member %2}1 is not allowed in a constant expression %select{read of|assignment to|increment of|decrement of}0 volatile-qualified type %1 is not allowed in a constant expression cannot refer to element %0 of %select{array of %2 elements|non-array object}1 in a constant expression %select{alignment of|offset of the aligned pointer from}0 the base pointee object (%1 %plural{1:byte|:bytes}1) is %select{less than|not a multiple of}0 the asserted %2 %plural{1:byte|:bytes}2 value of the aligned pointer (%0) is not a multiple of the asserted %1 %plural{1:byte|:bytes}1 in call to '%0' constexpr evaluation hit maximum call limit (skipping %0 call%s0 in backtrace; use -fconstexpr-backtrace-limit=0 to see all) comparison of pointer to virtual member function %0 has unspecified value both arms of conditional operator are unable to produce a constant expression constexpr evaluation exceeded maximum depth of %0 calls floating point arithmetic produces %select{an infinity|a NaN}0 %select{reinterpret_cast|dynamic_cast|cast that performs the conversions of a reinterpret_cast|cast from %1}0 is not allowed in a constant expression cannot cast object of dynamic type %0 to type %1 %select{non-constexpr|undefined}0 %select{function|constructor}1 %2 cannot be used in a constant expression shift count %0 >= width of type %1 (%2 bit%s2) %select{read of|assignment to|increment of|decrement of}0 %select{temporary|variable}1 whose lifetime has ended signed left shift discards bits left shift of negative value %0 read of mutable member %0 is not allowed in a constant expression read of non-const variable %0 is not allowed in a constant expression read of non-constexpr variable %0 is not allowed in a constant expression modification of object of const-qualified type %0 is not allowed in a constant expression a constant expression cannot modify an object that is visible outside that expression negative shift count %0 control reached end of constexpr function %select{pointer|reference}0 to %select{|subobject of }1%select{temporary|%3}2 is not a constant expression non-literal type %0 cannot be used in a constant expression cannot %select{access base class of|access derived class of|access field of|access array element of|perform pointer arithmetic on|call member function on|access real component of|access imaginary component of}0 null pointer value %0 is outside the range of representable values of type %1 dereferenced pointer past the end of %select{|subobject of }0%select{temporary|%2}1 is not a constant expression cannot %select{access base class of|access derived class of|access field of|access array element of|ERROR|call member function on|access real component of|access imaginary component of}0 pointer past the end of object comparison of addresses of subobjects of different base classes has unspecified value comparison of address of base class subobject %0 of class %1 to field %2 has unspecified value comparison of address of fields %0 and %2 of %4 with differing access specifiers (%1 vs %3) has unspecified value subtracted pointers are not elements of the same array subtraction of pointers to type %0 of zero size constexpr evaluation hit maximum step limit; possible infinite loop? this use of statement expressions is not supported in a constant expression temporary created here %select{|implicit }0use of 'this' pointer is only allowed within the evaluation of a call to a 'constexpr' member function typeid applied to expression of polymorphic type %0 is not allowed in a constant expression %select{|sub}0object of type %1 is not initialized use of reference outside its lifetime is not allowed in a constant expression initializer of %0 is not a constant expression cannot construct object of type %0 with virtual base class in a constant expression cannot evaluate virtual function call in a constant expression comparison between unequal pointers to void has unspecified result covariant thunk required by %0 division by zero class has base type %0 bit-field %0 with type %1 and length %2 here also defined here enumerator %0 with value %1 here field %0 has type %1 here no corresponding base class here no corresponding enumerator here no corresponding field here field %0 is not a bit-field class has %0 base %plural{1:class|:classes}0 %select{class|instance}0 method %1 also declared here no corresponding superclass here property %0 is implemented with %select{@synthesize|@dynamic}1 here inherits from superclass %0 here property is synthesized to ivar %0 here %select{parameter|parameter pack}0 declared here %0 is a %select{struct|interface|union|class|enum}1 here template parameter declared here template parameter list also declared here declared here with type %0 %select{non-virtual|virtual}0 derivation here unimplemented constexpr lambda feature: %0 (coming soon!) overflow in expression; result is %0 with type %1 type %0 has incompatible definitions in different translation units add a deprecation attribute to the declaration to silence this warning previous command '%select{\|@}0%1' here previous command '%select{\|@}0%1' (an alias of '\%2') here end tag HTML tag started here did you mean '%0'? previous documentation unknown command tag name '%0'; did you mean '%1'? '%select{\|@}0%select{class|interface|protocol|struct|union}1' command should not be used in a comment attached to a non-%select{class|interface|protocol|struct|union}2 declaration duplicated command '%select{\|@}0%1' empty paragraph passed to '%select{\|@}0%1' command '%select{\|@}0%select{classdesign|coclass|dependency|helper|helperclass|helps|instancesize|ownership|performance|security|superclass}1' command should not be used in a comment attached to a non-container declaration declaration is marked with '\deprecated' command but does not have a deprecation attribute '%select{\|@}0%select{function|functiongroup|method|methodgroup|callback}1' command should be used in a comment attached to %select{a function|a function|an Objective-C method|an Objective-C method|a pointer to function}2 declaration HTML end tag '%0' is forbidden HTML end tag does not match any start tag HTML tag '%0' requires an end tag HTML start tag '%0' closed by '%1' HTML start tag prematurely ended, expected attribute name or '>' expected quoted string after equals sign parameter '%0' is already documented unrecognized parameter passing direction, valid directions are '[in]', '[out]' and '[in,out]' '%select{\|@}0param' command used in a comment that is not attached to a function declaration parameter '%0' not found in the function declaration whitespace is not allowed in parameter passing direction '%select{\|@}0%1' command used in a comment that is attached to a %select{function returning void|constructor|destructor|method returning void}2 '%select{\|@}0%1' command used in a comment that is not attached to a function or method declaration template parameter '%0' is already documented '%select{\|@}0tparam' command used in a comment that is not attached to a template declaration template parameter '%0' not found in the template declaration unknown command tag name '%select{\|@}0%1' command does not terminate a verbatim text block this builtin is only available on 64-bit targets cannot add 'abi_tag' attribute in a redeclaration %select{return|parameter|variable|field|instance variable|synthesized instance variable}0 type %1 is an abstract class %select{base class|inherited virtual base class}0 %1 has %select{private|protected}3 %select{default |copy |move |*ERROR* |*ERROR* |*ERROR*|}2constructor calling a %select{private|protected}0 constructor of class %2 ISO C++11 does not allow access declarations; use using declarations instead calling a %select{private|protected}1 destructor of class %0 base class %0 has %select{private|protected}1 destructor exception object of type %0 has %select{private|protected}1 destructor field of type %1 has %select{private|protected}2 destructor instance variable of type %0 has %select{private|protected}1 destructor temporary of type %0 has %select{private|protected}1 destructor variable of type %1 has %select{private|protected}2 destructor inherited virtual base class %1 has %select{private|protected}2 destructor field of type %0 has %select{private|protected}2 %select{default |copy |move |*ERROR* |*ERROR* |*ERROR* |}1constructor friend function %1 is a %select{private|protected}0 member of %3 capture of variable '%0' as type %1 calls %select{private|protected}3 %select{default |copy |move |*ERROR* |*ERROR* |*ERROR* |}2constructor address of overloaded function %0 is ambiguous cannot form member pointer of type %0 without '&' and class name address of overloaded function %0 does not match required type %1 address of overloaded function %0 cannot be converted to type %1 cannot take address of function %0 because parameter %1 has pass_object_size attribute 'delete' cannot delete objects of type %0 in address space '%1' 'new' cannot allocate objects of type %0 in address space '%1' cannot take address of function %0 becuase it has one or more non-tautological enable_if conditions alias definition of %0 after tentative definition definition %0 cannot also be an %select{alias|ifunc}1 only weak aliases are supported on darwin CUDA does not support aliases pack expansion used as argument for non-pack parameter of alias template extraneous template parameter list in alias template declaration %select{alias|ifunc}0 must point to a defined %select{variable or |}1function 'align_value' attribute requires integer constant %0 attribute cannot be applied to a %select{function parameter|variable with 'register' storage class|'catch' variable|bit-field}1 redeclaration has different alignment requirement (%1 vs %0) %0 must be specified on definition if it is specified on any declaration requested alignment is less than minimum alignment of %1 for type %0 'aligned' attribute requires integer constant requested alignment is dependent but declaration is not dependent requested alignment is not a power of 2 invalid application of 'alignof' to a field of a class still being defined allocating an object of abstract class type %0 expected initializer ambiguous cast from base %0 to derived %1:%2 ambiguous conversion of delete expression of type %0 to a pointer ambiguous conversion from derived class %0 to base class %1:%2 member %0 found in multiple base classes of different types non-static member %0 found in multiple base-class subobjects of type %1:%2 ambiguous conversion from pointer to member of %select{base|derived}0 class %1 to pointer to member of %select{derived|base}0 class %2:%3 reference to %0 is ambiguous multiple suitable %0 functions in %1 a type named %0 is hidden by a declaration in a different namespace anonymous bit-field has negative width (%0) width of anonymous bit-field (%0 bits) exceeds %select{width|size}1 of its type (%2 bit%s2) anonymous property is not supported anonymous %select{struct|union}0 can only contain non-static data members member of anonymous %select{struct|union}0 redeclares %1 anonymous %select{struct|union}0 cannot contain a %select{private|protected}1 data member functions cannot be declared in an anonymous %select{struct|union}0 static members cannot be declared in an anonymous %select{struct|union}0 types cannot be declared in an anonymous %select{struct|union}0 anonymous %select{structs|structs and classes}0 must be %select{struct or union|class}0 members anonymous unions at namespace or global scope must be declared 'static' anonymous union at class scope must not have a storage specifier %select{x86|x86-64}0 'interrupt' attribute only applies to functions that have %select{a 'void' return type|only a pointer parameter optionally followed by an integer parameter|a pointer as the first parameter|a %2 type as the second parameter}1 interrupt service routine cannot be called directly must explicitly describe intended ownership of an object array parameter existing instance variable %1 for property %0 with %select{unsafe_unretained|assign}2 attribute must be __unsafe_unretained cannot perform atomic operation on a pointer to type %0: type has non-trivial ownership cannot capture __autoreleasing variable in a %select{block|lambda by copy}0 %select{__block variables|global variables|fields|instance variables}0 cannot have __autoreleasing ownership incompatible types casting %0 to %1 with a %select{__bridge|__bridge_transfer|__bridge_retained}2 cast cast of %select{Objective-C|block|C}0 pointer type %1 to %select{Objective-C|block|C}2 pointer type %3 cannot use %select{__bridge|__bridge_transfer|__bridge_retained}4 %select{cast|implicit conversion}0 of %select{Objective-C|block|C}1 pointer type %2 to %select{Objective-C|block|C}3 pointer type %4 requires a bridged cast collection expression type %0 is a forward declaration %select{implicit conversion|cast}0 of weak-unavailable object of type %1 to a __weak object of type %2 method implementation does not match its declaration ARC forbids explicit message send of %0 ARC forbids %select{implementation|synthesis}0 of %1 ARC forbids use of %0 in a @selector %select{|unsafe_unretained|strong|weak}1 property %0 may not also be declared %select{|__unsafe_unretained|__strong|__weak|__autoreleasing}2 %select{pointer|reference}1 to non-const type %0 with no explicit ownership init methods must return a type related to the receiver type method was declared as %select{an 'alloc'|a 'copy'|an 'init'|a 'new'}0 method, but its implementation doesn't match because %select{its result type is not an object pointer|its result type is unrelated to its receiver type}1 no visible @interface for %0 declares the selector %1 no known %select{instance|class}1 method for selector %0 %select{implicit conversion|cast}0 of %select{%2|a non-Objective-C pointer type %2|a block pointer|an Objective-C pointer|an indirect pointer to an Objective-C pointer}1 to %3 is disallowed with ARC multiple methods named %0 found with mismatched result, parameter type or attributes 'new' cannot allocate an array of %0 with no explicit ownership explicit ownership qualifier on cast result has no effect passing address of %select{non-local|non-scalar}0 object to __autoreleasing parameter for write-back ARC forbids %select{Objective-C objects|blocks}0 in %select{struct|interface|union|<<ERROR>>|enum}1 ARC forbids synthesizing a property of an Objective-C object with unspecified ownership or storage attribute performSelector names a selector which retains the object pseudo-destructor destroys object of type %0 with inconsistently-qualified type %1 receiver %0 for class message is a forward declaration receiver type %0 for instance message is a forward declaration existing instance variable %1 for strong property %0 may not be %select{|__unsafe_unretained||__weak}2 thread-local variable has non-trivial ownership: type is %0 incompatible pointer types passing retainable parameter of type %0to a CF function expecting %1 type class is incompatible with __weak references the result of a delegate init call must be immediately returned or assigned to 'self' cannot create __weak reference in file using manual reference counting cannot create __weak reference because the current deployment target does not support weak references assignment of a weak-unavailable object to a __weak object synthesizing __weak instance variable of type %0, which does not support weak references parameter may not be qualified with an address space argument should be a value from %0 to %1 arithmetic on pointer to interface %0, which is not a constant size for this architecture and platform invalid special register for builtin array designator range [%0, %1] is empty array designator value '%0' is negative array designator cannot initialize non-array type %0 array designator index (%0) exceeds array bounds (%1) cannot initialize array %diff{of type $ with array of type $|with different type of array}0,1 initializing wide char array with incompatible wide string literal initializing wide char array with non-wide string literal cannot initialize array %diff{of type $ with non-constant array of type $|with different type of array}0,1 array initializer must be an initializer list%select{| or string literal| or wide string literal}0 initializing char array with wide string literal array size must be specified in new expressions array of abstract class type %0 array section does not specify contiguous storage ambiguous conversion of array size expression of type %0 to an integral or enumeration type array size expression of type %0 requires explicit conversion to type %1 array size expression has incomplete class type %0 size of array has non-integer type %0 array size expression must have integral or %select{|unscoped }0enumeration type, not %1 variable length array must be bound in function definition star modifier used outside of function prototype %0 used in non-outermost array type derivation %0 used in array declarator outside of function prototype array is too large (%0 elements) automatic variable qualified with an address space bad type for named register variable constraint '%0' expects an integer constant expression asm operand has incomplete type %0 more than one input constraint matches the same output '%0' register '%0' unsuitable for global register variables on this target invalid input constraint '%0' in asm invalid input size for constraint '%0' invalid lvalue in asm input for constraint '%0' invalid lvalue in asm output invalid output constraint '%0' in asm invalid output size for constraint '%0' invalid type %0 in asm input for constraint '%1' parameter references not allowed in naked functions 'this' pointer references not allowed in naked functions reference to a %select{bit-field|vector element|global register variable}0 in asm %select{input|output}1 with a memory constraint '%2' size of register '%0' does not match variable size unsupported inline asm: input with type %diff{$ matching output with type $|}0,1 asm constraint has an unexpected number of alternatives: %0 vs %1 unknown register name '%0' in asm type %0 in generic association compatible with previously specified type %1 type %0 in generic association incomplete type %0 in generic association not an object type type %0 in generic association is a variably modified type use of @defs is not supported on this architecture and platform address argument to atomic builtin must be a pointer (%0 invalid) address argument to atomic builtin must be a pointer to integer, floating-point or pointer (%0 invalid) address argument to atomic builtin must be a pointer to integer or pointer (%0 invalid) address argument to atomic builtin must be a pointer to 1,2,4,8 or 16 byte type (%0 invalid) address argument to load or store exclusive builtin must be a pointer to 1,2,4 or 8 byte type (%0 invalid) atomic variable can only be assigned to a compile time constant in the declaration statement in the program scope atomic %select{load|store}0 requires runtime support that is not available for this target address argument to bitwise atomic operation must be a pointer to %select{|atomic }0integer (%1 invalid) address argument to atomic operation must be a pointer to _Atomic type (%0 invalid) address argument to atomic operation must be a pointer to %select{|atomic }0integer or pointer (%1 invalid) address argument to atomic operation must be a pointer to non-const _Atomic type (%0 invalid) address argument to atomic operation must be a pointer to non-const type (%0 invalid) address argument to atomic operation must be a pointer to a trivially-copyable type (%0 invalid) atomic property of reference type %0 cannot have non-trivial assignment operator _Atomic cannot be applied to %select{incomplete |array |function |reference |atomic |qualified |}0type %1 %select{||||||which is not trivially copyable}0 the type %0 is already explicitly ownership-qualified tls_model must be "global-dynamic", "local-dynamic", "initial-exec" or "local-exec" function type may not be qualified with an address space multiple address spaces specified for type address space is negative address space is larger than the maximum supported (%0) requested alignment must be %0 bytes or smaller %0 attribute must be greater than 0 '%0' attribute requires parameter %1 to be a string %0 attribute requires parameter %1 to be %select{int or bool|an integer constant|a string|an identifier}2 %0 attribute parameter %1 is out of bounds %0 attribute parameter %1 is out of bounds: %plural{0:no parameters to index into|1:can only be 1, since there is one parameter|:must be between 1 and %2}2 %0 attribute requires integer constant between %1 and %2 inclusive %0 attribute requires %select{int or bool|an integer constant|a string|an identifier}1 invalid attribute argument %0 - expecting a vector or vectorizable scalar type Neon vector size must be 64 or 128 bits 'cleanup' argument %select{|%1 |%1 }0is not a %select{||single }0function 'cleanup' function %0 parameter has %diff{type $ which is incompatible with type $|incompatible type}1,2 'cleanup' function %0 must take 1 parameter '__declspec(dllexport)' cannot be applied to more than one default constructor in %0 attribute %q0 cannot be applied to a deleted function lambda cannot be declared %0 attribute %q0 cannot be applied to member of %q1 class %q0 must have external linkage when declared %q1 redeclaration of %q0 cannot add %q1 attribute %q0 cannot be thread local when declared %q1 definition of dllimport data dllimport cannot be applied to non-inline function definition definition of dllimport static field not allowed %0 attribute is invalid for the implicit this argument vector size not an integral multiple of component size invalid vector element type %0 multiple garbage collection attributes specified for type %0 attribute cannot be used with pointers to members %0 attribute is not supported in %select{C|C++|Objective-C}1 %0 attribute can only be applied once per parameter %select{overloaded function|redeclaration of}0 %1 must have the 'overloadable' attribute 'overloadable' function %0 must have a prototype %0 attribute only applies to%select{| constant}1 pointer arguments 'regparm' parameter must be between 0 and %0 inclusive 'regparm' is not valid on this platform %0 attribute requires OpenCL version %1%select{| or above}2 %0 attribute requires a positive integral compile time constant expression argument to 'section' attribute is not valid for this target: %0 'selectany' can only be applied to data items with external linkage 'sentinel' parameter 1 less than zero 'sentinel' parameter 2 not 0 or 1 vector size too large %0 attribute takes at least %1 argument%s1 %0 attribute takes no more than %1 argument%s1 %0 attribute is not supported for this target uuid attribute contains a malformed GUID the vecreturn attribute can only be used on a POD (plain old data) class or structure (i.e. no virtual functions) the vecreturn attribute can only be used on a class or structure with one member, which must be a vector weak declaration cannot have internal linkage weakref declaration of %0 must be in a global context weakref declaration must have internal linkage weakref declaration of %0 must also have an alias attribute %0 attribute only applies to %select{functions|unions|variables and functions|functions and methods|parameters|functions, methods and blocks|functions, methods, and classes|functions, methods, and parameters|classes|enums|variables|methods|fields and global variables|structs|parameters and typedefs|variables and typedefs|thread-local variables|variables and fields|variables, data members and tag types|types and namespaces|Objective-C interfaces|methods and properties|struct or union|struct, union or class|types|Objective-C instance methods|init methods of interface or class extension declarations|variables, functions and classes|Objective-C protocols|functions and global variables|structs, unions, and typedefs|structs and typedefs|interface or protocol declarations|kernel functions|non-K&R-style functions|variables, enums, fields and typedefs|functions, methods, enums, and classes|structs, classes, variables, functions, and inline namespaces|variables, functions, methods, types, enumerations, enumerators, labels, and non-static data members}1 %0 attribute %plural{0:takes no arguments|1:takes one argument|:requires exactly %1 arguments}1 zero vector size %0 and %1 attributes are not compatible cannot pass bit-field as __auto_type initializer in C '%select{auto|decltype(auto)|__auto_type}0' deduced as %1 in declaration of %2 and deduced as %3 in declaration of %4 cannot deduce return type %0 from returned value of type %1 '%select{auto|decltype(auto)}0' in return type deduced as %1 here but deduced as %2 in earlier return statement cannot deduce return type %0 for function with no return statements cannot deduce return type from initializer list cannot deduce return type %0 from omitted return expression function %0 with deduced return type cannot be used before it is defined function with deduced return type cannot be virtual cannot use __auto_type with initializer list in C 'auto' return without trailing return type; deduced return types are a C++14 extension new expression for type %0 contains multiple constructor arguments new expression for type %0 has incompatible constructor argument of type %1 new expression for type %0 cannot use list-initialization new expression for type %0 requires a constructor argument %select{'auto'|'decltype(auto)'|'__auto_type'}0 not allowed %select{in function prototype|in non-static struct member|in struct member|in non-static union member|in union member|in non-static class member|in interface member|in exception declaration|in template parameter|in block literal|in template argument|in typedef|in type alias|in function return type|in conversion function type|here|in lambda parameter|in type allocated by 'new'|in K&R-style function parameter}1 'auto' variable template instantiation is not allowed variable %0 with type %1 has incompatible initializer of type %2 cannot deduce actual type for variable %0 with type %1 from initializer list initializer for variable %0 with type %1 contains multiple expressions initializer for variable %0 with type %1 is empty cannot deduce type for variable %1 with type %2 from %select{parenthesized|nested}0 initializer list declaration of variable %0 with type %1 requires an initializer variable %0 declared with %select{'auto'|'decltype(auto)'|'__auto_type'}1 type cannot appear in its own initializer %select{const_cast||||C-style cast|functional-style cast}0 to %2, which is not a reference, pointer-to-object, or pointer-to-data-member address of overloaded function %0 cannot be cast to type %1 %select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|functional-style cast}0 from bit-field lvalue to reference type %2 %select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2 is not allowed cannot %select{||reinterpret_cast||C-style cast|}0 from member pointer type %1 to member pointer type %2 of different size %select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2 casts away qualifiers %select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|functional-style cast}0 from rvalue to reference type %2 %select{||reinterpret_cast||C-style cast|}0 from scalar %1 to vector %2 of different size %select{const_cast|static_cast|reinterpret_cast|dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2, which are not related by inheritance, is not allowed %select{||reinterpret_cast||C-style cast|}0 from vector %1 to scalar %2 of different size %select{||reinterpret_cast||C-style cast|}0 from vector %1 to vector %2 of different size %0 is an incomplete type %0 is not a class %0 is not polymorphic %0 is not a pointer %0 is not a reference or pointer %0 cannot be used as the type of a kernel parameter cannot cast from lvalue of type %1 to rvalue reference type %2; types are not compatible left hand operand to %0 must be a %select{|pointer to }1class compatible with the right hand operand, but is %2 right hand operand to %0 has non-pointer-to-member type %1 cannot allocate %select{function|reference}1 type %0 with new %0 cannot be the name of a parameter bad receiver type %0 reinterpret_cast cannot resolve overloaded function %0 to type %1 reinterpret_cast of a %0 to %1 needs its address, which is not allowed cast from pointer to smaller type %2 loses information cannot cast from type %1 to member pointer type %2 address of overloaded function %0 cannot be static_cast to type %1 cannot cast from type %1 to pointer type %2 %0 cannot be the name of a variable or data member base class %0 has a flexible array member unions cannot have base classes base class initializer %0 names both a direct base class and an inherited virtual base class constructor initializer %0 does not name a class base specifier must name a class %0 attribute cannot be applied to a base specifier bit-field %0 has negative width (%1) named bit-field %0 has zero width width of bit-field %0 (%1 bits) exceeds %select{width|size}2 of its type (%3 bit%s3) variable is not assignable (missing __block type specifier) 'extern' variable cannot have an initializer __block attribute not allowed, only allowed on local variables __block attribute not allowed on declaration with a variably modified type non-void block should return a value block cannot return %select{array|function}0 type %1 blocks support disabled - compile with -fblocks or %select{pick a deployment target that supports them|for OpenCL 2.0 or above}0 reference to non-static member function must be called%select{|; did you mean to call it with no arguments?}0 %select{string|character|boolean|numeric}0 literal must be prefixed by '@' in a collection 'break' statement not in loop or switch statement first argument to __builtin_annotation must be an integer second argument to __builtin_annotation must be a non-wide string constant definition of builtin function %0 builtin functions must be directly called function-style cast to a builtin type can only take one argument argument to __builtin_longjmp must be a constant 1 __builtin_longjmp is not supported for the current target %0 needs target feature %1 '%0' is only available in %1 __builtin_setjmp is not supported for the current target %select{qualifier in |static |}0array size %select{||'[*] '}0is a C99 feature, not permitted in C++ calling %0 with incomplete return type %1 argument type %0 is incomplete calling function with incomplete return type %0 cannot form a pointer-to-member to member %0 of reference type %1 cannot pass object with interface type %0 by value through variadic %select{function|block|method|constructor}1 cannot pass object with interface type %1 by value to variadic %select{function|block|method|constructor}2; expected type from format string was %3 cannot pass %select{expression of type %1|initializer list}0 to variadic %select{function|block|method|constructor}2 cannot pass %select{expression of type %1|initializer list}0 to variadic %select{function|block|method|constructor}2; expected type from format string was %3 __block variable %0 cannot be captured in a %select{lambda expression|captured statement}1 non-local lambda expression cannot have a capture-default %0 in capture list does not name a variable %0 can appear only once in a capture list %0 cannot be captured because it does not have automatic storage duration by-copy capture of value of abstract type %0 by-copy capture of variable %0 with incomplete type %1 %select{function|parameter}0 declared '[[carries_dependency]]' after its first declaration '[[carries_dependency]]' attribute only allowed on parameter in a function declaration or lambda 'case' statement not in switch statement operand of type %0 cannot be cast to a pointer type pointer cannot be cast to type %0 cannot type cast @selector expression cannot catch incomplete type %0 cannot catch pointer to incomplete type %0 cannot catch reference to incomplete type %0 @catch parameter is not a pointer to an interface type cannot catch exceptions by rvalue reference cannot define %select{category|class extension}0 for undefined class %1 function declared '%0' here was previously declared %select{'%2'|without calling convention}1 function with no prototype cannot use the %0 calling convention variadic function cannot use %0 calling convention CFString literal is not a string constant circular inheritance between %0 and %1 cannot declare class extension for %0 after class implementation base %0 is marked '%select{final|sealed}1' %0 redeclared with '%1' access property follows Cocoa naming convention for returning 'owned' objects the type %0 is not a pointer to a fast-enumerable object type of machine mode does not support base vector types %select{block pointer|pointer|reference}0 to function type %select{%2 |}1cannot have '%3' qualifier %select{variable|function}0 concept cannot be declared '%select{thread_local|inline|friend|constexpr}1' concept declarations may only appear in namespace scope %select{function|variable}0 concept cannot be %select{explicitly instantiated|explicitly specialized|partially specialized}1 'concept' cannot be applied on an %select{explicit instantiation|explicit specialization|partial specialization}0 'concept' can only appear on the definition of a function template or variable template operands to conditional of types%diff{ $ and $|}0,1 are incompatible in ARC mode conditional expression is ambiguous; %diff{$ can be converted to $ and vice versa|types can be convert to each other}0,1 conditional expression is ambiguous; %diff{$ and $|types}0,1 can be converted to several common types vector condition type %0 and result type %1 do not have elements of the same size vector condition type %0 and result type %1 do not have the same number of elements %select{left|right}1 operand to ? is void, but %select{right|left}1 operand is of type %0 CUDA special function 'cudaConfigureCall' must have scalar return type conflicting types for alias %0 instance variable %0 has conflicting bit-field width conflicting instance variable names: %0 vs %1 instance variable %0 has conflicting type%diff{: $ vs $|}1,2 virtual function %0 has different calling convention attributes %diff{($) than the function it overrides (which has calling convention $)|than the function it overrides}1,2 conflicting super class name %0 conflicting types for %0 argument to %0 must be a constant integer statement not allowed in constexpr %select{function|constructor}0 no return statement in constexpr function constexpr constructor must initialize all members destructor cannot be marked constexpr function try block not allowed in constexpr %select{function|constructor}0 variables defined in a constexpr %select{function|constructor}0 must be initialized variable of non-literal type %1 cannot be defined in a constexpr %select{function|constructor}0 %select{static|thread_local}1 variable not permitted in a constexpr %select{function|constructor}0 'main' is not allowed to be declared constexpr constexpr can only be used in variable and function declarations constexpr %select{function|constructor}1's %ordinal0 parameter type %2 is not a literal type constexpr function's return type %0 is not a literal type %select{non-constexpr declaration of %0 follows constexpr declaration|constexpr declaration of %0 follows non-constexpr declaration}1 non-void constexpr function %0 should return a value declaration of constexpr static data member %0 requires an initializer %select{class|struct|interface|union|enum}0 cannot be marked constexpr constexpr union constructor does not initialize any member constexpr variable cannot have non-literal type %0 constexpr variable %0 must be initialized by a constant expression virtual function cannot be constexpr constexpr %select{member function|constructor}0 not allowed in %select{struct|interface|class}1 with virtual base %plural{1:class|:classes}2 variably-modified type %0 cannot be used in a constexpr %select{function|constructor}1 copy constructor must pass its first argument by reference constructor cannot be declared '%0' constructor cannot be redeclared constructor cannot have a return type class extension has no primary class 'continue' statement not in loop statement conversion function must be a non-static member function conversion function cannot be redeclared conversion function cannot have a return type conversion function cannot convert to an array type conversion function cannot convert to a function type conversion function cannot be variadic cannot specify any part of a return type in the declaration of a conversion function%select{; put the complete type after 'operator'|; use a typedef to declare a conversion to %1|; use an alias template to declare a conversion to %1|}0 conversion function cannot have any parameters first two arguments to __builtin_convertvector must have the same number of elements first argument to __builtin_convertvector must be a vector second argument to __builtin_convertvector must be a vector type '&' must precede a capture when the capture default is '=' '%0' cannot be used in a constexpr function '%1' cannot be used in a %select{constructor|destructor}0 Objective-C methods as coroutines are not yet supported '%0' cannot be used outside a function this function cannot be a coroutine: missing definition of specialization %q0 '%0' cannot be used in an unevaluated context '%0' cannot be used in a varargs function return type of virtual function %3 is not covariant with the return type of the function it overrides (ambiguous conversion from derived class %0 to base class %1:%2) invalid covariant return for virtual function: %1 is a %select{private|protected}2 base class of %0 return type of virtual function %0 is not covariant with the return type of the function it overrides (%1 is incomplete) return type of virtual function %0 is not covariant with the return type of the function it overrides (%1 is not derived from %2) return type of virtual function %0 is not covariant with the return type of the function it overrides (class type %1 is more qualified than class type %2 return type of virtual function %0 is not covariant with the return type of the function it overrides (%1 has different qualifiers than %2) %select{constructor|destructor}1 %0 must not return void expression constexpr function '%0' without __host__ or __device__ attributes cannot overload __device__ function with same signature. Add a __host__ attribute, or build with -fno-cuda-host-device-constexpr. %select{alias|ifunc}0 definition is part of a cycle GNU decimal type extension not supported %0 attribute cannot be applied to a statement '%0' declared as an array with a negative size declarator requires an identifier '__declspec(thread)' applied to variable that already has a thread-local storage specifier 'decltype(auto)' cannot be combined with other type specifiers cannot form %select{pointer to|reference to|array of}0 'decltype(auto)' 'decltype(auto)' can only be used as a return type in a function declaration cannot deduce 'decltype(auto)' from initializer list 'decltype' cannot be used to name a declaration cannot decrement expression of type bool deduced non-type template argument does not have the same type as the its corresponding template parameter%diff{ ($ vs $)|}0,1 exception specifications of %select{return|argument}0 types differ default template argument in a class template partial specialization addition of default argument on redeclaration makes this constructor a %select{default|copy|move}0 constructor default initialization of an object of const type %0%select{| without a user-provided default constructor}1 'default' statement not in switch statement the parameter for an explicitly-defaulted copy assignment operator must be an lvalue reference type the parameter for this explicitly-defaulted copy %select{constructor|assignment operator}0 is const, but a member or base requires it to be non-const the parameter for an explicitly-defaulted move %select{constructor|assignment operator}0 may not be const an explicitly-defaulted %select{|copy |move }0constructor cannot have default arguments an explicitly-defaulted %select{copy|move}0 assignment operator may not have 'const'%select{, 'constexpr'|}1 or 'volatile' qualifiers explicitly-defaulted %select{copy|move}0 assignment operator must return %1 an explicitly-defaulted %select{|copy |move }0constructor cannot be variadic the parameter for an explicitly-defaulted %select{<<ERROR>>|copy constructor|move constructor|copy assignment operator|move assignment operator|<<ERROR>>}0 may not be volatile definition of explicitly defaulted %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}0 definition of implicitly declared %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor|function}1 delegating constructors are permitted only in C++11 an initializer for a delegating constructor must appear alone converting delete expression from type %0 to type %1 invokes an explicit conversion function deleting incomplete class type %0; no conversions to pointer type cannot delete expression of type %0 deleted definition must be first declaration attempt to use a deleted function 'main' is not allowed to be deleted deleted function %0 cannot override a non-deleted function nested name specifier for a declaration cannot depend on a template parameter non-type template argument depends on a template parameter of the partial specialization %select{declaration|definition}0 of %select{struct|interface|union|class|enum}1 in a dependent scope non-type template argument specializes a template parameter with dependent type %0 dereference of pointer to incomplete type %0 designator in initializer for scalar type %0 designator into flexible array member subobject destructor cannot be declared '%0' expected the class name after '~' to name a destructor destructor type %0 in object destruction expression does not match the type %1 of the object being destroyed expected the class name after '~' to name the enclosing class destructor must be a non-static member function destructor cannot be redeclared destructor cannot have a return type destructor cannot be declared as a template destructor cannot be declared using a %select{typedef|type alias}1 %0 of the class name destructor cannot be variadic destructor cannot have any parameters conflicting asm label declaration of %0 has a different language linkage conflicting pass_object_size attributes on parameters virtual function %0 has a different return type %diff{($) than the function it overrides (which has return type $)|than the function it overrides}1,2 dimension expression does not evaluate to a constant unsigned int exception specifications are not allowed beyond a single level of indirection cannot cast %select{private|protected}2 base class %1 to %0 reference to %select{destructor|pseudo-destructor}0 must be called%select{|; did you mean to call it with no arguments?}1 reimplementation of category %1 for class %0 reimplementation of class %0 base class %0 specified more than once as a direct base class duplicate case value '%0' duplicate case value: '%0' and '%1' both equal '%2' duplicate interface definition for class %0 instance variable is already declared definition with same mangled name as another definition duplicate member %0 duplicate declaration of method %0 property has a previous declaration dynamic initialization is not supported for __device__, __constant__, and __shared__ variables. catch-all handler must come last ISO C requires a named parameter before '...' only function and template parameters can be parameter packs scalar initializer cannot be empty 'enable_if' attribute expression never produces a constant expression reference to %select{|scoped }0enumeration must use 'enum' not 'enum class' non-integral type %0 is an invalid underlying type mode %0 is not supported for enumeration types enumeration previously declared with %select{non|}0fixed underlying type enumeration previously declared as %select{un|}0scoped enumeration redeclared with different underlying type %0 (was %1) enumerator %0 does not exist in instantiation of %1 enumerator value is not representable in the underlying type %0 enumerator value %0 is not representable in the underlying type %1 the event_t type can only be used with __private address space qualifier the event_t type cannot be used to declare a program scope variable exception specifications are not allowed in %select{typedefs|type aliases}0 exception specification is not available until end of class definition cannot use '%0' with exceptions disabled excess elements in %select{array|vector|scalar|union|struct}0 initializer excess elements in char array initializer %0 is not a class%select{ or namespace|, namespace, or enumeration}1 kernel must have void return type partial ordering for explicit instantiation of %0 is ambiguous explicit instantiation cannot be 'constexpr' explicit instantiation refers to static data member %q0 that is not an instantiation explicit instantiation declaration (with 'extern') follows explicit instantiation definition (without 'extern') duplicate explicit instantiation of %0 explicit instantiation of %0 in class scope explicit instantiation cannot be 'inline' explicit instantiation refers to member function %q0 that is not an instantiation explicit instantiation of %0 must occur at global scope explicit instantiation of non-templated type %0 explicit instantiation of %0 does not refer to a function template, variable template, member function, member class, or static data member explicit instantiation of typedef %0 explicit instantiation of %0 not in a namespace enclosing %1 explicit instantiation declaration requires a name explicit instantiation cannot have a storage class explicit instantiation of undefined function template %0 explicit instantiation of undefined %select{member class|member function|static data member}0 %1 of class template %2 explicit instantiation of undefined variable template %q0 explicit instantiation of %q0 must occur in namespace %1 explicit instantiation of %q0 must specify a template argument list 'explicit' can only be applied to a constructor or conversion function 'explicit' can only appear on non-static member functions 'explicit' can only be specified inside the class definition explicit specialization has extraneous, inconsistent storage class '%select{none|extern|static|__private_extern__|auto|register}0' %select{case value|enumerator value|non-type template argument|array size}0 is not a constant expression expression is not an %select{integer|integral}0 constant expression expression is not a string literal vector component access exceeds type %0 illegal vector component name '%0' illegal vector size (%0) declaration of %1 %select{with C language linkage|in global scope}0 conflicts with declaration %select{in global scope|with C language linkage}0 extern declaration of %0 follows non-extern declaration control reaches end of non-void block fallthrough annotation does not directly precede switch label fallthrough annotation is outside switch statement %0 attribute is only allowed on empty statements field %0 declared as a function field designator cannot initialize a %select{non-struct, non-union|non-class}0 type %1 field designator %0 does not refer to a non-static data member field designator %0 does not refer to any field in type %1 field designator %0 does not refer to any field in type %1; did you mean %2? field has incomplete type %0 data member instantiated with function type %0 field may not be qualified with an address space filter expression type should be an integral value not %0 declaration of %0 overrides a '%select{final|sealed}1' function first argument to __builtin_call_with_static_chain must not be a block call first argument to __builtin_call_with_static_chain must not be a builtin call first argument to __builtin_call_with_static_chain must be a non-member call expression first argument to __builtin_call_with_static_chain must not be a pseudo-destructor call first argument to 'va_arg' is of type %0 and not 'va_list' flexible array member %0 not allowed in otherwise empty %select{struct|interface|union|class|enum}1 flexible array member %0 of type %1 with non-trivial destruction initialization of flexible array member is not allowed flexible array requires brace-enclosed initializer flexible array member %0 in a union is not allowed flexible array member %0 not allowed in %select{struct|interface|union|class|enum}1 which has a virtual base class expression not permitted as operand of fold expression unary fold expression has empty expansion for operator '%0' with no fallback value binary fold expression has unexpanded parameter packs in both operands cannot use type %0 as a range invalid range expression of type %0; did you mean to dereference it with '*'? cannot use incomplete type %0 as a range invalid range expression of type %0; no viable '%select{begin|end}1' function available cannot use type %0 as an iterator range type %0 has '%select{begin|end}1' member but no '%select{end|begin}1' member loop variable %0 may not be declared %select{'extern'|'static'|'__private_extern__'|'auto'|'register'|'constexpr'}1 format attribute cannot specify the implicit this argument as the format string format argument not %0 format attribute requires variadic function function does not return %0 strftime format attribute requires 3rd parameter to be 0 ISO C++ forbids forward references to 'enum' types attempting to use the forward class %0 as superclass of %1 friend declaration of %0 does not match any declaration in %1 '%0' is invalid in friend declarations friend declaration specifying a default argument must be a definition friend declaration specifying a default argument must be the only declaration friend function cannot be defined in a local class friends cannot be members of the declaring class 'friend' must appear first in a non-function declaration incomplete result type %0 in function definition function cannot return %select{array|function}0 type %1 function cannot return qualified void type %0 declared return type of function concept must be 'bool' function concept cannot have exception specification function concept declaration must be a definition function concept cannot have any parameters %0 marked 'override' but does not override any member functions always_inline function %1 requires target feature '%2', but would be inlined into function %0 that is compiled without support for '%2' type %0 of function parameter pack does not contain any unexpanded parameter packs cannot specialize a function %0 within class scope function template partial specialization is not allowed function template specialization %0 ambiguously refers to more than one function template; explicitly specify%select{| additional}1 template arguments to identify a particular function template no function template matches function template specialization %0 weak attribute declared on a __strong type property in GC mode controlling expression type %0 compatible with %1 generic association types controlling expression type %0 not compatible with any generic association type no getter method for read from property call to global function %0 not configured cannot jump from this goto statement to its label cannot jump from this goto statement to label %0 inside an inline assembly block half precision constant requires cl_khr_fp16 type argument of iboutletcollection attribute cannot be a builtin type invalid type %0 as argument of iboutletcollection attribute ambiguous conversion from type %0 to an integral or unscoped enumeration type integral constant expression requires explicit conversion from %0 to %1 integral constant expression has incomplete class type %0 integral constant expression must have integral or unscoped enumeration type, not %0 integer constant expression evaluates to value %0 that cannot be represented in a %1-bit %select{signed|unsigned}2 integer type identifier %0 in object destruction expression does not name a type a parameter list without types is only allowed in a function definition ifunc resolver function must have no parameters ifunc resolver function must return a pointer illegal operation on Objective-C container subscripting array has incomplete element type %0 '%0' declared as array of %1 '%0' declared as array of functions of type %1 '%0' declared as array of references of type %1 '%0' does not point into a class '%0' declared as a member pointer to a reference of type %1 '%0' declared as a member pointer to void '%0' declared as a pointer to a reference of type %1 illegal initializer (only variables can be initialized) illegal initializer type %0 Objective-C message has incomplete result type %0 illegal qualifiers on @catch parameter %select{anonymous struct|union}0 member %1 has a non-trivial %select{constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}2 imaginary types are not supported initializer for aggregate with no elements requires explicit braces implicit instantiation of undefined member %0 cannot initialize object parameter of type %0 with an expression of type %1 you need to include <coroutine> before defining a coroutine this function cannot be a coroutine: %0 is not a class this function cannot be a coroutine: %q0 has no member named 'promise_type' cannot deduce type of initializer list because std::initializer_list was not found; include <initializer_list> static data member of type %0 must be initialized out of line in-class initializer for static data member of type %0 requires 'constexpr' specifier non-const static data member must be initialized out of line in-class initializer for static data member is not a constant expression cannot use defaulted default constructor of %0 within the class outside of member functions because %1 has an initializer cannot use defaulted default constructor of %0 within %1 outside of member functions because %2 has an initializer static const volatile data member must be initialized out of line target exception specification is not superset of source base class has incomplete type %select{|pointer to |reference to }0incomplete type %1 is not allowed in exception specification member access into incomplete type %0 incomplete type %0 named in nested name specifier incomplete type in call to object of type %0 incomplete receiver type %0 cannot synthesize property %0 with incomplete type %1 incomplete type %0 where a complete type is required '@encode' of incomplete type %0 incomplete type %0 used in type trait expression 'typeid' of incomplete type %0 inconsistent number of instance variables specified defaulted definition of %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator}0 is not constexpr exception specification of explicitly defaulted %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}0 does not match the calculated one number of elements must be either one or match the size of the vector cannot %select{decrement|increment}0 expression of enum type %1 cannot jump from this indirect goto statement to one of its possible targets indirect goto in function with no address-of-label expressions cannot deduce type for lambda capture %0 from initializer of type %2 cannot deduce type for lambda capture %0 from initializer list initializer for lambda capture %0 contains multiple expressions initializer missing for lambda capture %0 cannot deduce type for lambda capture %1 from %select{parenthesized|nested}0 initializer list cannot initialize %select{a variable|a parameter|return object|an exception object|a member subobject|an array element|a new value|a value|a base class|a constructor delegation|a vector element|a block element|a complex element|a lambda capture|a compound literal initializer|a related result|a parameter of CF audited function}0 %diff{of type $ with an %select{rvalue|lvalue}2 of type $|with an %select{rvalue|lvalue}2 of incompatible type}1,3%select{|: different classes%diff{ ($ vs $)|}5,6|: different number of parameters (%5 vs %6)|: type mismatch at %ordinal5 parameter%diff{ ($ vs $)|}6,7|: different return type%diff{ ($ vs $)|}5,6|: different qualifiers (%select{none|const|restrict|const and restrict|volatile|const and volatile|volatile and restrict|const, volatile, and restrict}5 vs %select{none|const|restrict|const and restrict|volatile|const and volatile|volatile and restrict|const, volatile, and restrict}6)}4 initializer element is not a compile-time constant initialization of incomplete type %0 %select{|non-aggregate }0type %1 cannot be initialized with an initializer list init methods must return an object pointer type, not %0 initialization of non-aggregate type %0 with an initializer list cannot initialize Objective-C class type %0 can only use 'init_priority' attribute on file-scope definitions of objects of class type reference member of type %0 uninitialized initializer-string for char array is too long inline declaration of %0 follows non-inline definition inline declaration of %0 not allowed in block scope 'main' is not allowed to be declared inline %select{|non-}0inline namespace cannot be reopened as %select{non-|}0inline 'inline' can only appear on functions __int128 is not supported on this target invalid block pointer conversion %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2 integer sequences must have integral element type integer sequences must have non-negative sequence length 'internal_linkage' attribute does not appear on the first declaration of %0 must use a qualified name when declaring a %select{constructor|destructor|conversion operator}0 as a friend invalid use of a cast in a inline asm context requiring an l-value: remove the cast or build with -fheinous-gnu-extensions value '%0' out of range for constraint '%1' invalid reinterpretation: sizes of %0 and %1 must match %0 attribute cannot be applied to virtual functions interface type cannot inherit from %select{'struct|non-public 'interface|'class}0 %1' collection element of type %0 is not an Objective-C object '_Complex %0' is invalid %select{function parameter|typedef|non-static data member}0 cannot be constexpr non-static data member cannot be constexpr%select{; did you intend to make it %select{const|static}0?|}1 constexpr variable declaration must be a definition invalid conversion between ext-vector type %0 and %1 invalid conversion between vector type %0 and integer type %1 of different size invalid conversion between vector type %0 and scalar type %1 invalid conversion between vector type%diff{ $ and $|}0,1 of different size invalid cpu feature string for builtin cannot combine with previous '%0' declaration specifier definition or redeclaration of %0 cannot name the global scope definition or redeclaration of %0 not allowed inside a block definition or redeclaration of %0 not allowed inside a function cannot define or redeclare %0 here because namespace %1 does not enclose namespace %2 cannot create a non-constant pointer to member function invalid use of incomplete type %0 %select{data member |non-public member function |static member function |user-declared constructor|user-declared destructor|operator |nested class }0%1 is not permitted within an interface type invalid use of member %0 in static member function incompatible constant for this __builtin_neon function invalid use of non-static data member %0 %0 is not a valid literal type for NSNumber invalid PCS type '__pixel' must be preceded by '__vector'. '%0' declaration specifier not allowed here %0 is not a valid property name (accessing an object of type %1) invalid protocol qualifiers on non-ObjC type '%0' qualifier is not allowed on a constructor '%0' qualifier is not allowed on a destructor %select{static |non-}0member function %select{of type %2 |}1cannot have '%3' qualifier receiver type %0 is not an Objective-C class 'super' is only valid in a method body '%0' cannot be signed or unsigned invalid use of '__super', this keyword can only be used inside class or member function scope invalid use of 'this' outside of a non-static member function '%0' is only allowed on variable declarations an array type is not allowed here a function type is not allowed here type %2 of %select{explicit instantiation|explicit specialization|partial specialization|redeclaration}0 of %1 does not match expected type %3 cannot use '%0' with '__vector bool' cannot combine with previous '%0' declaration specifier. '__vector' must be first use of 'double' with '__vector' requires VSX support to be enabled (available on POWER7 or later) cannot use 'float' with '__vector' cannot use 'long' with '__vector' cannot use 'long double' with '__vector' use of 'long long' with '__vector bool' requires VSX support (available on POWER7 or later) or extended Altivec support (available on POWER8 or later) to be enabled '%select{|short|long|long long}0 %1' is invalid property %0 not found on object of type %1; did you mean to access instance variable %2? instance variables cannot be of reference type kernel call to non-global function %0 kernel function %0 must be a free function or static member function kernel function type %0 must have void return type unnamed variable cannot be implicitly captured in a lambda expression lambda expression in default argument cannot capture any entity variable %0 with flexible array member cannot be captured in a lambda expression cannot assign to a variable captured by copy in a non-mutable lambda variable %0 cannot be implicitly captured in a lambda with no capture-default specified a lambda expression may not appear inside of a constant expression incomplete result type %0 in lambda expression cannot deduce lambda return type from initializer list lambda expression in an unevaluated operand string literal in language linkage specifier cannot have an encoding-prefix unknown linkage language cannot apply asm label to %select{variable|function}0 after its first use non-template literal operator must have one or two parameters literal operator cannot have a default argument literal operator must have C++ linkage non-namespace scope '%0' cannot have a literal operator member parameter of literal operator must have type 'unsigned long long', 'long double', 'char', 'wchar_t', 'char16_t', 'char32_t', or 'const char *' literal operator %0 must be in a namespace or global scope invalid literal operator parameter type %0, did you mean %1? template parameter list for literal operator must be either 'char...' or 'typename T, T...' literal operator template cannot have any parameters '__local' variable cannot have an initializer %select{non-const|volatile}0 lvalue reference to type %1 cannot bind to an initializer list temporary %select{non-const|volatile}0 lvalue reference %diff{to type $ cannot bind to a temporary of type $|cannot bind to incompatible temporary}1,2 %select{non-const|volatile}0 lvalue reference %diff{to type $ cannot bind to a value of unrelated type $|cannot bind to a value of unrelated type}1,2 rvalue reference %diff{to type $ cannot bind to lvalue of type $|cannot bind to incompatible lvalue}0,1 %select{unknown|unsupported}0 machine mode %1 %select{first|second|third|fourth}0 parameter of 'main' (%select{argument count|argument array|environment|platform-specific data}0) must be of type %1 main cannot be declared as global variable 'main' must return 'int' too many parameters (%0) for 'main': must be 0, 2, or 3 %0 cannot be a template 'std::coroutine_traits' must be a class template std::initializer_list must be a class template with a single type parameter control may reach end of non-void block member initializer %0 does not name a non-static data member or base class initializer %0 does not name a non-static data member or base class; did you mean the %select{base class|member}1 %2? call to non-static member function without an object argument out-of-line %select{declaration|definition}2 of %0 does not match any declaration in %1 out-of-line %select{declaration|definition}2 of %0 does not match any declaration in %1; did you mean %3? return type of out-of-line definition of %q0 differs from that in the declaration out-of-line definition of %0 from class %1 without definition extra qualification on member %0 member function %0 not viable: 'this' argument has type %1, but function is not marked %select{const|restrict|const or restrict|volatile|const or volatile|volatile or restrict|const, volatile, or restrict}2 initializer on function does not look like a pure-specifier member %0 has the same name as its class no member %0 in %1; it has not yet been instantiated non-friend class member %0 cannot have a qualified name class member cannot be redeclared multiple overloads of %0 instantiate to the same signature %1 base of member reference is a function; perhaps you meant to call it%select{| with no arguments}0? member pointer refers into non-class type %0 conversion from pointer to member of class %0 to pointer to member of class %1 via virtual base %2 is not allowed exception specification in declaration does not match previous declaration exception specification in explicit instantiation does not match instantiated one inheritance model does not match %select{definition|previous declaration}0 visibility does not match previous declaration instance variables may not be placed in %select{categories|class extension}0 missing actual type specifier for pipe string literal must be prefixed by '@' %select{|implicit default |inheriting }0constructor for %1 must explicitly initialize the %select{base class|member}2 %3 which does not have a default constructor %0 is missing exception specification '%1' missing '[' at start of message send expression C++ requires a type specifier for all declarations cannot use C++ 'try' in the same function as SEH '__try' mode attribute only supported for integer and floating-point types type of machine mode does not match type of base type @import of module '%0' in implementation of '%1'; use #import import of module '%0' appears within %1 %select{local variable|parameter|typedef}0 %1 cannot be declared __module_private__ local %select{struct|interface|union|class|enum}0 cannot be declared __module_private__ %select{template|partial|member}0 specialization cannot be declared __module_private__ import of module '%0' appears within same top-level module '%1' %select{declaration|definition|default argument}0 of %1 must be imported from module '%2' before it is required missing '#include %3'; %select{declaration|definition|default argument}0 of %1 must be imported from module '%2' before it is required %select{declaration|definition|default argument}0 of %1 must be imported from one of the following modules before it is required:%2 '__leave' statement not in __try block '__builtin_ms_va_start' used in System V ABI function multiple initializations given for base %0 multiple default labels in one switch virtual function %q0 has more than one final overrider in %1 multiple initializations given for non-static member %0 initializing multiple members of union 'mutable' and 'const' cannot be mixed 'mutable' cannot be applied to functions 'mutable' can only be applied to member variables 'mutable' cannot be applied to references you need to include <guiddef.h> before using the '__uuidof' operator you need to include <typeinfo> before using the 'typeid' operator lookup of %0 in member access expression is ambiguous %0 cannot appear before '::' because it is not a class%select{ or namespace|, namespace, or enumeration}1; did you mean ':'? type %0 cannot be used prior to '::' because it has no members %select{call to non-static member function|use of non-static data member}0 %2 of %1 from nested type %3 nested redefinition of %0 'abi_tag' %0 missing in original declaration array 'new' cannot have initialization arguments only the first dimension of an allocated array may have dynamic size cannot allocate array of 'auto' allocation of incomplete type %0 no %select{getter|setter}0 defined for property %1 invalid use of '__super', %0 has no base classes cannot use dynamic_cast with -fno-rtti no matching function found in local scope no matching function %0 found in local scope; did you mean %3? no member named %0 in %1 no member named %0 in %1; did you mean to use '->' instead of '.'? no member named %0 in %1; did you mean %select{|simply }2%3? no template named %0 in %1; did you mean %select{|simply }2%3? cannot find interface declaration for %0 no suitable member %0 in %1 no template named %0; did you mean %1? cannot use typeid with -fno-rtti argument to noexcept specifier must be a constant expression a getter method is needed to perform a compound assignment on a property no getter method %1 for %select{increment|decrement}0 of property non-ASM statement in naked function is not supported non-deleted function %0 cannot override a deleted function non-extern declaration of %0 follows extern declaration declaration of non-local variable in 'for' loop non-static declaration of %0 follows static declaration non-thread-local declaration of %0 follows thread-local declaration template argument / label address difference / what did you expect? non-type template argument refers to subobject '%0' qualified name refers into a specialization of %select{function|variable}0 template %1 non-variable declaration in 'for' loop %0 is not virtual and cannot be declared pure block pointer to non-function type is invalid non-static data member defined out-of-line address argument to nontemporal builtin must be a pointer (%0 invalid) address argument to nontemporal builtin must be a pointer to integer, float, pointer, or a vector of such types (%0 invalid) block declared 'noreturn' should not return lambda declared 'noreturn' should not return function declared '[[noreturn]]' after its first declaration '_Noreturn' can only appear on functions %select{assignment to readonly property|no setter method %1 for assignment to property}0 %select{%select{increment|decrement}1 of readonly property|no setter method %2 for %select{increment|decrement}1 of property}0 cannot specialize a %select{dependent template|template template parameter}0 type %0 is not a direct or virtual base of %1 call to function %0 that is neither visible in the template definition nor found by argument-dependent lookup anonymous bit-field has non-integral type %0 bit-field %0 has non-integral type %1 no %select{struct|interface|union|class|enum}0 named %1 in %2 %0 attribute only applies to %select{Objective-C object|pointer|pointer-to-CF-pointer}1 parameters overriding method has mismatched ns_consumed attribute on its parameter 'NSObject' attribute is for pointer types only overriding method has mismatched ns_returns_%select{not_retained|retained}0 attributes nullability keyword %0 cannot be applied to multi-level pointer type %1 nullability specifier %0 cannot be applied to non-pointer type %1 array of interface %0 is invalid (probably should be an array of pointers) parameter of %0 attribute must be a single name of an Objective-C %select{class|protocol}1 attribute %0 can only be applied to @protocol definitions, not forward declarations parameter of %0 attribute must be 'id' when used on a typedef 'objc_bridge(id)' is only allowed on structs and typedefs of void pointers could not find Objective-C class %0 to convert %1 to %2 %0 must be name of an Objective-C class to be able to convert %1 to %2 %0 must be explicitly converted to %1; use %select{%objcclass2|%objcinstance2}3 method for this conversion CF object of type %0 is bridged to %1, which is not an Objective-C class Objective-C declarations may only appear in global scope cannot use '%0' with Objective-C exceptions disabled illegal type %0 used in a boxed expression incomplete type %0 used in a boxed expression Objective-C index expression has incomplete class type %0 method for accessing %select{dictionary|array}1 element must have Objective-C object return type instead of %0 '__kindof' specifier cannot be applied to non-object type %0 '__kindof' type specifier must precede the declarator literal construction method %0 has incompatible signature indexing expression is invalid because subscript type %0 has multiple type conversion functions non-trivially copyable type %0 cannot be used in a boxed expression ObjectiveC object of type %0 is bridged to %1, which is not valid CF object cannot assign to class object (%0 invalid) cannot catch an Objective-C object by value %select{extension|category}0 of non-parameterized class %1 cannot have type parameters forward declaration of non-parameterized class %0 cannot have type parameters class %0 previously declared with type parameters objc_precise_lifetime only applies to retainable types; type here is %0 property attributes '%0' and '%1' are mutually exclusive property with '%0' attribute must be of object type objc_root_class attribute may only be specified on a root class declaration cannot implement a category for class %0 that is only visible via the Objective-C runtime cannot implement subclass %0 of a superclass %1 that is only visible via the Objective-C runtime %select{dictionary|array}1 subscript base type %0 is not an Objective-C object method object parameter type %0 is not object type method index parameter type %0 is not integral type method key parameter type %0 is not object type expected method to %select{read|write}1 %select{dictionary|array}2 element not found on object of type %0 cannot assign to this %select{dictionary|array}1 because assigning method's 2nd parameter of type %0 is not an Objective-C pointer type indexing expression is invalid because subscript type %0 is not an Objective-C pointer indexing expression is invalid because subscript type %0 is not an integral or Objective-C pointer type type argument %0 does not satisfy the bound (%1) of type parameter %2 type argument %0 cannot explicitly specify nullability no type or protocol named %0 type argument %0 must be a pointer (requires a '*') type argument %0 is neither an Objective-C object nor a block type type argument %0 cannot be qualified with '%1' angle brackets contain both a %select{type|protocol}0 (%1) and a %select{protocol|type}0 (%2) type arguments cannot be applied to non-class type %0 type arguments cannot be applied to non-parameterized class %0 type arguments cannot be applied to already-specialized class type %0 too %select{many|few}0 type arguments for class %1 (have %2, expected %3) %select{forward class declaration|class definition|category|extension}0 has too %select{few|many}1 type parameters (expected %2, have %3) type bound %0 for type parameter %1 conflicts with %select{implicit|previous}2 bound %3%select{for type parameter %5|}4 type parameter %0 bound %1 cannot explicitly specify nullability missing type bound %0 for type parameter %1 in %select{@interface|@class}2 missing '*' in type bound %0 for type parameter %1 type bound %0 for type parameter %1 is not an Objective-C pointer type type bound %1 for type parameter %0 cannot be qualified with '%2' redeclaration of type parameter %0 %select{in|co|contra}0variant type parameter %1 conflicts with previous %select{in|co|contra}2variant type parameter %3 cannot declare variable inside @interface or @protocol interface type %1 cannot be %select{returned|passed}0 by value; did you forget * in %1? offsetof requires array type, %0 invalid cannot compute offset of bit-field %0 invalid application of 'offsetof' to a field of a virtual base offsetof of incomplete type %0 offsetof requires struct, union, or class type, %0 invalid argument of aligned clause should be array%select{ or pointer|, pointer, reference to array or reference to pointer}1, not %0 %select{a variable|a parameter|'this'}0 cannot appear in more than one aligned clause OpenMP array section is not allowed here the statement for 'atomic capture' must be a compound statement of form '{v = x; x binop= expr;}', '{x binop= expr; v = x;}', '{v = x; x = x binop expr;}', '{v = x; x = expr binop x;}', '{x = x binop expr; v = x;}', '{x = expr binop x; v = x;}' or '{v = x; x = expr;}', '{v = x; x++;}', '{v = x; ++x;}', '{++x; v = x;}', '{x++; v = x;}', '{v = x; x--;}', '{v = x; --x;}', '{--x; v = x;}', '{x--; v = x;}' where x is an l-value expression with scalar type the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x', where x and v are both l-value expressions with scalar type the statement for 'atomic' must be an expression statement of form '++x;', '--x;', 'x++;', 'x--;', 'x binop= expr;', 'x = x binop expr' or 'x = expr binop x', where x is an l-value expression with scalar type the statement for 'atomic read' must be an expression statement of form 'v = x;', where v and x are both lvalue expressions with scalar type directive '#pragma omp atomic' cannot contain more than one 'read', 'write', 'update' or 'capture' clause the statement for 'atomic update' must be an expression statement of form '++x;', '--x;', 'x++;', 'x--;', 'x binop= expr;', 'x = x binop expr' or 'x = expr binop x', where x is an l-value expression with scalar type the statement for 'atomic write' must be an expression statement of form 'x = expr;', where x is a lvalue expression with scalar type bit fields cannot be used to specify storage in a map clause arguments of OpenMP clause 'reduction' with bitwise operators cannot be of floating type arguments of OpenMP clause 'reduction' for 'min' or 'max' must be of %select{scalar|arithmetic}0 type const-qualified list item cannot be reduction const-qualified variable cannot be %0 constructs with the same name must have a 'hint' clause with the same value redefinition of user-defined reduction for type %0 'depend' clauses cannot be mixed with '%0' clause expected %0 loop iteration variable expected '+' or '-' operation 'depend(%select{source|sink:vec}0)' clause%select{|s}0 cannot be mixed with 'depend(%select{sink:vec|source}0)' clause%select{s|}0 unexpected expression: number of expressions is larger than the number of associated loops expected expression form x[+-d], where x is the loop iteration variable and d is a constant non-negative integer declare target region may not be enclosed within another declare target region expected access to data field expected variable name as a base of the array %select{subscript|section}0 expected a reference to an integer-typed parameter expected expression containing only member accesses and/or array sections based on named variables expected a reference to a parameter specified in a 'uniform' clause %0 is not a global variable, static local variable or static data member %0 is not a global variable, static local variable or static data member; did you mean %1 expected variable name%select{| or data member of current class}0 expected variable name%select{|, data member of current class}0, array element or array section expression requires explicit conversion from %0 to %1 lastprivate variable cannot be firstprivate in '#pragma omp distribute' reduction variable in '#pragma omp teams' cannot be firstprivate in '#pragma omp distribute' private variable in '#pragma omp teams' cannot be firstprivate in '#pragma omp distribute' a firstprivate variable with incomplete type %0 '#pragma omp declare simd' can only be applied to functions arguments of '#pragma omp %0' must have %select{global storage|static storage duration}1 '%0' and '%1' clause are mutually exclusive and may not appear on the same directive the name of the construct must be specified in presence of 'hint' clause expression has incomplete class type %0 %select{map type '%1' is not allowed|map type must be specified}0 for '#pragma omp %2' a lastprivate variable with incomplete type %0 argument of a linear clause should be of integral or pointer type, not %0 a linear variable with incomplete type %0 'linear' clause cannot be specified along with 'ordered' clause with a parameter variable with local storage in initial value of threadprivate variable '%0' statement cannot be used in OpenMP for loop could not calculate number of iterations calling 'operator-' with upper and lower loop bounds increment expression must cause %0 to %select{decrease|increase}1 on each iteration of OpenMP for loop condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable %0 increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable %0 initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init') loop iteration variable in the associated loop of 'omp %1' directive may not be %0, predetermined as %2 variable must be of integer or %select{pointer|random access iterator}0 type variable already marked as mapped in current construct multiple array elements associated with the same variable are not allowed in map clauses of the same construct argument to '%0' clause must be a %select{non-negative|strictly positive}1 integer value variable %0 must have explicitly specified data sharing attributes expected at least one map clause for '#pragma omp %0' no more 'if' clause is allowed %select{statement after '#pragma omp %1' must be a for loop|expected %2 for loops after '#pragma omp %1'%select{|, but found only %4}3}0 expression must have integral or unscoped enumeration type, not %0 type %0 is not mappable to target unable to resolve declare reduction construct for type %0 variable can appear only once in OpenMP '%0' clause 'ordered' directive %select{without any clauses|with 'threads' clause}0 cannot be closely nested inside ordered region with specified parameter 'ordered' directive with 'depend' clause cannot be closely nested inside ordered region without specified parameter 'ordered' clause with a parameter can not be specified in '#pragma omp %0' directive original storage of expression in data environment is shared but data environment do not fully contain mapped expression storage %select{orphaned 'omp section' directives are prohibited, it|'omp section' directive}0 must be closely nested to a sections region%select{|, not a %1 region}0 argument of a reduction clause of a %0 construct must not appear in a firstprivate clause on a task construct the statement for '#pragma omp parallel sections' must be a compound statement statement in 'omp parallel sections' directive must be enclosed into a section region expected reference to one of the parameters of function %0%select{| or 'this'}1 parent region for 'omp %select{cancellation point/cancel}0' construct cannot be nowait parent region for 'omp %select{cancellation point/cancel}0' construct cannot be ordered pointer cannot be mapped along with a section derived from itself a private variable with incomplete type %0 region cannot be%select{| closely}0 nested inside '%1' region%select{|; perhaps you forget to enclose 'omp %3' directive into a parallel region?|; perhaps you forget to enclose 'omp %3' directive into a for or a parallel for region with 'ordered' clause?|; perhaps you forget to enclose 'omp %3' directive into a target region?|; perhaps you forget to enclose 'omp %3' directive into a teams region?}2 OpenMP constructs may not be nested inside an atomic region cannot nest 'critical' regions having the same name %0 OpenMP constructs may not be nested inside a simd region list item of type %0 is not valid for specified reduction operation: unable to provide default initialization value reduction variables may not be accessed in an explicit task a reduction list item with incomplete type %0 argument of OpenMP clause 'reduction' must reference the same object in all threads reduction type cannot be %select{qualified with 'const', 'volatile' or 'restrict'|a function|a reference|an array}0 type arguments of '#pragma omp %0' cannot be of reference type %1 directive must be at file or namespace scope %0 variable must be %1 same pointer derreferenced in multiple different ways in map clause expressions 'schedule' clause with 'nonmonotonic' modifier cannot be specified if an 'ordered' clause is specified 'nonmonotonic' modifier can only be specified with 'dynamic' or 'guided' schedule kind section of pointer to function type %0 section of pointer to incomplete type %0 section length is unspecified and cannot be inferred because subscripted value is %select{not an array|an array of unknown bound}0 section %select{lower bound|length}0 is evaluated to a negative value %1 the statement for '#pragma omp sections' must be a compound statement statement in 'omp sections' directive must be enclosed into a section region '%0' statement cannot be used in OpenMP simd region the 'copyprivate' clause must not be used with the 'nowait' clause single declaration is expected after 'declare simd' directive target construct with nested teams region contains statements outside of the teams construct threadprivate variables are not allowed in map clause threadprivate variables cannot be used in target constructs threadprivate variable with incomplete type %0 array section %select{lower bound|length}0 is not an integer subscripted value is not an array or pointer expected %0 in OpenMP clause '%1' modifier '%0' cannot be used along with modifier '%1' mapped storage cannot be derived from a union incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type %0 expected %select{|one of}0 %1 directive name modifier%select{|s}0 '#pragma omp %0' must appear in the scope of the %q1 variable declaration variable %0 cannot be threadprivate because it is %select{thread-local|a global named register variable}1 '#pragma omp %0' must precede all references to variable %q1 %0 variable cannot be in a map clause in '#pragma omp %1' directive arguments of OpenMP clause '%0' in '#pragma omp %2' directive cannot be of variably-modified type %1 one of 'for', 'parallel', 'sections' or 'taskgroup' is expected %0 variable cannot be %1 directive name modifier '%0' is not allowed for '#pragma omp %1' expected %select{'val' modifier|one of 'ref', val' or 'uval' modifiers}0 variable of non-reference type %0 can be used only with 'val' modifier, but used with '%1' the parameter of the 'ordered' clause must be greater than or equal to the parameter of the 'collapse' clause the value of 'simdlen' parameter must be less than or equal to the value of the 'safelen' parameter only %select{'omp_priv' or 'omp_orig'|'omp_in' or 'omp_out'}0 variables are allowed in %select{initializer|combiner}0 expression access specifier can only have annotation attributes only constructors take base initializers only enumeration types have underlying types bitfields are not supported in OpenCL cannot refer to a block inside block the __block storage type is not permitted invalid number of arguments to function: %0 first argument to %0 must be a pipe type invalid pipe access modifier (expecting %0) invalid argument type to function %0 (expecting %1 having %2) %0 requires OpenCL version %1%select{| or above}2 invalid argument %0 to function: %1, expecting a generic pointer argument casting to type %0 is not allowed initializer expression is not constant variable in constant address space must be initialized dereferencing pointer of type %0 is not allowed in OpenCL blocks with parameters are not accepted in this prototype of enqueue_kernel call blocks used in enqueue_kernel call are expected to have parameters of type 'local void*' illegal call to enqueue_kernel, expected %0 argument type illegal call to enqueue_kernel, incorrect argument types illegal call to enqueue_kernel, parameter needs to be specified as integer type mismatch in number of block parameters and local size arguments passed declaring kernel argument of event type is not allowed declaring event type with an incompatible qualifier Using %0 function requires the extension '%1' to be enabled invalid block variable declaration - using 'extern' storage class is disallowed pointers to functions are not allowed %select{non-kernel function|function scope}0 variable cannot be declared in %1 address space argument to %0 must be a pointer kernel parameter cannot be declared as a pointer to the __generic address space %select{program scope|static local|extern}0 variable must reside in %1 address space declaring variable of type %0 is not allowed %select{loading directly from|assigning directly to}0 pointer to type %1 is not allowed declaring function parameter of type %0 is not allowed; did you forget * ? image3d_t access qualifier write_only requires cl_khr_3d_image_writes extension to be enabled declaring image type with an incompatible qualifier implicit declarations are not allowed implicit conversions between vector types (%0 and %1) are not permitted access qualifier can only be used for pipe and image type Argument and result of function %0 must have the same bitwidth invalid block variable declaration - must be %select{const qualified|initialized}0 access qualifier %0 can not be used for %1 %select{|earlier than OpenCL2.0 version}2 declaring function return value of type %0 is not allowed %select{; did you forget * ?|}1 array of %0 type is invalid in OpenCL attribute %0 can only be applied to a kernel function Initialisation of a __local variable is not allowed multiple access qualifiers %select{function|kernel}0 cannot be called 'main' pointer to type %0 is invalid in OpenCL kernel parameter cannot be declared as a pointer to the __private address space kernel parameter cannot be declared as a pointer to a pointer return value cannot be qualified with address space declaring sampler variable in this context is not allowed missing const qualifier for global sampler invalid application of '%select{sizeof|alignof|vec_step|__builtin_omp_required_simd_align}0' to a void type block type cannot be used as expression in ternary expression in OpenCL type %0 can only be used as a function parameter in OpenCL %0: declaring field of type %1 is not allowed %0: declaring pointer to type %1 is not allowed declaring return value of type %0 is not allowed the %0 type cannot be used to declare a structure or union field OpenCL does not support the '%0' %select{type qualifier|storage class specifier}1 invalid prototype, variadic arguments are not allowed in OpenCL expecting lvalue here variable length arrays are not supported in OpenCL casting to void is not allowed invalid application of '__builtin_omp_required_simd_align' to an expression, only type is allowed circular pointer delegation detected use of 'operator->' on type %0 would invoke a sequence of more than %1 'operator->' calls %0 cannot take a dependent type as first parameter; use %1 instead first parameter of %0 must have type %1 parameter of %0 cannot have a default argument %0 cannot be declared inside a namespace %0 cannot be declared static in global scope %0 cannot have a dependent return type; use %1 instead %0 must return type %1 %0 template must have at least two parameters %0 must have at least one parameter %0 cannot take a dependent type as first parameter; use size_t (%1) instead %0 takes type size_t (%1) as first parameter parameter of overloaded %0 cannot have a default argument overloaded %0 must be a %select{unary|binary|unary or binary}2 operator (has %1 parameter%s1) overloaded %0 must be a non-static member function overloaded %0 must have at least one parameter of class or enumeration type parameter of overloaded post-%select{increment|decrement}1 operator must have type 'int' (not %0) overloaded %0 cannot be a static member function overloaded %0 cannot be variadic defaulting this %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}0 would delete it after its first declaration operand argument to overflow builtin must be an integer (%0 invalid) result argument to overflow builtin must be a pointer to a non-const integer (%0 invalid) exception specification of overriding function is more lax than base version call to %0 is ambiguous ambiguous conversion for %select{|static_cast|reinterpret_cast|dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2 call to constructor of %0 is ambiguous call to member function %0 is ambiguous call to object of type %0 is ambiguous use of overloaded operator '%0' is ambiguous (with operand types %1 and %2) use of overloaded operator '%0' is ambiguous (operand type %1) call to %select{unavailable|deleted}0 function %1%2 %select{|static_cast|reinterpret_cast|dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2 uses deleted function call to %select{unavailable|deleted}0 constructor of %1 call to %select{unavailable|deleted}0 member function %1%2 call to %select{unavailable|deleted}0 function call operator in type %1%2 overload resolution selected %select{unavailable|deleted}0 operator '%1'%2 call to implicitly-deleted %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor|function}0 of %1 object of type %0 cannot be %select{constructed|copied|moved|assigned|assigned|destroyed}1 because its %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}1 is implicitly deleted functions that differ only in their return type cannot be overloaded cannot convert %1 to %2 without a conversion operator type %0 does not provide a %select{subscript|call}1 operator no matching conversion for %select{|static_cast|reinterpret_cast|dynamic_cast|C-style cast|functional-style cast}0 from %1 to %2 no matching function for call to %0 no matching constructor for initialization of %0 no matching literal operator for call to %0%select{| with argument of type %2| with arguments of types %2 and %3}1%select{| or 'const char *'}4%select{|, and no matching literal operator template}5 no matching member function for call to %0 no matching function for call to object of type %0 no viable overloaded '%0' no viable overloaded operator[] for type %0 static and non-static member functions with the same parameter types cannot be overloaded reference to overloaded function could not be resolved; did you mean to call it%select{| with no arguments}0? 'ownership_returns' attribute index does not match; here it is %0 %0 attribute only applies to %select{pointer|integer}1 arguments pack expansion contains parameter packs %0 and %1 that have different lengths (%2 vs. %3) pack expansion contains parameter pack %0 that has a different length (%1 vs. %2) from outer parameter packs pack expansion for initialization of member %0 pack expansion does not contain any unexpanded parameter packs C does not support default arguments default arguments cannot be added to an out-of-line definition of a member of a %select{class template|class template partial specialization|nested class in a template}0 missing default argument on parameter missing default argument on parameter %0 default arguments can only be specified for parameters in a function declaration parameter pack cannot have a default argument redefinition of default argument default argument references local variable %0 of enclosing function default argument references parameter %0 default argument references 'this' default arguments cannot be added to a function template that has already been declared argument may not have 'void' type parameter name omitted %select{parameters|function return value}0 cannot have __fp16 type; did you forget * ? cannot parenthesize the name of a method when forming a member pointer %select{class|variable}0 template partial specialization does not specialize any template argument; to %select{declare|define}1 the primary template, remove the template argument list partial specialization of %0 does not use any of its template parameters ambiguous partial specializations of %0 class template partial specialization %0 cannot be redeclared partial specialization cannot be declared as a friend 'new' expression with placement arguments refers to non-placement 'operator delete' call to pointer to member function of type %0 drops '%1' qualifier%s2 pointer-to-member function type %0 can only be called on an %select{rvalue|lvalue}1 invalid use of pointer to member type after %select{.*|->*}0 this builtin is only valid on POWER7 or later CPUs %select{incompatible|duplicate}0 directives '%1' and '%2' invalid argument of type %0; expected an integer type %select{invalid value '%0'; must be positive|value '%0' is too large}1 expected a for, while, or do-while loop to follow '%0' mac68k alignment pragma is not supported on this target #pragma visibility pop with no matching #pragma visibility push #pragma visibility push with no matching #pragma visibility pop property %0 found on object of type %1; did you mean to access it with the "." operator? use of Objective-C property in function nested in Objective-C container not supported, move function outside its container property %0 has a variably modified type property access is using %0 method which is unavailable property %0 refers to an incomplete Objective-C class %1 (with no @interface available) property %0 not found on object of type %1 property %0 cannot be found in forward class object %1 property %0 not found on object of type %1; did you mean %2? property cannot have array or function type %0 protocol has circular dependency object expression of non-scalar type %0 cannot be used in a pseudo-destructor expression call to pseudo-destructor cannot have any arguments %0 does not refer to a type name in pseudo-destructor expression; expected the name of type %1 the type of object expression %diff{($) does not match the type being destroyed ($)|does not match the type being destroyed}0,1 in pseudo-destructor expression friend declaration cannot have a pure-specifier exception declarator cannot be qualified friend function definition cannot be qualified with '%0' no function named %0 with type %1 was found in the specified scope qualified member access refers to a member in %0 %q0 is not a member of class %1 %select{property|instance variable}0 access cannot be qualified with '%1' @catch parameter declarator cannot be qualified parameter declarator cannot be qualified typedef declarator cannot be qualified cannot build range expression with array function parameter %0 since parameter with array type %1 is treated as pointer type %2 invalid type %0 to %1 operator %select{struct|union}0 kernel parameters may not contain pointers trying to recursively use %0 as superclass of %1 redeclaration of %0 with a different type%diff{: $ vs $|}1,2 redefinition of %0 redefinition of %0 as different kind of symbol redefinition of %0 as an alias for a different namespace redefinition of %0 with a different type%diff{: $ vs $|}1,2 %select{typedef|type alias|type alias template}0 redefinition with different types%diff{ ($ vs $)|}1,2 redefinition of a 'extern inline' function %0 is not supported in %select{C99 mode|C++}1 redefinition of enumerator %0 redefinition of label %0 redefinition of %select{typedef|type alias}0 for variably-modified type %1 cannot refer to declaration with an array type inside block reference to %select{__device__|__global__|__host__|__host__ __device__}0 function %1 in %select{__device__|__global__|__host__|__host__ __device__}2 function cannot refer to declaration of structure variable with flexible array member inside block reference initialization of type %0 with initializer of type %1 is ambiguous %0 does not refer to a value ref-qualifier '%select{&&|&}0' is not allowed on a constructor ref-qualifier '%select{&&|&}0' is not allowed on a destructor cannot overload a member function %select{without a ref-qualifier|with ref-qualifier '&'|with ref-qualifier '&&'}0 with a member function %select{without a ref-qualifier|with ref-qualifier '&'|with ref-qualifier '&&'}1 cannot refer to declaration with a variably modified type inside block binding value %diff{of type $ to reference to type $|to reference}0,1 drops %select{<<ERROR>>|'const'|'restrict'|'const' and 'restrict'|'volatile'|'const' and 'volatile'|'restrict' and 'volatile'|'const', 'restrict', and 'volatile'}2 qualifier%plural{1:|2:|4:|:s}2 reference %diff{to type $ could not bind to an %select{rvalue|lvalue}1 of type $|could not bind to %select{rvalue|lvalue}1 of incompatible type}0,2 reference to type %0 cannot bind to an initializer list %select{non-const|volatile}0 reference cannot bind to bit-field%select{| %1}2 %select{non-const|volatile}0 reference cannot bind to vector element '&' cannot precede a capture when the capture default is '&' reference cannot be initialized with multiple values pipes packet types cannot be of reference type reference to local variable %0 declared in enclosing block literal reference to local variable %0 declared in enclosing context reference to local variable %0 declared in enclosing function %1 reference to local variable %0 declared in enclosing lambda expression cannot form a reference to 'void' declaration of reference variable %0 requires an initializer reference to type %0 requires an initializer function declared with regparm(%0) attribute was previously declared %plural{0:without the regparm|:with the regparm(%1)}1 attribute %0 attribute cannot be repeated returning block that lives on the local stack void block should not return a value cannot return from %0 return in the catch of a function try block of a constructor is illegal return statement not allowed in coroutine; did you mean 'co_return'? %select{void function|void method|constructor|destructor}1 %0 must not return a value function declared with the ns_returns_retained attribute was previously declared without the ns_returns_retained attribute rvalue reference type %0 is not allowed in exception specification sampler_t variable required - got %0 sampler_t initialization requires 32-bit integer, not %0 second argument to __builtin_call_with_static_chain must be of pointer type second argument to 'va_arg' is of abstract type %0 second argument to 'va_arg' is of incomplete type %0 %0 causes a section type conflict with %1 cannot use SEH '__try' in blocks, captured regions, or Obj-C method decls SEH '__try' is not supported on this target chosen constructor is explicit in copy-initialization selector element of type %0 cannot be a constant l-value expression selector element is not a valid lvalue selector element type %0 is not a valid object type of setter must be void initialization is not supported for __shared__ variables. requested shift is a vector of type %0 but the first operand is not a vector (%1) index for __builtin_shufflevector must be less than the total number of vector elements first two arguments to __builtin_shufflevector must have the same type first two arguments to __builtin_shufflevector must be vectors index for __builtin_shufflevector must be a constant integer invalid application of '%select{sizeof|alignof|vec_step|__builtin_omp_required_simd_align}0' to a function type invalid application of '%select{sizeof|alignof|vec_step|__builtin_omp_required_simd_align}0' to an incomplete type %1 invalid application of '%select{sizeof|alignof|typeof}0' to bit-field application of '%select{alignof|sizeof}1' to interface %0 is not supported on this architecture and platform %0 does not refer to the name of a parameter pack %0 does not refer to the name of a parameter pack; did you mean %1? specialization of member %q0 does not specialize an instantiated member explicit specialization of %0 after instantiation cannot specialize %select{|(with 'template<>') }0a member of an unspecialized template forward declaration of %select{class|struct|interface|union|enum}0 cannot have a nested name specifier static_assert expression is not an integral constant expression static_assert failed%select{ %1|}0 function declared in block scope cannot have 'static' storage class static data member %0 not allowed in anonymous struct static data member %0 not allowed in local class %1 static data member %0 already has an initializer cannot cast %0 to %1 via virtual base %2 variables in function scope cannot be declared static the 'static' modifier for the array size is not legal in new expressions kernel functions cannot be declared static 'main' is not allowed to be declared static static declaration of %0 follows non-static declaration static member %0 cannot be a bit-field 'static' can only be specified inside the class definition 'static' member function %0 overrides a virtual function in a base class interface type cannot be statically allocated %0 attribute cannot be applied to a declaration static data member definition cannot specify a storage class @catch parameter cannot have storage specifier '%0' storage class specified for a member declaration subscript of pointer to function type %0 subscript of pointer to incomplete type %0 subscript requires size of interface %0, which is not constant for this architecture and platform use of '__super' inside a lambda is unsupported '%0' parameter must have pointer%select{| to unqualified pointer}1 type; type here is %2 'swift_context' parameter can only be followed by 'swift_error_result' parameter 'swift_error_result' parameter must follow 'swift_context' parameter 'swift_error_result' parameter must be last parameter of function 'swift_indirect_result' parameters must be first parameters of function '%0' parameter can only be used with swiftcall calling convention switch condition type %0 requires explicit conversion to %1 switch condition has incomplete class type %0 cannot jump from switch statement to this case label multiple conversions from switch condition type %0 to an integral or enumeration type cannot synthesize weak property in file using manual reference counting cannot synthesize weak property because the current deployment target does not support weak references invalid transaction abort code definition of type %0 conflicts with %select{typedef|type alias}1 of the same name implicit declaration introduced by elaborated type conflicts with %select{a declaration|a typedef|a type alias|a template}0 of the same name elaborated type refers to %select{a non-tag type|a typedef|a type alias|a template|a type alias template|a template template argument}0 friend type templates must use an elaborated type ambiguous constructor call when %select{copying variable|copying parameter|returning object|throwing object|copying member subobject|copying array element|allocating object|copying temporary|initializing base subobject|initializing vector element|capturing value}0 of type %1 %select{copying variable|copying parameter|returning object|throwing object|copying member subobject|copying array element|allocating object|copying temporary|initializing base subobject|initializing vector element|capturing value}0 of type %1 invokes deleted constructor copying a temporary object of incomplete type %0 no viable constructor %select{copying variable|copying parameter|returning object|throwing object|copying member subobject|copying array element|allocating object|copying temporary|initializing base subobject|initializing vector element|capturing value}0 of type %1 address taken in non-type template argument for template parameter of reference type %0 non-type template argument refers to non-static data member %0 %select{too few|too many}0 template arguments for %select{class template|function template|template template parameter|template}1 %2 sorry, non-type template argument of pointer-to-member type %1 that refers to member %q0 of a different class is not supported yet non-type template argument refers to non-static member function %0 template argument for non-type template parameter must be an expression template argument for template template parameter must be a class template%select{| or type alias template}0 template argument for template type parameter must be a type template argument for template type parameter must be a type; did you forget 'typename'? non-type template parameter of reference type %diff{$ cannot bind to template argument of type $|cannot bind to template of incompatible argument type}0,1 template argument for non-type template parameter is treated as function type %0 non-type template argument of type %0 is not a constant expression non-type template argument for template parameter of pointer type %0 must have its address taken non-type template argument of type %0 cannot be converted to a value of type %1 non-type template argument does not refer to any declaration non-type template argument of type %0 is not an integral constant expression non-type template argument of type %0 must have an integral or enumeration type non-type template argument does not refer to an object or function non-type template argument is not a pointer to member constant template argument does not refer to a class or alias template, or template template parameter non-type template argument refers to %select{function|object}0 %1 that does not have linkage template argument is the type of an unresolved overloaded function reference binding of non-type template parameter %diff{of type $ to template argument of type $|to template argument}0,1 ignores qualifiers non-type template argument of reference type %0 is not an object template template argument has different template parameters than its corresponding template template parameter non-type template argument refers to thread-local object null non-type template argument must be cast to template parameter type %0 null non-type template argument of type %0 does not match template parameter of type %1 cannot refer to %select{class|variable}0 template %1 without a template argument list template name refers to non-type template %0 templates cannot be declared inside of a local class %select{implicit|explicit}0 instantiation of undefined template %1 %select{implicit|explicit}0 instantiation of template %1 within its own definition missing 'template' keyword prior to dependent template name '%0%1' '%0%1' instantiated to a class template, not a function template %0 following the 'template' keyword does not refer to a template templates must have C++ linkage member %0 declared as a template extraneous 'template<>' in declaration of member %0 use of class template %0 requires template arguments a non-type template parameter cannot have type %0 template non-type parameter has a different type %0 in template %select{|template parameter }1redeclaration templates can only be declared in namespace or class scope template parameter missing a default argument template parameter redefines default argument template parameter has a different kind in template %select{|template parameter }0redeclaration %select{too few|too many}0 template parameters in template %select{|template parameter }1redeclaration template parameter list matching the non-templated nested type %0 should be empty ('template<>') template parameter pack cannot have a default argument template parameter pack must be the last template parameter declaration of %0 shadows template parameter default template argument not permitted on a friend template cannot add a default template argument to the definition of a member of a class template %select{template type|non-type template|template template}0 parameter%select{| pack}1 conflicts with previous %select{template type|non-type template|template template}0 parameter%select{ pack|}1 nested name specifier '%0' for declaration does not refer into a class, class template or class template partial specialization recursive template instantiation exceeded maximum depth of %0 explicit specialization of %0 in class scope cannot declare an explicit specialization in a friend explicit specialization of %0 in function scope %select{class template|class template partial|variable template|variable template partial|function template|member function|static data member|member class|member enumeration}0 specialization of %1 must originally be declared in namespace %2 %select{class template|class template partial|variable template|variable template partial|function template|member function|static data member|member class|member enumeration}0 specialization of %1 must originally be declared in the global scope default argument not permitted on an explicit %select{instantiation|specialization}0 of function %1 extraneous template parameter list in template specialization or out-of-line template definition template specialization declaration cannot be a friend template specialization requires 'template<>' template specialization or definition requires a template parameter list corresponding to the nested type %0 %select{class template|class template partial|variable template|variable template partial|function template|member function|static data member|member class|member enumeration}0 specialization of %1 must occur at global scope %select{class template|class template partial|variable template|variable template partial|function template|member function|static data member|member class|member enumeration}0 specialization of %1 not in a namespace enclosing %2 can only provide an explicit specialization for a class template, function template, variable template, or a member function, static data member, %select{or member class|member class, or member enumeration}0 of a class template extraneous 'template<>' in declaration of %0 %1 template template parameter must have its own template parameters a typedef cannot be a template cannot declare a class template with no name extraneous 'template<>' in declaration of variable %0 tentative definition has type %0 that is never completed 'this' cannot be %select{implicitly |}0captured in this context 'this' cannot be explicitly captured when the capture default is '=' 'this' cannot be%select{| implicitly}0 used in a static member function declaration initializer for thread-local variable must be a constant expression '%0' variables must have global storage thread-local declaration of %0 follows non-thread-local declaration type of thread-local variable has non-trivial destruction thread-local declaration of %0 with %select{static|dynamic}1 initialization follows declaration with %select{dynamic|static}1 initialization thread-local storage is not supported for the current target cannot throw an object of abstract type %0 cannot throw object of incomplete type %0 cannot throw pointer to object of incomplete type %0 alignment (%0) of thread-local variable %1 is greater than the maximum supported alignment (%2) for a thread-local variable on this target only one element declaration is allowed trailing return type may not be nested within parentheses function with trailing return type must specify return type 'auto', not %0 %0 cannot be defined in a type alias template %0 cannot be defined in a condition types may not be defined in a for range declaration %0 cannot be defined in a parameter type %0 cannot be defined in the result type of a function %0 cannot be defined in a type specifier type of property %0 in class extension does not match property type in primary class use of type %0 requires %1 extension to be enabled 'type_tag_for_datatype' attribute requires the initializer to be an %select{integer|integral}0 constant expression 'type_tag_for_datatype' attribute requires the initializer to be an %select{integer|integral}0 constant expression that can be represented by a 64 bit integer address of %select{bit-field|vector element|property expression|register variable}0 requested taking the address of a destructor taking the address of a temporary object of type %0 conversion %diff{from $ to $|between types}0,1 is ambiguous cannot assign to 'self' outside of a method in the init family cannot assign to 'self' in a class method arithmetic on a pointer to an incomplete type %0 fast enumeration variables cannot be modified in ARC by default; declare the variable __strong to allow this array type %0 is not assignable %select{cannot assign to return value because function %1 returns a const value|cannot assign to variable %1 with const-qualified type %2|cannot assign to %select{non-|}1static data member %2 with const-qualified type %3|cannot assign to non-static data member within const member function %1|read-only variable is not assignable}0 can't apply bitwise operation to non-integral vectors (%0) value of type %0 is not contextually convertible to 'bool' ordered compare requires two args of floating point type%diff{ ($ and $)|}0,1 floating point classification requires argument of floating point type (passed in %0) called object type %0 is not a function or function pointer too few %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected %1, have %2 too few %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected at least %1, have %2 too few %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, at least argument %1 must be specified too few %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected at least %1, have %2; did you mean %3? too few %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, single argument %1 was not specified too few %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected %1, have %2; did you mean %3? too many %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected %1, have %2 too many %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected at most %1, have %2 too many %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected at most single argument %1, have %2 arguments too many %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected at most %1, have %2; did you mean %3? too many %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected single argument %1, have %2 arguments too many %select{|||execution configuration }0arguments to %select{function|block|method|kernel function}0 call, expected %1, have %2; did you mean %3? cast to incomplete type %0 cast to union type from type %0 not present in union '__builtin_choose_expr' requires a constant expression comparison of distinct block types%diff{ ($ and $)|}0,1 comparison of distinct pointer types%diff{ ($ and $)|}0,1 equality comparison between function pointer and void pointer (%0 and %1) used type %0 where integer or floating point type is required used type %0 where floating point type is not allowed used type %0 where arithmetic or pointer type is required incompatible operand types%diff{ ($ and $)|}0,1 non-pointer operand type %0 incompatible with %select{NULL|nullptr}1 %select{%diff{assigning to $ from incompatible type $|assigning to type from incompatible type}0,1|%diff{passing $ to parameter of incompatible type $|passing type to parameter of incompatible type}0,1|%diff{returning $ from a function with incompatible result type $|returning type from a function with incompatible result type}0,1|%diff{converting $ to incompatible type $|converting type to incompatible type}0,1|%diff{initializing $ with an expression of incompatible type $|initializing type with an expression of incompatible type}0,1|%diff{sending $ to parameter of incompatible type $|sending type to parameter of incompatible type}0,1|%diff{casting $ to incompatible type $|casting type to incompatible type}0,1}2%select{|; dereference with *|; take the address with &|; remove *|; remove &}3%select{|: different classes%diff{ ($ vs $)|}5,6|: different number of parameters (%5 vs %6)|: type mismatch at %ordinal5 parameter%diff{ ($ vs $)|}6,7|: different return type%diff{ ($ vs $)|}5,6|: different qualifiers (%select{none|const|restrict|const and restrict|volatile|const and volatile|volatile and restrict|const, volatile, and restrict}5 vs %select{none|const|restrict|const and restrict|volatile|const and volatile|volatile and restrict|const, volatile, and restrict}6)}4 incompatible block pointer types %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2 value of type %0 is not implicitly convertible to %1 conversion from %0 to %1 is not allowed in a converted constant expression conversion from %0 to %1 in converted constant expression would bind reference to a temporary variable has incomplete type %0 support for type '__float128' is not yet implemented conversion function %diff{from $ to $|between types}0,1 invokes a deleted function vector is not assignable (contains duplicate components) used type %0 where integer is required operand of type %0 where arithmetic or pointer type is required expression is not assignable fields must have a constant size: 'variable length array in structure' extension will never be supported cannot %select{decrement|increment}1 value of type %0 %select{%diff{assigning $ to $|assigning to different types}1,0|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2 changes address space of pointer %select{%diff{assigning $ to $|assigning to different types}1,0|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2 changes retain/release properties of pointer definition of variable with array type needs an explicit size or an initializer incomplete definition of type %0 incomplete type %0 is not assignable indirection requires pointer operand (%0 invalid) cannot take the address of an rvalue of type %0 extra '&' taking address of overloaded function invalid operands to binary expression (%0 and %1) pointer to function type %0 may not be 'restrict' qualified restrict requires a pointer or reference (%0 is invalid) restrict requires a pointer or reference instance variables must have a constant size assignment to cast is illegal, lvalue casts are not supported member reference type %0 is not a pointer %0 does not have a member named %1 %0 does not have a member named %1; did you mean %2? member reference base type %0 is not a structure or union member reference type %0 is %select{a|not a}1 pointer; did you mean to use '%select{->|.}1'? cannot refer to type member %0 in %1 with '%select{.|->}2' cannot refer to member %0 in %1 with '%select{.|->}2' %diff{return type $ must match previous return type $|return type must match previous return type}0,1 when %select{block literal|lambda expression}2 has unspecified explicit return type array size is negative non-object type %0 is not assignable no viable conversion%select{%diff{ from $ to $|}1,2|%diff{ from returned value of type $ to function return type $|}1,2}0 no viable conversion%diff{ from $ to incomplete type $|}0,1 %select{comparison between %diff{ ($ and $)|}0,1|arithmetic operation with operands of type %diff{ ($ and $)|}0,1|conditional operator with the second and third operands of type %diff{ ($ and $)|}0,1}2 which are pointers to non-overlapping address spaces arithmetic on%select{ a|}0 pointer%select{|s}0 to%select{ the|}2 function type%select{|s}2 %1%select{| and %3}2 arithmetic on%select{ a|}0 pointer%select{|s}0 to void illegal storage class on file-scoped variable illegal storage class on function statement requires expression of integer type (%0 invalid) statement requires expression of scalar type (%0 invalid) %diff{$ and $ are not pointers to compatible types|pointers to incompatible types}0,1 array subscript is not an integer subscripted value is not an array, pointer, or vector invalid argument type %0 to unary expression vector operands do not have the same number of elements (%0 and %1) cannot convert between vector values of different size (%0 and %1) cannot convert between vector and non-scalar values (%0 and %1) zero-length arrays are not permitted in C++ unsupported: typedef changes linkage of anonymous type, but linkage was already computed typedef member %0 cannot be a bit-field typedef name must be an identifier missing 'typename' prior to dependent type name '%0%1' no type named %0 in %1 no type named 'type' in %0; 'enable_if' cannot be used to disable this declaration typename specifier refers to non-type member %0 in %1 typename specifier refers to a dependent using declaration for a value %0 in %1 %0 is unavailable %0 is unavailable in ARC %0 is unavailable: %1 %0 has unknown return type; cast the call to its declared return type no known method %select{%objcinstance1|%objcclass1}0; cast the message send to the method's return type %0 has unknown type; cast it to its declared type to use it declaration of %0 is missing in %1 class use of undeclared label %0 definition of class %0 must be available to use Objective-C %select{array literals|dictionary literals|numeric literals|boxed expressions|string literals}1 cannot find protocol declaration for %0 cannot find protocol declaration for %0; did you mean %1? use of undeclared %0 use of undeclared %0; did you mean %1? use of undeclared identifier %0 use of undeclared identifier %0; did you mean %1? cannot find interface declaration for %0; did you mean %1? cannot find interface declaration for %0, superclass of %1 cannot find interface declaration for %0, superclass of %1; did you mean %2? cannot determine underlying type of incomplete enumeration type %0 %select{expression|base type|declaration type|data member type|bit-field size|static assertion|fixed underlying type|enumerator value|using declaration|friend declaration|qualifier|initializer|default argument|non-type template parameter type|exception type|partial specialization|__if_exists name|__if_not_exists name|lambda|block}0 contains%plural{0: an|:}1 unexpanded parameter pack%plural{0:|1: %2|2:s %2 and %3|:s %2, %3, ...}1 friends can only be classes or functions unexpected interface name %0: expected expression unexpected namespace name %0: expected expression unexpected type name %0: expected expression cannot define the implicit copy assignment operator for %0, because non-static %select{reference|const}1 member %2 cannot use copy assignment operator %select{|implicit default |inheriting }0constructor for %1 must explicitly initialize the %select{reference|const}2 member %3 unions cannot be base classes union member %0 has reference type %1 the address of a declaration with unknown type can only be cast to a pointer type function %0 with unknown type must be given a function type variable %0 with unknown type cannot be given a function type no type named %0 in %1; did you mean %select{|simply }2%3? unknown receiver %0; did you mean %1? unknown %select{type|class}1 name %0; did you mean %2? unknown type name %0 unknown type name %0; did you mean %1? must explicitly qualify name of member function when taking its address call to unsupported expression with unknown type %0 has unknown type, which is not supported for this kind of declaration cannot cast %0 to its %select{private|protected}2 base class %1 illegal redeclaration of property in class extension %0 (attribute must be 'readwrite', while its primary must be 'readonly') illegal redeclaration of 'readwrite' property in class extension %0 (perhaps you intended this to be a 'readwrite' redeclaration of a 'readonly' public property?) use of default argument to function %0 that is declared later in class %1 must use '%1' tag to refer to type %0%select{| in this scope}2 use of %0 with tag type that does not match previous declaration using declaration cannot refer to class member using declaration cannot refer to namespace target of using declaration conflicts with declaration already in scope declaration conflicts with target of using declaration already in scope using declaration cannot refer to a constructor cannot inherit constructor, already inherited constructor with the same signature %0 is not a direct base of %1, cannot inherit constructors using declaration cannot refer to a destructor cannot befriend target of using declaration using declaration refers to its own class using declaration refers into '%0', which is not a base class of %1 using declaration in class refers into '%0', which is not a class redeclaration of using decl using declaration cannot refer to a template specialization dependent using declaration resolved to type without 'typename' no namespace named %0 in %1; did you mean %select{|simply }2%3? no namespace named %0; did you mean %1? using declaration requires a qualified name 'typename' keyword used on a non-type cannot call operator __uuidof on a type with multiple GUIDs cannot call operator __uuidof on a type with no GUID CUDA device code does not support va_arg 'va_start' used in function with fixed args 'va_start' used in %select{System V|Win64}0 ABI function array types cannot be value-initialized function types cannot be value-initialized variable concept declaration must be initialized variable template partial specialization %0 cannot be redefined no variable template matches%select{| partial}0 specialization no variable template matches specialization; did you mean to use %0 as function template instead? declared type of variable concept must be 'bool' %select{variable|static data member}0 instantiated with function type %1 variable-sized object may not be initialized 'new' cannot allocate object of variably modified type %0 non-type template parameter of variably modified type %0 variably modified type %0 cannot be used as a template argument 'typeid' of variably modified type %0 CUDA device code does not support variadic functions 'vec_step' requires built-in scalar or vector type, %0 invalid %select{too many|too few}0 elements in vector initialization (expected %1 elements, have %2) unions cannot have virtual functions 'virtual' cannot be specified on member function templates 'virtual' can only appear on non-static member functions 'virtual' can only be specified inside the class definition variable length array declaration cannot have 'extern' linkage variable length array declaration cannot have 'static' storage duration variable length array declaration not allowed at file scope variable length array cannot be formed during template argument deduction variable length array of non-POD element type %0 variably modified type declaration cannot have 'extern' linkage variably modified type declaration not allowed at file scope function declaration cannot have variably modified type 'void' must be the first and only parameter if specified 'void' as parameter must not have type qualifiers sampler type cannot be used with the __local and __global address space qualifiers this builtin is only available on x86-64 targets dereferencing a __weak pointer is not allowed due to possible null value caused by race condition, assign it to strong variable first property implementation must have its declaration in the category %0 property implementation must be in a class or category implementation property implementation must have its declaration in interface %0 or one of its extensions cannot find suitable %select{getter|setter}0 for property %1 property declared in category %0 cannot be implemented in class implementation dealloc return type must be correctly specified as 'void' under ARC, instead of %0 synthesized properties %0 and %1 both claim instance variable %2 dynamic property cannot have instance variable specification instance variable %0 cannot be accessed because 'self' has been redeclared property %0 attempting to use instance variable %1 declared in super class %2 instance variable %0 accessed in class method %select{instance|class}1 method %0 not found ; did you mean %2? missing context for method declaration missing context for property implementation declaration property implementation in a category with no category declaration synthesized property %0 must either be named the same as a compatible instance variable or must explicitly name an instance variable no @interface declaration found in class messaging of %0 @synchronized requires an Objective-C object type (%0 invalid) @throw requires an Objective-C object type (%0 invalid) instance variable %0 is private type of property %0 (%1) does not match type of accessor %2 (%3) property %0 is already implemented type of property %0 (%1) does not match type of instance variable %2 (%3) synthesized properties %0 and %1 both claim setter %2 - use of this setter will cause unexpected behavior instance variable %0 is protected assigning to 'readonly' return result of an Objective-C message not allowed property of reference type is not supported @throw (rethrow) used outside of a @catch block %0 cannot use 'super' because it is a root class existing instance variable %1 for strong property %0 may not be __weak @synthesize not allowed in a category's implementation @synthesize not allowed on a class property %0 existing instance variable %1 for __weak property %0 must be __weak initializer for aggregate is not a compile-time constant anonymous types declared in an anonymous %select{struct|union}0 are an extension types declared in an anonymous %select{struct|union}0 are a Microsoft extension anonymous %select{struct|union}0 cannot be '%1' anonymous unions are a C11 extension initialization of an array %diff{of type $ from a compound literal of type $|from a compound literal}0,1 is a GNU extension parenthesized initialization of a member array is a GNU extension implicit conversion from array size expression of type %0 to %select{integral|enumeration}1 type %2 is a C++11 extension 'auto' type specifier is a C++11 extension anonymous structs are a C11 extension %select{qualifier in |static |}0array size %select{||'[*] '}0is a C99 feature flexible array members are a C99 feature cast between pointer-to-function and pointer-to-object is an extension %select{case value|enumerator value|non-type template argument|array size}0 %select{cannot be narrowed from type %2 to %3|evaluates to %2, which cannot be narrowed to type %3}1 complex initialization specifying real and imaginary components is an extension use of this statement in a constexpr %select{function|constructor}0 is a C++14 extension multiple return statements in constexpr function is a C++14 extension constexpr %select{function|constructor}0 never produces a constant expression variable declaration in a constexpr %select{function|constructor}0 is a C++14 extension type definition in a constexpr %select{function|constructor}0 is a C++14 extension 'co_return' used in a function that uses neither 'co_await' nor 'co_yield' use of the %0 attribute is a C++14 extension use of the %0 attribute is a C++1z extension default initialization of an object of const type %0%select{| without a user-provided default constructor}1 is a Microsoft extension cannot delete expression with pointer-to-'void' type %0 ISO C++11 does not allow conversion from string literal to %0 designated initializers are a C99 feature duplicate '%0' declaration specifier empty %select{struct|union}0 is a GNU extension befriending enumeration type %0 is a C++11 extension enumeration values exceed range of largest integer ISO C restricts enumerator values to range of 'int' (%0 is too %select{small|large}1) incremented enumerator value %0 is not representable in the largest integer type ambiguous use of internal linkage declaration %0 defined in multiple modules explicit conversion functions are a C++11 extension explicit instantiation of %0 that occurs after an explicit specialization will be ignored (C++11 extension) duplicate explicit instantiation of %0 ignored as a Microsoft extension qualifier in explicit instantiation of %q0 requires a template-id (a typedef is not permitted) explicit specialization cannot have a storage class expression is not an %select{integer|integral}0 constant expression; folding it to a constant is a GNU extension flexible array member %0 in otherwise empty %select{struct|interface|union|class|enum}1 is a GNU extension flexible array member %0 in otherwise empty %select{struct|interface|union|class|enum}1 is a Microsoft extension %0 may not be used as an array element due to flexible array member %0 may not be nested in a struct due to flexible array member flexible array initialization is a GNU extension flexible array member %0 in a union is a GNU extension flexible array member %0 in a union is a Microsoft extension 'begin' and 'end' returning different types (%0 and %1) is a C++1z extension ISO C forbids forward references to 'enum' types redeclaration of already-defined enum %0 is a GNU extension use of identifier %0 found via unqualified lookup into dependent bases of class templates is a Microsoft extension complex numbers are an extension in a freestanding C99 implementation unqualified friend declaration referring to type outside of the nearest enclosing namespace is a Microsoft extension; add a nested name specifier explicit specialization of %0 within class scope is a Microsoft extension anonymous structs are a GNU extension arithmetic on%select{ a|}0 pointer%select{|s}0 to%select{ the|}2 function type%select{|s}2 %1%select{| and %3}2 is a GNU extension subscript of a pointer to void is a GNU extension arithmetic on%select{ a|}0 pointer%select{|s}0 to void is a GNU extension jump from this goto statement to its label is a Microsoft extension function previously declared with an %select{explicit|implicit}0 exception specification redeclared with an %select{implicit|explicit}0 exception specification implicit declaration of function %0 is invalid in C99 implicitly declaring library function '%0' with type %1 in-class initializer for static data member of type %0 is a GNU extension in-class initializer for static data member is not a constant expression; folding it to a constant is a GNU extension ISO C++1z does not allow incrementing expression of type bool initialized lambda captures are a C++14 extension constant expression evaluates to %0 which cannot be narrowed to type %1 type %0 cannot be narrowed to %1 in initializer list non-constant-expression cannot be narrowed from type %0 to %1 in initializer list ISO C does not support '~' for complex conjugation of %0 complex integer types are a GNU extension ISO C does not support '++'/'--' on complex integer type %0 static %select{function|variable}0 %1 is used in an inline function with external linkage return type of 'main' is not 'int' ISO C++ does not allow 'main' to be used by a program too many braces around scalar initializer declaration specifier missing, defaulting to 'int' type specifier missing, defaults to 'int' ISO C90 forbids mixing declarations and code import of C++ module '%0' appears within extern "C" language linkage specification redundant #include of module '%0' appears within %1 anonymous %select{structs|unions}0 are a Microsoft extension static_cast between pointer-to-function and pointer-to-object is a Microsoft extension using the undeclared type %0 as a default template argument is a Microsoft extension non-type template argument containing a dereference operation is a Microsoft extension explicit constructor calls are a Microsoft extension forward references to 'enum' types are a Microsoft extension implicit conversion between pointer-to-function and pointer-to-object is a Microsoft extension %select{class template|class template partial|variable template|variable template partial|function template|member function|static data member|member class|member enumeration}0 specialization of %1 outside namespace enclosing %2 is a Microsoft extension template argument for template type parameter must be a type; omitted 'typename' is a Microsoft extension using declaration referring to inaccessible member '%0' (which refers to accessible member '%1') is a Microsoft compatibility extension 'mutable' on a reference type is a Microsoft extension lookup of %0 in member access expression is ambiguous; using member of %1 use of enumeration in a nested name specifier is a C++11 extension %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2 discards qualifiers in nested pointer types when type is in parentheses, array cannot have dynamic size declaration does not declare anything %select{struct|union}0 without named members is a GNU extension non-class friend type %0 is a C++11 extension 'main' is not allowed to be declared _Noreturn using extended field designator is an extension offset of on non-POD type %0 offset of on non-standard-layout type %0 replacement function %0 cannot be declared 'inline' out-of-line declaration of a member must be a definition parameter %0 was not declared, defaulting to type 'int' %diff{promoted type $ of K&R function parameter is not compatible with the parameter type $|promoted type of K&R function parameter is not compatible with parameter type}0,1 declared in a previous prototype plain '_Complex' requires a type specifier; assuming '_Complex double' predefined identifier is only valid inside function pseudo-destructors on type void are a Microsoft extension function definition with pure-specifier is a Microsoft extension redefinition of typedef %0 is a C11 feature ISO C++1z does not allow 'register' storage class specifier friend function %0 retaining previous language linkage is an extension %select{void function|void method|constructor|destructor}1 %0 should not return a value void %select{function|method|block}1 %0 should not return void expression non-void %select{function|method}1 %0 should return a value C++98 requires an accessible copy constructor for class %2 when binding a reference to a temporary; was %select{private|protected}0 no viable constructor %select{copying variable|copying parameter|returning object|throwing object|copying member subobject|copying array element|allocating object|copying temporary|initializing base subobject|initializing vector element|capturing value}0 of type %1; C++98 requires a copy constructor when binding a reference to a temporary invalid application of '%select{sizeof|alignof|vec_step}0' to a function type invalid application of '%select{sizeof|alignof|vec_step}0' to a void type '%0' is not permitted on a declaration of a type capture of '*this' by copy is a C++1z extension static_assert with no message is a C++1z extension static data member %0 in union is a C++11 extension redeclaring non-static %0 as static is a Microsoft extension string literal operator templates are a GNU extension ISO C90 does not allow subscripting non-lvalue array address non-type template argument cannot be surrounded by parentheses template argument uses local type %0 non-type template argument referring to %select{function|object}0 %1 with internal linkage is a C++11 extension template argument uses unnamed type 'template' keyword outside of a template default template arguments for a function template are a C++11 extension first declaration of %select{class template|class template partial|variable template|variable template partial|function template|member function|static data member|member class|member enumeration}0 specialization of %1 outside namespace %2 is a C++11 extension ISO C forbids taking the address of an expression of type 'void' method parameter type %diff{$ does not match super class method parameter type $|does not match super class method parameter type}0,1 C99 forbids casting nonscalar type %0 to the same type cast to union type is a GNU extension comparison of distinct pointer types (%0 and %1) uses non-standard composite pointer type %2 incompatible operand types (%0 and %1) incompatible operand types%diff{ ($ and $)|}0,1 use non-standard composite pointer type %2 pointer type mismatch%diff{ ($ and $)|}0,1 C99 forbids conditional expressions with only one void side pointer/integer type mismatch in conditional expression%diff{ ($ and $)|}0,1 %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2 discards qualifiers incompatible pointer types %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2%select{|; dereference with *|; take the address with &|; remove *|; remove &}3 %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2 converts between pointers to integer types with different sign incompatible integer to pointer conversion %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2%select{|; dereference with *|; take the address with &|; remove *|; remove &}3 incompatible pointer to integer conversion %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2%select{|; dereference with *|; take the address with &|; remove *|; remove &}3 %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2 converts between void pointer and function pointer tentative definition of variable with internal linkage has incomplete non-array type %0 ISO C++ does not allow indirection on operand of type %0 ordered comparison of function pointers (%0 and %1) ordered comparison between pointer and zero (%0 and %1) is an extension ordered comparison between pointer and integer (%0 and %1) zero size arrays are an extension typedef requires a name 'typename' occurs outside of a template use of undeclared identifier %0; unqualified lookup into dependent bases of class template %1 is a Microsoft extension unelaborated friend declaration is a C++11 extension; specify '%select{struct|interface|union|class|enum}0' to befriend %1 union member %0 has reference type %1, which is a Microsoft extension using directive refers to implicitly-defined namespace 'std' field %0 with variable sized type %1 not at the end of a struct or class is a GNU extension variable templates are a C++14 extension 'main' is not allowed to be declared variadic variable length arrays are a C99 feature variable length array folded to constant array as an extension type conversion function declared here conformance of forward class %0 to protocol %1 can not be confirmed constrained by %select{|implicitly }1%select{private|protected}0 inheritance here %select{|implicitly }1declared %select{private|protected}0 here protected %select{constructor|destructor}0 can only be used to %select{construct|destroy}0 a base class subobject must name member using the type of the current context %0 can only access this member on an object of type %0 add a pair of parentheses to declare a variable candidate function made ineligible by enable_if declared with %0 attribute here allocated with 'new%select{[]|}0' here lookup in the object type %0 refers here lookup from the current scope refers here candidate found by name lookup is %q0 member found by ambiguous name lookup because of ambiguity in conversion %diff{of $ to $|between types}0,1 use __bridge to convert directly (no change in ownership) use %select{__bridge_retained|CFBridgingRetain call}1 to make an ARC object available as a +1 %0 use %select{__bridge_transfer|CFBridgingRelease call}1 to transfer ownership of a +1 %0 into ARC use __bridge with C-style cast to convert directly (no change in ownership) use __bridge_retained with C-style cast to make an ARC object available as a +1 %0 use __bridge_transfer with C-style cast to transfer ownership of a +1 %0 into ARC field has non-trivial ownership qualification declaration uses type that is ill-formed in ARC declaration in interface is not in the '%select{alloc|copy|init|new}0' family because %select{its result type is not an object pointer|its result type is unrelated to its receiver type}1 init method must return a type related to its receiver type declaration in interface block will be retained by %select{the captured object|an object strongly retained by the captured object}0 also accessed here declaration uses __weak, but ARC is disabled declaration uses __weak, which the current deployment target does not support array %0 declared here conversion to %select{integral|enumeration}0 type %1 declared here constraint '%0' is already present here use constraint modifier "%0" type %0 is incomplete setter and getter must both be synthesized, or both be user defined,or the property must be nonatomic previous overload of function is here property should be changed to be readwrite %0 has been explicitly marked %select{unavailable|deleted|deprecated|partial}1 here explicitly cast the pointer to silence this warning base class %0 specified here bit-field is declared here did you mean to use __block %0? %0 declared here callee declares array parameter as static here constructor cannot be inherited declaration missing '[[carries_dependency]]' attribute is here cast expression to void to silence warning class is declared here explicitly declare getter %objcinstance0 with '%1' to return an 'unowned' object parameter of the 'collapse' clause compatible type %0 specified here place parentheses around the assignment to silence this warning use '==' to turn this assignment into an equality comparison use '!=' to turn this compound assignment into an inequality comparison conflicting attribute is here conflicting %0 here previous return statement is here member not initialized by constructor virtual base class declared here constructor declared here use 'static' to give inline function %0 internal linkage conflicting __device__ function declared here this declaration is not a prototype; add 'void' to make it a prototype for a zero-parameter function function is a coroutine due to use of '%select{co_await|co_yield|co_return}0' here in instantiation of default argument for '%0' required here default argument declared here in instantiation of default function argument expression for '%0' required here %0 defined here conversion to pointer type %0 qualify call to silence this warning %select{copy|move}0 assignment operator of %1 is implicitly deleted because field %2 is of %select{reference|const-qualified}4 type %3 copy constructor of %0 is implicitly deleted because field %1 is of rvalue reference type %2 copy %select{constructor|assignment operator}0 is implicitly deleted because %1 has a user-declared move %select{constructor|assignment operator}2 default constructor of %0 is implicitly deleted because all %select{data members|data members of an anonymous union member}1 are const-qualified default constructor of %0 is implicitly deleted because field %1 of %select{reference|const-qualified}3 type %2 would not be initialized virtual destructor requires an unambiguous, accessible 'operator delete' %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}0 of %1 is implicitly deleted because %select{base class %3|%select{||||variant }4field %3}2 has %select{no|a deleted|multiple|an inaccessible|a non-trivial}4 %select{%select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}0|destructor}5%select{||s||}4 template parameter is used in default argument declared here must qualify identifier to find this declaration in dependent base class type %0 is declared here due to '%0' being dllexported%select{|; try compiling in C++11 mode}1 element %0 also has value %1 put the semicolon on a separate line to silence this warning remove parentheses to declare a variable change this ',' to a ';' to call %0 replace parentheses with an initializer to declare a variable jump enters lifetime of block which captures a destructible C++ object jump enters lifetime of block which strongly captures a variable jump enters lifetime of block which weakly captures a variable enum %0 was explicitly specialized here remove extraneous parentheses around the comparison to silence this warning use '=' to turn this equality comparison into an assignment declared here%select{ in module '%1'|}0 place parentheses around comparison expression to evaluate it first use '%0' instead jump exits scope of __block variable jump exits lifetime of block which captures a destructible C++ object jump exits lifetime of block which strongly captures a variable jump exits lifetime of block which weakly captures a variable jump exits scope of variable with __attribute__((cleanup)) jump exits catch block jump exits try block jump exits scope of variable with non-trivial destructor jump exits autoreleasepool block jump exits @catch block jump exits @finally block jump exits scope of __strong variable jump exits @synchronized block jump exits @try block jump exits scope of __weak variable jump exits __except block jump exits __finally block jump exits __try block jump exits scope of lifetime-extended temporary with non-trivial destructor explicit instantiation candidate function template here %0 explicit instantiation definition is here explicit instantiation refers here while substituting explicitly-specified template arguments into function template %0 %1 'template<>' header not required for explicitly-specialized class %0 declared here declared %select{in global scope|with C language linkage}0 here did you forget ';'? field designator refers here final overrider of %q0 in %1 initialized flexible array member %0 is here selected '%select{begin|end}0' %select{function|template }1%2 with iterator type %3 in implicit call to 'operator%select{!=|*|++}0' for iterator of type %1 did you mean to use '%0'? treat the string as an argument to avoid this format string is defined here forward declaration of class here forward declaration of template entity is here found near match '%0' did you mean %0? while substituting deduced template arguments into function template %0 %1 in instantiation of function template specialization %q0 requested here function template matches specialization %0 suffix with parentheses to turn this into a function call prefix with the address-of operator to silence this warning or because setter is declared here, but no getter method %0 is found inline assembly label %0 declared here Guarded_by declared here. hidden overloaded virtual function %q0 declared here%select{|: different classes%diff{ ($ vs $)|}2,3|: different number of parameters (%2 vs %3)|: type mismatch at %ordinal2 parameter%diff{ ($ vs $)|}3,4|: different return type%diff{ ($ vs $)|}2,3|: different qualifiers (%select{none|const|restrict|const and restrict|volatile|const and volatile|volatile and restrict|const, volatile, and restrict}2 vs %select{none|const|restrict|const and restrict|volatile|const and volatile|volatile and restrict|const, volatile, and restrict}3)}1 type declaration hidden declaration hides type field of illegal %select{type|pointer type}0 %1 declared here class implementation is declared here when implemented by class %0 implicit %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}0 inferred target collision: call to both %select{__device__|__global__|__host__|__host__ __device__}1 and %select{__device__|__global__|__host__|__host__ __device__}2 members %0 is an implicit parameter explicitly defaulted function was implicitly deleted here add 'constexpr' when looking up '%select{begin|end}0' function for range expression of type %1 in implicit initialization of %select{array element %1|field %1}0 with omitted initializer in initialization of temporary of type %0 created to list-initialize this reference include the header <%0> or explicitly provide a declaration for '%1' possible target of indirect goto statement consider using __builtin_trap() or qualifying pointer with 'volatile' use '|=' to turn this inequality comparison into an or-assignment inheriting constructor for %0 first required here deleted constructor was inherited here insert an explicit cast to silence this issue insert 'break;' to avoid fall-through insert '%0;' to silence this warning add an explicit instantiation declaration to suppress this warning if %q0 is explicitly instantiated in another translation unit (skipping %0 context%s0 in backtrace; use -ftemplate-backtrace-limit=0 to see all) %select{implicit|explicit}0 instantiation first required here it delegates to instance variable is declared here lambda expression begins here implicit capture of lambda object due to conversion to block pointer here local declaration nearly matches type of %ordinal0 parameter of local declaration does not match definition%diff{ ($ vs $)|}1,2 the other acquisition of %0 '%1' is here %0 acquired here use '%0' for a bitwise operation remove constant to silence this warning add parentheses after the '!' to evaluate the comparison first add parentheses around left hand side expression to silence this warning %select{decremented|incremented}0 here change return type to 'int' remove '_Noreturn' member is declared here member %0 declared here member declaration does not match because it %select{is|is not}0 const qualified member declaration nearly matches type of %ordinal0 parameter of member declaration does not match definition%diff{ ($ vs $)|}1,2 '->' applied to return value of the operator->() declared here implicit %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}0 for %1 first required here explicitly cast the argument to size_t to silence this warning did you mean to compare the result of %0 instead? method %0 declared here compiler has implicitly changed method %0 return type method %0 is used for the forward class extern "C" language linkage specification begins here %0 begins here namespace %0 defined here consider using vld1_%0%1() to initialize a vector from memory, or vcreate_%0%1() to initialize from an integer constant consider using vld1q_%0%1() to initialize a vector from memory, or vcombine_%0%1(vcreate_%0%1(), vcreate_%0%1()) to initialize from integer constants not-yet-instantiated member is declared here %0 is not literal because it has base class %1 of non-literal type %0 is not literal because it has data member %1 of %select{non-literal|volatile}3 type %2 incomplete type %0 is not a literal type %0 is not literal because it is not an aggregate and has no constexpr constructors other than copy or move constructors %0 is not literal because it has a non-trivial destructor %0 is not literal because it has a user-provided destructor %select{struct|interface|class}0 with virtual base %plural{1:class|:classes}1 is not a literal type non-templated declaration is here because it has a default argument because type %0 has a virtual %select{member function|base class}1 because field %0 has an initializer because no %select{<<ERROR>>|constructor|constructor|assignment operator|assignment operator|<<ERROR>>}2 can be used to %select{<<ERROR>>|copy|move|copy|move|<<ERROR>>}2 %select{base class|field|an object}0 of type %3 because %select{base class of |field of |}0type %1 has no default constructor because type %0 has a member with %select{no|no|__strong|__weak|__autoreleasing}1 ownership because its parameter is %diff{of type $, not $|of the wrong type}2,3 because the function selected to %select{construct|copy|move|copy|move|destroy}2 %select{base class|field}0 of type %1 is not trivial because %select{base class of |field of |}0type %1 has a user-provided %select{default constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}2 because it is a variadic function destructor for %0 is not trivial because it is virtual declaration missing '[[noreturn]]' attribute is here %0 should be declared prior to the call site%select{| or in %2| or in an associated namespace of one of its arguments}1 use nullability type specifier %0 to affect the innermost pointer type of %1 '%0' declared here method marked as designated initializer of the class here use 'isEqual:' instead %select{first|second|third}0 parameter has unexpected type %1 (should be %2) method returns unexpected type %0 (should be an object type) add a super class to fix this problem type parameter %0 declared here %select{expected assignment expression|expected compound statement|expected exactly two expression statements|expected in right hand side of the first expression}0 '%0' clause used here %select{expected an expression statement|expected built-in assignment operator|expected expression of scalar type|expected lvalue expression}0 %select{expected an expression statement|expected built-in binary or unary operator|expected unary decrement/increment operation|expected expression of scalar type|expected assignment expression|expected built-in binary operator|expected one of '+', '*', '-', '/', '&', '^', '%|', '<<', or '>>' built-in operations|expected in right hand side of expression}0 as specified in %select{'collapse'|'ordered'|'collapse' and 'ordered'}0 clause%select{||s}0 %select{|previous }0'hint' clause with value '%1' %select{|previous }0directive with no 'hint' clause specified defined as %0 implicitly determined as %0 loop step is expected to be %select{negative|positive}0 due to this condition %select{statement|directive}0 outside teams construct here nested teams construct here 'nowait' clause is here 'ordered' clause with specified parameter mappable type cannot be polymorphic %select{static data member is predetermined as shared|variable with static storage duration is predetermined as shared|loop iteration variable is predetermined as private|loop iteration variable is predetermined as linear|loop iteration variable is predetermined as lastprivate|constant variable is predetermined as shared|global variable is predetermined as shared|non-shared variable in a task construct is predetermined as firstprivate|variable with automatic storage duration is predetermined as private}0%select{|; perhaps you forget to enclose 'omp %2' directive into a parallel or another task region?}1 previous 'critical' region starts here '%0' clause is specified here previous clause with directive name modifier specified here previously referenced here mappable type cannot contain static members predetermined as a firstprivate in a task construct here use -foperator-arrow-depth=N to increase 'operator->' limit 'operator->' declared here produces an object of type %0 (skipping %0 'operator->'%s0 in backtrace) overridden method is here overridden virtual function is here built-in candidate %0 candidate %select{function|function|constructor|function |function |constructor |is the implicit default constructor|is the implicit copy constructor|is the implicit move constructor|is the implicit copy assignment operator|is the implicit move assignment operator|is an inherited constructor}0%1%select{| has different class%diff{ (expected $ but has $)|}3,4| has different number of parameters (expected %3 but has %4)| has type mismatch at %ordinal3 parameter%diff{ (expected $ but has $)|}4,5| has different return type%diff{ ($ expected but has $)|}3,4| has different qualifiers (expected %select{none|const|restrict|const and restrict|volatile|const and volatile|volatile and restrict|const, volatile, and restrict}3 but found %select{none|const|restrict|const and restrict|volatile|const and volatile|volatile and restrict|const, volatile, and restrict}4)}2 candidate %select{function|function|constructor|function|function|constructor|constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0 %select{|template }1not viable: requires%select{ at least| at most|}2 %3 argument%s3, but %4 %plural{1:was|:were}4 provided candidate %select{function|function|constructor|function|function|constructor|constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0 %select{|template }1not viable: %select{requires at least|allows at most single|requires single}2 argument %3, but %plural{0:no|:%4}4 arguments were provided candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: %select{%ordinal6|'this'}5 argument (%2) is in address space %3, but parameter must be in address space %4 candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: cannot implicitly convert argument %diff{of type $ to $|type to parameter type}2,3 for %select{%ordinal5 argument|object argument}4 under ARC candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: cannot %select{convert from|convert from|bind}2 %select{base class pointer|superclass|base class object of type}2 %3 to %select{derived class pointer|subclass|derived class reference}2 %4 for %ordinal5 argument candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: no known conversion %diff{from $ to $|from argument type to parameter type}2,3 for %select{%ordinal5 argument|object argument}4%select{|; dereference the argument with *|; take the address of the argument with &|; remove *|; remove &}6 candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: cannot convert argument of incomplete type %diff{$ to $|to parameter type}2,3 for %select{%ordinal5 argument|object argument}4%select{|; dereference the argument with *|; take the address of the argument with &|; remove *|; remove &}6 candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: %ordinal4 argument (%2) would lose %select{const|restrict|const and restrict|volatile|const and volatile|volatile and restrict|const, volatile, and restrict}3 qualifier%select{||s||s|s|s}3 candidate %select{|function|||function|||||function (the implicit copy assignment operator)|function (the implicit move assignment operator)|}0 not viable: 'this' argument has type %2, but method is not marked %select{const|restrict|const or restrict|volatile|const or volatile|volatile or restrict|const, volatile, or restrict}3 candidate template ignored: failed template argument deduction candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: %select{%ordinal6|'this'}5 argument (%2) has %select{no|__weak|__strong}3 ownership, but parameter has %select{no|__weak|__strong}4 ownership candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: cannot convert initializer list argument to %3 candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: expects an l-value for %select{%ordinal3 argument|object argument}2 candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: no overload of %3 matching %2 for %ordinal4 argument candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 not viable: %select{%ordinal6|'this'}5 argument (%2) has %select{no|__unsafe_unretained|__strong|__weak|__autoreleasing}3 ownership, but parameter has %select{no|__unsafe_unretained|__strong|__weak|__autoreleasing}4 ownership candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0 not viable: call to %select{__device__|__global__|__host__|__host__ __device__|invalid}1 function from %select{__device__|__global__|__host__|__host__ __device__|invalid}2 function candidate template ignored: deduced type %diff{$ of %ordinal0 parameter does not match adjusted type $ of argument|of %ordinal0 parameter does not match adjusted type of argument}1,2%3 candidate %select{function|function|constructor|function |function |constructor |constructor (the implicit default constructor)|constructor (the implicit copy constructor)|constructor (the implicit move constructor)|function (the implicit copy assignment operator)|function (the implicit move assignment operator)|constructor (inherited)}0%1 has been %select{explicitly made unavailable|explicitly deleted|implicitly deleted}2 candidate template ignored: disabled by %0%1 candidate disabled: %0 candidate template ignored: invalid explicitly-specified argument for template parameter %0 candidate template ignored: invalid explicitly-specified argument for %ordinal0 template parameter candidate template ignored: couldn't resolve reference to overloaded function %0 candidate address cannot be taken because parameter %0 has pass_object_size attribute candidate %select{constructor|template}0 ignored: instantiation %select{takes|would take}0 its own class type by value candidate template ignored: couldn't infer template argument %0 candidate template ignored: deduced conflicting %select{types|values|templates}0 for parameter %1%diff{ ($ vs. $)|}2,3 inherited from here candidate template ignored: substitution exceeded maximum template instantiation depth candidate template ignored: could not match %diff{$ against $|types}0,1 candidate template ignored: could not match %q0 against %q1 candidate template ignored: substitution failure%0%1 candidate template ignored: cannot deduce a type for %0 that would make %2 equal %1 conversion candidate of type %0 remaining %0 candidate%s0 omitted; pass -fshow-overloads=all to show them declared with index %0 here passing argument to parameter here passing argument to parameter %0 here parameter pack %0 declared here parameter of type %0 is declared here explicitly redeclare %0 to silence this warning during template argument deduction for class template partial specialization %0 %1 partial specialization matches %0 non-deducible template parameter %0 inline function performs a conversion which is forbidden in ARC possible target for call place parentheses around the %0 expression to evaluate it first place parentheses around the '?:' expression to evaluate it first place parentheses around the '%0' expression to silence this warning previous declaration of class template partial specialization %0 is here previously declared '%1' here previous attribute is here %0 is a builtin with type %1 previous explicit instantiation is here previous initialization %select{|with side effects }0is here%select{| (side effects may not occur at run time)}0 previous inheritance model specified here previously defined as an alias for %0 previous template specialization is here did you mean to call the %0 method? while substituting prior template arguments into %select{non-type|template}0 template parameter%1 %2 use __attribute__((visibility("hidden"))) attribute instead property %0 is declared %select{deprecated|unavailable|partial}1 here property declared here property synthesized here jump bypasses setup of __block variable jump bypasses initialization of variable with __attribute__((cleanup)) jump bypasses initialization of catch block jump bypasses initialization of try block jump bypasses auto release push of @autoreleasepool block jump bypasses initialization of @catch block jump bypasses initialization of @finally block jump bypasses initialization of __strong variable jump bypasses initialization of @synchronized block jump bypasses initialization of @try block jump bypasses initialization of __weak variable jump bypasses initialization of __except block jump bypasses initialization of __finally block jump bypasses initialization of __try block jump bypasses variable initialization jump bypasses initialization of non-POD variable jump bypasses variable with a non-trivial destructor jump bypasses initialization of variable length array jump bypasses initialization of VLA type alias jump bypasses initialization of VLA typedef protocol is declared here protocol %0 has no definition protocol method is here it could also be property of type %0 declared here qualified call to %0::%1 is treated as a virtual call to %1 due to -fapple-kext unimplemented pure virtual method %0 in %1 receiver is instance of class declared here receiver expression is here receiver is treated with 'id' type for purpose of method lookup %select{reference|pointer}0 member declared here member with reference subobject declared here binding reference variable %0 here %select{const|reference}0 member %1 will never be initialized %0 returns a reference class template declared here use 'static_cast' to adjust the pointer correctly while %select{upcasting|downcasting}0 %select{overridden|current}0 method is explicitly declared 'instancetype'%select{| and is expected to return an instance of its class type}0 %select{overridden|current}0 method is part of the '%select{|alloc|copy|init|mutableCopy|new|autorelease|dealloc|finalize|release|retain|retainCount|self}1' method family%select{| and is expected to return an instance of its class type}0 %select{class|instance}0 method %1 is assumed to return an instance of its receiver type (%2) overridden method returns an instance of its class type remove the call to '%0' since unsigned values cannot be negative remove std::move call here use function '%0' instead %select{function|method|block}0 has been explicitly marked sentinel here attempt to specialize declaration here explicitly specialized declaration is here use array indexing to silence this warning change size argument to be the size of the destination change the argument to be the free space in the destination buffer minus the terminating null byte did you mean %select{struct|interface|class}0 here? class with specified objc_requires_property_definitions attribute is declared here surrounding namespace with visibility attribute ends here surrounding namespace with visibility attribute starts here conversion to %select{integral|enumeration}0 type %1 non-type template argument refers to %select{function|object}0 here non-type template argument refers here template argument refers to function template %0, here class template %0 was explicitly specialized here in instantiation of template class %0 requested here class template %0 was instantiated here template is declared here %select{function template|class template|variable template|type alias template|template template parameter}0 %1 declared here while checking a default template argument used here in instantiation of enumeration %q0 requested here in instantiation of exception specification for %0 requested here in instantiation of member class %0 requested here in instantiation of member function %q0 requested here template non-type parameter has a different type %0 in template argument previous non-type template parameter with type %0 is here in instantiation of default member initializer %q0 requested here template parameter has a different kind in template argument template parameter is declared here %select{too few|too many}0 template parameters in template template argument previous default template argument defined here previous %select{template type|non-type template|template template}0 parameter%select{| pack}1 declared here %select{template type|non-type template|template template}0 parameter%select{| pack}1 does not match %select{template type|non-type template|template template}0 parameter%select{ pack|}1 in template argument previous template %select{declaration|template parameter}0 is here use -ftemplate-depth=N to increase recursive template instantiation depth in instantiation of static data member %q0 requested here in instantiation of template type alias %0 requested here unnamed type used in template argument was declared here in instantiation of variable template specialization %q0 requested here Thread warning in function '%0' %select{alignment|size}0 of first field is %1 bits %0 is incomplete %select{function %1 which returns const-qualified type %2 declared here|variable %1 declared const here|%select{non-|}1static data member %2 declared const here|member function %q1 is declared const here}0 did you mean to use '.' instead? use a tag name here to establish linkage prior to definition referenced member %0 is declared here remove the %select{'%1' if its condition|condition if it}0 is always %select{false|true}2 during field initialization in %select{this|the implicit default}0 constructor uninitialized reference member is here %select{uninitialized use occurs|variable is captured by block}0 here silence by adding parentheses to mark code as explicitly dead use non-reference type %0 use reference type %0 to prevent copying use 'thread_local' to allow this use non-reference type %0 to keep the copy or type %1 to prevent copying used in initialization here implicit default constructor suppressed by user-declared constructor %select{|previous }0using declaration use %select{an alias declaration|a typedef declaration|a reference}0 instead conflicting declaration conflicting constructor previous constructor previously inherited here constructor declared with ellipsis here add 'typename' to treat this using declaration as a type in value-initialization of type %0 here variable %0 is declared here initialize the variable %0 to silence this warning previous declaration of variable template partial specialization is here %select{%1 is a virtual base class of base class %2 declared here|virtual base class %1 declared here}0 which delegates to detected while default synthesizing properties in class implementation within field of type %0 declared here non-virtual member function marked '%0' hides virtual member %select{function|functions}1 only virtual member functions can be marked '%0' absolute value function %0 given an argument of type %1 but has parameter of type %2 which may cause truncation of value abstract class is marked '%select{final|sealed}0' initializer for virtual base class %0 of abstract class %1 will never be used access declarations are deprecated; use using declarations instead type of property %0 does not match type of accessor %1 acquiring %0 '%1' requires negative capability '%2' %0 '%1' must be acquired before '%2' Cycle in acquired_before/after dependencies, starting with '%0' operator '%0' has lower precedence than '%1'; '%1' will be evaluated first reference cannot be bound to dereferenced null pointer in well-defined C++ code; pointer may be assumed to always convert to true reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to %select{true|false}0 %select{alias|ifunc}2 will always resolve to %0 even if weak definition of %1 is overridden %select{alias|ifunc}1 will not be in section '%0' but in the same section as the %select{aliasee|resolver}2 width of anonymous bit-field (%0 bits) exceeds width of its type; value will be truncated to %1 bit%s1 ARC %select{unused|__unsafe_unretained|__strong|__weak|__autoreleasing}0 lifetime qualifier on return type is ignored assigning %select{array literal|dictionary literal|numeric literal|boxed expression|<should not happen>|block literal}0 to a weak %select{property|variable}1; object will be released after assignment %select{destination for|source of}0 this %1 call is a pointer to ownership-qualified type %2 performSelector may cause a leak because its selector is unknown weak %select{variable|property|implicit property|instance variable}0 %1 may be accessed multiple times in this %select{function|method|block|lambda}2 and may be unpredictably set to nil; assign to a strong variable to keep the object alive weak %select{variable|property|implicit property|instance variable}0 %1 is accessed multiple times in this %select{function|method|block|lambda}2 but may be unpredictably set to nil; assign to a strong variable to keep the object alive capturing %0 strongly in this block is likely to lead to a retain cycle assigning retained object to %select{weak|unsafe_unretained}0 %select{property|variable}1; object will be released after assignment assigning retained object to unsafe property; object will be released after assignment method parameter of type %0 with no explicit ownership array index %0 is past the end of the array (which contains %1 element%s2) array index %0 is before the beginning of the array ignored asm label '%0' on automatic variable value size does not match register size specified by the constraint and modifier the argument to %0 has side effects that will be discarded memory order argument to atomic operation is invalid writable atomic property %0 cannot pair a synthesized %select{getter|setter}1 with a user defined %select{getter|setter}2 @protocol is using a forward protocol declaration of %0 'abi_tag' attribute on %select{non-inline|anonymous}0 namespace ignored consumed analysis attribute is attached to member of class '%0' which isn't marked as consumable attribute %0 after definition is ignored %0 attribute parameter %1 is negative and will be ignored propagating dll attribute to %select{already instantiated|explicitly specialized}0 base class template without dll attribute is not supported redeclaration of %q0 should not add %q1 attribute explicit instantiation declaration should not be 'dllexport' definition of dllimport static field %0 attribute can only be applied to instance variables or properties %0 attribute ignored %0 attribute ignored on inline function '%0' attribute cannot be specified on a definition 'nonnull' attribute applied to function with no pointer arguments 'nonnull' attribute when used on parameters takes no arguments %0 attribute ignored when parsing type 'packed' attribute was ignored on bit-fields with single-byte alignment in older versions of GCC and Clang %0 attribute only applies to a pointer or reference (%1 is invalid) attribute declaration must precede definition target does not support 'protected' visibility; using 'default' %0 attribute only applies to return values that are pointers %0 attribute only applies to return values that are pointers or references 'sentinel' attribute requires named arguments 'sentinel' attribute only supported for variadic %select{functions|blocks}0 %0 attribute argument not supported: %1 unknown visibility %0 attribute %0 cannot be applied to %select{functions|Objective-C method}1 without return value __weak attribute cannot be specified on a field declaration __weak attribute cannot be specified on an automatic variable when ARC is not enabled property is assumed atomic when auto-synthesizing the property readonly IBOutlet property %0 when auto-synthesized may not work correctly with 'nib' loader 'auto' storage class specifier is redundant and incompatible with C++11 auto property synthesis will not synthesize property %0 declared in protocol %1 'auto' deduced as 'id' in declaration of %0 auto property synthesis will not synthesize property %0; it will be implemented by its superclass, use @dynamic to acknowledge intention autosynthesized property %0 will use %select{|synthesized}1 instance variable %2, not existing instance variable %3 unknown platform %0 in availability macro feature cannot be %select{introduced|deprecated|obsoleted}0 in %1 version %2 before it was %select{introduced|deprecated|obsoleted}3 in version %4; attribute ignored cast from function call of type %0 to non-matching type %1 receiver type %0 is not 'id' or interface pointer, consider casting it to 'id' base class %0 is uninitialized when used here to access %q1 binding reference member %0 to stack allocated parameter %1 binding reference %select{|subobject of }1member %0 to a temporary value width of bit-field %0 (%1 bits) exceeds the width of its type; value will be truncated to %2 bit%s2 '%0' within '%1' attribute %0 ignored, because it cannot be applied to omitted return type '%0' qualifier on omitted return type %1 has no effect switch condition has boolean value braces around scalar initializer 'break' is bound to loop, GCC binds it to switch use of unknown builtin %0 call to pure virtual member function %0 has undefined behavior; overrides of %0 in subclasses are not available in the %select{constructor|destructor}1 of %2 too %select{few|many}0 arguments in call to %1 cannot pass object of %select{non-POD|non-trivial}0 type %1 through variadic %select{function|block|method|constructor}2; call will abort at runtime cannot resolve lock expression empty case range specified overflow converting case value to switch condition type (%0 to %1) cast from %0 to %1 increases required alignment from %2 to %3 nonnull %select{function call|parameter}0 '%1' will evaluate to 'true' on first encounter cast of type %0 to %1 is deprecated; use sel_getName instead cast from %0 to %1 drops %select{const and volatile qualifiers|const qualifier|volatile qualifier}2 cast from %0 to %1 must have all intermediate pointers const qualified to be safe category is implementing a method which will also be implemented by its primary class calling convention %0 ignored for this target %0 calling convention ignored on constructor/destructor %0 calling convention ignored on variadic function cannot refer to a non-static member from the handler of a %select{constructor|destructor}0 function try block input conversion stopped due to an input byte that does not belong to the input codeset UTF-8 class method %objcclass0 not found (return type defaults to 'id') class method %objcclass0 not found (return type defaults to 'id'); did you mean %objcclass2? GCC does not allow the 'cleanup' attribute argument to be anything other than a simple identifier collection expression type %0 may not respond to %1 possible misuse of comma operator here %select{self-|array }0comparison always evaluates to %select{false|true|a constant}1 bitwise comparison always evaluates to %select{false|true}0 comparison of two values with different enumeration types%diff{ ($ and $)|}0,1 concatenated NSString literal for an NSArray expression - possibly missing a comma using the result of an assignment as a condition without parentheses conflicting distributed object modifiers on parameter type in declaration of %0 conflicting parameter types in declaration of %0%diff{: $ vs $|}1,2 conflicting distributed object modifiers on return type in declaration of %0 conflicting return type in declaration of %0%diff{: $ vs $|}1,2 conflicting variadic declaration of method and its implementation conflicting distributed object modifiers on parameter type in implementation of %0 conflicting parameter types in implementation of %0%diff{: $ vs $|}1,2 conflicting distributed object modifiers on return type in implementation of %0 conflicting return type in implementation of %0%diff{: $ vs $|}1,2 conversion function converting %0 to its base class %1 will never be used conversion function converting %0 to itself will never be used conversion function converting %0 to %1 will never be used constructor parameter %0 shadows the field %1 of %2 use of this statement in a constexpr %select{function|constructor}0 is incompatible with C++ standards before C++14 multiple return statements in constexpr function is incompatible with C++ standards before C++14 constexpr function with no return statements is incompatible with C++ standards before C++14 variable declaration in a constexpr %select{function|constructor}0 is incompatible with C++ standards before C++14 type definition in a constexpr %select{function|constructor}0 is incompatible with C++ standards before C++14 initialized lambda captures are incompatible with C++ standards before C++14 variable templates are incompatible with C++ standards before C++14 attribute %0 ignored, because it cannot be applied to a type 'constexpr' non-static member function will not be implicitly 'const' in C++14; add 'const' to avoid a change in behavior by value capture of '*this' is incompatible with C++ standards before C++1z static_assert with no message is incompatible with C++ standards before C++1z implicit conversion from array size expression of type %0 to %select{integral|enumeration}1 type %2 is incompatible with C++98 'auto' type specifier is incompatible with C++98 cast between pointer-to-function and pointer-to-object is incompatible with C++98 'constexpr' specifier is incompatible with C++98 constructor call from initializer list is incompatible with C++98 delegating constructors are incompatible with C++98 scalar initialized from empty initializer list is incompatible with C++98 befriending enumeration type %0 is incompatible with C++98 enumeration type in nested name specifier is incompatible with C++98 explicit conversion functions are incompatible with C++98 explicit instantiation of %0 that occurs after an explicit specialization is incompatible with C++98 friend declaration naming a member of the declaring class is incompatible with C++98 jump from this goto statement to its label is incompatible with C++98 jump from this indirect goto statement to one of its possible targets is incompatible with C++98 initialization of initializer_list object is incompatible with C++98 use of non-static data member %0 in an unevaluated context is incompatible with C++98 non-class friend type %0 is incompatible with C++98 %select{anonymous struct|union}0 member %1 with a non-trivial %select{constructor|copy constructor|move constructor|copy assignment operator|move assignment operator|destructor}2 is incompatible with C++98 passing object of trivial but non-POD type %0 through variadic %select{function|block|method|constructor}1 is incompatible with C++98 reference initialized from initializer list is incompatible with C++98 substitution failure due to access control is incompatible with C++98 static data member %0 in union is incompatible with C++98 jump from switch statement to this case label is incompatible with C++98 %select{copying variable|copying parameter|returning object|throwing object|copying member subobject|copying array element|allocating object|copying temporary|initializing base subobject|initializing vector element}1 of type %2 when binding a reference to a temporary would %select{invoke an inaccessible constructor|find no viable constructor|find ambiguous constructors|invoke a deleted constructor}0 in C++98 redundant parentheses surrounding address non-type template argument are incompatible with C++98 local type %0 as template argument is incompatible with C++98 use of null pointer as non-type template argument is incompatible with C++98 non-type template argument referring to %select{function|object}0 %1 with internal linkage is incompatible with C++98 unnamed type as template argument is incompatible with C++98 use of 'template' keyword outside of a template is incompatible with C++98 default template arguments for a function template are incompatible with C++98 %select{class template|class template partial|variable template|variable template partial|function template|member function|static data member|member class|member enumeration}0 specialization of %1 outside namespace %2 is incompatible with C++98 use of 'typename' outside of a template is incompatible with C++98 befriending %1 without '%select{struct|interface|union|class|enum}0' keyword is incompatible with C++98 '%0' type specifier is incompatible with C++98 inheriting constructors are incompatible with C++98 ms_struct may not produce Microsoft-compatible layouts for classes with base classes or virtual functions array backing the initializer list will be destroyed at the end of %select{the full-expression|the constructor}0 -dealloc is being overridden in a category declaration of %0 will not be visible outside of this function declaration shadows a %select{local variable|variable in %2|static data member of %2|field of %2}1 attribute %0 is ignored, place it after "%select{class|struct|interface|union|enum}1" to apply attribute to type declaration %plural{1:enumeration value %1 not explicitly handled in switch|2:enumeration values %1 and %2 not explicitly handled in switch|3:enumeration values %1, %2, and %3 not explicitly handled in switch|:%0 enumeration values not explicitly handled in switch: %1, %2, %3...}0 atomic by default property %0 has a user defined %select{getter|setter}1 (property should be marked 'atomic' if this is intended) constructor for %0 creates a delegation cycle %select{delete|destructor}0 called on %1 that is abstract but has non-virtual destructor 'delete' applied to a pointer-to-array type %0 treated as 'delete[]' deleting pointer to incomplete type %0 may cause undefined behavior %select{delete|destructor}0 called on non-final %1 that has virtual functions but non-virtual destructor %0 is deprecated 'deprecated' attribute on anonymous namespace ignored definition of implicit copy %select{constructor|assignment operator}1 for %0 is deprecated because it has a user-declared %select{copy %select{assignment operator|constructor}1|destructor}2 Implementing deprecated %select{method|class|category}0 %0 may be deprecated because the receiver type is unknown %0 is deprecated: %1 'register' storage class specifier is deprecated and incompatible with C++1z conversion from string literal to %0 is deprecated explicit call to +initialize results in duplicate call to +initialize instance variable %0 is being directly accessed explicit call to [super initialize] should only be in implementation of +initialize %q0 redeclared inline; %1 attribute ignored double precision constant requires cl_khr_fp64, casting to single precision acquiring %0 '%1' that is already held duplicate definition of category %1 on interface %0 attribute %0 is already applied with different parameters attribute %0 is already applied element %0 has been implicitly assigned %1 which another element has been assigned multiple declarations of method %0 found and ignored duplicate protocol definition of %0 is ignored %select{destination for|source of|first operand of|second operand of}0 this %1 call is a pointer to %select{|class containing a }2dynamic class %3; vtable pointer will be %select{overwritten|copied|moved|compared}4 format string is empty if statement has empty body empty parentheses interpreted as a function declaration range-based for loop has empty body switch statement has empty body while loop has empty body overflow in enumeration value equality comparison with extraneous parentheses exception of type %0 will be caught by earlier handler dynamic exception specifications are deprecated declaration requires an exit-time destructor expecting %0 '%1' to be held at start of each loop expecting %0 '%1' to be held at the end of function 'extern' variable has an initializer control reaches end of non-void function control reaches end of non-void lambda function declared 'noreturn' should not return fallthrough annotation in unreachable code field %0 is uninitialized when used here enumeration value %0 is out of range of flags in enumeration type %1 magnitude of floating-point constant too large for type %0; maximum is %1 magnitude of floating-point constant too small for type %0; minimum is %1 comparing floating point with == or != is unsafe 'begin' and 'end' returning different types (%0 and %1) is incompatible with C++ standards before C++1z loop variable %0 %diff{has type $ but is initialized with type $| is initialized with a value of a different type}1,2 resulting in a copy loop variable %0 of type %1 creates a copy from type %2 loop variable %0 is always a copy because the range of type %1 does not return a reference %select{values of type|enum values with underlying type}2 '%0' should not be used as format arguments; add an explicit cast to %1 instead format specifies type %0 but the argument has %select{type|underlying type}2 %1 invalid conversion specifier '%0' invalid position specified for %select{field width|field precision}0 cannot mix positional and non-positional arguments in format string '%0' %select{length modifier|conversion specifier}1 is not supported by ISO C using length modifier '%0' with conversion specifier '%1' is not supported by ISO C positional arguments are not supported by ISO C format string is not a string literal format string is not a string literal (potentially insecure) length modifier '%0' results in undefined behavior or no effect with '%1' conversion specifier format string should not be a wide string position arguments in format strings start counting at 1 (not 0) redefinition of forward class %0 of a typedef name of an object type is ignored cannot call function '%1' while %0 '%2' is held calling function '%1' requires holding %0 %select{'%2'|'%2' exclusively}3 instantiation of function %q0 required here, but no definition is available function definition inside an Objective-C container is deprecated %0 overrides a member function but is not marked 'override' Objective-C GC does not allow weak variables on the stack declaration requires a global constructor declaration requires a global destructor 'gnu_inline' attribute requires function to be marked 'inline', attribute ignored passing variable '%1' by reference requires holding %0 %select{'%2'|'%2' exclusively}3 %select{instance variable|property}2 with %0 attribute must be an object type (invalid %1) IBOutletCollection properties should be copy/strong and not assign assigning %select{field|instance variable}0 to itself inheritance model ignored on %select{primary template|partial specialization}0 size of static array must be an integer constant expression implicit truncation from %2 to bitfield changes value from %0 to %1 initialization of pointer of type %0 to null from a constant boolean expression implicit conversion discards imaginary component: %0 to %1 implicit conversion from enumeration type %0 to different enumeration type %1 implicit conversion increases floating-point precision: %0 to %1 implicit conversion turns floating-point number into integer: %0 to %1 implicit conversion loses floating-point precision: %0 to %1 implicit conversion of out of range value from %0 to %1 changes value from %2 to %3 implicit conversion from %0 to %1 changes non-zero value from %2 to %3 implicit conversion turns floating-point number into bool: %0 to %1 implicit conversion loses integer precision: %0 to %1 implicit conversion from %2 to %3 changes value from %0 to %1 implicit conversion changes signedness: %0 to %1 operand of ? changes signedness: %0 to %1 implicit conversion from %0 to %1 changes value from %2 to %3 implicit conversion of %select{NULL|nullptr}0 constant to %1 implicit boolean conversion of Objective-C object literal always evaluates to true address of%select{| function| array}0 '%1' will always evaluate to 'true' implicit conversion turns string literal into bool: %0 to %1 implicit conversion turns vector to scalar: %0 to %1 class property %0 requires method %1 to be defined - use @dynamic or provide a method implementation in this class implementation class property %0 requires method %1 to be defined - use @dynamic or provide a method implementation in this category default assign attribute on property %0 which implements NSCopying protocol is not appropriate with -fobjc-gc[-only] property is assumed atomic by default declaration of built-in function '%1' requires inclusion of the header <%0> implicit declaration of function %0 block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior direct base %0 is inaccessible due to ambiguity:%1 %select{%diff{assigning to $ from incompatible type $|assigning to type from incompatible type}0,1|%diff{passing $ to parameter of incompatible type $|passing type to parameter of incompatible type}0,1|%diff{returning $ from a function with incompatible result type $|returning type from a function with incompatible result type}0,1|%diff{converting $ to incompatible type $|converting type to incompatible type}0,1|%diff{initializing $ with an expression of incompatible type $|initializing type with an expression of incompatible type}0,1|%diff{sending $ to parameter of incompatible type $|sending type to parameter of incompatible type}0,1|%diff{casting $ to incompatible type $|casting type to incompatible type}0,1}2 incompatible vector types %select{%diff{assigning to $ from $|assigning to different types}0,1|%diff{passing $ to parameter of type $|passing to parameter of different type}0,1|%diff{returning $ from a function with result type $|returning from function with different return type}0,1|%diff{converting $ to type $|converting between types}0,1|%diff{initializing $ with an expression of type $|initializing with expression of different type}0,1|%diff{sending $ to parameter of type $|sending to parameter of different type}0,1|%diff{casting $ to type $|casting between types}0,1}2 encoding of %0 type is incomplete because %1 component has unknown encoding incrementing expression of type bool is deprecated and incompatible with C++1z 'objc_independent_class' attribute may be put on a typedef only; attribute is ignored indirection of non-volatile null pointer will be deleted, not trap all paths through this function will call itself constant expression evaluates to %0 which cannot be narrowed to type %1 in C++11 type %0 cannot be narrowed to %1 in initializer list in C++11 non-constant-expression cannot be narrowed from type %0 to %1 in initializer list in C++11 initializing pointer member %0 with the stack address of parameter %1 %select{field|base class}0 %1 will be initialized after %select{field|base}2 %3 initializer overrides prior initialization of this subobject inline namespace cannot be reopened as a non-inline namespace instance method %objcinstance0 not found (return type defaults to 'id') instance method %objcinstance0 not found (return type defaults to 'id'); did you mean %objcinstance2? instance method %0 found instead of class method %1 cast to %1 from smaller integer type %0 'internal_linkage' attribute on a non-static local variable is ignored invalid use of a cast in an inline asm context requiring an l-value: accepted due to -fheinous-gnu-extensions, but clang may remove support for this in the future invalid capability name '%0'; capability name must be 'mutex' or 'role' invalid constructor form class in system header, should not be explicit local declaration of %0 hides instance variable declaration of instance variables in the interface is deprecated jump out of __finally block has undefined behavior ignored 'inline' attribute on kernel function %0 kernel function %0 is a member function; this may not be accepted by nvcc %0 '%1' is acquired exclusively and shared in the same scope %0 '%1' is not held on every path through here '&&' within '||' use of logical '%0' with constant operand logical not is only applied to the left hand side of this comparison '%0' is bound to current loop, GCC binds it to the enclosing loop state of variable '%0' must match at the entry and exit of loop comparison of unsigned%select{| enum}2 expression %0 is always %1 only one parameter on 'main' declaration variable named 'main' with external linkage has undefined behavior control may reach end of non-void function control may reach end of non-void lambda variable %0 may be uninitialized when %select{used here|captured by block}1 %0 may not respond to %1 %0 will always overflow destination buffer size argument in %0 call is a comparison MIPS 'interrupt' attribute only applies to functions that have %select{no parameters|a 'void' return type}0 availability does not match previous declaration %select{|overriding }4method %select{introduced after|deprecated before|obsoleted before}0 %select{the protocol method it implements|overridden method}4 on %1 (%2 vs. %3) %select{|overriding }1method cannot be unavailable on %0 when %select{the protocol method it implements|its overridden method}1 is available 'delete%select{|[]}0' applied to a pointer that was allocated with 'new%select{[]|}0'; did you mean 'delete%select{[]|}0'? section does not match previous declaration suggest braces around initialization of subobject %plural{1:enumeration value %1 not handled in switch|2:enumeration values %1 and %2 not handled in switch|3:enumeration values %1, %2, and %3 not handled in switch|:%0 enumeration values not handled in switch: %1, %2, %3...}0 no case matching constant switch condition '%0' auto property synthesis is synthesizing property not explicitly synthesized missing field %0 initializer format string missing method has no return type specified; defaults to 'id' no previous prototype for function %0 missing sentinel in %select{function call|method dispatch|block call}0 no previous extern declaration for non-static variable %0 comparison of integers of different signs: %0 and %1 modifying constructor parameter %0 that shadows a field of %1 multiple methods named %0 found vector initializers are not compatible with NEON intrinsics in big endian mode auto property synthesis will not synthesize property %0 because it is 'readwrite' but it will be synthesized 'readonly' via another property auto property synthesis will not synthesize property %0 because it cannot share an ivar with another synthesized property %select{struct|interface|union|class|enum}0 %1 does not declare any constructor to initialize its non-modifiable members %0 '%1' is still held at the end of function conflicting parameter types in declaration of %0: %1 vs %2 conflicting parameter types in implementation of %0: %1 vs %2 conflicting return type in declaration of %0: %1 vs %2 conflicting return type in implementation of %0: %1 vs %2 expression which evaluates to zero treated as a null pointer constant of type %0 cannot pass %select{non-POD|non-trivial}0 object of type %1 to variadic %select{function|block|method|constructor}2; expected type from format string was %3 %0 has virtual functions but non-virtual destructor comparison of nonnull %select{function call|parameter}0 '%1' %select{not |}2equal to a null pointer is '%select{true|false}2' on first encounter function %0 declared 'noreturn' should not return not a Doxygen trailing comment use of unary operator that may be intended as compound assignment (%0=) not enough variable arguments in %0 declaration to fit a sentinel case value not in enumerated type %0 integer constant not in range of enumerated type %0 %0 attribute only applies to %select{functions|methods|properties}1 that return %select{an Objective-C object|a pointer|a non-retainable pointer}2 'NSObject' attribute may be put on a typedef only; attribute is ignored null passed to a callee that requires a non-null argument use of NULL in arithmetic operation comparison between NULL and non-pointer %select{(%1 and NULL)|(NULL and %1)}0 comparison of %select{address of|function|array}0 '%1' %select{not |}2equal to a null pointer is always %select{true|false}2 synthesized setter %0 for null_resettable property %1 does not handle nil null returned from %select{function|method}0 that requires a non-null return value nullability specifier %0 cannot be applied to non-pointer type %1; did you mean to apply the specifier to the %select{pointer|block pointer|member pointer|function pointer|member function pointer}2? implicit conversion from nullable pointer %0 to non-nullable pointer type %1 %select{pointer|block pointer|member pointer}0 is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified) using %0 directive in %select{NSString|CFString}1 which is being passed as a formatting argument to the formatting %select{method|CFfunction}2 adding '%0' to '%1' might cause circular dependency in container object of type %0 is not compatible with %select{array element type|dictionary key type|dictionary value type}1 %2 designated initializer missing a 'super' call to a designated initializer of the super class designated initializer invoked a non-designated initializer designated initializer should only invoke a designated initializer on 'super' method override for the designated initializer of the superclass %objcinstance0 not found %0 bridges to %1, not %2 %0 cannot bridge to %1 assignment to Objective-C's isa is deprecated in favor of object_setClass() direct access to Objective-C's isa is deprecated in favor of object_getClass() direct comparison of %select{an array literal|a dictionary literal|a numeric literal|a boxed expression|}0 has undefined behavior method possibly missing a [super %0] call cannot catch an exception thrown with @throw in C++ in the non-unified exception model bitmasking for introspection of Objective-C object pointers is strongly discouraged objc_precise_lifetime is not meaningful for %select{__unsafe_unretained|__autoreleasing}0 objects 'copy' attribute must be specified for the block property when -fobjc-gc-only is specified default property attribute 'assign' not appropriate for non-GC object no 'assign', 'retain', or 'copy' attribute is specified - 'assign' is assumed retain'ed block property does not copy the block - use copy attribute instead setter cannot be specified for a readonly property using %0 with a literal is redundant parameterized class %0 already conforms to the protocols listed; did you forget a '*'? %0 attribute cannot be applied to %select{methods in protocols|dealloc}1 class %0 defined without specifying a base class convenience initializer missing a 'self' call to another initializer convenience initializer should not invoke an initializer on 'super' direct comparison of a string literal has undefined behavior use of old-style cast aligned clause will be ignored because the requested alignment is not a power of 2 zero linear step (%0 %select{|and other variables in clause }1should probably be const) OpenMP loop iteration variable cannot have more than 64 bits size and will be narrowed declaration is not declared in any declare target region array section %select{lower bound|length}0 is of type 'char' class implementation may not have super class %0 attribute is deprecated and ignored in OpenCL version %1 OpenCL extension attribute can only be used with function passing non-generic address space pointer to %0 generates dynamic conversion where it is not needed Blocks passed to enqueue_kernel cannot use %select{global|stack}0 variables that are a pointer type in the %select{local|private}1 address space predefined identifiers are not supported %0 should not return a null pointer unless it is declared 'throw()'%select{| or 'noexcept'}1 comparison of %select{constant %0|true|false}1 with %select{expression of type %2|boolean expression}3 is always %select{false|true}4 type %0 requires %1 bytes of alignment and the default allocator only guarantees %2 bytes overloaded operator %select{>>|<<}0 has higher precedence than comparison operator %q0 hides overloaded virtual %select{function|functions}1 padding %select{struct|interface|class}0 %1 with %2 %select{byte|bit}3%s2 to align anonymous bit-field padding %select{struct|interface|class}0 %1 with %2 %select{byte|bit}3%s2 to align %4 padding size of %0 with %1 %select{byte|bit}2%s1 to alignment boundary parameter '%0' not in expected state when the function returns: expected '%1', observed '%2' argument not in expected state; expected '%0', observed '%1' %0 is a large (%1 bytes) pass-by-value argument; pass it by reference instead ? parentheses were disambiguated as a function declaration %0 is only available conditionally %0 may be partial because the receiver type is unknown %0 is partial: %1 %select{class|variable}0 template partial specialization contains %select{a template parameter|template parameters}1 that cannot be deduced; this partial specialization will never be used passing object of class type %0 through variadic %select{function|block|method|constructor}1%select{|; did you mean to call '%3'?}2 moving a temporary object prevents copy elision moving a local object in a return statement prevents copy elision taking the absolute value of %select{pointer|function|array}0 type %1 is suspicious dereference of type %1 that was reinterpret_cast from type %0 has undefined behavior #pragma options align=reset failed: %0 expected #pragma pack parameter to be '1', '2', '4', '8', or '16' specifying both a name and alignment to 'pop' is undefined value of #pragma pack(show) == %0 #pragma %0(pop, ...) failed: %1 only variables can be arguments to '#pragma unused' undeclared variable %0 used as an argument for '#pragma unused' %0 has lower precedence than %1; %1 will be evaluated first operator '?:' has lower precedence than '%0'; '%0' will be evaluated first object format flags cannot be used with '%0' conversion specifier '%select{*|.*}0' specified field %select{width|precision}0 is missing a matching 'int' argument field %select{width|precision}0 should have type %1, but argument has type %2 data argument not used by format string missing object format flag format string contains '\0' within the string body format string is not null-terminated flag '%0' is ignored when flag '%1' is present incomplete format specifier more '%%' conversions than data arguments '%0' is not a valid object format flag flag '%0' results in undefined behavior with '%1' conversion specifier %select{field width|precision}0 used with '%1' conversion specifier, resulting in undefined behavior data argument position '%0' exceeds the number of data arguments (%1) use of __private_extern__ on a declaration may not produce external symbol private to the linkage unit and is deprecated profile data may be out of date: of %0 function%s0, %1 %plural{1:has|:have}1 no data and %2 %plural{1:has|:have}2 mismatched data that will be ignored no profile data available for file "%0" property %0 not found on object of type %1; did you mean to access property %2? property attribute in class extension does not match the primary class '%1' attribute on property %0 does not match the property inherited from %2 property declared as returning non-retained objects; getter returning retained objects primary property declaration is implicitly strong while redeclaration in class extension is weak property access is using %0 method which is deprecated getter name mismatch between property redeclaration (%1) and its original declaration (%0) property type %0 is incompatible with type %1 inherited from %2 property of type %0 was selected for synthesis passing the value that '%1' points to by reference requires holding %0 %select{'%2'|'%2' exclusively}3 the pointer incremented by %0 refers past the end of the array (that contains %1 element%s2) the pointer decremented by %0 refers before the beginning of the array 'objc_independent_class' attribute may be put on Objective-C object pointer type only; attribute is ignored '%0' type qualifier%s1 on return type %plural{1:has|:have}1 no effect attribute 'readonly' of property %0 restricts attribute 'readwrite' of property inherited from %1 receiver %0 is a forward class and corresponding @interface may not exist incompatible redeclaration of library function %0 %q0 redeclared without %1 attribute: previous %1 ignored #pragma redefine_extname is applicable to external C declarations only; not applied to %select{function|variable}0 %1 redefinition of %0 will not be visible outside of this function variable %0 is %select{decremented|incremented}1 both in the loop header and in the loop body redundant move in return statement reference %0 is not yet bound to a value when used here 'register' storage specifier on @catch parameter will be ignored 'reinterpret_cast' %select{from|to}3 class %0 %select{to|from}3 its %select{virtual base|base at non-zero offset}2 %1 behaves differently from 'static_cast' method is expected to return an instance of its class type %diff{$, but is declared to return $|, but is declared to return different type}0,1 protocol method is expected to return an instance of the implementing class, but is declared to return %0 %select{remainder|division}0 by zero is undefined returning address of label, which is local returning %select{address of|reference to}0 local temporary object %select{address of|reference to}0 stack memory associated with local variable %1 returned return state set for an unconsumable type '%0' return value not in expected state; expected '%0', observed '%1' return value of %0 is a large (%1 bytes) pass-by-value object; pass it by reference instead ? %0 has C-linkage specified, but returns user-defined type %1 which is incompatible with C %0 has C-linkage specified, but returns incomplete type %1 which could be incompatible with C instance method %0 is being used on 'Class' which is not in the root class comparison of %0 unsigned%select{| enum}2 expression is always %1 sampler initializer has invalid %0 bits zero field width in scanf format string is unused no closing ']' for '%%[' in scanf format string second argument to 'va_start' is not the last named parameter second argument to 'va_arg' is of promotable type %0; this va_arg has undefined behavior because arguments will be promoted to %1 second argument to 'va_arg' is of non-POD type %0 second argument to 'va_arg' is of ARC ownership-qualified type %0 explicitly assigning value of variable of type %0 to itself explicitly moving variable of type %0 to itself property %0 requires method %1 to be defined - use @synthesize, @dynamic or provide a method implementation in this class implementation property %0 requires method %1 to be defined - use @dynamic or provide a method implementation in this category shift count >= width of type shifting a negative signed value is undefined shift count is negative signed shift result (%0) requires %1 bits to represent, but %2 only has %3 bits signed shift result (%0) sets the sign bit of the shift expression's type (%1) and becomes negative expression with side effects will be evaluated despite being used as an operand to 'typeid' expression with side effects has no effect in an unevaluated context sizeof on pointer operation will return size of %0 instead of %1 sizeof on array function parameter will return size of %0 instead of %1 '%0' call operates on objects of type %1 while the size is based on a different type %2 did you mean to %select{dereference the argument to 'sizeof' (and multiply it by the number of elements)|remove the addressof in the argument to 'sizeof' (and multiply it by the number of elements)|provide an explicit length}0? argument to 'sizeof' in %0 call is the same pointer type %1 as the %select{destination|source}2; expected %3 or an explicit length variable %0 is %select{used|captured}1 uninitialized whenever %select{'%3' condition is %select{true|false}4|'%3' loop %select{is entered|exits because its condition is false}4|'%3' loop %select{condition is true|exits because its condition is false}4|switch %3 is taken|its declaration is reached|%3 is called}2 '%0' ignored on this declaration array argument is too small; contains %0 elements, callee requires at least %1 non-constant static local variable in inline function may be different in different files 'main' should not be declared static static variable %0 is suspiciously used within its own initialization adding %0 to a string pointer does not append to the string adding %0 to a string does not append to the string result of comparison against %select{a string literal|@encode}0 is unspecified (use strncmp instead) size argument in %0 call appears to be size of the source; expected the size of the destination the value of the size argument in 'strncat' is too large, might lead to a buffer overflow size argument in 'strncat' call appears to be size of the source the value of the size argument to 'strncat' is wrong %2 defined as %select{a struct|an interface|a class}0%select{| template}1 here but previously declared as %select{a struct|an interface|a class}3%select{| template}1 %select{struct|interface|class}0%select{| template}1 %2 was previously declared as a %select{struct|interface|class}3%select{| template}1 subtraction of pointers to type %0 of zero size has undefined behavior subobject initialization overrides initialization of other fields within its enclosing subobject array subscript is of type 'char' block could be declared with attribute 'noreturn' %select{function|method}0 %1 could be declared with attribute 'noreturn' the semantics of this intrinsic changed with GCC version 4.4 - the newer semantics are provided here overlapping comparisons always evaluate to %select{false|true}0 non-type template argument with value '%0' converted to '%1' for unsigned template parameter of type %2 non-type template argument value '%0' truncated to '%1' for template parameter of type %2 exported templates are unsupported dependent nested name specifier '%0' for friend template declaration is not supported; ignoring this friend declaration dependent nested name specifier '%0' for friend class declaration is not supported; turning off access control for %1 extraneous template parameter list in template specialization pointer is initialized by a temporary array, which will be destroyed at the end of the full-expression tentative array definition assumed to have one element 'this' pointer cannot be null in well-defined C++ code; pointer may be assumed to always convert to true 'this' pointer cannot be null in well-defined C++ code; comparison may be assumed to always evaluate to %select{true|false}0 %0 attribute requires arguments whose type is annotated with 'capability' attribute; type here is %1 %0 attribute can only be applied in a context annotated with 'capability("mutex")' attribute %0 only applies to pointer types; type here is %1 ignoring %0 attribute because its argument is invalid Thread safety beta warning. Thread safety verbose warning. %select{alignment|size}0 of field %1 (%2 bits) does not match the %select{alignment|size}0 of the first field in transparent union; transparent_union attribute ignored first field of a transparent union cannot have %select{floating point|vector}0 type %1; transparent_union attribute ignored transparent_union attribute can only be applied to a union definition; attribute ignored transparent union definition must contain at least one field; transparent_union attribute ignored '%0' only applies to %select{function|pointer|Objective-C object or block pointer}1 types; type here is %2 specified %0 type tag requires a null pointer argument type %0 doesn't match specified %1 type tag %select{that requires %3|}2 this type tag was not designed to be used with this function '%0' qualifier on function type %1 has no effect '%0' qualifier on function type %1 has unspecified behavior '%0' qualifier on reference type %1 has no effect 'static' has no effect on zero-length arrays unannotated fall-through between switch labels unannotated fall-through between switch labels in partly-annotated function %0 may be unavailable because the receiver type is unknown undeclared selector %0 undeclared selector %0; did you mean %1? method definition for %0 not found cannot find protocol definition for %0 inline function %q0 is not defined %select{function|variable}0 %q1 has internal linkage but is not defined reinterpret_cast from %0 to %1 has undefined behavior __declspec attribute %0 is not supported method %0 in protocol %1 not implemented no method with selector %0 is implemented in this translation unit block pointer variable %0 is uninitialized when captured by block variable %0 is uninitialized when used within its own initialization reference %0 is not yet bound to a value when used within its own initialization variable %0 is uninitialized when %select{used here|captured by block}1 unknown attribute %0 ignored unknown sanitizer '%0' ignored releasing %0 '%1' that was not held releasing %0 '%1' using %select{shared|exclusive}2 access, expected %select{shared|exclusive}3 access packed attribute is unnecessary for %0 %select{function|variable}0 %1 is not needed and will not be emitted member function %0 is not needed and will not be emitted 'static' function %0 declared in header file should be declared 'static inline' code will never be executed 'break' will never be executed default label in switch which covers all enumeration values loop will run at most once (loop increment never executed) 'return' will never be executed multiple unsequenced modifications to %0 unsequenced modification and access to %0 taking the absolute value of unsigned type %0 has no effect Ignoring unsupported '%0' in the target attribute string ignoring return value of function declared with %0 attribute %select{%select{|in}1equality|relational}0 comparison result unused unused variable %0 container access result unused - container access should not be used for side effects unused exception parameter %0 expression result unused unused function %0 unused label %0 unused %select{typedef|type alias}0 %1 unused member function %0 unused parameter %0 private field %0 is not used ivar %0 which backs the property is not referenced in this property's accessor property access result unused - getters should not be used for side effects expression result unused; should this cast be to 'void'? expression result unused; assign into a variable to force a volatile load invalid invocation of method '%0' on object '%1' while it is in the '%2' state invalid invocation of method '%0' on a temporary object while it is in the '%1' state use of out-of-scope declaration of %0 %0 was marked unused but was used user-defined literal suffixes not starting with '_' are reserved%select{; no literal will invoke this operator|}0 inheriting constructor does not inherit ellipsis using namespace directive in global context in header passing %select{an object that undergoes default argument promotion|an object of reference type|a parameter declared with the 'register' keyword}0 to 'va_start' has undefined behavior %select{reading|writing}1 the value pointed to by '%0' requires holding %select{any mutex|any mutex exclusively}1 %select{reading|writing}3 the value pointed to by '%1' requires holding %0 %select{'%2'|'%2' exclusively}3 instantiation of variable %q0 required here, but no definition is available %select{reading|writing}1 variable '%0' requires holding %select{any mutex|any mutex exclusively}1 %select{reading|writing}3 variable '%1' requires holding %0 %select{'%2'|'%2' exclusively}3 variable%select{s| %1|s %1 and %2|s %1, %2, and %3|s %1, %2, %3, and %4}0 used in loop condition not modified in loop body defaulted move assignment operator of %0 will move assign virtual base class %1 multiple times Use of 'long' with '__vector' is deprecated specifying vector types with the 'mode' attribute is deprecated; use the 'vector_size' attribute instead variable length array used weak identifier %0 never declared an already-declared variable is made a weak_import declaration %0 explicit template instantiation %0 will emit a vtable in every translation unit %0 has no out-of-line virtual method definitions; its vtable will be emitted in every translation unit using %select{integer|floating point|complex}1 absolute value function %0 when argument is of %select{integer|floating point|complex}2 type %select{|empty }0%select{struct|union}1 has size 0 in C, %select{size 1|non-zero size}2 in C++ several methods with selector %0 of mismatched types are found for the @selector expression #pragma-messages #warnings CFString-literal CL4 IndependentClass-attribute NSObject-attribute abi absolute-value abstract-final-class abstract-vbase-init address address-of-array-temporary address-of-temporary aggregate-return all ambiguous-ellipsis ambiguous-macro ambiguous-member-template analyzer-incompatible-plugin anonymous-pack-parens arc%arc-bridge-casts-disallowed-in-nonarc arc-maybe-repeated-use-of-weak arc-non-pod-memaccess arc-performSelector-leaks arc-repeated-use-of-weak arc-retain-cycles arc-unsafe-retained-assign array-bounds array-bounds-pointer-arithmetic asm asm-operand-widths assign-enum assume at-protocol atomic-memory-ordering atomic-properties*atomic-property-with-user-defined-accessor attribute-packed-for-bitfield attributes auto-disable-vptr-sanitizer auto-import auto-storage-class auto-var-id availability backend-plugin backslash-newline-escape bad-array-new-length bad-function-cast bind-to-temporary-copy bitfield-constant-conversion bitfield-width bitwise-op-parentheses bool-conversion bool-conversions braced-scalar-init bridge-cast builtin-macro-redefined builtin-memcpy-chk-size builtin-requires-header c++-compat c++0x-compat c++0x-extensions c++0x-narrowing c++11-compat(c++11-compat-deprecated-writable-strings c++11-compat-pedantic*c++11-compat-reserved-user-defined-literal c++11-extensions c++11-extra-semi c++11-inline-namespace c++11-long-long c++11-narrowing c++14-binary-literal c++14-compat c++14-compat-pedantic c++14-extensions c++1y-extensions c++1z-compat c++1z-extensions c++98-c++11-c++14-compat!c++98-c++11-c++14-compat-pedantic c++98-c++11-compat c++98-c++11-compat-pedantic c++98-compat#c++98-compat-bind-to-temporary-copy%c++98-compat-local-type-template-args c++98-compat-pedantic'c++98-compat-unnamed-type-template-args c11-extensions c99-compat c99-extensions cast-align cast-of-sel-type cast-qual char-align char-subscripts clang-cl-pch class-varargs comma comment comments compare-distinct-pointer-types complex-component-init conditional-type-mismatch conditional-uninitialized config-macros constant-conversion constant-logical-operand constexpr-not-const consumed conversion conversion-null coreturn-without-coawait covered-switch-default cstring-format-directive ctor-dtor-privacy cuda-compat custom-atomic-properties dangling-else dangling-field dangling-initializer-list date-time dealloc-in-category debug-compression-unavailable declaration-after-statement delegating-ctor-cycles delete-incomplete delete-non-virtual-dtor deprecated deprecated-attributes deprecated-declarations deprecated-implementations deprecated-increment-bool deprecated-objc-isa-usage%deprecated-objc-pointer-introspection5deprecated-objc-pointer-introspection-performSelector deprecated-register deprecated-writable-strings direct-ivar-access disabled-macro-expansion disabled-optimization discard-qual distributed-object-modifiers div-by-zero division-by-zero dll-attribute-on-redeclaration%dllexport-explicit-instantiation-decl dllimport-static-field-def documentation documentation-deprecated-sync documentation-html documentation-pedantic documentation-unknown-command dollar-in-identifier-extension double-promotion duplicate-decl-specifier duplicate-enum duplicate-method-arg duplicate-method-match dynamic-class-memaccess effc++ embedded-directive empty-body empty-translation-unit encode-type endif-labels enum-compare enum-conversion enum-too-large exceptions exit-time-destructors expansion-to-defined explicit-initialize-call explicit-ownership-type extended-offsetof extern-c-compat extern-initializer extra extra-qualification extra-semi extra-tokens fallback flag-enum flexible-array-extensions float-conversion float-equal float-overflow-conversion float-zero-conversion for-loop-analysis format format-extra-args format-invalid-specifier format-non-iso format-nonliteral format-pedantic format-security format-y2k format-zero-length format=2 four-char-constants frame-larger-than= function-def-in-objc-container future-compat gcc-compat global-constructors gnu gnu-alignof-expression gnu-anonymous-struct gnu-array-member-paren-init gnu-auto-type gnu-binary-literal gnu-case-range gnu-complex-integer gnu-compound-literal-initializer gnu-conditional-omitted-operand gnu-designator gnu-empty-initializer gnu-empty-struct gnu-flexible-array-initializer gnu-flexible-array-union-member gnu-folding-constant gnu-imaginary-constant gnu-include-next gnu-label-as-value gnu-redeclared-enum gnu-statement-expression gnu-static-float-init$gnu-string-literal-operator-template gnu-union-cast"gnu-variable-sized-type-not-at-end gnu-zero-line-directive!gnu-zero-variadic-macro-arguments header-guard header-hygiene idiomatic-parentheses ignored-attributes ignored-optimization-argument ignored-pragmas ignored-qualifiers implicit implicit-atomic-properties*implicit-conversion-floating-point-to-bool implicit-exception-spec-mismatch implicit-fallthrough!implicit-fallthrough-per-function implicit-function-declaration implicit-int implicit-retain-self implicitly-unsigned-literal import&import-preprocessor-directive-pedantic inaccessible-base include-next-absolute-path include-next-outside-header"incompatible-library-redeclaration incompatible-ms-struct incompatible-pointer-types.incompatible-pointer-types-discards-qualifiers incompatible-property-type incompatible-sysroot incomplete-implementation incomplete-module incomplete-umbrella inconsistent-dllimport inconsistent-missing-override increment-bool infinite-recursion inherited-variadic-ctor init-self initializer-overrides inline inline-asm inline-new-delete int-conversion int-conversions int-to-pointer-cast int-to-void-pointer-cast integer-overflow invalid-command-line-argument invalid-constexpr invalid-iboutlet&invalid-initializer-from-system-header invalid-noreturn invalid-offsetof invalid-or-nonexistent-directory invalid-pch invalid-pp-token invalid-source-encoding invalid-token-paste jump-seh-finally keyword-compat keyword-macro knr-promoted-parameter language-extension-token large-by-value-copy liblto literal-conversion literal-range local-type-template-args logical-not-parentheses logical-op-parentheses long-long loop-analysis macro-redefined main main-return-type malformed-warning-check many-braces-around-scalar-init memsize-comparison method-signatures microsoft microsoft-anon-tag microsoft-cast microsoft-charize microsoft-comment-paste microsoft-const-init microsoft-cpp-macro"microsoft-default-arg-redefinition microsoft-end-of-file microsoft-enum-forward-reference microsoft-enum-value microsoft-exception-spec microsoft-exists#microsoft-explicit-constructor-call microsoft-extra-qualification microsoft-fixed-enum microsoft-flexible-array microsoft-goto microsoft-include microsoft-mutable-reference microsoft-pure-definition microsoft-redeclare-static microsoft-sealed microsoft-template microsoft-union-member-reference microsoft-unqualified-friend microsoft-using-decl microsoft-void-pseudo-dtor mismatched-new-delete mismatched-parameter-types mismatched-return-types mismatched-tags missing-braces missing-declarations missing-exception-spec missing-field-initializers missing-format-attribute missing-include-dirs missing-method-return-type missing-noreturn missing-prototype-for-cc missing-prototypes missing-selector-name missing-sysroot missing-variable-declarations module-build module-conflict module-file-config-mismatch module-file-extension module-import-in-extern-c"modules-ambiguous-internal-linkage modules-import-nested-redundant most move msvc-include multichar multiple-move-vbase narrowing nested-anon-types nested-externs new-returns-null newline-eof non-gcc non-literal-null-conversion'non-modular-include-in-framework-module non-modular-include-in-module non-pod-varargs non-virtual-dtor nonnull nonportable-cfstrings!nonportable-vector-initialization null-arithmetic null-character null-conversion null-dereference nullability nullability-completeness nullability-declspec nullability-extension nullable-to-nonnull-conversion+objc-autosynthesis-property-ivar-name-match objc-circular-container objc-cocoa-api objc-designated-initializers objc-forward-class-redefinition objc-interface-ivars objc-literal-compare objc-literal-conversion objc-macro-redefinition objc-method-access objc-missing-property-synthesis objc-missing-super-calls objc-multiple-method-names"objc-noncopy-retain-block-property objc-nonunified-exceptions objc-property-implementation objc-property-implicit-mismatch*objc-property-matches-cocoa-ownership-rule objc-property-no-attribute objc-property-synthesis#objc-protocol-method-implementation objc-protocol-property-synthesis objc-protocol-qualifiers"objc-readonly-with-setter-property objc-redundant-api-use objc-redundant-literal-use objc-root-class objc-string-compare objc-string-concatenation odr old-style-cast old-style-definition openmp-clauses openmp-loop-form openmp-target option-ignored out-of-line-declaration over-aligned overflow overlength-strings overloaded-shift-op-parentheses overloaded-virtual override-module overriding-method-mismatch overriding-t-option packed padded parentheses parentheses-equality partial-availability pass pass-analysis pass-failed pass-missed pch-date-time pedantic pessimizing-move pointer-arith pointer-bool-conversion pointer-sign pointer-to-int-cast pointer-type-mismatch potentially-evaluated-expression pragma-once-outside-header#pragma-system-header-outside-header pragmas&predefined-identifier-outside-function private-extern private-header profile-instr-out-of-date profile-instr-unprofiled property-access-dot-syntax property-attribute-mismatch protocol%protocol-property-synthesis-ambiguity qualified-void-return-type range-loop-analysis readonly-iboutlet-property receiver-expr receiver-forward-class redeclared-class-member redundant-decls redundant-move register reinterpret-base-class remark-backend-plugin reorder requires-super-attribute reserved-id-macro reserved-user-defined-literal retained-language-linkage return-stack-address return-type return-type-c-linkage rtti-for-exceptions sanitize-address section selector selector-type-mismatch self-assign self-assign-field self-move semicolon-before-method-body sentinel sequence-point serialized-diagnostics shadow shadow-all shadow-field-in-constructor$shadow-field-in-constructor-modified shadow-ivar shift-count-negative shift-count-overflow shift-negative-value shift-op-parentheses shift-overflow shift-sign-overflow shorten-64-to-32 sign-compare sign-conversion sign-promo sizeof-array-argument sizeof-array-decay sizeof-pointer-memaccess sometimes-uninitialized source-uses-openmp spir-compat stack-protector static-float-init static-in-inline$static-inline-explicit-instantiation static-local-in-inline static-self-init strict-aliasing strict-aliasing=0 strict-aliasing=1 strict-aliasing=2 strict-overflow strict-overflow=0 strict-overflow=1 strict-overflow=2 strict-overflow=3 strict-overflow=4 strict-overflow=5 strict-prototypes strict-selector-match string-compare string-conversion string-plus-char string-plus-int strlcpy-strlcat-size strncat-size super-class-method-mismatch switch switch-bool switch-default switch-enum%sync-fetch-and-nand-semantics-changed synth tautological-compare*tautological-constant-out-of-range-compare tautological-overlap-compare tautological-pointer-compare tautological-undefined-compare$tentative-definition-incomplete-type thread-safety thread-safety-analysis thread-safety-attributes thread-safety-beta thread-safety-negative thread-safety-precise thread-safety-reference thread-safety-verbose trigraphs type-limits type-safety typedef-redefinition typename-missing unavailable-declarations undeclared-selector undef undefined-bool-conversion undefined-func-template undefined-inline undefined-internal undefined-reinterpret-cast undefined-var-template unevaluated-expression unicode unicode-whitespace uninitialized unknown-argument unknown-attributes unknown-escape-sequence unknown-pragmas unknown-sanitizers unknown-warning-option unnamed-type-template-args unneeded-internal-declaration unneeded-member-function unreachable-code unreachable-code-aggressive unreachable-code-break unreachable-code-loop-increment unreachable-code-return unsequenced#unsupported-dll-base-class-template unsupported-friend unsupported-nan unsupported-visibility unused unused-argument unused-command-line-argument unused-comparison unused-const-variable unused-exception-parameter unused-function unused-getter-return-value unused-label unused-local-typedef unused-local-typedefs unused-macros unused-member-function unused-parameter unused-private-field unused-property-ivar unused-result unused-value unused-variable unused-volatile-lvalue used-but-marked-unused user-defined-literals varargs variadic-macros vector-conversion vector-conversions vexing-parse visibility vla vla-extension void-ptr-dereference volatile-register-var weak-template-vtables weak-vtables writable-strings write-strings zero-length-array *** File Manager Stats: real files found, real dirs found. virtual files found, virtual dirs found. dir lookups, dir cache misses. file lookups, file cache misses. and_eq bitand bitor compl not_eq or_eq xor_eq not_keyword defs *** Identifier Table Stats: # Identifiers: %d # Empty Buckets: %d Hash density (#identifiers per bucket): %f Ave identifier length: %f Max identifier length: %d <null selector> finalize initialize retainCount standard appendFormat initWithFormat localizedStringWithFormat stringByAppendingFormat stringWithFormat framework module [system] [extern_c] requires umbrella header " umbrella " config_macros [exhaustive] private private textual exclude header " export use link conflict module * { export * altivec cplusplus11 opencl zvector parallel task sections single cancel target data target enter data target exit data target parallel target parallel for parallel for parallel for simd for simd cancellation point declare reduction taskloop taskloop simd end declare target parallel sections safelen collapse depend thread_limit grainsize num_tasks defaultmap threadprivate or thread local close spread guided nonmonotonic source sink uval from tofrom always scalar fun @ @ @ kernel-address leak array-bounds float-cast-overflow float-divide-by-zero integer-divide-by-zero object-size returns-nonnull-attribute shift-base shift-exponent shift signed-integer-overflow vla-bound vptr unsigned-integer-overflow dataflow cfi-cast-strict cfi-derived-cast cfi-icall cfi-unrelated-cast cfi-nvcall cfi-vcall cfi safe-stack undefined-trap local-bounds efficiency-cache-frag efficiency-all @ @ <invalid loc> <Spelling= <none> expansion SLocEntry <FileID <SourceLocation ????> covers <FileID included from for contents overridden contents from spelling from macro range < GB-18030 <<<MISSING SOURCE FILE>>> UTF-16 (BE) UTF-32 (BE) UTF-7 +/v UTF-EBCDIC sfs SDSU 1 3 UTF-32 (LE) UTF-1 BOCU-1 UTF-16 (LE) dL ( <<<INVALID BUFFER>> <<<<<INVALID SOURCE LOCATION>>>>> <<<<INVALID BUFFER>>>> *** Source Manager Stats: files mapped, mem buffers mapped. local SLocEntry's allocated ( bytes of capacity), B of Sloc address space used. loaded SLocEntries allocated, bytes of files mapped, files with line #'s computed, files with macro args computed. FileID scans: linear, binary. <inline asm> mcount ~{dirflag},~{fpsr},~{flags} no-mmx ~{$1} typedef void* __builtin_va_list; .text.__startup .text.startup __TEXT,__StaticInit,regular,pure_instructions ebp aarch64 arm64 vfp2 vfp3 vfp4 bpf msp430 pnacl ptx nvptx tce 387 spir lanai aarch32 softfloat hwdiv hwdiv-arm fp64 sparc systemz htm simd128 powerpc crypto direct-move qpx hexagon hvx hvx-double aes avx512cd avx512er avx512pf avx512dq avx512bw avx512vl avx512vbmi avx512ifma clflushopt clwb cx16 f16c fsgsbase fxsr lzcnt mm3dnow mm3dnowa mpx pclmul pcommit pku prefetchwt1 prfchw rdrnd rdseed rtm ssse3 tbm umip x86 x86_32 xsavec xsaveopt sgx sha x86_64 xsaves movbe +hvx -hvx +hvx-double -hvx-double +neon +crc +crypto +strict-align +v8.1a mips32r6 mips64r6 +single-float +soft-float +mips16 +micromips +dsp +dspr2 +msa +fp64 -fp64 +nan2008 -nan2008 +vsx +bpermd +extdiv +power8-vector +direct-move +qpx +htm {ax} {bx} {cx} {dx} {si} {di} {st} {st(1)} o32 eabi i386 winchip-c6 winchip2 c3 i586 pentium pentium-mmx i686 pentiumpro pentium2 pentium3m c3-2 yonah pentium4 pentium4m prescott nocona core2 penryn bonnell silvermont slm nehalem corei7 westmere sandybridge corei7-avx ivybridge core-avx-i haswell core-avx2 skylake skylake-avx512 skx cannonlake knl lakemont k6 k6-2 athlon athlon-tbird athlon-4 athlon-xp athlon64 athlon64-sse3 athlon-fx k8 k8-sse3 opteron-sse3 barcelona amdfam10 btver1 geode i486 pentium3 pentium-m broadwell k6-3 athlon-mp opteron btver2 bdver1 bdver2 bdver3 bdver4 x86-64 _mcount mips1 mips32 mips32r2 mips32r5 mips64 mips64r2 octeon p5600 mips2 mips3 mips4 mips5 mips32r3 mips64r3 mips64r5 z10 z196 zEC12 z13 v11 hexagonv4 hexagonv55 hexagonv5 hexagonv60 440 603e 603ev 604 604e 620 7400 7450 g4+ a2q e500mc e5500 power3 pwr3 power4 pwr4 power5 pwr5 power5x pwr5x power6 pwr6 power6x pwr6x power7 pwr7 power8 pwr8 ppc powerpc64 ppc64 powerpc64le ppc64le 450 602 603 630 750 970 a2 cortex-a53 cortex-a57 cortex-a72 cortex-a35 exynos-m1 kryo cyclone mvp bleeding-edge sm_20 sm_21 sm_30 sm_35 sm_37 v8 supersparc sparclite f934 hypersparc sparclite86x sparclet tsc701 v9 ultrasparc ultrasparc3 niagara niagara2 myriad2 myriad2.1 niagara3 niagara4 myriad2.2 rbp 6M 8M_MAIN 8M_BASE 8_2A 8_1A 8A 7EM 7M 7R 7A 7S _mcount .mcount __mcount E-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64 e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64 E-m:e-i64:64-i128:128-n32:64-S128 E-m:e-p:32:32-i64:64-f128:64-n32-S64 e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:32-f64:32-a:0:32-n32 e-m:e-p:32:32:32-a:0-n16:32-i64:64:64-i32:32:32-i16:16:16-i1:8:8-f32:32:32-f64:64:64-v32:32:32-v64:64:64-v512:512:512-v1024:1024:1024-v2048:2048:2048 e-m:e-p:16:16-i32:16:32-a:16-n8:16 E-m:e-i64:64-n32:64-S128 E-m:e-p:32:32-i64:64-n32 e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128 +simd128 -simd128 -target-feature e-m:e-p:32:32-i64:64-f128:64-n32-S64 e-m:e-p:32:32-i64:64-f80:128-n8:16:32:64-S128 e-m:e-i64:64-f80:128-n8:16:32:64-S128 e-m:w-i64:64-f80:128-n8:16:32:64-S128 mcount e-m:e-p:32:32-i64:32-f64:32-f128:32-n8:16:32-a:0:32-S32 E-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32:64-S128 E-m:m-i8:8:32-i16:16:32-i64:64-n32:64-S128 e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32:64-S128 e-m:m-i8:8:32-i16:16:32-i64:64-n32:64-S128 +aes +pclmul +lzcnt +rdrnd +fsgsbase +bmi +bmi2 +popcnt +rtm +prfchw +rdseed +adx +tbm +fma +f16c +avx512cd +avx512er +avx512pf +avx512dq +avx512bw +avx512vl +avx512vbmi +avx512ifma +sha +mpx +movbe +sgx +cx16 +fxsr +xsave +xsaveopt +xsavec +xsaves +pku +clflushopt +pcommit +clwb +umip +prefetchwt1 +avx512f +avx2 +avx +sse4.2 +ssse3 +sse3 +sse +3dnowa +3dnow +mmx +xop +fma4 +sse4a +sse4.1 +sse2 e-m:o-i64:64-i128:128-n32:64-S128 e-m:e-i64:64-i128:128-n32:64-S128 e-m:e-i64:64-n32:64 E-m:e-i64:64-n32:64 e-p:32:32-p1:64:64-p2:64:64-p3:32:32-p4:64:64-p5:32:32-p24:64:64-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64 e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64 E-m:e-p:64:64-i64:64-n32:64-S128 e-m:e-p:64:64-i64:64-n32:64-S128 E-m:o-i64:64-n32:64 +transactional-execution +vector E-m:e-i1:8:16-i8:8:16-i64:64-f128:64-v128:64-a:8:16-n32:64 E-m:o-p:32:32-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32 e-m:o-p:32:32-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32 E-m:e-p:32:32-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32 e-m:e-p:32:32-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32 E-m:o-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64 e-m:o-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64 E-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64 e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64 aapcs-linux e-m:w-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64 e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S128 e-m:o-p:32:32-i64:64-a:0:32-n32-S128 __gnu_mcount_nc cortex-m e-m:e-p:32:32-i64:64-n8:16:32-S128 e-m:e-p:32:32-i64:64-n8:16:32:64-S128 e-p:32:32-i64:64 r600 rv610 palm cedar sumo sumo2 redwood barts caicos aruba tahiti pitcairn verde hainan bonaire kabini mullins tonga iceland fiji stoney rv620 rv630 rv635 rs780 rs880 rv670 rv710 rv730 rv740 rv770 juniper hemlock cypress turks cayman oland kaveri hawaii carrizo e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32 e-m:e-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32 E-m:e-p:32:32-i64:64-a:0:32-n32-S64 e-m:e-v128:32-v16:16-v32:32-v96:32-n8:16:32:64-S128 E-m:o-p:32:32-f64:32:64-n32 E-m:e-p:32:32-i64:64-n32:64 e-p:32:32-i64:64-v16:16-v32:32-n16:32:64 e-i64:64-v16:16-v32:32-n16:32:64 E-m:e-i1:8:16-i8:8:16-i64:64-f128:64-a:8:16-n32:64 E-p:32:32-i8:8:32-i16:16:32-i64:32-f64:32-v64:32-v128:32-a:0:32-n32 e-m:o-p:32:32-f64:32:64-f80:128-n8:16:32-S128 e-m:o-i64:64-f80:128-n8:16:32:64-S128 e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-i128:128:128-i256:256:256-i512:512:512-i1024:1024:1024-i24:32:32-i48:64:64-i96:128:128-i192:256:256-n8:16:32:64 __OPENCL64__ wasm32-unknown-unknown e-m:e-p:32:32-i64:64-n32:64-S128 wasm64-unknown-unknown e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024 e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024 __XS1B__ __lanai__ __LANAI_V11__ __NetBSD__ __unix__ __ELF__ _POSIX_THREADS __ARM_DWARF_EH__ SPIR32 SPIR SPIR64 unix linux __gnu_linux__ __ANDROID__ _REENTRANT _GNU_SOURCE __FreeBSD__ __FreeBSD_cc_version __KPRINTF_ATTRIBUTE__ __STDC_MB_MIGHT_NEQ_WC__ __CloudABI__ __STDC_ISO_10646__ 201206L __STDC_UTF_16__ __STDC_UTF_32__ __aarch64__ _LP64 __LP64__ __ARM_ACLE 200 __ARM_ARCH __ARM_ARCH_PROFILE 'A' __ARM_64BIT_STATE __ARM_PCS_AAPCS64 __ARM_ARCH_ISA_A64 __ARM_FEATURE_CLZ __ARM_FEATURE_FMA __ARM_FEATURE_LDREX 0xF __ARM_FEATURE_IDIV __ARM_FEATURE_DIV __ARM_FEATURE_NUMERIC_MAXMIN __ARM_FEATURE_DIRECTED_ROUNDING __ARM_ALIGN_MAX_STACK_PWR __ARM_FP 0xE __ARM_FP16_FORMAT_IEEE __ARM_FP16_ARGS __ARM_FP_FAST __ARM_SIZEOF_WCHAR_T __ARM_SIZEOF_MINIMAL_ENUM __ARM_NEON __ARM_NEON_FP __ARM_FEATURE_CRC32 __ARM_FEATURE_CRYPTO __ARM_FEATURE_UNALIGNED __ARM_FEATURE_QRDMX __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 __AARCH64EL__ __AARCH64EB__ __AARCH_BIG_ENDIAN __ARM_BIG_ENDIAN __native_client__ __rtems__ __Bitrig__ __OpenBSD__ _WIN32 _CPPRTTI _CPPUNWIND __BOOL_DEFINED _CHAR_UNSIGNED _MT _MSC_VER _MSC_FULL_VER _MSC_BUILD _MSC_EXTENSIONS _RVALUE_REFERENCES_V2_SUPPORTED _RVALUE_REFERENCES_SUPPORTED _NATIVE_NULLPTR_SUPPORTED _INTEGRAL_MAX_BITS _M_ARM_NT _M_ARMT _M_ARM _M_THUMB _M_ARM_FP _HAS_CHAR16_T_LANGUAGE_SUPPORT __BPF__ MSP430 __MSP430__ __tune_ __PPC__ __PPU__ __CELLOS_LV2__ __LP32__ _ARCH_PPC64 __powerpc64__ __AMDGCN__ __R600__ __HAS_FMAF__ __HAS_LDEXPF__ sun __svr4__ __SVR4 _XOPEN_SOURCE 600 500 __C99FEATURES__ _LARGEFILE_SOURCE _LARGEFILE64_SOURCE __EXTENSIONS__ __REGISTER_PREFIX__ SOFT_FLOAT __s390__ __s390x__ __zarch__ __LONG_DOUBLE_128__ __HTM__ __VEC__ 10301 __TCE__ __TCE_V1__ __minix _EM_WSIZE _EM_PSIZE _EM_SSIZE _EM_LSIZE _EM_FSIZE _EM_DSIZE __FreeBSD_kernel__ __GLIBC__ __DragonFly__ __DragonFly_cc_version 100001 __tune_i386__ __amd64__ __amd64 __x86_64 __x86_64__ x86_64h __pentium_mmx__ __tune_pentium_mmx__ __tune_pentium3__ __tune_pentium2__ __tune_i686__ __tune_pentiumpro__ __i686 __i686__ __pentiumpro __pentiumpro__ __tune_lakemont__ __k6_2__ __tune_k6_2__ __k6_3__ __tune_k6_3__ __athlon_sse__ __tune_athlon_sse__ __NO_MATH_INLINES __AES__ __PCLMUL__ __LZCNT__ __RDRND__ __FSGSBASE__ __BMI__ __BMI2__ __POPCNT__ __RTM__ __PRFCHW__ __RDSEED__ __ADX__ __TBM__ __XOP__ __FMA4__ __SSE4A__ __FMA__ __F16C__ __AVX512CD__ __AVX512ER__ __AVX512PF__ __AVX512DQ__ __AVX512BW__ __AVX512VL__ __AVX512VBMI__ __AVX512IFMA__ __SHA__ __FXSR__ __XSAVE__ __XSAVEOPT__ __XSAVEC__ __XSAVES__ __PKU__ __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 __AVX512F__ __AVX2__ __AVX__ __SSE4_2__ __SSE4_1__ __SSSE3__ __SSE3__ __SSE2__ __SSE2_MATH__ __SSE__ __SSE_MATH__ _M_IX86_FP __3dNOW_A__ __3dNOW__ __MMX__ __x86_64h __x86_64h__ _M_IX86 __INTEL__ __HAIKU__ __iamcu __iamcu__ 900001 __PS4__ _WIN64 __APPLE_CC__ 6000 __APPLE__ OBJC_NEW_PROPERTIES _FORTIFY_SOURCE __attribute__((objc_gc(weak))) __STATIC__ __DYNAMIC__ win32 __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ __MACH__ __AARCH64_SIMD__ __ARM64_ARCH_8__ __ARM_NEON__ __LITTLE_ENDIAN__ __arm64 __arm64__ __qdsp6__ __hexagon__ __HEXAGON_V4__ __HEXAGON_ARCH__ __QDSP6_V4__ __QDSP6_ARCH__ __HEXAGON_V5__ __QDSP6_V5__ __HEXAGON_V55__ __QDSP6_V55__ __HEXAGON_V60__ __QDSP6_V60__ __HVX__ __HVXDBL__ __declspec(a) __attribute__((a)) __attribute__((__ __)) _X86_ __CYGWIN__ __CYGWIN32__ __CYGWIN64__ __SEH__ __ppc__ _ARCH_PPC __powerpc__ __POWERPC__ __ppc64__ __PPC64__ _LITTLE_ENDIAN _CALL_ELF __NATURAL_ALIGNMENT__ 10206 __ALTIVEC__ _ARCH_ _ARCH_PPCGR _ARCH_PPCSQ _ARCH_440 _ARCH_603 _ARCH_604 _ARCH_PWR4 _ARCH_PWR5 _ARCH_PWR5X _ARCH_PWR6 _ARCH_PWR6X _ARCH_PWR7 _ARCH_PWR8 _ARCH_A2 _ARCH_A2Q _ARCH_QP __bg__ __THW_BLUEGENE__ __bgq__ __TOS_BGQ__ __VSX__ __POWER8_VECTOR__ __CRYPTO__ _BIG_ENDIAN __PTX__ __NVPTX__ 210 350 370 __CUDA_ARCH__ __mips__ _mips __mips_hard_float __mips_soft_float __mips_single_float __mips_fpr _MIPS_FPSET __mips16 __mips_micromips __mips_nan2008 __mips_dsp_rev __mips_dsp __mips_dspr2 __mips_msa _MIPS_SZPTR _MIPS_SZINT _MIPS_SZLONG _MIPS_ARCH _MIPS_ARCH_ __mips _MIPS_ISA _MIPS_ISA_MIPS32 __mips_isa_rev __mips_o32 _ABIO32 _MIPS_SIM __mips_eabi MIPSEB _MIPSEB MIPSEL _MIPSEL __mips64 __mips64__ _MIPS_ISA_MIPS64 __mips_n32 _ABIN32 __mips_n64 _ABI64 __arm __arm__ __ARM_ARCH_7K__ __ARM_ARCH_ 6T2 __ARM_ARCH_ISA_THUMB __ARM_32BIT_STATE __ARM_EABI__ __ARM_PCS __SOFTFP__ xscale __XSCALE__ __THUMBEL__ __thumb__ __thumb2__ __ARM_FEATURE_SIMD32 __APCS_32__ __VFP_FP__ __ARM_VFPV2__ __ARM_VFPV3__ __ARM_VFPV4__ __ARM_FEATURE_DSP __ARM_FEATURE_SAT __ARM_FEATURE_QBIT __ARM_ARCH_ISA_ARM __THUMB_INTERWORK__ __ARM_PCS_VFP __ARM_ARCH_EXT_IDIV__ __ARMEL__ __ARMEB__ __le32__ __pnacl__ _ARM_ WIN32 WINNT __MSVCRT__ __MINGW32__ __sparcv8__ __sparcv9__ __sparc_v9__ __myriad2 __myriad2__ __sparcv8 __sparcv9 _M_X64 _M_AMD64 __arch64__ __sparc64__ WIN64 __MINGW64__ wasm __wasm_simd128__ le64 wasm32 wasm64 transactional-execution cnmips 3dnowa 3dnow sse4 -mpower8-vector -mno-vsx -mdirect-move x87 adx -popcnt -prfchw -mmx +soft-float-abi +vfp2 +vfp3 +vfp4 +fp-armv8 +hwdiv +hwdiv-arm +fp-only-sp +fp16 +neonfp -neonfp $1 v0 $2 $3 a0 $4 a1 $5 $6 a3 $7 a4 $8 a5 $9 a6 $10 a7 $11 $12 $13 $14 $15 $16 $17 $18 s3 $19 $20 s5 $21 s6 $22 s7 $23 $24 $25 k0 $26 $27 $28 $sp $29 $fp $30 $31 $f0 $f1 $f2 $f3 $f4 $f5 $f6 $f7 $f8 $f9 $f10 $f11 $f12 $f13 $f14 $f15 $f16 $f17 $f18 $f19 $f20 $f21 $f22 $f23 $f24 $f25 $f26 $f27 $f28 $f29 $f30 $f31 $fcc0 $fcc1 $fcc2 $fcc3 $fcc4 $fcc5 $fcc6 $fcc7 $ac1hi $ac1lo $ac2hi $ac2lo $ac3hi $ac3lo $w0 $w1 $w2 $w3 $w4 $w5 $w6 $w7 $w8 $w9 $w10 $w11 $w12 $w13 $w14 $w15 $w16 $w17 $w18 $w19 $w20 $w21 $w22 $w23 $w24 $w25 $w26 $w27 $w28 $w29 $w30 $w31 $msair $msacsr $msaaccess $msasave $msamodify $msarequest $msamap $msaunmap r9 r10 r11 lr __builtin_bitrev __builtin_getid __builtin_getps __builtin_setps vUiUi __builtin_wasm_memory_size __builtin_wasm_grow_memory vz __clear_cache vv*v* __builtin_mips_addu_qb V4ScV4ScV4Sc __builtin_mips_addu_s_qb __builtin_mips_subu_qb __builtin_mips_subu_s_qb __builtin_mips_addq_ph V2sV2sV2s __builtin_mips_addq_s_ph __builtin_mips_subq_ph __builtin_mips_subq_s_ph __builtin_mips_madd LLiLLiii __builtin_mips_maddu LLiLLiUiUi __builtin_mips_msub __builtin_mips_msubu __builtin_mips_addq_s_w __builtin_mips_subq_s_w __builtin_mips_addsc __builtin_mips_addwc __builtin_mips_modsub __builtin_mips_raddu_w_qb iV4Sc __builtin_mips_absq_s_ph __builtin_mips_absq_s_w __builtin_mips_precrq_qb_ph V4ScV2sV2s __builtin_mips_precrqu_s_qb_ph __builtin_mips_precrq_ph_w V2sii __builtin_mips_precrq_rs_ph_w __builtin_mips_preceq_w_phl iV2s __builtin_mips_preceq_w_phr __builtin_mips_precequ_ph_qbl V2sV4Sc __builtin_mips_precequ_ph_qbr __builtin_mips_precequ_ph_qbla __builtin_mips_precequ_ph_qbra __builtin_mips_preceu_ph_qbl __builtin_mips_preceu_ph_qbr __builtin_mips_preceu_ph_qbla __builtin_mips_preceu_ph_qbra __builtin_mips_shll_qb V4ScV4Sci __builtin_mips_shrl_qb __builtin_mips_shll_ph V2sV2si __builtin_mips_shll_s_ph __builtin_mips_shra_ph __builtin_mips_shra_r_ph __builtin_mips_shll_s_w __builtin_mips_shra_r_w __builtin_mips_shilo LLiLLii __builtin_mips_muleu_s_ph_qbl V2sV4ScV2s __builtin_mips_muleu_s_ph_qbr __builtin_mips_mulq_rs_ph __builtin_mips_muleq_s_w_phl iV2sV2s __builtin_mips_muleq_s_w_phr __builtin_mips_mulsaq_s_w_ph LLiLLiV2sV2s __builtin_mips_maq_s_w_phl __builtin_mips_maq_s_w_phr __builtin_mips_maq_sa_w_phl __builtin_mips_maq_sa_w_phr __builtin_mips_mult LLiii __builtin_mips_multu LLiUiUi __builtin_mips_dpau_h_qbl LLiLLiV4ScV4Sc __builtin_mips_dpau_h_qbr __builtin_mips_dpsu_h_qbl __builtin_mips_dpsu_h_qbr __builtin_mips_dpaq_s_w_ph __builtin_mips_dpsq_s_w_ph __builtin_mips_dpaq_sa_l_w __builtin_mips_dpsq_sa_l_w __builtin_mips_cmpu_eq_qb vV4ScV4Sc __builtin_mips_cmpu_lt_qb __builtin_mips_cmpu_le_qb __builtin_mips_cmpgu_eq_qb iV4ScV4Sc __builtin_mips_cmpgu_lt_qb __builtin_mips_cmpgu_le_qb __builtin_mips_cmp_eq_ph vV2sV2s __builtin_mips_cmp_lt_ph __builtin_mips_cmp_le_ph __builtin_mips_extr_s_h iLLii __builtin_mips_extr_w __builtin_mips_extr_rs_w __builtin_mips_extr_r_w __builtin_mips_extp __builtin_mips_extpdp __builtin_mips_wrdsp viIi __builtin_mips_rddsp __builtin_mips_insv __builtin_mips_bitrev __builtin_mips_packrl_ph __builtin_mips_repl_qb __builtin_mips_repl_ph V2si __builtin_mips_pick_qb __builtin_mips_pick_ph __builtin_mips_mthlip __builtin_mips_bposge32 __builtin_mips_lbux iv*i __builtin_mips_lhx __builtin_mips_lwx __builtin_mips_absq_s_qb __builtin_mips_addqh_ph __builtin_mips_addqh_r_ph __builtin_mips_addqh_w __builtin_mips_addqh_r_w __builtin_mips_addu_ph __builtin_mips_addu_s_ph __builtin_mips_adduh_qb __builtin_mips_adduh_r_qb __builtin_mips_append iiiIi __builtin_mips_balign __builtin_mips_cmpgdu_eq_qb __builtin_mips_cmpgdu_lt_qb __builtin_mips_cmpgdu_le_qb __builtin_mips_dpa_w_ph __builtin_mips_dps_w_ph __builtin_mips_dpaqx_s_w_ph __builtin_mips_dpaqx_sa_w_ph __builtin_mips_dpax_w_ph __builtin_mips_dpsx_w_ph __builtin_mips_dpsqx_s_w_ph __builtin_mips_dpsqx_sa_w_ph __builtin_mips_mul_ph __builtin_mips_mul_s_ph __builtin_mips_mulq_rs_w __builtin_mips_mulq_s_ph __builtin_mips_mulq_s_w __builtin_mips_mulsa_w_ph __builtin_mips_precr_qb_ph __builtin_mips_precr_sra_ph_w V2siiIi __builtin_mips_precr_sra_r_ph_w __builtin_mips_prepend __builtin_mips_shra_qb __builtin_mips_shra_r_qb __builtin_mips_shrl_ph __builtin_mips_subqh_ph __builtin_mips_subqh_r_ph __builtin_mips_subqh_w __builtin_mips_subqh_r_w __builtin_mips_subu_ph __builtin_mips_subu_s_ph __builtin_mips_subuh_qb __builtin_mips_subuh_r_qb __builtin_msa_add_a_b V16ScV16ScV16Sc __builtin_msa_add_a_h __builtin_msa_add_a_w __builtin_msa_add_a_d V2SLLiV2SLLiV2SLLi __builtin_msa_adds_a_b __builtin_msa_adds_a_h __builtin_msa_adds_a_w __builtin_msa_adds_a_d __builtin_msa_adds_s_b __builtin_msa_adds_s_h __builtin_msa_adds_s_w __builtin_msa_adds_s_d __builtin_msa_adds_u_b V16UcV16UcV16Uc __builtin_msa_adds_u_h __builtin_msa_adds_u_w __builtin_msa_adds_u_d V2ULLiV2ULLiV2ULLi __builtin_msa_addv_b __builtin_msa_addv_h V8sV8sV8s __builtin_msa_addv_w V4iV4iV4i __builtin_msa_addv_d V2LLiV2LLiV2LLi __builtin_msa_addvi_b __builtin_msa_addvi_h V8sV8sIUi __builtin_msa_addvi_w V4iV4iIUi __builtin_msa_addvi_d V2LLiV2LLiIUi __builtin_msa_and_v __builtin_msa_andi_b V16UcV16UcIUi __builtin_msa_asub_s_b __builtin_msa_asub_s_h __builtin_msa_asub_s_w __builtin_msa_asub_s_d __builtin_msa_asub_u_b __builtin_msa_asub_u_h __builtin_msa_asub_u_w __builtin_msa_asub_u_d __builtin_msa_ave_s_b __builtin_msa_ave_s_h __builtin_msa_ave_s_w __builtin_msa_ave_s_d __builtin_msa_ave_u_b __builtin_msa_ave_u_h __builtin_msa_ave_u_w __builtin_msa_ave_u_d __builtin_msa_aver_s_b __builtin_msa_aver_s_h __builtin_msa_aver_s_w __builtin_msa_aver_s_d __builtin_msa_aver_u_b __builtin_msa_aver_u_h __builtin_msa_aver_u_w __builtin_msa_aver_u_d __builtin_msa_bclr_b __builtin_msa_bclr_h __builtin_msa_bclr_w __builtin_msa_bclr_d __builtin_msa_bclri_b __builtin_msa_bclri_h __builtin_msa_bclri_w __builtin_msa_bclri_d V2ULLiV2ULLiIUi __builtin_msa_binsl_b V16UcV16UcV16UcV16Uc __builtin_msa_binsl_h V8UsV8UsV8UsV8Us __builtin_msa_binsl_w V4UiV4UiV4UiV4Ui __builtin_msa_binsl_d V2ULLiV2ULLiV2ULLiV2ULLi __builtin_msa_binsli_b V16UcV16UcV16UcIUi __builtin_msa_binsli_h V8UsV8UsV8UsIUi __builtin_msa_binsli_w V4UiV4UiV4UiIUi __builtin_msa_binsli_d V2ULLiV2ULLiV2ULLiIUi __builtin_msa_binsr_b __builtin_msa_binsr_h __builtin_msa_binsr_w __builtin_msa_binsr_d __builtin_msa_binsri_b __builtin_msa_binsri_h __builtin_msa_binsri_w __builtin_msa_binsri_d __builtin_msa_bmnz_v __builtin_msa_bmnzi_b __builtin_msa_bmz_v __builtin_msa_bmzi_b __builtin_msa_bneg_b __builtin_msa_bneg_h __builtin_msa_bneg_w __builtin_msa_bneg_d __builtin_msa_bnegi_b __builtin_msa_bnegi_h __builtin_msa_bnegi_w __builtin_msa_bnegi_d __builtin_msa_bnz_b __builtin_msa_bnz_h iV8Us __builtin_msa_bnz_w __builtin_msa_bnz_d iV2ULLi __builtin_msa_bnz_v __builtin_msa_bsel_v __builtin_msa_bseli_b __builtin_msa_bset_b __builtin_msa_bset_h __builtin_msa_bset_w __builtin_msa_bset_d __builtin_msa_bseti_b __builtin_msa_bseti_h __builtin_msa_bseti_w __builtin_msa_bseti_d __builtin_msa_bz_b __builtin_msa_bz_h __builtin_msa_bz_w __builtin_msa_bz_d __builtin_msa_bz_v __builtin_msa_ceq_b __builtin_msa_ceq_h __builtin_msa_ceq_w __builtin_msa_ceq_d __builtin_msa_ceqi_b V16ScV16ScISi __builtin_msa_ceqi_h V8SsV8SsISi __builtin_msa_ceqi_w V4SiV4SiISi __builtin_msa_ceqi_d V2SLLiV2SLLiISi __builtin_msa_cfcmsa __builtin_msa_cle_s_b __builtin_msa_cle_s_h __builtin_msa_cle_s_w __builtin_msa_cle_s_d __builtin_msa_cle_u_b V16ScV16UcV16Uc __builtin_msa_cle_u_h V8SsV8UsV8Us __builtin_msa_cle_u_w V4SiV4UiV4Ui __builtin_msa_cle_u_d V2SLLiV2ULLiV2ULLi __builtin_msa_clei_s_b __builtin_msa_clei_s_h __builtin_msa_clei_s_w __builtin_msa_clei_s_d __builtin_msa_clei_u_b V16ScV16UcIUi __builtin_msa_clei_u_h V8SsV8UsIUi __builtin_msa_clei_u_w V4SiV4UiIUi __builtin_msa_clei_u_d V2SLLiV2ULLiIUi __builtin_msa_clt_s_b __builtin_msa_clt_s_h __builtin_msa_clt_s_w __builtin_msa_clt_s_d __builtin_msa_clt_u_b __builtin_msa_clt_u_h __builtin_msa_clt_u_w __builtin_msa_clt_u_d __builtin_msa_clti_s_b __builtin_msa_clti_s_h __builtin_msa_clti_s_w __builtin_msa_clti_s_d __builtin_msa_clti_u_b __builtin_msa_clti_u_h __builtin_msa_clti_u_w __builtin_msa_clti_u_d __builtin_msa_copy_s_b iV16ScIUi __builtin_msa_copy_s_h iV8SsIUi __builtin_msa_copy_s_w iV4SiIUi __builtin_msa_copy_s_d LLiV2SLLiIUi __builtin_msa_copy_u_b iV16UcIUi __builtin_msa_copy_u_h iV8UsIUi __builtin_msa_copy_u_w iV4UiIUi __builtin_msa_copy_u_d LLiV2ULLiIUi __builtin_msa_ctcmsa vIii __builtin_msa_div_s_b __builtin_msa_div_s_h __builtin_msa_div_s_w __builtin_msa_div_s_d __builtin_msa_div_u_b __builtin_msa_div_u_h __builtin_msa_div_u_w __builtin_msa_div_u_d __builtin_msa_dotp_s_h __builtin_msa_dotp_s_w __builtin_msa_dotp_s_d V2SLLiV4SiV4Si __builtin_msa_dotp_u_h __builtin_msa_dotp_u_w __builtin_msa_dotp_u_d V2ULLiV4UiV4Ui __builtin_msa_dpadd_s_h V8SsV8SsV16ScV16Sc __builtin_msa_dpadd_s_w V4SiV4SiV8SsV8Ss __builtin_msa_dpadd_s_d V2SLLiV2SLLiV4SiV4Si __builtin_msa_dpadd_u_h V8UsV8UsV16UcV16Uc __builtin_msa_dpadd_u_w V4UiV4UiV8UsV8Us __builtin_msa_dpadd_u_d V2ULLiV2ULLiV4UiV4Ui __builtin_msa_dpsub_s_h __builtin_msa_dpsub_s_w __builtin_msa_dpsub_s_d __builtin_msa_dpsub_u_h __builtin_msa_dpsub_u_w __builtin_msa_dpsub_u_d __builtin_msa_fadd_w V4fV4fV4f __builtin_msa_fadd_d V2dV2dV2d __builtin_msa_fcaf_w V4iV4fV4f __builtin_msa_fcaf_d V2LLiV2dV2d __builtin_msa_fceq_w __builtin_msa_fceq_d __builtin_msa_fclass_w V4iV4f __builtin_msa_fclass_d V2LLiV2d __builtin_msa_fcle_w __builtin_msa_fcle_d __builtin_msa_fclt_w __builtin_msa_fclt_d __builtin_msa_fcne_w __builtin_msa_fcne_d __builtin_msa_fcor_w __builtin_msa_fcor_d __builtin_msa_fcueq_w __builtin_msa_fcueq_d __builtin_msa_fcule_w __builtin_msa_fcule_d __builtin_msa_fcult_w __builtin_msa_fcult_d __builtin_msa_fcun_w __builtin_msa_fcun_d __builtin_msa_fcune_w __builtin_msa_fcune_d __builtin_msa_fdiv_w __builtin_msa_fdiv_d __builtin_msa_fexdo_h V8hV4fV4f __builtin_msa_fexdo_w V4fV2dV2d __builtin_msa_fexp2_w V4fV4fV4i __builtin_msa_fexp2_d V2dV2dV2LLi __builtin_msa_fexupl_w V4fV8h __builtin_msa_fexupl_d V2dV4f __builtin_msa_fexupr_w __builtin_msa_fexupr_d __builtin_msa_ffint_s_w V4fV4Si __builtin_msa_ffint_s_d V2dV2SLLi __builtin_msa_ffint_u_w V4fV4Ui __builtin_msa_ffint_u_d V2dV2ULLi __builtin_msa_ffql_w V4fV8Ss __builtin_msa_ffql_d V2dV4Si __builtin_msa_ffqr_w __builtin_msa_ffqr_d __builtin_msa_fill_b __builtin_msa_fill_h V8Ssi __builtin_msa_fill_w V4Sii __builtin_msa_fill_d V2SLLiLLi __builtin_msa_flog2_w __builtin_msa_flog2_d V2dV2d __builtin_msa_fmadd_w V4fV4fV4fV4f __builtin_msa_fmadd_d V2dV2dV2dV2d __builtin_msa_fmax_w __builtin_msa_fmax_d __builtin_msa_fmax_a_w __builtin_msa_fmax_a_d __builtin_msa_fmin_w __builtin_msa_fmin_d __builtin_msa_fmin_a_w __builtin_msa_fmin_a_d __builtin_msa_fmsub_w __builtin_msa_fmsub_d __builtin_msa_fmul_w __builtin_msa_fmul_d __builtin_msa_frint_w __builtin_msa_frint_d __builtin_msa_frcp_w __builtin_msa_frcp_d __builtin_msa_frsqrt_w __builtin_msa_frsqrt_d __builtin_msa_fsaf_w __builtin_msa_fsaf_d __builtin_msa_fseq_w __builtin_msa_fseq_d __builtin_msa_fsle_w __builtin_msa_fsle_d __builtin_msa_fslt_w __builtin_msa_fslt_d __builtin_msa_fsne_w __builtin_msa_fsne_d __builtin_msa_fsor_w __builtin_msa_fsor_d __builtin_msa_fsqrt_w __builtin_msa_fsqrt_d __builtin_msa_fsub_w __builtin_msa_fsub_d __builtin_msa_fsueq_w __builtin_msa_fsueq_d __builtin_msa_fsule_w __builtin_msa_fsule_d __builtin_msa_fsult_w __builtin_msa_fsult_d __builtin_msa_fsun_w __builtin_msa_fsun_d __builtin_msa_fsune_w __builtin_msa_fsune_d __builtin_msa_ftint_s_w V4SiV4f __builtin_msa_ftint_s_d V2SLLiV2d __builtin_msa_ftint_u_w V4UiV4f __builtin_msa_ftint_u_d V2ULLiV2d __builtin_msa_ftq_h V4UiV4fV4f __builtin_msa_ftq_w V2ULLiV2dV2d __builtin_msa_ftrunc_s_w __builtin_msa_ftrunc_s_d __builtin_msa_ftrunc_u_w __builtin_msa_ftrunc_u_d __builtin_msa_hadd_s_h __builtin_msa_hadd_s_w __builtin_msa_hadd_s_d __builtin_msa_hadd_u_h __builtin_msa_hadd_u_w __builtin_msa_hadd_u_d __builtin_msa_hsub_s_h __builtin_msa_hsub_s_w __builtin_msa_hsub_s_d __builtin_msa_hsub_u_h __builtin_msa_hsub_u_w __builtin_msa_hsub_u_d __builtin_msa_ilvev_b __builtin_msa_ilvev_h __builtin_msa_ilvev_w __builtin_msa_ilvev_d __builtin_msa_ilvl_b __builtin_msa_ilvl_h __builtin_msa_ilvl_w __builtin_msa_ilvl_d __builtin_msa_ilvod_b __builtin_msa_ilvod_h __builtin_msa_ilvod_w __builtin_msa_ilvod_d __builtin_msa_ilvr_b __builtin_msa_ilvr_h __builtin_msa_ilvr_w __builtin_msa_ilvr_d __builtin_msa_insert_b V16ScV16ScIUii __builtin_msa_insert_h V8SsV8SsIUii __builtin_msa_insert_w V4SiV4SiIUii __builtin_msa_insert_d V2SLLiV2SLLiIUiLLi __builtin_msa_insve_b V16ScV16ScIUiV16Sc __builtin_msa_insve_h V8SsV8SsIUiV8Ss __builtin_msa_insve_w V4SiV4SiIUiV4Si __builtin_msa_insve_d V2SLLiV2SLLiIUiV2SLLi __builtin_msa_ld_b V16Scv*Ii __builtin_msa_ld_h V8Ssv*Ii __builtin_msa_ld_w V4Siv*Ii __builtin_msa_ld_d V2SLLiv*Ii __builtin_msa_ldi_b V16cIi __builtin_msa_ldi_h __builtin_msa_ldi_w __builtin_msa_ldi_d __builtin_msa_madd_q_h V8SsV8SsV8SsV8Ss __builtin_msa_madd_q_w V4SiV4SiV4SiV4Si __builtin_msa_maddr_q_h __builtin_msa_maddr_q_w __builtin_msa_maddv_b V16ScV16ScV16ScV16Sc __builtin_msa_maddv_h __builtin_msa_maddv_w __builtin_msa_maddv_d V2SLLiV2SLLiV2SLLiV2SLLi __builtin_msa_max_a_b __builtin_msa_max_a_h __builtin_msa_max_a_w __builtin_msa_max_a_d __builtin_msa_max_s_b __builtin_msa_max_s_h __builtin_msa_max_s_w __builtin_msa_max_s_d __builtin_msa_max_u_b __builtin_msa_max_u_h __builtin_msa_max_u_w __builtin_msa_max_u_d __builtin_msa_maxi_s_b V16ScV16ScIi __builtin_msa_maxi_s_h V8SsV8SsIi __builtin_msa_maxi_s_w V4SiV4SiIi __builtin_msa_maxi_s_d V2SLLiV2SLLiIi __builtin_msa_maxi_u_b V16UcV16UcIi __builtin_msa_maxi_u_h __builtin_msa_maxi_u_w __builtin_msa_maxi_u_d __builtin_msa_min_a_b __builtin_msa_min_a_h __builtin_msa_min_a_w __builtin_msa_min_a_d __builtin_msa_min_s_b __builtin_msa_min_s_h __builtin_msa_min_s_w __builtin_msa_min_s_d __builtin_msa_min_u_b __builtin_msa_min_u_h __builtin_msa_min_u_w __builtin_msa_min_u_d __builtin_msa_mini_s_b __builtin_msa_mini_s_h __builtin_msa_mini_s_w __builtin_msa_mini_s_d __builtin_msa_mini_u_b __builtin_msa_mini_u_h __builtin_msa_mini_u_w __builtin_msa_mini_u_d __builtin_msa_mod_s_b __builtin_msa_mod_s_h __builtin_msa_mod_s_w __builtin_msa_mod_s_d __builtin_msa_mod_u_b __builtin_msa_mod_u_h __builtin_msa_mod_u_w __builtin_msa_mod_u_d __builtin_msa_move_v __builtin_msa_msub_q_h __builtin_msa_msub_q_w __builtin_msa_msubr_q_h __builtin_msa_msubr_q_w __builtin_msa_msubv_b __builtin_msa_msubv_h __builtin_msa_msubv_w __builtin_msa_msubv_d __builtin_msa_mul_q_h __builtin_msa_mul_q_w __builtin_msa_mulr_q_h __builtin_msa_mulr_q_w __builtin_msa_mulv_b __builtin_msa_mulv_h __builtin_msa_mulv_w __builtin_msa_mulv_d __builtin_msa_nloc_b __builtin_msa_nloc_h __builtin_msa_nloc_w __builtin_msa_nloc_d __builtin_msa_nlzc_b __builtin_msa_nlzc_h __builtin_msa_nlzc_w __builtin_msa_nlzc_d __builtin_msa_nor_v __builtin_msa_nori_b V16UcV16cIUi __builtin_msa_or_v __builtin_msa_ori_b __builtin_msa_pckev_b __builtin_msa_pckev_h __builtin_msa_pckev_w __builtin_msa_pckev_d __builtin_msa_pckod_b __builtin_msa_pckod_h __builtin_msa_pckod_w __builtin_msa_pckod_d __builtin_msa_pcnt_b __builtin_msa_pcnt_h __builtin_msa_pcnt_w __builtin_msa_pcnt_d __builtin_msa_sat_s_b V16ScV16ScIUi __builtin_msa_sat_s_h V8SsV8SsIUi __builtin_msa_sat_s_w V4SiV4SiIUi __builtin_msa_sat_s_d V2SLLiV2SLLiIUi __builtin_msa_sat_u_b __builtin_msa_sat_u_h __builtin_msa_sat_u_w __builtin_msa_sat_u_d __builtin_msa_shf_b __builtin_msa_shf_h __builtin_msa_shf_w __builtin_msa_sld_b V16cV16cV16cUi __builtin_msa_sld_h V8sV8sV8sUi __builtin_msa_sld_w V4iV4iV4iUi __builtin_msa_sld_d V2LLiV2LLiV2LLiUi __builtin_msa_sldi_b V16cV16cV16cIUi __builtin_msa_sldi_h V8sV8sV8sIUi __builtin_msa_sldi_w V4iV4iV4iIUi __builtin_msa_sldi_d V2LLiV2LLiV2LLiIUi __builtin_msa_sll_b __builtin_msa_sll_h __builtin_msa_sll_w __builtin_msa_sll_d __builtin_msa_slli_b __builtin_msa_slli_h __builtin_msa_slli_w __builtin_msa_slli_d __builtin_msa_splat_b __builtin_msa_splat_h V8sV8sUi __builtin_msa_splat_w V4iV4iUi __builtin_msa_splat_d V2LLiV2LLiUi __builtin_msa_splati_b __builtin_msa_splati_h __builtin_msa_splati_w __builtin_msa_splati_d __builtin_msa_sra_b __builtin_msa_sra_h __builtin_msa_sra_w __builtin_msa_sra_d __builtin_msa_srai_b __builtin_msa_srai_h __builtin_msa_srai_w __builtin_msa_srai_d __builtin_msa_srar_b __builtin_msa_srar_h __builtin_msa_srar_w __builtin_msa_srar_d __builtin_msa_srari_b __builtin_msa_srari_h __builtin_msa_srari_w __builtin_msa_srari_d __builtin_msa_srl_b __builtin_msa_srl_h __builtin_msa_srl_w __builtin_msa_srl_d __builtin_msa_srli_b __builtin_msa_srli_h __builtin_msa_srli_w __builtin_msa_srli_d __builtin_msa_srlr_b __builtin_msa_srlr_h __builtin_msa_srlr_w __builtin_msa_srlr_d __builtin_msa_srlri_b __builtin_msa_srlri_h __builtin_msa_srlri_w __builtin_msa_srlri_d __builtin_msa_st_b vV16Scv*Ii __builtin_msa_st_h vV8Ssv*Ii __builtin_msa_st_w vV4Siv*Ii __builtin_msa_st_d vV2SLLiv*Ii __builtin_msa_subs_s_b __builtin_msa_subs_s_h __builtin_msa_subs_s_w __builtin_msa_subs_s_d __builtin_msa_subs_u_b __builtin_msa_subs_u_h __builtin_msa_subs_u_w __builtin_msa_subs_u_d __builtin_msa_subsus_u_b V16UcV16UcV16Sc __builtin_msa_subsus_u_h V8UsV8UsV8Ss __builtin_msa_subsus_u_w V4UiV4UiV4Si __builtin_msa_subsus_u_d V2ULLiV2ULLiV2SLLi __builtin_msa_subsuu_s_b __builtin_msa_subsuu_s_h __builtin_msa_subsuu_s_w __builtin_msa_subsuu_s_d __builtin_msa_subv_b __builtin_msa_subv_h __builtin_msa_subv_w __builtin_msa_subv_d __builtin_msa_subvi_b __builtin_msa_subvi_h __builtin_msa_subvi_w __builtin_msa_subvi_d __builtin_msa_vshf_b V16cV16cV16cV16c __builtin_msa_vshf_h V8sV8sV8sV8s __builtin_msa_vshf_w V4iV4iV4iV4i __builtin_msa_vshf_d V2LLiV2LLiV2LLiV2LLi __builtin_msa_xor_v __builtin_msa_xori_b r12 r13 r14 r15 f0 f6 f1 f7 f10 f12 f14 f9 f11 f13 f15 __builtin_tbegin __builtin_tbegin_nofloat __builtin_tbeginc __builtin_tabort __builtin_tend __builtin_tx_nesting_depth __builtin_tx_assist __builtin_non_tx_store vULi*ULi __builtin_s390_lcbb UivC*Ii __builtin_s390_vlbb V16ScvC*Ii __builtin_s390_vll V16ScUivC* __builtin_s390_vstl vV16ScUiv* __builtin_s390_vperm __builtin_s390_vpdi V2ULLiV2ULLiV2ULLiIi __builtin_s390_vpksh V16ScV8SsV8Ss __builtin_s390_vpkshs V16ScV8SsV8Ssi* __builtin_s390_vpksf V8SsV4SiV4Si __builtin_s390_vpksfs V8SsV4SiV4Sii* __builtin_s390_vpksg V4SiV2SLLiV2SLLi __builtin_s390_vpksgs V4SiV2SLLiV2SLLii* __builtin_s390_vpklsh V16UcV8UsV8Us __builtin_s390_vpklshs V16UcV8UsV8Usi* __builtin_s390_vpklsf V8UsV4UiV4Ui __builtin_s390_vpklsfs V8UsV4UiV4Uii* __builtin_s390_vpklsg V4UiV2ULLiV2ULLi __builtin_s390_vpklsgs V4UiV2ULLiV2ULLii* __builtin_s390_vuphb V8SsV16Sc __builtin_s390_vuphh V4SiV8Ss __builtin_s390_vuphf V2SLLiV4Si __builtin_s390_vuplb __builtin_s390_vuplhw __builtin_s390_vuplf __builtin_s390_vuplhb V8UsV16Uc __builtin_s390_vuplhh V4UiV8Us __builtin_s390_vuplhf V2ULLiV4Ui __builtin_s390_vupllb __builtin_s390_vupllh __builtin_s390_vupllf __builtin_s390_vaq __builtin_s390_vacq __builtin_s390_vaccb __builtin_s390_vacch __builtin_s390_vaccf __builtin_s390_vaccg __builtin_s390_vaccq __builtin_s390_vacccq __builtin_s390_vavgb __builtin_s390_vavgh __builtin_s390_vavgf __builtin_s390_vavgg __builtin_s390_vavglb __builtin_s390_vavglh __builtin_s390_vavglf __builtin_s390_vavglg __builtin_s390_vceqbs V16ScV16ScV16Sci* __builtin_s390_vceqhs V8SsV8SsV8Ssi* __builtin_s390_vceqfs V4SiV4SiV4Sii* __builtin_s390_vceqgs V2SLLiV2SLLiV2SLLii* __builtin_s390_vchbs __builtin_s390_vchhs __builtin_s390_vchfs __builtin_s390_vchgs __builtin_s390_vchlbs V16ScV16UcV16Uci* __builtin_s390_vchlhs V8SsV8UsV8Usi* __builtin_s390_vchlfs V4SiV4UiV4Uii* __builtin_s390_vchlgs V2SLLiV2ULLiV2ULLii* __builtin_s390_vcksm __builtin_s390_vclzb __builtin_s390_vclzh __builtin_s390_vclzf __builtin_s390_vclzg __builtin_s390_vctzb __builtin_s390_vctzh __builtin_s390_vctzf __builtin_s390_vctzg __builtin_s390_verimb V16UcV16UcV16UcV16UcIi __builtin_s390_verimh V8UsV8UsV8UsV8UsIi __builtin_s390_verimf V4UiV4UiV4UiV4UiIi __builtin_s390_verimg V2ULLiV2ULLiV2ULLiV2ULLiIi __builtin_s390_verllb V16UcV16UcUi __builtin_s390_verllh V8UsV8UsUi __builtin_s390_verllf V4UiV4UiUi __builtin_s390_verllg V2ULLiV2ULLiUi __builtin_s390_verllvb __builtin_s390_verllvh __builtin_s390_verllvf __builtin_s390_verllvg __builtin_s390_vgfmb __builtin_s390_vgfmh __builtin_s390_vgfmf __builtin_s390_vgfmg V16UcV2ULLiV2ULLi __builtin_s390_vgfmab V8UsV16UcV16UcV8Us __builtin_s390_vgfmah V4UiV8UsV8UsV4Ui __builtin_s390_vgfmaf V2ULLiV4UiV4UiV2ULLi __builtin_s390_vgfmag V16UcV2ULLiV2ULLiV16Uc __builtin_s390_vmahb __builtin_s390_vmahh __builtin_s390_vmahf __builtin_s390_vmalhb __builtin_s390_vmalhh __builtin_s390_vmalhf __builtin_s390_vmaeb V8SsV16ScV16ScV8Ss __builtin_s390_vmaeh V4SiV8SsV8SsV4Si __builtin_s390_vmaef V2SLLiV4SiV4SiV2SLLi __builtin_s390_vmaleb __builtin_s390_vmaleh __builtin_s390_vmalef __builtin_s390_vmaob __builtin_s390_vmaoh __builtin_s390_vmaof __builtin_s390_vmalob __builtin_s390_vmaloh __builtin_s390_vmalof __builtin_s390_vmhb __builtin_s390_vmhh __builtin_s390_vmhf __builtin_s390_vmlhb __builtin_s390_vmlhh __builtin_s390_vmlhf __builtin_s390_vmeb __builtin_s390_vmeh __builtin_s390_vmef __builtin_s390_vmleb __builtin_s390_vmleh __builtin_s390_vmlef __builtin_s390_vmob __builtin_s390_vmoh __builtin_s390_vmof __builtin_s390_vmlob __builtin_s390_vmloh __builtin_s390_vmlof __builtin_s390_vpopctb __builtin_s390_vpopcth __builtin_s390_vpopctf __builtin_s390_vpopctg __builtin_s390_vsq __builtin_s390_vsbcbiq __builtin_s390_vsbiq __builtin_s390_vscbib __builtin_s390_vscbih __builtin_s390_vscbif __builtin_s390_vscbig __builtin_s390_vscbiq __builtin_s390_vsl __builtin_s390_vslb __builtin_s390_vsldb V16UcV16UcV16UcIi __builtin_s390_vsra __builtin_s390_vsrab __builtin_s390_vsrl __builtin_s390_vsrlb __builtin_s390_vsumb V4UiV16UcV16Uc __builtin_s390_vsumh __builtin_s390_vsumgh V2ULLiV8UsV8Us __builtin_s390_vsumgf __builtin_s390_vsumqf V16UcV4UiV4Ui __builtin_s390_vsumqg __builtin_s390_vtm iV16UcV16Uc __builtin_s390_vfaeb __builtin_s390_vfaebs V16UcV16UcV16UcIii* __builtin_s390_vfaeh __builtin_s390_vfaehs __builtin_s390_vfaef __builtin_s390_vfaefs __builtin_s390_vfaezb __builtin_s390_vfaezbs __builtin_s390_vfaezh __builtin_s390_vfaezhs __builtin_s390_vfaezf __builtin_s390_vfaezfs __builtin_s390_vfeeb __builtin_s390_vfeebs V16UcV16UcV16Uci* __builtin_s390_vfeeh __builtin_s390_vfeehs V8UsV8UsV8Usi* __builtin_s390_vfeef __builtin_s390_vfeefs V4UiV4UiV4Uii* __builtin_s390_vfeezb __builtin_s390_vfeezbs __builtin_s390_vfeezh __builtin_s390_vfeezhs __builtin_s390_vfeezf __builtin_s390_vfeezfs __builtin_s390_vfeneb __builtin_s390_vfenebs __builtin_s390_vfeneh __builtin_s390_vfenehs __builtin_s390_vfenef __builtin_s390_vfenefs __builtin_s390_vfenezb __builtin_s390_vfenezbs __builtin_s390_vfenezh __builtin_s390_vfenezhs __builtin_s390_vfenezf __builtin_s390_vfenezfs __builtin_s390_vistrb __builtin_s390_vistrbs V16UcV16Uci* __builtin_s390_vistrh __builtin_s390_vistrhs __builtin_s390_vistrf __builtin_s390_vistrfs __builtin_s390_vstrcb __builtin_s390_vstrcbs V16UcV16UcV16UcV16UcIii* __builtin_s390_vstrch __builtin_s390_vstrchs V8UsV8UsV8UsV8UsIii* __builtin_s390_vstrcf __builtin_s390_vstrcfs V4UiV4UiV4UiV4UiIii* __builtin_s390_vstrczb __builtin_s390_vstrczbs __builtin_s390_vstrczh __builtin_s390_vstrczhs __builtin_s390_vstrczf __builtin_s390_vstrczfs __builtin_s390_vfcedbs V2SLLiV2dV2di* __builtin_s390_vfchdbs __builtin_s390_vfchedbs __builtin_s390_vfidb V2dV2dIiIi __builtin_s390_vflndb __builtin_s390_vflpdb __builtin_s390_vfmadb __builtin_s390_vfmsdb __builtin_s390_vfsqdb __builtin_s390_vftcidb V2SLLiV2dIii* r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 o0 o1 o2 o3 o4 o5 o6 o7 l0 l5 l6 l7 i0 i2 i3 i4 i5 i6 rv rr1 rca p0 p1 p3 sa0 lc0 sa1 lc1 usr ugp __builtin_SI_to_SXTHI_asrh __builtin_brev_ldd LLi*LLi*LLi*i __builtin_brev_ldw i*i*i*i __builtin_brev_ldh s*s*s*i __builtin_brev_lduh Us*Us*Us*i __builtin_brev_ldb c*c*c*i __builtin_brev_ldub Uc*Uc*Uc*i __builtin_circ_ldd LLi*LLi*LLi*iIi __builtin_circ_ldw i*i*i*iIi __builtin_circ_ldh s*s*s*iIi __builtin_circ_lduh Us*Us*Us*iIi __builtin_circ_ldb c*c*c*iIi __builtin_circ_ldub Uc*Uc*Uc*iIi __builtin_brev_std LLi*LLi*LLii __builtin_brev_stw i*i*ii __builtin_brev_sth s*s*ii __builtin_brev_sthhi __builtin_brev_stb c*c*ii __builtin_circ_std LLi*LLi*LLiiIi __builtin_circ_stw i*i*iiIi __builtin_circ_sth s*s*iiIi __builtin_circ_sthhi __builtin_circ_stb c*c*iiIi __builtin_HEXAGON_C2_cmpeq __builtin_HEXAGON_C2_cmpgt __builtin_HEXAGON_C2_cmpgtu __builtin_HEXAGON_C2_cmpeqp iLLiLLi __builtin_HEXAGON_C2_cmpgtp __builtin_HEXAGON_C2_cmpgtup __builtin_HEXAGON_A4_rcmpeqi __builtin_HEXAGON_A4_rcmpneqi __builtin_HEXAGON_A4_rcmpeq __builtin_HEXAGON_A4_rcmpneq __builtin_HEXAGON_C2_bitsset __builtin_HEXAGON_C2_bitsclr __builtin_HEXAGON_C4_nbitsset __builtin_HEXAGON_C4_nbitsclr __builtin_HEXAGON_C2_cmpeqi __builtin_HEXAGON_C2_cmpgti __builtin_HEXAGON_C2_cmpgtui __builtin_HEXAGON_C2_cmpgei __builtin_HEXAGON_C2_cmpgeui __builtin_HEXAGON_C2_cmplt __builtin_HEXAGON_C2_cmpltu __builtin_HEXAGON_C2_bitsclri __builtin_HEXAGON_C4_nbitsclri __builtin_HEXAGON_C4_cmpneqi __builtin_HEXAGON_C4_cmpltei __builtin_HEXAGON_C4_cmplteui __builtin_HEXAGON_C4_cmpneq __builtin_HEXAGON_C4_cmplte __builtin_HEXAGON_C4_cmplteu __builtin_HEXAGON_C2_and __builtin_HEXAGON_C2_or __builtin_HEXAGON_C2_xor __builtin_HEXAGON_C2_andn __builtin_HEXAGON_C2_not __builtin_HEXAGON_C2_orn __builtin_HEXAGON_C4_and_and __builtin_HEXAGON_C4_and_or __builtin_HEXAGON_C4_or_and __builtin_HEXAGON_C4_or_or __builtin_HEXAGON_C4_and_andn __builtin_HEXAGON_C4_and_orn __builtin_HEXAGON_C4_or_andn __builtin_HEXAGON_C4_or_orn __builtin_HEXAGON_C2_pxfer_map __builtin_HEXAGON_C2_any8 __builtin_HEXAGON_C2_all8 __builtin_HEXAGON_C2_vitpack __builtin_HEXAGON_C2_mux __builtin_HEXAGON_C2_muxii __builtin_HEXAGON_C2_muxir __builtin_HEXAGON_C2_muxri __builtin_HEXAGON_C2_vmux LLiiLLiLLi __builtin_HEXAGON_C2_mask __builtin_HEXAGON_A2_vcmpbeq __builtin_HEXAGON_A4_vcmpbeqi __builtin_HEXAGON_A4_vcmpbeq_any __builtin_HEXAGON_A2_vcmpbgtu __builtin_HEXAGON_A4_vcmpbgtui __builtin_HEXAGON_A4_vcmpbgt __builtin_HEXAGON_A4_vcmpbgti __builtin_HEXAGON_A4_cmpbeq __builtin_HEXAGON_A4_cmpbeqi __builtin_HEXAGON_A4_cmpbgtu __builtin_HEXAGON_A4_cmpbgtui __builtin_HEXAGON_A4_cmpbgt __builtin_HEXAGON_A4_cmpbgti __builtin_HEXAGON_A2_vcmpheq __builtin_HEXAGON_A2_vcmphgt __builtin_HEXAGON_A2_vcmphgtu __builtin_HEXAGON_A4_vcmpheqi __builtin_HEXAGON_A4_vcmphgti __builtin_HEXAGON_A4_vcmphgtui __builtin_HEXAGON_A4_cmpheq __builtin_HEXAGON_A4_cmphgt __builtin_HEXAGON_A4_cmphgtu __builtin_HEXAGON_A4_cmpheqi __builtin_HEXAGON_A4_cmphgti __builtin_HEXAGON_A4_cmphgtui __builtin_HEXAGON_A2_vcmpweq __builtin_HEXAGON_A2_vcmpwgt __builtin_HEXAGON_A2_vcmpwgtu __builtin_HEXAGON_A4_vcmpweqi __builtin_HEXAGON_A4_vcmpwgti __builtin_HEXAGON_A4_vcmpwgtui __builtin_HEXAGON_A4_boundscheck iiLLi __builtin_HEXAGON_A4_tlbmatch __builtin_HEXAGON_C2_tfrpr __builtin_HEXAGON_C2_tfrrp __builtin_HEXAGON_C4_fastcorner9 __builtin_HEXAGON_C4_fastcorner9_not __builtin_HEXAGON_M2_mpy_acc_hh_s0 __builtin_HEXAGON_M2_mpy_acc_hh_s1 __builtin_HEXAGON_M2_mpy_acc_hl_s0 __builtin_HEXAGON_M2_mpy_acc_hl_s1 __builtin_HEXAGON_M2_mpy_acc_lh_s0 __builtin_HEXAGON_M2_mpy_acc_lh_s1 __builtin_HEXAGON_M2_mpy_acc_ll_s0 __builtin_HEXAGON_M2_mpy_acc_ll_s1 __builtin_HEXAGON_M2_mpy_nac_hh_s0 __builtin_HEXAGON_M2_mpy_nac_hh_s1 __builtin_HEXAGON_M2_mpy_nac_hl_s0 __builtin_HEXAGON_M2_mpy_nac_hl_s1 __builtin_HEXAGON_M2_mpy_nac_lh_s0 __builtin_HEXAGON_M2_mpy_nac_lh_s1 __builtin_HEXAGON_M2_mpy_nac_ll_s0 __builtin_HEXAGON_M2_mpy_nac_ll_s1 __builtin_HEXAGON_M2_mpy_acc_sat_hh_s0 __builtin_HEXAGON_M2_mpy_acc_sat_hh_s1 __builtin_HEXAGON_M2_mpy_acc_sat_hl_s0 __builtin_HEXAGON_M2_mpy_acc_sat_hl_s1 __builtin_HEXAGON_M2_mpy_acc_sat_lh_s0 __builtin_HEXAGON_M2_mpy_acc_sat_lh_s1 __builtin_HEXAGON_M2_mpy_acc_sat_ll_s0 __builtin_HEXAGON_M2_mpy_acc_sat_ll_s1 __builtin_HEXAGON_M2_mpy_nac_sat_hh_s0 __builtin_HEXAGON_M2_mpy_nac_sat_hh_s1 __builtin_HEXAGON_M2_mpy_nac_sat_hl_s0 __builtin_HEXAGON_M2_mpy_nac_sat_hl_s1 __builtin_HEXAGON_M2_mpy_nac_sat_lh_s0 __builtin_HEXAGON_M2_mpy_nac_sat_lh_s1 __builtin_HEXAGON_M2_mpy_nac_sat_ll_s0 __builtin_HEXAGON_M2_mpy_nac_sat_ll_s1 __builtin_HEXAGON_M2_mpy_hh_s0 __builtin_HEXAGON_M2_mpy_hh_s1 __builtin_HEXAGON_M2_mpy_hl_s0 __builtin_HEXAGON_M2_mpy_hl_s1 __builtin_HEXAGON_M2_mpy_lh_s0 __builtin_HEXAGON_M2_mpy_lh_s1 __builtin_HEXAGON_M2_mpy_ll_s0 __builtin_HEXAGON_M2_mpy_ll_s1 __builtin_HEXAGON_M2_mpy_sat_hh_s0 __builtin_HEXAGON_M2_mpy_sat_hh_s1 __builtin_HEXAGON_M2_mpy_sat_hl_s0 __builtin_HEXAGON_M2_mpy_sat_hl_s1 __builtin_HEXAGON_M2_mpy_sat_lh_s0 __builtin_HEXAGON_M2_mpy_sat_lh_s1 __builtin_HEXAGON_M2_mpy_sat_ll_s0 __builtin_HEXAGON_M2_mpy_sat_ll_s1 __builtin_HEXAGON_M2_mpy_rnd_hh_s0 __builtin_HEXAGON_M2_mpy_rnd_hh_s1 __builtin_HEXAGON_M2_mpy_rnd_hl_s0 __builtin_HEXAGON_M2_mpy_rnd_hl_s1 __builtin_HEXAGON_M2_mpy_rnd_lh_s0 __builtin_HEXAGON_M2_mpy_rnd_lh_s1 __builtin_HEXAGON_M2_mpy_rnd_ll_s0 __builtin_HEXAGON_M2_mpy_rnd_ll_s1 __builtin_HEXAGON_M2_mpy_sat_rnd_hh_s0 __builtin_HEXAGON_M2_mpy_sat_rnd_hh_s1 __builtin_HEXAGON_M2_mpy_sat_rnd_hl_s0 __builtin_HEXAGON_M2_mpy_sat_rnd_hl_s1 __builtin_HEXAGON_M2_mpy_sat_rnd_lh_s0 __builtin_HEXAGON_M2_mpy_sat_rnd_lh_s1 __builtin_HEXAGON_M2_mpy_sat_rnd_ll_s0 __builtin_HEXAGON_M2_mpy_sat_rnd_ll_s1 __builtin_HEXAGON_M2_mpyd_acc_hh_s0 __builtin_HEXAGON_M2_mpyd_acc_hh_s1 __builtin_HEXAGON_M2_mpyd_acc_hl_s0 __builtin_HEXAGON_M2_mpyd_acc_hl_s1 __builtin_HEXAGON_M2_mpyd_acc_lh_s0 __builtin_HEXAGON_M2_mpyd_acc_lh_s1 __builtin_HEXAGON_M2_mpyd_acc_ll_s0 __builtin_HEXAGON_M2_mpyd_acc_ll_s1 __builtin_HEXAGON_M2_mpyd_nac_hh_s0 __builtin_HEXAGON_M2_mpyd_nac_hh_s1 __builtin_HEXAGON_M2_mpyd_nac_hl_s0 __builtin_HEXAGON_M2_mpyd_nac_hl_s1 __builtin_HEXAGON_M2_mpyd_nac_lh_s0 __builtin_HEXAGON_M2_mpyd_nac_lh_s1 __builtin_HEXAGON_M2_mpyd_nac_ll_s0 __builtin_HEXAGON_M2_mpyd_nac_ll_s1 __builtin_HEXAGON_M2_mpyd_hh_s0 __builtin_HEXAGON_M2_mpyd_hh_s1 __builtin_HEXAGON_M2_mpyd_hl_s0 __builtin_HEXAGON_M2_mpyd_hl_s1 __builtin_HEXAGON_M2_mpyd_lh_s0 __builtin_HEXAGON_M2_mpyd_lh_s1 __builtin_HEXAGON_M2_mpyd_ll_s0 __builtin_HEXAGON_M2_mpyd_ll_s1 __builtin_HEXAGON_M2_mpyd_rnd_hh_s0 __builtin_HEXAGON_M2_mpyd_rnd_hh_s1 __builtin_HEXAGON_M2_mpyd_rnd_hl_s0 __builtin_HEXAGON_M2_mpyd_rnd_hl_s1 __builtin_HEXAGON_M2_mpyd_rnd_lh_s0 __builtin_HEXAGON_M2_mpyd_rnd_lh_s1 __builtin_HEXAGON_M2_mpyd_rnd_ll_s0 __builtin_HEXAGON_M2_mpyd_rnd_ll_s1 __builtin_HEXAGON_M2_mpyu_acc_hh_s0 __builtin_HEXAGON_M2_mpyu_acc_hh_s1 __builtin_HEXAGON_M2_mpyu_acc_hl_s0 __builtin_HEXAGON_M2_mpyu_acc_hl_s1 __builtin_HEXAGON_M2_mpyu_acc_lh_s0 __builtin_HEXAGON_M2_mpyu_acc_lh_s1 __builtin_HEXAGON_M2_mpyu_acc_ll_s0 __builtin_HEXAGON_M2_mpyu_acc_ll_s1 __builtin_HEXAGON_M2_mpyu_nac_hh_s0 __builtin_HEXAGON_M2_mpyu_nac_hh_s1 __builtin_HEXAGON_M2_mpyu_nac_hl_s0 __builtin_HEXAGON_M2_mpyu_nac_hl_s1 __builtin_HEXAGON_M2_mpyu_nac_lh_s0 __builtin_HEXAGON_M2_mpyu_nac_lh_s1 __builtin_HEXAGON_M2_mpyu_nac_ll_s0 __builtin_HEXAGON_M2_mpyu_nac_ll_s1 __builtin_HEXAGON_M2_mpyu_hh_s0 Uiii __builtin_HEXAGON_M2_mpyu_hh_s1 __builtin_HEXAGON_M2_mpyu_hl_s0 __builtin_HEXAGON_M2_mpyu_hl_s1 __builtin_HEXAGON_M2_mpyu_lh_s0 __builtin_HEXAGON_M2_mpyu_lh_s1 __builtin_HEXAGON_M2_mpyu_ll_s0 __builtin_HEXAGON_M2_mpyu_ll_s1 __builtin_HEXAGON_M2_mpyud_acc_hh_s0 __builtin_HEXAGON_M2_mpyud_acc_hh_s1 __builtin_HEXAGON_M2_mpyud_acc_hl_s0 __builtin_HEXAGON_M2_mpyud_acc_hl_s1 __builtin_HEXAGON_M2_mpyud_acc_lh_s0 __builtin_HEXAGON_M2_mpyud_acc_lh_s1 __builtin_HEXAGON_M2_mpyud_acc_ll_s0 __builtin_HEXAGON_M2_mpyud_acc_ll_s1 __builtin_HEXAGON_M2_mpyud_nac_hh_s0 __builtin_HEXAGON_M2_mpyud_nac_hh_s1 __builtin_HEXAGON_M2_mpyud_nac_hl_s0 __builtin_HEXAGON_M2_mpyud_nac_hl_s1 __builtin_HEXAGON_M2_mpyud_nac_lh_s0 __builtin_HEXAGON_M2_mpyud_nac_lh_s1 __builtin_HEXAGON_M2_mpyud_nac_ll_s0 __builtin_HEXAGON_M2_mpyud_nac_ll_s1 __builtin_HEXAGON_M2_mpyud_hh_s0 ULLiii __builtin_HEXAGON_M2_mpyud_hh_s1 __builtin_HEXAGON_M2_mpyud_hl_s0 __builtin_HEXAGON_M2_mpyud_hl_s1 __builtin_HEXAGON_M2_mpyud_lh_s0 __builtin_HEXAGON_M2_mpyud_lh_s1 __builtin_HEXAGON_M2_mpyud_ll_s0 __builtin_HEXAGON_M2_mpyud_ll_s1 __builtin_HEXAGON_M2_mpysmi __builtin_HEXAGON_M2_macsip __builtin_HEXAGON_M2_macsin __builtin_HEXAGON_M2_dpmpyss_s0 __builtin_HEXAGON_M2_dpmpyss_acc_s0 __builtin_HEXAGON_M2_dpmpyss_nac_s0 __builtin_HEXAGON_M2_dpmpyuu_s0 __builtin_HEXAGON_M2_dpmpyuu_acc_s0 __builtin_HEXAGON_M2_dpmpyuu_nac_s0 __builtin_HEXAGON_M2_mpy_up __builtin_HEXAGON_M2_mpy_up_s1 __builtin_HEXAGON_M2_mpy_up_s1_sat __builtin_HEXAGON_M2_mpyu_up __builtin_HEXAGON_M2_mpysu_up __builtin_HEXAGON_M2_dpmpyss_rnd_s0 __builtin_HEXAGON_M4_mac_up_s1_sat __builtin_HEXAGON_M4_nac_up_s1_sat __builtin_HEXAGON_M2_mpyi __builtin_HEXAGON_M2_mpyui __builtin_HEXAGON_M2_maci __builtin_HEXAGON_M2_acci __builtin_HEXAGON_M2_accii __builtin_HEXAGON_M2_nacci __builtin_HEXAGON_M2_naccii __builtin_HEXAGON_M2_subacc __builtin_HEXAGON_M4_mpyrr_addr __builtin_HEXAGON_M4_mpyri_addr_u2 __builtin_HEXAGON_M4_mpyri_addr __builtin_HEXAGON_M4_mpyri_addi __builtin_HEXAGON_M4_mpyrr_addi __builtin_HEXAGON_M2_vmpy2s_s0 __builtin_HEXAGON_M2_vmpy2s_s1 __builtin_HEXAGON_M2_vmac2s_s0 __builtin_HEXAGON_M2_vmac2s_s1 __builtin_HEXAGON_M2_vmpy2su_s0 __builtin_HEXAGON_M2_vmpy2su_s1 __builtin_HEXAGON_M2_vmac2su_s0 __builtin_HEXAGON_M2_vmac2su_s1 __builtin_HEXAGON_M2_vmpy2s_s0pack __builtin_HEXAGON_M2_vmpy2s_s1pack __builtin_HEXAGON_M2_vmac2 __builtin_HEXAGON_M2_vmpy2es_s0 LLiLLiLLi __builtin_HEXAGON_M2_vmpy2es_s1 __builtin_HEXAGON_M2_vmac2es_s0 LLiLLiLLiLLi __builtin_HEXAGON_M2_vmac2es_s1 __builtin_HEXAGON_M2_vmac2es __builtin_HEXAGON_M2_vrmac_s0 __builtin_HEXAGON_M2_vrmpy_s0 __builtin_HEXAGON_M2_vdmpyrs_s0 __builtin_HEXAGON_M2_vdmpyrs_s1 __builtin_HEXAGON_M5_vrmpybuu __builtin_HEXAGON_M5_vrmacbuu __builtin_HEXAGON_M5_vrmpybsu __builtin_HEXAGON_M5_vrmacbsu __builtin_HEXAGON_M5_vmpybuu __builtin_HEXAGON_M5_vmpybsu __builtin_HEXAGON_M5_vmacbuu __builtin_HEXAGON_M5_vmacbsu __builtin_HEXAGON_M5_vdmpybsu __builtin_HEXAGON_M5_vdmacbsu __builtin_HEXAGON_M2_vdmacs_s0 __builtin_HEXAGON_M2_vdmacs_s1 __builtin_HEXAGON_M2_vdmpys_s0 __builtin_HEXAGON_M2_vdmpys_s1 __builtin_HEXAGON_M2_cmpyrs_s0 __builtin_HEXAGON_M2_cmpyrs_s1 __builtin_HEXAGON_M2_cmpyrsc_s0 __builtin_HEXAGON_M2_cmpyrsc_s1 __builtin_HEXAGON_M2_cmacs_s0 __builtin_HEXAGON_M2_cmacs_s1 __builtin_HEXAGON_M2_cmacsc_s0 __builtin_HEXAGON_M2_cmacsc_s1 __builtin_HEXAGON_M2_cmpys_s0 __builtin_HEXAGON_M2_cmpys_s1 __builtin_HEXAGON_M2_cmpysc_s0 __builtin_HEXAGON_M2_cmpysc_s1 __builtin_HEXAGON_M2_cnacs_s0 __builtin_HEXAGON_M2_cnacs_s1 __builtin_HEXAGON_M2_cnacsc_s0 __builtin_HEXAGON_M2_cnacsc_s1 __builtin_HEXAGON_M2_vrcmpys_s1 __builtin_HEXAGON_M2_vrcmpys_acc_s1 LLiLLiLLii __builtin_HEXAGON_M2_vrcmpys_s1rp __builtin_HEXAGON_M2_mmacls_s0 __builtin_HEXAGON_M2_mmacls_s1 __builtin_HEXAGON_M2_mmachs_s0 __builtin_HEXAGON_M2_mmachs_s1 __builtin_HEXAGON_M2_mmpyl_s0 __builtin_HEXAGON_M2_mmpyl_s1 __builtin_HEXAGON_M2_mmpyh_s0 __builtin_HEXAGON_M2_mmpyh_s1 __builtin_HEXAGON_M2_mmacls_rs0 __builtin_HEXAGON_M2_mmacls_rs1 __builtin_HEXAGON_M2_mmachs_rs0 __builtin_HEXAGON_M2_mmachs_rs1 __builtin_HEXAGON_M2_mmpyl_rs0 __builtin_HEXAGON_M2_mmpyl_rs1 __builtin_HEXAGON_M2_mmpyh_rs0 __builtin_HEXAGON_M2_mmpyh_rs1 __builtin_HEXAGON_M4_vrmpyeh_s0 __builtin_HEXAGON_M4_vrmpyeh_s1 __builtin_HEXAGON_M4_vrmpyeh_acc_s0 __builtin_HEXAGON_M4_vrmpyeh_acc_s1 __builtin_HEXAGON_M4_vrmpyoh_s0 __builtin_HEXAGON_M4_vrmpyoh_s1 __builtin_HEXAGON_M4_vrmpyoh_acc_s0 __builtin_HEXAGON_M4_vrmpyoh_acc_s1 __builtin_HEXAGON_M2_hmmpyl_rs1 __builtin_HEXAGON_M2_hmmpyh_rs1 __builtin_HEXAGON_M2_hmmpyl_s1 __builtin_HEXAGON_M2_hmmpyh_s1 __builtin_HEXAGON_M2_mmaculs_s0 __builtin_HEXAGON_M2_mmaculs_s1 __builtin_HEXAGON_M2_mmacuhs_s0 __builtin_HEXAGON_M2_mmacuhs_s1 __builtin_HEXAGON_M2_mmpyul_s0 __builtin_HEXAGON_M2_mmpyul_s1 __builtin_HEXAGON_M2_mmpyuh_s0 __builtin_HEXAGON_M2_mmpyuh_s1 __builtin_HEXAGON_M2_mmaculs_rs0 __builtin_HEXAGON_M2_mmaculs_rs1 __builtin_HEXAGON_M2_mmacuhs_rs0 __builtin_HEXAGON_M2_mmacuhs_rs1 __builtin_HEXAGON_M2_mmpyul_rs0 __builtin_HEXAGON_M2_mmpyul_rs1 __builtin_HEXAGON_M2_mmpyuh_rs0 __builtin_HEXAGON_M2_mmpyuh_rs1 __builtin_HEXAGON_M2_vrcmaci_s0 __builtin_HEXAGON_M2_vrcmacr_s0 __builtin_HEXAGON_M2_vrcmaci_s0c __builtin_HEXAGON_M2_vrcmacr_s0c __builtin_HEXAGON_M2_cmaci_s0 __builtin_HEXAGON_M2_cmacr_s0 __builtin_HEXAGON_M2_vrcmpyi_s0 __builtin_HEXAGON_M2_vrcmpyr_s0 __builtin_HEXAGON_M2_vrcmpyi_s0c __builtin_HEXAGON_M2_vrcmpyr_s0c __builtin_HEXAGON_M2_cmpyi_s0 __builtin_HEXAGON_M2_cmpyr_s0 __builtin_HEXAGON_M4_cmpyi_wh __builtin_HEXAGON_M4_cmpyr_wh __builtin_HEXAGON_M4_cmpyi_whc __builtin_HEXAGON_M4_cmpyr_whc __builtin_HEXAGON_M2_vcmpy_s0_sat_i __builtin_HEXAGON_M2_vcmpy_s0_sat_r __builtin_HEXAGON_M2_vcmpy_s1_sat_i __builtin_HEXAGON_M2_vcmpy_s1_sat_r __builtin_HEXAGON_M2_vcmac_s0_sat_i __builtin_HEXAGON_M2_vcmac_s0_sat_r __builtin_HEXAGON_S2_vcrotate __builtin_HEXAGON_S4_vrcrotate_acc LLiLLiLLiii __builtin_HEXAGON_S4_vrcrotate __builtin_HEXAGON_S2_vcnegh __builtin_HEXAGON_S2_vrcnegh __builtin_HEXAGON_M4_pmpyw __builtin_HEXAGON_M4_vpmpyh __builtin_HEXAGON_M4_pmpyw_acc __builtin_HEXAGON_M4_vpmpyh_acc __builtin_HEXAGON_A2_add __builtin_HEXAGON_A2_sub __builtin_HEXAGON_A2_addsat __builtin_HEXAGON_A2_subsat __builtin_HEXAGON_A2_addi __builtin_HEXAGON_A2_addh_l16_ll __builtin_HEXAGON_A2_addh_l16_hl __builtin_HEXAGON_A2_addh_l16_sat_ll __builtin_HEXAGON_A2_addh_l16_sat_hl __builtin_HEXAGON_A2_subh_l16_ll __builtin_HEXAGON_A2_subh_l16_hl __builtin_HEXAGON_A2_subh_l16_sat_ll __builtin_HEXAGON_A2_subh_l16_sat_hl __builtin_HEXAGON_A2_addh_h16_ll __builtin_HEXAGON_A2_addh_h16_lh __builtin_HEXAGON_A2_addh_h16_hl __builtin_HEXAGON_A2_addh_h16_hh __builtin_HEXAGON_A2_addh_h16_sat_ll __builtin_HEXAGON_A2_addh_h16_sat_lh __builtin_HEXAGON_A2_addh_h16_sat_hl __builtin_HEXAGON_A2_addh_h16_sat_hh __builtin_HEXAGON_A2_subh_h16_ll __builtin_HEXAGON_A2_subh_h16_lh __builtin_HEXAGON_A2_subh_h16_hl __builtin_HEXAGON_A2_subh_h16_hh __builtin_HEXAGON_A2_subh_h16_sat_ll __builtin_HEXAGON_A2_subh_h16_sat_lh __builtin_HEXAGON_A2_subh_h16_sat_hl __builtin_HEXAGON_A2_subh_h16_sat_hh __builtin_HEXAGON_A2_aslh __builtin_HEXAGON_A2_asrh __builtin_HEXAGON_A2_addp __builtin_HEXAGON_A2_addpsat __builtin_HEXAGON_A2_addsp LLiiLLi __builtin_HEXAGON_A2_subp __builtin_HEXAGON_A2_neg __builtin_HEXAGON_A2_negsat __builtin_HEXAGON_A2_abs __builtin_HEXAGON_A2_abssat __builtin_HEXAGON_A2_vconj __builtin_HEXAGON_A2_negp __builtin_HEXAGON_A2_absp __builtin_HEXAGON_A2_max __builtin_HEXAGON_A2_maxu __builtin_HEXAGON_A2_min __builtin_HEXAGON_A2_minu __builtin_HEXAGON_A2_maxp __builtin_HEXAGON_A2_maxup ULLiLLiLLi __builtin_HEXAGON_A2_minp __builtin_HEXAGON_A2_minup __builtin_HEXAGON_A2_tfr __builtin_HEXAGON_A2_tfrsi __builtin_HEXAGON_A2_tfrp __builtin_HEXAGON_A2_tfrpi __builtin_HEXAGON_A2_zxtb __builtin_HEXAGON_A2_sxtb __builtin_HEXAGON_A2_zxth __builtin_HEXAGON_A2_sxth __builtin_HEXAGON_A2_combinew __builtin_HEXAGON_A4_combineri __builtin_HEXAGON_A4_combineir __builtin_HEXAGON_A2_combineii __builtin_HEXAGON_A2_combine_hh __builtin_HEXAGON_A2_combine_hl __builtin_HEXAGON_A2_combine_lh __builtin_HEXAGON_A2_combine_ll __builtin_HEXAGON_A2_tfril __builtin_HEXAGON_A2_tfrih __builtin_HEXAGON_A2_and __builtin_HEXAGON_A2_or __builtin_HEXAGON_A2_xor __builtin_HEXAGON_A2_not __builtin_HEXAGON_M2_xor_xacc __builtin_HEXAGON_M4_xor_xacc __builtin_HEXAGON_A4_andn __builtin_HEXAGON_A4_orn __builtin_HEXAGON_A4_andnp __builtin_HEXAGON_A4_ornp __builtin_HEXAGON_S4_addaddi __builtin_HEXAGON_S4_subaddi __builtin_HEXAGON_M4_and_and __builtin_HEXAGON_M4_and_andn __builtin_HEXAGON_M4_and_or __builtin_HEXAGON_M4_and_xor __builtin_HEXAGON_M4_or_and __builtin_HEXAGON_M4_or_andn __builtin_HEXAGON_M4_or_or __builtin_HEXAGON_M4_or_xor __builtin_HEXAGON_S4_or_andix __builtin_HEXAGON_S4_or_andi __builtin_HEXAGON_S4_or_ori __builtin_HEXAGON_M4_xor_and __builtin_HEXAGON_M4_xor_or __builtin_HEXAGON_M4_xor_andn __builtin_HEXAGON_A2_subri __builtin_HEXAGON_A2_andir __builtin_HEXAGON_A2_orir __builtin_HEXAGON_A2_andp __builtin_HEXAGON_A2_orp __builtin_HEXAGON_A2_xorp __builtin_HEXAGON_A2_notp __builtin_HEXAGON_A2_sxtw __builtin_HEXAGON_A2_sat __builtin_HEXAGON_A2_roundsat __builtin_HEXAGON_A2_sath __builtin_HEXAGON_A2_satuh __builtin_HEXAGON_A2_satub __builtin_HEXAGON_A2_satb __builtin_HEXAGON_A2_vaddub __builtin_HEXAGON_A2_vaddb_map __builtin_HEXAGON_A2_vaddubs __builtin_HEXAGON_A2_vaddh __builtin_HEXAGON_A2_vaddhs __builtin_HEXAGON_A2_vadduhs __builtin_HEXAGON_A5_vaddhubs __builtin_HEXAGON_A2_vaddw __builtin_HEXAGON_A2_vaddws __builtin_HEXAGON_S4_vxaddsubw __builtin_HEXAGON_S4_vxsubaddw __builtin_HEXAGON_S4_vxaddsubh __builtin_HEXAGON_S4_vxsubaddh __builtin_HEXAGON_S4_vxaddsubhr __builtin_HEXAGON_S4_vxsubaddhr __builtin_HEXAGON_A2_svavgh __builtin_HEXAGON_A2_svavghs __builtin_HEXAGON_A2_svnavgh __builtin_HEXAGON_A2_svaddh __builtin_HEXAGON_A2_svaddhs __builtin_HEXAGON_A2_svadduhs __builtin_HEXAGON_A2_svsubh __builtin_HEXAGON_A2_svsubhs __builtin_HEXAGON_A2_svsubuhs __builtin_HEXAGON_A2_vraddub __builtin_HEXAGON_A2_vraddub_acc __builtin_HEXAGON_M2_vraddh __builtin_HEXAGON_M2_vradduh __builtin_HEXAGON_A2_vsubub __builtin_HEXAGON_A2_vsubb_map __builtin_HEXAGON_A2_vsububs __builtin_HEXAGON_A2_vsubh __builtin_HEXAGON_A2_vsubhs __builtin_HEXAGON_A2_vsubuhs __builtin_HEXAGON_A2_vsubw __builtin_HEXAGON_A2_vsubws __builtin_HEXAGON_A2_vabsh __builtin_HEXAGON_A2_vabshsat __builtin_HEXAGON_A2_vabsw __builtin_HEXAGON_A2_vabswsat __builtin_HEXAGON_M2_vabsdiffw __builtin_HEXAGON_M2_vabsdiffh __builtin_HEXAGON_A2_vrsadub __builtin_HEXAGON_A2_vrsadub_acc __builtin_HEXAGON_A2_vavgub __builtin_HEXAGON_A2_vavguh __builtin_HEXAGON_A2_vavgh __builtin_HEXAGON_A2_vnavgh __builtin_HEXAGON_A2_vavgw __builtin_HEXAGON_A2_vnavgw __builtin_HEXAGON_A2_vavgwr __builtin_HEXAGON_A2_vnavgwr __builtin_HEXAGON_A2_vavgwcr __builtin_HEXAGON_A2_vnavgwcr __builtin_HEXAGON_A2_vavghcr __builtin_HEXAGON_A2_vnavghcr __builtin_HEXAGON_A2_vavguw __builtin_HEXAGON_A2_vavguwr __builtin_HEXAGON_A2_vavgubr __builtin_HEXAGON_A2_vavguhr __builtin_HEXAGON_A2_vavghr __builtin_HEXAGON_A2_vnavghr __builtin_HEXAGON_A4_round_ri __builtin_HEXAGON_A4_round_rr __builtin_HEXAGON_A4_round_ri_sat __builtin_HEXAGON_A4_round_rr_sat __builtin_HEXAGON_A4_cround_ri __builtin_HEXAGON_A4_cround_rr __builtin_HEXAGON_A4_vrminh __builtin_HEXAGON_A4_vrmaxh __builtin_HEXAGON_A4_vrminuh __builtin_HEXAGON_A4_vrmaxuh __builtin_HEXAGON_A4_vrminw __builtin_HEXAGON_A4_vrmaxw __builtin_HEXAGON_A4_vrminuw __builtin_HEXAGON_A4_vrmaxuw __builtin_HEXAGON_A2_vminb __builtin_HEXAGON_A2_vmaxb __builtin_HEXAGON_A2_vminub __builtin_HEXAGON_A2_vmaxub __builtin_HEXAGON_A2_vminh __builtin_HEXAGON_A2_vmaxh __builtin_HEXAGON_A2_vminuh __builtin_HEXAGON_A2_vmaxuh __builtin_HEXAGON_A2_vminw __builtin_HEXAGON_A2_vmaxw __builtin_HEXAGON_A2_vminuw __builtin_HEXAGON_A2_vmaxuw __builtin_HEXAGON_A4_modwrapu __builtin_HEXAGON_F2_sfadd __builtin_HEXAGON_F2_sfsub __builtin_HEXAGON_F2_sfmpy __builtin_HEXAGON_F2_sffma __builtin_HEXAGON_F2_sffma_sc ffffi __builtin_HEXAGON_F2_sffms __builtin_HEXAGON_F2_sffma_lib __builtin_HEXAGON_F2_sffms_lib __builtin_HEXAGON_F2_sfcmpeq __builtin_HEXAGON_F2_sfcmpgt __builtin_HEXAGON_F2_sfcmpge __builtin_HEXAGON_F2_sfcmpuo __builtin_HEXAGON_F2_sfmax __builtin_HEXAGON_F2_sfmin __builtin_HEXAGON_F2_sfclass ifi __builtin_HEXAGON_F2_sfimm_p fi __builtin_HEXAGON_F2_sfimm_n __builtin_HEXAGON_F2_sffixupn __builtin_HEXAGON_F2_sffixupd __builtin_HEXAGON_F2_sffixupr __builtin_HEXAGON_F2_dfcmpeq idd __builtin_HEXAGON_F2_dfcmpgt __builtin_HEXAGON_F2_dfcmpge __builtin_HEXAGON_F2_dfcmpuo __builtin_HEXAGON_F2_dfclass idi __builtin_HEXAGON_F2_dfimm_p __builtin_HEXAGON_F2_dfimm_n __builtin_HEXAGON_F2_conv_sf2df __builtin_HEXAGON_F2_conv_df2sf __builtin_HEXAGON_F2_conv_uw2sf __builtin_HEXAGON_F2_conv_uw2df __builtin_HEXAGON_F2_conv_w2sf __builtin_HEXAGON_F2_conv_w2df __builtin_HEXAGON_F2_conv_ud2sf fLLi __builtin_HEXAGON_F2_conv_ud2df dLLi __builtin_HEXAGON_F2_conv_d2sf __builtin_HEXAGON_F2_conv_d2df __builtin_HEXAGON_F2_conv_sf2uw __builtin_HEXAGON_F2_conv_sf2w __builtin_HEXAGON_F2_conv_sf2ud __builtin_HEXAGON_F2_conv_sf2d __builtin_HEXAGON_F2_conv_df2uw __builtin_HEXAGON_F2_conv_df2w __builtin_HEXAGON_F2_conv_df2ud __builtin_HEXAGON_F2_conv_df2d __builtin_HEXAGON_F2_conv_sf2uw_chop __builtin_HEXAGON_F2_conv_sf2w_chop __builtin_HEXAGON_F2_conv_sf2ud_chop __builtin_HEXAGON_F2_conv_sf2d_chop __builtin_HEXAGON_F2_conv_df2uw_chop __builtin_HEXAGON_F2_conv_df2w_chop __builtin_HEXAGON_F2_conv_df2ud_chop __builtin_HEXAGON_F2_conv_df2d_chop __builtin_HEXAGON_S2_asr_r_r __builtin_HEXAGON_S2_asl_r_r __builtin_HEXAGON_S2_lsr_r_r __builtin_HEXAGON_S2_lsl_r_r __builtin_HEXAGON_S2_asr_r_p __builtin_HEXAGON_S2_asl_r_p __builtin_HEXAGON_S2_lsr_r_p __builtin_HEXAGON_S2_lsl_r_p __builtin_HEXAGON_S2_asr_r_r_acc __builtin_HEXAGON_S2_asl_r_r_acc __builtin_HEXAGON_S2_lsr_r_r_acc __builtin_HEXAGON_S2_lsl_r_r_acc __builtin_HEXAGON_S2_asr_r_p_acc __builtin_HEXAGON_S2_asl_r_p_acc __builtin_HEXAGON_S2_lsr_r_p_acc __builtin_HEXAGON_S2_lsl_r_p_acc __builtin_HEXAGON_S2_asr_r_r_nac __builtin_HEXAGON_S2_asl_r_r_nac __builtin_HEXAGON_S2_lsr_r_r_nac __builtin_HEXAGON_S2_lsl_r_r_nac __builtin_HEXAGON_S2_asr_r_p_nac __builtin_HEXAGON_S2_asl_r_p_nac __builtin_HEXAGON_S2_lsr_r_p_nac __builtin_HEXAGON_S2_lsl_r_p_nac __builtin_HEXAGON_S2_asr_r_r_and __builtin_HEXAGON_S2_asl_r_r_and __builtin_HEXAGON_S2_lsr_r_r_and __builtin_HEXAGON_S2_lsl_r_r_and __builtin_HEXAGON_S2_asr_r_r_or __builtin_HEXAGON_S2_asl_r_r_or __builtin_HEXAGON_S2_lsr_r_r_or __builtin_HEXAGON_S2_lsl_r_r_or __builtin_HEXAGON_S2_asr_r_p_and __builtin_HEXAGON_S2_asl_r_p_and __builtin_HEXAGON_S2_lsr_r_p_and __builtin_HEXAGON_S2_lsl_r_p_and __builtin_HEXAGON_S2_asr_r_p_or __builtin_HEXAGON_S2_asl_r_p_or __builtin_HEXAGON_S2_lsr_r_p_or __builtin_HEXAGON_S2_lsl_r_p_or __builtin_HEXAGON_S2_asr_r_p_xor __builtin_HEXAGON_S2_asl_r_p_xor __builtin_HEXAGON_S2_lsr_r_p_xor __builtin_HEXAGON_S2_lsl_r_p_xor __builtin_HEXAGON_S2_asr_r_r_sat __builtin_HEXAGON_S2_asl_r_r_sat __builtin_HEXAGON_S2_asr_i_r __builtin_HEXAGON_S2_lsr_i_r __builtin_HEXAGON_S2_asl_i_r __builtin_HEXAGON_S2_asr_i_p __builtin_HEXAGON_S2_lsr_i_p __builtin_HEXAGON_S2_asl_i_p __builtin_HEXAGON_S2_asr_i_r_acc __builtin_HEXAGON_S2_lsr_i_r_acc __builtin_HEXAGON_S2_asl_i_r_acc __builtin_HEXAGON_S2_asr_i_p_acc __builtin_HEXAGON_S2_lsr_i_p_acc __builtin_HEXAGON_S2_asl_i_p_acc __builtin_HEXAGON_S2_asr_i_r_nac __builtin_HEXAGON_S2_lsr_i_r_nac __builtin_HEXAGON_S2_asl_i_r_nac __builtin_HEXAGON_S2_asr_i_p_nac __builtin_HEXAGON_S2_lsr_i_p_nac __builtin_HEXAGON_S2_asl_i_p_nac __builtin_HEXAGON_S2_lsr_i_r_xacc __builtin_HEXAGON_S2_asl_i_r_xacc __builtin_HEXAGON_S2_lsr_i_p_xacc __builtin_HEXAGON_S2_asl_i_p_xacc __builtin_HEXAGON_S2_asr_i_r_and __builtin_HEXAGON_S2_lsr_i_r_and __builtin_HEXAGON_S2_asl_i_r_and __builtin_HEXAGON_S2_asr_i_r_or __builtin_HEXAGON_S2_lsr_i_r_or __builtin_HEXAGON_S2_asl_i_r_or __builtin_HEXAGON_S2_asr_i_p_and __builtin_HEXAGON_S2_lsr_i_p_and __builtin_HEXAGON_S2_asl_i_p_and __builtin_HEXAGON_S2_asr_i_p_or __builtin_HEXAGON_S2_lsr_i_p_or __builtin_HEXAGON_S2_asl_i_p_or __builtin_HEXAGON_S2_asl_i_r_sat __builtin_HEXAGON_S2_asr_i_r_rnd __builtin_HEXAGON_S2_asr_i_r_rnd_goodsyntax __builtin_HEXAGON_S2_asr_i_p_rnd __builtin_HEXAGON_S2_asr_i_p_rnd_goodsyntax __builtin_HEXAGON_S4_lsli __builtin_HEXAGON_S2_addasl_rrri __builtin_HEXAGON_S4_andi_asl_ri __builtin_HEXAGON_S4_ori_asl_ri __builtin_HEXAGON_S4_addi_asl_ri __builtin_HEXAGON_S4_subi_asl_ri __builtin_HEXAGON_S4_andi_lsr_ri __builtin_HEXAGON_S4_ori_lsr_ri __builtin_HEXAGON_S4_addi_lsr_ri __builtin_HEXAGON_S4_subi_lsr_ri __builtin_HEXAGON_S2_valignib __builtin_HEXAGON_S2_valignrb __builtin_HEXAGON_S2_vspliceib __builtin_HEXAGON_S2_vsplicerb __builtin_HEXAGON_S2_vsplatrh __builtin_HEXAGON_S2_vsplatrb __builtin_HEXAGON_S2_insert __builtin_HEXAGON_S2_tableidxb_goodsyntax __builtin_HEXAGON_S2_tableidxh_goodsyntax __builtin_HEXAGON_S2_tableidxw_goodsyntax __builtin_HEXAGON_S2_tableidxd_goodsyntax __builtin_HEXAGON_A4_bitspliti __builtin_HEXAGON_A4_bitsplit __builtin_HEXAGON_S4_extract __builtin_HEXAGON_S2_extractu __builtin_HEXAGON_S2_insertp __builtin_HEXAGON_S4_extractp __builtin_HEXAGON_S2_extractup __builtin_HEXAGON_S2_insert_rp iiiLLi __builtin_HEXAGON_S4_extract_rp __builtin_HEXAGON_S2_extractu_rp __builtin_HEXAGON_S2_insertp_rp __builtin_HEXAGON_S4_extractp_rp __builtin_HEXAGON_S2_extractup_rp __builtin_HEXAGON_S2_tstbit_i __builtin_HEXAGON_S4_ntstbit_i __builtin_HEXAGON_S2_setbit_i __builtin_HEXAGON_S2_togglebit_i __builtin_HEXAGON_S2_clrbit_i __builtin_HEXAGON_S2_tstbit_r __builtin_HEXAGON_S4_ntstbit_r __builtin_HEXAGON_S2_setbit_r __builtin_HEXAGON_S2_togglebit_r __builtin_HEXAGON_S2_clrbit_r __builtin_HEXAGON_S2_asr_i_vh __builtin_HEXAGON_S2_lsr_i_vh __builtin_HEXAGON_S2_asl_i_vh __builtin_HEXAGON_S2_asr_r_vh __builtin_HEXAGON_S5_asrhub_rnd_sat_goodsyntax __builtin_HEXAGON_S5_asrhub_sat __builtin_HEXAGON_S5_vasrhrnd_goodsyntax __builtin_HEXAGON_S2_asl_r_vh __builtin_HEXAGON_S2_lsr_r_vh __builtin_HEXAGON_S2_lsl_r_vh __builtin_HEXAGON_S2_asr_i_vw __builtin_HEXAGON_S2_asr_i_svw_trun __builtin_HEXAGON_S2_asr_r_svw_trun __builtin_HEXAGON_S2_lsr_i_vw __builtin_HEXAGON_S2_asl_i_vw __builtin_HEXAGON_S2_asr_r_vw __builtin_HEXAGON_S2_asl_r_vw __builtin_HEXAGON_S2_lsr_r_vw __builtin_HEXAGON_S2_lsl_r_vw __builtin_HEXAGON_S2_vrndpackwh __builtin_HEXAGON_S2_vrndpackwhs __builtin_HEXAGON_S2_vsxtbh __builtin_HEXAGON_S2_vzxtbh __builtin_HEXAGON_S2_vsathub __builtin_HEXAGON_S2_svsathub __builtin_HEXAGON_S2_svsathb __builtin_HEXAGON_S2_vsathb __builtin_HEXAGON_S2_vtrunohb __builtin_HEXAGON_S2_vtrunewh __builtin_HEXAGON_S2_vtrunowh __builtin_HEXAGON_S2_vtrunehb __builtin_HEXAGON_S2_vsxthw __builtin_HEXAGON_S2_vzxthw __builtin_HEXAGON_S2_vsatwh __builtin_HEXAGON_S2_vsatwuh __builtin_HEXAGON_S2_packhl __builtin_HEXAGON_A2_swiz __builtin_HEXAGON_S2_vsathub_nopack __builtin_HEXAGON_S2_vsathb_nopack __builtin_HEXAGON_S2_vsatwh_nopack __builtin_HEXAGON_S2_vsatwuh_nopack __builtin_HEXAGON_S2_shuffob __builtin_HEXAGON_S2_shuffeb __builtin_HEXAGON_S2_shuffoh __builtin_HEXAGON_S2_shuffeh __builtin_HEXAGON_S5_popcountp __builtin_HEXAGON_S4_parity __builtin_HEXAGON_S2_parityp __builtin_HEXAGON_S2_lfsp __builtin_HEXAGON_S2_clbnorm __builtin_HEXAGON_S4_clbaddi __builtin_HEXAGON_S4_clbpnorm __builtin_HEXAGON_S4_clbpaddi __builtin_HEXAGON_S2_clb __builtin_HEXAGON_S2_cl0 __builtin_HEXAGON_S2_cl1 __builtin_HEXAGON_S2_clbp __builtin_HEXAGON_S2_cl0p __builtin_HEXAGON_S2_cl1p __builtin_HEXAGON_S2_brev __builtin_HEXAGON_S2_brevp __builtin_HEXAGON_S2_ct0 __builtin_HEXAGON_S2_ct1 __builtin_HEXAGON_S2_ct0p __builtin_HEXAGON_S2_ct1p __builtin_HEXAGON_S2_interleave __builtin_HEXAGON_S2_deinterleave __builtin_HEXAGON_S6_rol_i_r v:60: __builtin_HEXAGON_S6_rol_i_p __builtin_HEXAGON_S6_rol_i_r_acc __builtin_HEXAGON_S6_rol_i_p_acc __builtin_HEXAGON_S6_rol_i_r_nac __builtin_HEXAGON_S6_rol_i_p_nac __builtin_HEXAGON_S6_rol_i_r_xacc __builtin_HEXAGON_S6_rol_i_p_xacc __builtin_HEXAGON_S6_rol_i_r_and __builtin_HEXAGON_S6_rol_i_r_or __builtin_HEXAGON_S6_rol_i_p_and __builtin_HEXAGON_S6_rol_i_p_or __builtin_HEXAGON_S2_cabacencbin __builtin_HEXAGON_V6_valignb __builtin_HEXAGON_V6_valignb_128B __builtin_HEXAGON_V6_vlalignb __builtin_HEXAGON_V6_vlalignb_128B __builtin_HEXAGON_V6_valignbi __builtin_HEXAGON_V6_valignbi_128B __builtin_HEXAGON_V6_vlalignbi __builtin_HEXAGON_V6_vlalignbi_128B __builtin_HEXAGON_V6_vror __builtin_HEXAGON_V6_vror_128B __builtin_HEXAGON_V6_vunpackub __builtin_HEXAGON_V6_vunpackub_128B __builtin_HEXAGON_V6_vunpackb __builtin_HEXAGON_V6_vunpackb_128B __builtin_HEXAGON_V6_vunpackuh __builtin_HEXAGON_V6_vunpackuh_128B __builtin_HEXAGON_V6_vunpackh __builtin_HEXAGON_V6_vunpackh_128B __builtin_HEXAGON_V6_vunpackob V32iV32iV16i __builtin_HEXAGON_V6_vunpackob_128B V64iV64iV32i __builtin_HEXAGON_V6_vunpackoh __builtin_HEXAGON_V6_vunpackoh_128B __builtin_HEXAGON_V6_vpackeb __builtin_HEXAGON_V6_vpackeb_128B __builtin_HEXAGON_V6_vpackeh __builtin_HEXAGON_V6_vpackeh_128B __builtin_HEXAGON_V6_vpackob __builtin_HEXAGON_V6_vpackob_128B __builtin_HEXAGON_V6_vpackoh __builtin_HEXAGON_V6_vpackoh_128B __builtin_HEXAGON_V6_vpackhub_sat __builtin_HEXAGON_V6_vpackhub_sat_128B __builtin_HEXAGON_V6_vpackhb_sat __builtin_HEXAGON_V6_vpackhb_sat_128B __builtin_HEXAGON_V6_vpackwuh_sat __builtin_HEXAGON_V6_vpackwuh_sat_128B __builtin_HEXAGON_V6_vpackwh_sat __builtin_HEXAGON_V6_vpackwh_sat_128B __builtin_HEXAGON_V6_vzb __builtin_HEXAGON_V6_vzb_128B __builtin_HEXAGON_V6_vsb __builtin_HEXAGON_V6_vsb_128B __builtin_HEXAGON_V6_vzh __builtin_HEXAGON_V6_vzh_128B __builtin_HEXAGON_V6_vsh __builtin_HEXAGON_V6_vsh_128B __builtin_HEXAGON_V6_vdmpybus __builtin_HEXAGON_V6_vdmpybus_128B __builtin_HEXAGON_V6_vdmpybus_acc __builtin_HEXAGON_V6_vdmpybus_acc_128B __builtin_HEXAGON_V6_vdmpybus_dv __builtin_HEXAGON_V6_vdmpybus_dv_128B __builtin_HEXAGON_V6_vdmpybus_dv_acc __builtin_HEXAGON_V6_vdmpybus_dv_acc_128B V64iV64iV64ii __builtin_HEXAGON_V6_vdmpyhb __builtin_HEXAGON_V6_vdmpyhb_128B __builtin_HEXAGON_V6_vdmpyhb_acc __builtin_HEXAGON_V6_vdmpyhb_acc_128B __builtin_HEXAGON_V6_vdmpyhb_dv __builtin_HEXAGON_V6_vdmpyhb_dv_128B __builtin_HEXAGON_V6_vdmpyhb_dv_acc __builtin_HEXAGON_V6_vdmpyhb_dv_acc_128B __builtin_HEXAGON_V6_vdmpyhvsat __builtin_HEXAGON_V6_vdmpyhvsat_128B __builtin_HEXAGON_V6_vdmpyhvsat_acc V16iV16iV16iV16i __builtin_HEXAGON_V6_vdmpyhvsat_acc_128B V32iV32iV32iV32i __builtin_HEXAGON_V6_vdmpyhsat __builtin_HEXAGON_V6_vdmpyhsat_128B __builtin_HEXAGON_V6_vdmpyhsat_acc __builtin_HEXAGON_V6_vdmpyhsat_acc_128B __builtin_HEXAGON_V6_vdmpyhisat __builtin_HEXAGON_V6_vdmpyhisat_128B __builtin_HEXAGON_V6_vdmpyhisat_acc V16iV16iV32ii __builtin_HEXAGON_V6_vdmpyhisat_acc_128B V32iV32iV64ii __builtin_HEXAGON_V6_vdmpyhsusat __builtin_HEXAGON_V6_vdmpyhsusat_128B __builtin_HEXAGON_V6_vdmpyhsusat_acc __builtin_HEXAGON_V6_vdmpyhsusat_acc_128B __builtin_HEXAGON_V6_vdmpyhsuisat __builtin_HEXAGON_V6_vdmpyhsuisat_128B __builtin_HEXAGON_V6_vdmpyhsuisat_acc __builtin_HEXAGON_V6_vdmpyhsuisat_acc_128B __builtin_HEXAGON_V6_vtmpyb __builtin_HEXAGON_V6_vtmpyb_128B __builtin_HEXAGON_V6_vtmpyb_acc __builtin_HEXAGON_V6_vtmpyb_acc_128B __builtin_HEXAGON_V6_vtmpybus __builtin_HEXAGON_V6_vtmpybus_128B __builtin_HEXAGON_V6_vtmpybus_acc __builtin_HEXAGON_V6_vtmpybus_acc_128B __builtin_HEXAGON_V6_vtmpyhb __builtin_HEXAGON_V6_vtmpyhb_128B __builtin_HEXAGON_V6_vtmpyhb_acc __builtin_HEXAGON_V6_vtmpyhb_acc_128B __builtin_HEXAGON_V6_vrmpyub __builtin_HEXAGON_V6_vrmpyub_128B __builtin_HEXAGON_V6_vrmpyub_acc __builtin_HEXAGON_V6_vrmpyub_acc_128B __builtin_HEXAGON_V6_vrmpyubv __builtin_HEXAGON_V6_vrmpyubv_128B __builtin_HEXAGON_V6_vrmpyubv_acc __builtin_HEXAGON_V6_vrmpyubv_acc_128B __builtin_HEXAGON_V6_vrmpybv __builtin_HEXAGON_V6_vrmpybv_128B __builtin_HEXAGON_V6_vrmpybv_acc __builtin_HEXAGON_V6_vrmpybv_acc_128B __builtin_HEXAGON_V6_vrmpyubi __builtin_HEXAGON_V6_vrmpyubi_128B __builtin_HEXAGON_V6_vrmpyubi_acc V32iV32iV32iii __builtin_HEXAGON_V6_vrmpyubi_acc_128B V64iV64iV64iii __builtin_HEXAGON_V6_vrmpybus __builtin_HEXAGON_V6_vrmpybus_128B __builtin_HEXAGON_V6_vrmpybus_acc __builtin_HEXAGON_V6_vrmpybus_acc_128B __builtin_HEXAGON_V6_vrmpybusi __builtin_HEXAGON_V6_vrmpybusi_128B __builtin_HEXAGON_V6_vrmpybusi_acc __builtin_HEXAGON_V6_vrmpybusi_acc_128B __builtin_HEXAGON_V6_vrmpybusv __builtin_HEXAGON_V6_vrmpybusv_128B __builtin_HEXAGON_V6_vrmpybusv_acc __builtin_HEXAGON_V6_vrmpybusv_acc_128B __builtin_HEXAGON_V6_vdsaduh __builtin_HEXAGON_V6_vdsaduh_128B __builtin_HEXAGON_V6_vdsaduh_acc __builtin_HEXAGON_V6_vdsaduh_acc_128B __builtin_HEXAGON_V6_vrsadubi __builtin_HEXAGON_V6_vrsadubi_128B __builtin_HEXAGON_V6_vrsadubi_acc __builtin_HEXAGON_V6_vrsadubi_acc_128B __builtin_HEXAGON_V6_vasrw __builtin_HEXAGON_V6_vasrw_128B __builtin_HEXAGON_V6_vaslw __builtin_HEXAGON_V6_vaslw_128B __builtin_HEXAGON_V6_vlsrw __builtin_HEXAGON_V6_vlsrw_128B __builtin_HEXAGON_V6_vasrwv __builtin_HEXAGON_V6_vasrwv_128B __builtin_HEXAGON_V6_vaslwv __builtin_HEXAGON_V6_vaslwv_128B __builtin_HEXAGON_V6_vlsrwv __builtin_HEXAGON_V6_vlsrwv_128B __builtin_HEXAGON_V6_vasrh __builtin_HEXAGON_V6_vasrh_128B __builtin_HEXAGON_V6_vaslh __builtin_HEXAGON_V6_vaslh_128B __builtin_HEXAGON_V6_vlsrh __builtin_HEXAGON_V6_vlsrh_128B __builtin_HEXAGON_V6_vasrhv __builtin_HEXAGON_V6_vasrhv_128B __builtin_HEXAGON_V6_vaslhv __builtin_HEXAGON_V6_vaslhv_128B __builtin_HEXAGON_V6_vlsrhv __builtin_HEXAGON_V6_vlsrhv_128B __builtin_HEXAGON_V6_vasrwh __builtin_HEXAGON_V6_vasrwh_128B __builtin_HEXAGON_V6_vasrwhsat __builtin_HEXAGON_V6_vasrwhsat_128B __builtin_HEXAGON_V6_vasrwhrndsat __builtin_HEXAGON_V6_vasrwhrndsat_128B __builtin_HEXAGON_V6_vasrwuhsat __builtin_HEXAGON_V6_vasrwuhsat_128B __builtin_HEXAGON_V6_vroundwh __builtin_HEXAGON_V6_vroundwh_128B __builtin_HEXAGON_V6_vroundwuh __builtin_HEXAGON_V6_vroundwuh_128B __builtin_HEXAGON_V6_vasrhubsat __builtin_HEXAGON_V6_vasrhubsat_128B __builtin_HEXAGON_V6_vasrhubrndsat __builtin_HEXAGON_V6_vasrhubrndsat_128B __builtin_HEXAGON_V6_vasrhbrndsat __builtin_HEXAGON_V6_vasrhbrndsat_128B __builtin_HEXAGON_V6_vroundhb __builtin_HEXAGON_V6_vroundhb_128B __builtin_HEXAGON_V6_vroundhub __builtin_HEXAGON_V6_vroundhub_128B __builtin_HEXAGON_V6_vaslw_acc __builtin_HEXAGON_V6_vaslw_acc_128B __builtin_HEXAGON_V6_vasrw_acc __builtin_HEXAGON_V6_vasrw_acc_128B __builtin_HEXAGON_V6_vaddb __builtin_HEXAGON_V6_vaddb_128B __builtin_HEXAGON_V6_vsubb __builtin_HEXAGON_V6_vsubb_128B __builtin_HEXAGON_V6_vaddb_dv __builtin_HEXAGON_V6_vaddb_dv_128B V64iV64iV64i __builtin_HEXAGON_V6_vsubb_dv __builtin_HEXAGON_V6_vsubb_dv_128B __builtin_HEXAGON_V6_vaddh __builtin_HEXAGON_V6_vaddh_128B __builtin_HEXAGON_V6_vsubh __builtin_HEXAGON_V6_vsubh_128B __builtin_HEXAGON_V6_vaddh_dv __builtin_HEXAGON_V6_vaddh_dv_128B __builtin_HEXAGON_V6_vsubh_dv __builtin_HEXAGON_V6_vsubh_dv_128B __builtin_HEXAGON_V6_vaddw __builtin_HEXAGON_V6_vaddw_128B __builtin_HEXAGON_V6_vsubw __builtin_HEXAGON_V6_vsubw_128B __builtin_HEXAGON_V6_vaddw_dv __builtin_HEXAGON_V6_vaddw_dv_128B __builtin_HEXAGON_V6_vsubw_dv __builtin_HEXAGON_V6_vsubw_dv_128B __builtin_HEXAGON_V6_vaddubsat __builtin_HEXAGON_V6_vaddubsat_128B __builtin_HEXAGON_V6_vaddubsat_dv __builtin_HEXAGON_V6_vaddubsat_dv_128B __builtin_HEXAGON_V6_vsububsat __builtin_HEXAGON_V6_vsububsat_128B __builtin_HEXAGON_V6_vsububsat_dv __builtin_HEXAGON_V6_vsububsat_dv_128B __builtin_HEXAGON_V6_vadduhsat __builtin_HEXAGON_V6_vadduhsat_128B __builtin_HEXAGON_V6_vadduhsat_dv __builtin_HEXAGON_V6_vadduhsat_dv_128B __builtin_HEXAGON_V6_vsubuhsat __builtin_HEXAGON_V6_vsubuhsat_128B __builtin_HEXAGON_V6_vsubuhsat_dv __builtin_HEXAGON_V6_vsubuhsat_dv_128B __builtin_HEXAGON_V6_vaddhsat __builtin_HEXAGON_V6_vaddhsat_128B __builtin_HEXAGON_V6_vaddhsat_dv __builtin_HEXAGON_V6_vaddhsat_dv_128B __builtin_HEXAGON_V6_vsubhsat __builtin_HEXAGON_V6_vsubhsat_128B __builtin_HEXAGON_V6_vsubhsat_dv __builtin_HEXAGON_V6_vsubhsat_dv_128B __builtin_HEXAGON_V6_vaddwsat __builtin_HEXAGON_V6_vaddwsat_128B __builtin_HEXAGON_V6_vaddwsat_dv __builtin_HEXAGON_V6_vaddwsat_dv_128B __builtin_HEXAGON_V6_vsubwsat __builtin_HEXAGON_V6_vsubwsat_128B __builtin_HEXAGON_V6_vsubwsat_dv __builtin_HEXAGON_V6_vsubwsat_dv_128B __builtin_HEXAGON_V6_vavgub __builtin_HEXAGON_V6_vavgub_128B __builtin_HEXAGON_V6_vavgubrnd __builtin_HEXAGON_V6_vavgubrnd_128B __builtin_HEXAGON_V6_vavguh __builtin_HEXAGON_V6_vavguh_128B __builtin_HEXAGON_V6_vavguhrnd __builtin_HEXAGON_V6_vavguhrnd_128B __builtin_HEXAGON_V6_vavgh __builtin_HEXAGON_V6_vavgh_128B __builtin_HEXAGON_V6_vavghrnd __builtin_HEXAGON_V6_vavghrnd_128B __builtin_HEXAGON_V6_vnavgh __builtin_HEXAGON_V6_vnavgh_128B __builtin_HEXAGON_V6_vavgw __builtin_HEXAGON_V6_vavgw_128B __builtin_HEXAGON_V6_vavgwrnd __builtin_HEXAGON_V6_vavgwrnd_128B __builtin_HEXAGON_V6_vnavgw __builtin_HEXAGON_V6_vnavgw_128B __builtin_HEXAGON_V6_vabsdiffub __builtin_HEXAGON_V6_vabsdiffub_128B __builtin_HEXAGON_V6_vabsdiffuh __builtin_HEXAGON_V6_vabsdiffuh_128B __builtin_HEXAGON_V6_vabsdiffh __builtin_HEXAGON_V6_vabsdiffh_128B __builtin_HEXAGON_V6_vabsdiffw __builtin_HEXAGON_V6_vabsdiffw_128B __builtin_HEXAGON_V6_vnavgub __builtin_HEXAGON_V6_vnavgub_128B __builtin_HEXAGON_V6_vaddubh __builtin_HEXAGON_V6_vaddubh_128B __builtin_HEXAGON_V6_vsububh __builtin_HEXAGON_V6_vsububh_128B __builtin_HEXAGON_V6_vaddhw __builtin_HEXAGON_V6_vaddhw_128B __builtin_HEXAGON_V6_vsubhw __builtin_HEXAGON_V6_vsubhw_128B __builtin_HEXAGON_V6_vadduhw __builtin_HEXAGON_V6_vadduhw_128B __builtin_HEXAGON_V6_vsubuhw __builtin_HEXAGON_V6_vsubuhw_128B __builtin_HEXAGON_V6_vd0 __builtin_HEXAGON_V6_vd0_128B __builtin_HEXAGON_V6_vaddbq __builtin_HEXAGON_V6_vaddbq_128B __builtin_HEXAGON_V6_vsubbq __builtin_HEXAGON_V6_vsubbq_128B __builtin_HEXAGON_V6_vaddbnq __builtin_HEXAGON_V6_vaddbnq_128B __builtin_HEXAGON_V6_vsubbnq __builtin_HEXAGON_V6_vsubbnq_128B __builtin_HEXAGON_V6_vaddhq __builtin_HEXAGON_V6_vaddhq_128B __builtin_HEXAGON_V6_vsubhq __builtin_HEXAGON_V6_vsubhq_128B __builtin_HEXAGON_V6_vaddhnq __builtin_HEXAGON_V6_vaddhnq_128B __builtin_HEXAGON_V6_vsubhnq __builtin_HEXAGON_V6_vsubhnq_128B __builtin_HEXAGON_V6_vaddwq __builtin_HEXAGON_V6_vaddwq_128B __builtin_HEXAGON_V6_vsubwq __builtin_HEXAGON_V6_vsubwq_128B __builtin_HEXAGON_V6_vaddwnq __builtin_HEXAGON_V6_vaddwnq_128B __builtin_HEXAGON_V6_vsubwnq __builtin_HEXAGON_V6_vsubwnq_128B __builtin_HEXAGON_V6_vabsh __builtin_HEXAGON_V6_vabsh_128B __builtin_HEXAGON_V6_vabsh_sat __builtin_HEXAGON_V6_vabsh_sat_128B __builtin_HEXAGON_V6_vabsw __builtin_HEXAGON_V6_vabsw_128B __builtin_HEXAGON_V6_vabsw_sat __builtin_HEXAGON_V6_vabsw_sat_128B __builtin_HEXAGON_V6_vmpybv __builtin_HEXAGON_V6_vmpybv_128B __builtin_HEXAGON_V6_vmpybv_acc V32iV32iV16iV16i __builtin_HEXAGON_V6_vmpybv_acc_128B V64iV64iV32iV32i __builtin_HEXAGON_V6_vmpyubv __builtin_HEXAGON_V6_vmpyubv_128B __builtin_HEXAGON_V6_vmpyubv_acc __builtin_HEXAGON_V6_vmpyubv_acc_128B __builtin_HEXAGON_V6_vmpybusv __builtin_HEXAGON_V6_vmpybusv_128B __builtin_HEXAGON_V6_vmpybusv_acc __builtin_HEXAGON_V6_vmpybusv_acc_128B __builtin_HEXAGON_V6_vmpabusv __builtin_HEXAGON_V6_vmpabusv_128B __builtin_HEXAGON_V6_vmpabuuv __builtin_HEXAGON_V6_vmpabuuv_128B __builtin_HEXAGON_V6_vmpyhv __builtin_HEXAGON_V6_vmpyhv_128B __builtin_HEXAGON_V6_vmpyhv_acc __builtin_HEXAGON_V6_vmpyhv_acc_128B __builtin_HEXAGON_V6_vmpyuhv __builtin_HEXAGON_V6_vmpyuhv_128B __builtin_HEXAGON_V6_vmpyuhv_acc __builtin_HEXAGON_V6_vmpyuhv_acc_128B __builtin_HEXAGON_V6_vmpyhvsrs __builtin_HEXAGON_V6_vmpyhvsrs_128B __builtin_HEXAGON_V6_vmpyhus __builtin_HEXAGON_V6_vmpyhus_128B __builtin_HEXAGON_V6_vmpyhus_acc __builtin_HEXAGON_V6_vmpyhus_acc_128B __builtin_HEXAGON_V6_vmpyih __builtin_HEXAGON_V6_vmpyih_128B __builtin_HEXAGON_V6_vmpyih_acc __builtin_HEXAGON_V6_vmpyih_acc_128B __builtin_HEXAGON_V6_vmpyewuh __builtin_HEXAGON_V6_vmpyewuh_128B __builtin_HEXAGON_V6_vmpyowh __builtin_HEXAGON_V6_vmpyowh_128B __builtin_HEXAGON_V6_vmpyowh_rnd __builtin_HEXAGON_V6_vmpyowh_rnd_128B __builtin_HEXAGON_V6_vmpyowh_sacc __builtin_HEXAGON_V6_vmpyowh_sacc_128B __builtin_HEXAGON_V6_vmpyowh_rnd_sacc __builtin_HEXAGON_V6_vmpyowh_rnd_sacc_128B __builtin_HEXAGON_V6_vmpyieoh __builtin_HEXAGON_V6_vmpyieoh_128B __builtin_HEXAGON_V6_vmpyiewuh __builtin_HEXAGON_V6_vmpyiewuh_128B __builtin_HEXAGON_V6_vmpyiowh __builtin_HEXAGON_V6_vmpyiowh_128B __builtin_HEXAGON_V6_vmpyiewh_acc __builtin_HEXAGON_V6_vmpyiewh_acc_128B __builtin_HEXAGON_V6_vmpyiewuh_acc __builtin_HEXAGON_V6_vmpyiewuh_acc_128B __builtin_HEXAGON_V6_vmpyub __builtin_HEXAGON_V6_vmpyub_128B __builtin_HEXAGON_V6_vmpyub_acc V32iV32iV16ii __builtin_HEXAGON_V6_vmpyub_acc_128B V64iV64iV32ii __builtin_HEXAGON_V6_vmpybus __builtin_HEXAGON_V6_vmpybus_128B __builtin_HEXAGON_V6_vmpybus_acc __builtin_HEXAGON_V6_vmpybus_acc_128B __builtin_HEXAGON_V6_vmpabus __builtin_HEXAGON_V6_vmpabus_128B __builtin_HEXAGON_V6_vmpabus_acc __builtin_HEXAGON_V6_vmpabus_acc_128B __builtin_HEXAGON_V6_vmpahb __builtin_HEXAGON_V6_vmpahb_128B __builtin_HEXAGON_V6_vmpahb_acc __builtin_HEXAGON_V6_vmpahb_acc_128B __builtin_HEXAGON_V6_vmpyh __builtin_HEXAGON_V6_vmpyh_128B __builtin_HEXAGON_V6_vmpyhsat_acc __builtin_HEXAGON_V6_vmpyhsat_acc_128B __builtin_HEXAGON_V6_vmpyhss __builtin_HEXAGON_V6_vmpyhss_128B __builtin_HEXAGON_V6_vmpyhsrs __builtin_HEXAGON_V6_vmpyhsrs_128B __builtin_HEXAGON_V6_vmpyuh __builtin_HEXAGON_V6_vmpyuh_128B __builtin_HEXAGON_V6_vmpyuh_acc __builtin_HEXAGON_V6_vmpyuh_acc_128B __builtin_HEXAGON_V6_vmpyihb __builtin_HEXAGON_V6_vmpyihb_128B __builtin_HEXAGON_V6_vmpyihb_acc __builtin_HEXAGON_V6_vmpyihb_acc_128B __builtin_HEXAGON_V6_vmpyiwb __builtin_HEXAGON_V6_vmpyiwb_128B __builtin_HEXAGON_V6_vmpyiwb_acc __builtin_HEXAGON_V6_vmpyiwb_acc_128B __builtin_HEXAGON_V6_vmpyiwh __builtin_HEXAGON_V6_vmpyiwh_128B __builtin_HEXAGON_V6_vmpyiwh_acc __builtin_HEXAGON_V6_vmpyiwh_acc_128B __builtin_HEXAGON_V6_vand __builtin_HEXAGON_V6_vand_128B __builtin_HEXAGON_V6_vor __builtin_HEXAGON_V6_vor_128B __builtin_HEXAGON_V6_vxor __builtin_HEXAGON_V6_vxor_128B __builtin_HEXAGON_V6_vnot __builtin_HEXAGON_V6_vnot_128B __builtin_HEXAGON_V6_vandqrt __builtin_HEXAGON_V6_vandqrt_128B __builtin_HEXAGON_V6_vandqrt_acc __builtin_HEXAGON_V6_vandqrt_acc_128B __builtin_HEXAGON_V6_vandvrt __builtin_HEXAGON_V6_vandvrt_128B __builtin_HEXAGON_V6_vandvrt_acc __builtin_HEXAGON_V6_vandvrt_acc_128B __builtin_HEXAGON_V6_vgtw __builtin_HEXAGON_V6_vgtw_128B __builtin_HEXAGON_V6_vgtw_and __builtin_HEXAGON_V6_vgtw_and_128B __builtin_HEXAGON_V6_vgtw_or __builtin_HEXAGON_V6_vgtw_or_128B __builtin_HEXAGON_V6_vgtw_xor __builtin_HEXAGON_V6_vgtw_xor_128B __builtin_HEXAGON_V6_veqw __builtin_HEXAGON_V6_veqw_128B __builtin_HEXAGON_V6_veqw_and __builtin_HEXAGON_V6_veqw_and_128B __builtin_HEXAGON_V6_veqw_or __builtin_HEXAGON_V6_veqw_or_128B __builtin_HEXAGON_V6_veqw_xor __builtin_HEXAGON_V6_veqw_xor_128B __builtin_HEXAGON_V6_vgth __builtin_HEXAGON_V6_vgth_128B __builtin_HEXAGON_V6_vgth_and __builtin_HEXAGON_V6_vgth_and_128B __builtin_HEXAGON_V6_vgth_or __builtin_HEXAGON_V6_vgth_or_128B __builtin_HEXAGON_V6_vgth_xor __builtin_HEXAGON_V6_vgth_xor_128B __builtin_HEXAGON_V6_veqh __builtin_HEXAGON_V6_veqh_128B __builtin_HEXAGON_V6_veqh_and __builtin_HEXAGON_V6_veqh_and_128B __builtin_HEXAGON_V6_veqh_or __builtin_HEXAGON_V6_veqh_or_128B __builtin_HEXAGON_V6_veqh_xor __builtin_HEXAGON_V6_veqh_xor_128B __builtin_HEXAGON_V6_vgtb __builtin_HEXAGON_V6_vgtb_128B __builtin_HEXAGON_V6_vgtb_and __builtin_HEXAGON_V6_vgtb_and_128B __builtin_HEXAGON_V6_vgtb_or __builtin_HEXAGON_V6_vgtb_or_128B __builtin_HEXAGON_V6_vgtb_xor __builtin_HEXAGON_V6_vgtb_xor_128B __builtin_HEXAGON_V6_veqb __builtin_HEXAGON_V6_veqb_128B __builtin_HEXAGON_V6_veqb_and __builtin_HEXAGON_V6_veqb_and_128B __builtin_HEXAGON_V6_veqb_or __builtin_HEXAGON_V6_veqb_or_128B __builtin_HEXAGON_V6_veqb_xor __builtin_HEXAGON_V6_veqb_xor_128B __builtin_HEXAGON_V6_vgtuw __builtin_HEXAGON_V6_vgtuw_128B __builtin_HEXAGON_V6_vgtuw_and __builtin_HEXAGON_V6_vgtuw_and_128B __builtin_HEXAGON_V6_vgtuw_or __builtin_HEXAGON_V6_vgtuw_or_128B __builtin_HEXAGON_V6_vgtuw_xor __builtin_HEXAGON_V6_vgtuw_xor_128B __builtin_HEXAGON_V6_vgtuh __builtin_HEXAGON_V6_vgtuh_128B __builtin_HEXAGON_V6_vgtuh_and __builtin_HEXAGON_V6_vgtuh_and_128B __builtin_HEXAGON_V6_vgtuh_or __builtin_HEXAGON_V6_vgtuh_or_128B __builtin_HEXAGON_V6_vgtuh_xor __builtin_HEXAGON_V6_vgtuh_xor_128B __builtin_HEXAGON_V6_vgtub __builtin_HEXAGON_V6_vgtub_128B __builtin_HEXAGON_V6_vgtub_and __builtin_HEXAGON_V6_vgtub_and_128B __builtin_HEXAGON_V6_vgtub_or __builtin_HEXAGON_V6_vgtub_or_128B __builtin_HEXAGON_V6_vgtub_xor __builtin_HEXAGON_V6_vgtub_xor_128B __builtin_HEXAGON_V6_pred_or __builtin_HEXAGON_V6_pred_or_128B __builtin_HEXAGON_V6_pred_and __builtin_HEXAGON_V6_pred_and_128B __builtin_HEXAGON_V6_pred_not __builtin_HEXAGON_V6_pred_not_128B __builtin_HEXAGON_V6_pred_xor __builtin_HEXAGON_V6_pred_xor_128B __builtin_HEXAGON_V6_pred_and_n __builtin_HEXAGON_V6_pred_and_n_128B __builtin_HEXAGON_V6_pred_or_n __builtin_HEXAGON_V6_pred_or_n_128B __builtin_HEXAGON_V6_pred_scalar2 __builtin_HEXAGON_V6_pred_scalar2_128B __builtin_HEXAGON_V6_vmux __builtin_HEXAGON_V6_vmux_128B __builtin_HEXAGON_V6_vswap V32iV16iV16iV16i __builtin_HEXAGON_V6_vswap_128B V64iV32iV32iV32i __builtin_HEXAGON_V6_vmaxub __builtin_HEXAGON_V6_vmaxub_128B __builtin_HEXAGON_V6_vminub __builtin_HEXAGON_V6_vminub_128B __builtin_HEXAGON_V6_vmaxuh __builtin_HEXAGON_V6_vmaxuh_128B __builtin_HEXAGON_V6_vminuh __builtin_HEXAGON_V6_vminuh_128B __builtin_HEXAGON_V6_vmaxh __builtin_HEXAGON_V6_vmaxh_128B __builtin_HEXAGON_V6_vminh __builtin_HEXAGON_V6_vminh_128B __builtin_HEXAGON_V6_vmaxw __builtin_HEXAGON_V6_vmaxw_128B __builtin_HEXAGON_V6_vminw __builtin_HEXAGON_V6_vminw_128B __builtin_HEXAGON_V6_vsathub __builtin_HEXAGON_V6_vsathub_128B __builtin_HEXAGON_V6_vsatwh __builtin_HEXAGON_V6_vsatwh_128B __builtin_HEXAGON_V6_vshuffeb __builtin_HEXAGON_V6_vshuffeb_128B __builtin_HEXAGON_V6_vshuffob __builtin_HEXAGON_V6_vshuffob_128B __builtin_HEXAGON_V6_vshufeh __builtin_HEXAGON_V6_vshufeh_128B __builtin_HEXAGON_V6_vshufoh __builtin_HEXAGON_V6_vshufoh_128B __builtin_HEXAGON_V6_vshuffvdd __builtin_HEXAGON_V6_vshuffvdd_128B __builtin_HEXAGON_V6_vdealvdd __builtin_HEXAGON_V6_vdealvdd_128B __builtin_HEXAGON_V6_vshufoeh __builtin_HEXAGON_V6_vshufoeh_128B __builtin_HEXAGON_V6_vshufoeb __builtin_HEXAGON_V6_vshufoeb_128B __builtin_HEXAGON_V6_vdealh __builtin_HEXAGON_V6_vdealh_128B __builtin_HEXAGON_V6_vdealb __builtin_HEXAGON_V6_vdealb_128B __builtin_HEXAGON_V6_vdealb4w __builtin_HEXAGON_V6_vdealb4w_128B __builtin_HEXAGON_V6_vshuffh __builtin_HEXAGON_V6_vshuffh_128B __builtin_HEXAGON_V6_vshuffb __builtin_HEXAGON_V6_vshuffb_128B __builtin_HEXAGON_V6_extractw iV16ii __builtin_HEXAGON_V6_extractw_128B iV32ii __builtin_HEXAGON_V6_vinsertwr __builtin_HEXAGON_V6_vinsertwr_128B __builtin_HEXAGON_V6_lvsplatw __builtin_HEXAGON_V6_lvsplatw_128B __builtin_HEXAGON_V6_vassign __builtin_HEXAGON_V6_vassign_128B __builtin_HEXAGON_V6_vcombine __builtin_HEXAGON_V6_vcombine_128B __builtin_HEXAGON_V6_vlutb __builtin_HEXAGON_V6_vlutb_128B __builtin_HEXAGON_V6_vlutb_acc V16iV16iV16iLLii __builtin_HEXAGON_V6_vlutb_acc_128B V32iV32iV32iLLii __builtin_HEXAGON_V6_vlutb_dv __builtin_HEXAGON_V6_vlutb_dv_128B __builtin_HEXAGON_V6_vlutb_dv_acc __builtin_HEXAGON_V6_vlutb_dv_acc_128B V64iV64iV64iLLii __builtin_HEXAGON_V6_vdelta __builtin_HEXAGON_V6_vdelta_128B __builtin_HEXAGON_V6_vrdelta __builtin_HEXAGON_V6_vrdelta_128B __builtin_HEXAGON_V6_vcl0w __builtin_HEXAGON_V6_vcl0w_128B __builtin_HEXAGON_V6_vcl0h __builtin_HEXAGON_V6_vcl0h_128B __builtin_HEXAGON_V6_vnormamtw __builtin_HEXAGON_V6_vnormamtw_128B __builtin_HEXAGON_V6_vnormamth __builtin_HEXAGON_V6_vnormamth_128B __builtin_HEXAGON_V6_vpopcounth __builtin_HEXAGON_V6_vpopcounth_128B __builtin_HEXAGON_V6_vlutvvb __builtin_HEXAGON_V6_vlutvvb_128B __builtin_HEXAGON_V6_vlutvvb_oracc V16iV16iV16iV16ii __builtin_HEXAGON_V6_vlutvvb_oracc_128B V32iV32iV32iV32ii __builtin_HEXAGON_V6_vlutvwh __builtin_HEXAGON_V6_vlutvwh_128B __builtin_HEXAGON_V6_vlutvwh_oracc V32iV32iV16iV16ii __builtin_HEXAGON_V6_vlutvwh_oracc_128B V64iV64iV32iV32ii __builtin_HEXAGON_V6_hi V16iV32i __builtin_HEXAGON_V6_lo __builtin_HEXAGON_V6_hi_128B V32iV64i __builtin_HEXAGON_V6_lo_128B __builtin_HEXAGON_V6_vassignp __builtin_HEXAGON_V6_vassignp_128B __builtin_neon_vabd_v __builtin_neon_vabdd_f64 __builtin_neon_vabdq_v __builtin_neon_vabds_f32 __builtin_neon_vabs_v __builtin_neon_vabsd_s64 WiWi __builtin_neon_vabsq_v __builtin_neon_vaddd_s64 WiWiWi __builtin_neon_vaddd_u64 UWiUWiUWi __builtin_neon_vaddhn_v V8ScV16ScV16Sci __builtin_neon_vaddlv_s16 iV4s __builtin_neon_vaddlv_s32 WiV2i __builtin_neon_vaddlv_s8 sV8Sc __builtin_neon_vaddlv_u16 UiV4Us __builtin_neon_vaddlv_u32 UWiV2Ui __builtin_neon_vaddlv_u8 UsV8Sc __builtin_neon_vaddlvq_s16 __builtin_neon_vaddlvq_s32 WiV4i __builtin_neon_vaddlvq_s8 sV16Sc __builtin_neon_vaddlvq_u16 UiV8Us __builtin_neon_vaddlvq_u32 UWiV4Ui __builtin_neon_vaddlvq_u8 UsV16Sc __builtin_neon_vaddv_f32 fV2f __builtin_neon_vaddv_s16 sV4s __builtin_neon_vaddv_s32 iV2i __builtin_neon_vaddv_s8 ScV8Sc __builtin_neon_vaddv_u16 UsV4Us __builtin_neon_vaddv_u32 UiV2Ui __builtin_neon_vaddv_u8 __builtin_neon_vaddvq_f32 __builtin_neon_vaddvq_f64 __builtin_neon_vaddvq_s16 __builtin_neon_vaddvq_s32 __builtin_neon_vaddvq_s64 WiV2Wi __builtin_neon_vaddvq_s8 __builtin_neon_vaddvq_u16 __builtin_neon_vaddvq_u32 __builtin_neon_vaddvq_u64 UWiV2UWi __builtin_neon_vaddvq_u8 __builtin_neon_vaesdq_v __builtin_neon_vaeseq_v __builtin_neon_vaesimcq_v __builtin_neon_vaesmcq_v __builtin_neon_vbsl_v __builtin_neon_vbslq_v V16ScV16ScV16ScV16Sci __builtin_neon_vcage_v __builtin_neon_vcaged_f64 UWidd __builtin_neon_vcageq_v __builtin_neon_vcages_f32 Uiff __builtin_neon_vcagt_v __builtin_neon_vcagtd_f64 __builtin_neon_vcagtq_v __builtin_neon_vcagts_f32 __builtin_neon_vcale_v __builtin_neon_vcaled_f64 __builtin_neon_vcaleq_v __builtin_neon_vcales_f32 __builtin_neon_vcalt_v __builtin_neon_vcaltd_f64 __builtin_neon_vcaltq_v __builtin_neon_vcalts_f32 __builtin_neon_vceqd_f64 __builtin_neon_vceqd_s64 __builtin_neon_vceqd_u64 __builtin_neon_vceqs_f32 __builtin_neon_vceqz_v __builtin_neon_vceqzd_f64 UWid __builtin_neon_vceqzd_s64 __builtin_neon_vceqzd_u64 UWiUWi __builtin_neon_vceqzq_v __builtin_neon_vceqzs_f32 Uif __builtin_neon_vcged_f64 __builtin_neon_vcged_s64 __builtin_neon_vcged_u64 __builtin_neon_vcges_f32 __builtin_neon_vcgez_v __builtin_neon_vcgezd_f64 __builtin_neon_vcgezd_s64 __builtin_neon_vcgezq_v __builtin_neon_vcgezs_f32 __builtin_neon_vcgtd_f64 __builtin_neon_vcgtd_s64 __builtin_neon_vcgtd_u64 __builtin_neon_vcgts_f32 __builtin_neon_vcgtz_v __builtin_neon_vcgtzd_f64 __builtin_neon_vcgtzd_s64 __builtin_neon_vcgtzq_v __builtin_neon_vcgtzs_f32 __builtin_neon_vcled_f64 __builtin_neon_vcled_s64 __builtin_neon_vcled_u64 __builtin_neon_vcles_f32 __builtin_neon_vclez_v __builtin_neon_vclezd_f64 __builtin_neon_vclezd_s64 __builtin_neon_vclezq_v __builtin_neon_vclezs_f32 __builtin_neon_vcls_v __builtin_neon_vclsq_v __builtin_neon_vcltd_f64 __builtin_neon_vcltd_s64 __builtin_neon_vcltd_u64 __builtin_neon_vclts_f32 __builtin_neon_vcltz_v __builtin_neon_vcltzd_f64 __builtin_neon_vcltzd_s64 __builtin_neon_vcltzq_v __builtin_neon_vcltzs_f32 __builtin_neon_vclz_v __builtin_neon_vclzq_v __builtin_neon_vcnt_v __builtin_neon_vcntq_v __builtin_neon_vcvt_f16_f32 V8ScV16Sci __builtin_neon_vcvt_f32_f16 __builtin_neon_vcvt_f32_f64 __builtin_neon_vcvt_f32_v V2fV8Sci __builtin_neon_vcvt_f64_f32 __builtin_neon_vcvt_f64_v V1dV8Sci __builtin_neon_vcvt_n_f32_v V2fV8ScIii __builtin_neon_vcvt_n_f64_v V1dV8ScIii __builtin_neon_vcvt_n_s32_v __builtin_neon_vcvt_n_s64_v __builtin_neon_vcvt_n_u32_v __builtin_neon_vcvt_n_u64_v __builtin_neon_vcvt_s32_v __builtin_neon_vcvt_s64_v __builtin_neon_vcvt_u32_v __builtin_neon_vcvt_u64_v __builtin_neon_vcvta_s32_v __builtin_neon_vcvta_s64_v __builtin_neon_vcvta_u32_v __builtin_neon_vcvta_u64_v __builtin_neon_vcvtad_s64_f64 Wid __builtin_neon_vcvtad_u64_f64 __builtin_neon_vcvtaq_s32_v __builtin_neon_vcvtaq_s64_v __builtin_neon_vcvtaq_u32_v __builtin_neon_vcvtaq_u64_v __builtin_neon_vcvtas_s32_f32 __builtin_neon_vcvtas_u32_f32 __builtin_neon_vcvtd_f64_s64 dWi __builtin_neon_vcvtd_f64_u64 dUWi __builtin_neon_vcvtd_n_f64_s64 dWiIi __builtin_neon_vcvtd_n_f64_u64 dUWiIi __builtin_neon_vcvtd_n_s64_f64 WidIi __builtin_neon_vcvtd_n_u64_f64 UWidIi __builtin_neon_vcvtd_s64_f64 __builtin_neon_vcvtd_u64_f64 __builtin_neon_vcvtm_s32_v __builtin_neon_vcvtm_s64_v __builtin_neon_vcvtm_u32_v __builtin_neon_vcvtm_u64_v __builtin_neon_vcvtmd_s64_f64 __builtin_neon_vcvtmd_u64_f64 __builtin_neon_vcvtmq_s32_v __builtin_neon_vcvtmq_s64_v __builtin_neon_vcvtmq_u32_v __builtin_neon_vcvtmq_u64_v __builtin_neon_vcvtms_s32_f32 __builtin_neon_vcvtms_u32_f32 __builtin_neon_vcvtn_s32_v __builtin_neon_vcvtn_s64_v __builtin_neon_vcvtn_u32_v __builtin_neon_vcvtn_u64_v __builtin_neon_vcvtnd_s64_f64 __builtin_neon_vcvtnd_u64_f64 __builtin_neon_vcvtnq_s32_v __builtin_neon_vcvtnq_s64_v __builtin_neon_vcvtnq_u32_v __builtin_neon_vcvtnq_u64_v __builtin_neon_vcvtns_s32_f32 __builtin_neon_vcvtns_u32_f32 __builtin_neon_vcvtp_s32_v __builtin_neon_vcvtp_s64_v __builtin_neon_vcvtp_u32_v __builtin_neon_vcvtp_u64_v __builtin_neon_vcvtpd_s64_f64 __builtin_neon_vcvtpd_u64_f64 __builtin_neon_vcvtpq_s32_v __builtin_neon_vcvtpq_s64_v __builtin_neon_vcvtpq_u32_v __builtin_neon_vcvtpq_u64_v __builtin_neon_vcvtps_s32_f32 __builtin_neon_vcvtps_u32_f32 __builtin_neon_vcvtq_f32_v V4fV16Sci __builtin_neon_vcvtq_f64_v V2dV16Sci __builtin_neon_vcvtq_n_f32_v V4fV16ScIii __builtin_neon_vcvtq_n_f64_v V2dV16ScIii __builtin_neon_vcvtq_n_s32_v __builtin_neon_vcvtq_n_s64_v __builtin_neon_vcvtq_n_u32_v __builtin_neon_vcvtq_n_u64_v __builtin_neon_vcvtq_s32_v __builtin_neon_vcvtq_s64_v __builtin_neon_vcvtq_u32_v __builtin_neon_vcvtq_u64_v __builtin_neon_vcvts_f32_s32 __builtin_neon_vcvts_f32_u32 fUi __builtin_neon_vcvts_n_f32_s32 fiIi __builtin_neon_vcvts_n_f32_u32 fUiIi __builtin_neon_vcvts_n_s32_f32 ifIi __builtin_neon_vcvts_n_u32_f32 UifIi __builtin_neon_vcvts_s32_f32 __builtin_neon_vcvts_u32_f32 __builtin_neon_vcvtx_f32_v V2fV16Sci __builtin_neon_vcvtxd_f32_f64 __builtin_neon_vdupb_lane_i8 __builtin_neon_vdupb_laneq_i8 ScV16ScIi __builtin_neon_vdupd_lane_f64 dV1dIi __builtin_neon_vdupd_lane_i64 UWiV1WiIi __builtin_neon_vdupd_laneq_f64 dV2dIi __builtin_neon_vdupd_laneq_i64 UWiV2WiIi __builtin_neon_vduph_lane_i16 UsV4sIi __builtin_neon_vduph_laneq_i16 UsV8sIi __builtin_neon_vdups_lane_f32 fV2fIi __builtin_neon_vdups_lane_i32 UiV2iIi __builtin_neon_vdups_laneq_f32 fV4fIi __builtin_neon_vdups_laneq_i32 UiV4iIi __builtin_neon_vext_v __builtin_neon_vextq_v __builtin_neon_vfma_lane_v V8ScV8ScV8ScV8ScIii __builtin_neon_vfma_laneq_v V8ScV8ScV8ScV16ScIii __builtin_neon_vfma_v __builtin_neon_vfmad_lane_f64 dddV1dIi __builtin_neon_vfmad_laneq_f64 dddV2dIi __builtin_neon_vfmaq_lane_v V16ScV16ScV16ScV8ScIii __builtin_neon_vfmaq_laneq_v V16ScV16ScV16ScV16ScIii __builtin_neon_vfmaq_v __builtin_neon_vfmas_lane_f32 fffV2fIi __builtin_neon_vfmas_laneq_f32 fffV4fIi __builtin_neon_vget_lane_f32 __builtin_neon_vget_lane_f64 __builtin_neon_vget_lane_i16 __builtin_neon_vget_lane_i32 __builtin_neon_vget_lane_i64 __builtin_neon_vget_lane_i8 __builtin_neon_vgetq_lane_f32 __builtin_neon_vgetq_lane_f64 __builtin_neon_vgetq_lane_i16 __builtin_neon_vgetq_lane_i32 __builtin_neon_vgetq_lane_i64 __builtin_neon_vgetq_lane_i8 __builtin_neon_vhadd_v __builtin_neon_vhaddq_v __builtin_neon_vhsub_v __builtin_neon_vhsubq_v __builtin_neon_vld1_dup_v V8ScvC*i __builtin_neon_vld1_lane_v V8ScvC*V8ScIii __builtin_neon_vld1_v __builtin_neon_vld1_x2_v vv*vC*i __builtin_neon_vld1_x3_v __builtin_neon_vld1_x4_v __builtin_neon_vld1q_dup_v V16ScvC*i __builtin_neon_vld1q_lane_v V16ScvC*V16ScIii __builtin_neon_vld1q_v __builtin_neon_vld1q_x2_v __builtin_neon_vld1q_x3_v __builtin_neon_vld1q_x4_v __builtin_neon_vld2_dup_v __builtin_neon_vld2_lane_v vv*vC*V8ScV8ScIii __builtin_neon_vld2_v __builtin_neon_vld2q_dup_v __builtin_neon_vld2q_lane_v vv*vC*V16ScV16ScIii __builtin_neon_vld2q_v __builtin_neon_vld3_dup_v __builtin_neon_vld3_lane_v vv*vC*V8ScV8ScV8ScIii __builtin_neon_vld3_v __builtin_neon_vld3q_dup_v __builtin_neon_vld3q_lane_v vv*vC*V16ScV16ScV16ScIii __builtin_neon_vld3q_v __builtin_neon_vld4_dup_v __builtin_neon_vld4_lane_v vv*vC*V8ScV8ScV8ScV8ScIii __builtin_neon_vld4_v __builtin_neon_vld4q_dup_v __builtin_neon_vld4q_lane_v vv*vC*V16ScV16ScV16ScV16ScIii __builtin_neon_vld4q_v __builtin_neon_vldrq_p128 ULLLivC* __builtin_neon_vmax_v __builtin_neon_vmaxnm_v __builtin_neon_vmaxnmq_v __builtin_neon_vmaxnmv_f32 __builtin_neon_vmaxnmvq_f32 __builtin_neon_vmaxnmvq_f64 __builtin_neon_vmaxq_v __builtin_neon_vmaxv_f32 __builtin_neon_vmaxv_s16 __builtin_neon_vmaxv_s32 __builtin_neon_vmaxv_s8 __builtin_neon_vmaxv_u16 __builtin_neon_vmaxv_u32 __builtin_neon_vmaxv_u8 __builtin_neon_vmaxvq_f32 __builtin_neon_vmaxvq_f64 __builtin_neon_vmaxvq_s16 __builtin_neon_vmaxvq_s32 __builtin_neon_vmaxvq_s8 __builtin_neon_vmaxvq_u16 __builtin_neon_vmaxvq_u32 __builtin_neon_vmaxvq_u8 __builtin_neon_vmin_v __builtin_neon_vminnm_v __builtin_neon_vminnmq_v __builtin_neon_vminnmv_f32 __builtin_neon_vminnmvq_f32 __builtin_neon_vminnmvq_f64 __builtin_neon_vminq_v __builtin_neon_vminv_f32 __builtin_neon_vminv_s16 __builtin_neon_vminv_s32 __builtin_neon_vminv_s8 __builtin_neon_vminv_u16 __builtin_neon_vminv_u32 __builtin_neon_vminv_u8 __builtin_neon_vminvq_f32 __builtin_neon_vminvq_f64 __builtin_neon_vminvq_s16 __builtin_neon_vminvq_s32 __builtin_neon_vminvq_s8 __builtin_neon_vminvq_u16 __builtin_neon_vminvq_u32 __builtin_neon_vminvq_u8 __builtin_neon_vmovl_v __builtin_neon_vmovn_v __builtin_neon_vmul_lane_v __builtin_neon_vmul_laneq_v __builtin_neon_vmul_n_f64 V1dV1dd __builtin_neon_vmul_v __builtin_neon_vmull_p64 ULLLiUWiUWi __builtin_neon_vmull_v V16ScV8ScV8Sci __builtin_neon_vmulq_v __builtin_neon_vmulx_v __builtin_neon_vmulxd_f64 __builtin_neon_vmulxq_v __builtin_neon_vmulxs_f32 __builtin_neon_vnegd_s64 __builtin_neon_vpadal_v __builtin_neon_vpadalq_v __builtin_neon_vpadd_v __builtin_neon_vpaddd_f64 __builtin_neon_vpaddd_s64 __builtin_neon_vpaddd_u64 __builtin_neon_vpaddl_v __builtin_neon_vpaddlq_v __builtin_neon_vpaddq_v __builtin_neon_vpadds_f32 __builtin_neon_vpmax_v __builtin_neon_vpmaxnm_v __builtin_neon_vpmaxnmq_v __builtin_neon_vpmaxnmqd_f64 __builtin_neon_vpmaxnms_f32 __builtin_neon_vpmaxq_v __builtin_neon_vpmaxqd_f64 __builtin_neon_vpmaxs_f32 __builtin_neon_vpmin_v __builtin_neon_vpminnm_v __builtin_neon_vpminnmq_v __builtin_neon_vpminnmqd_f64 __builtin_neon_vpminnms_f32 __builtin_neon_vpminq_v __builtin_neon_vpminqd_f64 __builtin_neon_vpmins_f32 __builtin_neon_vqabs_v __builtin_neon_vqabsb_s8 ScSc __builtin_neon_vqabsd_s64 __builtin_neon_vqabsh_s16 __builtin_neon_vqabsq_v __builtin_neon_vqabss_s32 __builtin_neon_vqadd_v __builtin_neon_vqaddb_s8 ScScSc __builtin_neon_vqaddb_u8 __builtin_neon_vqaddd_s64 __builtin_neon_vqaddd_u64 __builtin_neon_vqaddh_s16 __builtin_neon_vqaddh_u16 UsUsUs __builtin_neon_vqaddq_v __builtin_neon_vqadds_s32 __builtin_neon_vqadds_u32 UiUiUi __builtin_neon_vqdmlal_v V16ScV16ScV8ScV8Sci __builtin_neon_vqdmlalh_lane_s16 iisV4sIi __builtin_neon_vqdmlalh_laneq_s16 iisV8sIi __builtin_neon_vqdmlalh_s16 iiss __builtin_neon_vqdmlals_lane_s32 WiWiiV2iIi __builtin_neon_vqdmlals_laneq_s32 WiWiiV4iIi __builtin_neon_vqdmlals_s32 WiWiii __builtin_neon_vqdmlsl_v __builtin_neon_vqdmlslh_lane_s16 __builtin_neon_vqdmlslh_laneq_s16 __builtin_neon_vqdmlslh_s16 __builtin_neon_vqdmlsls_lane_s32 __builtin_neon_vqdmlsls_laneq_s32 __builtin_neon_vqdmlsls_s32 __builtin_neon_vqdmulh_v __builtin_neon_vqdmulhh_s16 __builtin_neon_vqdmulhq_v __builtin_neon_vqdmulhs_s32 __builtin_neon_vqdmull_v __builtin_neon_vqdmullh_s16 __builtin_neon_vqdmulls_s32 Wiii __builtin_neon_vqmovn_v __builtin_neon_vqmovnd_s64 iWi __builtin_neon_vqmovnd_u64 UiUWi __builtin_neon_vqmovnh_s16 Scs __builtin_neon_vqmovnh_u16 ScUs __builtin_neon_vqmovns_s32 __builtin_neon_vqmovns_u32 UsUi __builtin_neon_vqmovun_v __builtin_neon_vqmovund_s64 __builtin_neon_vqmovunh_s16 __builtin_neon_vqmovuns_s32 __builtin_neon_vqneg_v __builtin_neon_vqnegb_s8 __builtin_neon_vqnegd_s64 __builtin_neon_vqnegh_s16 __builtin_neon_vqnegq_v __builtin_neon_vqnegs_s32 __builtin_neon_vqrdmulh_v __builtin_neon_vqrdmulhh_s16 __builtin_neon_vqrdmulhq_v __builtin_neon_vqrdmulhs_s32 __builtin_neon_vqrshl_v __builtin_neon_vqrshlb_s8 __builtin_neon_vqrshlb_u8 __builtin_neon_vqrshld_s64 __builtin_neon_vqrshld_u64 __builtin_neon_vqrshlh_s16 __builtin_neon_vqrshlh_u16 __builtin_neon_vqrshlq_v __builtin_neon_vqrshls_s32 __builtin_neon_vqrshls_u32 __builtin_neon_vqrshrn_n_v __builtin_neon_vqrshrnd_n_s64 iWiIi __builtin_neon_vqrshrnd_n_u64 UiUWiIi __builtin_neon_vqrshrnh_n_s16 ScsIi __builtin_neon_vqrshrnh_n_u16 ScUsIi __builtin_neon_vqrshrns_n_s32 siIi __builtin_neon_vqrshrns_n_u32 UsUiIi __builtin_neon_vqrshrun_n_v __builtin_neon_vqrshrund_n_s64 __builtin_neon_vqrshrunh_n_s16 __builtin_neon_vqrshruns_n_s32 __builtin_neon_vqshl_n_v __builtin_neon_vqshl_v __builtin_neon_vqshlb_n_s8 ScScIi __builtin_neon_vqshlb_n_u8 __builtin_neon_vqshlb_s8 __builtin_neon_vqshlb_u8 __builtin_neon_vqshld_n_s64 WiWiIi __builtin_neon_vqshld_n_u64 UWiUWiIi __builtin_neon_vqshld_s64 __builtin_neon_vqshld_u64 __builtin_neon_vqshlh_n_s16 ssIi __builtin_neon_vqshlh_n_u16 UsUsIi __builtin_neon_vqshlh_s16 __builtin_neon_vqshlh_u16 __builtin_neon_vqshlq_n_v __builtin_neon_vqshlq_v __builtin_neon_vqshls_n_s32 __builtin_neon_vqshls_n_u32 UiUiIi __builtin_neon_vqshls_s32 __builtin_neon_vqshls_u32 __builtin_neon_vqshlu_n_v __builtin_neon_vqshlub_n_s8 __builtin_neon_vqshlud_n_s64 __builtin_neon_vqshluh_n_s16 __builtin_neon_vqshluq_n_v __builtin_neon_vqshlus_n_s32 __builtin_neon_vqshrn_n_v __builtin_neon_vqshrnd_n_s64 __builtin_neon_vqshrnd_n_u64 __builtin_neon_vqshrnh_n_s16 __builtin_neon_vqshrnh_n_u16 __builtin_neon_vqshrns_n_s32 __builtin_neon_vqshrns_n_u32 __builtin_neon_vqshrun_n_v __builtin_neon_vqshrund_n_s64 __builtin_neon_vqshrunh_n_s16 __builtin_neon_vqshruns_n_s32 __builtin_neon_vqsub_v __builtin_neon_vqsubb_s8 __builtin_neon_vqsubb_u8 __builtin_neon_vqsubd_s64 __builtin_neon_vqsubd_u64 __builtin_neon_vqsubh_s16 __builtin_neon_vqsubh_u16 __builtin_neon_vqsubq_v __builtin_neon_vqsubs_s32 __builtin_neon_vqsubs_u32 __builtin_neon_vqtbl1_v __builtin_neon_vqtbl1q_v __builtin_neon_vqtbl2_v __builtin_neon_vqtbl2q_v __builtin_neon_vqtbl3_v __builtin_neon_vqtbl3q_v V16ScV16ScV16ScV16ScV16Sci __builtin_neon_vqtbl4_v __builtin_neon_vqtbl4q_v V16ScV16ScV16ScV16ScV16ScV16Sci __builtin_neon_vqtbx1_v V8ScV8ScV16ScV8Sci __builtin_neon_vqtbx1q_v __builtin_neon_vqtbx2_v V8ScV8ScV16ScV16ScV8Sci __builtin_neon_vqtbx2q_v __builtin_neon_vqtbx3_v V8ScV8ScV16ScV16ScV16ScV8Sci __builtin_neon_vqtbx3q_v __builtin_neon_vqtbx4_v V8ScV8ScV16ScV16ScV16ScV16ScV8Sci __builtin_neon_vqtbx4q_v V16ScV16ScV16ScV16ScV16ScV16ScV16Sci __builtin_neon_vraddhn_v __builtin_neon_vrbit_v __builtin_neon_vrbitq_v __builtin_neon_vrecpe_v __builtin_neon_vrecped_f64 __builtin_neon_vrecpeq_v __builtin_neon_vrecpes_f32 __builtin_neon_vrecps_v __builtin_neon_vrecpsd_f64 __builtin_neon_vrecpsq_v __builtin_neon_vrecpss_f32 __builtin_neon_vrecpxd_f64 __builtin_neon_vrecpxs_f32 __builtin_neon_vrhadd_v __builtin_neon_vrhaddq_v __builtin_neon_vrnd_v __builtin_neon_vrnda_v __builtin_neon_vrndaq_v __builtin_neon_vrndi_v __builtin_neon_vrndiq_v __builtin_neon_vrndm_v __builtin_neon_vrndmq_v __builtin_neon_vrndn_v __builtin_neon_vrndnq_v __builtin_neon_vrndp_v __builtin_neon_vrndpq_v __builtin_neon_vrndq_v __builtin_neon_vrndx_v __builtin_neon_vrndxq_v __builtin_neon_vrshl_v __builtin_neon_vrshld_s64 __builtin_neon_vrshld_u64 __builtin_neon_vrshlq_v __builtin_neon_vrshr_n_v __builtin_neon_vrshrd_n_s64 __builtin_neon_vrshrd_n_u64 __builtin_neon_vrshrn_n_v __builtin_neon_vrshrq_n_v __builtin_neon_vrsqrte_v __builtin_neon_vrsqrted_f64 __builtin_neon_vrsqrteq_v __builtin_neon_vrsqrtes_f32 __builtin_neon_vrsqrts_v __builtin_neon_vrsqrtsd_f64 __builtin_neon_vrsqrtsq_v __builtin_neon_vrsqrtss_f32 __builtin_neon_vrsra_n_v __builtin_neon_vrsrad_n_s64 WiWiWiIi __builtin_neon_vrsrad_n_u64 UWiUWiUWiIi __builtin_neon_vrsraq_n_v __builtin_neon_vrsubhn_v __builtin_neon_vset_lane_f32 V2ffV2fIi __builtin_neon_vset_lane_f64 V1ddV1dIi __builtin_neon_vset_lane_i16 V4ssV4sIi __builtin_neon_vset_lane_i32 V2iiV2iIi __builtin_neon_vset_lane_i64 V1WiWiV1WiIi __builtin_neon_vset_lane_i8 V8ScScV8ScIi __builtin_neon_vsetq_lane_f32 V4ffV4fIi __builtin_neon_vsetq_lane_f64 V2ddV2dIi __builtin_neon_vsetq_lane_i16 V8ssV8sIi __builtin_neon_vsetq_lane_i32 V4iiV4iIi __builtin_neon_vsetq_lane_i64 V2WiWiV2WiIi __builtin_neon_vsetq_lane_i8 V16ScScV16ScIi __builtin_neon_vsha1cq_u32 V4iV4UiUiV4Ui __builtin_neon_vsha1h_u32 __builtin_neon_vsha1mq_u32 __builtin_neon_vsha1pq_u32 __builtin_neon_vsha1su0q_v __builtin_neon_vsha1su1q_v __builtin_neon_vsha256h2q_v __builtin_neon_vsha256hq_v __builtin_neon_vsha256su0q_v __builtin_neon_vsha256su1q_v __builtin_neon_vshl_n_v __builtin_neon_vshl_v __builtin_neon_vshld_n_s64 __builtin_neon_vshld_n_u64 __builtin_neon_vshld_s64 __builtin_neon_vshld_u64 __builtin_neon_vshll_n_v V16ScV8ScIii __builtin_neon_vshlq_n_v __builtin_neon_vshlq_v __builtin_neon_vshr_n_v __builtin_neon_vshrd_n_s64 __builtin_neon_vshrd_n_u64 __builtin_neon_vshrn_n_v __builtin_neon_vshrq_n_v __builtin_neon_vsli_n_v __builtin_neon_vslid_n_s64 __builtin_neon_vslid_n_u64 __builtin_neon_vsliq_n_v __builtin_neon_vsqadd_v __builtin_neon_vsqaddb_u8 __builtin_neon_vsqaddd_u64 __builtin_neon_vsqaddh_u16 __builtin_neon_vsqaddq_v __builtin_neon_vsqadds_u32 __builtin_neon_vsqrt_v __builtin_neon_vsqrtq_v __builtin_neon_vsra_n_v __builtin_neon_vsrad_n_s64 __builtin_neon_vsrad_n_u64 __builtin_neon_vsraq_n_v __builtin_neon_vsri_n_v __builtin_neon_vsrid_n_s64 __builtin_neon_vsrid_n_u64 __builtin_neon_vsriq_n_v __builtin_neon_vst1_lane_v vv*V8ScIii __builtin_neon_vst1_v vv*V8Sci __builtin_neon_vst1_x2_v vv*V8ScV8Sci __builtin_neon_vst1_x3_v vv*V8ScV8ScV8Sci __builtin_neon_vst1_x4_v vv*V8ScV8ScV8ScV8Sci __builtin_neon_vst1q_lane_v vv*V16ScIii __builtin_neon_vst1q_v vv*V16Sci __builtin_neon_vst1q_x2_v vv*V16ScV16Sci __builtin_neon_vst1q_x3_v vv*V16ScV16ScV16Sci __builtin_neon_vst1q_x4_v vv*V16ScV16ScV16ScV16Sci __builtin_neon_vst2_lane_v vv*V8ScV8ScIii __builtin_neon_vst2_v __builtin_neon_vst2q_lane_v vv*V16ScV16ScIii __builtin_neon_vst2q_v __builtin_neon_vst3_lane_v vv*V8ScV8ScV8ScIii __builtin_neon_vst3_v __builtin_neon_vst3q_lane_v vv*V16ScV16ScV16ScIii __builtin_neon_vst3q_v __builtin_neon_vst4_lane_v vv*V8ScV8ScV8ScV8ScIii __builtin_neon_vst4_v __builtin_neon_vst4q_lane_v vv*V16ScV16ScV16ScV16ScIii __builtin_neon_vst4q_v __builtin_neon_vstrq_p128 vv*ULLLi __builtin_neon_vsubd_s64 __builtin_neon_vsubd_u64 __builtin_neon_vsubhn_v __builtin_neon_vtbl1_v __builtin_neon_vtbl2_v __builtin_neon_vtbl3_v __builtin_neon_vtbl4_v __builtin_neon_vtbx1_v __builtin_neon_vtbx2_v __builtin_neon_vtbx3_v __builtin_neon_vtbx4_v V8ScV8ScV8ScV8ScV8ScV8ScV8Sci __builtin_neon_vtrn_v __builtin_neon_vtrnq_v __builtin_neon_vtst_v __builtin_neon_vtstd_s64 __builtin_neon_vtstd_u64 __builtin_neon_vtstq_v __builtin_neon_vuqadd_v __builtin_neon_vuqaddb_s8 __builtin_neon_vuqaddd_s64 __builtin_neon_vuqaddh_s16 __builtin_neon_vuqaddq_v __builtin_neon_vuqadds_s32 __builtin_neon_vuzp_v __builtin_neon_vuzpq_v __builtin_neon_vzip_v __builtin_neon_vzipq_v __builtin_arm_ldrex __builtin_arm_ldaex __builtin_arm_strex __builtin_arm_stlex __builtin_arm_clrex __builtin_arm_rbit __builtin_arm_rbit64 LUiLUi __builtin_arm_nop __builtin_arm_yield __builtin_arm_wfe __builtin_arm_wfi __builtin_arm_sev __builtin_arm_sevl __builtin_arm_crc32b UiUiUc __builtin_arm_crc32cb __builtin_arm_crc32h UiUiUs __builtin_arm_crc32ch __builtin_arm_crc32w __builtin_arm_crc32cw __builtin_arm_crc32d UiUiLUi __builtin_arm_crc32cd __builtin_arm_dmb vUi __builtin_arm_dsb __builtin_arm_isb __builtin_arm_prefetch vvC*UiUiUiUi __builtin_arm_rsr UicC* __builtin_arm_rsr64 LUicC* __builtin_arm_rsrp v*cC* __builtin_arm_wsr vcC*Ui __builtin_arm_wsr64 vcC*LUi __builtin_arm_wsrp vcC*vC* __builtin_thread_pointer w6 w7 w8 w9 w10 w11 w12 w13 w14 w15 w16 w17 w18 w19 w20 w21 w22 w23 w24 w25 w26 w27 w28 w29 w30 wsp x0 x5 x6 x7 x9 x10 x11 x12 x13 x14 x15 x17 x18 x19 x20 x21 x22 x23 x24 x25 x26 x27 x28 s9 s10 s12 s13 s14 s15 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d6 d7 d9 d10 d11 d12 d13 d14 d15 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 v5 v6 v7 v10 v12 v13 v14 v15 v16 v17 v18 v19 v20 v21 v22 v23 v24 v25 v26 v27 v28 v29 v30 v31 w31 x29 x30 x31 __builtin_arm_qadd __builtin_arm_qsub __builtin_arm_ssat iiUi __builtin_arm_usat __builtin_arm_ldrexd LLUiv* __builtin_arm_strexd iLLUiv* __builtin_arm_get_fpscr __builtin_arm_set_fpscr __builtin_arm_vcvtr_f __builtin_arm_vcvtr_d fdi __builtin_arm_mcr vUIiUIiUiUIiUIiUIi __builtin_arm_mcr2 __builtin_arm_mrc UiUIiUIiUIiUIiUIi __builtin_arm_mrc2 __builtin_arm_cdp vUiUiUiUiUiUi __builtin_arm_cdp2 __builtin_arm_mcrr vUIiUIiUiUiUIi __builtin_arm_mcrr2 UiUiLLUi __builtin_arm_dbg vvC*UiUi LLUicC* vcC*LLUi __emit vIUiC __yield __wfe __wfi __sev __sevl __dmb __dsb __isb __ldrexd WiWiCD* _MoveFromCoprocessor UiIUiIUiIUiIUiIUi _MoveFromCoprocessor2 _MoveToCoprocessor vUiIUiIUiIUiIUiIUi _MoveToCoprocessor2 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 rfp v32 v33 v34 v35 v36 v37 v38 v39 v40 v41 v42 v43 v44 v45 v46 v47 v48 v49 v50 v51 v52 v53 v54 v55 v56 v57 v58 v59 v60 v61 v62 v63 v64 v65 v66 v67 v68 v69 v70 v71 v72 v73 v74 v75 v76 v77 v78 v79 v80 v81 v82 v83 v84 v85 v86 v87 v88 v89 v90 v91 v92 v93 v94 v95 v96 v97 v98 v99 v100 v101 v102 v103 v104 v105 v106 v107 v108 v109 v110 v111 v112 v113 v114 v115 v116 v117 v118 v119 v120 v121 v122 v123 v124 v125 v126 v127 v128 v129 v130 v131 v132 v133 v134 v135 v136 v137 v138 v139 v140 v141 v142 v143 v144 v145 v146 v147 v148 v149 v150 v151 v152 v153 v154 v155 v156 v157 v158 v159 v160 v161 v162 v163 v164 v165 v166 v167 v168 v169 v170 v171 v172 v173 v174 v175 v176 v177 v178 v179 v180 v181 v182 v183 v184 v185 v186 v187 v188 v189 v190 v191 v192 v193 v194 v195 v196 v197 v198 v199 v200 v201 v202 v203 v204 v205 v206 v207 v208 v209 v210 v211 v212 v213 v214 v215 v216 v217 v218 v219 v220 v221 v222 v223 v224 v225 v226 v227 v228 v229 v230 v231 v232 v233 v234 v235 v236 v237 v238 v239 v240 v241 v242 v243 v244 v245 v246 v247 v248 v249 v250 v251 v252 v253 v254 v255 s33 s34 s35 s36 s37 s38 s39 s40 s41 s42 s43 s44 s45 s46 s47 s48 s49 s50 s51 s52 s53 s54 s55 s56 s57 s58 s59 s60 s61 s62 s63 s65 s66 s67 s68 s69 s70 s71 s72 s73 s74 s75 s76 s77 s78 s79 s80 s81 s82 s83 s84 s85 s86 s87 s88 s89 s90 s91 s92 s93 s94 s95 s96 s97 s98 s99 s100 s101 s102 s103 s104 s105 s106 s107 s108 s109 s110 s111 s112 s113 s114 s115 s116 s117 s118 s119 s120 s121 s122 s123 s124 s125 s126 s127 vcc flat_scratch exec_lo exec_hi vcc_lo vcc_hi flat_scratch_lo flat_scratch_hi __builtin_amdgcn_s_barrier __builtin_amdgcn_div_scale dddbb* __builtin_amdgcn_div_scalef fffbb* __builtin_amdgcn_div_fmas ddddb __builtin_amdgcn_div_fmasf ffffb __builtin_amdgcn_div_fixup __builtin_amdgcn_div_fixupf __builtin_amdgcn_trig_preop __builtin_amdgcn_trig_preopf __builtin_amdgcn_rcp __builtin_amdgcn_rcpf __builtin_amdgcn_rsq __builtin_amdgcn_rsqf __builtin_amdgcn_rsq_clamp __builtin_amdgcn_rsq_clampf __builtin_amdgcn_sinf __builtin_amdgcn_cosf __builtin_amdgcn_log_clampf __builtin_amdgcn_ldexp __builtin_amdgcn_ldexpf __builtin_amdgcn_frexp_mant __builtin_amdgcn_frexp_mantf __builtin_amdgcn_frexp_exp __builtin_amdgcn_frexp_expf __builtin_amdgcn_class bdi __builtin_amdgcn_classf bfi __builtin_amdgcn_cubeid __builtin_amdgcn_cubesc __builtin_amdgcn_cubetc __builtin_amdgcn_cubema __builtin_amdgcn_s_memtime __builtin_amdgcn_s_sleep vIi __builtin_amdgcn_s_memrealtime __builtin_amdgpu_rsq __builtin_amdgpu_rsqf __builtin_amdgpu_ldexp __builtin_amdgpu_ldexpf __builtin_ptx_read_tid_x __builtin_ptx_read_tid_y __builtin_ptx_read_tid_z __builtin_ptx_read_tid_w __builtin_ptx_read_ntid_x __builtin_ptx_read_ntid_y __builtin_ptx_read_ntid_z __builtin_ptx_read_ntid_w __builtin_ptx_read_ctaid_x __builtin_ptx_read_ctaid_y __builtin_ptx_read_ctaid_z __builtin_ptx_read_ctaid_w __builtin_ptx_read_nctaid_x __builtin_ptx_read_nctaid_y __builtin_ptx_read_nctaid_z __builtin_ptx_read_nctaid_w __builtin_ptx_read_laneid __builtin_ptx_read_warpid __builtin_ptx_read_nwarpid __builtin_ptx_read_smid __builtin_ptx_read_nsmid __builtin_ptx_read_gridid __builtin_ptx_read_lanemask_eq __builtin_ptx_read_lanemask_le __builtin_ptx_read_lanemask_lt __builtin_ptx_read_lanemask_ge __builtin_ptx_read_lanemask_gt __builtin_ptx_read_clock __builtin_ptx_read_clock64 __builtin_ptx_read_pm0 __builtin_ptx_read_pm1 __builtin_ptx_read_pm2 __builtin_ptx_read_pm3 __builtin_ptx_bar_sync __nvvm_clz_i __nvvm_clz_ll __nvvm_popc_i __nvvm_popc_ll __nvvm_prmt __nvvm_min_i __nvvm_min_ui __nvvm_min_ll __nvvm_min_ull ULLiULLiULLi __nvvm_max_i __nvvm_max_ui __nvvm_max_ll __nvvm_max_ull __nvvm_fmax_ftz_f __nvvm_fmax_f __nvvm_fmin_ftz_f __nvvm_fmin_f __nvvm_fmax_d __nvvm_fmin_d __nvvm_mulhi_i __nvvm_mulhi_ui __nvvm_mulhi_ll __nvvm_mulhi_ull __nvvm_mul_rn_ftz_f __nvvm_mul_rn_f __nvvm_mul_rz_ftz_f __nvvm_mul_rz_f __nvvm_mul_rm_ftz_f __nvvm_mul_rm_f __nvvm_mul_rp_ftz_f __nvvm_mul_rp_f __nvvm_mul_rn_d __nvvm_mul_rz_d __nvvm_mul_rm_d __nvvm_mul_rp_d __nvvm_mul24_i __nvvm_mul24_ui __nvvm_div_approx_ftz_f __nvvm_div_approx_f __nvvm_div_rn_ftz_f __nvvm_div_rn_f __nvvm_div_rz_ftz_f __nvvm_div_rz_f __nvvm_div_rm_ftz_f __nvvm_div_rm_f __nvvm_div_rp_ftz_f __nvvm_div_rp_f __nvvm_div_rn_d __nvvm_div_rz_d __nvvm_div_rm_d __nvvm_div_rp_d __nvvm_brev32 __nvvm_brev64 __nvvm_sad_i __nvvm_sad_ui __nvvm_floor_ftz_f __nvvm_floor_f __nvvm_floor_d __nvvm_ceil_ftz_f __nvvm_ceil_f __nvvm_ceil_d __nvvm_abs_i __nvvm_abs_ll __nvvm_fabs_ftz_f __nvvm_fabs_f __nvvm_fabs_d __nvvm_round_ftz_f __nvvm_round_f __nvvm_round_d __nvvm_trunc_ftz_f __nvvm_trunc_f __nvvm_trunc_d __nvvm_saturate_ftz_f __nvvm_saturate_f __nvvm_saturate_d __nvvm_ex2_approx_ftz_f __nvvm_ex2_approx_f __nvvm_ex2_approx_d __nvvm_lg2_approx_ftz_f __nvvm_lg2_approx_f __nvvm_lg2_approx_d __nvvm_sin_approx_ftz_f __nvvm_sin_approx_f __nvvm_cos_approx_ftz_f __nvvm_cos_approx_f __nvvm_fma_rn_ftz_f __nvvm_fma_rn_f __nvvm_fma_rz_ftz_f __nvvm_fma_rz_f __nvvm_fma_rm_ftz_f __nvvm_fma_rm_f __nvvm_fma_rp_ftz_f __nvvm_fma_rp_f __nvvm_fma_rn_d __nvvm_fma_rz_d __nvvm_fma_rm_d __nvvm_fma_rp_d __nvvm_rcp_rn_ftz_f __nvvm_rcp_rn_f __nvvm_rcp_rz_ftz_f __nvvm_rcp_rz_f __nvvm_rcp_rm_ftz_f __nvvm_rcp_rm_f __nvvm_rcp_rp_ftz_f __nvvm_rcp_rp_f __nvvm_rcp_rn_d __nvvm_rcp_rz_d __nvvm_rcp_rm_d __nvvm_rcp_rp_d __nvvm_rcp_approx_ftz_d __nvvm_sqrt_rn_ftz_f __nvvm_sqrt_rn_f __nvvm_sqrt_rz_ftz_f __nvvm_sqrt_rz_f __nvvm_sqrt_rm_ftz_f __nvvm_sqrt_rm_f __nvvm_sqrt_rp_ftz_f __nvvm_sqrt_rp_f __nvvm_sqrt_approx_ftz_f __nvvm_sqrt_approx_f __nvvm_sqrt_rn_d __nvvm_sqrt_rz_d __nvvm_sqrt_rm_d __nvvm_sqrt_rp_d __nvvm_rsqrt_approx_ftz_f __nvvm_rsqrt_approx_f __nvvm_rsqrt_approx_d __nvvm_add_rn_ftz_f __nvvm_add_rn_f __nvvm_add_rz_ftz_f __nvvm_add_rz_f __nvvm_add_rm_ftz_f __nvvm_add_rm_f __nvvm_add_rp_ftz_f __nvvm_add_rp_f __nvvm_add_rn_d __nvvm_add_rz_d __nvvm_add_rm_d __nvvm_add_rp_d __nvvm_d2f_rn_ftz __nvvm_d2f_rn __nvvm_d2f_rz_ftz __nvvm_d2f_rz __nvvm_d2f_rm_ftz __nvvm_d2f_rm __nvvm_d2f_rp_ftz __nvvm_d2f_rp __nvvm_d2i_rn __nvvm_d2i_rz __nvvm_d2i_rm __nvvm_d2i_rp __nvvm_d2ui_rn Uid __nvvm_d2ui_rz __nvvm_d2ui_rm __nvvm_d2ui_rp __nvvm_i2d_rn __nvvm_i2d_rz __nvvm_i2d_rm __nvvm_i2d_rp __nvvm_ui2d_rn dUi __nvvm_ui2d_rz __nvvm_ui2d_rm __nvvm_ui2d_rp __nvvm_f2i_rn_ftz __nvvm_f2i_rn __nvvm_f2i_rz_ftz __nvvm_f2i_rz __nvvm_f2i_rm_ftz __nvvm_f2i_rm __nvvm_f2i_rp_ftz __nvvm_f2i_rp __nvvm_f2ui_rn_ftz __nvvm_f2ui_rn __nvvm_f2ui_rz_ftz __nvvm_f2ui_rz __nvvm_f2ui_rm_ftz __nvvm_f2ui_rm __nvvm_f2ui_rp_ftz __nvvm_f2ui_rp __nvvm_i2f_rn __nvvm_i2f_rz __nvvm_i2f_rm __nvvm_i2f_rp __nvvm_ui2f_rn __nvvm_ui2f_rz __nvvm_ui2f_rm __nvvm_ui2f_rp __nvvm_lohi_i2d dii __nvvm_d2i_lo __nvvm_d2i_hi __nvvm_f2ll_rn_ftz __nvvm_f2ll_rn __nvvm_f2ll_rz_ftz __nvvm_f2ll_rz __nvvm_f2ll_rm_ftz __nvvm_f2ll_rm __nvvm_f2ll_rp_ftz __nvvm_f2ll_rp __nvvm_f2ull_rn_ftz ULLif __nvvm_f2ull_rn __nvvm_f2ull_rz_ftz __nvvm_f2ull_rz __nvvm_f2ull_rm_ftz __nvvm_f2ull_rm __nvvm_f2ull_rp_ftz __nvvm_f2ull_rp __nvvm_d2ll_rn __nvvm_d2ll_rz __nvvm_d2ll_rm __nvvm_d2ll_rp __nvvm_d2ull_rn ULLid __nvvm_d2ull_rz __nvvm_d2ull_rm __nvvm_d2ull_rp __nvvm_ll2f_rn __nvvm_ll2f_rz __nvvm_ll2f_rm __nvvm_ll2f_rp __nvvm_ull2f_rn fULLi __nvvm_ull2f_rz __nvvm_ull2f_rm __nvvm_ull2f_rp __nvvm_ll2d_rn __nvvm_ll2d_rz __nvvm_ll2d_rm __nvvm_ll2d_rp __nvvm_ull2d_rn dULLi __nvvm_ull2d_rz __nvvm_ull2d_rm __nvvm_ull2d_rp __nvvm_f2h_rn_ftz Usf __nvvm_f2h_rn __nvvm_h2f fUs __nvvm_bitcast_f2i __nvvm_bitcast_i2f __nvvm_bitcast_ll2d __nvvm_bitcast_d2ll __syncthreads __nvvm_bar0 __nvvm_bar0_popc __nvvm_bar0_and __nvvm_bar0_or __nvvm_membar_cta __nvvm_membar_gl __nvvm_membar_sys __nvvm_memcpy vUc*Uc*zi __nvvm_memset vUc*Uczi __builtin_ptx_read_image2Dfi_ V4fiiii __builtin_ptx_read_image2Dff_ V4fiiff __builtin_ptx_read_image2Dii_ V4iiiii __builtin_ptx_read_image2Dif_ V4iiiff __builtin_ptx_read_image3Dfi_ V4fiiiiii __builtin_ptx_read_image3Dff_ V4fiiffff __builtin_ptx_read_image3Dii_ V4iiiiiii __builtin_ptx_read_image3Dif_ V4iiiffff __builtin_ptx_write_image2Df_ viiiffff __builtin_ptx_write_image2Di_ viiiiiii __builtin_ptx_write_image2Dui_ viiiUiUiUiUi __builtin_ptx_get_image_depthi_ __builtin_ptx_get_image_heighti_ __builtin_ptx_get_image_widthi_ __builtin_ptx_get_image_channel_data_typei_ __builtin_ptx_get_image_channel_orderi_ __nvvm_atom_add_g_i iiD*1i __nvvm_atom_add_s_i iiD*3i __nvvm_atom_add_gen_i __nvvm_atom_add_g_l LiLiD*1Li __nvvm_atom_add_s_l LiLiD*3Li __nvvm_atom_add_gen_l __nvvm_atom_add_g_ll LLiLLiD*1LLi __nvvm_atom_add_s_ll LLiLLiD*3LLi __nvvm_atom_add_gen_ll LLiLLiD*LLi __nvvm_atom_add_g_f ffD*1f __nvvm_atom_add_s_f ffD*3f __nvvm_atom_add_gen_f ffD*f __nvvm_atom_add_g_d ddD*1d __nvvm_atom_add_s_d ddD*3d __nvvm_atom_add_gen_d ddD*d __nvvm_atom_sub_g_i __nvvm_atom_sub_s_i __nvvm_atom_sub_gen_i __nvvm_atom_sub_g_l __nvvm_atom_sub_s_l __nvvm_atom_sub_gen_l __nvvm_atom_sub_g_ll __nvvm_atom_sub_s_ll __nvvm_atom_sub_gen_ll __nvvm_atom_xchg_g_i __nvvm_atom_xchg_s_i __nvvm_atom_xchg_gen_i __nvvm_atom_xchg_g_l __nvvm_atom_xchg_s_l __nvvm_atom_xchg_gen_l __nvvm_atom_xchg_g_ll __nvvm_atom_xchg_s_ll __nvvm_atom_xchg_gen_ll __nvvm_atom_max_g_i __nvvm_atom_max_s_i __nvvm_atom_max_gen_i __nvvm_atom_max_g_ui UiUiD*1Ui __nvvm_atom_max_s_ui UiUiD*3Ui __nvvm_atom_max_gen_ui __nvvm_atom_max_g_l __nvvm_atom_max_s_l __nvvm_atom_max_gen_l __nvvm_atom_max_g_ul ULiULiD*1ULi __nvvm_atom_max_s_ul ULiULiD*3ULi __nvvm_atom_max_gen_ul ULiULiD*ULi __nvvm_atom_max_g_ll __nvvm_atom_max_s_ll __nvvm_atom_max_gen_ll __nvvm_atom_max_g_ull ULLiULLiD*1ULLi __nvvm_atom_max_s_ull ULLiULLiD*3ULLi __nvvm_atom_max_gen_ull ULLiULLiD*ULLi __nvvm_atom_min_g_i __nvvm_atom_min_s_i __nvvm_atom_min_gen_i __nvvm_atom_min_g_ui __nvvm_atom_min_s_ui __nvvm_atom_min_gen_ui __nvvm_atom_min_g_l __nvvm_atom_min_s_l __nvvm_atom_min_gen_l __nvvm_atom_min_g_ul __nvvm_atom_min_s_ul __nvvm_atom_min_gen_ul __nvvm_atom_min_g_ll __nvvm_atom_min_s_ll __nvvm_atom_min_gen_ll __nvvm_atom_min_g_ull __nvvm_atom_min_s_ull __nvvm_atom_min_gen_ull __nvvm_atom_inc_g_ui __nvvm_atom_inc_s_ui __nvvm_atom_inc_gen_ui __nvvm_atom_dec_g_ui __nvvm_atom_dec_s_ui __nvvm_atom_dec_gen_ui __nvvm_atom_and_g_i __nvvm_atom_and_s_i __nvvm_atom_and_gen_i __nvvm_atom_and_g_l __nvvm_atom_and_s_l __nvvm_atom_and_gen_l __nvvm_atom_and_g_ll __nvvm_atom_and_s_ll __nvvm_atom_and_gen_ll __nvvm_atom_or_g_i __nvvm_atom_or_s_i __nvvm_atom_or_gen_i __nvvm_atom_or_g_l __nvvm_atom_or_s_l __nvvm_atom_or_gen_l __nvvm_atom_or_g_ll __nvvm_atom_or_s_ll __nvvm_atom_or_gen_ll __nvvm_atom_xor_g_i __nvvm_atom_xor_s_i __nvvm_atom_xor_gen_i __nvvm_atom_xor_g_l __nvvm_atom_xor_s_l __nvvm_atom_xor_gen_l __nvvm_atom_xor_g_ll __nvvm_atom_xor_s_ll __nvvm_atom_xor_gen_ll __nvvm_atom_cas_g_i iiD*1ii __nvvm_atom_cas_s_i iiD*3ii __nvvm_atom_cas_gen_i iiD*ii __nvvm_atom_cas_g_l LiLiD*1LiLi __nvvm_atom_cas_s_l LiLiD*3LiLi __nvvm_atom_cas_gen_l __nvvm_atom_cas_g_ll LLiLLiD*1LLiLLi __nvvm_atom_cas_s_ll LLiLLiD*3LLiLLi __nvvm_atom_cas_gen_ll LLiLLiD*LLiLLi __nvvm_compiler_error vcC*4 __nvvm_compiler_warn 18 26 27 29 fr0 fr1 fr2 fr3 fr4 fr5 fr6 fr7 fr8 fr9 fr10 fr11 fr12 fr13 fr14 fr15 fr16 fr17 f17 fr18 f18 fr19 f19 fr20 f20 fr21 f21 fr22 f22 fr23 f23 fr24 f24 fr25 f25 fr26 f26 fr27 f27 fr28 f28 fr29 f29 fr30 f30 fr31 f31 cr0 mq ctr cr1 cr2 cr3 cr4 cr5 cr6 cr7 xer vrsave spe_acc spefscr sfp __builtin_ppc_get_timebase __builtin_altivec_vaddcuw __builtin_altivec_vaddsbs __builtin_altivec_vaddubs __builtin_altivec_vaddshs __builtin_altivec_vadduhs __builtin_altivec_vaddsws __builtin_altivec_vadduws __builtin_altivec_vaddeuqm V1ULLLiV1ULLLiV1ULLLiV1ULLLi __builtin_altivec_vaddcuq V1ULLLiV1ULLLiV1ULLLi __builtin_altivec_vaddecuq __builtin_altivec_vsubsbs __builtin_altivec_vsububs __builtin_altivec_vsubshs __builtin_altivec_vsubuhs __builtin_altivec_vsubsws __builtin_altivec_vsubuws __builtin_altivec_vsubeuqm __builtin_altivec_vsubcuq __builtin_altivec_vsubecuq __builtin_altivec_vavgsb __builtin_altivec_vavgub __builtin_altivec_vavgsh __builtin_altivec_vavguh __builtin_altivec_vavgsw __builtin_altivec_vavguw __builtin_altivec_vrfip __builtin_altivec_vcfsx V4fV4ii __builtin_altivec_vcfux __builtin_altivec_vctsxs V4SiV4fi __builtin_altivec_vctuxs V4UiV4fi __builtin_altivec_dss __builtin_altivec_dssall __builtin_altivec_dst vvC*iUi __builtin_altivec_dstt __builtin_altivec_dstst __builtin_altivec_dststt __builtin_altivec_vexptefp __builtin_altivec_vrfim __builtin_altivec_lvx V4iivC* __builtin_altivec_lvxl __builtin_altivec_lvebx V16civC* __builtin_altivec_lvehx V8sivC* __builtin_altivec_lvewx __builtin_altivec_vlogefp __builtin_altivec_lvsl V16cUcvC* __builtin_altivec_lvsr __builtin_altivec_vmaddfp __builtin_altivec_vmhaddshs __builtin_altivec_vmhraddshs __builtin_altivec_vmsumubm V4UiV16UcV16UcV4Ui __builtin_altivec_vmsummbm V4SiV16ScV16UcV4Si __builtin_altivec_vmsumuhm __builtin_altivec_vmsumshm __builtin_altivec_vmsumuhs __builtin_altivec_vmsumshs __builtin_altivec_vmuleub __builtin_altivec_vmulesb __builtin_altivec_vmuleuh __builtin_altivec_vmulesh __builtin_altivec_vmuleuw __builtin_altivec_vmulesw __builtin_altivec_vmuloub __builtin_altivec_vmulosb __builtin_altivec_vmulouh __builtin_altivec_vmulosh __builtin_altivec_vmulouw __builtin_altivec_vmulosw __builtin_altivec_vnmsubfp __builtin_altivec_vpkpx V8sV4UiV4Ui __builtin_altivec_vpkuhus __builtin_altivec_vpkshss __builtin_altivec_vpkuwus __builtin_altivec_vpkswss __builtin_altivec_vpkshus V16UcV8SsV8Ss __builtin_altivec_vpkswus V8UsV4SiV4Si __builtin_altivec_vpksdss __builtin_altivec_vpksdus V4UiV2SLLiV2SLLi __builtin_altivec_vpkudus __builtin_altivec_vpkudum __builtin_altivec_vperm_4si V4iV4iV4iV16Uc __builtin_altivec_stvx vV4iiv* __builtin_altivec_stvxl __builtin_altivec_stvebx vV16civ* __builtin_altivec_stvehx vV8siv* __builtin_altivec_stvewx __builtin_altivec_vcmpbfp __builtin_altivec_vcmpgefp __builtin_altivec_vcmpequb __builtin_altivec_vcmpequh __builtin_altivec_vcmpequw __builtin_altivec_vcmpequd __builtin_altivec_vcmpeqfp __builtin_altivec_vcmpgtsb V16cV16ScV16Sc __builtin_altivec_vcmpgtub V16cV16UcV16Uc __builtin_altivec_vcmpgtsh V8sV8SsV8Ss __builtin_altivec_vcmpgtuh V8sV8UsV8Us __builtin_altivec_vcmpgtsw V4iV4SiV4Si __builtin_altivec_vcmpgtuw V4iV4UiV4Ui __builtin_altivec_vcmpgtsd __builtin_altivec_vcmpgtud V2LLiV2ULLiV2ULLi __builtin_altivec_vcmpgtfp __builtin_altivec_vmaxsb __builtin_altivec_vmaxub __builtin_altivec_vmaxsh __builtin_altivec_vmaxuh __builtin_altivec_vmaxsw __builtin_altivec_vmaxuw __builtin_altivec_vmaxsd __builtin_altivec_vmaxud __builtin_altivec_vmaxfp __builtin_altivec_mfvscr __builtin_altivec_vminsb __builtin_altivec_vminub __builtin_altivec_vminsh __builtin_altivec_vminuh __builtin_altivec_vminsw __builtin_altivec_vminuw __builtin_altivec_vminsd __builtin_altivec_vminud __builtin_altivec_vminfp __builtin_altivec_mtvscr vV4i __builtin_altivec_vrefp __builtin_altivec_vrlb V16cV16cV16Uc __builtin_altivec_vrlh V8sV8sV8Us __builtin_altivec_vrlw V4iV4iV4Ui __builtin_altivec_vrld V2LLiV2LLiV2ULLi __builtin_altivec_vsel_4si V4iV4iV4iV4Ui __builtin_altivec_vsl __builtin_altivec_vslo __builtin_altivec_vsrab __builtin_altivec_vsrah __builtin_altivec_vsraw __builtin_altivec_vsr __builtin_altivec_vsro __builtin_altivec_vrfin __builtin_altivec_vrsqrtefp __builtin_altivec_vsubcuw __builtin_altivec_vsum4sbs V4SiV16ScV4Si __builtin_altivec_vsum4ubs V4UiV16UcV4Ui __builtin_altivec_vsum4shs V4SiV8SsV4Si __builtin_altivec_vsum2sws __builtin_altivec_vsumsws __builtin_altivec_vrfiz __builtin_altivec_vupkhsb V8sV16c __builtin_altivec_vupkhpx V4UiV8s __builtin_altivec_vupkhsh V4iV8s __builtin_altivec_vupkhsw V2LLiV4i __builtin_altivec_vupklsb __builtin_altivec_vupklpx __builtin_altivec_vupklsh __builtin_altivec_vupklsw __builtin_altivec_vcmpbfp_p iiV4fV4f __builtin_altivec_vcmpgefp_p __builtin_altivec_vcmpequb_p iiV16cV16c __builtin_altivec_vcmpequh_p iiV8sV8s __builtin_altivec_vcmpequw_p iiV4iV4i __builtin_altivec_vcmpequd_p iiV2LLiV2LLi __builtin_altivec_vcmpeqfp_p __builtin_altivec_vcmpgtsb_p iiV16ScV16Sc __builtin_altivec_vcmpgtub_p iiV16UcV16Uc __builtin_altivec_vcmpgtsh_p iiV8SsV8Ss __builtin_altivec_vcmpgtuh_p iiV8UsV8Us __builtin_altivec_vcmpgtsw_p iiV4SiV4Si __builtin_altivec_vcmpgtuw_p iiV4UiV4Ui __builtin_altivec_vcmpgtsd_p __builtin_altivec_vcmpgtud_p iiV2ULLiV2ULLi __builtin_altivec_vcmpgtfp_p __builtin_altivec_vgbbd __builtin_altivec_vbpermq V2ULLiV16UcV16Uc __builtin_altivec_crypto_vsbox __builtin_altivec_crypto_vpermxor __builtin_altivec_crypto_vshasigmaw V4UiV4UiIiIi __builtin_altivec_crypto_vshasigmad V2ULLiV2ULLiIiIi __builtin_altivec_crypto_vcipher __builtin_altivec_crypto_vcipherlast __builtin_altivec_crypto_vncipher __builtin_altivec_crypto_vncipherlast __builtin_altivec_crypto_vpmsumb __builtin_altivec_crypto_vpmsumh __builtin_altivec_crypto_vpmsumw __builtin_altivec_crypto_vpmsumd __builtin_altivec_vclzb __builtin_altivec_vclzh __builtin_altivec_vclzw __builtin_altivec_vclzd __builtin_vsx_lxvd2x V2divC* __builtin_vsx_lxvw4x __builtin_vsx_stxvd2x vV2div* __builtin_vsx_stxvw4x __builtin_vsx_xvmaxdp __builtin_vsx_xvmaxsp __builtin_vsx_xsmaxdp __builtin_vsx_xvmindp __builtin_vsx_xvminsp __builtin_vsx_xsmindp __builtin_vsx_xvdivdp __builtin_vsx_xvdivsp __builtin_vsx_xvrdpip __builtin_vsx_xvrspip __builtin_vsx_xvcmpeqdp __builtin_vsx_xvcmpeqsp __builtin_vsx_xvcmpeqdp_p iiV2dV2d __builtin_vsx_xvcmpeqsp_p __builtin_vsx_xvcmpgedp __builtin_vsx_xvcmpgesp __builtin_vsx_xvcmpgedp_p __builtin_vsx_xvcmpgesp_p __builtin_vsx_xvcmpgtdp __builtin_vsx_xvcmpgtsp __builtin_vsx_xvcmpgtdp_p __builtin_vsx_xvcmpgtsp_p __builtin_vsx_xvrdpim __builtin_vsx_xvrspim __builtin_vsx_xvrdpi __builtin_vsx_xvrspi __builtin_vsx_xvrdpic __builtin_vsx_xvrspic __builtin_vsx_xvrdpiz __builtin_vsx_xvrspiz __builtin_vsx_xvmaddadp __builtin_vsx_xvmaddasp __builtin_vsx_xvmsubadp __builtin_vsx_xvmsubasp __builtin_vsx_xvmuldp __builtin_vsx_xvmulsp __builtin_vsx_xvnmaddadp __builtin_vsx_xvnmaddasp __builtin_vsx_xvnmsubadp __builtin_vsx_xvnmsubasp __builtin_vsx_xvredp __builtin_vsx_xvresp __builtin_vsx_xvrsqrtedp __builtin_vsx_xvrsqrtesp __builtin_vsx_xvsqrtdp __builtin_vsx_xvsqrtsp __builtin_vsx_xxleqv __builtin_vsx_xvcpsgndp __builtin_vsx_xvcpsgnsp __builtin_vsx_xvabssp __builtin_vsx_xvabsdp UiUIi __builtin_tabortdc __builtin_tabortdci UiUiUii __builtin_tabortwc __builtin_tabortwci __builtin_tcheck __builtin_treclaim __builtin_trechkpt __builtin_tsr __builtin_tendall __builtin_tresume __builtin_tsuspend __builtin_get_texasr __builtin_get_texasru __builtin_get_tfhar __builtin_get_tfiar __builtin_set_texasr vLUi __builtin_set_texasru __builtin_set_tfhar __builtin_set_tfiar __builtin_ttest __builtin_divwe SiSiSi __builtin_divweu __builtin_divde SLLiSLLiSLLi __builtin_divdeu __builtin_bpermd eax rax rbx ecx rcx edx rdx esi rsi edi rdi r8d r8w r8b r9d r9w r9b r10d r10w r10b r11d r11w r11b r12d r12w r12b r13d r13w r13b r14d r14w r14b r15d r15w r15b dx cx bp st(1) st(2) st(3) st(4) st(5) st(6) st(7) argp fpcr fpsr dirflag xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 __builtin_cpu_supports bcC* __builtin_ms_va_start vc*&. __builtin_ms_va_end vc*& __builtin_ms_va_copy vc*&c*& __builtin_ia32_undef128 __builtin_ia32_undef256 __builtin_ia32_undef512 V8d __builtin_ia32_readeflags_u32 __builtin_ia32_readeflags_u64 __builtin_ia32_writeeflags_u32 __builtin_ia32_writeeflags_u64 vULLi __builtin_ia32_femms __builtin_ia32_pavgusb V8cV8cV8c __builtin_ia32_pf2id V2iV2f __builtin_ia32_pfacc V2fV2fV2f __builtin_ia32_pfadd __builtin_ia32_pfcmpeq V2iV2fV2f __builtin_ia32_pfcmpge __builtin_ia32_pfcmpgt __builtin_ia32_pfmax __builtin_ia32_pfmin __builtin_ia32_pfmul __builtin_ia32_pfrcp V2fV2f __builtin_ia32_pfrcpit1 __builtin_ia32_pfrcpit2 __builtin_ia32_pfrsqrt __builtin_ia32_pfrsqit1 __builtin_ia32_pfsub __builtin_ia32_pfsubr __builtin_ia32_pi2fd V2fV2i __builtin_ia32_pmulhrw V4sV4sV4s __builtin_ia32_pf2iw __builtin_ia32_pfnacc __builtin_ia32_pfpnacc __builtin_ia32_pi2fw __builtin_ia32_pswapdsf __builtin_ia32_pswapdsi V2iV2i _mm_prefetch vcC*i __builtin_ia32_emms __builtin_ia32_paddb __builtin_ia32_paddw __builtin_ia32_paddd V2iV2iV2i __builtin_ia32_paddsb __builtin_ia32_paddsw __builtin_ia32_paddusb __builtin_ia32_paddusw __builtin_ia32_psubb __builtin_ia32_psubw __builtin_ia32_psubd __builtin_ia32_psubsb __builtin_ia32_psubsw __builtin_ia32_psubusb __builtin_ia32_psubusw __builtin_ia32_pmulhw __builtin_ia32_pmullw __builtin_ia32_pmaddwd V2iV4sV4s __builtin_ia32_pand V1LLiV1LLiV1LLi __builtin_ia32_pandn __builtin_ia32_por __builtin_ia32_pxor __builtin_ia32_psllw V4sV4sV1LLi __builtin_ia32_pslld V2iV2iV1LLi __builtin_ia32_psllq __builtin_ia32_psrlw __builtin_ia32_psrld __builtin_ia32_psrlq __builtin_ia32_psraw __builtin_ia32_psrad __builtin_ia32_psllwi V4sV4si __builtin_ia32_pslldi V2iV2ii __builtin_ia32_psllqi V1LLiV1LLii __builtin_ia32_psrlwi __builtin_ia32_psrldi __builtin_ia32_psrlqi __builtin_ia32_psrawi __builtin_ia32_psradi __builtin_ia32_packsswb V8cV4sV4s __builtin_ia32_packssdw V4sV2iV2i __builtin_ia32_packuswb __builtin_ia32_punpckhbw __builtin_ia32_punpckhwd __builtin_ia32_punpckhdq __builtin_ia32_punpcklbw __builtin_ia32_punpcklwd __builtin_ia32_punpckldq __builtin_ia32_pcmpeqb __builtin_ia32_pcmpeqw __builtin_ia32_pcmpeqd __builtin_ia32_pcmpgtb __builtin_ia32_pcmpgtw __builtin_ia32_pcmpgtd __builtin_ia32_maskmovq vV8cV8cc* __builtin_ia32_movntq vV1LLi*V1LLi __builtin_ia32_vec_init_v2si V2iii __builtin_ia32_vec_init_v4hi V4sssss __builtin_ia32_vec_init_v8qi V8ccccccccc __builtin_ia32_vec_ext_v2si iV2ii __builtin_ia32_cvtpi2ps V4fV4fV2i __builtin_ia32_cvtps2pi V2iV4f __builtin_ia32_cvttps2pi __builtin_ia32_pavgb __builtin_ia32_pavgw __builtin_ia32_pmaxsw __builtin_ia32_pmaxub __builtin_ia32_pminsw __builtin_ia32_pminub __builtin_ia32_pmovmskb iV8c __builtin_ia32_pmulhuw __builtin_ia32_psadbw V4sV8cV8c __builtin_ia32_pshufw V4sV4sIc __builtin_ia32_cvtpd2pi V2iV2d __builtin_ia32_cvtpi2pd V2dV2i __builtin_ia32_cvttpd2pi __builtin_ia32_paddq __builtin_ia32_pmuludq V1LLiV2iV2i __builtin_ia32_psubq __builtin_ia32_pabsb V8cV8c __builtin_ia32_pabsd __builtin_ia32_pabsw V4sV4s __builtin_ia32_palignr V8cV8cV8cIc __builtin_ia32_phaddd __builtin_ia32_phaddsw __builtin_ia32_phaddw __builtin_ia32_phsubd __builtin_ia32_phsubsw __builtin_ia32_phsubw __builtin_ia32_pmaddubsw __builtin_ia32_pmulhrsw __builtin_ia32_pshufb __builtin_ia32_psignw __builtin_ia32_psignb __builtin_ia32_psignd __builtin_ia32_comieq iV4fV4f __builtin_ia32_comilt __builtin_ia32_comile __builtin_ia32_comigt __builtin_ia32_comige __builtin_ia32_comineq __builtin_ia32_ucomieq __builtin_ia32_ucomilt __builtin_ia32_ucomile __builtin_ia32_ucomigt __builtin_ia32_ucomige __builtin_ia32_ucomineq __builtin_ia32_comisdeq __builtin_ia32_comisdlt __builtin_ia32_comisdle __builtin_ia32_comisdgt __builtin_ia32_comisdge __builtin_ia32_comisdneq __builtin_ia32_ucomisdeq __builtin_ia32_ucomisdlt __builtin_ia32_ucomisdle __builtin_ia32_ucomisdgt __builtin_ia32_ucomisdge __builtin_ia32_ucomisdneq __builtin_ia32_cmpps V4fV4fV4fIc __builtin_ia32_cmpeqps __builtin_ia32_cmpltps __builtin_ia32_cmpleps __builtin_ia32_cmpunordps __builtin_ia32_cmpneqps __builtin_ia32_cmpnltps __builtin_ia32_cmpnleps __builtin_ia32_cmpordps __builtin_ia32_cmpss __builtin_ia32_cmpeqss __builtin_ia32_cmpltss __builtin_ia32_cmpless __builtin_ia32_cmpunordss __builtin_ia32_cmpneqss __builtin_ia32_cmpnltss __builtin_ia32_cmpnless __builtin_ia32_cmpordss __builtin_ia32_minps __builtin_ia32_maxps __builtin_ia32_minss __builtin_ia32_maxss __builtin_ia32_cmppd V2dV2dV2dIc __builtin_ia32_cmpeqpd __builtin_ia32_cmpltpd __builtin_ia32_cmplepd __builtin_ia32_cmpunordpd __builtin_ia32_cmpneqpd __builtin_ia32_cmpnltpd __builtin_ia32_cmpnlepd __builtin_ia32_cmpordpd __builtin_ia32_cmpsd __builtin_ia32_cmpeqsd __builtin_ia32_cmpltsd __builtin_ia32_cmplesd __builtin_ia32_cmpunordsd __builtin_ia32_cmpneqsd __builtin_ia32_cmpnltsd __builtin_ia32_cmpnlesd __builtin_ia32_cmpordsd __builtin_ia32_minpd __builtin_ia32_maxpd __builtin_ia32_minsd __builtin_ia32_maxsd __builtin_ia32_paddsb128 __builtin_ia32_paddsw128 __builtin_ia32_psubsb128 __builtin_ia32_psubsw128 __builtin_ia32_paddusb128 __builtin_ia32_paddusw128 __builtin_ia32_psubusb128 __builtin_ia32_psubusw128 __builtin_ia32_pmulhw128 __builtin_ia32_pavgb128 __builtin_ia32_pavgw128 __builtin_ia32_pmaxub128 __builtin_ia32_pmaxsw128 __builtin_ia32_pminub128 __builtin_ia32_pminsw128 __builtin_ia32_packsswb128 V16cV8sV8s __builtin_ia32_packssdw128 V8sV4iV4i __builtin_ia32_packuswb128 __builtin_ia32_pmulhuw128 __builtin_ia32_addsubps __builtin_ia32_addsubpd __builtin_ia32_haddps __builtin_ia32_haddpd __builtin_ia32_hsubps __builtin_ia32_hsubpd __builtin_ia32_phaddw128 __builtin_ia32_phaddd128 __builtin_ia32_phaddsw128 __builtin_ia32_phsubw128 __builtin_ia32_phsubd128 __builtin_ia32_phsubsw128 __builtin_ia32_pmaddubsw128 V8sV16cV16c __builtin_ia32_pmulhrsw128 __builtin_ia32_pshufb128 __builtin_ia32_psignb128 __builtin_ia32_psignw128 __builtin_ia32_psignd128 __builtin_ia32_pabsb128 __builtin_ia32_pabsw128 __builtin_ia32_pabsd128 V4iV4i __builtin_ia32_ldmxcsr __builtin_ia32_stmxcsr __builtin_ia32_cvtss2si iV4f __builtin_ia32_cvtss2si64 LLiV4f __builtin_ia32_storeups vf*V4f __builtin_ia32_storehps vV2i*V4f __builtin_ia32_storelps __builtin_ia32_movmskps __builtin_ia32_movntps __builtin_ia32_sfence __builtin_ia32_rcpps __builtin_ia32_rcpss __builtin_ia32_rsqrtps __builtin_ia32_rsqrtss __builtin_ia32_sqrtps __builtin_ia32_sqrtss __builtin_ia32_maskmovdqu vV16cV16cc* __builtin_ia32_storeupd vd*V2d __builtin_ia32_movmskpd __builtin_ia32_pmovmskb128 __builtin_ia32_movnti vi*i __builtin_ia32_movnti64 vLLi*LLi __builtin_ia32_movntpd __builtin_ia32_movntdq vV2LLi*V2LLi __builtin_ia32_psadbw128 V2LLiV16cV16c __builtin_ia32_sqrtpd __builtin_ia32_sqrtsd __builtin_ia32_cvtdq2pd V2dV4i __builtin_ia32_cvtdq2ps V4fV4i __builtin_ia32_cvtpd2dq __builtin_ia32_cvtpd2ps V4fV2d __builtin_ia32_cvttpd2dq V4iV2d __builtin_ia32_cvtsd2si __builtin_ia32_cvtsd2si64 LLiV2d __builtin_ia32_cvtps2dq __builtin_ia32_cvtps2pd __builtin_ia32_cvttps2dq __builtin_ia32_clflush vvC* __builtin_ia32_lfence __builtin_ia32_mfence __builtin_ia32_pause __builtin_ia32_storedqu vc*V16c __builtin_ia32_pmuludq128 V2LLiV4iV4i __builtin_ia32_psraw128 __builtin_ia32_psrad128 __builtin_ia32_psrlw128 __builtin_ia32_psrld128 __builtin_ia32_psrlq128 __builtin_ia32_psllw128 __builtin_ia32_pslld128 __builtin_ia32_psllq128 __builtin_ia32_psllwi128 V8sV8si __builtin_ia32_pslldi128 V4iV4ii __builtin_ia32_psllqi128 V2LLiV2LLii __builtin_ia32_psrlwi128 __builtin_ia32_psrldi128 __builtin_ia32_psrlqi128 __builtin_ia32_psrawi128 __builtin_ia32_psradi128 __builtin_ia32_pmaddwd128 V4iV8sV8s __builtin_ia32_monitor vv*UiUi __builtin_ia32_mwait __builtin_ia32_lddqu V16ccC* __builtin_ia32_palignr128 V16cV16cV16cIc __builtin_ia32_insertps128 __builtin_ia32_pblendvb128 __builtin_ia32_blendvpd __builtin_ia32_blendvps __builtin_ia32_packusdw128 __builtin_ia32_pmaxsb128 __builtin_ia32_pmaxsd128 __builtin_ia32_pmaxud128 __builtin_ia32_pmaxuw128 __builtin_ia32_pminsb128 __builtin_ia32_pminsd128 __builtin_ia32_pminud128 __builtin_ia32_pminuw128 __builtin_ia32_pmovzxbd128 V4iV16c __builtin_ia32_pmovzxbq128 V2LLiV16c __builtin_ia32_pmovzxbw128 __builtin_ia32_pmovzxdq128 __builtin_ia32_pmovzxwd128 __builtin_ia32_pmovzxwq128 V2LLiV8s __builtin_ia32_pmuldq128 __builtin_ia32_pmulld128 __builtin_ia32_roundps V4fV4fIi __builtin_ia32_roundss V4fV4fV4fIi __builtin_ia32_roundsd V2dV2dV2dIi __builtin_ia32_roundpd V2dV2dIi __builtin_ia32_dpps __builtin_ia32_dppd __builtin_ia32_movntdqa V2LLiV2LLiC* __builtin_ia32_ptestz128 __builtin_ia32_ptestc128 __builtin_ia32_ptestnzc128 __builtin_ia32_mpsadbw128 __builtin_ia32_phminposuw128 __builtin_ia32_pcmpistrm128 __builtin_ia32_pcmpistri128 iV16cV16cIc __builtin_ia32_pcmpestrm128 V16cV16ciV16ciIc __builtin_ia32_pcmpestri128 iV16ciV16ciIc __builtin_ia32_pcmpistria128 __builtin_ia32_pcmpistric128 __builtin_ia32_pcmpistrio128 __builtin_ia32_pcmpistris128 __builtin_ia32_pcmpistriz128 __builtin_ia32_pcmpestria128 __builtin_ia32_pcmpestric128 __builtin_ia32_pcmpestrio128 __builtin_ia32_pcmpestris128 __builtin_ia32_pcmpestriz128 __builtin_ia32_crc32qi __builtin_ia32_crc32hi __builtin_ia32_crc32si __builtin_ia32_crc32di __builtin_ia32_extrqi V2LLiV2LLiIcIc __builtin_ia32_extrq V2LLiV2LLiV16c __builtin_ia32_insertqi V2LLiV2LLiV2LLiIcIc __builtin_ia32_insertq __builtin_ia32_movntsd __builtin_ia32_movntss __builtin_ia32_aesenc128 __builtin_ia32_aesenclast128 __builtin_ia32_aesdec128 __builtin_ia32_aesdeclast128 __builtin_ia32_aesimc128 V2LLiV2LLi __builtin_ia32_aeskeygenassist128 V2LLiV2LLiIc __builtin_ia32_pclmulqdq128 V2LLiV2LLiV2LLiIc __builtin_ia32_addsubpd256 V4dV4dV4d __builtin_ia32_addsubps256 V8fV8fV8f __builtin_ia32_haddpd256 __builtin_ia32_hsubps256 __builtin_ia32_hsubpd256 __builtin_ia32_haddps256 __builtin_ia32_maxpd256 __builtin_ia32_maxps256 __builtin_ia32_minpd256 __builtin_ia32_minps256 __builtin_ia32_vpermilvarpd __builtin_ia32_vpermilvarps __builtin_ia32_vpermilvarpd256 V4dV4dV4LLi __builtin_ia32_vpermilvarps256 V8fV8fV8i __builtin_ia32_blendvpd256 V4dV4dV4dV4d __builtin_ia32_blendvps256 V8fV8fV8fV8f __builtin_ia32_dpps256 V8fV8fV8fIc __builtin_ia32_cmppd256 V4dV4dV4dIc __builtin_ia32_cmpps256 __builtin_ia32_cvtdq2pd256 V4dV4i __builtin_ia32_cvtdq2ps256 V8fV8i __builtin_ia32_cvtpd2ps256 V4fV4d __builtin_ia32_cvtps2dq256 V8iV8f __builtin_ia32_cvtps2pd256 V4dV4f __builtin_ia32_cvttpd2dq256 V4iV4d __builtin_ia32_cvtpd2dq256 __builtin_ia32_cvttps2dq256 __builtin_ia32_vperm2f128_pd256 __builtin_ia32_vperm2f128_ps256 __builtin_ia32_vperm2f128_si256 V8iV8iV8iIc __builtin_ia32_sqrtpd256 V4dV4d __builtin_ia32_sqrtps256 V8fV8f __builtin_ia32_rsqrtps256 __builtin_ia32_rcpps256 __builtin_ia32_roundpd256 V4dV4dIi __builtin_ia32_roundps256 V8fV8fIi __builtin_ia32_vtestzpd __builtin_ia32_vtestcpd __builtin_ia32_vtestnzcpd __builtin_ia32_vtestzps __builtin_ia32_vtestcps __builtin_ia32_vtestnzcps __builtin_ia32_vtestzpd256 iV4dV4d __builtin_ia32_vtestcpd256 __builtin_ia32_vtestnzcpd256 __builtin_ia32_vtestzps256 iV8fV8f __builtin_ia32_vtestcps256 __builtin_ia32_vtestnzcps256 __builtin_ia32_ptestz256 __builtin_ia32_ptestc256 __builtin_ia32_ptestnzc256 __builtin_ia32_movmskpd256 iV4d __builtin_ia32_movmskps256 iV8f __builtin_ia32_vzeroall __builtin_ia32_vzeroupper __builtin_ia32_vbroadcastf128_pd256 V4dV2dC* __builtin_ia32_vbroadcastf128_ps256 V8fV4fC* __builtin_ia32_storeupd256 vd*V4d __builtin_ia32_storeups256 vf*V8f __builtin_ia32_storedqu256 vc*V32c __builtin_ia32_lddqu256 V32ccC* __builtin_ia32_movntdq256 vV4LLi*V4LLi __builtin_ia32_movntpd256 __builtin_ia32_movntps256 __builtin_ia32_maskloadpd V2dV2dC*V2LLi __builtin_ia32_maskloadps V4fV4fC*V4i __builtin_ia32_maskloadpd256 V4dV4dC*V4LLi __builtin_ia32_maskloadps256 V8fV8fC*V8i __builtin_ia32_maskstorepd vV2d*V2LLiV2d __builtin_ia32_maskstoreps vV4f*V4iV4f __builtin_ia32_maskstorepd256 vV4d*V4LLiV4d __builtin_ia32_maskstoreps256 vV8f*V8iV8f __builtin_ia32_mpsadbw256 V32cV32cV32cIc __builtin_ia32_pabsb256 __builtin_ia32_pabsw256 __builtin_ia32_pabsd256 __builtin_ia32_packsswb256 V32cV16sV16s __builtin_ia32_packssdw256 V16sV8iV8i __builtin_ia32_packuswb256 __builtin_ia32_packusdw256 __builtin_ia32_paddsb256 __builtin_ia32_paddsw256 V16sV16sV16s __builtin_ia32_psubsb256 __builtin_ia32_psubsw256 __builtin_ia32_paddusb256 __builtin_ia32_paddusw256 __builtin_ia32_psubusb256 __builtin_ia32_psubusw256 __builtin_ia32_palignr256 __builtin_ia32_pavgb256 __builtin_ia32_pavgw256 __builtin_ia32_pblendvb256 V32cV32cV32cV32c __builtin_ia32_phaddw256 __builtin_ia32_phaddd256 V8iV8iV8i __builtin_ia32_phaddsw256 __builtin_ia32_phsubw256 __builtin_ia32_phsubd256 __builtin_ia32_phsubsw256 __builtin_ia32_pmaddubsw256 V16sV32cV32c __builtin_ia32_pmaddwd256 V8iV16sV16s __builtin_ia32_pmaxub256 __builtin_ia32_pmaxuw256 __builtin_ia32_pmaxud256 __builtin_ia32_pmaxsb256 __builtin_ia32_pmaxsw256 __builtin_ia32_pmaxsd256 __builtin_ia32_pminub256 __builtin_ia32_pminuw256 __builtin_ia32_pminud256 __builtin_ia32_pminsb256 __builtin_ia32_pminsw256 __builtin_ia32_pminsd256 __builtin_ia32_pmovmskb256 iV32c __builtin_ia32_pmovsxbw256 V16sV16c __builtin_ia32_pmovsxbd256 V8iV16c __builtin_ia32_pmovsxbq256 V4LLiV16c __builtin_ia32_pmovsxwd256 V8iV8s __builtin_ia32_pmovsxwq256 V4LLiV8s __builtin_ia32_pmovsxdq256 V4LLiV4i __builtin_ia32_pmovzxbw256 __builtin_ia32_pmovzxbd256 __builtin_ia32_pmovzxbq256 __builtin_ia32_pmovzxwd256 __builtin_ia32_pmovzxwq256 __builtin_ia32_pmovzxdq256 __builtin_ia32_pmuldq256 V4LLiV8iV8i __builtin_ia32_pmulhrsw256 __builtin_ia32_pmulhuw256 __builtin_ia32_pmulhw256 __builtin_ia32_pmuludq256 __builtin_ia32_psadbw256 V4LLiV32cV32c __builtin_ia32_pshufb256 __builtin_ia32_psignb256 __builtin_ia32_psignw256 __builtin_ia32_psignd256 __builtin_ia32_pslldqi256 V4LLiV4LLiIi __builtin_ia32_psllwi256 V16sV16si __builtin_ia32_psllw256 V16sV16sV8s __builtin_ia32_pslldi256 V8iV8ii __builtin_ia32_pslld256 V8iV8iV4i __builtin_ia32_psllqi256 V4LLiV4LLii __builtin_ia32_psllq256 V4LLiV4LLiV2LLi __builtin_ia32_psrawi256 __builtin_ia32_psraw256 __builtin_ia32_psradi256 __builtin_ia32_psrad256 __builtin_ia32_psrldqi256 __builtin_ia32_psrlwi256 __builtin_ia32_psrlw256 __builtin_ia32_psrldi256 __builtin_ia32_psrld256 __builtin_ia32_psrlqi256 __builtin_ia32_psrlq256 __builtin_ia32_movntdqa256 V4LLiV4LLiC* __builtin_ia32_permvarsi256 __builtin_ia32_permvarsf256 __builtin_ia32_permti256 V4LLiV4LLiV4LLiIc __builtin_ia32_maskloadd256 V8iV8iC*V8i __builtin_ia32_maskloadq256 V4LLiV4LLiC*V4LLi __builtin_ia32_maskloadd V4iV4iC*V4i __builtin_ia32_maskloadq V2LLiV2LLiC*V2LLi __builtin_ia32_maskstored256 vV8i*V8iV8i __builtin_ia32_maskstoreq256 vV4LLi*V4LLiV4LLi __builtin_ia32_maskstored vV4i*V4iV4i __builtin_ia32_maskstoreq vV2LLi*V2LLiV2LLi __builtin_ia32_psllv8si __builtin_ia32_psllv4si __builtin_ia32_psllv4di V4LLiV4LLiV4LLi __builtin_ia32_psllv2di __builtin_ia32_psrav8si __builtin_ia32_psrav4si __builtin_ia32_psrlv8si __builtin_ia32_psrlv4si __builtin_ia32_psrlv4di __builtin_ia32_psrlv2di __builtin_ia32_gatherd_pd V2dV2ddC*V4iV2dIc __builtin_ia32_gatherd_pd256 V4dV4ddC*V4iV4dIc __builtin_ia32_gatherq_pd V2dV2ddC*V2LLiV2dIc __builtin_ia32_gatherq_pd256 V4dV4ddC*V4LLiV4dIc __builtin_ia32_gatherd_ps V4fV4ffC*V4iV4fIc __builtin_ia32_gatherd_ps256 V8fV8ffC*V8iV8fIc __builtin_ia32_gatherq_ps V4fV4ffC*V2LLiV4fIc __builtin_ia32_gatherq_ps256 V4fV4ffC*V4LLiV4fIc __builtin_ia32_gatherd_q V2LLiV2LLiLLiC*V4iV2LLiIc __builtin_ia32_gatherd_q256 V4LLiV4LLiLLiC*V4iV4LLiIc __builtin_ia32_gatherq_q V2LLiV2LLiLLiC*V2LLiV2LLiIc __builtin_ia32_gatherq_q256 V4LLiV4LLiLLiC*V4LLiV4LLiIc __builtin_ia32_gatherd_d V4iV4iiC*V4iV4iIc __builtin_ia32_gatherd_d256 V8iV8iiC*V8iV8iIc __builtin_ia32_gatherq_d V4iV4iiC*V2LLiV4iIc __builtin_ia32_gatherq_d256 V4iV4iiC*V4LLiV4iIc __builtin_ia32_vcvtps2ph V8sV4fIi __builtin_ia32_vcvtps2ph256 V8sV8fIi __builtin_ia32_vcvtps2ph512 V16sV16fIi __builtin_ia32_vcvtph2ps V4fV8s __builtin_ia32_vcvtph2ps256 V8fV8s __builtin_ia32_vcvtph2ps512 V16fV16s __builtin_ia32_rdrand16_step UiUs* __builtin_ia32_rdrand32_step UiUi* __builtin_ia32_rdrand64_step UiULLi* __builtin_ia32_rdfsbase32 __builtin_ia32_rdfsbase64 __builtin_ia32_rdgsbase32 __builtin_ia32_rdgsbase64 __builtin_ia32_wrfsbase32 __builtin_ia32_wrfsbase64 __builtin_ia32_wrgsbase32 __builtin_ia32_wrgsbase64 __builtin_ia32_fxrstor __builtin_ia32_fxrstor64 __builtin_ia32_fxsave __builtin_ia32_fxsave64 __builtin_ia32_xsave vv*ULLi __builtin_ia32_xsave64 __builtin_ia32_xrstor __builtin_ia32_xrstor64 __builtin_ia32_xsaveopt __builtin_ia32_xsaveopt64 __builtin_ia32_xrstors __builtin_ia32_xrstors64 __builtin_ia32_xsavec __builtin_ia32_xsavec64 __builtin_ia32_xsaves __builtin_ia32_xsaves64 __builtin_ia32_addcarryx_u32 UcUcUiUiUi* __builtin_ia32_addcarryx_u64 UcUcULLiULLiULLi* __builtin_ia32_addcarry_u32 __builtin_ia32_addcarry_u64 __builtin_ia32_subborrow_u32 __builtin_ia32_subborrow_u64 __builtin_ia32_rdseed16_step __builtin_ia32_rdseed32_step __builtin_ia32_rdseed64_step __builtin_ia32_bextr_u32 __builtin_ia32_bextr_u64 __builtin_ia32_bzhi_si __builtin_ia32_bzhi_di __builtin_ia32_pdep_si __builtin_ia32_pdep_di __builtin_ia32_pext_si __builtin_ia32_pext_di __builtin_ia32_bextri_u32 UiUiIUi __builtin_ia32_bextri_u64 ULLiULLiIULLi __builtin_ia32_sha1rnds4 V4iV4iV4iIc __builtin_ia32_sha1nexte __builtin_ia32_sha1msg1 __builtin_ia32_sha1msg2 __builtin_ia32_sha256rnds2 __builtin_ia32_sha256msg1 __builtin_ia32_sha256msg2 __builtin_ia32_vfmaddps fma|fma4 __builtin_ia32_vfmaddpd __builtin_ia32_vfmaddss __builtin_ia32_vfmaddsd __builtin_ia32_vfmsubps __builtin_ia32_vfmsubpd __builtin_ia32_vfmsubss __builtin_ia32_vfmsubsd __builtin_ia32_vfnmaddps __builtin_ia32_vfnmaddpd __builtin_ia32_vfnmaddss __builtin_ia32_vfnmaddsd __builtin_ia32_vfnmsubps __builtin_ia32_vfnmsubpd __builtin_ia32_vfnmsubss __builtin_ia32_vfnmsubsd __builtin_ia32_vfmaddsubps __builtin_ia32_vfmaddsubpd __builtin_ia32_vfmsubaddps __builtin_ia32_vfmsubaddpd __builtin_ia32_vfmaddps256 __builtin_ia32_vfmaddpd256 __builtin_ia32_vfmsubps256 __builtin_ia32_vfmsubpd256 __builtin_ia32_vfnmaddps256 __builtin_ia32_vfnmaddpd256 __builtin_ia32_vfnmsubps256 __builtin_ia32_vfnmsubpd256 __builtin_ia32_vfmaddsubps256 __builtin_ia32_vfmaddsubpd256 __builtin_ia32_vfmsubaddps256 __builtin_ia32_vfmsubaddpd256 __builtin_ia32_vfmaddpd128_mask V2dV2dV2dV2dUc __builtin_ia32_vfmaddpd128_mask3 __builtin_ia32_vfmaddpd128_maskz __builtin_ia32_vfmaddpd256_mask V4dV4dV4dV4dUc __builtin_ia32_vfmaddpd256_mask3 __builtin_ia32_vfmaddpd256_maskz __builtin_ia32_vfmaddpd512_mask V8dV8dV8dV8dUcIi __builtin_ia32_vfmaddpd512_mask3 __builtin_ia32_vfmaddpd512_maskz __builtin_ia32_vfmaddps128_mask V4fV4fV4fV4fUc __builtin_ia32_vfmaddps128_mask3 __builtin_ia32_vfmaddps128_maskz __builtin_ia32_vfmaddps256_mask V8fV8fV8fV8fUc __builtin_ia32_vfmaddps256_mask3 __builtin_ia32_vfmaddps256_maskz __builtin_ia32_vfmaddps512_mask V16fV16fV16fV16fUsIi __builtin_ia32_vfmaddps512_mask3 __builtin_ia32_vfmaddps512_maskz __builtin_ia32_vfmaddsubpd128_mask __builtin_ia32_vfmaddsubpd128_mask3 __builtin_ia32_vfmaddsubpd128_maskz __builtin_ia32_vfmaddsubpd256_mask __builtin_ia32_vfmaddsubpd256_mask3 __builtin_ia32_vfmaddsubpd256_maskz __builtin_ia32_vfmaddsubpd512_mask __builtin_ia32_vfmaddsubpd512_mask3 __builtin_ia32_vfmaddsubpd512_maskz __builtin_ia32_vfmaddsubps128_mask __builtin_ia32_vfmaddsubps128_mask3 __builtin_ia32_vfmaddsubps128_maskz __builtin_ia32_vfmaddsubps256_mask __builtin_ia32_vfmaddsubps256_mask3 __builtin_ia32_vfmaddsubps256_maskz __builtin_ia32_vfmaddsubps512_mask __builtin_ia32_vfmaddsubps512_mask3 __builtin_ia32_vfmaddsubps512_maskz __builtin_ia32_vfmsubpd128_mask3 __builtin_ia32_vfmsubpd256_mask3 __builtin_ia32_vfmsubpd512_mask3 __builtin_ia32_vfmsubps128_mask3 __builtin_ia32_vfmsubps256_mask3 __builtin_ia32_vfmsubps512_mask3 __builtin_ia32_vfmsubaddpd128_mask3 __builtin_ia32_vfmsubaddpd256_mask3 __builtin_ia32_vfmsubaddpd512_mask3 __builtin_ia32_vfmsubaddps128_mask3 __builtin_ia32_vfmsubaddps256_mask3 __builtin_ia32_vfmsubaddps512_mask3 __builtin_ia32_vfnmaddpd128_mask __builtin_ia32_vfnmaddpd256_mask __builtin_ia32_vfnmaddpd512_mask __builtin_ia32_vfnmaddps128_mask __builtin_ia32_vfnmaddps256_mask __builtin_ia32_vfnmaddps512_mask __builtin_ia32_vfnmsubpd128_mask __builtin_ia32_vfnmsubpd128_mask3 __builtin_ia32_vfnmsubpd256_mask __builtin_ia32_vfnmsubpd256_mask3 __builtin_ia32_vfnmsubpd512_mask __builtin_ia32_vfnmsubpd512_mask3 __builtin_ia32_vfnmsubps128_mask __builtin_ia32_vfnmsubps128_mask3 __builtin_ia32_vfnmsubps256_mask __builtin_ia32_vfnmsubps256_mask3 __builtin_ia32_vfnmsubps512_mask __builtin_ia32_vfnmsubps512_mask3 __builtin_ia32_vpmacssww __builtin_ia32_vpmacsww __builtin_ia32_vpmacsswd V4iV8sV8sV4i __builtin_ia32_vpmacswd __builtin_ia32_vpmacssdd __builtin_ia32_vpmacsdd __builtin_ia32_vpmacssdql V2LLiV4iV4iV2LLi __builtin_ia32_vpmacsdql __builtin_ia32_vpmacssdqh __builtin_ia32_vpmacsdqh __builtin_ia32_vpmadcsswd __builtin_ia32_vpmadcswd __builtin_ia32_vphaddbw __builtin_ia32_vphaddbd __builtin_ia32_vphaddbq __builtin_ia32_vphaddwd __builtin_ia32_vphaddwq __builtin_ia32_vphadddq __builtin_ia32_vphaddubw __builtin_ia32_vphaddubd __builtin_ia32_vphaddubq __builtin_ia32_vphadduwd __builtin_ia32_vphadduwq __builtin_ia32_vphaddudq __builtin_ia32_vphsubbw __builtin_ia32_vphsubwd __builtin_ia32_vphsubdq __builtin_ia32_vpcmov __builtin_ia32_vpcmov_256 V4LLiV4LLiV4LLiV4LLi __builtin_ia32_vpperm __builtin_ia32_vprotb __builtin_ia32_vprotw __builtin_ia32_vprotd __builtin_ia32_vprotq __builtin_ia32_vprotbi __builtin_ia32_vprotwi V8sV8sIc __builtin_ia32_vprotdi V4iV4iIc __builtin_ia32_vprotqi __builtin_ia32_vpshlb __builtin_ia32_vpshlw __builtin_ia32_vpshld __builtin_ia32_vpshlq __builtin_ia32_vpshab __builtin_ia32_vpshaw __builtin_ia32_vpshad __builtin_ia32_vpshaq __builtin_ia32_vpcomub __builtin_ia32_vpcomuw V8sV8sV8sIc __builtin_ia32_vpcomud __builtin_ia32_vpcomuq __builtin_ia32_vpcomb __builtin_ia32_vpcomw __builtin_ia32_vpcomd __builtin_ia32_vpcomq __builtin_ia32_vpermil2pd V2dV2dV2dV2LLiIc __builtin_ia32_vpermil2pd256 V4dV4dV4dV4LLiIc __builtin_ia32_vpermil2ps V4fV4fV4fV4iIc __builtin_ia32_vpermil2ps256 V8fV8fV8fV8iIc __builtin_ia32_vfrczss __builtin_ia32_vfrczsd __builtin_ia32_vfrczps __builtin_ia32_vfrczpd __builtin_ia32_vfrczps256 __builtin_ia32_vfrczpd256 __builtin_ia32_xbegin __builtin_ia32_xend __builtin_ia32_xabort vIc __builtin_ia32_xtest __builtin_ia32_rdpmc ULLii __builtin_ia32_rdtsc __builtin_ia32_rdtscp ULLiUi* __builtin_ia32_rdpkru __builtin_ia32_wrpkru __builtin_ia32_sqrtpd512_mask V8dV8dV8dUcIi __builtin_ia32_sqrtps512_mask __builtin_ia32_rsqrt14sd_mask __builtin_ia32_rsqrt14ss_mask __builtin_ia32_rsqrt14pd512_mask V8dV8dV8dUc __builtin_ia32_rsqrt14ps512_mask __builtin_ia32_rsqrt28sd_round_mask V2dV2dV2dV2dUcIi __builtin_ia32_rsqrt28ss_round_mask V4fV4fV4fV4fUcIi __builtin_ia32_rsqrt28pd_mask __builtin_ia32_rsqrt28ps_mask __builtin_ia32_rcp14sd_mask __builtin_ia32_rcp14ss_mask __builtin_ia32_rcp14pd512_mask __builtin_ia32_rcp14ps512_mask __builtin_ia32_rcp28sd_round_mask __builtin_ia32_rcp28ss_round_mask __builtin_ia32_rcp28pd_mask __builtin_ia32_rcp28ps_mask __builtin_ia32_exp2pd_mask __builtin_ia32_exp2ps_mask __builtin_ia32_cvttps2dq512_mask V16iV16fV16iUsIi __builtin_ia32_cvttps2udq512_mask __builtin_ia32_cvttpd2dq512_mask V8iV8dV8iUcIi __builtin_ia32_cvttpd2udq512_mask __builtin_ia32_cmpps512_mask UsV16fV16fIiUsIi __builtin_ia32_cmpps256_mask UcV8fV8fIiUc __builtin_ia32_cmpps128_mask UcV4fV4fIiUc __builtin_ia32_pcmpeqb512_mask LLiV64cV64cLLi __builtin_ia32_pcmpeqd512_mask sV16iV16is __builtin_ia32_pcmpeqq512_mask cV8LLiV8LLic __builtin_ia32_pcmpeqw512_mask iV32sV32si __builtin_ia32_pcmpeqb256_mask iV32cV32ci avx512vl,avx512bw __builtin_ia32_pcmpeqd256_mask cV8iV8ic __builtin_ia32_pcmpeqq256_mask cV4LLiV4LLic __builtin_ia32_pcmpeqw256_mask sV16sV16ss __builtin_ia32_pcmpeqb128_mask sV16cV16cs __builtin_ia32_pcmpeqd128_mask cV4iV4ic __builtin_ia32_pcmpeqq128_mask cV2LLiV2LLic __builtin_ia32_pcmpeqw128_mask cV8sV8sc __builtin_ia32_pcmpgtb512_mask __builtin_ia32_pcmpgtd512_mask __builtin_ia32_pcmpgtq512_mask __builtin_ia32_pcmpgtw512_mask __builtin_ia32_pcmpgtb256_mask __builtin_ia32_pcmpgtd256_mask __builtin_ia32_pcmpgtq256_mask __builtin_ia32_pcmpgtw256_mask __builtin_ia32_pcmpgtb128_mask __builtin_ia32_pcmpgtd128_mask __builtin_ia32_pcmpgtq128_mask __builtin_ia32_pcmpgtw128_mask __builtin_ia32_cmppd512_mask UcV8dV8dIiUcIi __builtin_ia32_cmppd256_mask UcV4dV4dIiUc __builtin_ia32_cmppd128_mask UcV2dV2dIiUc __builtin_ia32_rndscaleps_mask __builtin_ia32_rndscalepd_mask V8dV8dIiV8dUcIi __builtin_ia32_cvtps2dq512_mask __builtin_ia32_cvtpd2dq512_mask __builtin_ia32_cvtps2udq512_mask __builtin_ia32_cvtpd2udq512_mask __builtin_ia32_minps512_mask __builtin_ia32_minpd512_mask __builtin_ia32_maxps512_mask __builtin_ia32_maxpd512_mask __builtin_ia32_cvtdq2ps512_mask V16fV16iV16fUsIi __builtin_ia32_cvtudq2ps512_mask __builtin_ia32_cvtdq2pd512_mask V8dV8iV8dUc __builtin_ia32_cvtudq2pd512_mask __builtin_ia32_cvtpd2ps512_mask V8fV8dV8fUcIi __builtin_ia32_vcvtps2ph512_mask V16sV16fIiV16sUs __builtin_ia32_vcvtph2ps512_mask V16fV16sV16fUsIi __builtin_ia32_pandd512_mask V16iV16iV16iV16iUs __builtin_ia32_pandq512_mask V8LLiV8LLiV8LLiV8LLiUc __builtin_ia32_pord512_mask __builtin_ia32_porq512_mask __builtin_ia32_pxord512_mask __builtin_ia32_pxorq512_mask __builtin_ia32_pabsd512_mask __builtin_ia32_pabsq512_mask V8LLiV8LLiV8LLiUc __builtin_ia32_pmaxsd512_mask __builtin_ia32_pmaxsq512_mask __builtin_ia32_pmaxud512_mask __builtin_ia32_pmaxuq512_mask __builtin_ia32_pminsd512_mask __builtin_ia32_pminsq512_mask __builtin_ia32_pminud512_mask __builtin_ia32_pminuq512_mask __builtin_ia32_pmuldq512_mask V8LLiV16iV16iV8LLiUc __builtin_ia32_pmuludq512_mask __builtin_ia32_blendmd_512_mask __builtin_ia32_blendmq_512_mask __builtin_ia32_blendmps_512_mask __builtin_ia32_blendmpd_512_mask __builtin_ia32_ptestmd512 UsV16iV16iUs __builtin_ia32_ptestmq512 UcV8LLiV8LLiUc __builtin_ia32_pbroadcastd512 __builtin_ia32_pbroadcastq512 V8LLiV2LLiV8LLiUc __builtin_ia32_pbroadcastd512_gpr_mask __builtin_ia32_pbroadcastq512_gpr_mask V8LLiLLiV8LLiUc __builtin_ia32_pbroadcastq512_mem_mask __builtin_ia32_loaddqusi512_mask V16ivC*V16iUs __builtin_ia32_loaddqudi512_mask V8LLivC*V8LLiUc __builtin_ia32_loadups512_mask V16fvC*V16fUs __builtin_ia32_loadaps512_mask __builtin_ia32_loadupd512_mask V8dvC*V8dUc __builtin_ia32_loadapd512_mask __builtin_ia32_storedqudi512_mask vv*V8LLiUc __builtin_ia32_storedqusi512_mask vv*V16iUs __builtin_ia32_storeupd512_mask vv*V8dUc __builtin_ia32_storeapd512_mask __builtin_ia32_storeups512_mask vv*V16fUs __builtin_ia32_storeaps512_mask __builtin_ia32_vpermt2vard512_mask __builtin_ia32_vpermt2varq512_mask __builtin_ia32_vpermt2varps512_mask V16fV16iV16fV16fUs __builtin_ia32_vpermt2varpd512_mask V8dV8LLiV8dV8dUc __builtin_ia32_alignq512_mask V8LLiV8LLiV8LLiIiV8LLiUc __builtin_ia32_alignd512_mask V16iV16iV16iIiV16iUs __builtin_ia32_alignd128_mask V4iV4iV4iIiV4iUc __builtin_ia32_alignd256_mask V8iV8iV8iIiV8iUc __builtin_ia32_alignq128_mask V2LLiV2LLiV2LLiIiV2LLiUc __builtin_ia32_alignq256_mask V4LLiV4LLiV4LLiIiV4LLiUc __builtin_ia32_extractf64x4_mask V4dV8dIiV4dUc __builtin_ia32_extractf32x4_mask V4fV16fIiV4fUc __builtin_ia32_gather3div2df V2dV2dvC*V2LLiUci __builtin_ia32_gather3div2di V4iV2LLivC*V2LLiUci __builtin_ia32_gather3div4df V4dV4dvC*V4LLiUci __builtin_ia32_gather3div4di V8iV4LLivC*V4LLiUci __builtin_ia32_gather3div4sf V4fV4fvC*V2LLiUci __builtin_ia32_gather3div4si V4iV4ivC*V2LLiUci __builtin_ia32_gather3div8sf V4fV4fvC*V4LLiUci __builtin_ia32_gather3div8si V4iV4ivC*V4LLiUci __builtin_ia32_gather3siv2df V2dV2dvC*V4iUci __builtin_ia32_gather3siv2di V4iV2LLivC*V4iUci __builtin_ia32_gather3siv4df V4dV4dvC*V4iUci __builtin_ia32_gather3siv4di V8iV4LLivC*V4iUci __builtin_ia32_gather3siv4sf V4fV4fvC*V4iUci __builtin_ia32_gather3siv4si V4iV4ivC*V4iUci __builtin_ia32_gather3siv8sf V8fV8fvC*V8iUci __builtin_ia32_gather3siv8si V8iV8ivC*V8iUci __builtin_ia32_gathersiv8df V8dV8dvC*V8iUcIi __builtin_ia32_gathersiv16sf V16fV16fvC*V16fUsIi __builtin_ia32_gatherdiv8df V8dV8dvC*V8LLiUcIi __builtin_ia32_gatherdiv16sf V8fV8fvC*V8LLiUcIi __builtin_ia32_gathersiv8di V8LLiV8LLivC*V8iUcIi __builtin_ia32_gathersiv16si V16iV16ivC*V16iUsIi __builtin_ia32_gatherdiv8di V8LLiV8LLivC*V8LLiUcIi __builtin_ia32_gatherdiv16si V8iV8ivC*V8LLiUcIi __builtin_ia32_scattersiv8df vv*UcV8iV8dIi __builtin_ia32_scattersiv16sf vv*UsV16iV16fIi __builtin_ia32_scatterdiv8df vv*UcV8LLiV8dIi __builtin_ia32_scatterdiv16sf vv*UcV8LLiV8fIi __builtin_ia32_scattersiv8di vv*UcV8iV8LLiIi __builtin_ia32_scattersiv16si vv*UsV16iV16iIi __builtin_ia32_scatterdiv8di vv*UcV8LLiV8LLiIi __builtin_ia32_scatterdiv16si vv*UcV8LLiV8iIi __builtin_ia32_gatherpfdpd vUcV8ivC*IiIi __builtin_ia32_gatherpfdps vUsV16ivC*IiIi __builtin_ia32_gatherpfqpd vUcV8LLivC*IiIi __builtin_ia32_gatherpfqps __builtin_ia32_scatterpfdpd vUcV8iv*IiIi __builtin_ia32_scatterpfdps vUsV16iv*IiIi __builtin_ia32_scatterpfqpd vUcV8LLiv*IiIi __builtin_ia32_scatterpfqps __builtin_ia32_knothi __builtin_ia32_cmpb128_mask UsV16cV16cIiUs __builtin_ia32_cmpd128_mask UcV4iV4iIiUc __builtin_ia32_cmpq128_mask UcV2LLiV2LLiIiUc __builtin_ia32_cmpw128_mask UcV8sV8sIiUc __builtin_ia32_cmpb256_mask UiV32cV32cIiUi __builtin_ia32_cmpd256_mask UcV8iV8iIiUc __builtin_ia32_cmpq256_mask UcV4LLiV4LLiIiUc __builtin_ia32_cmpw256_mask UsV16sV16sIiUs __builtin_ia32_cmpb512_mask ULLiV64cV64cIiULLi __builtin_ia32_cmpd512_mask UsV16iV16iIiUs __builtin_ia32_cmpq512_mask UcV8LLiV8LLiIiUc __builtin_ia32_cmpw512_mask UiV32sV32sIiUi __builtin_ia32_ucmpb128_mask __builtin_ia32_ucmpd128_mask __builtin_ia32_ucmpq128_mask __builtin_ia32_ucmpw128_mask __builtin_ia32_ucmpb256_mask __builtin_ia32_ucmpd256_mask __builtin_ia32_ucmpq256_mask __builtin_ia32_ucmpw256_mask __builtin_ia32_ucmpb512_mask __builtin_ia32_ucmpd512_mask __builtin_ia32_ucmpq512_mask __builtin_ia32_ucmpw512_mask __builtin_ia32_paddd256_mask V8iV8iV8iV8iUc __builtin_ia32_paddq256_mask V4LLiV4LLiV4LLiV4LLiUc __builtin_ia32_psubd256_mask __builtin_ia32_psubq256_mask __builtin_ia32_paddd128_mask V4iV4iV4iV4iUc __builtin_ia32_paddq128_mask V2LLiV2LLiV2LLiV2LLiUc __builtin_ia32_psubd128_mask __builtin_ia32_psubq128_mask __builtin_ia32_pmuldq256_mask V4LLiV8iV8iV4LLiUc __builtin_ia32_pmuldq128_mask V2LLiV4iV4iV2LLiUc __builtin_ia32_pmuludq256_mask __builtin_ia32_pmuludq128_mask __builtin_ia32_pmulld256_mask __builtin_ia32_pmulld128_mask __builtin_ia32_pandd256_mask __builtin_ia32_pandd128_mask __builtin_ia32_pandnd256_mask __builtin_ia32_pandnd128_mask __builtin_ia32_pord256_mask __builtin_ia32_pord128_mask __builtin_ia32_pxord256_mask __builtin_ia32_pxord128_mask __builtin_ia32_pandq256_mask __builtin_ia32_pandq128_mask __builtin_ia32_pandnq256_mask __builtin_ia32_pandnq128_mask __builtin_ia32_porq256_mask __builtin_ia32_porq128_mask __builtin_ia32_pxorq256_mask __builtin_ia32_pxorq128_mask __builtin_ia32_paddb512_mask V64cV64cV64cV64cULLi __builtin_ia32_psubb512_mask __builtin_ia32_paddw512_mask V32sV32sV32sV32sUi __builtin_ia32_psubw512_mask __builtin_ia32_pmullw512_mask __builtin_ia32_paddb256_mask V32cV32cV32cV32cUi __builtin_ia32_paddw256_mask V16sV16sV16sV16sUs __builtin_ia32_psubb256_mask __builtin_ia32_psubw256_mask __builtin_ia32_paddb128_mask V16cV16cV16cV16cUs __builtin_ia32_paddw128_mask V8sV8sV8sV8sUc __builtin_ia32_psubb128_mask __builtin_ia32_psubw128_mask __builtin_ia32_pmullw256_mask __builtin_ia32_pmullw128_mask __builtin_ia32_pandnd512_mask __builtin_ia32_pandnq512_mask __builtin_ia32_paddq512_mask __builtin_ia32_psubq512_mask __builtin_ia32_paddd512_mask __builtin_ia32_psubd512_mask __builtin_ia32_pmulld512_mask __builtin_ia32_pmullq512_mask __builtin_ia32_xorpd512_mask V8dV8dV8dV8dUc __builtin_ia32_xorps512_mask V16fV16fV16fV16fUs __builtin_ia32_orpd512_mask __builtin_ia32_orps512_mask __builtin_ia32_andpd512_mask __builtin_ia32_andps512_mask __builtin_ia32_andnpd512_mask __builtin_ia32_andnps512_mask __builtin_ia32_pmullq256_mask avx512vl,avx512dq __builtin_ia32_pmullq128_mask __builtin_ia32_andnpd256_mask __builtin_ia32_andnpd128_mask __builtin_ia32_andnps256_mask __builtin_ia32_andnps128_mask __builtin_ia32_andpd256_mask __builtin_ia32_andpd128_mask __builtin_ia32_andps256_mask __builtin_ia32_andps128_mask __builtin_ia32_xorpd256_mask __builtin_ia32_xorpd128_mask __builtin_ia32_xorps256_mask __builtin_ia32_xorps128_mask __builtin_ia32_orpd256_mask __builtin_ia32_orpd128_mask __builtin_ia32_orps256_mask __builtin_ia32_orps128_mask __builtin_ia32_blendmb_512_mask __builtin_ia32_blendmw_512_mask __builtin_ia32_pabsb512_mask __builtin_ia32_pabsw512_mask __builtin_ia32_packssdw512_mask V32sV16iV16iV32sUi __builtin_ia32_packsswb512_mask V64cV32sV32sV64cULLi __builtin_ia32_packusdw512_mask __builtin_ia32_packuswb512_mask __builtin_ia32_paddsb512_mask __builtin_ia32_paddsw512_mask __builtin_ia32_paddusb512_mask __builtin_ia32_paddusw512_mask __builtin_ia32_pavgb512_mask __builtin_ia32_pavgw512_mask __builtin_ia32_pmaxsb512_mask __builtin_ia32_pmaxsw512_mask __builtin_ia32_pmaxub512_mask __builtin_ia32_pmaxuw512_mask __builtin_ia32_pminsb512_mask __builtin_ia32_pminsw512_mask __builtin_ia32_pminub512_mask __builtin_ia32_pminuw512_mask __builtin_ia32_pshufb512_mask __builtin_ia32_psubsb512_mask __builtin_ia32_psubsw512_mask __builtin_ia32_psubusb512_mask __builtin_ia32_psubusw512_mask __builtin_ia32_vpermi2varhi512_mask __builtin_ia32_vpermt2varhi512_mask __builtin_ia32_vpermt2varhi512_maskz __builtin_ia32_vpconflictdi_128_mask V2LLiV2LLiV2LLiUc avx512cd,avx512vl __builtin_ia32_vpconflictdi_256_mask V4LLiV4LLiV4LLiUc __builtin_ia32_vpconflictsi_128_mask V4iV4iV4iUc __builtin_ia32_vpconflictsi_256_mask V8iV8iV8iUc __builtin_ia32_vpconflictdi_512_mask __builtin_ia32_vpconflictsi_512_mask __builtin_ia32_vplzcntd_512_mask __builtin_ia32_vplzcntq_512_mask __builtin_ia32_blendmb_128_mask __builtin_ia32_blendmb_256_mask __builtin_ia32_blendmw_128_mask V8sV8sV8sUc __builtin_ia32_blendmw_256_mask __builtin_ia32_pabsb128_mask __builtin_ia32_pabsb256_mask __builtin_ia32_pabsw128_mask __builtin_ia32_pabsw256_mask __builtin_ia32_packssdw128_mask V8sV4iV4iV8sUc __builtin_ia32_packssdw256_mask V16sV8iV8iV16sUs __builtin_ia32_packsswb128_mask V16cV8sV8sV16cUs __builtin_ia32_packsswb256_mask V32cV16sV16sV32cUi __builtin_ia32_packusdw128_mask __builtin_ia32_packusdw256_mask __builtin_ia32_packuswb128_mask __builtin_ia32_packuswb256_mask __builtin_ia32_paddsb128_mask __builtin_ia32_paddsb256_mask __builtin_ia32_paddsw128_mask __builtin_ia32_paddsw256_mask __builtin_ia32_paddusb128_mask __builtin_ia32_paddusb256_mask __builtin_ia32_paddusw128_mask __builtin_ia32_paddusw256_mask __builtin_ia32_pavgb128_mask __builtin_ia32_pavgb256_mask __builtin_ia32_pavgw128_mask __builtin_ia32_pavgw256_mask __builtin_ia32_pmaxsb128_mask __builtin_ia32_pmaxsb256_mask __builtin_ia32_pmaxsw128_mask __builtin_ia32_pmaxsw256_mask __builtin_ia32_pmaxub128_mask __builtin_ia32_pmaxub256_mask __builtin_ia32_pmaxuw128_mask __builtin_ia32_pmaxuw256_mask __builtin_ia32_pminsb128_mask __builtin_ia32_pminsb256_mask __builtin_ia32_pminsw128_mask __builtin_ia32_pminsw256_mask __builtin_ia32_pminub128_mask __builtin_ia32_pminub256_mask __builtin_ia32_pminuw128_mask __builtin_ia32_pminuw256_mask __builtin_ia32_pshufb128_mask __builtin_ia32_pshufb256_mask __builtin_ia32_psubsb128_mask __builtin_ia32_psubsb256_mask __builtin_ia32_psubsw128_mask __builtin_ia32_psubsw256_mask __builtin_ia32_psubusb128_mask __builtin_ia32_psubusb256_mask __builtin_ia32_psubusw128_mask __builtin_ia32_psubusw256_mask __builtin_ia32_vpermi2varhi128_mask __builtin_ia32_vpermi2varhi256_mask __builtin_ia32_vpermt2varhi128_mask __builtin_ia32_vpermt2varhi128_maskz __builtin_ia32_vpermt2varhi256_mask __builtin_ia32_vpermt2varhi256_maskz __builtin_ia32_pmulhrsw512_mask __builtin_ia32_pmulhuw512_mask __builtin_ia32_pmulhw512_mask __builtin_ia32_addpd512_mask __builtin_ia32_addps512_mask __builtin_ia32_divpd512_mask __builtin_ia32_divps512_mask __builtin_ia32_mulpd512_mask __builtin_ia32_mulps512_mask __builtin_ia32_subpd512_mask __builtin_ia32_subps512_mask __builtin_ia32_pmaddubsw512_mask V32sV64cV64cV32sUi __builtin_ia32_pmaddwd512_mask V16iV32sV32sV16iUs __builtin_ia32_addss_round_mask __builtin_ia32_divss_round_mask __builtin_ia32_mulss_round_mask __builtin_ia32_subss_round_mask __builtin_ia32_maxss_round_mask __builtin_ia32_minss_round_mask __builtin_ia32_addsd_round_mask __builtin_ia32_divsd_round_mask __builtin_ia32_mulsd_round_mask __builtin_ia32_subsd_round_mask __builtin_ia32_maxsd_round_mask __builtin_ia32_minsd_round_mask __builtin_ia32_addpd128_mask __builtin_ia32_addpd256_mask __builtin_ia32_addps128_mask __builtin_ia32_addps256_mask __builtin_ia32_blendmd_128_mask __builtin_ia32_blendmd_256_mask __builtin_ia32_blendmpd_128_mask V2dV2dV2dUc __builtin_ia32_blendmpd_256_mask V4dV4dV4dUc __builtin_ia32_blendmps_128_mask V4fV4fV4fUc __builtin_ia32_blendmps_256_mask V8fV8fV8fUc __builtin_ia32_blendmq_128_mask __builtin_ia32_blendmq_256_mask __builtin_ia32_compressdf128_mask __builtin_ia32_compressdf256_mask __builtin_ia32_compressdi128_mask __builtin_ia32_compressdi256_mask __builtin_ia32_compresssf128_mask __builtin_ia32_compresssf256_mask __builtin_ia32_compresssi128_mask __builtin_ia32_compresssi256_mask __builtin_ia32_compressstoredf128_mask vV2d*V2dUc __builtin_ia32_compressstoredf256_mask vV4d*V4dUc __builtin_ia32_compressstoredi128_mask vV2LLi*V2LLiUc __builtin_ia32_compressstoredi256_mask vV4LLi*V4LLiUc __builtin_ia32_compressstoresf128_mask vV4f*V4fUc __builtin_ia32_compressstoresf256_mask vV8f*V8fUc __builtin_ia32_compressstoresi128_mask vV4i*V4iUc __builtin_ia32_compressstoresi256_mask vV8i*V8iUc __builtin_ia32_cvtdq2pd128_mask V2dV4iV2dUc __builtin_ia32_cvtdq2pd256_mask V4dV4iV4dUc __builtin_ia32_cvtdq2ps128_mask V4fV4iV4fUc __builtin_ia32_cvtdq2ps256_mask V8fV8iV8fUc __builtin_ia32_cvtpd2dq128_mask V4iV2dV4iUc __builtin_ia32_cvtpd2dq256_mask V4iV4dV4iUc __builtin_ia32_cvtpd2ps_mask V4fV2dV4fUc __builtin_ia32_cvtpd2ps256_mask V4fV4dV4fUc __builtin_ia32_cvtpd2udq128_mask __builtin_ia32_cvtpd2udq256_mask __builtin_ia32_cvtps2dq128_mask V4iV4fV4iUc __builtin_ia32_cvtps2dq256_mask V8iV8fV8iUc __builtin_ia32_cvtps2pd128_mask V2dV4fV2dUc __builtin_ia32_cvtps2pd256_mask V4dV4fV4dUc __builtin_ia32_cvtps2udq128_mask __builtin_ia32_cvtps2udq256_mask __builtin_ia32_cvttpd2dq128_mask __builtin_ia32_cvttpd2dq256_mask __builtin_ia32_cvttpd2udq128_mask __builtin_ia32_cvttpd2udq256_mask __builtin_ia32_cvttps2dq128_mask __builtin_ia32_cvttps2dq256_mask __builtin_ia32_cvttps2udq128_mask __builtin_ia32_cvttps2udq256_mask __builtin_ia32_cvtudq2pd128_mask __builtin_ia32_cvtudq2pd256_mask __builtin_ia32_cvtudq2ps128_mask __builtin_ia32_cvtudq2ps256_mask __builtin_ia32_divpd_mask __builtin_ia32_divpd256_mask __builtin_ia32_divps_mask __builtin_ia32_divps256_mask __builtin_ia32_expanddf128_mask __builtin_ia32_expanddf256_mask __builtin_ia32_expanddi128_mask __builtin_ia32_expanddi256_mask __builtin_ia32_expandloaddf128_mask V2dV2d*V2dUc __builtin_ia32_expandloaddf256_mask V4dV4d*V4dUc __builtin_ia32_expandloaddi128_mask V4iV2LLi*V2LLiUc __builtin_ia32_expandloaddi256_mask V4LLiV4LLi*V4LLiUc __builtin_ia32_expandloadsf128_mask V4fV4f*V4fUc __builtin_ia32_expandloadsf256_mask V8fV8f*V8fUc __builtin_ia32_expandloadsi128_mask V4iV4i*V4iUc __builtin_ia32_expandloadsi256_mask V8iV8i*V8iUc __builtin_ia32_expandsf128_mask __builtin_ia32_expandsf256_mask __builtin_ia32_expandsi128_mask __builtin_ia32_expandsi256_mask __builtin_ia32_getexppd128_mask __builtin_ia32_getexppd256_mask __builtin_ia32_getexpps128_mask __builtin_ia32_getexpps256_mask __builtin_ia32_maxpd_mask __builtin_ia32_maxpd256_mask __builtin_ia32_maxps_mask __builtin_ia32_maxps256_mask __builtin_ia32_minpd_mask __builtin_ia32_minpd256_mask __builtin_ia32_minps_mask __builtin_ia32_minps256_mask __builtin_ia32_mulpd_mask __builtin_ia32_mulpd256_mask __builtin_ia32_mulps_mask __builtin_ia32_mulps256_mask __builtin_ia32_pabsd128_mask __builtin_ia32_pabsd256_mask __builtin_ia32_pabsq128_mask __builtin_ia32_pabsq256_mask __builtin_ia32_pmaxsd128_mask __builtin_ia32_pmaxsd256_mask __builtin_ia32_pmaxsq128_mask __builtin_ia32_pmaxsq256_mask __builtin_ia32_pmaxud128_mask __builtin_ia32_pmaxud256_mask __builtin_ia32_pmaxuq128_mask __builtin_ia32_pmaxuq256_mask __builtin_ia32_pminsd128_mask __builtin_ia32_pminsd256_mask __builtin_ia32_pminsq128_mask __builtin_ia32_pminsq256_mask __builtin_ia32_pminud128_mask __builtin_ia32_pminud256_mask __builtin_ia32_pminuq128_mask __builtin_ia32_pminuq256_mask __builtin_ia32_rndscalepd_128_mask V2dV2dIiV2dUc __builtin_ia32_rndscalepd_256_mask V4dV4dIiV4dUc __builtin_ia32_rndscaleps_128_mask V4fV4fIiV4fUc __builtin_ia32_rndscaleps_256_mask V8fV8fIiV8fUc __builtin_ia32_scalefpd128_mask __builtin_ia32_scalefpd256_mask __builtin_ia32_scalefps128_mask __builtin_ia32_scalefps256_mask __builtin_ia32_scatterdiv2df vv*UcV2LLiV2dIi __builtin_ia32_scatterdiv2di vv*UcV2LLiV2LLiIi __builtin_ia32_scatterdiv4df vv*UcV4LLiV4dIi __builtin_ia32_scatterdiv4di vv*UcV4LLiV4LLiIi __builtin_ia32_scatterdiv4sf vv*UcV2LLiV4fIi __builtin_ia32_scatterdiv4si vv*UcV2LLiV4iIi __builtin_ia32_scatterdiv8sf vv*UcV4LLiV4fIi __builtin_ia32_scatterdiv8si vv*UcV4LLiV4iIi __builtin_ia32_scattersiv2df vv*UcV4iV2dIi __builtin_ia32_scattersiv2di vv*UcV4iV2LLiIi __builtin_ia32_scattersiv4df vv*UcV4iV4dIi __builtin_ia32_scattersiv4di vv*UcV4iV4LLiIi __builtin_ia32_scattersiv4sf vv*UcV4iV4fIi __builtin_ia32_scattersiv4si vv*UcV4iV4iIi __builtin_ia32_scattersiv8sf vv*UcV8iV8fIi __builtin_ia32_scattersiv8si vv*UcV8iV8iIi __builtin_ia32_sqrtpd128_mask __builtin_ia32_sqrtpd256_mask __builtin_ia32_sqrtps128_mask __builtin_ia32_sqrtps256_mask __builtin_ia32_subpd128_mask __builtin_ia32_subpd256_mask __builtin_ia32_subps128_mask __builtin_ia32_subps256_mask __builtin_ia32_vpermi2vard128_mask __builtin_ia32_vpermi2vard256_mask __builtin_ia32_vpermi2varpd128_mask V2dV2dV2LLiV2dUc __builtin_ia32_vpermi2varpd256_mask V4dV4dV4LLiV4dUc __builtin_ia32_vpermi2varps128_mask V4fV4fV4iV4fUc __builtin_ia32_vpermi2varps256_mask V8fV8fV8iV8fUc __builtin_ia32_vpermi2varq128_mask __builtin_ia32_vpermi2varq256_mask __builtin_ia32_vpermt2vard128_mask __builtin_ia32_vpermt2vard128_maskz __builtin_ia32_vpermt2vard256_mask __builtin_ia32_vpermt2vard256_maskz __builtin_ia32_vpermt2varpd128_mask V2dV2LLiV2dV2dUc __builtin_ia32_vpermt2varpd128_maskz __builtin_ia32_vpermt2varpd256_mask V4dV4LLiV4dV4dUc __builtin_ia32_vpermt2varpd256_maskz __builtin_ia32_vpermt2varps128_mask V4fV4iV4fV4fUc __builtin_ia32_vpermt2varps128_maskz __builtin_ia32_vpermt2varps256_mask V8fV8iV8fV8fUc __builtin_ia32_vpermt2varps256_maskz __builtin_ia32_vpermt2varq128_mask __builtin_ia32_vpermt2varq128_maskz __builtin_ia32_vpermt2varq256_mask __builtin_ia32_vpermt2varq256_maskz __builtin_ia32_pmovswb512_mask V32cV32sV32cUi __builtin_ia32_pmovuswb512_mask __builtin_ia32_pmovwb512_mask __builtin_ia32_punpckhbw512_mask __builtin_ia32_punpckhwd512_mask __builtin_ia32_punpcklbw512_mask __builtin_ia32_punpcklwd512_mask __builtin_ia32_cvtpd2qq128_mask V2LLiV2dV2LLiUc __builtin_ia32_cvtpd2qq256_mask V4LLiV4dV4LLiUc __builtin_ia32_cvtpd2uqq128_mask __builtin_ia32_cvtpd2uqq256_mask __builtin_ia32_cvtps2qq128_mask V2LLiV4fV2LLiUc __builtin_ia32_cvtps2qq256_mask V4LLiV4fV4LLiUc __builtin_ia32_cvtps2uqq128_mask __builtin_ia32_cvtps2uqq256_mask __builtin_ia32_cvtqq2pd128_mask V2dV2LLiV2dUc __builtin_ia32_cvtqq2pd256_mask V4dV4LLiV4dUc __builtin_ia32_cvtqq2ps128_mask V4fV2LLiV4fUc __builtin_ia32_cvtqq2ps256_mask V4fV4LLiV4fUc __builtin_ia32_cvttpd2qq128_mask __builtin_ia32_cvttpd2qq256_mask __builtin_ia32_cvttpd2uqq128_mask __builtin_ia32_cvttpd2uqq256_mask __builtin_ia32_cvttps2qq128_mask __builtin_ia32_cvttps2qq256_mask __builtin_ia32_cvttps2uqq128_mask __builtin_ia32_cvttps2uqq256_mask __builtin_ia32_cvtuqq2pd128_mask __builtin_ia32_cvtuqq2pd256_mask __builtin_ia32_cvtuqq2ps128_mask __builtin_ia32_cvtuqq2ps256_mask __builtin_ia32_rangepd128_mask V2dV2dV2dIiV2dUc __builtin_ia32_rangepd256_mask V4dV4dV4dIiV4dUc __builtin_ia32_rangeps128_mask V4fV4fV4fIiV4fUc __builtin_ia32_rangeps256_mask V8fV8fV8fIiV8fUc __builtin_ia32_reducepd128_mask __builtin_ia32_reducepd256_mask __builtin_ia32_reduceps128_mask __builtin_ia32_reduceps256_mask __builtin_ia32_pmaddubsw128_mask V8sV16cV16cV8sUc __builtin_ia32_pmaddubsw256_mask V16sV32cV32cV16sUs __builtin_ia32_pmaddwd128_mask V4iV8sV8sV4iUc __builtin_ia32_pmaddwd256_mask V8iV16sV16sV8iUc __builtin_ia32_pmovswb128_mask V16cV8sV16cUc __builtin_ia32_pmovswb256_mask V16cV16sV16cUs __builtin_ia32_pmovuswb128_mask __builtin_ia32_pmovuswb256_mask __builtin_ia32_pmovwb128_mask __builtin_ia32_pmovwb256_mask __builtin_ia32_pmulhrsw128_mask __builtin_ia32_pmulhrsw256_mask __builtin_ia32_pmulhuw128_mask __builtin_ia32_pmulhuw256_mask __builtin_ia32_pmulhw128_mask __builtin_ia32_pmulhw256_mask __builtin_ia32_punpckhbw128_mask __builtin_ia32_punpckhbw256_mask __builtin_ia32_punpckhwd128_mask __builtin_ia32_punpckhwd256_mask __builtin_ia32_punpcklbw128_mask __builtin_ia32_punpcklbw256_mask __builtin_ia32_punpcklwd128_mask __builtin_ia32_punpcklwd256_mask __builtin_ia32_cvtpd2qq512_mask V8LLiV8dV8LLiUcIi __builtin_ia32_cvtpd2uqq512_mask __builtin_ia32_cvtps2qq512_mask V8LLiV8fV8LLiUcIi __builtin_ia32_cvtps2uqq512_mask __builtin_ia32_cvtqq2pd512_mask V8dV8LLiV8dUcIi __builtin_ia32_cvtqq2ps512_mask V8fV8LLiV8fUcIi __builtin_ia32_cvttpd2qq512_mask __builtin_ia32_cvttpd2uqq512_mask __builtin_ia32_cvttps2qq512_mask __builtin_ia32_cvttps2uqq512_mask __builtin_ia32_cvtuqq2pd512_mask __builtin_ia32_cvtuqq2ps512_mask __builtin_ia32_rangepd512_mask V8dV8dV8dIiV8dUcIi __builtin_ia32_rangeps512_mask V16fV16fV16fIiV16fUsIi __builtin_ia32_reducepd512_mask __builtin_ia32_reduceps512_mask __builtin_ia32_pmovsxbw512_mask V32sV32cV32sUi __builtin_ia32_pmovsxbd512_mask V16iV16cV16iUs __builtin_ia32_pmovsxbq512_mask V8LLiV16cV8LLiUc __builtin_ia32_pmovsxdq512_mask V8LLiV8iV8LLiUc __builtin_ia32_pmovsxwd512_mask V16iV16sV16iUs __builtin_ia32_pmovsxwq512_mask V8LLiV8sV8LLiUc __builtin_ia32_pmovsxbw128_mask V8sV16cV8sUc __builtin_ia32_pmovsxbw256_mask V16sV16cV16sUs __builtin_ia32_pmovsxbd128_mask V4iV16cV4iUc __builtin_ia32_pmovsxbd256_mask V8iV16cV8iUc __builtin_ia32_pmovsxbq128_mask V2LLiV16cV2LLiUc __builtin_ia32_pmovsxbq256_mask V4LLiV16cV4LLiUc __builtin_ia32_pmovsxdq128_mask V2LLiV4iV2LLiUc __builtin_ia32_pmovsxdq256_mask V4LLiV4iV4LLiUc __builtin_ia32_pmovsxwd128_mask V4iV8sV4iUc __builtin_ia32_pmovsxwd256_mask V8iV8sV8iUc __builtin_ia32_pmovsxwq128_mask V2LLiV8sV2LLiUc __builtin_ia32_pmovsxwq256_mask V4LLiV8sV4LLiUc __builtin_ia32_pmovzxbw512_mask __builtin_ia32_pmovzxbd512_mask __builtin_ia32_pmovzxbq512_mask __builtin_ia32_pmovzxdq512_mask __builtin_ia32_pmovzxwd512_mask __builtin_ia32_pmovzxwq512_mask __builtin_ia32_pmovzxbw128_mask __builtin_ia32_pmovzxbw256_mask __builtin_ia32_pmovzxbd128_mask __builtin_ia32_pmovzxbd256_mask __builtin_ia32_pmovzxbq128_mask __builtin_ia32_pmovzxbq256_mask __builtin_ia32_pmovzxdq128_mask __builtin_ia32_pmovzxdq256_mask __builtin_ia32_pmovzxwd128_mask __builtin_ia32_pmovzxwd256_mask __builtin_ia32_pmovzxwq128_mask __builtin_ia32_pmovzxwq256_mask __builtin_ia32_prold512_mask __builtin_ia32_prolq512_mask V8LLiV8LLiIiV8LLiUc __builtin_ia32_prold128_mask V4iV4iIiV4iUc __builtin_ia32_prold256_mask V8iV8iIiV8iUc __builtin_ia32_prolq128_mask V2LLiV2LLiIiV2LLiUc __builtin_ia32_prolq256_mask V4LLiV4LLiIiV4LLiUc __builtin_ia32_prolvd512_mask __builtin_ia32_prolvq512_mask __builtin_ia32_prord512_mask V16iV16iiV16iUs __builtin_ia32_prorq512_mask V8LLiV8LLiiV8LLiUc __builtin_ia32_prolvd128_mask __builtin_ia32_prolvd256_mask __builtin_ia32_prolvq128_mask __builtin_ia32_prolvq256_mask __builtin_ia32_prord128_mask __builtin_ia32_prord256_mask __builtin_ia32_prorq128_mask __builtin_ia32_prorq256_mask __builtin_ia32_prorvd512_mask __builtin_ia32_prorvq512_mask __builtin_ia32_prorvd128_mask __builtin_ia32_prorvd256_mask __builtin_ia32_prorvq128_mask __builtin_ia32_prorvq256_mask __builtin_ia32_pshufhw512_mask V32sV32sIiV32sUi __builtin_ia32_pshuflw512_mask __builtin_ia32_pshufhw128_mask V8sV8sIiV8sUc avx512bw,avx512vl __builtin_ia32_pshufhw256_mask V16sV16sIiV16sUs __builtin_ia32_pshuflw128_mask __builtin_ia32_pshuflw256_mask __builtin_ia32_psllv32hi_mask __builtin_ia32_psllw512_mask V32sV32sV8sV32sUi __builtin_ia32_psllwi512_mask __builtin_ia32_psllv16hi_mask __builtin_ia32_psllv8hi_mask __builtin_ia32_psllw128_mask __builtin_ia32_psllw256_mask V16sV16sV8sV16sUs __builtin_ia32_psllwi128_mask V8sV8siV8sUc __builtin_ia32_psllwi256_mask V16sV16siV16sUs __builtin_ia32_psllv2di_mask __builtin_ia32_psllv4di_mask __builtin_ia32_psllv4si_mask __builtin_ia32_psllv8si_mask __builtin_ia32_pslldi512_mask __builtin_ia32_psllqi512_mask __builtin_ia32_pslld128_mask __builtin_ia32_pslld256_mask V8iV8iV4iV8iUc __builtin_ia32_pslldi128_mask V4iV4iiV4iUc __builtin_ia32_pslldi256_mask V8iV8iiV8iUc __builtin_ia32_psllq128_mask __builtin_ia32_psllq256_mask V4LLiV4LLiV2LLiV4LLiUc __builtin_ia32_psllqi128_mask V2LLiV2LLiiV2LLiUc __builtin_ia32_psllqi256_mask V4LLiV4LLiiV4LLiUc __builtin_ia32_psrlv32hi_mask __builtin_ia32_psrlv16hi_mask __builtin_ia32_psrlv8hi_mask __builtin_ia32_psrlv2di_mask __builtin_ia32_psrlv4di_mask __builtin_ia32_psrlv4si_mask __builtin_ia32_psrlv8si_mask __builtin_ia32_psrldi512_mask __builtin_ia32_psrlqi512_mask __builtin_ia32_psrld128_mask __builtin_ia32_psrld256_mask __builtin_ia32_psrldi128_mask __builtin_ia32_psrldi256_mask __builtin_ia32_psrlq128_mask __builtin_ia32_psrlq256_mask __builtin_ia32_psrlqi128_mask __builtin_ia32_psrlqi256_mask __builtin_ia32_psrav32hi_mask __builtin_ia32_psrav16hi_mask __builtin_ia32_psrav8hi_mask __builtin_ia32_psrav4si_mask __builtin_ia32_psrav8si_mask __builtin_ia32_psravq128_mask __builtin_ia32_psravq256_mask __builtin_ia32_psraw512_mask __builtin_ia32_psrawi512_mask __builtin_ia32_psraw128_mask __builtin_ia32_psraw256_mask __builtin_ia32_psrawi128_mask __builtin_ia32_psrawi256_mask __builtin_ia32_psrlw512_mask __builtin_ia32_psrlwi512_mask __builtin_ia32_psrlw128_mask __builtin_ia32_psrlw256_mask __builtin_ia32_psrlwi128_mask __builtin_ia32_psrlwi256_mask __builtin_ia32_movdqa32load512_mask __builtin_ia32_movdqa32store512_mask vV16i*V16iUs __builtin_ia32_movdqa64_512_mask __builtin_ia32_movdqa64load512_mask __builtin_ia32_movdqa64store512_mask vV8LLi*V8LLiUc __builtin_ia32_movdqa32store128_mask __builtin_ia32_movdqa32store256_mask __builtin_ia32_movdqa64_128_mask __builtin_ia32_movdqa64_256_mask __builtin_ia32_movdqa64load128_mask V2LLivC*V2LLiUc __builtin_ia32_movdqa64load256_mask V4LLivC*V4LLiUc __builtin_ia32_movdqa64store128_mask __builtin_ia32_movdqa64store256_mask __builtin_ia32_movdquhi512_mask __builtin_ia32_movdquqi512_mask __builtin_ia32_movdquhi128_mask __builtin_ia32_movdquhi256_mask __builtin_ia32_movdquqi128_mask __builtin_ia32_movdquqi256_mask __builtin_ia32_movddup512_mask __builtin_ia32_movddup128_mask __builtin_ia32_movddup256_mask __builtin_ia32_pbroadcastb512_gpr_mask V64ccV64cULLi __builtin_ia32_pbroadcastb128_gpr_mask V16ccV16cUs __builtin_ia32_pbroadcastb256_gpr_mask V32ccV32cUi __builtin_ia32_pbroadcastd128_gpr_mask V4iiV4iUc __builtin_ia32_pbroadcastd256_gpr_mask V8iiV8iUc __builtin_ia32_pbroadcastq128_gpr_mask V2LLiULLiV2LLiUc __builtin_ia32_pbroadcastq256_gpr_mask V4LLiULLiV4LLiUc __builtin_ia32_vpmadd52huq512_mask __builtin_ia32_vpmadd52huq512_maskz __builtin_ia32_vpmadd52luq512_mask __builtin_ia32_vpmadd52luq512_maskz __builtin_ia32_vpmadd52huq128_mask avx512ifma,avx512vl __builtin_ia32_vpmadd52huq128_maskz __builtin_ia32_vpmadd52huq256_mask __builtin_ia32_vpmadd52huq256_maskz __builtin_ia32_vpmadd52luq128_mask __builtin_ia32_vpmadd52luq128_maskz __builtin_ia32_vpmadd52luq256_mask __builtin_ia32_vpmadd52luq256_maskz __builtin_ia32_vpermi2varqi512_mask __builtin_ia32_vpermt2varqi512_mask __builtin_ia32_vpermt2varqi512_maskz __builtin_ia32_vpermi2varqi128_mask avx512vbmi,avx512vl __builtin_ia32_vpermi2varqi256_mask __builtin_ia32_vpermt2varqi128_mask __builtin_ia32_vpermt2varqi128_maskz __builtin_ia32_vpermt2varqi256_mask __builtin_ia32_vpermt2varqi256_maskz __builtin_ia32_vcomisd iV2dV2dIiIi __builtin_ia32_vcomiss iV4fV4fIiIi __builtin_ia32_kunpckdi __builtin_ia32_kunpcksi __builtin_ia32_loaddquhi512_mask V32sV32s*V32sUi __builtin_ia32_loaddquqi512_mask V64cV64c*V64cULLi __builtin_ia32_fixupimmpd512_mask V8dV8dV8dV8LLiIiUcIi __builtin_ia32_fixupimmpd512_maskz __builtin_ia32_fixupimmps512_mask V16fV16fV16fV16iIiUsIi __builtin_ia32_fixupimmps512_maskz __builtin_ia32_fixupimmsd_mask V2dV2dV2dV2LLiIiUcIi __builtin_ia32_fixupimmsd_maskz __builtin_ia32_fixupimmss_mask V4fV4fV4fV4iIiUcIi __builtin_ia32_fixupimmss_maskz __builtin_ia32_getexpsd128_round_mask __builtin_ia32_getexpss128_round_mask __builtin_ia32_getmantsd_round_mask V2dV2dV2dIiV2dUcIi __builtin_ia32_getmantss_round_mask V4fV4fV4fIiV4fUcIi __builtin_ia32_kmov16 __builtin_ia32_maxsd_round __builtin_ia32_maxss_round __builtin_ia32_minsd_round __builtin_ia32_minss_round __builtin_ia32_loaddquhi128_mask V8sV8s*V8sUc __builtin_ia32_loaddquhi256_mask V16sV16s*V16sUs __builtin_ia32_loaddquqi128_mask V16cV16c*V16cUs __builtin_ia32_loaddquqi256_mask V32cV32c*V32cUi __builtin_ia32_fixupimmpd128_mask V2dV2dV2dV2LLiIiUc __builtin_ia32_fixupimmpd128_maskz __builtin_ia32_fixupimmpd256_mask V4dV4dV4dV4LLiIiUc __builtin_ia32_fixupimmpd256_maskz __builtin_ia32_fixupimmps128_mask V4fV4fV4fV4iIiUc __builtin_ia32_fixupimmps128_maskz __builtin_ia32_fixupimmps256_mask V8fV8fV8fV8iIiUc __builtin_ia32_fixupimmps256_maskz __builtin_ia32_loadapd128_mask __builtin_ia32_loadapd256_mask __builtin_ia32_loadaps128_mask __builtin_ia32_loadaps256_mask __builtin_ia32_loaddqudi128_mask V2LLiV2LLi*V2LLiUc __builtin_ia32_loaddqudi256_mask __builtin_ia32_loaddqusi128_mask __builtin_ia32_loaddqusi256_mask __builtin_ia32_loadupd128_mask __builtin_ia32_loadupd256_mask __builtin_ia32_loadups128_mask __builtin_ia32_loadups256_mask __builtin_ia32_storedquhi512_mask vV32s*V32sUi __builtin_ia32_storedquqi512_mask vV64c*V64cULLi __builtin_ia32_storedquhi128_mask vV8s*V8sUc __builtin_ia32_storedquhi256_mask vV16s*V16sUs __builtin_ia32_storedquqi128_mask vV16c*V16cUs __builtin_ia32_storedquqi256_mask vV32c*V32cUi __builtin_ia32_storeapd128_mask __builtin_ia32_storeapd256_mask __builtin_ia32_storeaps128_mask __builtin_ia32_storeaps256_mask __builtin_ia32_storedqudi128_mask __builtin_ia32_storedqudi256_mask __builtin_ia32_storedqusi128_mask __builtin_ia32_storedqusi256_mask __builtin_ia32_storeupd128_mask __builtin_ia32_storeupd256_mask __builtin_ia32_storeups128_mask __builtin_ia32_storeups256_mask __builtin_ia32_unpckhpd512_mask __builtin_ia32_unpckhps512_mask __builtin_ia32_unpcklpd512_mask __builtin_ia32_unpcklps512_mask __builtin_ia32_unpckhpd128_mask __builtin_ia32_unpckhpd256_mask __builtin_ia32_unpckhps128_mask __builtin_ia32_unpckhps256_mask __builtin_ia32_unpcklpd128_mask __builtin_ia32_unpcklpd256_mask __builtin_ia32_unpcklps128_mask __builtin_ia32_unpcklps256_mask __builtin_ia32_rcp14pd128_mask __builtin_ia32_rcp14pd256_mask __builtin_ia32_rcp14ps128_mask __builtin_ia32_rcp14ps256_mask __builtin_ia32_vplzcntd_128_mask __builtin_ia32_vplzcntd_256_mask __builtin_ia32_vplzcntq_128_mask __builtin_ia32_vplzcntq_256_mask __builtin_ia32_vcvtsd2si64 LLiV2dIi __builtin_ia32_vcvtsd2si32 iV2dIi __builtin_ia32_vcvtsd2usi32 UiV2dIi __builtin_ia32_vcvtsd2usi64 ULLiV2dIi __builtin_ia32_vcvtss2si32 iV4fIi __builtin_ia32_vcvtss2si64 LLiV4fIi __builtin_ia32_vcvtss2usi32 UiV4fIi __builtin_ia32_vcvtss2usi64 ULLiV4fIi __builtin_ia32_vcvttsd2si32 __builtin_ia32_vcvttsd2si64 __builtin_ia32_vcvttsd2usi32 __builtin_ia32_vcvttsd2usi64 __builtin_ia32_vcvttss2si32 __builtin_ia32_vcvttss2si64 __builtin_ia32_vcvttss2usi32 __builtin_ia32_vcvttss2usi64 __builtin_ia32_vpermi2vard512_mask __builtin_ia32_vpermi2varpd512_mask V8dV8dV8LLiV8dUc __builtin_ia32_vpermi2varps512_mask V16fV16fV16iV16fUs __builtin_ia32_vpermi2varq512_mask __builtin_ia32_vpermilpd512_mask V8dV8dIiV8dUc __builtin_ia32_vpermilps512_mask __builtin_ia32_vpermilvarpd512_mask __builtin_ia32_vpermilvarps512_mask __builtin_ia32_vpermt2vard512_maskz __builtin_ia32_vpermt2varpd512_maskz __builtin_ia32_vpermt2varps512_maskz __builtin_ia32_vpermt2varq512_maskz __builtin_ia32_vpermilpd_mask __builtin_ia32_vpermilpd256_mask __builtin_ia32_vpermilps_mask __builtin_ia32_vpermilps256_mask __builtin_ia32_vpermilvarpd_mask __builtin_ia32_vpermilvarpd256_mask __builtin_ia32_vpermilvarps_mask __builtin_ia32_vpermilvarps256_mask __builtin_ia32_ptestmb512 ULLiV64cV64cULLi __builtin_ia32_ptestmw512 UiV32sV32sUi __builtin_ia32_ptestnmb512 __builtin_ia32_ptestnmw512 __builtin_ia32_ptestmb128 UsV16cV16cUs __builtin_ia32_ptestmb256 UiV32cV32cUi __builtin_ia32_ptestmw128 UcV8sV8sUc __builtin_ia32_ptestmw256 UsV16sV16sUs __builtin_ia32_ptestnmb128 __builtin_ia32_ptestnmb256 __builtin_ia32_ptestnmw128 __builtin_ia32_ptestnmw256 __builtin_ia32_ptestmd128 UcV4iV4iUc __builtin_ia32_ptestmd256 UcV8iV8iUc __builtin_ia32_ptestmq128 UcV2LLiV2LLiUc __builtin_ia32_ptestmq256 UcV4LLiV4LLiUc __builtin_ia32_ptestnmd128 __builtin_ia32_ptestnmd256 __builtin_ia32_ptestnmq128 __builtin_ia32_ptestnmq256 __builtin_ia32_ptestnmd512 __builtin_ia32_ptestnmq512 __builtin_ia32_punpckhdq512_mask __builtin_ia32_punpckhqdq512_mask __builtin_ia32_punpckldq512_mask __builtin_ia32_punpcklqdq512_mask __builtin_ia32_punpckhdq128_mask __builtin_ia32_punpckhdq256_mask __builtin_ia32_punpckhqdq128_mask __builtin_ia32_punpckhqdq256_mask __builtin_ia32_punpckldq128_mask __builtin_ia32_punpckldq256_mask __builtin_ia32_punpcklqdq128_mask __builtin_ia32_punpcklqdq256_mask __builtin_ia32_rndscalesd_round_mask V2dV2dV2dV2dUcIiIi __builtin_ia32_rndscaless_round_mask V4fV4fV4fV4fUcIiIi __builtin_ia32_scalefpd512_mask __builtin_ia32_scalefps512_mask __builtin_ia32_scalefsd_round_mask __builtin_ia32_scalefss_round_mask __builtin_ia32_psradi512_mask __builtin_ia32_psraqi512_mask __builtin_ia32_psrad128_mask __builtin_ia32_psrad256_mask __builtin_ia32_psradi128_mask __builtin_ia32_psradi256_mask __builtin_ia32_psraq128_mask __builtin_ia32_psraq256_mask __builtin_ia32_psraqi128_mask __builtin_ia32_psraqi256_mask __builtin_ia32_pslld512_mask V16iV16iV4iV16iUs __builtin_ia32_psllq512_mask V8LLiV8LLiV2LLiV8LLiUc __builtin_ia32_psllv16si_mask __builtin_ia32_psllv8di_mask __builtin_ia32_psrad512_mask __builtin_ia32_psraq512_mask __builtin_ia32_psrav16si_mask __builtin_ia32_psrav8di_mask __builtin_ia32_psrld512_mask __builtin_ia32_psrlq512_mask __builtin_ia32_psrlv16si_mask __builtin_ia32_psrlv8di_mask __builtin_ia32_pternlogd512_mask V16iV16iV16iV16iIiUs __builtin_ia32_pternlogd512_maskz __builtin_ia32_pternlogq512_mask V8LLiV8LLiV8LLiV8LLiIiUc __builtin_ia32_pternlogq512_maskz __builtin_ia32_pternlogd128_mask V4iV4iV4iV4iIiUc __builtin_ia32_pternlogd128_maskz __builtin_ia32_pternlogd256_mask V8iV8iV8iV8iIiUc __builtin_ia32_pternlogd256_maskz __builtin_ia32_pternlogq128_mask V2LLiV2LLiV2LLiV2LLiIiUc __builtin_ia32_pternlogq128_maskz __builtin_ia32_pternlogq256_mask V4LLiV4LLiV4LLiV4LLiIiUc __builtin_ia32_pternlogq256_maskz __builtin_ia32_shuf_f32x4_mask V16fV16fV16fIiV16fUs __builtin_ia32_shuf_f64x2_mask V8dV8dV8dIiV8dUc __builtin_ia32_shuf_i32x4_mask __builtin_ia32_shuf_i64x2_mask __builtin_ia32_shufpd512_mask __builtin_ia32_shufps512_mask __builtin_ia32_shuf_f32x4_256_mask __builtin_ia32_shuf_f64x2_256_mask __builtin_ia32_shuf_i32x4_256_mask __builtin_ia32_shuf_i64x2_256_mask __builtin_ia32_shufpd128_mask __builtin_ia32_shufpd256_mask __builtin_ia32_shufps128_mask __builtin_ia32_shufps256_mask __builtin_ia32_sqrtsd_round_mask __builtin_ia32_sqrtss_round_mask __builtin_ia32_rsqrt14pd128_mask __builtin_ia32_rsqrt14pd256_mask __builtin_ia32_rsqrt14ps128_mask __builtin_ia32_rsqrt14ps256_mask __builtin_ia32_cvtb2mask512 ULLiV64c __builtin_ia32_cvtmask2b512 __builtin_ia32_cvtmask2w512 __builtin_ia32_cvtd2mask512 UsV16i __builtin_ia32_cvtmask2d512 __builtin_ia32_cvtmask2q512 __builtin_ia32_cvtq2mask512 UcV8LLi __builtin_ia32_cvtb2mask128 UsV16c __builtin_ia32_cvtb2mask256 UiV32c __builtin_ia32_cvtmask2b128 __builtin_ia32_cvtmask2b256 __builtin_ia32_cvtmask2w128 __builtin_ia32_cvtmask2w256 __builtin_ia32_cvtd2mask128 UcV4i avx512dq,avx512vl __builtin_ia32_cvtd2mask256 UcV8i __builtin_ia32_cvtmask2d128 __builtin_ia32_cvtmask2d256 __builtin_ia32_cvtmask2q128 __builtin_ia32_cvtmask2q256 __builtin_ia32_cvtq2mask128 UcV2LLi __builtin_ia32_cvtq2mask256 UcV4LLi __builtin_ia32_broadcastmb512 __builtin_ia32_broadcastmw512 __builtin_ia32_broadcastf32x4_512 V16fV4fV16fUs __builtin_ia32_broadcastf64x4_512 V8dV4dV8dUc __builtin_ia32_broadcasti32x4_512 __builtin_ia32_broadcasti64x4_512 V8LLiV4LLiV8LLiUc __builtin_ia32_broadcastsd512 V8dV2dV8dUc __builtin_ia32_broadcastss512 __builtin_ia32_broadcastmb128 __builtin_ia32_broadcastmb256 __builtin_ia32_broadcastmw128 V4iUs __builtin_ia32_broadcastmw256 V8iUs __builtin_ia32_broadcastf32x2_512_mask __builtin_ia32_broadcastf32x8_512_mask V16fV8fV16fUs __builtin_ia32_broadcastf64x2_512_mask __builtin_ia32_broadcasti32x2_512_mask __builtin_ia32_broadcasti32x8_512_mask V16iV8iV16iUs __builtin_ia32_broadcasti64x2_512_mask __builtin_ia32_broadcastf32x2_256_mask V8fV4fV8fUc __builtin_ia32_broadcastf64x2_256_mask V4dV2dV4dUc __builtin_ia32_broadcasti32x2_128_mask __builtin_ia32_broadcasti32x2_256_mask V8iV4iV8iUc __builtin_ia32_broadcasti64x2_256_mask V4LLiV2LLiV4LLiUc __builtin_ia32_broadcastf32x4_256_mask __builtin_ia32_broadcasti32x4_256_mask __builtin_ia32_broadcastsd256_mask __builtin_ia32_broadcastss128_mask __builtin_ia32_broadcastss256_mask __builtin_ia32_pbroadcastw512_mask __builtin_ia32_pbroadcastb128_mask __builtin_ia32_pbroadcastb256_mask V32cV16cV32cUi __builtin_ia32_pbroadcastw128_mask __builtin_ia32_pbroadcastw256_mask __builtin_ia32_pbroadcastd128_mask __builtin_ia32_pbroadcastd256_mask __builtin_ia32_pbroadcastq128_mask __builtin_ia32_pbroadcastq256_mask __builtin_ia32_pbroadcastb512_mask V64cV16cV64cULLi __builtin_ia32_pbroadcastw512_gpr_mask V32shV32sUi __builtin_ia32_pbroadcastw256_gpr_mask V16shV16sUs __builtin_ia32_pbroadcastw128_gpr_mask V8ssV8sUc __builtin_ia32_pmovsdb512_mask V16cV16iV16cUs __builtin_ia32_pmovsdb512mem_mask vV16c*V16iUs __builtin_ia32_pmovsdw512_mask V16sV16iV16sUs __builtin_ia32_pmovsdw512mem_mask vV16s*V16iUs __builtin_ia32_pmovsqb512_mask V16cV8LLiV16cUc __builtin_ia32_pmovsqb512mem_mask vV16c*V8LLiUc __builtin_ia32_pmovsqd512_mask V8iV8LLiV8iUc __builtin_ia32_pmovsqd512mem_mask vV8i*V8LLiUc __builtin_ia32_pmovsqw512_mask V8sV8LLiV8sUc __builtin_ia32_pmovsqw512mem_mask vV8s*V8LLiUc __builtin_ia32_pmovsdb128_mask V16cV4iV16cUc __builtin_ia32_pmovsdb128mem_mask vV16c*V4iUc __builtin_ia32_pmovsdb256_mask V16cV8iV16cUc __builtin_ia32_pmovsdb256mem_mask vV16c*V8iUc __builtin_ia32_pmovsdw128_mask V8sV4iV8sUc __builtin_ia32_pmovsdw128mem_mask vV8s*V4iUc __builtin_ia32_pmovsdw256_mask V8sV8iV8sUc __builtin_ia32_pmovsdw256mem_mask vV8s*V8iUc __builtin_ia32_pmovsqb128_mask V16cV2LLiV16cUc __builtin_ia32_pmovsqb128mem_mask vV16c*V2LLiUc __builtin_ia32_pmovsqb256_mask V16cV4LLiV16cUc __builtin_ia32_pmovsqb256mem_mask vV16c*V4LLiUc __builtin_ia32_pmovsqd128_mask V4iV2LLiV4iUc __builtin_ia32_pmovsqd128mem_mask vV4i*V2LLiUc __builtin_ia32_pmovsqd256_mask V4iV4LLiV4iUc __builtin_ia32_pmovsqd256mem_mask vV4i*V4LLiUc __builtin_ia32_pmovsqw128_mask V8sV2LLiV8sUc __builtin_ia32_pmovsqw128mem_mask vV8s*V2LLiUc __builtin_ia32_pmovsqw256_mask V8sV4LLiV8sUc __builtin_ia32_pmovsqw256mem_mask vV8s*V4LLiUc __builtin_ia32_pmovusdb512_mask __builtin_ia32_pmovusdb512mem_mask __builtin_ia32_pmovusdw512_mask __builtin_ia32_pmovusdw512mem_mask __builtin_ia32_pmovusqb512_mask __builtin_ia32_pmovusqb512mem_mask __builtin_ia32_pmovusqd512_mask __builtin_ia32_pmovusqd512mem_mask __builtin_ia32_pmovusqw512_mask __builtin_ia32_pmovusqw512mem_mask __builtin_ia32_pmovusdb128_mask __builtin_ia32_pmovusdb128mem_mask __builtin_ia32_pmovusdb256_mask __builtin_ia32_pmovusdb256mem_mask __builtin_ia32_pmovusdw128_mask __builtin_ia32_pmovusdw128mem_mask __builtin_ia32_pmovusdw256_mask __builtin_ia32_pmovusdw256mem_mask __builtin_ia32_pmovusqb128_mask __builtin_ia32_pmovusqb128mem_mask __builtin_ia32_pmovusqb256_mask __builtin_ia32_pmovusqb256mem_mask __builtin_ia32_pmovusqd128_mask __builtin_ia32_pmovusqd128mem_mask __builtin_ia32_pmovusqd256_mask __builtin_ia32_pmovusqd256mem_mask __builtin_ia32_pmovusqw128_mask __builtin_ia32_pmovusqw128mem_mask __builtin_ia32_pmovusqw256_mask __builtin_ia32_pmovusqw256mem_mask __builtin_ia32_pmovdb512_mask __builtin_ia32_pmovdb512mem_mask __builtin_ia32_pmovdw512_mask __builtin_ia32_pmovdw512mem_mask __builtin_ia32_pmovqb512_mask __builtin_ia32_pmovqb512mem_mask __builtin_ia32_pmovqd512_mask __builtin_ia32_pmovqd512mem_mask __builtin_ia32_pmovqw512_mask __builtin_ia32_pmovqw512mem_mask __builtin_ia32_pmovdb128_mask __builtin_ia32_pmovdb128mem_mask __builtin_ia32_pmovdb256_mask __builtin_ia32_pmovdb256mem_mask __builtin_ia32_pmovdw128_mask __builtin_ia32_pmovdw128mem_mask __builtin_ia32_pmovdw256_mask __builtin_ia32_pmovdw256mem_mask __builtin_ia32_pmovqb128_mask __builtin_ia32_pmovqb128mem_mask __builtin_ia32_pmovqb256_mask __builtin_ia32_pmovqb256mem_mask __builtin_ia32_pmovqd128_mask __builtin_ia32_pmovqd128mem_mask __builtin_ia32_pmovqd256_mask __builtin_ia32_pmovqd256mem_mask __builtin_ia32_pmovqw128_mask __builtin_ia32_pmovqw128mem_mask __builtin_ia32_pmovqw256_mask __builtin_ia32_pmovqw256mem_mask __builtin_ia32_extractf32x8_mask V8fV16fIiV8fUc __builtin_ia32_extractf64x2_512_mask V2dV8dIiV2dUc __builtin_ia32_extracti32x8_mask V8iV16iIiV8iUc __builtin_ia32_extracti64x2_512_mask V2LLiV8LLiIiV2LLiUc __builtin_ia32_extracti32x4_mask V4iV16iIiV4iUc __builtin_ia32_extracti64x4_mask V4LLiV8LLiIiV4LLiUc __builtin_ia32_extractf64x2_256_mask V2dV4dIiV2dUc __builtin_ia32_extracti64x2_256_mask V2LLiV4LLiIiV2LLiUc __builtin_ia32_extractf32x4_256_mask V4fV8fIiV4fUc __builtin_ia32_extracti32x4_256_mask V4iV8iIiV4iUc __builtin_ia32_insertf64x2_512_mask V8dV8dV2dIiV8dUc __builtin_ia32_inserti32x8_mask V16iV16iV8iIiV16iUs __builtin_ia32_inserti64x2_512_mask V8LLiV8LLiV2LLiIiV8LLiUc __builtin_ia32_insertf64x4_mask V8dV8dV4dIiV8dUc __builtin_ia32_inserti64x4_mask V8LLiV8LLiV4LLiIiV8LLiUc __builtin_ia32_insertf64x2_256_mask V4dV4dV2dIiV4dUc __builtin_ia32_inserti64x2_256_mask V4LLiV4LLiV2LLiIiV4LLiUc __builtin_ia32_insertf32x4_256_mask V8fV8fV4fIiV8fUc __builtin_ia32_inserti32x4_256_mask V8iV8iV4iIiV8iUc __builtin_ia32_getmantpd128_mask V2dV2diV2dUc __builtin_ia32_getmantpd256_mask V4dV4diV4dUc __builtin_ia32_getmantps128_mask V4fV4fiV4fUc __builtin_ia32_getmantps256_mask V8fV8fiV8fUc __builtin_ia32_getmantpd512_mask V8dV8diV8dUcIi __builtin_ia32_getmantps512_mask V16fV16fiV16fUsIi __builtin_ia32_getexppd512_mask __builtin_ia32_getexpps512_mask __builtin_ia32_vfmaddss3_mask __builtin_ia32_vfmaddss3_maskz __builtin_ia32_vfmaddss3_mask3 __builtin_ia32_vfmaddsd3_mask __builtin_ia32_vfmaddsd3_maskz __builtin_ia32_vfmaddsd3_mask3 __builtin_ia32_permdf512_mask V8dV8dUcV8dUc __builtin_ia32_permdi512_mask V8LLiV8LLiUcV8LLiUc __builtin_ia32_permdf256_mask V4dV4dUcV4dUc __builtin_ia32_permdi256_mask V4LLiV4LLiUcV4LLiUc __builtin_ia32_permvarhi512_mask __builtin_ia32_permvardf512_mask __builtin_ia32_permvardi512_mask __builtin_ia32_permvarsf512_mask __builtin_ia32_permvarsi512_mask __builtin_ia32_permvarqi512_mask __builtin_ia32_permvarqi128_mask __builtin_ia32_permvarqi256_mask __builtin_ia32_permvarhi128_mask __builtin_ia32_permvarhi256_mask __builtin_ia32_permvardf256_mask __builtin_ia32_permvardi256_mask __builtin_ia32_permvarsf256_mask __builtin_ia32_permvarsi256_mask __builtin_ia32_fpclasspd128_mask UcV2dIiUc __builtin_ia32_fpclasspd256_mask UcV4dIiUc __builtin_ia32_fpclassps128_mask UcV4fIiUc __builtin_ia32_fpclassps256_mask UcV8fIiUc __builtin_ia32_fpclassps512_mask UsV16fIiUs __builtin_ia32_fpclasspd512_mask UcV8dIiUc __builtin_ia32_fpclasssd_mask __builtin_ia32_fpclassss_mask __builtin_ia32_kandhi __builtin_ia32_kandnhi __builtin_ia32_korhi __builtin_ia32_kortestchi iUsUs __builtin_ia32_kortestzhi __builtin_ia32_kunpckhi __builtin_ia32_kxnorhi __builtin_ia32_kxorhi __builtin_ia32_movntdq512 vV8LLi*V8LLi __builtin_ia32_movntdqa512 V8LLiV8LLi* __builtin_ia32_movntpd512 vd*V8d __builtin_ia32_movntps512 vf*V16f __builtin_ia32_palignr512_mask V64cV64cV64ciV64cULLi __builtin_ia32_palignr128_mask V16cV16cV16ciV16cUs __builtin_ia32_palignr256_mask V32cV32cV32ciV32cUi __builtin_ia32_dbpsadbw128_mask V8sV16cV16cIiV8sUc __builtin_ia32_dbpsadbw256_mask V16sV32cV32cIiV16sUs __builtin_ia32_dbpsadbw512_mask V32sV64cV64cIiV32sUi __builtin_ia32_psadbw512 V8LLiV64cV64c __builtin_ia32_compressdf512_mask __builtin_ia32_compressdi512_mask __builtin_ia32_compresssf512_mask __builtin_ia32_compresssi512_mask __builtin_ia32_cmpsd_mask UcV2dV2dIiUcIi __builtin_ia32_cmpss_mask UcV4fV4fIiUcIi ## #@ eod code_completion raw_identifier numeric_constant char_constant wide_char_constant utf8_char_constant utf16_char_constant utf32_char_constant string_literal wide_string_literal angle_string_literal utf8_string_literal utf16_string_literal utf32_string_literal l_square r_square l_paren r_paren l_brace r_brace period ampamp ampequal star starequal plusplus plusequal minus arrow minusminus minusequal exclaim exclaimequal slashequal percent percentequal lesslessequal greatergreater greatergreaterequal caret caretequal pipepipe pipeequal question semi equalequal hashhash hashat periodstar arrowstar coloncolon lesslessless greatergreatergreater caretcaret annot_cxxscope annot_typename annot_template_id annot_primary_expr annot_decltype annot_pragma_unused annot_pragma_vis annot_pragma_pack annot_pragma_parser_crash annot_pragma_captured annot_pragma_dump annot_pragma_msstruct annot_pragma_align annot_pragma_weak annot_pragma_weakalias annot_pragma_redefine_extname annot_pragma_fp_contract annot_pragma_ms_pointers_to_members annot_pragma_ms_vtordisp annot_pragma_ms_pragma annot_pragma_opencl_extension annot_pragma_openmp annot_pragma_openmp_end annot_pragma_loop_hint annot_module_include annot_module_begin annot_module_end $URL: https://llvm.org/svn/llvm-project/cfe/trunk/lib/Basic/Version.cpp $ /lib/Basic /src/tools/clang cfe/ llvm/ version 3.9.0 Clang 3.9.0 llvm.coveragemap Success End of File No coverage data found Unsupported coverage format version Truncated coverage data Malformed coverage data llvmcovmtestdata __llvm_prf_names Invalid encoding LLVM3.9.0svn Unexpected anonymous function when writing summary Map Name: Size: Value: Value: [null] Uses( ): [null] Metadata: slot = Metadata: function = Default MetaData Running analysis: Infer set function attributes inferattrs Inliner for always_inline functions Function Integration/Inlining should always be inlined (cost=always) should never be inlined (cost=never) too costly to inline (cost= , threshold= Not inlining. Cost of inlining increases the cost of inlining in other contexts can be inlined into with cost= (threshold= will not be inlined into WARNING: Internalize couldn't load file ' '! Continuing as if it's empty. Internalize Global Symbols internalize __stack_chk_fail __stack_chk_guard internalize-public-api-file A file containing list of symbol names to preserve internalize-public-api-list A list of symbol names to preserve Extract loops into new functions loop-extract Extract at most one loop into a new function loop-extract-single Extract Basic Blocks From Module (for bugpoint use) extract-blocks WARNING: BlockExtractor couldn't load file ' '! extract-blocks-file A file containing list of basic blocks to not extract offset size align all-ones Lower bitset metadata lowerbitsets bits_use __TEXT,__text,regular,pure_instructions .text All operands of llvm.bitsets metadata must have 3 elements Bit set element may not be thread-local Bit set global var element must be a definition Unsupported architecture for jump tables Bit set element must be a constant Bit set global var element may not have an explicit section Bit set element offset must be a constant Bit set element offset must be an integer constant Second argument of llvm.bitset.test must be metadata Bit set may not contain both global variables and functions lowerbitsets-avoid-reuse Try to avoid reuse of byte array addresses using aliases Merge Functions mergefunc mergefunc-sanity How many functions in module could be used for MergeFunctions pass sanity check. '0' disables this check. Works only with '-debug' key. Partial Inliner partial-inliner Remove unused exception handling info prune-eh Sample profile pass No debug information found in function : Function profile not used Could not open profile: Sample Profile loader Applied samples from profile (offset: Applied inline hint to globally hot function ' ' with %.2f % of samples (threshold: %) Applied cold hint to globally cold function ' inlined hot callee ' samples into ' most popular destination for conditional branches at <UNKNOWN LOCATION> available profile records ( %) were applied available profile samples ( sample-profile-file Profile file loaded by -sample-profile sample-profile-max-propagate-iterations Maximum number of iterations to go through when propagating sample block/edge weights through the CFG. Emit a warning if less than N% of records in the input profile are matched to the IR. sample-profile-check-record-coverage Emit a warning if less than N% of samples in the input profile are matched to the IR. sample-profile-check-sample-coverage Inlined functions that account for more than N% of all samples collected in the parent function, will be inlined again. sample-profile-inline-hot-threshold sample-profile-global-hot-threshold Top-level functions that account for more than N% of all samples collected in the profile, will be marked as hot for the inliner to consider. Top-level functions that account for less than N% of all samples collected in the profile, will be marked as cold for the inliner to consider. sample-profile-global-cold-threshold Strip Unused Function Prototypes llvm.dbg Strip all symbols from a module Strip all symbols, except dbg symbols, from a module strip-nondebug Strip all llvm.dbg.declare intrinsics strip-debug-declare Strip debug info for unused symbols strip-dead-debug-info llvm.dbg.declare Whole program devirtualization wholeprogramdevirt Promote 'by reference' arguments to scalars argpromotion .idx A No-Op Barrier Pass Merge Duplicate Global Constants constmerge __cfi_check CallSiteTypeId Addr CFICheckFailData cross-dso-cfi Dead Argument Elimination Dead Argument Hacking (BUGPOINT USE ONLY; DO NOT USE) deadarghaX0r newret oldret Eliminate Available Externally Globals elim-avail-extern alwaysinline builtin convergent jumptable nobuiltin noimplicitfloat nonlazybind noredzone norecurse nounwind readnone argmemonly safestack sanitize_address sanitize_memory ssp sspreq sspstrong uwtable inlinehint optsize sanitize_thread Force set function attributes forceattrs force-attribute Add an attribute to a function. This should be a pair of 'function-name:attribute-name', for example -force-attribute=foo:noinline. This option can be specified multiple times. Deduce function attributes Deduce function attributes in RPO rpo-functionattrs Function Importing function-import Abort Summary Based Function Import : Import Function Import: link error error: -summary-file and index from frontend Error loading file ' ': Error renaming module error: -function-import requires -summary-file or file from frontend import-instr-limit Only import functions with less than N instructions import-instr-evolution-factor As we import functions, multiply the `import-instr-limit` threshold by this factor before processing newly imported functions print-imports Print imported functions disable-force-link-odr summary-file The summary file to use for function importing. Dead Global Elimination globaldce Global Variable Optimizer .body newgv notinit isneg malloc_cont malloc_ret_null free_it Interprocedural constant propagation ipconstprop Basic-Block Vectorization .v.i .v.r bb-vectorize Ignore target information bb-vectorize-ignore-target-info bb-vectorize-req-chain-depth The required chain depth for vectorization Use the chain depth requirement with target information bb-vectorize-use-chain-depth bb-vectorize-search-limit The maximum search distance for instruction pairs Replicating one element to a pair breaks the chain bb-vectorize-splat-breaks-chain bb-vectorize-vector-bits The size of the native vector registers bb-vectorize-max-iter The maximum number of pairing iterations bb-vectorize-pow2-len-only Don't try to form non-2^n-length vectors The maximum number of pairable instructions per group bb-vectorize-max-instr-per-group The maximum number of candidate instruction pairs per group bb-vectorize-max-pairs-per-group bb-vectorize-max-cycle-check-pairs The maximum number of candidate pairs with which to use a full cycle check Don't try to vectorize boolean (i1) values bb-vectorize-no-bools Don't try to vectorize integer values bb-vectorize-no-ints Don't try to vectorize floating-point values bb-vectorize-no-floats Don't try to vectorize pointer values bb-vectorize-no-pointers Don't try to vectorize casting (conversion) operations bb-vectorize-no-casts Don't try to vectorize floating-point math intrinsics bb-vectorize-no-math Don't try to vectorize BitManipulation intrinsics bb-vectorize-no-bitmanip Don't try to vectorize the fused-multiply-add intrinsic bb-vectorize-no-fma Don't try to vectorize select instructions bb-vectorize-no-select Don't try to vectorize comparison instructions bb-vectorize-no-cmp Don't try to vectorize getelementptr instructions bb-vectorize-no-gep bb-vectorize-no-mem-ops Don't try to vectorize loads and stores bb-vectorize-aligned-only Only generate aligned loads and stores Don't boost the chain-depth contribution of loads and stores bb-vectorize-no-mem-op-boost Use a fast instruction dependency analysis bb-vectorize-fast-dep Dead Instruction Elimination die Dead Code Elimination dce Early CSE Number of compare instructions CVP'd Global Value Numbering gvn inttoptr .pre .pre-phi enable-pre enable-load-pre max-recurse-depth Max recurse depth (default = 1000) and.ra Reassociate expressions Interprocedural Sparse Conditional Constant Propagation SCCP: Don't know how to handle: Scalar Replacement of Aggregates (DT) Scalar Replacement of Aggregates (SSAUp) sroa.store.elt sroa.load.elt dyn.offset .in srcval .t .ld .i0 scalarize-load-store Allow the scalarizer pass to scalarize loads and store Scalarize vector operations scalarizer .upto .cast uglygep Split GEPs to a variadic base and a constant offset for better CSE Dead instruction detected! disable-separate-const-offset-from-gep Do not separate the constant offset from a GEP instruction reassociate-geps-verify-no-dead-code Verify this pass produces no dead code Simplify the CFG bonus-inst-threshold Control the number of bonus instructions (default = 1) Code sinking Speculatively execute instructions if target has divergent branches Speculatively execute instructions speculative-execution spec-exec-max-speculation-cost Speculative execution is not applied to basic blocks where the cost of the instructions to speculatively execute exceeds this limit. spec-exec-max-not-hoisted Speculative execution is not applied to basic blocks where the number of instructions that would not be speculatively executed exceeds this limit. spec-exec-only-if-divergent-target Speculative execution is applied only to targets with divergent branches, even if the pass was configured to apply only to all targets. Straight line strength reduction slsr Structurize control flow Structurize the CFG structurizecfg Flow entry.orig structurizecfg.uniform marked this readnone call a tail call candidate marked this call a tail call candidate transforming tail recursion to loop tailrecurse .tr accumulator.tr Tail Call Elimination __llvm_profile_instrument_target Aggressive Dead Code Elimination alignment-from-assumptions Alignment from assumptions Bit-Tracking Dead Code Elimination bdce Constant Hoisting const_mat consthoist Simple constant propagation Value Propagation Dead Store Elimination Flatten the CFG flattencfg Float to int float2int float2int-max-integer-bw Max integer bitwidth to consider in float2int(default=64) & ' ( ) ! * * & ' ( ) ! Inductive range check elimination irce .exit.selector .pseudo.exit .copy indvar.end exit.preloop.at exit.mainloop.at mainloop postloop preloop RANGE_CHECK_BOTH RANGE_CHECK_LOWER RANGE_CHECK_UPPER RANGE_CHECK_UNKNOWN irce: looking at loop irce: loop has inductive range checks: InductiveRangeCheck: Kind: Offset: Scale: Length: Branch: indvar.start irce: in function constrained irce-loop-size-cutoff irce-print-changed-loops irce-print-range-checks irce-max-exit-prob-reciprocal Cannot find option named ' '! Induction Variable Simplification lftr.wideiv lftr.limit exitcond .wide indvar.conv verify-indvars Verify the ScalarEvolution result after running indvars liv-reduce Reduce live induction variables. Choose the strategy to replace exit value in IndVarSimplify never replace exit value never always replace exit value whenever possible only replace exit value when the cost is cheap cheap replexitval .thr_comm Jump Threading thread-pre-split .pr .thread select.unfold jump-threading-threshold Max block size to duplicate for jump threading jump-threading-implication-search-threshold The number of predecessors to search for a stronger condition to use to thread over a weaker condition .promoted .lcssa Loop Invariant Code Motion .le disable-licm-promotion Disable memory promotion in LICM pass LoadCombine .combined combine.extract .shift Combine Adjacent Loads load-combine Number of loads combined Delete dead loops Loop Data Prefetch loop-data-prefetch prefaddr loop-prefetch-writes Prefetch write addresses prefetch-distance Number of instructions to prefetch ahead min-prefetch-stride Min stride to add prefetches max-prefetch-iters-ahead Max number of iterations to prefetch ahead Loop Distribition loop-distribute loop not distributed: use -Rpass-analysis=loop-distribute for more info loop not distributed: loop not disributed: failed explicitly specified loop distribution .ldist no preheader multiple exit blocks memory operations are safe for vectorization cannot isolate unsafe dependencies too many SCEV run-time checks needed. distributed loop no unsafe dependences to isolate llvm.loop.distribute.enable loop-distribute-verify Turn on DominatorTree and LoopInfo verification after Loop Distribution loop-distribute-non-if-convertible Whether to distribute into a loop that may not be if-convertible by the loop vectorizer loop-distribute-scev-check-threshold The maximum number of SCEV checks allowed for Loop Distribution loop-distribute-scev-check-threshold-with-pragma The maximum number of SCEV checks allowed for Loop Distribution for loop marked with #pragma loop distribute(enable) enable-loop-distribute Enable the new, experimental LoopDistribution Pass Recognize loop idioms memset_pattern16 .memset_pattern tcphi tcdec Simplify instructions in loops loop-instsimplify Interchanges loops for cache reuse loop-interchange vector::_M_emplace_back_aux .split Loop Load Elimination loop-load-elim storeforward load_initial store_forwarded runtime-check-per-loop-load-elim Max number of memchecks allowed per eliminated load on average loop-load-elimination-scev-check-threshold The maximum number of SCEV checks allowed for Loop Load Elimination Reroll loops loop-reroll reroll max-reroll-increment The maximum increment for loop rerolling reroll-num-tolerated-failed-matches The maximum number of failures to tolerate during fuzzy matching. (default: 400) Rotate Loops .lr.ph rotation-max-header-size The default maximum header size for automatic loop rotation Simplify loop CFG loop-simplifycfg Loop Strength Reduction loop-reduce lsr lsr.chain IV.S. IV.S.next. scmp .termcond enable-lsr-phielim Enable LSR phi elimination Unroll loops llvm.loop.unroll.runtime.disable Unable to unroll loop the number of times directed by unroll_count pragma because the loop contains a convergent instruction, and so must have an unroll count that divides the loop trip multiple of . Unrolling instead time(s). Unable to unroll loop the number of times directed by unroll_count pragma because unrolled size is too large. Unable to fully unroll loop as directed by unroll(full) pragma because loop has a runtime trip count. Unable to unroll loop as directed by unroll(enable) pragma because unrolled size is too large. Unable to fully unroll loop as directed by unroll pragma because unrolled size is too large. llvm.loop.unroll. The baseline cost threshold for loop unrolling unroll-threshold unroll-percent-dynamic-cost-saved-threshold The percentage of estimated dynamic cost which must be saved by unrolling to allow unrolling up to the max threshold. unroll-dynamic-cost-savings-discount This is the amount discounted from the total unroll cost when the unrolled form has a high dynamic cost savings (triggered by the '-unroll-perecent-dynamic-cost-saved-threshold' flag). unroll-max-iteration-count-to-analyze Don't allow loop unrolling to simulate more than this number ofiterations when checking full unroll profitability unroll-count Use this unroll count for all loops including those with unroll_count pragma values, for testing purposes Set the max unroll count for partial and runtime unrolling, fortesting purposes unroll-max-count unroll-full-max-count Set the max unroll count for full unrolling, for testing purposes unroll-allow-partial Allows loops to be partially unrolled until -unroll-threshold loop size is reached. unroll-runtime Unroll loops with run-time trip counts pragma-unroll-threshold Unrolled size limit for loops with an unroll(full) or unroll_count pragma. branch_weights Unswitch loops us-unreachable .us-lcssa .us loop-unswitch-threshold Max loop size to unswitch loop-unswitch-with-block-frequency Enable the use of the block frequency analysis to access PGO heuristics to minimize code growth in cold regions. loop-unswitch-coldness-threshold Coldness threshold in percentage. The loop header frequency (relative to the entry frequency) is compared with this threshold to determine if non-trivial unswitching should be enabled. Loop Versioning llvm.loop.licm_versioning.disable LVDomain LVAliasScope Loop Versioning For LICM loop-versioning-licm licm-versioning-invariant-threshold LoopVersioningLICM's minimum allowed percentageof possible invariant instructions per loop licm-versioning-max-depth-threshold LoopVersioningLICM's threshold for maximum allowed loop nest/depth Lower atomic intrinsics to non-atomic form loweratomic Lower 'expect' Intrinsics likely-branch-weight Weight of the branch likely to be taken (default = 2000) unlikely-branch-weight Weight of the branch unlikely to be taken (default = 1) Lower the guard intrinsic to normal control flow lower-guard-intrinsic guarded deopt deoptcall MemCpy Optimization tmpcast .sink MergedLoadStoreMotion mldst-motion Nary reassociation nary-reassociate call.sqrt Partially inline calls to library functions partially-inline-libcalls Place Backedge Safepoints place-backedge-safepoints-impl Place Safepoints place-safepoints spp-all-backedges spp-counted-loop-trip-width spp-split-backedge spp-no-entry spp-no-call spp-no-backedge gc.safepoint_poll statepoint-example coreclr reg2mem alloca point Demote all values to stack slots reg2mem is_base_value .remat __tmp_use Make relocations explicit at statepoints rewrite-statepoints-for-gc base_phi base_ee base_select base_ie .relocated Live Variables: Safepoint For: Number live values: Base Pairs (w/o Relocation): derived base Base Pairs: (w/Relocation) __llvm_deoptimize safepoint_token statepoint_token spp-print-liveset spp-print-liveset-size spp-print-base-pointers spp-rematerialization-threshold rs4gc-clobber-non-live cl::location(x) specified more than once! rs4gc-allow-statepoint-with-no-deopt-info SROA sroa_idx .gep .load .insert .extract .mask .expand isplat Scalar Replacement Of Aggregates sroa sroa_raw_cast sroa_raw_idx sroa_cast load.ext endian_shift vsplat oldload load.trunc copyload .sroa. .fca .sroa.speculated .sroa.speculate.load. .sroa.speculate.load.true .sroa.speculate.load.false sroa-random-shuffle-slices sroa-strict-inbounds Maximum number of uses of a partition Maximum number of partitions per alloca llvm.instrprof Unrecognized instrumentation profile encoding format Invalid instrumentation profile data (bad magic) Invalid instrumentation profile data (file header is corrupt) Unsupported instrumentation profile format version Unsupported instrumentation profile hash type Too much profile data Truncated profile data Malformed instrumentation profile data No profile data available for function Function control flow change detected (hash mismatch) Function basic block count change detected (counter mismatch) Counter overflow Function value site count change detected (counter mismatch) __profn_ -:<>"' VP PGOFuncName DetailedSummary ProfileFormat SampleProfile TotalSamples MaxSamplesPerLine MaxFunctionCount NumLinesWithSamples NumFunctions InstrProf TotalCount MaxBlockCount MaxInternalBlockCount NumBlocks ' @ ' ' ` 5 ~ 0 X> A 6B ?B llvm.sampleprof Invalid sample profile data (bad magic) Unsupported sample profile format version Malformed sample profile data Unrecognized sample profile encoding format Profile encoding format unsupported for writing operations Truncated function name table Unimplemented feature , calls: sampled lines Samples collected in the function's body { No samples collected in the function's body Samples collected in inlined callsites { : inlined callee: No inlined callsites in this function Function: Unexpected end of memory buffer: Unexpected file type: *204 *404 Unexpected version: adcg adcg*704 Expected 'mangled_name:NUM:NUM', found Expected 'NUM[.NUM]: NUM[ mangled_name:NUM]*', found Appending variables with different element types! Appending variables linked with different const'ness! Appending variables with different alignment need to be linked! Appending variables with different visibility need to be linked! Appending variables with different unnamed_addr need to be linked! Appending variables with different section name need to be linked! Linking globals named ' ': can only link appending global with another appending global! Linking two modules of different data layouts: ' ' is ' ' whereas ' linking module flags ' ': IDs have conflicting behaviors ': IDs have conflicting values ': IDs have conflicting override values ': does not have the required value Linking two modules of different target triples: Linking COMDATs named ' ': COMDAT key involves incomputable alias size. ': GlobalVariable required for data dependent selection! ': symbol multiply defined! ': invalid selection kinds! ': noduplicates has been violated! ': ExactMatch violated! ': SameSize violated! Could not open input file: Parse IR LLVM IR Parsing <string> expected end of string constant bigger than 64 bits detected! constant bigger than 128 bits detected! end of file in COMDAT variable name Null bytes are not allowed in names end of file in string constant end of file in global variable name invalid value number (too large)! bitwidth for integer type out of range! available_externally linkonce linkonce_odr weak_odr appending unnamed_addr externally_initialized extern_weak localdynamic initialexec localexec zeroinitializer caller within musttail notail triple source_filename unwind deplibs datalayout acq_rel singlethread nnan ninf nsz arcp fast exact sideeffect alignstack inteldialect fastcc coldcc x86_stdcallcc x86_fastcallcc x86_thiscallcc x86_vectorcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc msp430_intrcc avr_intrcc avr_signalcc ptx_kernel ptx_device spir_func x86_64_sysvcc x86_64_win64cc webkit_jscc swiftcc anyregcc preserve_mostcc preserve_allcc ghccc x86_intrcc hhvmcc hhvm_ccc cxx_fast_tlscc amdgpu_vs amdgpu_gs amdgpu_ps amdgpu_cs allocsize byval inalloca dereferenceable dereferenceable_or_null inaccessiblememonly inaccessiblemem_or_argmemonly nest nocapture returned signext swifterror swiftself zeroext opaque comdat exactmatch largest noduplicates samesize slt sgt sle sge ugt uge oeq olt ogt ole oge uno ueq une nand umax umin blockaddress distinct uselistorder x86_fp80 ppc_fp128 x86_mmx token frem lshr ashr icmp fcmp phi fptrunc uitofp sitofp fptoui fptosi ptrtoint addrspacecast va_arg indirectbr resume cmpxchg atomicrmw getelementptr extractelement insertelement landingpad cleanupret catchret DW_TAG_ DW_ATE_ DW_VIRTUALITY_ DW_LANG_ DW_OP_ DW_MACINFO_ DIFlag FullDebug LineTablesOnly ' cannot be specified more than once expected 'true' or 'false' expected unsigned integer value for ' ' too large, limit is expected DWARF language invalid DWARF language expected DWARF macinfo type invalid DWARF macinfo type expected DWARF tag invalid DWARF tag expected signed integer ' too small, limit is expected 'global' or 'constant' expected string constant expected 'module asm' unknown target property expected '=' after target triple expected '=' after target datalayout expected '=' after source_filename expected '=' after deplibs expected ']' at end of list ' cannot be empty expected 32-bit integer (too large) expected integer expected debug info flag invalid debug info flag flag ' expected localdynamic, initialexec or localexec expected ')' after thread local model expected '(' in address space expected ')' in address space huge alignments are not supported yet alignment is not a power of two expected ')' dereferenceable bytes must be non-zero expected '(' invalid use of function-only attribute invalid use of parameter-only attribute invalid use of attribute on return type expected metadata or 'align' 'allocsize' indices can't refer to the same parameter Expected ordering on atomic instruction stack alignment is not a power of two expected index expected ',' as start of index list use of undefined value '% expected '(' here expected field label here lowerBound invalid field ' expected ')' here missing required field 'count' missing required field 'name' missing required field 'value' expected DWARF type attribute encoding invalid DWARF type attribute encoding directory missing required field 'filename' missing required field 'directory' missing required field 'type' missing required field 'line' invalid DWARF op ' element too large, limit is expected fcmp predicate (e.g. 'oeq') expected icmp predicate (e.g. 'eq') fence cannot be unordered fence cannot be monotonic expected '{' here expected non-empty list of uselistorder indexes expected >= 2 uselistorder indexes expected uselistorder indexes to change the order expected '}' here expected distinct uselistorder indexes in range [0, size) unterminated attribute group cannot have an attribute group reference in an attribute group expected '=' here invalid use of attribute on a function invalid use of parameter-only attribute on a function expected attribute group id expected end of attribute group attribute group has no attributes ' defined with type ' global variable reference must have pointer type ' is not a basic block invalid use of a non-first-class type expected function name in blockaddress use of undefined type '% use of undefined type named ' use of undefined comdat '$ use of undefined value '@ use of undefined metadata '! expected '>' at end of packed struct basic block pointers are invalid pointers to void are invalid - use i8* instead pointer to this type is invalid pointers to void are invalid; use i8* instead expected '*' in address space void type only allowed for function results expected type argument can not have void type invalid type for function argument expected ')' at end of argument list argument name invalid in function type argument attributes invalid in function type invalid function return type invalid element type for struct expected '}' at end of struct zero element vector is illegal size too large for vector invalid vector element type invalid array element type expected number in address space expected 'x' after element count expected end of sequential type forward references to non-struct type expected '>' in packed struct redefinition of type expected '=' after name expected 'type' after name non-struct types may not be recursive expected 'type' after '=' expected comdat keyword expected comdat type unknown selection kind redefinition of comdat '$ Expected '!' here Expected '{' here expected end of metadata node instruction expected to be numbered '% instruction forward referenced with type ' multiple definition of local value named ' instructions returning void cannot have a name expected comdat variable expected ')' after comdat var comdat cannot be unnamed referenced value is not a basic block functions are not values, refer to them as pointers invalid use of function-local name invalid type for inline asm constraint string integer constant must have integer type floating point constant invalid for type floating point constant does not have type ' null must be a pointer type invalid type for undef constant invalid type for null constant invalid type for none constant constant expression type mismatch initializer with struct type has wrong # elements packed'ness of initializer and type don't match element of struct initializer doesn't match struct element type invalid empty array initializer global values must be constants expected value token expected end of struct constant expected end of packed struct constant vector must not be empty vector elements must have integer, pointer or floating point type vector element # is not of type ' expected end of array constant array element # expected string expected comma in inline asm expression expected constraint string expected '(' in block address expression expected comma in block address expression expected ')' in block address expression expected basic block name in blockaddress cannot take blockaddress inside a declaration cannot take address of numeric label after the function is defined expected '(' after constantexpr cast expected 'to' in constantexpr cast expected ')' at end of constantexpr cast invalid cast opcode for cast from ' ' to ' expected '(' in extractvalue constantexpr expected ')' in extractvalue constantexpr invalid indices for extractvalue expected '(' in insertvalue constantexpr expected comma in insertvalue constantexpr expected ')' in insertvalue constantexpr invalid indices for insertvalue insertvalue operand and field disagree in type: ' ' instead of ' expected '(' in compare constantexpr expected comma in compare constantexpr expected ')' in compare constantexpr compare operands must have the same type fcmp requires floating point operands expected '(' in binary constantexpr expected comma in binary constantexpr expected ')' in binary constantexpr operands of constexpr must have same type nuw only applies to integer operations nsw only applies to integer operations constexpr requires integer operands constexpr requires fp operands expected '(' in logical constantexpr expected comma in logical constantexpr expected ')' in logical constantexpr constexpr requires integer or integer vector operands expected '(' in constantexpr expected comma after getelementptr's type expected ')' in constantexpr explicit pointee type doesn't match operand's pointee type getelementptr index must be an integer getelementptr index type missmatch getelementptr vector index has a wrong number of elements invalid getelementptr indices expected three operands to select expected three operands to shufflevector invalid operands to shufflevector expected two operands to extractelement invalid extractelement operands expected three operands to insertelement invalid insertelement operands invalid array element type: extractvalue operand must be aggregate type insertvalue operand must be aggregate type icmp requires pointer or integer operands base of getelementptr must be a pointer base element of getelementptr must be sized expected end of constant symbol with local linkage must have default visibility expected comma after alias or ifunc's type invalid aliasee redefinition of global '@ forward reference and definition of alias have different types An alias or ifunc must have pointer type explicit pointee type should be a function type invalid linkage type for alias invalid linkage for function definition invalid linkage for function declaration invalid function linkage type function expected to be numbered '% expected function name expected '(' in function argument list 'builtin' attribute not valid on function invalid forward reference to function as global value! invalid forward reference to function ' ' with wrong type! invalid redefinition of function ' redefinition of function '@ type of definition and forward reference of '@ ' disagree redefinition of argument '% functions with 'sret' argument must return void forward reference and definition of global have different types expected global section string unknown global variable property! invalid type for global variable variable expected to be numbered '% expected '=' in global variable expected a constant value value doesn't match function result type ' expected '[' in phi value list expected ',' after insertelement value expected ']' in phi value list phi node must have first class type invalid metadata-value-metadata roundtrip expected metadata operand ' cannot be null column inlinedAt missing required field 'scope' baseType extraData missing required field 'tag' missing required field 'baseType' runtimeLang vtableHolder templateParams missing required field 'types' producer isOptimized runtimeVersion splitDebugFilename emissionKind expected emission kind invalid emission kind enums retainedTypes imports macros dwoId missing required field 'language' missing required field 'file' missing 'distinct', required for !DICompileUnit linkageName isLocal isDefinition scopeLine containingType virtuality expected DWARF virtuality code invalid DWARF virtuality code virtualIndex missing 'distinct', required for !DISubprogram when 'isDefinition' discriminator missing required field 'discriminator' configMacros includePath isysroot expected constant DILocation DIExpression GenericDINode DISubrange DIEnumerator DIBasicType DIDerivedType DICompositeType DISubroutineType DIFile DICompileUnit DISubprogram DILexicalBlock DILexicalBlockFile DINamespace DIModule DITemplateTypeParameter DITemplateValueParameter DIGlobalVariable DILocalVariable DIObjCProperty DIImportedEntity DIMacro DIMacroFile expected metadata type unexpected type in metadata definition Metadata id is already used expected '!' here expected metadata after comma expected '(' in call expected ',' in argument list unexpected ellipsis in argument list for non-musttail call musttail call in non-varargs function expected '...' at end of argument list for musttail call in varargs function expected '[' in catchpad/cleanuppad expected 'within' after catchpad expected scope value for catchpad expected 'within' after cleanuppad expected scope value for cleanuppad expected a basic block branch condition must have 'i1' type expected ',' after branch condition expected ',' after true destination expected ',' after switch condition expected '[' with switch table switch condition must have integer type expected ',' after case value duplicate case value in switch case value is not a constant integer expected ',' after indirectbr address expected '[' with indirectbr indirectbr address must have pointer type expected ']' at end of block list expected 'to' after cast value 'catch' clause has an invalid type 'filter' clause has an invalid type clause argument must be a constant expected 'catch' or 'filter' clause type invalid type for alloca element count must have integer type expected comma after load's type load operand must be a pointer to a first class type atomic load must have explicit non-zero alignment atomic load cannot use Release ordering expected ',' after store operand store operand must be a pointer stored value and pointer type do not match atomic store must have explicit non-zero alignment atomic store cannot use Acquire ordering store operand must be a first class value expected ',' after cmpxchg address expected ',' after cmpxchg cmp operand cmpxchg cannot be unordered cmpxchg failure argument shall be no stronger than the success argument cmpxchg failure ordering cannot include release semantics cmpxchg operand must be a pointer compare value and pointer type do not match new value and pointer type do not match cmpxchg operand must be a first class value expected binary operation in atomicrmw expected ',' after atomicrmw address atomicrmw cannot be unordered atomicrmw operand must be a pointer atomicrmw value and pointer type do not match atomicrmw operand must be an integer atomicrmw operand must be power-of-two byte-sized integer expected comma after insertvalue operand expected ',' after select condition expected ',' after select value expected ',' after vaarg operand va_arg requires operand with first class type expected ',' after extract value expected ',' after shuffle mask expected ',' after shuffle value invalid shufflevector operands expected 'from' after cleanupret expected 'unwind' in cleanupret expected 'caller' in cleanupret expected 'from' after catchret expected 'to' in catchret expected 'within' after catchswitch expected '[' with catchswitch labels expected 'unwind' after catchswitch scope expected 'caller' in catchswitch expected scope value for catchswitch expected ']' after catchswitch labels expected ',' in arithmetic operation invalid operand type for instruction expected ',' in logical operation instruction requires integer or integer vector operands expected ',' after compare value icmp requires integer operands expected ',' in input list expected '(' in operand bundle operand bundle set must not be empty expected 'to' in invoke expected 'unwind' in invoke Invalid result type for LLVM function too many arguments specified not enough parameters specified for call invoke instructions may not have an alignment argument is not of expected type ' expected 'tail call', 'musttail call', or 'notail call' fast-math-flags specified for call without floating-point scalar or vector return type call instructions may not have an alignment found end of file when expecting more instructions expected instruction opcode unable to create block named ' expected '=' after instruction id expected '=' after instruction name value has no uses value only has one use wrong number of indexes, expected expected uselistorder directive expected comma in uselistorder directive expected '{' in function body function body requires at least one basic block expected comma in uselistorder_bb directive invalid function forward reference in uselistorder_bb expected function name in uselistorder_bb invalid declaration in uselistorder_bb invalid numeric label in uselistorder_bb expected basic block name in uselistorder_bb invalid basic block in uselistorder_bb expected basic block in uselistorder_bb expected top-level entity Can't read textual IR with a Context that discards named Values Combine redundant instructions .offs .c .op phitmp .sum expensive-combines Enable expensive instruction combines addconv sum diff.neg fold .demorgan .off .masked and.shrunk bitfield notlhs notrhs unmaskedload blendv castvec .lobit umul.value .sext to.ptr sadd.result sadd.overflow .unshifted storemerge .unpack .elt .repack suba subc .pn .shrunk extract.t not. .Elt .lhs .rhs .bc Add DWARF path discriminators add-discriminators no-discriminators Disable generation of discriminator information. lpad lpad.phi .split-lp Break critical edges in CFG break-crit-edges _crit_edge cstr __memcpy_chk putchar chari puts fputc fputs loadgep_ targetBlock .loc structArg gep_reload_ .reload .exitStub .ret .ce codeRepl newFuncRoot aggregate-extracted-args Aggregate arguments to code-extracted functions .reg2mem .llvm. : % : argument .noexc eh.lpad-body .lpad-body savedstack .exit enable-noalias-to-md-conversion Convert noalias attributes to metadata during inlining. preserve-alignment-assumptions-during-inlining Convert align attributes to assumptions during inlining. Loop-Closed SSA Form Pass gc-leaf-function rev .preheader Canonicalize natural loops .outer .loopexit .backedge .be unrolled loop by a factor of completely unrolled loop with iterations with a breakout at trip trips per branch with run-time trip count unroll-runtime-epilog Allow runtime unrolled loops to be unrolled with epilog instead of prolog. .epilog-lcssa .unr lcmp.mod .unr-lcssa epil prol .iter .new .epil.preheader .prol.preheader .prol.loopexit niter .nsub .ncmp xtraiter unroll_iter rdx.minmax.cmp rdx.minmax.select Loop Versioning .lver loop-versioning LVerDomain scev.check ldist.safe .lver.check .lver.orig loop-version-annotate-no-alias Add no-alias annotation for instructions that are disambiguated by memchecks SwitchLeaf NodeBlock Pivot LeafBlock NewDefault Lower SwitchInst's to branches lowerswitch Promote Memory to Register __sanitizer_stat_init __sanitizer_stat_report simplifycfg.merge magicptr infloop .critedge switch.lookup switch.tableidx switch.hole_check switch.maskindex switch.shifted switch.lobit switch.table switch.idx.cast switch.idx.mult switch.offset switch.cast switch.shiftamt switch.downshift switch.masked switch.tableidx.zext switch.gep switch.load inverted.cmp .old or.cond not.cond and.cond brmerge .mux switch.early.test switch.selectcmp switch.select switch.edge phi-node-folding-threshold Control the amount of phi node folding to perform (default = 2) simplifycfg-dup-ret Duplicate return instructions into unconditional branches simplifycfg-sink-common Sink common instructions down to the end block Hoist conditional stores if an unconditional store precedes simplifycfg-hoist-cond-stores Hoist conditional stores even if an unconditional store does not precede - hoist multiple conditional stores into a single predicated store simplifycfg-merge-cond-stores simplifycfg-merge-cond-stores-aggressively When merging conditional stores, do so even if the resultant basic blocks are unlikely to be if-converted as a result speculate-one-expensive-inst Allow exactly one expensive instruction to be speculatively executed max-speculation-depth Limit maximum recursion depth when calculating costs of speculatively executed instructions iprintf fiprintf endptr ispos strcmpload isdigittmp isdigit isascii lhsc lhsv rhsc rhsv chardiff memchr.bounds memchr.bits nul leninc siprintf folded strlen(select) to select of constants simplify-libcalls strlenfirst __sincospif_stret __sincospi_stret sincospi logmul pow2 powrecip error-reporting-is-cold Treat error-reporting calls as cold enable-double-float-shrink Enable unsafe double to float shrinking for math lib calls Unify function exit nodes mergereturn UnifiedUnreachableBlock UnifiedReturnBlock UnifiedRetVal Assign names to anonymous instructions instnamer Lower invoke and unwind, for unwindless code generators lowerinvoke liveOnEntry MemoryUse( = MemoryPhi( = MemoryDef( Memory SSA memoryssalazy verify-memoryssa Run the Memory SSA verifier print-memoryssa struct. Assign new names to everything metarenamer foo bar baz quux barney snork zot blam hoge wibble wobble widget wombat ham eggs pluto spam Sanitizer interface function redefined: Name Anon Functions anon. Provide a name to nameless functions name-anon-functions Remove redundant instructions instsimplify External Alias Analysis external-aa Function Alias Analysis Results disable-basicaa may must AliasSet[ alias, No access Ref Mod Mod/Ref [volatile] forwarding to Pointers: Unknown instructions: Alias Set Tracker: alias sets for pointer values. Alias Set Printer print-alias-sets Assumption Cache Tracker assumption-cache-tracker Cached assumptions for function: Basic Alias Analysis (stateless AA impl) basicaa-recphi block-frequency-info: : float = , int = BlockFrequencyInfo::view is only available in debug builds on systems with Graphviz or gv! Block Frequency Analysis block-freq ** Branch Probability Analysis branch-prob [HOT edge] edge probability is ---- Branch Probabilities ---- View CFG of function view-cfg View CFG of function (with no function bodies) view-cfg-only Print CFG of function to 'dot' file dot-cfg Print CFG of function to 'dot' file (with no function bodies) dot-cfg-only Node [shape=record, label="{ \l... <s |<s64>truncated... }"]; :s -> Node CFG for ' ' function digraph " " { digraph unnamed { label=" "; cfg. .dot Writing ' '... error opening file for writing! error opening file ' ' for writing! done. CFL-Based Alias Analysis cfl-aa Call graph node for function: ' Call graph node <<null function>> >> #uses= CS< > calls external node CallGraph Root is: <<null function: 0x >> No call graph has been built! CallGraph Construction Print a call graph print-callgraph CallGraph Pass Manager Call Graph SCC Pass Manager Printing <null> Function max-cg-scc-iterations cgscc-passmgr Maximum CGSCCPassMgr iterations on one SCC View call graph view-callgraph Print call graph to 'dot' file dot-callgraph external node Call graph Cost Model Analysis Cost Model: Found an estimated cost of Cost Model: Unknown cost for instruction: cost-model costmodel-reduxcost Recognize reduction patterns. Delinearization on function Inst: In Loop with Header: AccessFunction: failed to delinearize Base offset: ArrayDecl[UnknownSize] with elements of bytes. ArrayRef delinearize Delinearization Demanded bits analysis demanded-bits DemandedBits: 0x Dependence Analysis Empty Any Point is < Distance is *X + *Y = Line is confused consistent anti |< splitable da analyze - da analyze - split level = , iteration = none! da-delinearize Try to delinearize array references. DIVERGENT: DIVERGENT: Divergence Analysis divergence View dominance tree of function view-dom View dominance tree of function (with no function bodies) view-dom-only View postdominance tree of function view-postdom View postdominance tree of function (with no function bodies) view-postdom-only postdomonly Print dominance tree of function to 'dot' file dot-dom Print dominance tree of function to 'dot' file (with no function bodies) dot-dom-only Print postdominance tree of function to 'dot' file dot-postdom Print postdominance tree of function to 'dot' file (with no function bodies) dot-postdom-only Post dominance root node Post dominator tree Dominator tree for ' DomFrontier for BB <<exit node>> is: <<exit node>> Dominance Frontier Construction domfrontier DominanceFrontier for function: __gnat_eh_personality ProcessCLRException _except_handler4 rust_eh_personality Globals Alias Analysis globals-aa enable-unsafe-globalsmodref-alias-results Induction Variable Users iv-users IV Users for loop with backedge-taken count (post-inc with loop in Printing <null> User inline-threshold Control the amount of inlining to perform (default = 225) Threshold for inlining functions with inline hint inlinehint-threshold Threshold for inlining functions with cold attribute inlinecold-threshold Counts the various types of Instructions instcount Number of Call insts Number of GetElementPtr insts Number of Store insts Number of Load insts Number of Alloca insts Number of Invoke insts Interval Partition Construction intervals Lazy Value Information Analysis overdefined notconstant< constantrange< constant< Undefined behavior: Null pointer dereference Undefined behavior: Undef pointer dereference Undefined behavior: Write to read-only memory Unusual: Load from function body Undefined behavior: Load from block address Undefined behavior: Call to block address Undefined behavior: Branch to non-blockaddress Undefined behavior: Buffer overflow Unusual: All-ones pointer dereference Unusual: Address one pointer dereference Undefined behavior: Write to text section Undefined behavior: Memory reference address is misaligned Undefined behavior: Caller and callee calling convention differ Undefined behavior: Call argument count mismatches callee argument count Undefined behavior: Call return type mismatches callee return type Undefined behavior: Call argument type mismatches callee parameter type Unusual: noalias argument aliases another argument Undefined behavior: memcpy source and destination overlap Undefined behavior: va_start called in a non-varargs function Undefined behavior: Call with "tail" keyword references alloca Unusual: Unnamed function with non-local linkage Unusual: Return statement in function with noreturn attribute Undefined behavior: indirectbr with no destinations Undefined behavior: Division by zero Pessimization: Static alloca outside of entry block Unusual: Returning alloca value Undefined result: sub(undef, undef) Undefined result: Shift count out of range Undefined result: xor(undef, undef) Undefined result: extractelement index out of range Undefined result: insertelement index out of range Unusual: unreachable immediately preceded by instruction without side effects Statically lint-checks LLVM IR lint available-load-scan-limit Use this to specify the default maximum number of instructions to scan backward from a given instruction, when searching for available loaded value Loop Access Analysis Check Comparing group ( ): Against group ( Run-time memory checks: Grouped accesses: Group (Low: High: Member: -> not Memory dependences are safe with run-time checks Memory dependences are safe Report: Dependences: Store to invariant address was found in loop. SCEV assumptions: Expressions re-written: Too many dependences, not recorded loop-accesses loop is not the innermost loop loop control flow is not understood by analyzer could not determine number of loop iterations induction bound0 bound1 conflict.rdx memcheck.conflict found.conflict write with atomic ordering or volatile write cannot identify array bounds cannot check memory dependencies at runtime unsafe dependent memory operations in loop read with atomic ordering or volatile read instruction cannot be vectorized Sets the SIMD width. Zero is autoselect. force-vector-width Sets the vectorization interleave count. Zero is autoselect. force-vector-interleave runtime-memory-check-threshold When performing memory disambiguation checks at runtime do not generate more than this number of comparisons (default = 8). memory-check-merge-threshold Maximum number of comparisons done when trying to merge runtime memory checks. (default = 100) max-dependences Maximum number of dependences collected by loop-access analysis (default = 100) NoDep Forward ForwardButPreventsForwarding Backward BackwardVectorizable BackwardVectorizableButPreventsForwarding Printing <null> block Natural Loop Information Loop at depth containing: <header> <latch> <exiting> verify-loop-info Verify loop info (time consuming) Loop Pass Manager Loop Pass Manager <deleted> in block from: Print MemDeps of function print-memdeps Clobber Def NonFuncLocal The following are dereferenceable: (aligned) (unaligned) Memory Dereferenciblity of pointers in function print-memderefs Y " # $ % ! ^ / 5 Memory Dependence Analysis memdep-block-scan-limit The number of instructions to scan in a block in memory dependency analysis (default = 100) memdep-block-number-limit The number of blocks to scan during memory dependency analysis (default = 1000) Compile unit: unknown-language( Subprogram: (' Global variable: unknown-encoding( unknown-tag( (identifier: ' Decodes module-level debug info module-debuginfo Module Summary Analysis module-summary-analysis ObjC-ARC-Based Alias Analysis objc-arc-aa enable-objc-arc-opts enable/disable all ARC Optimizations ARCInstKind::Retain ARCInstKind::RetainRV ARCInstKind::ClaimRV ARCInstKind::RetainBlock ARCInstKind::Release ARCInstKind::Autorelease ARCInstKind::AutoreleaseRV ARCInstKind::AutoreleasepoolPush ARCInstKind::AutoreleasepoolPop ARCInstKind::NoopCast ARCInstKind::FusedRetainAutorelease ARCInstKind::FusedRetainAutoreleaseRV ARCInstKind::LoadWeakRetained ARCInstKind::StoreWeak ARCInstKind::InitWeak ARCInstKind::LoadWeak ARCInstKind::MoveWeak ARCInstKind::CopyWeak ARCInstKind::DestroyWeak ARCInstKind::StoreStrong ARCInstKind::CallOrUser ARCInstKind::Call ARCInstKind::User ARCInstKind::IntrinsicUser ARCInstKind::None objc_retainedObject objc_unretainedObject objc_unretainedPointer llvm.arc.annotation.topdown.bbstart llvm.arc.annotation.topdown.bbend llvm.arc.annotation.bottomup.bbstart llvm.arc.annotation.bottomup.bbend objc_retain_autorelease Instruction in PHITransAddr is not phi-translatable: PHITransAddr contains extra instructions: InstInput # .phi.trans.insert Post-Dominator Tree Construction postdomtree PostDominatorTree for function: =============================-------------------------------- Inorder PostDominator Tree: Inorder Dominator Tree: DFSNumbers invalid: slow queries. <Function Return> => Detect single entry single exit regions } Region tree: End region tree Region Tree for function: verify-region-info Verify region info (time consuming) style of printing regions print no details print regions in detail with element_iterator print regions in detail with block_iterator print-region-style Region Pass Manager Region Pass Manager Printing <null> Block Print regions of function to 'dot' file dot-regions Print regions of function to 'dot' file (with no function bodies) dot-regions-only View regions of function view-regions View regions of function (with no function bodies) view-regions-only regonly subgraph cluster_ label = ""; style = filled; color = style = solid; Not implemented constraint=false Region Graph colorscheme = "paired12" only-simple-regions Show only simple regions in the graphviz viewer * umax smax (trunc (zext (sext }< ,+, nuw>< nsw>< <nuw> <nsw> /u alignof( offsetof( ***COULDNOTCOMPUTE*** nw>< Equal predicate: == Added Flags: <nusw> <nssw> Scalar Evolution Analysis <nw> SCEVValidator: SCEV for loop ' ' changed from ' [PSE] --> Loop <multiple exits> Unpredictable backedge-taken count. Loop max backedge-taken count is Unpredictable max backedge-taken count. Predicated backedge-taken count is Predicates: Unpredictable predicated backedge-taken count. Classifying expressions for: --> U: S: Exits: <<Unknown>> Determining loop execution counts for: scalar-evolution-max-iterations Maximum number of iterations SCEV will symbolically execute a constant derived loop scalar-evolution-associative-max-expansions Maximum number that an operand of an associative operation can be expanded inside the parent operation SCEV node verify-scev Verify ScalarEvolution's backedge taken counts (slow) verify-scev-maps Verify no dangling value in ScalarEvolution's ExprValueMap (slow) ScalarEvolution-based Alias Analysis scev-aa ident.check mul.result mul.overflow scevgep .iv.next smax indvar indvar.next Target Library Information fwrite$UNIX2003 fputs$UNIX2003 _copysign No vector functions library Accelerate framework Accelerate vector-library Vector functions library vceilf vfabsf llvm.fabs.f32 vfloorf vsqrtf llvm.sqrt.f32 vexpf llvm.exp.f32 vexpm1f vlogf llvm.log.f32 vlog1pf vlog10f llvm.log10.f32 vlogbf vsinf llvm.sin.f32 vcosf llvm.cos.f32 vtanf vasinf vacosf vatanf vsinhf vcoshf vtanhf vasinhf vacoshf vatanhf ??2@YAPAXI@Z ??2@YAPAXIABUnothrow_t@std@@@Z ??2@YAPEAX_K@Z ??2@YAPEAX_KAEBUnothrow_t@std@@@Z ??3@YAXPAX@Z ??3@YAXPAXABUnothrow_t@std@@@Z ??3@YAXPAXI@Z ??3@YAXPEAX@Z ??3@YAXPEAXAEBUnothrow_t@std@@@Z ??3@YAXPEAX_K@Z ??_U@YAPAXI@Z ??_U@YAPAXIABUnothrow_t@std@@@Z ??_U@YAPEAX_K@Z ??_U@YAPEAX_KAEBUnothrow_t@std@@@Z ??_V@YAXPAX@Z ??_V@YAXPAXABUnothrow_t@std@@@Z ??_V@YAXPAXI@Z ??_V@YAXPEAX@Z ??_V@YAXPEAXAEBUnothrow_t@std@@@Z ??_V@YAXPEAX_K@Z _IO_getc _IO_putc _ZdaPv _ZdaPvRKSt9nothrow_t _ZdaPvj _ZdaPvm _ZdlPv _ZdlPvRKSt9nothrow_t _ZdlPvj _ZdlPvm _Znaj _ZnajRKSt9nothrow_t _Znam _ZnamRKSt9nothrow_t _Znwj _ZnwjRKSt9nothrow_t _Znwm _ZnwmRKSt9nothrow_t __isoc99_scanf __isoc99_sscanf __memmove_chk __memset_chk __nvvm_reflect __sqrt_finite __sqrtf_finite __sqrtl_finite __stpcpy_chk __stpncpy_chk __strcpy_chk __strdup __strncpy_chk __strndup __strtok_r atof atoi atol atoll bcmp bcopy chmod chown clearerr closedir ctermid exp10f exp10l fclose fdopen feof ferror fflush ffsl ffsll fgetc fgetpos fgets fileno flockfile fls flsl flsll fopen fopen64 fread free fseek fseeko fseeko64 fsetpos fstat fstat64 fstatvfs fstatvfs64 ftell ftello ftello64 ftrylockfile funlockfile fwrite getc_unlocked getchar getenv getitimer getlogin_r getpwnam gettimeofday htonl htons lchown lstat lstat64 memalign memccpy memrchr mkdir mktime ntohl ntohs open64 opendir pclose perror popen posix_memalign pread pwrite qsort readlink reallocf realpath rename rewind rmdir setbuf setitimer setvbuf stat stat64 statvfs statvfs64 strcoll strnlen strtod strtof strtok_r strtol strtold strtoll strtoul strtoull times tmpfile tmpfile64 toascii uname ungetc unlink unsetenv utime utimes valloc Target Transform Information tti Cycle found in TBAA metadata. Type-Based Alias Analysis enable-tbaa Scoped NoAlias Alias Analysis scoped-noalias enable-scoped-noalias dom-conditions-max-uses <-> %) : ===== Alias Analysis Evaluator Report ===== Alias Analysis Evaluator Summary: No pointers! Total Alias Queries Performed no alias responses may alias responses partial alias responses must alias responses Alias Analysis Evaluator Pointer Alias Summary: %/ % Alias Analysis Mod/Ref Evaluator Summary: no mod/ref! Total ModRef Queries Performed no mod/ref responses mod responses ref responses mod & ref responses Alias Analysis Evaluator Mod/Ref Summary: Exhaustive Alias Analysis Precision Evaluator aa-eval pointers, call sites PartialAlias NoModRef : Ptr: <-> Just Mod Just Ref Both ModRef MustAlias print-all-alias-modref-info print-no-aliases print-may-aliases print-partial-aliases print-must-aliases print-no-modref print-mod print-ref print-modref evaluate-aa-metadata ------------------------------------------------------------- Interval Contents: Interval Predecessors: Interval Successors: llvm.object No object file for requested architecture The file was not recognized as a valid object file Invalid data was encountered while parsing the file The end of the file was unexpectedly encountered String table must end with a null terminator Invalid section index Bitcode section not found in object file Mach-O load command with size < 8 bytes Mach-O segment load command contains too many sections Mach-O segment load command size is too small Error in .llvmbc PE COFF-i386 COFF-x86-64 COFF-ARM COFF-ARM64 COFF-<unknown arch> Sections with relocations should have an address of 0 IMAGE_REL_AMD64_ADDR64 IMAGE_REL_ARM_ADDR32 IMAGE_REL_I386_DIR16 IMAGE_REL_AMD64_ABSOLUTE IMAGE_REL_AMD64_SSPAN32 IMAGE_REL_AMD64_PAIR IMAGE_REL_AMD64_SREL32 IMAGE_REL_AMD64_TOKEN IMAGE_REL_AMD64_SECREL7 IMAGE_REL_AMD64_SECREL IMAGE_REL_AMD64_SECTION IMAGE_REL_AMD64_REL32_5 IMAGE_REL_AMD64_REL32_4 IMAGE_REL_AMD64_REL32_3 IMAGE_REL_AMD64_REL32_2 IMAGE_REL_AMD64_REL32_1 IMAGE_REL_AMD64_REL32 IMAGE_REL_AMD64_ADDR32NB IMAGE_REL_AMD64_ADDR32 IMAGE_REL_ARM_ABSOLUTE IMAGE_REL_ARM_BLX23T IMAGE_REL_ARM_BRANCH24T IMAGE_REL_ARM_BRANCH20T IMAGE_REL_ARM_MOV32T IMAGE_REL_ARM_MOV32A IMAGE_REL_ARM_SECREL IMAGE_REL_ARM_SECTION IMAGE_REL_ARM_BLX11 IMAGE_REL_ARM_BLX24 IMAGE_REL_ARM_TOKEN IMAGE_REL_ARM_BRANCH11 IMAGE_REL_ARM_BRANCH24 IMAGE_REL_ARM_ADDR32NB IMAGE_REL_I386_ABSOLUTE IMAGE_REL_I386_REL32 IMAGE_REL_I386_SECREL7 IMAGE_REL_I386_TOKEN IMAGE_REL_I386_SECREL IMAGE_REL_I386_SECTION IMAGE_REL_I386_SEG12 IMAGE_REL_I386_DIR32NB IMAGE_REL_I386_DIR32 IMAGE_REL_I386_REL16 K j Invalid ELFCLASS! ELF32-i386 ELF32-iamcu ELF32-x86-64 ELF32-arm-big ELF32-avr ELF32-hexagon ELF32-lanai ELF32-mips ELF32-ppc ELF32-sparc ELF32-wasm ELF32-amdgpu ELF32-unknown ELF64-i386 ELF64-x86-64 ELF64-aarch64-big ELF64-ppc64 ELF64-s390 ELF64-sparc ELF64-mips ELF64-wasm ELF64-amdgpu ELF64-unknown ELF64-amdgpu-hsacobj ELF32-arm-little ELF64-aarch64-little Invalid section header entry size (e_shentsize) in ELF header Invalid symbol size $d $t $a Structure read out-of-range Malformed MachO file. Versions/ .dylib .qtx i386-apple-darwin x86_64-apple-darwin x86_64h-apple-darwin armv4t-apple-darwin armv5e-apple-darwin xscale-apple-darwin armv6-apple-darwin cortex-m0 armv6m-apple-darwin armv7-apple-darwin cortex-m4 thumbv7em-apple-darwin armv7k-apple-darwin cortex-m3 thumbv7m-apple-darwin armv7s-apple-darwin arm64-apple-darwin ppc-apple-darwin ppc64-apple-darwin armv4t armv5e armv6 armv6m armv7 armv7em armv7k armv7m armv7s text abs32 text rel32 __LLVM __bitcode Mach-O 32-bit i386 Mach-O arm Mach-O 32-bit ppc Mach-O 32-bit unknown Mach-O 64-bit x86-64 Mach-O arm64 Mach-O 64-bit ppc64 Mach-O 64-bit unknown getSymbolIndex() called with no symbol table symbol truncated or malformed object (bad string index: for symbol at index Requested symbol index is out of range. truncated or malformed object (the mach header extends past the end of the file) truncated or malformed object (load commands extend past the end of the file) truncated or malformed object (load command 0 extends past the end all load commands in the file) Multiple symbol tables Multiple dynamic symbol tables Multiple data-in-code tables Multiple linker optimization hint tables Multiple dyldinfo load commands Multiple UUID load commands __PAGEZERO truncated or malformed object (contains LC_DYSYMTAB load command without a LC_SYMTAB load command) truncated or malformed object (iolocalsym in LC_DYSYMTAB load command extends past the end of the symbol table) truncated or malformed object (ilocalsym plus nlocalsym in LC_DYSYMTAB load command extends past the end of the symbol table) truncated or malformed object (nextdefsym in LC_DYSYMTAB load command extends past the end of the symbol table) truncated or malformed object (iextdefsym plus nextdefsym in LC_DYSYMTAB load command extends past the end of the symbol table) truncated or malformed object (nundefsym in LC_DYSYMTAB load command extends past the end of the symbol table) truncated or malformed object (iundefsym plus nundefsym in LC_DYSYMTAB load command extends past the end of the symbol table Unrecognized MachO magic number PPC_RELOC_VANILLA PPC_RELOC_PAIR PPC_RELOC_BR14 PPC_RELOC_BR24 PPC_RELOC_HI16 PPC_RELOC_LO16 PPC_RELOC_HA16 PPC_RELOC_LO14 PPC_RELOC_SECTDIFF PPC_RELOC_PB_LA_PTR PPC_RELOC_HI16_SECTDIFF PPC_RELOC_LO16_SECTDIFF PPC_RELOC_HA16_SECTDIFF PPC_RELOC_JBSR PPC_RELOC_LO14_SECTDIFF PPC_RELOC_LOCAL_SECTDIFF ARM64_RELOC_UNSIGNED ARM64_RELOC_SUBTRACTOR ARM64_RELOC_BRANCH26 ARM64_RELOC_PAGE21 ARM64_RELOC_PAGEOFF12 ARM64_RELOC_GOT_LOAD_PAGE21 ARM64_RELOC_GOT_LOAD_PAGEOFF12 ARM64_RELOC_POINTER_TO_GOT ARM64_RELOC_TLVP_LOAD_PAGE21 ARM64_RELOC_TLVP_LOAD_PAGEOFF12 ARM64_RELOC_ADDEND ARM_RELOC_VANILLA ARM_RELOC_PAIR ARM_RELOC_SECTDIFF ARM_RELOC_LOCAL_SECTDIFF ARM_RELOC_PB_LA_PTR ARM_RELOC_BR24 ARM_THUMB_RELOC_BR22 ARM_THUMB_32BIT_BRANCH ARM_RELOC_HALF ARM_RELOC_HALF_SECTDIFF X86_64_RELOC_UNSIGNED X86_64_RELOC_SIGNED X86_64_RELOC_BRANCH X86_64_RELOC_GOT_LOAD X86_64_RELOC_GOT X86_64_RELOC_SUBTRACTOR X86_64_RELOC_SIGNED_1 X86_64_RELOC_SIGNED_2 X86_64_RELOC_SIGNED_4 X86_64_RELOC_TLV GENERIC_RELOC_VANILLA GENERIC_RELOC_PAIR GENERIC_RELOC_SECTDIFF GENERIC_RELOC_PB_LA_PTR GENERIC_RELOC_LOCAL_SECTDIFF GENERIC_RELOC_TLV R_X86_64_NONE R_X86_64_64 R_X86_64_PC32 R_X86_64_GOT32 R_X86_64_PLT32 R_X86_64_COPY R_X86_64_GLOB_DAT R_X86_64_JUMP_SLOT R_X86_64_RELATIVE R_X86_64_GOTPCREL R_X86_64_32 R_X86_64_32S R_X86_64_16 R_X86_64_PC16 R_X86_64_8 R_X86_64_PC8 R_X86_64_DTPMOD64 R_X86_64_DTPOFF64 R_X86_64_TPOFF64 R_X86_64_TLSGD R_X86_64_TLSLD R_X86_64_DTPOFF32 R_X86_64_GOTTPOFF R_X86_64_TPOFF32 R_X86_64_PC64 R_X86_64_GOTOFF64 R_X86_64_GOTPC32 R_X86_64_GOT64 R_X86_64_GOTPCREL64 R_X86_64_GOTPC64 R_X86_64_GOTPLT64 R_X86_64_PLTOFF64 R_X86_64_SIZE32 R_X86_64_SIZE64 R_X86_64_GOTPC32_TLSDESC R_X86_64_TLSDESC_CALL R_X86_64_TLSDESC R_X86_64_IRELATIVE R_X86_64_GOTPCRELX R_X86_64_REX_GOTPCRELX R_386_NONE R_386_32 R_386_PC32 R_386_GOT32 R_386_PLT32 R_386_COPY R_386_GLOB_DAT R_386_JUMP_SLOT R_386_RELATIVE R_386_GOTOFF R_386_GOTPC R_386_32PLT R_386_TLS_TPOFF R_386_TLS_IE R_386_TLS_GOTIE R_386_TLS_LE R_386_TLS_GD R_386_TLS_LDM R_386_16 R_386_PC16 R_386_8 R_386_PC8 R_386_TLS_GD_32 R_386_TLS_GD_PUSH R_386_TLS_GD_CALL R_386_TLS_GD_POP R_386_TLS_LDM_32 R_386_TLS_LDM_PUSH R_386_TLS_LDM_CALL R_386_TLS_LDM_POP R_386_TLS_LDO_32 R_386_TLS_IE_32 R_386_TLS_LE_32 R_386_TLS_DTPMOD32 R_386_TLS_DTPOFF32 R_386_TLS_TPOFF32 R_386_TLS_GOTDESC R_386_TLS_DESC_CALL R_386_TLS_DESC R_386_IRELATIVE R_386_GOT32X R_MIPS_NONE R_MIPS_16 R_MIPS_32 R_MIPS_REL32 R_MIPS_26 R_MIPS_HI16 R_MIPS_LO16 R_MIPS_GPREL16 R_MIPS_LITERAL R_MIPS_GOT16 R_MIPS_PC16 R_MIPS_CALL16 R_MIPS_GPREL32 R_MIPS_UNUSED1 R_MIPS_UNUSED2 R_MIPS_UNUSED3 R_MIPS_SHIFT5 R_MIPS_SHIFT6 R_MIPS_64 R_MIPS_GOT_DISP R_MIPS_GOT_PAGE R_MIPS_GOT_OFST R_MIPS_GOT_HI16 R_MIPS_GOT_LO16 R_MIPS_SUB R_MIPS_INSERT_A R_MIPS_INSERT_B R_MIPS_DELETE R_MIPS_HIGHER R_MIPS_HIGHEST R_MIPS_CALL_HI16 R_MIPS_CALL_LO16 R_MIPS_SCN_DISP R_MIPS_REL16 R_MIPS_ADD_IMMEDIATE R_MIPS_PJUMP R_MIPS_RELGOT R_MIPS_JALR R_MIPS_TLS_DTPMOD32 R_MIPS_TLS_DTPREL32 R_MIPS_TLS_DTPMOD64 R_MIPS_TLS_DTPREL64 R_MIPS_TLS_GD R_MIPS_TLS_LDM R_MIPS_TLS_DTPREL_HI16 R_MIPS_TLS_DTPREL_LO16 R_MIPS_TLS_GOTTPREL R_MIPS_TLS_TPREL32 R_MIPS_TLS_TPREL64 R_MIPS_TLS_TPREL_HI16 R_MIPS_TLS_TPREL_LO16 R_MIPS_GLOB_DAT R_MIPS_PC21_S2 R_MIPS_PC26_S2 R_MIPS_PC18_S3 R_MIPS_PC19_S2 R_MIPS_PCHI16 R_MIPS_PCLO16 R_MIPS16_26 R_MIPS16_GPREL R_MIPS16_GOT16 R_MIPS16_CALL16 R_MIPS16_HI16 R_MIPS16_LO16 R_MIPS16_TLS_GD R_MIPS16_TLS_LDM R_MIPS16_TLS_DTPREL_HI16 R_MIPS16_TLS_DTPREL_LO16 R_MIPS16_TLS_GOTTPREL R_MIPS16_TLS_TPREL_HI16 R_MIPS16_TLS_TPREL_LO16 R_MIPS_COPY R_MIPS_JUMP_SLOT R_MICROMIPS_26_S1 R_MICROMIPS_HI16 R_MICROMIPS_LO16 R_MICROMIPS_GPREL16 R_MICROMIPS_LITERAL R_MICROMIPS_GOT16 R_MICROMIPS_PC7_S1 R_MICROMIPS_PC10_S1 R_MICROMIPS_PC16_S1 R_MICROMIPS_CALL16 R_MICROMIPS_GOT_DISP R_MICROMIPS_GOT_PAGE R_MICROMIPS_GOT_OFST R_MICROMIPS_GOT_HI16 R_MICROMIPS_GOT_LO16 R_MICROMIPS_SUB R_MICROMIPS_HIGHER R_MICROMIPS_HIGHEST R_MICROMIPS_CALL_HI16 R_MICROMIPS_CALL_LO16 R_MICROMIPS_SCN_DISP R_MICROMIPS_JALR R_MICROMIPS_HI0_LO16 R_MICROMIPS_TLS_GD R_MICROMIPS_TLS_LDM R_MICROMIPS_TLS_DTPREL_HI16 R_MICROMIPS_TLS_DTPREL_LO16 R_MICROMIPS_TLS_GOTTPREL R_MICROMIPS_TLS_TPREL_HI16 R_MICROMIPS_TLS_TPREL_LO16 R_MICROMIPS_GPREL7_S2 R_MICROMIPS_PC23_S2 R_MICROMIPS_PC21_S2 R_MICROMIPS_PC26_S1 R_MICROMIPS_PC18_S3 R_MICROMIPS_PC19_S2 R_MIPS_NUM R_MIPS_PC32 R_MIPS_EH R_AARCH64_NONE R_AARCH64_ABS64 R_AARCH64_ABS32 R_AARCH64_ABS16 R_AARCH64_PREL64 R_AARCH64_PREL32 R_AARCH64_PREL16 R_AARCH64_MOVW_UABS_G0 R_AARCH64_MOVW_UABS_G0_NC R_AARCH64_MOVW_UABS_G1 R_AARCH64_MOVW_UABS_G1_NC R_AARCH64_MOVW_UABS_G2 R_AARCH64_MOVW_UABS_G2_NC R_AARCH64_MOVW_UABS_G3 R_AARCH64_MOVW_SABS_G0 R_AARCH64_MOVW_SABS_G1 R_AARCH64_MOVW_SABS_G2 R_AARCH64_LD_PREL_LO19 R_AARCH64_ADR_PREL_LO21 R_AARCH64_ADR_PREL_PG_HI21 R_AARCH64_ADR_PREL_PG_HI21_NC R_AARCH64_ADD_ABS_LO12_NC R_AARCH64_LDST8_ABS_LO12_NC R_AARCH64_TSTBR14 R_AARCH64_CONDBR19 R_AARCH64_JUMP26 R_AARCH64_CALL26 R_AARCH64_LDST16_ABS_LO12_NC R_AARCH64_LDST32_ABS_LO12_NC R_AARCH64_LDST64_ABS_LO12_NC R_AARCH64_MOVW_PREL_G0 R_AARCH64_MOVW_PREL_G0_NC R_AARCH64_MOVW_PREL_G1 R_AARCH64_MOVW_PREL_G1_NC R_AARCH64_MOVW_PREL_G2 R_AARCH64_MOVW_PREL_G2_NC R_AARCH64_MOVW_PREL_G3 R_AARCH64_LDST128_ABS_LO12_NC R_AARCH64_MOVW_GOTOFF_G0 R_AARCH64_MOVW_GOTOFF_G0_NC R_AARCH64_MOVW_GOTOFF_G1 R_AARCH64_MOVW_GOTOFF_G1_NC R_AARCH64_MOVW_GOTOFF_G2 R_AARCH64_MOVW_GOTOFF_G2_NC R_AARCH64_MOVW_GOTOFF_G3 R_AARCH64_GOTREL64 R_AARCH64_GOTREL32 R_AARCH64_GOT_LD_PREL19 R_AARCH64_LD64_GOTOFF_LO15 R_AARCH64_ADR_GOT_PAGE R_AARCH64_LD64_GOT_LO12_NC R_AARCH64_LD64_GOTPAGE_LO15 R_AARCH64_TLSGD_ADR_PREL21 R_AARCH64_TLSGD_ADR_PAGE21 R_AARCH64_TLSGD_ADD_LO12_NC R_AARCH64_TLSGD_MOVW_G1 R_AARCH64_TLSGD_MOVW_G0_NC R_AARCH64_TLSLD_ADR_PREL21 R_AARCH64_TLSLD_ADR_PAGE21 R_AARCH64_TLSLD_ADD_LO12_NC R_AARCH64_TLSLD_MOVW_G1 R_AARCH64_TLSLD_MOVW_G0_NC R_AARCH64_TLSLD_LD_PREL19 R_AARCH64_TLSLD_MOVW_DTPREL_G2 R_AARCH64_TLSLD_MOVW_DTPREL_G1 R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC R_AARCH64_TLSLD_MOVW_DTPREL_G0 R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC R_AARCH64_TLSLD_ADD_DTPREL_HI12 R_AARCH64_TLSLD_ADD_DTPREL_LO12 R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC R_AARCH64_TLSLD_LDST8_DTPREL_LO12 R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC R_AARCH64_TLSLD_LDST16_DTPREL_LO12 R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC R_AARCH64_TLSLD_LDST32_DTPREL_LO12 R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC R_AARCH64_TLSLD_LDST64_DTPREL_LO12 R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 R_AARCH64_TLSLE_MOVW_TPREL_G2 R_AARCH64_TLSLE_MOVW_TPREL_G1 R_AARCH64_TLSLE_MOVW_TPREL_G1_NC R_AARCH64_TLSLE_MOVW_TPREL_G0 R_AARCH64_TLSLE_MOVW_TPREL_G0_NC R_AARCH64_TLSLE_ADD_TPREL_HI12 R_AARCH64_TLSLE_ADD_TPREL_LO12 R_AARCH64_TLSLE_ADD_TPREL_LO12_NC R_AARCH64_TLSLE_LDST8_TPREL_LO12 R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC R_AARCH64_TLSLE_LDST16_TPREL_LO12 R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC R_AARCH64_TLSLE_LDST32_TPREL_LO12 R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC R_AARCH64_TLSLE_LDST64_TPREL_LO12 R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC R_AARCH64_TLSDESC_LD_PREL19 R_AARCH64_TLSDESC_ADR_PREL21 R_AARCH64_TLSDESC_ADR_PAGE21 R_AARCH64_TLSDESC_LD64_LO12_NC R_AARCH64_TLSDESC_ADD_LO12_NC R_AARCH64_TLSDESC_OFF_G1 R_AARCH64_TLSDESC_OFF_G0_NC R_AARCH64_TLSDESC_LDR R_AARCH64_TLSDESC_ADD R_AARCH64_TLSDESC_CALL R_AARCH64_TLSLE_LDST128_TPREL_LO12 R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC R_AARCH64_TLSLD_LDST128_DTPREL_LO12 R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC R_AARCH64_COPY R_AARCH64_GLOB_DAT R_AARCH64_JUMP_SLOT R_AARCH64_RELATIVE R_AARCH64_TLS_DTPREL64 R_AARCH64_TLS_DTPMOD64 R_AARCH64_TLS_TPREL64 R_AARCH64_TLSDESC R_AARCH64_IRELATIVE R_ARM_NONE R_ARM_PC24 R_ARM_ABS32 R_ARM_REL32 R_ARM_LDR_PC_G0 R_ARM_ABS16 R_ARM_ABS12 R_ARM_THM_ABS5 R_ARM_ABS8 R_ARM_SBREL32 R_ARM_THM_CALL R_ARM_THM_PC8 R_ARM_BREL_ADJ R_ARM_TLS_DESC R_ARM_THM_SWI8 R_ARM_XPC25 R_ARM_THM_XPC22 R_ARM_TLS_DTPMOD32 R_ARM_TLS_DTPOFF32 R_ARM_TLS_TPOFF32 R_ARM_COPY R_ARM_GLOB_DAT R_ARM_JUMP_SLOT R_ARM_RELATIVE R_ARM_GOTOFF32 R_ARM_BASE_PREL R_ARM_GOT_BREL R_ARM_PLT32 R_ARM_CALL R_ARM_JUMP24 R_ARM_THM_JUMP24 R_ARM_BASE_ABS R_ARM_ALU_PCREL_7_0 R_ARM_ALU_PCREL_15_8 R_ARM_ALU_PCREL_23_15 R_ARM_LDR_SBREL_11_0_NC R_ARM_ALU_SBREL_19_12_NC R_ARM_ALU_SBREL_27_20_CK R_ARM_TARGET1 R_ARM_SBREL31 R_ARM_V4BX R_ARM_TARGET2 R_ARM_PREL31 R_ARM_MOVW_ABS_NC R_ARM_MOVT_ABS R_ARM_MOVW_PREL_NC R_ARM_MOVT_PREL R_ARM_THM_MOVW_ABS_NC R_ARM_THM_MOVT_ABS R_ARM_THM_MOVW_PREL_NC R_ARM_THM_MOVT_PREL R_ARM_THM_JUMP19 R_ARM_THM_JUMP6 R_ARM_THM_ALU_PREL_11_0 R_ARM_THM_PC12 R_ARM_ABS32_NOI R_ARM_REL32_NOI R_ARM_ALU_PC_G0_NC R_ARM_ALU_PC_G0 R_ARM_ALU_PC_G1_NC R_ARM_ALU_PC_G1 R_ARM_ALU_PC_G2 R_ARM_LDR_PC_G1 R_ARM_LDR_PC_G2 R_ARM_LDRS_PC_G0 R_ARM_LDRS_PC_G1 R_ARM_LDRS_PC_G2 R_ARM_LDC_PC_G0 R_ARM_LDC_PC_G1 R_ARM_LDC_PC_G2 R_ARM_ALU_SB_G0_NC R_ARM_ALU_SB_G0 R_ARM_ALU_SB_G1_NC R_ARM_ALU_SB_G1 R_ARM_ALU_SB_G2 R_ARM_LDR_SB_G0 R_ARM_LDR_SB_G1 R_ARM_LDR_SB_G2 R_ARM_LDRS_SB_G0 R_ARM_LDRS_SB_G1 R_ARM_LDRS_SB_G2 R_ARM_LDC_SB_G0 R_ARM_LDC_SB_G1 R_ARM_LDC_SB_G2 R_ARM_MOVW_BREL_NC R_ARM_MOVT_BREL R_ARM_MOVW_BREL R_ARM_THM_MOVW_BREL_NC R_ARM_THM_MOVT_BREL R_ARM_THM_MOVW_BREL R_ARM_TLS_GOTDESC R_ARM_TLS_CALL R_ARM_TLS_DESCSEQ R_ARM_THM_TLS_CALL R_ARM_PLT32_ABS R_ARM_GOT_ABS R_ARM_GOT_PREL R_ARM_GOT_BREL12 R_ARM_GOTOFF12 R_ARM_GOTRELAX R_ARM_GNU_VTENTRY R_ARM_GNU_VTINHERIT R_ARM_THM_JUMP11 R_ARM_THM_JUMP8 R_ARM_TLS_GD32 R_ARM_TLS_LDM32 R_ARM_TLS_LDO32 R_ARM_TLS_IE32 R_ARM_TLS_LE32 R_ARM_TLS_LDO12 R_ARM_TLS_LE12 R_ARM_TLS_IE12GP R_ARM_PRIVATE_0 R_ARM_PRIVATE_1 R_ARM_PRIVATE_2 R_ARM_PRIVATE_3 R_ARM_PRIVATE_4 R_ARM_PRIVATE_5 R_ARM_PRIVATE_6 R_ARM_PRIVATE_7 R_ARM_PRIVATE_8 R_ARM_PRIVATE_9 R_ARM_PRIVATE_10 R_ARM_PRIVATE_11 R_ARM_PRIVATE_12 R_ARM_PRIVATE_13 R_ARM_PRIVATE_14 R_ARM_PRIVATE_15 R_ARM_ME_TOO R_ARM_THM_TLS_DESCSEQ16 R_ARM_THM_TLS_DESCSEQ32 R_ARM_IRELATIVE R_HEX_NONE R_HEX_B22_PCREL R_HEX_B15_PCREL R_HEX_B7_PCREL R_HEX_LO16 R_HEX_HI16 R_HEX_32 R_HEX_16 R_HEX_8 R_HEX_GPREL16_0 R_HEX_GPREL16_1 R_HEX_GPREL16_2 R_HEX_GPREL16_3 R_HEX_HL16 R_HEX_B13_PCREL R_HEX_B9_PCREL R_HEX_B32_PCREL_X R_HEX_32_6_X R_HEX_B22_PCREL_X R_HEX_B15_PCREL_X R_HEX_B13_PCREL_X R_HEX_B9_PCREL_X R_HEX_B7_PCREL_X R_HEX_16_X R_HEX_12_X R_HEX_11_X R_HEX_10_X R_HEX_9_X R_HEX_8_X R_HEX_7_X R_HEX_6_X R_HEX_32_PCREL R_HEX_COPY R_HEX_GLOB_DAT R_HEX_JMP_SLOT R_HEX_RELATIVE R_HEX_PLT_B22_PCREL R_HEX_GOTREL_LO16 R_HEX_GOTREL_HI16 R_HEX_GOTREL_32 R_HEX_GOT_LO16 R_HEX_GOT_HI16 R_HEX_GOT_32 R_HEX_GOT_16 R_HEX_DTPMOD_32 R_HEX_DTPREL_LO16 R_HEX_DTPREL_HI16 R_HEX_DTPREL_32 R_HEX_DTPREL_16 R_HEX_GD_PLT_B22_PCREL R_HEX_GD_GOT_LO16 R_HEX_GD_GOT_HI16 R_HEX_GD_GOT_32 R_HEX_GD_GOT_16 R_HEX_IE_LO16 R_HEX_IE_HI16 R_HEX_IE_32 R_HEX_IE_GOT_LO16 R_HEX_IE_GOT_HI16 R_HEX_IE_GOT_32 R_HEX_IE_GOT_16 R_HEX_TPREL_LO16 R_HEX_TPREL_HI16 R_HEX_TPREL_32 R_HEX_TPREL_16 R_HEX_6_PCREL_X R_HEX_GOTREL_32_6_X R_HEX_GOTREL_16_X R_HEX_GOTREL_11_X R_HEX_GOT_32_6_X R_HEX_GOT_16_X R_HEX_GOT_11_X R_HEX_DTPREL_32_6_X R_HEX_DTPREL_16_X R_HEX_DTPREL_11_X R_HEX_GD_GOT_32_6_X R_HEX_GD_GOT_16_X R_HEX_GD_GOT_11_X R_HEX_IE_32_6_X R_HEX_IE_16_X R_HEX_IE_GOT_32_6_X R_HEX_IE_GOT_16_X R_HEX_IE_GOT_11_X R_HEX_TPREL_32_6_X R_HEX_TPREL_16_X R_HEX_TPREL_11_X R_HEX_LD_PLT_B22_PCREL R_HEX_LD_GOT_LO16 R_HEX_LD_GOT_HI16 R_HEX_LD_GOT_32 R_HEX_LD_GOT_16 R_HEX_LD_GOT_32_6_X R_HEX_LD_GOT_16_X R_HEX_LD_GOT_11_X R_HEX_23_REG R_LANAI_NONE R_LANAI_21 R_LANAI_21_F R_LANAI_25 R_LANAI_32 R_LANAI_HI16 R_LANAI_LO16 R_PPC_NONE R_PPC_ADDR32 R_PPC_ADDR24 R_PPC_ADDR16 R_PPC_ADDR16_LO R_PPC_ADDR16_HI R_PPC_ADDR16_HA R_PPC_ADDR14 R_PPC_ADDR14_BRTAKEN R_PPC_ADDR14_BRNTAKEN R_PPC_REL24 R_PPC_REL14 R_PPC_REL14_BRTAKEN R_PPC_REL14_BRNTAKEN R_PPC_GOT16 R_PPC_GOT16_LO R_PPC_GOT16_HI R_PPC_GOT16_HA R_PPC_PLTREL24 R_PPC_JMP_SLOT R_PPC_LOCAL24PC R_PPC_REL32 R_PPC_TLS R_PPC_DTPMOD32 R_PPC_TPREL16 R_PPC_TPREL16_LO R_PPC_TPREL16_HI R_PPC_TPREL16_HA R_PPC_TPREL32 R_PPC_DTPREL16 R_PPC_DTPREL16_LO R_PPC_DTPREL16_HI R_PPC_DTPREL16_HA R_PPC_DTPREL32 R_PPC_GOT_TLSGD16 R_PPC_GOT_TLSGD16_LO R_PPC_GOT_TLSGD16_HI R_PPC_GOT_TLSGD16_HA R_PPC_GOT_TLSLD16 R_PPC_GOT_TLSLD16_LO R_PPC_GOT_TLSLD16_HI R_PPC_GOT_TLSLD16_HA R_PPC_GOT_TPREL16 R_PPC_GOT_TPREL16_LO R_PPC_GOT_TPREL16_HI R_PPC_GOT_TPREL16_HA R_PPC_GOT_DTPREL16 R_PPC_GOT_DTPREL16_LO R_PPC_GOT_DTPREL16_HI R_PPC_GOT_DTPREL16_HA R_PPC_TLSGD R_PPC_TLSLD R_PPC_REL16 R_PPC_REL16_LO R_PPC_REL16_HI R_PPC_REL16_HA R_PPC64_NONE R_PPC64_ADDR32 R_PPC64_ADDR24 R_PPC64_ADDR16 R_PPC64_ADDR16_LO R_PPC64_ADDR16_HI R_PPC64_ADDR16_HA R_PPC64_ADDR14 R_PPC64_ADDR14_BRTAKEN R_PPC64_ADDR14_BRNTAKEN R_PPC64_REL24 R_PPC64_REL14 R_PPC64_REL14_BRTAKEN R_PPC64_REL14_BRNTAKEN R_PPC64_GOT16 R_PPC64_GOT16_LO R_PPC64_GOT16_HI R_PPC64_GOT16_HA R_PPC64_GLOB_DAT R_PPC64_JMP_SLOT R_PPC64_RELATIVE R_PPC64_REL32 R_PPC64_ADDR64 R_PPC64_ADDR16_HIGHER R_PPC64_ADDR16_HIGHERA R_PPC64_ADDR16_HIGHEST R_PPC64_ADDR16_HIGHESTA R_PPC64_REL64 R_PPC64_TOC16 R_PPC64_TOC16_LO R_PPC64_TOC16_HI R_PPC64_TOC16_HA R_PPC64_TOC R_PPC64_ADDR16_DS R_PPC64_ADDR16_LO_DS R_PPC64_GOT16_DS R_PPC64_GOT16_LO_DS R_PPC64_TOC16_DS R_PPC64_TOC16_LO_DS R_PPC64_TLS R_PPC64_DTPMOD64 R_PPC64_TPREL16 R_PPC64_TPREL16_LO R_PPC64_TPREL16_HI R_PPC64_TPREL16_HA R_PPC64_TPREL64 R_PPC64_DTPREL16 R_PPC64_DTPREL16_LO R_PPC64_DTPREL16_HI R_PPC64_DTPREL16_HA R_PPC64_DTPREL64 R_PPC64_GOT_TLSGD16 R_PPC64_GOT_TLSGD16_LO R_PPC64_GOT_TLSGD16_HI R_PPC64_GOT_TLSGD16_HA R_PPC64_GOT_TLSLD16 R_PPC64_GOT_TLSLD16_LO R_PPC64_GOT_TLSLD16_HI R_PPC64_GOT_TLSLD16_HA R_PPC64_GOT_TPREL16_DS R_PPC64_GOT_TPREL16_LO_DS R_PPC64_GOT_TPREL16_HI R_PPC64_GOT_TPREL16_HA R_PPC64_GOT_DTPREL16_DS R_PPC64_GOT_DTPREL16_LO_DS R_PPC64_GOT_DTPREL16_HI R_PPC64_GOT_DTPREL16_HA R_PPC64_TPREL16_DS R_PPC64_TPREL16_LO_DS R_PPC64_TPREL16_HIGHER R_PPC64_TPREL16_HIGHERA R_PPC64_TPREL16_HIGHEST R_PPC64_TPREL16_HIGHESTA R_PPC64_DTPREL16_DS R_PPC64_DTPREL16_LO_DS R_PPC64_DTPREL16_HIGHER R_PPC64_DTPREL16_HIGHERA R_PPC64_DTPREL16_HIGHEST R_PPC64_DTPREL16_HIGHESTA R_PPC64_TLSGD R_PPC64_TLSLD R_PPC64_REL16 R_PPC64_REL16_LO R_PPC64_REL16_HI R_PPC64_REL16_HA R_390_NONE R_390_8 R_390_12 R_390_16 R_390_32 R_390_PC32 R_390_GOT12 R_390_GOT32 R_390_PLT32 R_390_COPY R_390_GLOB_DAT R_390_JMP_SLOT R_390_RELATIVE R_390_GOTOFF R_390_GOTPC R_390_GOT16 R_390_PC16 R_390_PC16DBL R_390_PLT16DBL R_390_PC32DBL R_390_PLT32DBL R_390_GOTPCDBL R_390_64 R_390_PC64 R_390_GOT64 R_390_PLT64 R_390_GOTENT R_390_GOTOFF16 R_390_GOTOFF64 R_390_GOTPLT12 R_390_GOTPLT16 R_390_GOTPLT32 R_390_GOTPLT64 R_390_GOTPLTENT R_390_PLTOFF16 R_390_PLTOFF32 R_390_PLTOFF64 R_390_TLS_LOAD R_390_TLS_GDCALL R_390_TLS_LDCALL R_390_TLS_GD32 R_390_TLS_GD64 R_390_TLS_GOTIE12 R_390_TLS_GOTIE32 R_390_TLS_GOTIE64 R_390_TLS_LDM32 R_390_TLS_LDM64 R_390_TLS_IE32 R_390_TLS_IE64 R_390_TLS_IEENT R_390_TLS_LE32 R_390_TLS_LE64 R_390_TLS_LDO32 R_390_TLS_LDO64 R_390_TLS_DTPMOD R_390_TLS_DTPOFF R_390_TLS_TPOFF R_390_20 R_390_GOT20 R_390_GOTPLT20 R_390_TLS_GOTIE20 R_390_IRELATIVE R_SPARC_NONE R_SPARC_8 R_SPARC_16 R_SPARC_32 R_SPARC_DISP8 R_SPARC_DISP16 R_SPARC_DISP32 R_SPARC_WDISP30 R_SPARC_WDISP22 R_SPARC_HI22 R_SPARC_22 R_SPARC_13 R_SPARC_LO10 R_SPARC_GOT10 R_SPARC_GOT13 R_SPARC_GOT22 R_SPARC_PC10 R_SPARC_PC22 R_SPARC_WPLT30 R_SPARC_COPY R_SPARC_GLOB_DAT R_SPARC_JMP_SLOT R_SPARC_RELATIVE R_SPARC_UA32 R_SPARC_PLT32 R_SPARC_HIPLT22 R_SPARC_LOPLT10 R_SPARC_PCPLT32 R_SPARC_PCPLT22 R_SPARC_PCPLT10 R_SPARC_10 R_SPARC_11 R_SPARC_64 R_SPARC_OLO10 R_SPARC_HH22 R_SPARC_HM10 R_SPARC_LM22 R_SPARC_PC_HH22 R_SPARC_PC_HM10 R_SPARC_PC_LM22 R_SPARC_WDISP16 R_SPARC_WDISP19 R_SPARC_7 R_SPARC_5 R_SPARC_6 R_SPARC_DISP64 R_SPARC_PLT64 R_SPARC_HIX22 R_SPARC_LOX10 R_SPARC_H44 R_SPARC_M44 R_SPARC_L44 R_SPARC_REGISTER R_SPARC_UA64 R_SPARC_UA16 R_SPARC_TLS_GD_HI22 R_SPARC_TLS_GD_LO10 R_SPARC_TLS_GD_ADD R_SPARC_TLS_GD_CALL R_SPARC_TLS_LDM_HI22 R_SPARC_TLS_LDM_LO10 R_SPARC_TLS_LDM_ADD R_SPARC_TLS_LDM_CALL R_SPARC_TLS_LDO_HIX22 R_SPARC_TLS_LDO_LOX10 R_SPARC_TLS_LDO_ADD R_SPARC_TLS_IE_HI22 R_SPARC_TLS_IE_LO10 R_SPARC_TLS_IE_LD R_SPARC_TLS_IE_LDX R_SPARC_TLS_IE_ADD R_SPARC_TLS_LE_HIX22 R_SPARC_TLS_LE_LOX10 R_SPARC_TLS_DTPMOD32 R_SPARC_TLS_DTPMOD64 R_SPARC_TLS_DTPOFF32 R_SPARC_TLS_DTPOFF64 R_SPARC_TLS_TPOFF32 R_SPARC_TLS_TPOFF64 R_SPARC_GOTDATA_HIX22 R_SPARC_GOTDATA_LOX10 R_SPARC_GOTDATA_OP_HIX22 R_SPARC_GOTDATA_OP_LOX10 R_SPARC_GOTDATA_OP R_WEBASSEMBLY_NONE R_WEBASSEMBLY_DATA R_WEBASSEMBLY_FUNCTION expected section directive before assembly directive while in macro instantiation unexpected token in '.cfi_signal_frame' unexpected backslash at end of string invalid octal escape sequence (out of range) invalid escape sequence (unrecognized character) .set .equ .equiv .ascii .asciz .string .byte .short .2byte .long .4byte .quad .8byte .octa .single .float .double .align .align32 .balign .balignw .balignl .p2align .p2alignw .p2alignl .org .fill .extern .globl .lazy_reference .no_dead_strip .symbol_resolver .private_extern .reference .weak_definition .weak_reference .weak_def_can_be_hidden .comm .common .lcomm .abort .include .incbin .code16 .code16gcc .rept .rep .irp .irpc .endr .bundle_align_mode .bundle_lock .bundle_unlock .if .ifeq .ifge .ifgt .ifle .iflt .ifne .ifb .ifnb .ifc .ifeqs .ifnc .ifnes .ifdef .ifndef .ifnotdef .else .endif .skip .file .line .stabs .cv_file .cv_loc .cv_linetable .cv_inline_linetable .cv_def_range .cv_stringtable .cv_filechecksums .sleb128 .uleb128 .cfi_sections .cfi_startproc .cfi_endproc .cfi_def_cfa .cfi_def_cfa_offset .cfi_adjust_cfa_offset .cfi_def_cfa_register .cfi_offset .cfi_rel_offset .cfi_personality .cfi_lsda .cfi_remember_state .cfi_restore_state .cfi_same_value .cfi_restore .cfi_escape .cfi_signal_frame .cfi_undefined .cfi_register .cfi_window_save .macros_on .macros_off .macro .exitm .endm .endmacro .purgem .error .warning .reloc Wrong number of arguments invalid variant on expression ' ' (already modified) simple unexpected token in .cfi_startproc directive expected string in ' unexpected token in ' literal value out of range for directive unexpected token in directive unknown token in expression infinity invalid floating point literal expected identifier in directive non-local symbol required in directive unable to emit symbol attribute unexpected token in '.abort' directive .abort detected. Assembly stopping. .abort ' ' detected. Assembly stopping. expected string in '.include' directive unexpected token in '.include' directive Could not find include file ' expected string in '.incbin' directive unexpected token in '.incbin' directive Could not find incbin file ' unmatched '.endr' directive invalid option for '.bundle_lock' directive align_to_end unexpected token after '.bundle_lock' directive option file number less than one unexpected token in '.file' directive explicit path specified, but no file number input can't have .file dwarf directives when -g is used to generate dwarf debug info for assembly code file number already allocated expected file number in '.cv_file' directive unexpected token in '.cv_file' directive function id less than zero in '.cv_linetable' directive unexpected token in '.cv_linetable' directive function id less than zero in '.cv_inline_linetable' directive File id less than zero in '.cv_inline_linetable' directive Line number less than zero in '.cv_inline_linetable' directive contains unexpected identifier in '.cv_inline_linetable' directive Expected an identifier .eh_frame .debug_frame no matching '.endr' in definition unexpected token in '.endr' directive missing expression unexpected token in assignment Recursive use of ' invalid assignment to ' invalid reassignment of non-absolute variable ' redefinition of ' expected identifier after ' invalid token in expression expected symbol variant after '@' unexpected token in variant, expected ')' unexpected modifier on variable reference invalid variant ' directional label undefined expected ')' in parentheses expression brackets expression not supported on this target unexpected symbol modifier following '@' invalid modifier ' ' (no symbols present) expected ']' in brackets expression unexpected token in '.cv_loc' directive function id less than zero in '.cv_loc' directive file number less than one in '.cv_loc' directive unassigned file number in '.cv_loc' directive line number less than zero in '.cv_loc' directive column position less than zero in '.cv_loc' directive prologue_end is_stmt is_stmt value not 0 or 1 unknown sub-directive in '.cv_loc' directive expected absolute expression invalid alignment value alignment directive can never be satisfied in this many bytes, ignoring maximum bytes expression maximum bytes expression exceeds alignment and has no effect '.fill' directive with negative repeat count has no effect unexpected token in '.fill' directive '.fill' directive with negative size has no effect '.fill' directive with size greater than 8 has been truncated to 8 '.fill' directive pattern has been truncated to 32-bits unexpected token in '.zero' directive alignment not supported on this target unexpected token in '.comm' or '.lcomm' directive invalid '.comm' or '.lcomm' directive size, can't be less than zero invalid '.comm' or '.lcomm' directive alignment, can't be less than zero invalid symbol redefinition unexpected token after expression in '.bundle_align_mode' directive invalid bundle alignment size (expected between 0 and 30) invalid number of bytes in ' unsupported encoding. unexpected token in '.org' directive unexpected token in '.loc' directive file number less than one in '.loc' directive unassigned file number in '.loc' directive line number less than zero in '.loc' directive column position less than zero in '.loc' directive basic_block epilogue_begin isa number less than zero is_stmt value not the constant value of 0 or 1 isa number not a constant value unknown sub-directive in '.loc' directive unbalanced parentheses in macro argument unexpected token in macro instantiation expected identifier in '.macro' directive missing parameter qualifier for ' ' in macro ' req vararg pointless default value for required parameter ' no matching '.endmacro' in definition macro ' ' is already defined macro defined with named parameters which are not used in macro body, possible positional parameter found in body which will have no effect Vararg parameter ' ' should be last one in the list of parameters. is not a valid parameter qualifier for ' expected comma after first string for '.ifeqs' directive expected comma after first string for '.ifnes' directive expected string parameter for '.ifeqs' directive expected string parameter for '.ifnes' directive unexpected token in '.ifc' directive unexpected token in '.ifb' directive expected identifier after '.ifdef' .endr <instantiation> Count is negative invalid argument identifier for formal argument expected '=' after formal parameter identifier parameter named ' ' does not exist for macro ' missing value for required parameter ' too many positional arguments cannot mix positional and keyword arguments expected identifier in '.irpc' directive expected comma in '.irpc' directive unexpected token in '.irpc' directive expected identifier in '.irp' directive expected comma in '.irp' directive macros cannot be nested more than 20 levels deep .endmacro unexpected token at start of statement unexpected token in '.if' directive Encountered a .elseif that doesn't follow a .if or an .elseif unexpected token in '.elseif' directive unexpected token in '.else' directive Encountered a .else that doesn't follow a .if or an .elseif unexpected token in '.endif' directive unexpected token in '.bundle_unlock' directive unexpected token in '.line' directive unsupported directive '.stabs' unexpected ' ' in file, no current macro definition expected identifier in '.purgem' directive unexpected token in '.purgem' directive ' is not defined unexpected token in '.end' directive .err encountered .error directive invoked in source file .error argument must be a string .warning directive invoked in source file .warning argument must be a string expression is not a constant value expression is negative expected comma expected relocation name expression must be relocatable unexpected token in .reloc directive unknown relocation name unknown directive _emit _EMIT __EMIT ALIGN parsed instruction: [ Encountered a .endif that doesn't follow a .if or .else invalid use of pseudo-symbol '.' as a label unexpected expression in _emit unexpected expression in align literal value not a power of two greater then zero unmatched .ifs or .elses assembler local symbol ' ' not defined unassigned file number: for .file directives byte ptr word ptr dword ptr qword ptr xword ptr xmmword ptr ymmword ptr .even a handler attribute must begin with '@' expected @unwind or @except size is not a multiple of 8 you must specify one or both of @unwind or @except expected @code .weak register can't be represented in SEH unwind info register number is too high you must specify an offset on the stack one_only same_size same_contents associative newest unrecognized COMDAT type ' expected string in directive conflicting section flags 'b' and 'd'. unknown flag expected comdat type such as 'discard' or 'largest' after protection bits expected comma in directive unexpected token in section switching directive cannot make section associative with .linkonce section ' ' is already linkonce .bss .data offset is not a multiple of 16 you must specify a stack pointer offset .def .scl .type .endef .secrel32 .secidx .safeseh .linkonce .seh_proc .seh_endproc .seh_startchained .seh_endchained .seh_handler .seh_handlerdata .seh_pushreg .seh_setframe .seh_stackalloc .seh_savereg .seh_savexmm .seh_pushframe .seh_endprologue .dump expected string in '.dump' or '.load' directive unexpected token in '.dump' or '.load' directive ignoring directive .dump for now ignoring directive .load for now unexpected token in '.desc' directive unexpected token in '.lsym' directive directive '.lsym' is unsupported unexpected token in '.subsections_via_symbols' directive unexpected token in '.secure_log_reset' directive __message_refs __OBJC indirect symbol not in a symbol pointer or stub section expected identifier in .indirect_symbol directive unable to emit indirect symbol attribute for: unexpected token in '.indirect_symbol' directive .previous without corresponding .section expected segment name after '.zerofill' directive expected section name after comma in '.zerofill' directive unexpected token in '.zerofill' directive invalid '.zerofill' directive size, can't be less than zero invalid '.zerofill' directive alignment, can't be less than zero unexpected token in '.end_data_region' directive expected region type after '.data_region' directive jt8 jt16 unknown region type in '.data_region' directive jt32 .alt_entry must preceed symbol definition .popsection without corresponding .pushsection __symbols __la_symbol_ptr __DATA __literal16 __TEXT __literal4 __literal8 __mod_init_func __mod_term_func __nl_symbol_ptr __thread_ptr __cls_refs __cat_cls_meth __thread_vars __inst_meth __class_vars __class __cstring __cls_meth __destructor __cat_inst_meth __fvmlib_init0 __category __dyld __bss __constructor __data __fvmlib_init1 __instance_vars __thread_init __thread_data __text __picsymbol_stub __static_const __static_data __symbol_stub __meta_class __module_info __protocol __selector_strs __string_object expected identifier after '.section' directive unexpected token in '.section' directive __textcoal_nt __const_coal section " " is deprecated change section name to " __datacoal_nt .watchos_version_min .tvos_version_min .ios_version_min .macosx_version_min invalid OS major version number minor OS version number required, comma expected invalid OS minor version number invalid update specifier, comma expected invalid OS update number should only be used for overriding previous version_min directive unexpected token in '.tbss' directive invalid '.tbss' directive size, can't be less thanzero invalid '.tbss' alignment, can't be lessthan zero __thread_bss unexpected token in '.secure_log_unique' directive .secure_log_unique specified multiple times .secure_log_unique used but AS_SECURE_LOG_FILE environment variable unset. can't open secure log file: .alt_entry .desc .indirect_symbol .lsym .subsections_via_symbols .pushsection .popsection .previous .secure_log_unique .secure_log_reset .tbss .zerofill .data_region .end_data_region .const .const_data .constructor .cstring .destructor .dyld .fvmlib_init0 .fvmlib_init1 .lazy_symbol_pointer .linker_option .literal16 .literal4 .literal8 .mod_init_func .mod_term_func .non_lazy_symbol_pointer .thread_local_variable_pointer .objc_cat_cls_meth .objc_cat_inst_meth .objc_category .objc_class .objc_class_names .objc_class_vars .objc_cls_meth .objc_cls_refs .objc_inst_meth .objc_instance_vars .objc_message_refs .objc_meta_class .objc_meth_var_names .objc_meth_var_types .objc_module_info .objc_selector_strs .objc_string_object .objc_symbols .picsymbol_stub .static_const .static_data .symbol_stub .tdata .thread_init_func .tlv expected a comma expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', '%<type>' or "<type>" expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', '@<type>', '%<type>' or "<type>" expected symbol type in directive STT_FUNC STT_OBJECT STT_TLS STT_GNU_IFUNC gnu_indirect_function gnu_unique_object unsupported attribute in '.type' directive unexpected token in '.type' directive STT_COMMON STT_NOTYPE notype tls_object .hidden .protected expected a '@' in the name .data.rel.ro unexpected token in '.ident' directive unexpected token in '.version' directive .note .rodata .data.rel .fini Section cannot specifiy a group name while also acting as a member of the last group Mergeable section must specify the type Group section must specify the type expected the entry size entry size must be positive expected group name expected commma unique id must be positive .init_array .fini_array .preinit_array fini_array preinit_array nobits progbits DWARF2 only supports one section per compilation unit expected '@<type>', '%<type>' or "<type>" Linkage must be 'comdat' expected 'unique' unique id is too large unknown section type execinstr .symver .version .weakref .subsection invalid hexadecimal floating-point constant: expected at least one significand digit invalid hexadecimal floating-point constant: expected exponent part 'p' invalid hexadecimal floating-point constant: expected at least one exponent digit unterminated comment invalid decimal number invalid hexdecimal number invalid octal number invalid binary number invalid hexadecimal number unterminated single quote single quote way too long unterminated string constant invalid character in input $ % & ' ( ) * + , - . / 0 "#$%&+,-./(*)23 ! ' 10 llvm.bitcode Invalid bitcode signature Corrupted bitcode Unexpected end of file Type mismatch in constant table! (Producer: ' ' Reader: 'LLVM 3.9.0svn') Invalid alignment value Invalid record Invalid value name Malformed block Invalid value Incompatible epoch: Bitcode ' ' vs current: ' Invalid bitcode wrapper header Unknown attribute kind ( Load/Store operand is not a pointer type Explicit load/store type does not match pointee type of pointer operand Cannot load/store from pointer Invalid multiple blocks Bitwidth for integer type out of range Invalid function argument type Invalid TYPE table Invalid vector length Invalid TYPE table: Only named structs can be forward referenced Expected a constant Alias and aliasee types don't match Malformed global initializer set Conflicting METADATA_KIND records Insufficient function protos Could not find function in stream Trying to materialize functions before seeing function blocks Expect SubBlock Expect function block METADATA_NAME not followed by METADATA_NAMED_NODE llvm.vectorizer. Invalid record: metadata strings layout Invalid record: metadata strings with no strings Invalid record: metadata strings corrupt offset Invalid record: metadata strings bad length Invalid record: metadata strings truncated chars Invalid metadata: fwd refs into function blocks GUID ) is Invalid Summary Block: record for version expected Invalid Summary Block: version expected Invalid summary version , 1 expected Alias expects aliasee summary to be parsed Name attachment that does not follow a combined record Invalid hash length Invalid hash that does not follow a module path Don't expect multiple modules defined? Invalid constant reference Invalid type for value Invalid ID Explicit gep operator type does not match pointee type of pointer operand Invalid global variable comdat ID Invalid calling convention ID Invalid function comdat ID Invalid function metadata: incoming forward references Invalid metadata attachment Invalid cast Explicit gep type does not match pointee type of pointer operand EXTRACTVAL: Invalid instruction with 0 indices EXTRACTVAL: Invalid type INSERTVAL: Invalid instruction with 0 indices INSERTVAL: Invalid type Inserted value type doesn't match aggregate type Explicit invoke type does not match pointee type of callee operand Insufficient operands to call Personality function mismatch Fast math flags indicator set for call with no FMF Explicit call type does not match pointee type of callee operand Fast-math-flags specified for call without floating-point scalar or vector return type Invalid instruction with no BB Operand bundles found with no consumer Never resolved value found in function Invalid function metadata: outgoing forward refs EXTRACTVAL: Invalid struct index EXTRACTVAL: Invalid array index INSERTVAL: Invalid struct index INSERTVAL: Invalid array index Explicit invoke type is not a function type Callee is not a pointer Callee is not of pointer to function type Old-style alloca with a non-pointer type Explicit call type is not a function type Callee is not a pointer type Never resolved function from blockaddress Malformed IR file print-summary-global-ids Print the global id for each value when reading the module summary abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789._ Invalid abbrev number Array element type can't be an Array or a Blob Array op not second to last Array element type has to be an encoding of a type Abbreviation starts with an Array or a Blob Fixed or VBR abbrev record with size > MaxChunkData Abbrev record with no operands AS_SECURE_LOG_FILE $frame_escape_ $parent_frame_offset __ehtable$ .group llvm-mc (based on LLVM 3.9.0svn) <<invalid>> <<none>> DTPOFF DTPREL GOT GOTOFF GOTREL GOTPCREL GOTTPOFF INDNTPOFF NTPOFF GOTNTPOFF TLSLDM tlscall tlsdesc TLVP TLVPPAGE TLVPPAGEOFF GOTPAGE GOTPAGEOFF SECREL32 SIZE WEAKREF GOT_PREL target1 target2 prel31 sbrel tlsldo tlsdescseq highera highest highesta got@l got@h got@ha tocbase toc toc@l toc@h toc@ha dtpmod tprel@higher tprel@highera tprel@highest tprel@highesta dtprel@higher dtprel@highera dtprel@highest dtprel@highesta got@tprel got@tprel@l got@tprel@h got@tprel@ha got@dtprel got@dtprel@l got@dtprel@h got@dtprel@ha got@tlsgd got@tlsgd@l got@tlsgd@h got@tlsgd@ha got@tlsld got@tlsld@l got@tlsld@h got@tlsld@ha GPREL GOT_CALL ABS_HI ABS_LO DTPREL_HI DTPREL_LO TPREL_HI TPREL_LO GPOFF_HI GPOFF_LO PCREL_HI16 PCREL_LO16 IMGREL GDGOT LDGOT GDPLT LDPLT IE IEGOT FUNCTION got gotoff gotpcrel indntpoff ntpoff gotntpoff plt tlsldm tlvp tlvppage tlvppageoff gotpageoff imgrel secrel32 gdgot ldgot got_prel dtpoff gotrel gottpoff gotpage gdplt iegot ldplt pcrel unable to evaluate offset to undefined symbol ' unable to evaluate offset for variable ' expression could not be evaluated ' could not be evaluated in a subtraction expression Common symbol ' ' cannot be used in assignment expr <MCFixup Value: Kind: __eh_frame __ustring __common __gcc_except_tab __LD __compact_unwind __DWARF __apple_names names_begin __apple_objc objc_begin __apple_namespac namespac_begin __apple_types types_begin __debug_abbrev section_abbrev __debug_info section_info __debug_line section_line __debug_frame __debug_pubnames __debug_pubtypes __debug_gnu_pubn __debug_gnu_pubt __debug_str info_string __debug_loc section_debug_loc __debug_aranges __debug_ranges debug_range __debug_macinfo debug_macinfo __debug_inlined __debug_cu_index __debug_tu_index __LLVM_STACKMAPS __llvm_stackmaps __LLVM_FAULTMAPS __llvm_faultmaps .rodata.cst4 .rodata.cst8 .rodata.cst16 .rodata.cst32 .ctors .dtors .gcc_except_table .debug_abbrev .debug_info .debug_line .debug_pubnames .debug_pubtypes .debug_gnu_pubnames .debug_gnu_pubtypes .debug_str .debug_loc .debug_aranges .debug_ranges .debug_macinfo .apple_names .apple_objc .apple_namespaces .apple_types .debug_info.dwo .debug_types.dwo .debug_abbrev.dwo .debug_str.dwo .debug_line.dwo .debug_loc.dwo skel_loc .debug_str_offsets.dwo .debug_addr addr_sec .debug_cu_index .debug_tu_index .llvm_stackmaps .llvm_faultmaps .rdata .debug$S .debug$T section_info_dwo section_types_dwo section_abbrev_dwo skel_string .drectve .pdata .sxdata .tls$ .CRT$XTX Cannot initialize MC for non-Windows COFF object files. Cannot initialize MC for unknown object file format. .debug_types .section ," one_only, discard, same_size, same_contents, associative, largest, newest, 0123456789_.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ,#alloc ,#execinstr ,#write ,#exclude ,#tls ,comdat ,unique, .subsection ,none, mach-o section specifier requires a segment and section separated by a comma mach-o section specifier requires a section whose length is between 1 and 16 characters thread_local_variable_pointers mach-o section specifier uses an unknown section type mach-o section specifier of type 'symbol_stubs' requires a size specifier mach-o section specifier has invalid attribute mach-o section specifier cannot have a stub size specified because it does not have type 'symbol_stubs' mach-o section specifier requires a segment whose length is between 1 and 16 characters mach-o section specifier has a malformed stub size S_ATTR_PURE_INSTRUCTIONS no_toc S_ATTR_NO_TOC strip_static_syms S_ATTR_STRIP_STATIC_SYMS S_ATTR_NO_DEAD_STRIP live_support S_ATTR_LIVE_SUPPORT self_modifying_code S_ATTR_SELF_MODIFYING_CODE S_ATTR_DEBUG S_ATTR_SOME_INSTRUCTIONS S_ATTR_EXT_RELOC S_ATTR_LOC_RELOC regular S_REGULAR S_ZEROFILL S_CSTRING_LITERALS 4byte_literals S_4BYTE_LITERALS 8byte_literals S_8BYTE_LITERALS literal_pointers S_LITERAL_POINTERS non_lazy_symbol_pointers S_NON_LAZY_SYMBOL_POINTERS S_LAZY_SYMBOL_POINTERS symbol_stubs S_SYMBOL_STUBS mod_init_funcs S_MOD_INIT_FUNC_POINTERS mod_term_funcs S_MOD_TERM_FUNC_POINTERS S_COALESCED S_GB_ZEROFILL interposing S_INTERPOSING 16byte_literals S_16BYTE_LITERALS S_DTRACE_DOF S_LAZY_DYLIB_SYMBOL_POINTERS thread_local_regular S_THREAD_LOCAL_REGULAR thread_local_zerofill S_THREAD_LOCAL_ZEROFILL thread_local_variables S_THREAD_LOCAL_VARIABLES S_THREAD_LOCAL_VARIABLE_POINTERS thread_local_init_function_pointers S_THREAD_LOCAL_INIT_FUNCTION_POINTERS unsupported directive in streamer EmitRawText called on an MCStreamer that doesn't support it, something must not be fully mc'ized No open frame No open Win64 EH frame function! .seh_* directives are not supported on this target Not all chained regions terminated! End of a chained region outside a chained region! Chained unwind areas can't have handlers! Don't know what kind of handler this is! Unfinished frame! line_table_start Starting a frame before finishing the previous one! Frame register and offset already specified! Misaligned frame pointer offset! Frame offset must be less than or equal to 240! Misaligned saved register offset! Misaligned saved vector register offset! Allocation size must be non-zero! Misaligned stack allocation! If present, PushMachFrame must be the first UOP Starting a function before ending the previous one! Symbol name with unsupported characters expected relocatable expression expected assembly-time absolute expression invalid .org offset ' ' (at offset ' Padding cannot exceed 255 bytes Fragment can't be larger than a bundle size unable to write NOP sequence of bytes undefined .align directive, value size ' ' is not a divisor of padding size ' unable to write nop sequence of non-zero initializer found in section ' non-zero initializer found in virtual section sleb128 and uleb128 expressions must be absolute strtab_begin strtab_end filechecksums_begin filechecksums_end linetable_begin linetable_end Segment for file ' ' begins internal linkonce linkonce_odr weak weak_odr common appending extern_weak available_externally <empty name> singlethread avr_intrcc avr_signalcc fast nnan ninf nsz arcp nuw nsw exact inbounds tag: %"type addrspace( { comdat = comdat = type = !{ <badref> sideeffect alignstack inteldialect ", " c" blockaddress( <placeholder or erroneous Constant> !" !<unknown kind # <null operand!> [ distinct <temporary!> !{ !DILocation( !DIExpression( !GenericDINode( operands: { !DISubrange( !DIEnumerator( !DIBasicType( !DIDerivedType( !DICompositeType( !DISubroutineType( !DIFile( !DICompileUnit( !DISubprogram( !DILexicalBlock( !DILexicalBlockFile( !DINamespace( !DIModule( !DITemplateTypeParameter( !DITemplateValueParameter( !DIGlobalVariable( !DILocalVariable( !DIObjCProperty( !DIImportedEntity( !DIMacro( !DIMacroFile( , { } ; uselistorder directives _bb ; ( constant global ; Materializable hidden protected dllimport dllexport thread_local(localdynamic) thread_local(initialexec) thread_local(localexec) unnamed_addr addrspace( externally_initialized , section " , align external alias ifunc <<NULL ALIASEE>> <badref> = musttail notail <unknown operation xchg add sub and nand or xor max min umax umin ] , [ [ cleanup catch filter ] unwind to caller # to unwind inalloca swifterror within ; <label>: ; Error: Block without parent! preds = No predecessors! ; Function Attrs: declare define unnamed_addr section " gc " prefix prologue personality source_filename = " target datalayout = " target triple = " module asm " attributes # ; ModuleID = ' not_atomic consume allocsize( PAL[ { ~0U arm.neon.vcnt .p0i8 ^arm\.neon\.vst([1234]|[234]lane)\.v[a-z0-9]*$ aarch64.thread.pointer arm.thread.pointer ctlz. cttz. objectsize. stackprotectorcheck x86.sse2.pcmpeq. x86.sse2.pcmpgt. x86.avx2.pcmpeq. x86.avx2.pcmpgt. x86.avx2.vbroadcast x86.avx2.pbroadcast x86.sse41.pmovsx x86.avx.vinsertf128.pd.256 x86.avx.vinsertf128.ps.256 x86.avx.vinsertf128.si.256 x86.avx2.vinserti128 x86.avx.vextractf128.pd.256 x86.avx.vextractf128.ps.256 x86.avx.vextractf128.si.256 x86.avx2.vextracti128 x86.avx.movnt.dq.256 x86.avx.movnt.pd.256 x86.avx.movnt.ps.256 x86.sse42.crc32.64.8 x86.avx.vbroadcast.ss x86.avx.vbroadcast.ss.256 x86.avx.vbroadcast.sd.256 x86.sse2.psll.dq x86.sse2.psrl.dq x86.avx2.psll.dq x86.avx2.psrl.dq x86.sse2.psll.dq.bs x86.sse2.psrl.dq.bs x86.avx2.psll.dq.bs x86.avx2.psrl.dq.bs x86.sse41.pblendw x86.sse41.blendpd x86.sse41.blendps x86.avx.blend.pd.256 x86.avx.blend.ps.256 x86.avx2.pblendw x86.avx2.pblendd.128 x86.avx2.pblendd.256 x86.avx2.vbroadcasti128 x86.xop.vpcmov x86.xop.vpcom x86.sse41.ptest x86.sse41.ptestc x86.sse41.ptestz x86.sse41.ptestnzc x86.sse41.insertps x86.sse41.dppd x86.sse41.dpps x86.sse41.mpsadbw x86.avx.dp.ps.256 x86.avx2.mpsadbw x86.xop.vfrcz.ss x86.xop.vfrcz.sd x86.fma4. llvm.x86.fma ^arm\.neon\.vld([1234]|[234]lane)\.v[a-z0-9]*$ x86.avx.vpermil. arm.neon.vclz llvm.vectorizer.unroll llvm.loop.vectorize. llvm.x86.sse2.pcmpeq. llvm.x86.avx2.pcmpeq. pcmpeq llvm.x86.sse2.pcmpgt. llvm.x86.avx2.pcmpgt. pcmpgt llvm.x86.avx.movnt.dq.256 llvm.x86.avx.movnt.ps.256 llvm.x86.avx.movnt.pd.256 llvm.x86.xop.vpcom llvm.x86.xop.vpcmov llvm.x86.sse42.crc32.64.8 llvm.x86.avx.vbroadcast llvm.x86.sse41.pmovsx llvm.x86.avx2.vbroadcasti128 llvm.x86.avx2.pbroadcast llvm.x86.avx2.vbroadcast llvm.x86.sse2.psll.dq llvm.x86.sse2.psrl.dq llvm.x86.avx2.psll.dq llvm.x86.avx2.psrl.dq llvm.x86.sse2.psll.dq.bs llvm.x86.sse2.psrl.dq.bs llvm.x86.avx2.psll.dq.bs llvm.x86.avx2.psrl.dq.bs llvm.x86.sse41.pblendw llvm.x86.sse41.blendpd llvm.x86.sse41.blendps llvm.x86.avx.blend.pd.256 llvm.x86.avx.blend.ps.256 llvm.x86.avx2.pblendw llvm.x86.avx2.pblendd.128 llvm.x86.avx2.pblendd.256 llvm.x86.avx.vinsertf128.pd.256 llvm.x86.avx.vinsertf128.ps.256 llvm.x86.avx.vinsertf128.si.256 llvm.x86.avx2.vinserti128 llvm.x86.avx.vextractf128.pd.256 llvm.x86.avx.vextractf128.ps.256 llvm.x86.avx.vextractf128.si.256 llvm.x86.avx2.vextracti128 llvm.stackprotectorcheck llvm.x86.avx.vpermil.pd.256 llvm.x86.avx.vpermil.ps.256 llvm.x86.avx.vpermil.ps llvm.x86.avx.vpermil.pd full-set empty-set decltype(nullptr) i i i i i@ f f f@ f v@ v a a i i i i f i i i i i i i i i i i i i i i v number of bits must be a byte width multiple not a number, or does not fit in an unsigned int Expected token before separator in datalayout string Trailing separator in datalayout string -m:o -m:w -m:e -m:x Invalid bit width, must be a 24bit integer Invalid ABI alignment, must be a 16bit integer Invalid preferred alignment, must be a 16bit integer Invalid ABI alignment, must be a power of 2 Invalid preferred alignment, must be a power of 2 Preferred alignment cannot be less than the ABI alignment Invalid address space, must be a 24bit integer Missing size specification for pointer in datalayout string Invalid pointer size of 0 bytes Missing alignment specification for pointer in datalayout string Sized aggregate specification in datalayout string Missing alignment specification in datalayout string ABI alignment specification must be >0 for non-aggregate types Zero width native integer type in datalayout string Unexpected trailing characters after mangling specifier in datalayout string Expected mangling specifier in datalayout string Unknown mangling specifier in datalayout string Unknown mangling in datalayout string Unknown specifier in datalayout string Pointer ABI alignment must be a power of 2 Pointer preferred alignment must be a power of 2 llvm.dbg.value DIFlagPrivate DIFlagProtected DIFlagPublic DIFlagFwdDecl DIFlagAppleBlock DIFlagBlockByrefStruct DIFlagVirtual DIFlagArtificial DIFlagPrototyped DIFlagObjcClassComplete DIFlagObjectPointer DIFlagVector DIFlagStaticMember DIFlagLValueReference DIFlagRValueReference DIFlagExternalTypeRef DIFlagExplicit stack size limit exceeded ( ) in ignoring debug info with an invalid version ( at line Invalid regular expression ' ' in -pass-remarks: loop not vectorized: loop not interleaved: Enable optimization remarks from passes whose name match the given regular expression pass-remarks Enable missed optimization remarks from passes whose name match the given regular expression pass-remarks-missed Enable optimization analysis remarks from passes whose name match the given regular expression pass-remarks-analysis Dominator Tree Construction DominatorTree is not up to date! Computed: Actual: verify-dom-info Verify dominator info (time consuming) # # # " " ! " $ $ ) * 2 + E , X - l . ~ iK K K K K K K L $L 7L LL aL vL L L L L L L M $M :M PM fM |M M M M M M N N .N CN YN oN N N N N N N O O 2O HO _O vO O O O O O O P $P 9P OP eP {P P P P P P P Q Q 6Q LQ bQ xQ Q Q Q Q Q Q R %R 9R MR aR uR R R R R R R S S 0S ES ZS nS S S S S S S " T $ T & +T ( @T ) WT * lT + T , T - T . T / T 0 T 1 U 2 U 3 )U 4 =U 5 RU 6 fU 7 {U 8 U : U < U > U @ U B U D V E +V F AV G WV H lV I V J V K V L V M V N V O V P W Q *W R @W S VW T lW U W V W B }K NK t KI u jI v I w I x I y I z J { 3J | QJ } oJ ~ J J J J J K 2K - . ' ! $ E \ u / F _ x V ) B T n E ^ w 5 O i F a | 5 P l M f z ] b 1 k l m n s x y z / { K 4 . K i 3 P d , H f 8 S q 6 K b e z 9 Q h S g T ~ U V W X Y j k l m n o | # / 4 K b y * @ k 4 K b x ! " ) # @ $ W % n & ' ( * + , - . 4 / J 0 ` 1 v 2 3 4 5 6 7 8 9 ) : @ ; V < l = > ? @ A C D E 5 F I G ^ H s I J K L M N O P Q 2 R F S Z U V W X Y Z [ \ ] 1 ^ G _ ] ` p a b c d e f g h i ! j 6 k K l ` m u n o p q r s t u % v < w S x j y z { | } ~ 5 K a w . $ ; P f | + B Y p . 5 . C X m . C Y o 2 G ] s + C [ p / E [ r ! 7 L a v $ 9 N c x ! " # $ % & ' ( " ) 7 * M + c , y - . / 0 1 2 3 4 ) 5 A 6 Y 7 q 8 9 : ; < = > ? + @ B A Y B p C D E F G H I J ' K = L S M i N ~ O P Q R S T U V * W ? X T Y i Z [ \ ^ _ ` a c E d X e k f ~ g h i j o . p E q \ r t t u v w | g } } ~ - C Y o ' = S i / F ] t ) ? U k I _ u y ! 6 K ` u 6 L b x y ) = Q # 7 ! K " _ # s $ % & ' ( ) * + , 6 - M . d / { 0 1 2 3 4 5 6 7 8 4 9 I : ^ ; s < = > ? @ A B C D 0 E E F Z G o H I J K L M N O P . Q A R T Z [ ( \ ? ] V ^ m _ ` a b c d e f - g F h _ i x p # q 8 r M s b t w u v w x y z { } 8 ~ L $ R r 7 X s ; Y { & F f ( 6( [( }( ( ( ( ) () I) h) ) ) ) ) ) * &* =* V* o* * * * * * ! + " '+ # A+ $ [+ % u+ & + ' + ( + ) + * + + , , %, - =, . U, / o, 0 , 1 , 2 , 3 , 4 , 5 - 6 3- 7 N- 8 k- 9 - : - ; - < - = - > . ? .. @ K. A f. B . C . D . E . F . G / H +/ I F/ J c/ K ~/ L / M / N / O / P 0 Q 0 R 80 S R0 T l0 U 0 V 0 W 0 X 0 Y 0 Z 1 [ 1 \ 41 ] M1 ^ i1 _ 1 ` 1 a 1 b 1 c 1 d 2 e 2 f 52 g N2 h g2 i 2 j 2 k 2 l 2 m 2 n 3 o %3 p ?3 q Y3 r s3 s 3 t 3 u 3 v 3 w 3 x 4 y )4 z C4 { ]4 | x4 } 4 ~ 4 4 4 4 5 .5 H5 b5 |5 5 5 5 5 5 6 %6 <6 S6 j6 6 6 6 6 6 6 7 )7 A7 Y7 q7 7 7 7 7 7 8 8 78 Q8 k8 8 8 8 8 8 9 $9 ?9 Y9 s9 9 9 9 9 9 : ): :: J: [: k: |: : : : : : : ; %; <; S; k; ; ; ; ; ; ; < #< 9< P< h< < < < < < < = = 3= H= _= w= = = = = = = > $> 9> N> f> > > > > > > ? ? 3? N? j? ? ? ? ? ? ? @ %@ ;@ O@ d@ z@ @ @ @ @ @ @ A )A ?A UA lA A A A A A A B B 1B GB [B " oB # B $ B % B & B ' B ( B ) B * B + C , $C - 7C . IC / WC 0 jC 5 zC 6 C 7 C 8 C 9 C : C ; D < "D = <D > TD ? nD @ D A D B D C D D D E D F E G *E H @E J VE K kE M E N E O E // D D D D D D D D ,,, ,,, ,, ,, JJ D JJ JJ JJJJJJJ JJJJJJJJJJJ JJJJ@ @ @ @ 5 ??? ?? ??? / ? ??? /// ??? / ??? / ??? /// ??? / ??? / /// // /// // // // /// M < ' ??? A ,U 5 ?? H 5 ??? ? ??? < ??? ??? ??? ??? ??? A A E H H H H b b ??? 5 ?,? ?,,? ??,?% ??? ? ??? ??? ??? ??? ??? ??? A H H b ?? ??? ?? ? S :z / / z: ??? ??? /// T TO T TO .. DJD DJD D D DJD DJD DJD DJD DJD DJD DJD DJD /JD /JD B // ww ww ww ww u ////, " D D // GD wDD u // // D D D u // // // D @ @ // // @DD @DD D D D D D D @ @ @ @ @ @DD @DD @DD @DD DDD DDD ,,, ,,, ,, ,, JJ D JJ JJ JJJJJJJ JJJJJJJJJJJ JJJJ??? ??? ?? ? ? ?????? ? ? :z / / z: ? ? ? ? ? ? ??? ??? ??? ??? ? ??? ??? ??? ??? ??? ??? A A A ??? ?? ?? ??? ? ? ??? ??? ??? ??? ?? ??? ??? ??? A 0 0 0 ?? ??? 5 5 5 ??? ??? 5 5 5 ??? ??? ??? ??? ??? 5 ?? ??? ??? ??? ?? ?? ?? ?? ?? ?? 5 ??? ??? ?? ??? 5 ??????? ??? K K +++ ++++ ++++ D D D @ D D DO D DO D @ D | R R R U // // / / D / D / D D D D D D D /// // . u t @. P. @ . // // p // // ////////. .. .. . D U D D D D D D D D D D D D D D D U U D E D D U D D D D D D E E D U D U D U D U D U D D U D D U T T D D D D D D D D D D D D D D D D D U D D D D D D D D D D D D D D E D D D U U D U U U U U U U U U U U U U U U U U U U U U U U U T T T T T T T T U U U U U U U U U U U U U U U U U U U U UU U UU U U U U U U U U D U D D D U E E D D D D D D D D D D D D D E E D D D D U D D D D D D D D T T T T T T T T T T T T UE UE UE UE UE UE UE UE T D D D D D D D D D T D D D D T D D T D D E DD DD DD DD D D D D D D D EU D DD DD DD DD D D D D D D D D D D D DD DD DD DD X W u u x u u t t t t X W H G H G H H w t t t t t w w w ww ww ww ww ww G G w w w w DD DD UD UD UD UD UD UD E E D D D D E E E E UD UD UD UD UD UD D E UD UD E D D D D DD DD DD UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU UU U U U U U U U U U U U U U U U U DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD D D D D D D D D DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD D D D D D D D D D D D D D D D D D D D D D D D D D D D UD UD UD UD UD UD UD UD E E E E E E E E UD UD UD UD UD UD UD UD E E E E E E E E D D D DD DD DD DD DD DD DD DD D D D D D D D D DD DD DD DD DD DD DD DD D UD UD UD UD UD UD UD UD E E E E E E E E UD UD UD UD UD UD UD UD D DD DD DD U U UU UU U U U U UU UU T T U U UD UU UU UU UD UD UD UD U U E D E D E E T T UU UU UU UU U U U U UE U T UU U DD DD DD DD DD T T T T DD DD DD DD DD DD DD DD DD DD DD E UD E UD UU UU U U UU UU U U DD DD DD UU UU U UD UD E E UU UU U U U U DD U UE UE UE UE UE D DD DD DD DD D DD U U U UE UE UE UE UE D DD DD DD DD D U U U UE UE UE UE U U D DD DD DD DD D D T U U U UE UE UE UE UE D DD DD DD DD D T U U D U UE D T D T D D T D D D T D T U DD D UD U DD DT UE UU U U U UE UE UE UE UE D DD DD DD DD U U U UE UE UE UE UE D DD DD DD DD DD U U U UE UE UE UE UE D DD DD DD DD U U E T D D U U U U D D D DD DD DD DD D D D D UE UE U U UE T T T U T U T U T U D E UE UE E E T U T U E E DD DD DD DD DD D T T DD D UD U D D D DD DD DD DD DD D U DD DD DD UD UE U U U U U U T T T U U UE UE UE UE UE D DD DD DD DD DD E U U D D D LM ; LM ; L M g n g n i p g n g n R Z g n LLL MMM LLL MMM LLL MMM LLL MMM LL MM LL MM LL MM LL MM LLL MMM MMM @ LLL MMM MMM @ LLL MMM MMM @ MLL ( MLL ( LLL MMM MMM @ LLL MMM MMM @ MLL ( LLL MMM MMM @ LLL MMM MMM @ LLL MMM LLL MMM LLL MMM P X N V ( N & L LL MM LLL MMM LL MM LLL MMM LLL MMM LL MM LLL MMM LLL MMM LLL MMM LLL MMM LL MM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LL MM MM B LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LL MM LL MM MLL ( L M LL MM LLL MMM LL MM MLL ` LLL MMM LL MM LLL MMM MM z MMM x LL MM LLL MMM MM z MMM x LM r LLM p LL MM LLL MMM LM r LLM p LL MM LLL MMM LLL MMM LLLLMMMMMM z MMM x LL MM LLL MMM LLL MMM LL MM LLL MMM LL MM LLL MMM LLE MME LLLEMMMEMME MMME LLL MMM 8 T MLL ` B ^ LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM MM z MMM x MMM @ MMM @ MM z MMM x ML j MML h MLL ( MMLL& MLL ( MMLL& LLL MMM ML j MML h LL MM LL MM MLL ( MMLL& MLL ( MMLL& LLL MMM LLL MMM LLLLMMMMLLL MMM LLLLMMMMLLL MMM LLLLMMMMLL MM LLL MMM LLL MMM LL MM LLL MMM LL MM LLL MMM LLL MMM LLL MMM LLLLMMMMLLLLMMMMML j MML h MLL ( MMLL& ML j MML h MLL ( MMLL& LLL MMM LLL MMM LLL MMM LL MM LL MM LL MM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LLL MMM LL MM LLL MMM LL MM LLL MMM MMD e MMMDc LLL MMM LLLLMMMMLLL MMM LLLLMMMMLL MM LLL MMM MMD e MMMDc LLL MMM LLLLMMMMLL MM LLL MMM LLL MMM LLL MMM LLL MMM MMD e MMMDc LLL MMM LLL MMM ML 1 ML 1 LLL MMM LL MM LLL MMM LL MM LLL MMM MLL ` MLL ( MLL ( LLL MMM LLL MMM MMM @ LLL MMM MMM @ LLL MMM MMM @ MLL ( MLL ( LLL MMM MMM @ LLL MMM MMM @ MLL ( LLL MMM MMM @ LLL MMM MMM @ MM z MMM x MM z MMM x MM z MMM x ML 1 ML 1 MML / MML / ML 1 ML 1 LLL MMM ML 1 ML 1 ... ... ... ... ... ... ..D ..E ..D ..D ..D ...D...D...D...D...D...D..D ..E ..D ..D ..D KKK RD RE .. P. P. .. . ... // // // B @ 6 /// J J $ /// 99 ** D ,,, YYY ;;; JJJ 999 999 D 999 999 D D ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ D 999 *** 999 *** *** *** ,,, YYY ;;; JJJ ,, YY ;; JJ D ,,, ,, DD ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ DD ,,, YYY ;;; JJJ ,, YY ;; JJ ,,,,YYYY;;;;JJJJ,,, YYY ;;; JJJ ,,,,YYYY;;;;JJJJ,,, YYY ;;; JJJ D ,,,,,,, ,,,,,,, ,,, YYY ;;; JJJ ,, YY ;; JJ ,,,,,,, ,,, YYY ;;; JJJ ,, YY ;; JJ ,,, YYY ;;; JJJ ,, YY ;; JJ D ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,, YY ;; JJ ,, YY ;; JJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,, YY ;; JJ ,, YY ;; JJ B E C D B E C D @ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ UE YJJ ;,, J;; YJJ ;,, J;; U99 YYJJ;;,,JJ;;YYJJ;;,,JJ;;U99 UD U99 U99 U** U** U99 U99 U99 UD U99 U99 U** U** YYJJ;;,,JJ;;YYJJ;;,,JJ;;U99 T T T T T T zzz Y Jzz Y Jzz Y Jz Y Jzz Y Jzz Y Jzz Y Jzz Y Jzz Y Jzz Y Jzz Y Jzz Y Jzz zzz kzz z Y zzJ z zk z zk Y zJ Y zJ J z; J z; , Y ; J zz zzzz zzz zzz zzz zzz zzzz zzz zz zz zz Y Jzz Y Jzz Y Jzz Y Jzz Y Jzz Y Jzz zz zzz Y Jzz Y Jzz Y Jzz Y Jzz Y Jzz Y Jz Y Jz ;zz J Y Jz Y Jz YJJ ;,, J;; YJJ ;,, J;; YJJ ;,, J;; YJJ ;,, J;; ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,D YYT ;;D JJD D ,, YY ;; JJ B ,. Y. ;. J. , Y ; J B DD B UD ;;;;JJJJ;;;;JJJJUD ,,,,YYYY;;;;JJJJU99 U99 U99 U99 ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,, YY ;; JJ ,, YY ;; JJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,, YY ;; JJ ,, YY ;; JJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ D ,, UD ;;;;JJJJ;;;;JJJJUD ,,,,YYYY;;;;JJJJU 999 ;;; JJJ 999 9*9 9*9 999 D 999 D ;;; JJJ U99 U99 E E ,,, YYY ;;; JJJ ,, YY ;; JJ ,, YY ;; JJ ,,, ,, ,,, ,, 999 ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,, YY ;; JJ 999 *** 9* 9* 9* 9* 9* 9* 9* 9* *99 9D 9D 9D *99 9D *99 DD D 9 * ,, YY ;; JJ ,, YY ;; JJ ,, ;; JJ U 99 ** 99 D 99 ** 99 ** D 99 ** ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,, YY ;; JJ ,, YY ;; JJ ,, YY ;; JJ ,,, YYY ;;; JJJ ,, YY ;; JJ ,,, YYY ;;; JJJ ,, YY ;; JJ ,,, YYY ;;; JJJ ,, YY ;; JJ ,,, YYY ;;; JJJ ,, YY ;; JJ B B B B 999 999 D 999 999 D D ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ 999 *** 999 *** *** *** ,,, YYY ;;; JJJ ,, YY ;; JJ ,,,,YYYY;;;;JJJJ@ ,,, ,, // D U w w w w w w w w t D D D D D t G X D U w w D T w w w w w w w w w w w w w w s s t t t t t t t t u u u u u u u u t t t t t t t t u u u u u u u u w w w w ww ww ww ww ww ww ww ww w w w w 7 H H H H G G G G Q Q Q / O / O w w X X X X W W W W H D U D U D U D U w 3 D U O w w w w w w w w D D D U D U D T DD O O O O O O O O O w w w w w w w w D U U w w w w DD DD w w w w w w w w w w w w w w w SD SD SD TD TD TD UD UD UD SD SD SD u u u u u u l l l | | | l l l S S S T T T U U U S S S SD SD SD TD TD TD UD UD UD SD SD SD ! ! ! 3 3 3 F F F ! ! ! ) ) ) SD SD SD TD TD TD UD UD UD SD SD SD u u u u u u l l l | | | l l l SD SD SD TD TD TD UD UD UD SD SD SD ! ! ! 3 3 3 F F F ! ! ! ) ) ) T T T T T T PD PD PD PD PD PD PD PD PD PD PD PD PD3 PD3 PD3 PDD PDD PDD PDU PDU PDU PD3 PD3 PD3 PD33PD33PD33PDDDPDDDPDDDPD33PD33PD33P4 P4 P4 PD PD PD PT PT PT P4 P4 P4 P4 P4 P4 PD PD PD PT PT PT P4 P4 P4 P43 P43 P43 PDD PDD PDD P43 P43 P43 PD4 PD4 PD4 PDD PDD PDD PDT PDT PDT PD4 PD4 PD4 PD4 PD4 PD4 PDD PDD PDD PDT PDT PDT PD4 PD4 PD4 * * * * * * PD PD PD PD PD PD PD PD PD PD PD PD PD3 PD3 PD3 PDD PDD PDD PDU PDU PDU PD3 PD3 PD3 PD33PD33PD33PDDDPDDDPDDDPD33PD33PD33PD4 PD4 PD4 PDD PDD PDD PDT PDT PDT PD4 PD4 PD4 PD4 PD4 PD4 PDD PDD PDD PDT PDT PDT PD4 PD4 PD4 * * * * * * PD PD PD PD3 PDD PD3 PD33PDDDPD33P4 PD P4 P4 PD P4 P43 PDD P43 PD4 PDD PD4 PD4 PDD PD4 * * PD PD PD PD3 PDD PD3 PD33PDDDPD33PD4 PDD PD4 PD4 PDD PD4 * * U \ P P } } 2 ( ( \ P P N ; ; R D D } } 2 ( ( } } N } ; } ; \ P P } } h E E | | s s < ) h E E Y ) ) ` 7 7 s s < | | m m Y s ) s ) h E E s s 6 2 ( ( 2 ( ( 2 ( ( 2 ( ( < < < < w w T T T T T T T T H H H H G G G G X X X X W W W W @ /// // YYY YYY YYY YYY ,,,,,,, YYY ;;; JJJ YY YYD JJD @ B B B B ,. ;. J. ,. ,. J. J. ; JJJ ,,, ;;; JJJ ,,, ;;; JJJ ,,, ;;; JJJ ,,, ;;; JJJ Y,, zJ zJ Jzz Dzz Jzz Dzz ,,, D,, YYY DYY ;;; D;; JJJ DJJ Jzz Dzz Jzz Dzz ,,, D,, YYY DYY ;;; D;; JJJ DJJ ,,, D,, YYY DYY ;;; D;; JJJ DJJ Jz Jz zz ,, zz zzzzzzz ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ;;;;;;;;zzz ,,, YYY ;;; JJJ ,,, YYY ;;; JJJ ;;;;J,,JJ;;JJ;;JJ,,JJ;;JJ;;J;,, J;; YJJ ;,, J;; YJJ ;,, J;; YJJ ;,, J;; YJJ zzzzJJJ,;JJ JYY JYY ,;; ,;; ;JJ ;JJ JYY ,;; ;JJ zz zz zz zz zz ,,, YYY ;;; JJJ zz JJJJJJJ ,,, ;;; JJJ JJJ JJJ ,,, ;;; JJJ ,,, ;;; JJJ JJJ JJJ ,,, ;;; JJJ ,,, ;;; JJJ JJJ J,J J;J J,J JJJ J; ;, J; YJ J; ;, J; YJ U U U D D . . . . . . . . . . . . . . . . P P P P D DD DD DD DD D D D D . J. Y D Jzz Dzz Y D Jzz Dzz Y D Jzz Dzz zzz zzz zzz zz zz zz JJJ BD @ D // x . // // B P^ @ P B B B ,,, ,,,,JJJ YYY ;;; ,,, ,,,,,,, ,,, JJJ YYY ;;; ,,, JJJ YYY ;;; JJJ [ ,, JJ YY ;; ,,, JJJ YYY ;;; ,,, JJJ ;;; q ,,, JJJ ;;; q ,,, JJJ ;;; ,,, JJJ ;;; ,,, JJJ ;;; ,,, JJJ ;;; D Z ;,,;YJJY,YY,J;;J;,, YJJ ,YY J;; ,, JJ ;; ,. , ;,,;YJJYJ;;J,,,,JJJJ;;;;;,,;YJJYJ;;J,,,,JJJJ;;;;;,,;YJJYJ;;J;,,;YJJYJ;;J;,, YJJ J;; ,,, JJJ ;;; ;,, YJJ J;; ,,, JJJ ;;; ;,, YJJ J;; ;,, YJJ J;; YYY ,,,,;JJ JYY ,;; ;JJ JYY ,;; ,,,,,,,,,,, JJJ YYY ;;; ,,, ,,, ,,, ,,, ,,, ,,, ,,, ,,, ,,, B. [ e [ e J,, YJJ Y;; J;; ,JJ ,YY ;, YJ J; ;, YJ ;, YJ J; J; ;, YJ J; T B B // T // T . . . . // T T T B ] l i l l l l l l l l i l l l i l l i l i l l i i "D. "U. "D. "U. YYY YYY YYY YYY YY YY {{{ {{{{ {{{ z J z K{ J {K J K{ {{{ {{{ {{{ -. .Y .Z z.J {.K {{{ {{{ {{ {{ {{ {{ . {. {{{ KKK Y Z zzJ {{K $ | N j : F Z J.J K.K Y.Y Z.Z Z. <-- -- KK << <KK -<< <KK -<< --- <<< --- <<< --- <<< ----KKK {{K KKK <<< <<< KKK <<< <<< <-- K<< --- KKK <<< --- KKK <<< --- KKK <<< --- KKK <<< K, Z, <, ZJ K; Z; K, Z, <, ZJ K; Z; ZKK <<< <<< <<< ZKK Z-- --- --- KKK <<< KKJ ZZY <<; KK ZZ << JJJ KKK YYY ZZZ KKJ <<; KK << JJJ KKK KKJ ZZY <<; KK ZZ << JJJ KKK YYY ZZZ --- <<< --- <<< ZZZ Y Z [ J K L , - R J K L Y Z [ ; < = D E zzD zzE H H H H G G G G zzD E zzE B|||C . 9 i H S ^ = ' 2 K.D0L.D [.D [.D3 3 3 3 4 4 3 U D 3 3 . z P . z . z ,,, --- o JJJ KKK LLL zzz {{{ ||| YYY ZZZ [[[ ;;; <<< === zzz {z{ |z| {z{ |z| {z{ |z| |{| JJJ KJK LJL KJK LJL LKL ZYZ [Y[ [Z[ B B D D D H H HB G G GC E E E HB GB C C C JJJ KKK LLL zzz {{{ ||| YYY ZZZ [[[ $ $ 4 ( ( ( ' ' 7 % % % JJJ KKK LLL YYY ZZZ [[[ J J K zJz {K{ |L|CJ J J J K KBz z z z { {BY Y Z Z [ [BJ J J J K KBY Y Z Z [ [BJzJ K{K L|LC z z { BYzY ZzZ [{[BJzJ K{K L|LCYzY ZzZ [{[B Y Z [ BzYz zZz {[{B J J J J K KBY Y Z Z [ [BJ J J J K KBY Y Z Z [ [BJzJ K{K L|LCYzY ZzZ [{[BJzJ K{K L|LCYzY ZzZ [{[B J J K zJz {K{ |L|C Y Z [ BzYz zZz {[{B R . z P JJJ KKK LLL J.J K.K L.L . . . z.z {.{ |.| Y.Y Z.Z [.[ zzz {{{ ||| YYY ZZZ [[[ v " j ^ H H H G G G H G Bzzz {{{ |||C ( ( zz '{{ 'F t 8 \ | + J.J K.K L.L . . . z.z {.{ |.| Y.Y Z.Z [.[ ,., -.- e J.J K.K L.L . . . z.z {.{ |.| Y.Y Z.Z [.[ ;.; <.< =.= JJJ KKK LLL YYY ZZZ [[[ . z P . z P JJJ KKK LLL zzz {{{ ||| YYY ZZZ [[[ . zzz {{{ ||| zzz {{{ ||| ,,, --- o ;;; <<< === . z P . z ,,, --- o JJJ KKK LLL YYY ZZZ [[[ ;;; <<< === ] ~ ] ~ m 0 U H m H m H 0 U 0 U m H , 2 - B O J $ K $ L 4 Y % Z % [ % [ % ; # < 3 = C 2 B w $ $ 4 % % % # 3 C 2 B w $ $ 4 % % % # 3 C ( (ZZ %[[ %f U H m y 4 { R r m 0 U H m 0 U H m 0 U H m 0 U H ,J, ,K, ,L, $ $ 4 ;J; ;K; <L< $ $ 4 ,Y, ,Z, ,[, % % % JYJ JZJ K[K % % % ;Y; ;Z; ;[; % % % ,;, ,<, -=- # 3 C ,J, ,K, ,L, $ $ 4 ;J; ;K; <L< $ $ 4 ,Y, ,Z, ,[, % % % JYJ JZJ K[K % % % ;Y; ;Z; ;[; % % % ,;, ,<, -=- # 3 C J,J K,K L,L Y,Y Z,Z [,[ ;,; <,< =-= YJY ZJZ [K[ J;J K;K L<L Y;Y Z;Z [;[ ,J, ,K, ,L, $ $ 4 ;J; ;K; <L< $ $ 4 ,Y, ,Z, ,[, % % % JYJ JZJ K[K % % % ;Y; ;Z; ;[; % % % ,;, ,<, -=- # 3 C J,J K,K L,L Y,Y Z,Z [,[ ;,; <,< =-= YJY ZJZ [K[ J;J K;K L<L Y;Y Z;Z [;[ A H H H 0 U H m A 0 U JJ $KK $LL 4YY %ZZ %[[ %0 U JJ $KK $LL 4YY %ZZ %[[ %0 U m JJ $KK $LL $;; #<< 3== C;; #<< 3== C 0 r JJ $KK $LL 4K YY %ZZ %[[ % > ;; #<< 3== CLL 4[[ % U H 0 0 r JJ $KK $LL 4K YY %ZZ %[[ % > ;; #<< 3== CLL 4[[ % U H 0 0 r JJ $KK $LL 4K YY %ZZ %[[ % > ;; #<< 3== CLL 4[[ % U H 0 m 0 U H m H m H g m 0 U H m 0 U H 0 U C _ D ( ( zz '{{ 'F ( ( zz '{{ 'F . z P C g 6 C _ Bzzz {{{ |||C $ $ 4 ( ( ( ' ' 7 % % % ' 2 B ^ $ $ 4 ( ( ( ' ' 7 % % % # 3 C . z P B B D D D E E E C C C . z . z g 6 z;z {;{ |<|C;z #;{ #<| 3z{ 'z| '{| ' ( ( (JK $JL $KL $YZ %Y[ %Z[ %. z P . z P . z P . z P 0 H f v U m ( ( (zz '{{ '|| 7 f v 0 H $ p U m U U . z . z P . z P . z P . z P . z P v " j ^ g . z P . z P 0 H $ p U m U U [. ,,, -,- V JJJ KJK LJL YYY ZYZ [Y[ ;;; <;< =;= L, [, [K L< [; [[ [[ 2 B w $ $ 4 % % % # 3 C 2 B w $ $ 4 % % % # 3 C zzz {{{ ||| . B|||C zzz {{{ ||| . B|||C . P F l ( 2 K.D0L.D [.D [.Db v < . |. H G H H H H G G G G D U D U D U D U @ P zzzz{{{{ zzzz zzzz{{{{ zzzz{{{{ zzzz zzzz{{{{ zzzz{{{{ zzzz zzzz{{{{ zzzz g l l l l l l l l l l l l l l l l l l l l l G l l l l l Z l l l l l l l l l K K K l l K K l l l K K K l l l l l l l l l l l l l l l YYY E .. ... JJJ JJJ JJJ JJJ JJJ JJJ JJJJzzz zzz zzz c ] zz zz zzz zzz zzz zzz zzz zzz zz zz zz zz zz zz zzz J zJ J z Jz z zz z J Jz ;JJ ,;; ,;; ,,, ;;; ,,, ;;; ,,, ;;; J;; ;;; ,,, ;;; ,,, ;;; ;;; YJJ Y,, JJ ;; ;; JJJ YYY ;;; JJ YY ;; JJJ ;;; JJ ;; JJJ YYY ;;; JJ YY ;; ,,, ;;; ,,, ;;; zzz zzz zzz ,. B @ zzzz zzz G zzz Y. ;,, ;JJ ,,,, B D E ;; ,,, JJJ JJJ ;;; ,,, JJJ JJJ ;;; J, Y, ;, YJ J; Y; J, Y, ;, YJ J; Y; YJJ zz zzz D D D U B,$ B,$ B,$ B,$ B,$ B,$ " " " " " " ,,, YY, YY" YYY YYY" i ,, i JJ i ;; l JJJ l ;;; l ;;; l JJJ l ;;; l ;;; l ;,, l ;;; l ,,, l ,,, l JJJ l ;;; "D. "U. D U z; {; ;z ;{ @ P @ P @ zz {{ zz YYYYZZZZ,,, JJJ YYY ,,, JJJ YYY ;;; ;;; . z J, Y, ;, YJ J, Y, ;, YJ J; Y; J; Y; ;, YJ J; JJJJYJJYYJJYJJJJYJJYYJJYJ;;J;;;;J;;J;;;;J;;JJ;;J,,,,,,, ,, JJJ JJ YYY YY ;;; ;; ,,, JJJ YYY ;;; ,,, JJJ YYY ;;; B B B B B B B B B B B B D .. D @ DD D O O D D D D D D D @ D D @ D D . D F F G G @ cp ` ~ ` x ! # # # $ $ $ ! # $ # # $ $ # # # # $ $ $ $ " " " " 6 ` b @ c @ d A e A f 8A g OA h fA i |A j A k A l A m A n A o B p B q 4B r JB s dB t B u B v B w B x B y C z C { 1C | JC } cC ~ |C C C C C C D &D >D WD pD D D D D D E E 9E RE hE ~E E E E E E F F 2F HF ^F tF F F F ' R E S E T E U F V -F W HF X cF Y ~F Z F [ F \ F ] F ^ G _ .G ` MG a iG b G c G d G e G f G g H h $H i >H j YH k pH l H m H n H o H p H q H r I s 1I a W b W c W d W t a n | ( 8 L X h w - ; O g u - ; J Y h w / ? S c s / = O ] o } " 5 D W f y ' 7 K [ o } " 6 F V j z ! / = K Y g u ( ! < " T # c $ r % & ' ( ) * + , - . / 0 & 1 7 2 I 3 V 4 d 5 r H Q I ` < = > ? @ A B C D E F - G = J p K L M N O P Z [ \ ] ^ % _ 5 ` E a Y b i c y d e f g h i j k 5 l R m p n o p q r s $ t B u ` v ~ w x y z { | 1 } O ~ m = Z w ( D ` | ' 6 E X n 4 M [ l } " Y 7 Z M [ j \ ] ^ _ ` a b c 9 d Y e y f g h i j k 8 l [ m } n o p q r ) s K t m u v w x y z 8 { [ | } } ~ 8 R m # < Y u ; W r 7 S n + K l - O q ? a - O q $ ? Y s + G c ) D _ | % @ [ v . H b { " > [ w : W s ! !! @! b! ! ! ! ! " $" >" W" s" " " " " " # =# \# ~# # # # $ &$ @$ ! Z$ " s$ # $ $ $ % $ & $ ' $ ( % ) 3% * M% + f% , % - % . % / % 0 % 1 & "& 1& @& S& i& & & & & & & ' ' %' 4' C' R' a' p' ' ' ' ' ' ' ' ' R __dmb __dsb __isb _MoveFromCoprocessor _MoveFromCoprocessor2 __builtin_arm_dmb __builtin_arm_dsb __builtin_arm_isb __builtin_adjust_trampoline __builtin_amdgcn_buffer_wbinvl1 __builtin_amdgcn_buffer_wbinvl1_sc __builtin_amdgcn_buffer_wbinvl1_vol __builtin_amdgcn_cubeid __builtin_amdgcn_cubema __builtin_amdgcn_cubesc __builtin_amdgcn_cubetc __builtin_amdgcn_dispatch_ptr __builtin_amdgcn_groupstaticsize __builtin_amdgcn_interp_p1 __builtin_amdgcn_interp_p2 __builtin_amdgcn_kernarg_segment_ptr __builtin_amdgcn_mbcnt_hi __builtin_amdgcn_mbcnt_lo __builtin_amdgcn_queue_ptr __builtin_amdgcn_read_workdim __builtin_amdgcn_s_barrier __builtin_amdgcn_s_dcache_inv __builtin_amdgcn_s_dcache_inv_vol __builtin_amdgcn_s_dcache_wb __builtin_amdgcn_s_dcache_wb_vol __builtin_amdgcn_s_getreg __builtin_amdgcn_s_memrealtime __builtin_amdgcn_s_memtime __builtin_amdgcn_s_sleep __builtin_amdgcn_workgroup_id_x __builtin_amdgcn_workgroup_id_y __builtin_amdgcn_workgroup_id_z __builtin_amdgcn_workitem_id_x __builtin_amdgcn_workitem_id_y __builtin_amdgcn_workitem_id_z __builtin_arm_cdp __builtin_arm_cdp2 __builtin_arm_get_fpscr __builtin_arm_mcr __builtin_arm_mcr2 __builtin_arm_mcrr __builtin_arm_mcrr2 __builtin_arm_mrc __builtin_arm_mrc2 __builtin_arm_qadd __builtin_arm_qsub __builtin_arm_set_fpscr __builtin_arm_ssat __builtin_arm_usat __builtin_bpf_load_byte __builtin_bpf_load_half __builtin_bpf_load_word __builtin_bpf_pseudo __syncthreads __builtin_debugtrap __builtin_unwind_init __builtin_flt_rounds __builtin_HEXAGON_A2_abs __builtin_HEXAGON_A2_absp __builtin_HEXAGON_A2_abssat __builtin_HEXAGON_A2_add __builtin_HEXAGON_A2_addh_h16_hh __builtin_HEXAGON_A2_addh_h16_hl __builtin_HEXAGON_A2_addh_h16_lh __builtin_HEXAGON_A2_addh_h16_ll __builtin_HEXAGON_A2_addh_h16_sat_hh __builtin_HEXAGON_A2_addh_h16_sat_hl __builtin_HEXAGON_A2_addh_h16_sat_lh __builtin_HEXAGON_A2_addh_h16_sat_ll __builtin_HEXAGON_A2_addh_l16_hl __builtin_HEXAGON_A2_addh_l16_ll __builtin_HEXAGON_A2_addh_l16_sat_hl __builtin_HEXAGON_A2_addh_l16_sat_ll __builtin_HEXAGON_A2_addi __builtin_HEXAGON_A2_addp __builtin_HEXAGON_A2_addpsat __builtin_HEXAGON_A2_addsat __builtin_HEXAGON_A2_addsp __builtin_HEXAGON_A2_and __builtin_HEXAGON_A2_andir __builtin_HEXAGON_A2_andp __builtin_HEXAGON_A2_aslh __builtin_HEXAGON_A2_asrh __builtin_HEXAGON_A2_combine_hh __builtin_HEXAGON_A2_combine_hl __builtin_HEXAGON_A2_combine_lh __builtin_HEXAGON_A2_combine_ll __builtin_HEXAGON_A2_combineii __builtin_HEXAGON_A2_combinew __builtin_HEXAGON_A2_max __builtin_HEXAGON_A2_maxp __builtin_HEXAGON_A2_maxu __builtin_HEXAGON_A2_maxup __builtin_HEXAGON_A2_min __builtin_HEXAGON_A2_minp __builtin_HEXAGON_A2_minu __builtin_HEXAGON_A2_minup __builtin_HEXAGON_A2_neg __builtin_HEXAGON_A2_negp __builtin_HEXAGON_A2_negsat __builtin_HEXAGON_A2_not __builtin_HEXAGON_A2_notp __builtin_HEXAGON_A2_or __builtin_HEXAGON_A2_orir __builtin_HEXAGON_A2_orp __builtin_HEXAGON_A2_roundsat __builtin_HEXAGON_A2_sat __builtin_HEXAGON_A2_satb __builtin_HEXAGON_A2_sath __builtin_HEXAGON_A2_satub __builtin_HEXAGON_A2_satuh __builtin_HEXAGON_A2_sub __builtin_HEXAGON_A2_subh_h16_hh __builtin_HEXAGON_A2_subh_h16_hl __builtin_HEXAGON_A2_subh_h16_lh __builtin_HEXAGON_A2_subh_h16_ll __builtin_HEXAGON_A2_subh_h16_sat_hh __builtin_HEXAGON_A2_subh_h16_sat_hl __builtin_HEXAGON_A2_subh_h16_sat_lh __builtin_HEXAGON_A2_subh_h16_sat_ll __builtin_HEXAGON_A2_subh_l16_hl __builtin_HEXAGON_A2_subh_l16_ll __builtin_HEXAGON_A2_subh_l16_sat_hl __builtin_HEXAGON_A2_subh_l16_sat_ll __builtin_HEXAGON_A2_subp __builtin_HEXAGON_A2_subri __builtin_HEXAGON_A2_subsat __builtin_HEXAGON_A2_svaddh __builtin_HEXAGON_A2_svaddhs __builtin_HEXAGON_A2_svadduhs __builtin_HEXAGON_A2_svavgh __builtin_HEXAGON_A2_svavghs __builtin_HEXAGON_A2_svnavgh __builtin_HEXAGON_A2_svsubh __builtin_HEXAGON_A2_svsubhs __builtin_HEXAGON_A2_svsubuhs __builtin_HEXAGON_A2_swiz __builtin_HEXAGON_A2_sxtb __builtin_HEXAGON_A2_sxth __builtin_HEXAGON_A2_sxtw __builtin_HEXAGON_A2_tfr __builtin_HEXAGON_A2_tfrih __builtin_HEXAGON_A2_tfril __builtin_HEXAGON_A2_tfrp __builtin_HEXAGON_A2_tfrpi __builtin_HEXAGON_A2_tfrsi __builtin_HEXAGON_A2_vabsh __builtin_HEXAGON_A2_vabshsat __builtin_HEXAGON_A2_vabsw __builtin_HEXAGON_A2_vabswsat __builtin_HEXAGON_A2_vaddb_map __builtin_HEXAGON_A2_vaddh __builtin_HEXAGON_A2_vaddhs __builtin_HEXAGON_A2_vaddub __builtin_HEXAGON_A2_vaddubs __builtin_HEXAGON_A2_vadduhs __builtin_HEXAGON_A2_vaddw __builtin_HEXAGON_A2_vaddws __builtin_HEXAGON_A2_vavgh __builtin_HEXAGON_A2_vavghcr __builtin_HEXAGON_A2_vavghr __builtin_HEXAGON_A2_vavgub __builtin_HEXAGON_A2_vavgubr __builtin_HEXAGON_A2_vavguh __builtin_HEXAGON_A2_vavguhr __builtin_HEXAGON_A2_vavguw __builtin_HEXAGON_A2_vavguwr __builtin_HEXAGON_A2_vavgw __builtin_HEXAGON_A2_vavgwcr __builtin_HEXAGON_A2_vavgwr __builtin_HEXAGON_A2_vcmpbeq __builtin_HEXAGON_A2_vcmpbgtu __builtin_HEXAGON_A2_vcmpheq __builtin_HEXAGON_A2_vcmphgt __builtin_HEXAGON_A2_vcmphgtu __builtin_HEXAGON_A2_vcmpweq __builtin_HEXAGON_A2_vcmpwgt __builtin_HEXAGON_A2_vcmpwgtu __builtin_HEXAGON_A2_vconj __builtin_HEXAGON_A2_vmaxb __builtin_HEXAGON_A2_vmaxh __builtin_HEXAGON_A2_vmaxub __builtin_HEXAGON_A2_vmaxuh __builtin_HEXAGON_A2_vmaxuw __builtin_HEXAGON_A2_vmaxw __builtin_HEXAGON_A2_vminb __builtin_HEXAGON_A2_vminh __builtin_HEXAGON_A2_vminub __builtin_HEXAGON_A2_vminuh __builtin_HEXAGON_A2_vminuw __builtin_HEXAGON_A2_vminw __builtin_HEXAGON_A2_vnavgh __builtin_HEXAGON_A2_vnavghcr __builtin_HEXAGON_A2_vnavghr __builtin_HEXAGON_A2_vnavgw __builtin_HEXAGON_A2_vnavgwcr __builtin_HEXAGON_A2_vnavgwr __builtin_HEXAGON_A2_vraddub __builtin_HEXAGON_A2_vraddub_acc __builtin_HEXAGON_A2_vrsadub __builtin_HEXAGON_A2_vrsadub_acc __builtin_HEXAGON_A2_vsubb_map __builtin_HEXAGON_A2_vsubh __builtin_HEXAGON_A2_vsubhs __builtin_HEXAGON_A2_vsubub __builtin_HEXAGON_A2_vsububs __builtin_HEXAGON_A2_vsubuhs __builtin_HEXAGON_A2_vsubw __builtin_HEXAGON_A2_vsubws __builtin_HEXAGON_A2_xor __builtin_HEXAGON_A2_xorp __builtin_HEXAGON_A2_zxtb __builtin_HEXAGON_A2_zxth __builtin_HEXAGON_A4_andn __builtin_HEXAGON_A4_andnp __builtin_HEXAGON_A4_bitsplit __builtin_HEXAGON_A4_bitspliti __builtin_HEXAGON_A4_boundscheck __builtin_HEXAGON_A4_cmpbeq __builtin_HEXAGON_A4_cmpbeqi __builtin_HEXAGON_A4_cmpbgt __builtin_HEXAGON_A4_cmpbgti __builtin_HEXAGON_A4_cmpbgtu __builtin_HEXAGON_A4_cmpbgtui __builtin_HEXAGON_A4_cmpheq __builtin_HEXAGON_A4_cmpheqi __builtin_HEXAGON_A4_cmphgt __builtin_HEXAGON_A4_cmphgti __builtin_HEXAGON_A4_cmphgtu __builtin_HEXAGON_A4_cmphgtui __builtin_HEXAGON_A4_combineir __builtin_HEXAGON_A4_combineri __builtin_HEXAGON_A4_cround_ri __builtin_HEXAGON_A4_cround_rr __builtin_HEXAGON_A4_modwrapu __builtin_HEXAGON_A4_orn __builtin_HEXAGON_A4_ornp __builtin_HEXAGON_A4_rcmpeq __builtin_HEXAGON_A4_rcmpeqi __builtin_HEXAGON_A4_rcmpneq __builtin_HEXAGON_A4_rcmpneqi __builtin_HEXAGON_A4_round_ri __builtin_HEXAGON_A4_round_ri_sat __builtin_HEXAGON_A4_round_rr __builtin_HEXAGON_A4_round_rr_sat __builtin_HEXAGON_A4_tlbmatch __builtin_HEXAGON_A4_vcmpbeq_any __builtin_HEXAGON_A4_vcmpbeqi __builtin_HEXAGON_A4_vcmpbgt __builtin_HEXAGON_A4_vcmpbgti __builtin_HEXAGON_A4_vcmpbgtui __builtin_HEXAGON_A4_vcmpheqi __builtin_HEXAGON_A4_vcmphgti __builtin_HEXAGON_A4_vcmphgtui __builtin_HEXAGON_A4_vcmpweqi __builtin_HEXAGON_A4_vcmpwgti __builtin_HEXAGON_A4_vcmpwgtui __builtin_HEXAGON_A4_vrmaxh __builtin_HEXAGON_A4_vrmaxuh __builtin_HEXAGON_A4_vrmaxuw __builtin_HEXAGON_A4_vrmaxw __builtin_HEXAGON_A4_vrminh __builtin_HEXAGON_A4_vrminuh __builtin_HEXAGON_A4_vrminuw __builtin_HEXAGON_A4_vrminw __builtin_HEXAGON_A5_vaddhubs __builtin_HEXAGON_C2_all8 __builtin_HEXAGON_C2_and __builtin_HEXAGON_C2_andn __builtin_HEXAGON_C2_any8 __builtin_HEXAGON_C2_bitsclr __builtin_HEXAGON_C2_bitsclri __builtin_HEXAGON_C2_bitsset __builtin_HEXAGON_C2_cmpeq __builtin_HEXAGON_C2_cmpeqi __builtin_HEXAGON_C2_cmpeqp __builtin_HEXAGON_C2_cmpgei __builtin_HEXAGON_C2_cmpgeui __builtin_HEXAGON_C2_cmpgt __builtin_HEXAGON_C2_cmpgti __builtin_HEXAGON_C2_cmpgtp __builtin_HEXAGON_C2_cmpgtu __builtin_HEXAGON_C2_cmpgtui __builtin_HEXAGON_C2_cmpgtup __builtin_HEXAGON_C2_cmplt __builtin_HEXAGON_C2_cmpltu __builtin_HEXAGON_C2_mask __builtin_HEXAGON_C2_mux __builtin_HEXAGON_C2_muxii __builtin_HEXAGON_C2_muxir __builtin_HEXAGON_C2_muxri __builtin_HEXAGON_C2_not __builtin_HEXAGON_C2_or __builtin_HEXAGON_C2_orn __builtin_HEXAGON_C2_pxfer_map __builtin_HEXAGON_C2_tfrpr __builtin_HEXAGON_C2_tfrrp __builtin_HEXAGON_C2_vitpack __builtin_HEXAGON_C2_vmux __builtin_HEXAGON_C2_xor __builtin_HEXAGON_C4_and_and __builtin_HEXAGON_C4_and_andn __builtin_HEXAGON_C4_and_or __builtin_HEXAGON_C4_and_orn __builtin_HEXAGON_C4_cmplte __builtin_HEXAGON_C4_cmpltei __builtin_HEXAGON_C4_cmplteu __builtin_HEXAGON_C4_cmplteui __builtin_HEXAGON_C4_cmpneq __builtin_HEXAGON_C4_cmpneqi __builtin_HEXAGON_C4_fastcorner9 __builtin_HEXAGON_C4_fastcorner9_not __builtin_HEXAGON_C4_nbitsclr __builtin_HEXAGON_C4_nbitsclri __builtin_HEXAGON_C4_nbitsset __builtin_HEXAGON_C4_or_and __builtin_HEXAGON_C4_or_andn __builtin_HEXAGON_C4_or_or __builtin_HEXAGON_C4_or_orn __builtin_HEXAGON_F2_conv_d2df __builtin_HEXAGON_F2_conv_d2sf __builtin_HEXAGON_F2_conv_df2d __builtin_HEXAGON_F2_conv_df2d_chop __builtin_HEXAGON_F2_conv_df2sf __builtin_HEXAGON_F2_conv_df2ud __builtin_HEXAGON_F2_conv_df2ud_chop __builtin_HEXAGON_F2_conv_df2uw __builtin_HEXAGON_F2_conv_df2uw_chop __builtin_HEXAGON_F2_conv_df2w __builtin_HEXAGON_F2_conv_df2w_chop __builtin_HEXAGON_F2_conv_sf2d __builtin_HEXAGON_F2_conv_sf2d_chop __builtin_HEXAGON_F2_conv_sf2df __builtin_HEXAGON_F2_conv_sf2ud __builtin_HEXAGON_F2_conv_sf2ud_chop __builtin_HEXAGON_F2_conv_sf2uw __builtin_HEXAGON_F2_conv_sf2uw_chop __builtin_HEXAGON_F2_conv_sf2w __builtin_HEXAGON_F2_conv_sf2w_chop __builtin_HEXAGON_F2_conv_ud2df __builtin_HEXAGON_F2_conv_ud2sf __builtin_HEXAGON_F2_conv_uw2df __builtin_HEXAGON_F2_conv_uw2sf __builtin_HEXAGON_F2_conv_w2df __builtin_HEXAGON_F2_conv_w2sf __builtin_HEXAGON_F2_dfclass __builtin_HEXAGON_F2_dfcmpeq __builtin_HEXAGON_F2_dfcmpge __builtin_HEXAGON_F2_dfcmpgt __builtin_HEXAGON_F2_dfcmpuo __builtin_HEXAGON_F2_dfimm_n __builtin_HEXAGON_F2_dfimm_p __builtin_HEXAGON_F2_sfadd __builtin_HEXAGON_F2_sfclass __builtin_HEXAGON_F2_sfcmpeq __builtin_HEXAGON_F2_sfcmpge __builtin_HEXAGON_F2_sfcmpgt __builtin_HEXAGON_F2_sfcmpuo __builtin_HEXAGON_F2_sffixupd __builtin_HEXAGON_F2_sffixupn __builtin_HEXAGON_F2_sffixupr __builtin_HEXAGON_F2_sffma __builtin_HEXAGON_F2_sffma_lib __builtin_HEXAGON_F2_sffma_sc __builtin_HEXAGON_F2_sffms __builtin_HEXAGON_F2_sffms_lib __builtin_HEXAGON_F2_sfimm_n __builtin_HEXAGON_F2_sfimm_p __builtin_HEXAGON_F2_sfmax __builtin_HEXAGON_F2_sfmin __builtin_HEXAGON_F2_sfmpy __builtin_HEXAGON_F2_sfsub __builtin_HEXAGON_L2_loadw_locked __builtin_HEXAGON_L4_loadd_locked __builtin_HEXAGON_M2_acci __builtin_HEXAGON_M2_accii __builtin_HEXAGON_M2_cmaci_s0 __builtin_HEXAGON_M2_cmacr_s0 __builtin_HEXAGON_M2_cmacs_s0 __builtin_HEXAGON_M2_cmacs_s1 __builtin_HEXAGON_M2_cmacsc_s0 __builtin_HEXAGON_M2_cmacsc_s1 __builtin_HEXAGON_M2_cmpyi_s0 __builtin_HEXAGON_M2_cmpyr_s0 __builtin_HEXAGON_M2_cmpyrs_s0 __builtin_HEXAGON_M2_cmpyrs_s1 __builtin_HEXAGON_M2_cmpyrsc_s0 __builtin_HEXAGON_M2_cmpyrsc_s1 __builtin_HEXAGON_M2_cmpys_s0 __builtin_HEXAGON_M2_cmpys_s1 __builtin_HEXAGON_M2_cmpysc_s0 __builtin_HEXAGON_M2_cmpysc_s1 __builtin_HEXAGON_M2_cnacs_s0 __builtin_HEXAGON_M2_cnacs_s1 __builtin_HEXAGON_M2_cnacsc_s0 __builtin_HEXAGON_M2_cnacsc_s1 __builtin_HEXAGON_M2_dpmpyss_acc_s0 __builtin_HEXAGON_M2_dpmpyss_nac_s0 __builtin_HEXAGON_M2_dpmpyss_rnd_s0 __builtin_HEXAGON_M2_dpmpyss_s0 __builtin_HEXAGON_M2_dpmpyuu_acc_s0 __builtin_HEXAGON_M2_dpmpyuu_nac_s0 __builtin_HEXAGON_M2_dpmpyuu_s0 __builtin_HEXAGON_M2_hmmpyh_rs1 __builtin_HEXAGON_M2_hmmpyh_s1 __builtin_HEXAGON_M2_hmmpyl_rs1 __builtin_HEXAGON_M2_hmmpyl_s1 __builtin_HEXAGON_M2_maci __builtin_HEXAGON_M2_macsin __builtin_HEXAGON_M2_macsip __builtin_HEXAGON_M2_mmachs_rs0 __builtin_HEXAGON_M2_mmachs_rs1 __builtin_HEXAGON_M2_mmachs_s0 __builtin_HEXAGON_M2_mmachs_s1 __builtin_HEXAGON_M2_mmacls_rs0 __builtin_HEXAGON_M2_mmacls_rs1 __builtin_HEXAGON_M2_mmacls_s0 __builtin_HEXAGON_M2_mmacls_s1 __builtin_HEXAGON_M2_mmacuhs_rs0 __builtin_HEXAGON_M2_mmacuhs_rs1 __builtin_HEXAGON_M2_mmacuhs_s0 __builtin_HEXAGON_M2_mmacuhs_s1 __builtin_HEXAGON_M2_mmaculs_rs0 __builtin_HEXAGON_M2_mmaculs_rs1 __builtin_HEXAGON_M2_mmaculs_s0 __builtin_HEXAGON_M2_mmaculs_s1 __builtin_HEXAGON_M2_mmpyh_rs0 __builtin_HEXAGON_M2_mmpyh_rs1 __builtin_HEXAGON_M2_mmpyh_s0 __builtin_HEXAGON_M2_mmpyh_s1 __builtin_HEXAGON_M2_mmpyl_rs0 __builtin_HEXAGON_M2_mmpyl_rs1 __builtin_HEXAGON_M2_mmpyl_s0 __builtin_HEXAGON_M2_mmpyl_s1 __builtin_HEXAGON_M2_mmpyuh_rs0 __builtin_HEXAGON_M2_mmpyuh_rs1 __builtin_HEXAGON_M2_mmpyuh_s0 __builtin_HEXAGON_M2_mmpyuh_s1 __builtin_HEXAGON_M2_mmpyul_rs0 __builtin_HEXAGON_M2_mmpyul_rs1 __builtin_HEXAGON_M2_mmpyul_s0 __builtin_HEXAGON_M2_mmpyul_s1 __builtin_HEXAGON_M2_mpy_acc_hh_s0 __builtin_HEXAGON_M2_mpy_acc_hh_s1 __builtin_HEXAGON_M2_mpy_acc_hl_s0 __builtin_HEXAGON_M2_mpy_acc_hl_s1 __builtin_HEXAGON_M2_mpy_acc_lh_s0 __builtin_HEXAGON_M2_mpy_acc_lh_s1 __builtin_HEXAGON_M2_mpy_acc_ll_s0 __builtin_HEXAGON_M2_mpy_acc_ll_s1 __builtin_HEXAGON_M2_mpy_acc_sat_hh_s0 __builtin_HEXAGON_M2_mpy_acc_sat_hh_s1 __builtin_HEXAGON_M2_mpy_acc_sat_hl_s0 __builtin_HEXAGON_M2_mpy_acc_sat_hl_s1 __builtin_HEXAGON_M2_mpy_acc_sat_lh_s0 __builtin_HEXAGON_M2_mpy_acc_sat_lh_s1 __builtin_HEXAGON_M2_mpy_acc_sat_ll_s0 __builtin_HEXAGON_M2_mpy_acc_sat_ll_s1 __builtin_HEXAGON_M2_mpy_hh_s0 __builtin_HEXAGON_M2_mpy_hh_s1 __builtin_HEXAGON_M2_mpy_hl_s0 __builtin_HEXAGON_M2_mpy_hl_s1 __builtin_HEXAGON_M2_mpy_lh_s0 __builtin_HEXAGON_M2_mpy_lh_s1 __builtin_HEXAGON_M2_mpy_ll_s0 __builtin_HEXAGON_M2_mpy_ll_s1 __builtin_HEXAGON_M2_mpy_nac_hh_s0 __builtin_HEXAGON_M2_mpy_nac_hh_s1 __builtin_HEXAGON_M2_mpy_nac_hl_s0 __builtin_HEXAGON_M2_mpy_nac_hl_s1 __builtin_HEXAGON_M2_mpy_nac_lh_s0 __builtin_HEXAGON_M2_mpy_nac_lh_s1 __builtin_HEXAGON_M2_mpy_nac_ll_s0 __builtin_HEXAGON_M2_mpy_nac_ll_s1 __builtin_HEXAGON_M2_mpy_nac_sat_hh_s0 __builtin_HEXAGON_M2_mpy_nac_sat_hh_s1 __builtin_HEXAGON_M2_mpy_nac_sat_hl_s0 __builtin_HEXAGON_M2_mpy_nac_sat_hl_s1 __builtin_HEXAGON_M2_mpy_nac_sat_lh_s0 __builtin_HEXAGON_M2_mpy_nac_sat_lh_s1 __builtin_HEXAGON_M2_mpy_nac_sat_ll_s0 __builtin_HEXAGON_M2_mpy_nac_sat_ll_s1 __builtin_HEXAGON_M2_mpy_rnd_hh_s0 __builtin_HEXAGON_M2_mpy_rnd_hh_s1 __builtin_HEXAGON_M2_mpy_rnd_hl_s0 __builtin_HEXAGON_M2_mpy_rnd_hl_s1 __builtin_HEXAGON_M2_mpy_rnd_lh_s0 __builtin_HEXAGON_M2_mpy_rnd_lh_s1 __builtin_HEXAGON_M2_mpy_rnd_ll_s0 __builtin_HEXAGON_M2_mpy_rnd_ll_s1 __builtin_HEXAGON_M2_mpy_sat_hh_s0 __builtin_HEXAGON_M2_mpy_sat_hh_s1 __builtin_HEXAGON_M2_mpy_sat_hl_s0 __builtin_HEXAGON_M2_mpy_sat_hl_s1 __builtin_HEXAGON_M2_mpy_sat_lh_s0 __builtin_HEXAGON_M2_mpy_sat_lh_s1 __builtin_HEXAGON_M2_mpy_sat_ll_s0 __builtin_HEXAGON_M2_mpy_sat_ll_s1 __builtin_HEXAGON_M2_mpy_sat_rnd_hh_s0 __builtin_HEXAGON_M2_mpy_sat_rnd_hh_s1 __builtin_HEXAGON_M2_mpy_sat_rnd_hl_s0 __builtin_HEXAGON_M2_mpy_sat_rnd_hl_s1 __builtin_HEXAGON_M2_mpy_sat_rnd_lh_s0 __builtin_HEXAGON_M2_mpy_sat_rnd_lh_s1 __builtin_HEXAGON_M2_mpy_sat_rnd_ll_s0 __builtin_HEXAGON_M2_mpy_sat_rnd_ll_s1 __builtin_HEXAGON_M2_mpy_up __builtin_HEXAGON_M2_mpy_up_s1 __builtin_HEXAGON_M2_mpy_up_s1_sat __builtin_HEXAGON_M2_mpyd_acc_hh_s0 __builtin_HEXAGON_M2_mpyd_acc_hh_s1 __builtin_HEXAGON_M2_mpyd_acc_hl_s0 __builtin_HEXAGON_M2_mpyd_acc_hl_s1 __builtin_HEXAGON_M2_mpyd_acc_lh_s0 __builtin_HEXAGON_M2_mpyd_acc_lh_s1 __builtin_HEXAGON_M2_mpyd_acc_ll_s0 __builtin_HEXAGON_M2_mpyd_acc_ll_s1 __builtin_HEXAGON_M2_mpyd_hh_s0 __builtin_HEXAGON_M2_mpyd_hh_s1 __builtin_HEXAGON_M2_mpyd_hl_s0 __builtin_HEXAGON_M2_mpyd_hl_s1 __builtin_HEXAGON_M2_mpyd_lh_s0 __builtin_HEXAGON_M2_mpyd_lh_s1 __builtin_HEXAGON_M2_mpyd_ll_s0 __builtin_HEXAGON_M2_mpyd_ll_s1 __builtin_HEXAGON_M2_mpyd_nac_hh_s0 __builtin_HEXAGON_M2_mpyd_nac_hh_s1 __builtin_HEXAGON_M2_mpyd_nac_hl_s0 __builtin_HEXAGON_M2_mpyd_nac_hl_s1 __builtin_HEXAGON_M2_mpyd_nac_lh_s0 __builtin_HEXAGON_M2_mpyd_nac_lh_s1 __builtin_HEXAGON_M2_mpyd_nac_ll_s0 __builtin_HEXAGON_M2_mpyd_nac_ll_s1 __builtin_HEXAGON_M2_mpyd_rnd_hh_s0 __builtin_HEXAGON_M2_mpyd_rnd_hh_s1 __builtin_HEXAGON_M2_mpyd_rnd_hl_s0 __builtin_HEXAGON_M2_mpyd_rnd_hl_s1 __builtin_HEXAGON_M2_mpyd_rnd_lh_s0 __builtin_HEXAGON_M2_mpyd_rnd_lh_s1 __builtin_HEXAGON_M2_mpyd_rnd_ll_s0 __builtin_HEXAGON_M2_mpyd_rnd_ll_s1 __builtin_HEXAGON_M2_mpyi __builtin_HEXAGON_M2_mpysmi __builtin_HEXAGON_M2_mpysu_up __builtin_HEXAGON_M2_mpyu_acc_hh_s0 __builtin_HEXAGON_M2_mpyu_acc_hh_s1 __builtin_HEXAGON_M2_mpyu_acc_hl_s0 __builtin_HEXAGON_M2_mpyu_acc_hl_s1 __builtin_HEXAGON_M2_mpyu_acc_lh_s0 __builtin_HEXAGON_M2_mpyu_acc_lh_s1 __builtin_HEXAGON_M2_mpyu_acc_ll_s0 __builtin_HEXAGON_M2_mpyu_acc_ll_s1 __builtin_HEXAGON_M2_mpyu_hh_s0 __builtin_HEXAGON_M2_mpyu_hh_s1 __builtin_HEXAGON_M2_mpyu_hl_s0 __builtin_HEXAGON_M2_mpyu_hl_s1 __builtin_HEXAGON_M2_mpyu_lh_s0 __builtin_HEXAGON_M2_mpyu_lh_s1 __builtin_HEXAGON_M2_mpyu_ll_s0 __builtin_HEXAGON_M2_mpyu_ll_s1 __builtin_HEXAGON_M2_mpyu_nac_hh_s0 __builtin_HEXAGON_M2_mpyu_nac_hh_s1 __builtin_HEXAGON_M2_mpyu_nac_hl_s0 __builtin_HEXAGON_M2_mpyu_nac_hl_s1 __builtin_HEXAGON_M2_mpyu_nac_lh_s0 __builtin_HEXAGON_M2_mpyu_nac_lh_s1 __builtin_HEXAGON_M2_mpyu_nac_ll_s0 __builtin_HEXAGON_M2_mpyu_nac_ll_s1 __builtin_HEXAGON_M2_mpyu_up __builtin_HEXAGON_M2_mpyud_acc_hh_s0 __builtin_HEXAGON_M2_mpyud_acc_hh_s1 __builtin_HEXAGON_M2_mpyud_acc_hl_s0 __builtin_HEXAGON_M2_mpyud_acc_hl_s1 __builtin_HEXAGON_M2_mpyud_acc_lh_s0 __builtin_HEXAGON_M2_mpyud_acc_lh_s1 __builtin_HEXAGON_M2_mpyud_acc_ll_s0 __builtin_HEXAGON_M2_mpyud_acc_ll_s1 __builtin_HEXAGON_M2_mpyud_hh_s0 __builtin_HEXAGON_M2_mpyud_hh_s1 __builtin_HEXAGON_M2_mpyud_hl_s0 __builtin_HEXAGON_M2_mpyud_hl_s1 __builtin_HEXAGON_M2_mpyud_lh_s0 __builtin_HEXAGON_M2_mpyud_lh_s1 __builtin_HEXAGON_M2_mpyud_ll_s0 __builtin_HEXAGON_M2_mpyud_ll_s1 __builtin_HEXAGON_M2_mpyud_nac_hh_s0 __builtin_HEXAGON_M2_mpyud_nac_hh_s1 __builtin_HEXAGON_M2_mpyud_nac_hl_s0 __builtin_HEXAGON_M2_mpyud_nac_hl_s1 __builtin_HEXAGON_M2_mpyud_nac_lh_s0 __builtin_HEXAGON_M2_mpyud_nac_lh_s1 __builtin_HEXAGON_M2_mpyud_nac_ll_s0 __builtin_HEXAGON_M2_mpyud_nac_ll_s1 __builtin_HEXAGON_M2_mpyui __builtin_HEXAGON_M2_nacci __builtin_HEXAGON_M2_naccii __builtin_HEXAGON_M2_subacc __builtin_HEXAGON_M2_vabsdiffh __builtin_HEXAGON_M2_vabsdiffw __builtin_HEXAGON_M2_vcmac_s0_sat_i __builtin_HEXAGON_M2_vcmac_s0_sat_r __builtin_HEXAGON_M2_vcmpy_s0_sat_i __builtin_HEXAGON_M2_vcmpy_s0_sat_r __builtin_HEXAGON_M2_vcmpy_s1_sat_i __builtin_HEXAGON_M2_vcmpy_s1_sat_r __builtin_HEXAGON_M2_vdmacs_s0 __builtin_HEXAGON_M2_vdmacs_s1 __builtin_HEXAGON_M2_vdmpyrs_s0 __builtin_HEXAGON_M2_vdmpyrs_s1 __builtin_HEXAGON_M2_vdmpys_s0 __builtin_HEXAGON_M2_vdmpys_s1 __builtin_HEXAGON_M2_vmac2 __builtin_HEXAGON_M2_vmac2es __builtin_HEXAGON_M2_vmac2es_s0 __builtin_HEXAGON_M2_vmac2es_s1 __builtin_HEXAGON_M2_vmac2s_s0 __builtin_HEXAGON_M2_vmac2s_s1 __builtin_HEXAGON_M2_vmac2su_s0 __builtin_HEXAGON_M2_vmac2su_s1 __builtin_HEXAGON_M2_vmpy2es_s0 __builtin_HEXAGON_M2_vmpy2es_s1 __builtin_HEXAGON_M2_vmpy2s_s0 __builtin_HEXAGON_M2_vmpy2s_s0pack __builtin_HEXAGON_M2_vmpy2s_s1 __builtin_HEXAGON_M2_vmpy2s_s1pack __builtin_HEXAGON_M2_vmpy2su_s0 __builtin_HEXAGON_M2_vmpy2su_s1 __builtin_HEXAGON_M2_vraddh __builtin_HEXAGON_M2_vradduh __builtin_HEXAGON_M2_vrcmaci_s0 __builtin_HEXAGON_M2_vrcmaci_s0c __builtin_HEXAGON_M2_vrcmacr_s0 __builtin_HEXAGON_M2_vrcmacr_s0c __builtin_HEXAGON_M2_vrcmpyi_s0 __builtin_HEXAGON_M2_vrcmpyi_s0c __builtin_HEXAGON_M2_vrcmpyr_s0 __builtin_HEXAGON_M2_vrcmpyr_s0c __builtin_HEXAGON_M2_vrcmpys_acc_s1 __builtin_HEXAGON_M2_vrcmpys_s1 __builtin_HEXAGON_M2_vrcmpys_s1rp __builtin_HEXAGON_M2_vrmac_s0 __builtin_HEXAGON_M2_vrmpy_s0 __builtin_HEXAGON_M2_xor_xacc __builtin_HEXAGON_M4_and_and __builtin_HEXAGON_M4_and_andn __builtin_HEXAGON_M4_and_or __builtin_HEXAGON_M4_and_xor __builtin_HEXAGON_M4_cmpyi_wh __builtin_HEXAGON_M4_cmpyi_whc __builtin_HEXAGON_M4_cmpyr_wh __builtin_HEXAGON_M4_cmpyr_whc __builtin_HEXAGON_M4_mac_up_s1_sat __builtin_HEXAGON_M4_mpyri_addi __builtin_HEXAGON_M4_mpyri_addr __builtin_HEXAGON_M4_mpyri_addr_u2 __builtin_HEXAGON_M4_mpyrr_addi __builtin_HEXAGON_M4_mpyrr_addr __builtin_HEXAGON_M4_nac_up_s1_sat __builtin_HEXAGON_M4_or_and __builtin_HEXAGON_M4_or_andn __builtin_HEXAGON_M4_or_or __builtin_HEXAGON_M4_or_xor __builtin_HEXAGON_M4_pmpyw __builtin_HEXAGON_M4_pmpyw_acc __builtin_HEXAGON_M4_vpmpyh __builtin_HEXAGON_M4_vpmpyh_acc __builtin_HEXAGON_M4_vrmpyeh_acc_s0 __builtin_HEXAGON_M4_vrmpyeh_acc_s1 __builtin_HEXAGON_M4_vrmpyeh_s0 __builtin_HEXAGON_M4_vrmpyeh_s1 __builtin_HEXAGON_M4_vrmpyoh_acc_s0 __builtin_HEXAGON_M4_vrmpyoh_acc_s1 __builtin_HEXAGON_M4_vrmpyoh_s0 __builtin_HEXAGON_M4_vrmpyoh_s1 __builtin_HEXAGON_M4_xor_and __builtin_HEXAGON_M4_xor_andn __builtin_HEXAGON_M4_xor_or __builtin_HEXAGON_M4_xor_xacc __builtin_HEXAGON_M5_vdmacbsu __builtin_HEXAGON_M5_vdmpybsu __builtin_HEXAGON_M5_vmacbsu __builtin_HEXAGON_M5_vmacbuu __builtin_HEXAGON_M5_vmpybsu __builtin_HEXAGON_M5_vmpybuu __builtin_HEXAGON_M5_vrmacbsu __builtin_HEXAGON_M5_vrmacbuu __builtin_HEXAGON_M5_vrmpybsu __builtin_HEXAGON_M5_vrmpybuu __builtin_HEXAGON_M6_vabsdiffb __builtin_HEXAGON_M6_vabsdiffub __builtin_HEXAGON_S2_addasl_rrri __builtin_HEXAGON_S2_asl_i_p __builtin_HEXAGON_S2_asl_i_p_acc __builtin_HEXAGON_S2_asl_i_p_and __builtin_HEXAGON_S2_asl_i_p_nac __builtin_HEXAGON_S2_asl_i_p_or __builtin_HEXAGON_S2_asl_i_p_xacc __builtin_HEXAGON_S2_asl_i_r __builtin_HEXAGON_S2_asl_i_r_acc __builtin_HEXAGON_S2_asl_i_r_and __builtin_HEXAGON_S2_asl_i_r_nac __builtin_HEXAGON_S2_asl_i_r_or __builtin_HEXAGON_S2_asl_i_r_sat __builtin_HEXAGON_S2_asl_i_r_xacc __builtin_HEXAGON_S2_asl_i_vh __builtin_HEXAGON_S2_asl_i_vw __builtin_HEXAGON_S2_asl_r_p __builtin_HEXAGON_S2_asl_r_p_acc __builtin_HEXAGON_S2_asl_r_p_and __builtin_HEXAGON_S2_asl_r_p_nac __builtin_HEXAGON_S2_asl_r_p_or __builtin_HEXAGON_S2_asl_r_p_xor __builtin_HEXAGON_S2_asl_r_r __builtin_HEXAGON_S2_asl_r_r_acc __builtin_HEXAGON_S2_asl_r_r_and __builtin_HEXAGON_S2_asl_r_r_nac __builtin_HEXAGON_S2_asl_r_r_or __builtin_HEXAGON_S2_asl_r_r_sat __builtin_HEXAGON_S2_asl_r_vh __builtin_HEXAGON_S2_asl_r_vw __builtin_HEXAGON_S2_asr_i_p __builtin_HEXAGON_S2_asr_i_p_acc __builtin_HEXAGON_S2_asr_i_p_and __builtin_HEXAGON_S2_asr_i_p_nac __builtin_HEXAGON_S2_asr_i_p_or __builtin_HEXAGON_S2_asr_i_p_rnd __builtin_HEXAGON_S2_asr_i_p_rnd_goodsyntax __builtin_HEXAGON_S2_asr_i_r __builtin_HEXAGON_S2_asr_i_r_acc __builtin_HEXAGON_S2_asr_i_r_and __builtin_HEXAGON_S2_asr_i_r_nac __builtin_HEXAGON_S2_asr_i_r_or __builtin_HEXAGON_S2_asr_i_r_rnd __builtin_HEXAGON_S2_asr_i_r_rnd_goodsyntax __builtin_HEXAGON_S2_asr_i_svw_trun __builtin_HEXAGON_S2_asr_i_vh __builtin_HEXAGON_S2_asr_i_vw __builtin_HEXAGON_S2_asr_r_p __builtin_HEXAGON_S2_asr_r_p_acc __builtin_HEXAGON_S2_asr_r_p_and __builtin_HEXAGON_S2_asr_r_p_nac __builtin_HEXAGON_S2_asr_r_p_or __builtin_HEXAGON_S2_asr_r_p_xor __builtin_HEXAGON_S2_asr_r_r __builtin_HEXAGON_S2_asr_r_r_acc __builtin_HEXAGON_S2_asr_r_r_and __builtin_HEXAGON_S2_asr_r_r_nac __builtin_HEXAGON_S2_asr_r_r_or __builtin_HEXAGON_S2_asr_r_r_sat __builtin_HEXAGON_S2_asr_r_svw_trun __builtin_HEXAGON_S2_asr_r_vh __builtin_HEXAGON_S2_asr_r_vw __builtin_HEXAGON_S2_brev __builtin_HEXAGON_S2_brevp __builtin_HEXAGON_S2_cabacencbin __builtin_HEXAGON_S2_cl0 __builtin_HEXAGON_S2_cl0p __builtin_HEXAGON_S2_cl1 __builtin_HEXAGON_S2_cl1p __builtin_HEXAGON_S2_clb __builtin_HEXAGON_S2_clbnorm __builtin_HEXAGON_S2_clbp __builtin_HEXAGON_S2_clrbit_i __builtin_HEXAGON_S2_clrbit_r __builtin_HEXAGON_S2_ct0 __builtin_HEXAGON_S2_ct0p __builtin_HEXAGON_S2_ct1 __builtin_HEXAGON_S2_ct1p __builtin_HEXAGON_S2_deinterleave __builtin_HEXAGON_S2_extractu __builtin_HEXAGON_S2_extractu_rp __builtin_HEXAGON_S2_extractup __builtin_HEXAGON_S2_extractup_rp __builtin_HEXAGON_S2_insert __builtin_HEXAGON_S2_insert_rp __builtin_HEXAGON_S2_insertp __builtin_HEXAGON_S2_insertp_rp __builtin_HEXAGON_S2_interleave __builtin_HEXAGON_S2_lfsp __builtin_HEXAGON_S2_lsl_r_p __builtin_HEXAGON_S2_lsl_r_p_acc __builtin_HEXAGON_S2_lsl_r_p_and __builtin_HEXAGON_S2_lsl_r_p_nac __builtin_HEXAGON_S2_lsl_r_p_or __builtin_HEXAGON_S2_lsl_r_p_xor __builtin_HEXAGON_S2_lsl_r_r __builtin_HEXAGON_S2_lsl_r_r_acc __builtin_HEXAGON_S2_lsl_r_r_and __builtin_HEXAGON_S2_lsl_r_r_nac __builtin_HEXAGON_S2_lsl_r_r_or __builtin_HEXAGON_S2_lsl_r_vh __builtin_HEXAGON_S2_lsl_r_vw __builtin_HEXAGON_S2_lsr_i_p __builtin_HEXAGON_S2_lsr_i_p_acc __builtin_HEXAGON_S2_lsr_i_p_and __builtin_HEXAGON_S2_lsr_i_p_nac __builtin_HEXAGON_S2_lsr_i_p_or __builtin_HEXAGON_S2_lsr_i_p_xacc __builtin_HEXAGON_S2_lsr_i_r __builtin_HEXAGON_S2_lsr_i_r_acc __builtin_HEXAGON_S2_lsr_i_r_and __builtin_HEXAGON_S2_lsr_i_r_nac __builtin_HEXAGON_S2_lsr_i_r_or __builtin_HEXAGON_S2_lsr_i_r_xacc __builtin_HEXAGON_S2_lsr_i_vh __builtin_HEXAGON_S2_lsr_i_vw __builtin_HEXAGON_S2_lsr_r_p __builtin_HEXAGON_S2_lsr_r_p_acc __builtin_HEXAGON_S2_lsr_r_p_and __builtin_HEXAGON_S2_lsr_r_p_nac __builtin_HEXAGON_S2_lsr_r_p_or __builtin_HEXAGON_S2_lsr_r_p_xor __builtin_HEXAGON_S2_lsr_r_r __builtin_HEXAGON_S2_lsr_r_r_acc __builtin_HEXAGON_S2_lsr_r_r_and __builtin_HEXAGON_S2_lsr_r_r_nac __builtin_HEXAGON_S2_lsr_r_r_or __builtin_HEXAGON_S2_lsr_r_vh __builtin_HEXAGON_S2_lsr_r_vw __builtin_HEXAGON_S2_packhl __builtin_HEXAGON_S2_parityp __builtin_HEXAGON_S2_setbit_i __builtin_HEXAGON_S2_setbit_r __builtin_HEXAGON_S2_shuffeb __builtin_HEXAGON_S2_shuffeh __builtin_HEXAGON_S2_shuffob __builtin_HEXAGON_S2_shuffoh __builtin_HEXAGON_S2_storew_locked __builtin_HEXAGON_S2_svsathb __builtin_HEXAGON_S2_svsathub __builtin_HEXAGON_S2_tableidxb_goodsyntax __builtin_HEXAGON_S2_tableidxd_goodsyntax __builtin_HEXAGON_S2_tableidxh_goodsyntax __builtin_HEXAGON_S2_tableidxw_goodsyntax __builtin_HEXAGON_S2_togglebit_i __builtin_HEXAGON_S2_togglebit_r __builtin_HEXAGON_S2_tstbit_i __builtin_HEXAGON_S2_tstbit_r __builtin_HEXAGON_S2_valignib __builtin_HEXAGON_S2_valignrb __builtin_HEXAGON_S2_vcnegh __builtin_HEXAGON_S2_vcrotate __builtin_HEXAGON_S2_vrcnegh __builtin_HEXAGON_S2_vrndpackwh __builtin_HEXAGON_S2_vrndpackwhs __builtin_HEXAGON_S2_vsathb __builtin_HEXAGON_S2_vsathb_nopack __builtin_HEXAGON_S2_vsathub __builtin_HEXAGON_S2_vsathub_nopack __builtin_HEXAGON_S2_vsatwh __builtin_HEXAGON_S2_vsatwh_nopack __builtin_HEXAGON_S2_vsatwuh __builtin_HEXAGON_S2_vsatwuh_nopack __builtin_HEXAGON_S2_vsplatrb __builtin_HEXAGON_S2_vsplatrh __builtin_HEXAGON_S2_vspliceib __builtin_HEXAGON_S2_vsplicerb __builtin_HEXAGON_S2_vsxtbh __builtin_HEXAGON_S2_vsxthw __builtin_HEXAGON_S2_vtrunehb __builtin_HEXAGON_S2_vtrunewh __builtin_HEXAGON_S2_vtrunohb __builtin_HEXAGON_S2_vtrunowh __builtin_HEXAGON_S2_vzxtbh __builtin_HEXAGON_S2_vzxthw __builtin_HEXAGON_S4_addaddi __builtin_HEXAGON_S4_addi_asl_ri __builtin_HEXAGON_S4_addi_lsr_ri __builtin_HEXAGON_S4_andi_asl_ri __builtin_HEXAGON_S4_andi_lsr_ri __builtin_HEXAGON_S4_clbaddi __builtin_HEXAGON_S4_clbpaddi __builtin_HEXAGON_S4_clbpnorm __builtin_HEXAGON_S4_extract __builtin_HEXAGON_S4_extract_rp __builtin_HEXAGON_S4_extractp __builtin_HEXAGON_S4_extractp_rp __builtin_HEXAGON_S4_lsli __builtin_HEXAGON_S4_ntstbit_i __builtin_HEXAGON_S4_ntstbit_r __builtin_HEXAGON_S4_or_andi __builtin_HEXAGON_S4_or_andix __builtin_HEXAGON_S4_or_ori __builtin_HEXAGON_S4_ori_asl_ri __builtin_HEXAGON_S4_ori_lsr_ri __builtin_HEXAGON_S4_parity __builtin_HEXAGON_S4_stored_locked __builtin_HEXAGON_S4_subaddi __builtin_HEXAGON_S4_subi_asl_ri __builtin_HEXAGON_S4_subi_lsr_ri __builtin_HEXAGON_S4_vrcrotate __builtin_HEXAGON_S4_vrcrotate_acc __builtin_HEXAGON_S4_vxaddsubh __builtin_HEXAGON_S4_vxaddsubhr __builtin_HEXAGON_S4_vxaddsubw __builtin_HEXAGON_S4_vxsubaddh __builtin_HEXAGON_S4_vxsubaddhr __builtin_HEXAGON_S4_vxsubaddw __builtin_HEXAGON_S5_asrhub_rnd_sat_goodsyntax __builtin_HEXAGON_S5_asrhub_sat __builtin_HEXAGON_S5_popcountp __builtin_HEXAGON_S5_vasrhrnd_goodsyntax __builtin_HEXAGON_S6_rol_i_p __builtin_HEXAGON_S6_rol_i_p_acc __builtin_HEXAGON_S6_rol_i_p_and __builtin_HEXAGON_S6_rol_i_p_nac __builtin_HEXAGON_S6_rol_i_p_or __builtin_HEXAGON_S6_rol_i_p_xacc __builtin_HEXAGON_S6_rol_i_r __builtin_HEXAGON_S6_rol_i_r_acc __builtin_HEXAGON_S6_rol_i_r_and __builtin_HEXAGON_S6_rol_i_r_nac __builtin_HEXAGON_S6_rol_i_r_or __builtin_HEXAGON_S6_rol_i_r_xacc __builtin_HEXAGON_S6_vsplatrbp __builtin_HEXAGON_S6_vtrunehb_ppp __builtin_HEXAGON_S6_vtrunohb_ppp __builtin_SI_to_SXTHI_asrh __builtin_HEXAGON_V6_extractw __builtin_HEXAGON_V6_extractw_128B __builtin_HEXAGON_V6_hi __builtin_HEXAGON_V6_hi_128B __builtin_HEXAGON_V6_lo __builtin_HEXAGON_V6_lo_128B __builtin_HEXAGON_V6_lvsplatw __builtin_HEXAGON_V6_lvsplatw_128B __builtin_HEXAGON_V6_pred_and __builtin_HEXAGON_V6_pred_and_128B __builtin_HEXAGON_V6_pred_and_n __builtin_HEXAGON_V6_pred_and_n_128B __builtin_HEXAGON_V6_pred_not __builtin_HEXAGON_V6_pred_not_128B __builtin_HEXAGON_V6_pred_or __builtin_HEXAGON_V6_pred_or_128B __builtin_HEXAGON_V6_pred_or_n __builtin_HEXAGON_V6_pred_or_n_128B __builtin_HEXAGON_V6_pred_scalar2 __builtin_HEXAGON_V6_pred_scalar2_128B __builtin_HEXAGON_V6_pred_xor __builtin_HEXAGON_V6_pred_xor_128B __builtin_HEXAGON_V6_vabsdiffh __builtin_HEXAGON_V6_vabsdiffh_128B __builtin_HEXAGON_V6_vabsdiffub __builtin_HEXAGON_V6_vabsdiffub_128B __builtin_HEXAGON_V6_vabsdiffuh __builtin_HEXAGON_V6_vabsdiffuh_128B __builtin_HEXAGON_V6_vabsdiffw __builtin_HEXAGON_V6_vabsdiffw_128B __builtin_HEXAGON_V6_vabsh __builtin_HEXAGON_V6_vabsh_128B __builtin_HEXAGON_V6_vabsh_sat __builtin_HEXAGON_V6_vabsh_sat_128B __builtin_HEXAGON_V6_vabsw __builtin_HEXAGON_V6_vabsw_128B __builtin_HEXAGON_V6_vabsw_sat __builtin_HEXAGON_V6_vabsw_sat_128B __builtin_HEXAGON_V6_vaddb __builtin_HEXAGON_V6_vaddb_128B __builtin_HEXAGON_V6_vaddb_dv __builtin_HEXAGON_V6_vaddb_dv_128B __builtin_HEXAGON_V6_vaddbnq __builtin_HEXAGON_V6_vaddbnq_128B __builtin_HEXAGON_V6_vaddbq __builtin_HEXAGON_V6_vaddbq_128B __builtin_HEXAGON_V6_vaddh __builtin_HEXAGON_V6_vaddh_128B __builtin_HEXAGON_V6_vaddh_dv __builtin_HEXAGON_V6_vaddh_dv_128B __builtin_HEXAGON_V6_vaddhnq __builtin_HEXAGON_V6_vaddhnq_128B __builtin_HEXAGON_V6_vaddhq __builtin_HEXAGON_V6_vaddhq_128B __builtin_HEXAGON_V6_vaddhsat __builtin_HEXAGON_V6_vaddhsat_128B __builtin_HEXAGON_V6_vaddhsat_dv __builtin_HEXAGON_V6_vaddhsat_dv_128B __builtin_HEXAGON_V6_vaddhw __builtin_HEXAGON_V6_vaddhw_128B __builtin_HEXAGON_V6_vaddubh __builtin_HEXAGON_V6_vaddubh_128B __builtin_HEXAGON_V6_vaddubsat __builtin_HEXAGON_V6_vaddubsat_128B __builtin_HEXAGON_V6_vaddubsat_dv __builtin_HEXAGON_V6_vaddubsat_dv_128B __builtin_HEXAGON_V6_vadduhsat __builtin_HEXAGON_V6_vadduhsat_128B __builtin_HEXAGON_V6_vadduhsat_dv __builtin_HEXAGON_V6_vadduhsat_dv_128B __builtin_HEXAGON_V6_vadduhw __builtin_HEXAGON_V6_vadduhw_128B __builtin_HEXAGON_V6_vaddw __builtin_HEXAGON_V6_vaddw_128B __builtin_HEXAGON_V6_vaddw_dv __builtin_HEXAGON_V6_vaddw_dv_128B __builtin_HEXAGON_V6_vaddwnq __builtin_HEXAGON_V6_vaddwnq_128B __builtin_HEXAGON_V6_vaddwq __builtin_HEXAGON_V6_vaddwq_128B __builtin_HEXAGON_V6_vaddwsat __builtin_HEXAGON_V6_vaddwsat_128B __builtin_HEXAGON_V6_vaddwsat_dv __builtin_HEXAGON_V6_vaddwsat_dv_128B __builtin_HEXAGON_V6_valignb __builtin_HEXAGON_V6_valignb_128B __builtin_HEXAGON_V6_valignbi __builtin_HEXAGON_V6_valignbi_128B __builtin_HEXAGON_V6_vand __builtin_HEXAGON_V6_vand_128B __builtin_HEXAGON_V6_vandqrt __builtin_HEXAGON_V6_vandqrt_128B __builtin_HEXAGON_V6_vandqrt_acc __builtin_HEXAGON_V6_vandqrt_acc_128B __builtin_HEXAGON_V6_vandvrt __builtin_HEXAGON_V6_vandvrt_128B __builtin_HEXAGON_V6_vandvrt_acc __builtin_HEXAGON_V6_vandvrt_acc_128B __builtin_HEXAGON_V6_vaslh __builtin_HEXAGON_V6_vaslh_128B __builtin_HEXAGON_V6_vaslhv __builtin_HEXAGON_V6_vaslhv_128B __builtin_HEXAGON_V6_vaslw __builtin_HEXAGON_V6_vaslw_128B __builtin_HEXAGON_V6_vaslw_acc __builtin_HEXAGON_V6_vaslw_acc_128B __builtin_HEXAGON_V6_vaslwv __builtin_HEXAGON_V6_vaslwv_128B __builtin_HEXAGON_V6_vasrh __builtin_HEXAGON_V6_vasrh_128B __builtin_HEXAGON_V6_vasrhbrndsat __builtin_HEXAGON_V6_vasrhbrndsat_128B __builtin_HEXAGON_V6_vasrhubrndsat __builtin_HEXAGON_V6_vasrhubrndsat_128B __builtin_HEXAGON_V6_vasrhubsat __builtin_HEXAGON_V6_vasrhubsat_128B __builtin_HEXAGON_V6_vasrhv __builtin_HEXAGON_V6_vasrhv_128B __builtin_HEXAGON_V6_vasrw __builtin_HEXAGON_V6_vasrw_128B __builtin_HEXAGON_V6_vasrw_acc __builtin_HEXAGON_V6_vasrw_acc_128B __builtin_HEXAGON_V6_vasrwh __builtin_HEXAGON_V6_vasrwh_128B __builtin_HEXAGON_V6_vasrwhrndsat __builtin_HEXAGON_V6_vasrwhrndsat_128B __builtin_HEXAGON_V6_vasrwhsat __builtin_HEXAGON_V6_vasrwhsat_128B __builtin_HEXAGON_V6_vasrwuhsat __builtin_HEXAGON_V6_vasrwuhsat_128B __builtin_HEXAGON_V6_vasrwv __builtin_HEXAGON_V6_vasrwv_128B __builtin_HEXAGON_V6_vassign __builtin_HEXAGON_V6_vassign_128B __builtin_HEXAGON_V6_vassignp __builtin_HEXAGON_V6_vassignp_128B __builtin_HEXAGON_V6_vavgh __builtin_HEXAGON_V6_vavgh_128B __builtin_HEXAGON_V6_vavghrnd __builtin_HEXAGON_V6_vavghrnd_128B __builtin_HEXAGON_V6_vavgub __builtin_HEXAGON_V6_vavgub_128B __builtin_HEXAGON_V6_vavgubrnd __builtin_HEXAGON_V6_vavgubrnd_128B __builtin_HEXAGON_V6_vavguh __builtin_HEXAGON_V6_vavguh_128B __builtin_HEXAGON_V6_vavguhrnd __builtin_HEXAGON_V6_vavguhrnd_128B __builtin_HEXAGON_V6_vavgw __builtin_HEXAGON_V6_vavgw_128B __builtin_HEXAGON_V6_vavgwrnd __builtin_HEXAGON_V6_vavgwrnd_128B __builtin_HEXAGON_V6_vcl0h __builtin_HEXAGON_V6_vcl0h_128B __builtin_HEXAGON_V6_vcl0w __builtin_HEXAGON_V6_vcl0w_128B __builtin_HEXAGON_V6_vcombine __builtin_HEXAGON_V6_vcombine_128B __builtin_HEXAGON_V6_vd0 __builtin_HEXAGON_V6_vd0_128B __builtin_HEXAGON_V6_vdealb __builtin_HEXAGON_V6_vdealb_128B __builtin_HEXAGON_V6_vdealb4w __builtin_HEXAGON_V6_vdealb4w_128B __builtin_HEXAGON_V6_vdealh __builtin_HEXAGON_V6_vdealh_128B __builtin_HEXAGON_V6_vdealvdd __builtin_HEXAGON_V6_vdealvdd_128B __builtin_HEXAGON_V6_vdelta __builtin_HEXAGON_V6_vdelta_128B __builtin_HEXAGON_V6_vdmpybus __builtin_HEXAGON_V6_vdmpybus_128B __builtin_HEXAGON_V6_vdmpybus_acc __builtin_HEXAGON_V6_vdmpybus_acc_128B __builtin_HEXAGON_V6_vdmpybus_dv __builtin_HEXAGON_V6_vdmpybus_dv_128B __builtin_HEXAGON_V6_vdmpybus_dv_acc __builtin_HEXAGON_V6_vdmpybus_dv_acc_128B __builtin_HEXAGON_V6_vdmpyhb __builtin_HEXAGON_V6_vdmpyhb_128B __builtin_HEXAGON_V6_vdmpyhb_acc __builtin_HEXAGON_V6_vdmpyhb_acc_128B __builtin_HEXAGON_V6_vdmpyhb_dv __builtin_HEXAGON_V6_vdmpyhb_dv_128B __builtin_HEXAGON_V6_vdmpyhb_dv_acc __builtin_HEXAGON_V6_vdmpyhb_dv_acc_128B __builtin_HEXAGON_V6_vdmpyhisat __builtin_HEXAGON_V6_vdmpyhisat_128B __builtin_HEXAGON_V6_vdmpyhisat_acc __builtin_HEXAGON_V6_vdmpyhisat_acc_128B __builtin_HEXAGON_V6_vdmpyhsat __builtin_HEXAGON_V6_vdmpyhsat_128B __builtin_HEXAGON_V6_vdmpyhsat_acc __builtin_HEXAGON_V6_vdmpyhsat_acc_128B __builtin_HEXAGON_V6_vdmpyhsuisat __builtin_HEXAGON_V6_vdmpyhsuisat_128B __builtin_HEXAGON_V6_vdmpyhsuisat_acc __builtin_HEXAGON_V6_vdmpyhsuisat_acc_128B __builtin_HEXAGON_V6_vdmpyhsusat __builtin_HEXAGON_V6_vdmpyhsusat_128B __builtin_HEXAGON_V6_vdmpyhsusat_acc __builtin_HEXAGON_V6_vdmpyhsusat_acc_128B __builtin_HEXAGON_V6_vdmpyhvsat __builtin_HEXAGON_V6_vdmpyhvsat_128B __builtin_HEXAGON_V6_vdmpyhvsat_acc __builtin_HEXAGON_V6_vdmpyhvsat_acc_128B __builtin_HEXAGON_V6_vdsaduh __builtin_HEXAGON_V6_vdsaduh_128B __builtin_HEXAGON_V6_vdsaduh_acc __builtin_HEXAGON_V6_vdsaduh_acc_128B __builtin_HEXAGON_V6_veqb __builtin_HEXAGON_V6_veqb_128B __builtin_HEXAGON_V6_veqb_and __builtin_HEXAGON_V6_veqb_and_128B __builtin_HEXAGON_V6_veqb_or __builtin_HEXAGON_V6_veqb_or_128B __builtin_HEXAGON_V6_veqb_xor __builtin_HEXAGON_V6_veqb_xor_128B __builtin_HEXAGON_V6_veqh __builtin_HEXAGON_V6_veqh_128B __builtin_HEXAGON_V6_veqh_and __builtin_HEXAGON_V6_veqh_and_128B __builtin_HEXAGON_V6_veqh_or __builtin_HEXAGON_V6_veqh_or_128B __builtin_HEXAGON_V6_veqh_xor __builtin_HEXAGON_V6_veqh_xor_128B __builtin_HEXAGON_V6_veqw __builtin_HEXAGON_V6_veqw_128B __builtin_HEXAGON_V6_veqw_and __builtin_HEXAGON_V6_veqw_and_128B __builtin_HEXAGON_V6_veqw_or __builtin_HEXAGON_V6_veqw_or_128B __builtin_HEXAGON_V6_veqw_xor __builtin_HEXAGON_V6_veqw_xor_128B __builtin_HEXAGON_V6_vgtb __builtin_HEXAGON_V6_vgtb_128B __builtin_HEXAGON_V6_vgtb_and __builtin_HEXAGON_V6_vgtb_and_128B __builtin_HEXAGON_V6_vgtb_or __builtin_HEXAGON_V6_vgtb_or_128B __builtin_HEXAGON_V6_vgtb_xor __builtin_HEXAGON_V6_vgtb_xor_128B __builtin_HEXAGON_V6_vgth __builtin_HEXAGON_V6_vgth_128B __builtin_HEXAGON_V6_vgth_and __builtin_HEXAGON_V6_vgth_and_128B __builtin_HEXAGON_V6_vgth_or __builtin_HEXAGON_V6_vgth_or_128B __builtin_HEXAGON_V6_vgth_xor __builtin_HEXAGON_V6_vgth_xor_128B __builtin_HEXAGON_V6_vgtub __builtin_HEXAGON_V6_vgtub_128B __builtin_HEXAGON_V6_vgtub_and __builtin_HEXAGON_V6_vgtub_and_128B __builtin_HEXAGON_V6_vgtub_or __builtin_HEXAGON_V6_vgtub_or_128B __builtin_HEXAGON_V6_vgtub_xor __builtin_HEXAGON_V6_vgtub_xor_128B __builtin_HEXAGON_V6_vgtuh __builtin_HEXAGON_V6_vgtuh_128B __builtin_HEXAGON_V6_vgtuh_and __builtin_HEXAGON_V6_vgtuh_and_128B __builtin_HEXAGON_V6_vgtuh_or __builtin_HEXAGON_V6_vgtuh_or_128B __builtin_HEXAGON_V6_vgtuh_xor __builtin_HEXAGON_V6_vgtuh_xor_128B __builtin_HEXAGON_V6_vgtuw __builtin_HEXAGON_V6_vgtuw_128B __builtin_HEXAGON_V6_vgtuw_and __builtin_HEXAGON_V6_vgtuw_and_128B __builtin_HEXAGON_V6_vgtuw_or __builtin_HEXAGON_V6_vgtuw_or_128B __builtin_HEXAGON_V6_vgtuw_xor __builtin_HEXAGON_V6_vgtuw_xor_128B __builtin_HEXAGON_V6_vgtw __builtin_HEXAGON_V6_vgtw_128B __builtin_HEXAGON_V6_vgtw_and __builtin_HEXAGON_V6_vgtw_and_128B __builtin_HEXAGON_V6_vgtw_or __builtin_HEXAGON_V6_vgtw_or_128B __builtin_HEXAGON_V6_vgtw_xor __builtin_HEXAGON_V6_vgtw_xor_128B __builtin_HEXAGON_V6_vinsertwr __builtin_HEXAGON_V6_vinsertwr_128B __builtin_HEXAGON_V6_vlalignb __builtin_HEXAGON_V6_vlalignb_128B __builtin_HEXAGON_V6_vlalignbi __builtin_HEXAGON_V6_vlalignbi_128B __builtin_HEXAGON_V6_vlsrh __builtin_HEXAGON_V6_vlsrh_128B __builtin_HEXAGON_V6_vlsrhv __builtin_HEXAGON_V6_vlsrhv_128B __builtin_HEXAGON_V6_vlsrw __builtin_HEXAGON_V6_vlsrw_128B __builtin_HEXAGON_V6_vlsrwv __builtin_HEXAGON_V6_vlsrwv_128B __builtin_HEXAGON_V6_vlutb __builtin_HEXAGON_V6_vlutb_128B __builtin_HEXAGON_V6_vlutb_acc __builtin_HEXAGON_V6_vlutb_acc_128B __builtin_HEXAGON_V6_vlutb_dv __builtin_HEXAGON_V6_vlutb_dv_128B __builtin_HEXAGON_V6_vlutb_dv_acc __builtin_HEXAGON_V6_vlutb_dv_acc_128B __builtin_HEXAGON_V6_vlutvvb __builtin_HEXAGON_V6_vlutvvb_128B __builtin_HEXAGON_V6_vlutvvb_oracc __builtin_HEXAGON_V6_vlutvvb_oracc_128B __builtin_HEXAGON_V6_vlutvwh __builtin_HEXAGON_V6_vlutvwh_128B __builtin_HEXAGON_V6_vlutvwh_oracc __builtin_HEXAGON_V6_vlutvwh_oracc_128B __builtin_HEXAGON_V6_vmaxh __builtin_HEXAGON_V6_vmaxh_128B __builtin_HEXAGON_V6_vmaxub __builtin_HEXAGON_V6_vmaxub_128B __builtin_HEXAGON_V6_vmaxuh __builtin_HEXAGON_V6_vmaxuh_128B __builtin_HEXAGON_V6_vmaxw __builtin_HEXAGON_V6_vmaxw_128B __builtin_HEXAGON_V6_vminh __builtin_HEXAGON_V6_vminh_128B __builtin_HEXAGON_V6_vminub __builtin_HEXAGON_V6_vminub_128B __builtin_HEXAGON_V6_vminuh __builtin_HEXAGON_V6_vminuh_128B __builtin_HEXAGON_V6_vminw __builtin_HEXAGON_V6_vminw_128B __builtin_HEXAGON_V6_vmpabus __builtin_HEXAGON_V6_vmpabus_128B __builtin_HEXAGON_V6_vmpabus_acc __builtin_HEXAGON_V6_vmpabus_acc_128B __builtin_HEXAGON_V6_vmpabusv __builtin_HEXAGON_V6_vmpabusv_128B __builtin_HEXAGON_V6_vmpabuuv __builtin_HEXAGON_V6_vmpabuuv_128B __builtin_HEXAGON_V6_vmpahb __builtin_HEXAGON_V6_vmpahb_128B __builtin_HEXAGON_V6_vmpahb_acc __builtin_HEXAGON_V6_vmpahb_acc_128B __builtin_HEXAGON_V6_vmpybus __builtin_HEXAGON_V6_vmpybus_128B __builtin_HEXAGON_V6_vmpybus_acc __builtin_HEXAGON_V6_vmpybus_acc_128B __builtin_HEXAGON_V6_vmpybusv __builtin_HEXAGON_V6_vmpybusv_128B __builtin_HEXAGON_V6_vmpybusv_acc __builtin_HEXAGON_V6_vmpybusv_acc_128B __builtin_HEXAGON_V6_vmpybv __builtin_HEXAGON_V6_vmpybv_128B __builtin_HEXAGON_V6_vmpybv_acc __builtin_HEXAGON_V6_vmpybv_acc_128B __builtin_HEXAGON_V6_vmpyewuh __builtin_HEXAGON_V6_vmpyewuh_128B __builtin_HEXAGON_V6_vmpyh __builtin_HEXAGON_V6_vmpyh_128B __builtin_HEXAGON_V6_vmpyhsat_acc __builtin_HEXAGON_V6_vmpyhsat_acc_128B __builtin_HEXAGON_V6_vmpyhsrs __builtin_HEXAGON_V6_vmpyhsrs_128B __builtin_HEXAGON_V6_vmpyhss __builtin_HEXAGON_V6_vmpyhss_128B __builtin_HEXAGON_V6_vmpyhus __builtin_HEXAGON_V6_vmpyhus_128B __builtin_HEXAGON_V6_vmpyhus_acc __builtin_HEXAGON_V6_vmpyhus_acc_128B __builtin_HEXAGON_V6_vmpyhv __builtin_HEXAGON_V6_vmpyhv_128B __builtin_HEXAGON_V6_vmpyhv_acc __builtin_HEXAGON_V6_vmpyhv_acc_128B __builtin_HEXAGON_V6_vmpyhvsrs __builtin_HEXAGON_V6_vmpyhvsrs_128B __builtin_HEXAGON_V6_vmpyieoh __builtin_HEXAGON_V6_vmpyieoh_128B __builtin_HEXAGON_V6_vmpyiewh_acc __builtin_HEXAGON_V6_vmpyiewh_acc_128B __builtin_HEXAGON_V6_vmpyiewuh __builtin_HEXAGON_V6_vmpyiewuh_128B __builtin_HEXAGON_V6_vmpyiewuh_acc __builtin_HEXAGON_V6_vmpyiewuh_acc_128B __builtin_HEXAGON_V6_vmpyih __builtin_HEXAGON_V6_vmpyih_128B __builtin_HEXAGON_V6_vmpyih_acc __builtin_HEXAGON_V6_vmpyih_acc_128B __builtin_HEXAGON_V6_vmpyihb __builtin_HEXAGON_V6_vmpyihb_128B __builtin_HEXAGON_V6_vmpyihb_acc __builtin_HEXAGON_V6_vmpyihb_acc_128B __builtin_HEXAGON_V6_vmpyiowh __builtin_HEXAGON_V6_vmpyiowh_128B __builtin_HEXAGON_V6_vmpyiwb __builtin_HEXAGON_V6_vmpyiwb_128B __builtin_HEXAGON_V6_vmpyiwb_acc __builtin_HEXAGON_V6_vmpyiwb_acc_128B __builtin_HEXAGON_V6_vmpyiwh __builtin_HEXAGON_V6_vmpyiwh_128B __builtin_HEXAGON_V6_vmpyiwh_acc __builtin_HEXAGON_V6_vmpyiwh_acc_128B __builtin_HEXAGON_V6_vmpyowh __builtin_HEXAGON_V6_vmpyowh_128B __builtin_HEXAGON_V6_vmpyowh_rnd __builtin_HEXAGON_V6_vmpyowh_rnd_128B __builtin_HEXAGON_V6_vmpyowh_rnd_sacc __builtin_HEXAGON_V6_vmpyowh_rnd_sacc_128B __builtin_HEXAGON_V6_vmpyowh_sacc __builtin_HEXAGON_V6_vmpyowh_sacc_128B __builtin_HEXAGON_V6_vmpyub __builtin_HEXAGON_V6_vmpyub_128B __builtin_HEXAGON_V6_vmpyub_acc __builtin_HEXAGON_V6_vmpyub_acc_128B __builtin_HEXAGON_V6_vmpyubv __builtin_HEXAGON_V6_vmpyubv_128B __builtin_HEXAGON_V6_vmpyubv_acc __builtin_HEXAGON_V6_vmpyubv_acc_128B __builtin_HEXAGON_V6_vmpyuh __builtin_HEXAGON_V6_vmpyuh_128B __builtin_HEXAGON_V6_vmpyuh_acc __builtin_HEXAGON_V6_vmpyuh_acc_128B __builtin_HEXAGON_V6_vmpyuhv __builtin_HEXAGON_V6_vmpyuhv_128B __builtin_HEXAGON_V6_vmpyuhv_acc __builtin_HEXAGON_V6_vmpyuhv_acc_128B __builtin_HEXAGON_V6_vmux __builtin_HEXAGON_V6_vmux_128B __builtin_HEXAGON_V6_vnavgh __builtin_HEXAGON_V6_vnavgh_128B __builtin_HEXAGON_V6_vnavgub __builtin_HEXAGON_V6_vnavgub_128B __builtin_HEXAGON_V6_vnavgw __builtin_HEXAGON_V6_vnavgw_128B __builtin_HEXAGON_V6_vnormamth __builtin_HEXAGON_V6_vnormamth_128B __builtin_HEXAGON_V6_vnormamtw __builtin_HEXAGON_V6_vnormamtw_128B __builtin_HEXAGON_V6_vnot __builtin_HEXAGON_V6_vnot_128B __builtin_HEXAGON_V6_vor __builtin_HEXAGON_V6_vor_128B __builtin_HEXAGON_V6_vpackeb __builtin_HEXAGON_V6_vpackeb_128B __builtin_HEXAGON_V6_vpackeh __builtin_HEXAGON_V6_vpackeh_128B __builtin_HEXAGON_V6_vpackhb_sat __builtin_HEXAGON_V6_vpackhb_sat_128B __builtin_HEXAGON_V6_vpackhub_sat __builtin_HEXAGON_V6_vpackhub_sat_128B __builtin_HEXAGON_V6_vpackob __builtin_HEXAGON_V6_vpackob_128B __builtin_HEXAGON_V6_vpackoh __builtin_HEXAGON_V6_vpackoh_128B __builtin_HEXAGON_V6_vpackwh_sat __builtin_HEXAGON_V6_vpackwh_sat_128B __builtin_HEXAGON_V6_vpackwuh_sat __builtin_HEXAGON_V6_vpackwuh_sat_128B __builtin_HEXAGON_V6_vpopcounth __builtin_HEXAGON_V6_vpopcounth_128B __builtin_HEXAGON_V6_vrdelta __builtin_HEXAGON_V6_vrdelta_128B __builtin_HEXAGON_V6_vrmpybus __builtin_HEXAGON_V6_vrmpybus_128B __builtin_HEXAGON_V6_vrmpybus_acc __builtin_HEXAGON_V6_vrmpybus_acc_128B __builtin_HEXAGON_V6_vrmpybusi __builtin_HEXAGON_V6_vrmpybusi_128B __builtin_HEXAGON_V6_vrmpybusi_acc __builtin_HEXAGON_V6_vrmpybusi_acc_128B __builtin_HEXAGON_V6_vrmpybusv __builtin_HEXAGON_V6_vrmpybusv_128B __builtin_HEXAGON_V6_vrmpybusv_acc __builtin_HEXAGON_V6_vrmpybusv_acc_128B __builtin_HEXAGON_V6_vrmpybv __builtin_HEXAGON_V6_vrmpybv_128B __builtin_HEXAGON_V6_vrmpybv_acc __builtin_HEXAGON_V6_vrmpybv_acc_128B __builtin_HEXAGON_V6_vrmpyub __builtin_HEXAGON_V6_vrmpyub_128B __builtin_HEXAGON_V6_vrmpyub_acc __builtin_HEXAGON_V6_vrmpyub_acc_128B __builtin_HEXAGON_V6_vrmpyubi __builtin_HEXAGON_V6_vrmpyubi_128B __builtin_HEXAGON_V6_vrmpyubi_acc __builtin_HEXAGON_V6_vrmpyubi_acc_128B __builtin_HEXAGON_V6_vrmpyubv __builtin_HEXAGON_V6_vrmpyubv_128B __builtin_HEXAGON_V6_vrmpyubv_acc __builtin_HEXAGON_V6_vrmpyubv_acc_128B __builtin_HEXAGON_V6_vror __builtin_HEXAGON_V6_vror_128B __builtin_HEXAGON_V6_vroundhb __builtin_HEXAGON_V6_vroundhb_128B __builtin_HEXAGON_V6_vroundhub __builtin_HEXAGON_V6_vroundhub_128B __builtin_HEXAGON_V6_vroundwh __builtin_HEXAGON_V6_vroundwh_128B __builtin_HEXAGON_V6_vroundwuh __builtin_HEXAGON_V6_vroundwuh_128B __builtin_HEXAGON_V6_vrsadubi __builtin_HEXAGON_V6_vrsadubi_128B __builtin_HEXAGON_V6_vrsadubi_acc __builtin_HEXAGON_V6_vrsadubi_acc_128B __builtin_HEXAGON_V6_vsathub __builtin_HEXAGON_V6_vsathub_128B __builtin_HEXAGON_V6_vsatwh __builtin_HEXAGON_V6_vsatwh_128B __builtin_HEXAGON_V6_vsb __builtin_HEXAGON_V6_vsb_128B __builtin_HEXAGON_V6_vsh __builtin_HEXAGON_V6_vsh_128B __builtin_HEXAGON_V6_vshufeh __builtin_HEXAGON_V6_vshufeh_128B __builtin_HEXAGON_V6_vshuffb __builtin_HEXAGON_V6_vshuffb_128B __builtin_HEXAGON_V6_vshuffeb __builtin_HEXAGON_V6_vshuffeb_128B __builtin_HEXAGON_V6_vshuffh __builtin_HEXAGON_V6_vshuffh_128B __builtin_HEXAGON_V6_vshuffob __builtin_HEXAGON_V6_vshuffob_128B __builtin_HEXAGON_V6_vshuffvdd __builtin_HEXAGON_V6_vshuffvdd_128B __builtin_HEXAGON_V6_vshufoeb __builtin_HEXAGON_V6_vshufoeb_128B __builtin_HEXAGON_V6_vshufoeh __builtin_HEXAGON_V6_vshufoeh_128B __builtin_HEXAGON_V6_vshufoh __builtin_HEXAGON_V6_vshufoh_128B __builtin_HEXAGON_V6_vsubb __builtin_HEXAGON_V6_vsubb_128B __builtin_HEXAGON_V6_vsubb_dv __builtin_HEXAGON_V6_vsubb_dv_128B __builtin_HEXAGON_V6_vsubbnq __builtin_HEXAGON_V6_vsubbnq_128B __builtin_HEXAGON_V6_vsubbq __builtin_HEXAGON_V6_vsubbq_128B __builtin_HEXAGON_V6_vsubh __builtin_HEXAGON_V6_vsubh_128B __builtin_HEXAGON_V6_vsubh_dv __builtin_HEXAGON_V6_vsubh_dv_128B __builtin_HEXAGON_V6_vsubhnq __builtin_HEXAGON_V6_vsubhnq_128B __builtin_HEXAGON_V6_vsubhq __builtin_HEXAGON_V6_vsubhq_128B __builtin_HEXAGON_V6_vsubhsat __builtin_HEXAGON_V6_vsubhsat_128B __builtin_HEXAGON_V6_vsubhsat_dv __builtin_HEXAGON_V6_vsubhsat_dv_128B __builtin_HEXAGON_V6_vsubhw __builtin_HEXAGON_V6_vsubhw_128B __builtin_HEXAGON_V6_vsububh __builtin_HEXAGON_V6_vsububh_128B __builtin_HEXAGON_V6_vsububsat __builtin_HEXAGON_V6_vsububsat_128B __builtin_HEXAGON_V6_vsububsat_dv __builtin_HEXAGON_V6_vsububsat_dv_128B __builtin_HEXAGON_V6_vsubuhsat __builtin_HEXAGON_V6_vsubuhsat_128B __builtin_HEXAGON_V6_vsubuhsat_dv __builtin_HEXAGON_V6_vsubuhsat_dv_128B __builtin_HEXAGON_V6_vsubuhw __builtin_HEXAGON_V6_vsubuhw_128B __builtin_HEXAGON_V6_vsubw __builtin_HEXAGON_V6_vsubw_128B __builtin_HEXAGON_V6_vsubw_dv __builtin_HEXAGON_V6_vsubw_dv_128B __builtin_HEXAGON_V6_vsubwnq __builtin_HEXAGON_V6_vsubwnq_128B __builtin_HEXAGON_V6_vsubwq __builtin_HEXAGON_V6_vsubwq_128B __builtin_HEXAGON_V6_vsubwsat __builtin_HEXAGON_V6_vsubwsat_128B __builtin_HEXAGON_V6_vsubwsat_dv __builtin_HEXAGON_V6_vsubwsat_dv_128B __builtin_HEXAGON_V6_vswap __builtin_HEXAGON_V6_vswap_128B __builtin_HEXAGON_V6_vtmpyb __builtin_HEXAGON_V6_vtmpyb_128B __builtin_HEXAGON_V6_vtmpyb_acc __builtin_HEXAGON_V6_vtmpyb_acc_128B __builtin_HEXAGON_V6_vtmpybus __builtin_HEXAGON_V6_vtmpybus_128B __builtin_HEXAGON_V6_vtmpybus_acc __builtin_HEXAGON_V6_vtmpybus_acc_128B __builtin_HEXAGON_V6_vtmpyhb __builtin_HEXAGON_V6_vtmpyhb_128B __builtin_HEXAGON_V6_vtmpyhb_acc __builtin_HEXAGON_V6_vtmpyhb_acc_128B __builtin_HEXAGON_V6_vunpackb __builtin_HEXAGON_V6_vunpackb_128B __builtin_HEXAGON_V6_vunpackh __builtin_HEXAGON_V6_vunpackh_128B __builtin_HEXAGON_V6_vunpackob __builtin_HEXAGON_V6_vunpackob_128B __builtin_HEXAGON_V6_vunpackoh __builtin_HEXAGON_V6_vunpackoh_128B __builtin_HEXAGON_V6_vunpackub __builtin_HEXAGON_V6_vunpackub_128B __builtin_HEXAGON_V6_vunpackuh __builtin_HEXAGON_V6_vunpackuh_128B __builtin_HEXAGON_V6_vxor __builtin_HEXAGON_V6_vxor_128B __builtin_HEXAGON_V6_vzb __builtin_HEXAGON_V6_vzb_128B __builtin_HEXAGON_V6_vzh __builtin_HEXAGON_V6_vzh_128B __builtin_brev_ldb __builtin_brev_ldd __builtin_brev_ldh __builtin_brev_ldub __builtin_brev_lduh __builtin_brev_ldw __builtin_brev_stb __builtin_brev_std __builtin_brev_sth __builtin_brev_sthhi __builtin_brev_stw __builtin_circ_ldb __builtin_circ_ldd __builtin_circ_ldh __builtin_circ_ldub __builtin_circ_lduh __builtin_circ_ldw __builtin_circ_stb __builtin_circ_std __builtin_circ_sth __builtin_circ_sthhi __builtin_circ_stw __builtin__mm256i_vaddw __builtin_HEXAGON_prefetch __builtin_init_trampoline __builtin_mips_absq_s_ph __builtin_mips_absq_s_qb __builtin_mips_absq_s_w __builtin_msa_add_a_b __builtin_msa_add_a_d __builtin_msa_add_a_h __builtin_msa_add_a_w __builtin_mips_addq_ph __builtin_mips_addq_s_ph __builtin_mips_addq_s_w __builtin_mips_addqh_ph __builtin_mips_addqh_r_ph __builtin_mips_addqh_r_w __builtin_mips_addqh_w __builtin_msa_adds_a_b __builtin_msa_adds_a_d __builtin_msa_adds_a_h __builtin_msa_adds_a_w __builtin_msa_adds_s_b __builtin_msa_adds_s_d __builtin_msa_adds_s_h __builtin_msa_adds_s_w __builtin_msa_adds_u_b __builtin_msa_adds_u_d __builtin_msa_adds_u_h __builtin_msa_adds_u_w __builtin_mips_addsc __builtin_mips_addu_ph __builtin_mips_addu_qb __builtin_mips_addu_s_ph __builtin_mips_addu_s_qb __builtin_mips_adduh_qb __builtin_mips_adduh_r_qb __builtin_msa_addv_b __builtin_msa_addv_d __builtin_msa_addv_h __builtin_msa_addv_w __builtin_msa_addvi_b __builtin_msa_addvi_d __builtin_msa_addvi_h __builtin_msa_addvi_w __builtin_mips_addwc __builtin_msa_and_v __builtin_msa_andi_b __builtin_mips_append __builtin_msa_asub_s_b __builtin_msa_asub_s_d __builtin_msa_asub_s_h __builtin_msa_asub_s_w __builtin_msa_asub_u_b __builtin_msa_asub_u_d __builtin_msa_asub_u_h __builtin_msa_asub_u_w __builtin_msa_ave_s_b __builtin_msa_ave_s_d __builtin_msa_ave_s_h __builtin_msa_ave_s_w __builtin_msa_ave_u_b __builtin_msa_ave_u_d __builtin_msa_ave_u_h __builtin_msa_ave_u_w __builtin_msa_aver_s_b __builtin_msa_aver_s_d __builtin_msa_aver_s_h __builtin_msa_aver_s_w __builtin_msa_aver_u_b __builtin_msa_aver_u_d __builtin_msa_aver_u_h __builtin_msa_aver_u_w __builtin_mips_balign __builtin_msa_bclr_b __builtin_msa_bclr_d __builtin_msa_bclr_h __builtin_msa_bclr_w __builtin_msa_bclri_b __builtin_msa_bclri_d __builtin_msa_bclri_h __builtin_msa_bclri_w __builtin_msa_binsl_b __builtin_msa_binsl_d __builtin_msa_binsl_h __builtin_msa_binsl_w __builtin_msa_binsli_b __builtin_msa_binsli_d __builtin_msa_binsli_h __builtin_msa_binsli_w __builtin_msa_binsr_b __builtin_msa_binsr_d __builtin_msa_binsr_h __builtin_msa_binsr_w __builtin_msa_binsri_b __builtin_msa_binsri_d __builtin_msa_binsri_h __builtin_msa_binsri_w __builtin_mips_bitrev __builtin_msa_bmnz_v __builtin_msa_bmnzi_b __builtin_msa_bmz_v __builtin_msa_bmzi_b __builtin_msa_bneg_b __builtin_msa_bneg_d __builtin_msa_bneg_h __builtin_msa_bneg_w __builtin_msa_bnegi_b __builtin_msa_bnegi_d __builtin_msa_bnegi_h __builtin_msa_bnegi_w __builtin_msa_bnz_b __builtin_msa_bnz_d __builtin_msa_bnz_h __builtin_msa_bnz_v __builtin_msa_bnz_w __builtin_mips_bposge32 __builtin_msa_bsel_v __builtin_msa_bseli_b __builtin_msa_bset_b __builtin_msa_bset_d __builtin_msa_bset_h __builtin_msa_bset_w __builtin_msa_bseti_b __builtin_msa_bseti_d __builtin_msa_bseti_h __builtin_msa_bseti_w __builtin_msa_bz_b __builtin_msa_bz_d __builtin_msa_bz_h __builtin_msa_bz_v __builtin_msa_bz_w __builtin_msa_ceq_b __builtin_msa_ceq_d __builtin_msa_ceq_h __builtin_msa_ceq_w __builtin_msa_ceqi_b __builtin_msa_ceqi_d __builtin_msa_ceqi_h __builtin_msa_ceqi_w __builtin_msa_cfcmsa __builtin_msa_cle_s_b __builtin_msa_cle_s_d __builtin_msa_cle_s_h __builtin_msa_cle_s_w __builtin_msa_cle_u_b __builtin_msa_cle_u_d __builtin_msa_cle_u_h __builtin_msa_cle_u_w __builtin_msa_clei_s_b __builtin_msa_clei_s_d __builtin_msa_clei_s_h __builtin_msa_clei_s_w __builtin_msa_clei_u_b __builtin_msa_clei_u_d __builtin_msa_clei_u_h __builtin_msa_clei_u_w __builtin_msa_clt_s_b __builtin_msa_clt_s_d __builtin_msa_clt_s_h __builtin_msa_clt_s_w __builtin_msa_clt_u_b __builtin_msa_clt_u_d __builtin_msa_clt_u_h __builtin_msa_clt_u_w __builtin_msa_clti_s_b __builtin_msa_clti_s_d __builtin_msa_clti_s_h __builtin_msa_clti_s_w __builtin_msa_clti_u_b __builtin_msa_clti_u_d __builtin_msa_clti_u_h __builtin_msa_clti_u_w __builtin_mips_cmp_eq_ph __builtin_mips_cmp_le_ph __builtin_mips_cmp_lt_ph __builtin_mips_cmpgdu_eq_qb __builtin_mips_cmpgdu_le_qb __builtin_mips_cmpgdu_lt_qb __builtin_mips_cmpgu_eq_qb __builtin_mips_cmpgu_le_qb __builtin_mips_cmpgu_lt_qb __builtin_mips_cmpu_eq_qb __builtin_mips_cmpu_le_qb __builtin_mips_cmpu_lt_qb __builtin_msa_copy_s_b __builtin_msa_copy_s_d __builtin_msa_copy_s_h __builtin_msa_copy_s_w __builtin_msa_copy_u_b __builtin_msa_copy_u_d __builtin_msa_copy_u_h __builtin_msa_copy_u_w __builtin_msa_ctcmsa __builtin_msa_div_s_b __builtin_msa_div_s_d __builtin_msa_div_s_h __builtin_msa_div_s_w __builtin_msa_div_u_b __builtin_msa_div_u_d __builtin_msa_div_u_h __builtin_msa_div_u_w __builtin_mips_dlsa __builtin_msa_dotp_s_d __builtin_msa_dotp_s_h __builtin_msa_dotp_s_w __builtin_msa_dotp_u_d __builtin_msa_dotp_u_h __builtin_msa_dotp_u_w __builtin_mips_dpa_w_ph __builtin_msa_dpadd_s_d __builtin_msa_dpadd_s_h __builtin_msa_dpadd_s_w __builtin_msa_dpadd_u_d __builtin_msa_dpadd_u_h __builtin_msa_dpadd_u_w __builtin_mips_dpaq_s_w_ph __builtin_mips_dpaq_sa_l_w __builtin_mips_dpaqx_s_w_ph __builtin_mips_dpaqx_sa_w_ph __builtin_mips_dpau_h_qbl __builtin_mips_dpau_h_qbr __builtin_mips_dpax_w_ph __builtin_mips_dps_w_ph __builtin_mips_dpsq_s_w_ph __builtin_mips_dpsq_sa_l_w __builtin_mips_dpsqx_s_w_ph __builtin_mips_dpsqx_sa_w_ph __builtin_mips_dpsu_h_qbl __builtin_mips_dpsu_h_qbr __builtin_msa_dpsub_s_d __builtin_msa_dpsub_s_h __builtin_msa_dpsub_s_w __builtin_msa_dpsub_u_d __builtin_msa_dpsub_u_h __builtin_msa_dpsub_u_w __builtin_mips_dpsx_w_ph __builtin_mips_extp __builtin_mips_extpdp __builtin_mips_extr_r_w __builtin_mips_extr_rs_w __builtin_mips_extr_s_h __builtin_mips_extr_w __builtin_msa_fadd_d __builtin_msa_fadd_w __builtin_msa_fcaf_d __builtin_msa_fcaf_w __builtin_msa_fceq_d __builtin_msa_fceq_w __builtin_msa_fclass_d __builtin_msa_fclass_w __builtin_msa_fcle_d __builtin_msa_fcle_w __builtin_msa_fclt_d __builtin_msa_fclt_w __builtin_msa_fcne_d __builtin_msa_fcne_w __builtin_msa_fcor_d __builtin_msa_fcor_w __builtin_msa_fcueq_d __builtin_msa_fcueq_w __builtin_msa_fcule_d __builtin_msa_fcule_w __builtin_msa_fcult_d __builtin_msa_fcult_w __builtin_msa_fcun_d __builtin_msa_fcun_w __builtin_msa_fcune_d __builtin_msa_fcune_w __builtin_msa_fdiv_d __builtin_msa_fdiv_w __builtin_msa_fexdo_h __builtin_msa_fexdo_w __builtin_msa_fexp2_d __builtin_msa_fexp2_w __builtin_msa_fexupl_d __builtin_msa_fexupl_w __builtin_msa_fexupr_d __builtin_msa_fexupr_w __builtin_msa_ffint_s_d __builtin_msa_ffint_s_w __builtin_msa_ffint_u_d __builtin_msa_ffint_u_w __builtin_msa_ffql_d __builtin_msa_ffql_w __builtin_msa_ffqr_d __builtin_msa_ffqr_w __builtin_msa_fill_b __builtin_msa_fill_d __builtin_msa_fill_h __builtin_msa_fill_w __builtin_msa_flog2_d __builtin_msa_flog2_w __builtin_msa_fmadd_d __builtin_msa_fmadd_w __builtin_msa_fmax_a_d __builtin_msa_fmax_a_w __builtin_msa_fmax_d __builtin_msa_fmax_w __builtin_msa_fmin_a_d __builtin_msa_fmin_a_w __builtin_msa_fmin_d __builtin_msa_fmin_w __builtin_msa_fmsub_d __builtin_msa_fmsub_w __builtin_msa_fmul_d __builtin_msa_fmul_w __builtin_msa_frcp_d __builtin_msa_frcp_w __builtin_msa_frint_d __builtin_msa_frint_w __builtin_msa_frsqrt_d __builtin_msa_frsqrt_w __builtin_msa_fsaf_d __builtin_msa_fsaf_w __builtin_msa_fseq_d __builtin_msa_fseq_w __builtin_msa_fsle_d __builtin_msa_fsle_w __builtin_msa_fslt_d __builtin_msa_fslt_w __builtin_msa_fsne_d __builtin_msa_fsne_w __builtin_msa_fsor_d __builtin_msa_fsor_w __builtin_msa_fsqrt_d __builtin_msa_fsqrt_w __builtin_msa_fsub_d __builtin_msa_fsub_w __builtin_msa_fsueq_d __builtin_msa_fsueq_w __builtin_msa_fsule_d __builtin_msa_fsule_w __builtin_msa_fsult_d __builtin_msa_fsult_w __builtin_msa_fsun_d __builtin_msa_fsun_w __builtin_msa_fsune_d __builtin_msa_fsune_w __builtin_msa_ftint_s_d __builtin_msa_ftint_s_w __builtin_msa_ftint_u_d __builtin_msa_ftint_u_w __builtin_msa_ftq_h __builtin_msa_ftq_w __builtin_msa_ftrunc_s_d __builtin_msa_ftrunc_s_w __builtin_msa_ftrunc_u_d __builtin_msa_ftrunc_u_w __builtin_msa_hadd_s_d __builtin_msa_hadd_s_h __builtin_msa_hadd_s_w __builtin_msa_hadd_u_d __builtin_msa_hadd_u_h __builtin_msa_hadd_u_w __builtin_msa_hsub_s_d __builtin_msa_hsub_s_h __builtin_msa_hsub_s_w __builtin_msa_hsub_u_d __builtin_msa_hsub_u_h __builtin_msa_hsub_u_w __builtin_msa_ilvev_b __builtin_msa_ilvev_d __builtin_msa_ilvev_h __builtin_msa_ilvev_w __builtin_msa_ilvl_b __builtin_msa_ilvl_d __builtin_msa_ilvl_h __builtin_msa_ilvl_w __builtin_msa_ilvod_b __builtin_msa_ilvod_d __builtin_msa_ilvod_h __builtin_msa_ilvod_w __builtin_msa_ilvr_b __builtin_msa_ilvr_d __builtin_msa_ilvr_h __builtin_msa_ilvr_w __builtin_msa_insert_b __builtin_msa_insert_d __builtin_msa_insert_h __builtin_msa_insert_w __builtin_mips_insv __builtin_msa_insve_b __builtin_msa_insve_d __builtin_msa_insve_h __builtin_msa_insve_w __builtin_mips_lbux __builtin_msa_ld_b __builtin_msa_ld_d __builtin_msa_ld_h __builtin_msa_ld_w __builtin_msa_ldi_b __builtin_msa_ldi_d __builtin_msa_ldi_h __builtin_msa_ldi_w __builtin_mips_lhx __builtin_mips_lsa __builtin_mips_lwx __builtin_mips_madd __builtin_msa_madd_q_h __builtin_msa_madd_q_w __builtin_msa_maddr_q_h __builtin_msa_maddr_q_w __builtin_mips_maddu __builtin_msa_maddv_b __builtin_msa_maddv_d __builtin_msa_maddv_h __builtin_msa_maddv_w __builtin_mips_maq_s_w_phl __builtin_mips_maq_s_w_phr __builtin_mips_maq_sa_w_phl __builtin_mips_maq_sa_w_phr __builtin_msa_max_a_b __builtin_msa_max_a_d __builtin_msa_max_a_h __builtin_msa_max_a_w __builtin_msa_max_s_b __builtin_msa_max_s_d __builtin_msa_max_s_h __builtin_msa_max_s_w __builtin_msa_max_u_b __builtin_msa_max_u_d __builtin_msa_max_u_h __builtin_msa_max_u_w __builtin_msa_maxi_s_b __builtin_msa_maxi_s_d __builtin_msa_maxi_s_h __builtin_msa_maxi_s_w __builtin_msa_maxi_u_b __builtin_msa_maxi_u_d __builtin_msa_maxi_u_h __builtin_msa_maxi_u_w __builtin_msa_min_a_b __builtin_msa_min_a_d __builtin_msa_min_a_h __builtin_msa_min_a_w __builtin_msa_min_s_b __builtin_msa_min_s_d __builtin_msa_min_s_h __builtin_msa_min_s_w __builtin_msa_min_u_b __builtin_msa_min_u_d __builtin_msa_min_u_h __builtin_msa_min_u_w __builtin_msa_mini_s_b __builtin_msa_mini_s_d __builtin_msa_mini_s_h __builtin_msa_mini_s_w __builtin_msa_mini_u_b __builtin_msa_mini_u_d __builtin_msa_mini_u_h __builtin_msa_mini_u_w __builtin_msa_mod_s_b __builtin_msa_mod_s_d __builtin_msa_mod_s_h __builtin_msa_mod_s_w __builtin_msa_mod_u_b __builtin_msa_mod_u_d __builtin_msa_mod_u_h __builtin_msa_mod_u_w __builtin_mips_modsub __builtin_msa_move_v __builtin_mips_msub __builtin_msa_msub_q_h __builtin_msa_msub_q_w __builtin_msa_msubr_q_h __builtin_msa_msubr_q_w __builtin_mips_msubu __builtin_msa_msubv_b __builtin_msa_msubv_d __builtin_msa_msubv_h __builtin_msa_msubv_w __builtin_mips_mthlip __builtin_mips_mul_ph __builtin_msa_mul_q_h __builtin_msa_mul_q_w __builtin_mips_mul_s_ph __builtin_mips_muleq_s_w_phl __builtin_mips_muleq_s_w_phr __builtin_mips_muleu_s_ph_qbl __builtin_mips_muleu_s_ph_qbr __builtin_mips_mulq_rs_ph __builtin_mips_mulq_rs_w __builtin_mips_mulq_s_ph __builtin_mips_mulq_s_w __builtin_msa_mulr_q_h __builtin_msa_mulr_q_w __builtin_mips_mulsa_w_ph __builtin_mips_mulsaq_s_w_ph __builtin_mips_mult __builtin_mips_multu __builtin_msa_mulv_b __builtin_msa_mulv_d __builtin_msa_mulv_h __builtin_msa_mulv_w __builtin_msa_nloc_b __builtin_msa_nloc_d __builtin_msa_nloc_h __builtin_msa_nloc_w __builtin_msa_nlzc_b __builtin_msa_nlzc_d __builtin_msa_nlzc_h __builtin_msa_nlzc_w __builtin_msa_nor_v __builtin_msa_nori_b __builtin_msa_or_v __builtin_msa_ori_b __builtin_mips_packrl_ph __builtin_msa_pckev_b __builtin_msa_pckev_d __builtin_msa_pckev_h __builtin_msa_pckev_w __builtin_msa_pckod_b __builtin_msa_pckod_d __builtin_msa_pckod_h __builtin_msa_pckod_w __builtin_msa_pcnt_b __builtin_msa_pcnt_d __builtin_msa_pcnt_h __builtin_msa_pcnt_w __builtin_mips_pick_ph __builtin_mips_pick_qb __builtin_mips_preceq_w_phl __builtin_mips_preceq_w_phr __builtin_mips_precequ_ph_qbl __builtin_mips_precequ_ph_qbla __builtin_mips_precequ_ph_qbr __builtin_mips_precequ_ph_qbra __builtin_mips_preceu_ph_qbl __builtin_mips_preceu_ph_qbla __builtin_mips_preceu_ph_qbr __builtin_mips_preceu_ph_qbra __builtin_mips_precr_qb_ph __builtin_mips_precr_sra_ph_w __builtin_mips_precr_sra_r_ph_w __builtin_mips_precrq_ph_w __builtin_mips_precrq_qb_ph __builtin_mips_precrq_rs_ph_w __builtin_mips_precrqu_s_qb_ph __builtin_mips_prepend __builtin_mips_raddu_w_qb __builtin_mips_rddsp __builtin_mips_repl_ph __builtin_mips_repl_qb __builtin_msa_sat_s_b __builtin_msa_sat_s_d __builtin_msa_sat_s_h __builtin_msa_sat_s_w __builtin_msa_sat_u_b __builtin_msa_sat_u_d __builtin_msa_sat_u_h __builtin_msa_sat_u_w __builtin_msa_shf_b __builtin_msa_shf_h __builtin_msa_shf_w __builtin_mips_shilo __builtin_mips_shll_ph __builtin_mips_shll_qb __builtin_mips_shll_s_ph __builtin_mips_shll_s_w __builtin_mips_shra_ph __builtin_mips_shra_qb __builtin_mips_shra_r_ph __builtin_mips_shra_r_qb __builtin_mips_shra_r_w __builtin_mips_shrl_ph __builtin_mips_shrl_qb __builtin_msa_sld_b __builtin_msa_sld_d __builtin_msa_sld_h __builtin_msa_sld_w __builtin_msa_sldi_b __builtin_msa_sldi_d __builtin_msa_sldi_h __builtin_msa_sldi_w __builtin_msa_sll_b __builtin_msa_sll_d __builtin_msa_sll_h __builtin_msa_sll_w __builtin_msa_slli_b __builtin_msa_slli_d __builtin_msa_slli_h __builtin_msa_slli_w __builtin_msa_splat_b __builtin_msa_splat_d __builtin_msa_splat_h __builtin_msa_splat_w __builtin_msa_splati_b __builtin_msa_splati_d __builtin_msa_splati_h __builtin_msa_splati_w __builtin_msa_sra_b __builtin_msa_sra_d __builtin_msa_sra_h __builtin_msa_sra_w __builtin_msa_srai_b __builtin_msa_srai_d __builtin_msa_srai_h __builtin_msa_srai_w __builtin_msa_srar_b __builtin_msa_srar_d __builtin_msa_srar_h __builtin_msa_srar_w __builtin_msa_srari_b __builtin_msa_srari_d __builtin_msa_srari_h __builtin_msa_srari_w __builtin_msa_srl_b __builtin_msa_srl_d __builtin_msa_srl_h __builtin_msa_srl_w __builtin_msa_srli_b __builtin_msa_srli_d __builtin_msa_srli_h __builtin_msa_srli_w __builtin_msa_srlr_b __builtin_msa_srlr_d __builtin_msa_srlr_h __builtin_msa_srlr_w __builtin_msa_srlri_b __builtin_msa_srlri_d __builtin_msa_srlri_h __builtin_msa_srlri_w __builtin_msa_st_b __builtin_msa_st_d __builtin_msa_st_h __builtin_msa_st_w __builtin_mips_subq_ph __builtin_mips_subq_s_ph __builtin_mips_subq_s_w __builtin_mips_subqh_ph __builtin_mips_subqh_r_ph __builtin_mips_subqh_r_w __builtin_mips_subqh_w __builtin_msa_subs_s_b __builtin_msa_subs_s_d __builtin_msa_subs_s_h __builtin_msa_subs_s_w __builtin_msa_subs_u_b __builtin_msa_subs_u_d __builtin_msa_subs_u_h __builtin_msa_subs_u_w __builtin_msa_subsus_u_b __builtin_msa_subsus_u_d __builtin_msa_subsus_u_h __builtin_msa_subsus_u_w __builtin_msa_subsuu_s_b __builtin_msa_subsuu_s_d __builtin_msa_subsuu_s_h __builtin_msa_subsuu_s_w __builtin_mips_subu_ph __builtin_mips_subu_qb __builtin_mips_subu_s_ph __builtin_mips_subu_s_qb __builtin_mips_subuh_qb __builtin_mips_subuh_r_qb __builtin_msa_subv_b __builtin_msa_subv_d __builtin_msa_subv_h __builtin_msa_subv_w __builtin_msa_subvi_b __builtin_msa_subvi_d __builtin_msa_subvi_h __builtin_msa_subvi_w __builtin_msa_vshf_b __builtin_msa_vshf_d __builtin_msa_vshf_h __builtin_msa_vshf_w __builtin_mips_wrdsp __builtin_msa_xor_v __builtin_msa_xori_b __nvvm_abs_i __nvvm_abs_ll __nvvm_add_rm_d __nvvm_add_rm_f __nvvm_add_rm_ftz_f __nvvm_add_rn_d __nvvm_add_rn_f __nvvm_add_rn_ftz_f __nvvm_add_rp_d __nvvm_add_rp_f __nvvm_add_rp_ftz_f __nvvm_add_rz_d __nvvm_add_rz_f __nvvm_add_rz_ftz_f __nvvm_bar0 __nvvm_bar0_and __nvvm_bar0_or __nvvm_bar0_popc __nvvm_bitcast_d2ll __nvvm_bitcast_f2i __nvvm_bitcast_i2f __nvvm_bitcast_ll2d __nvvm_brev32 __nvvm_brev64 __nvvm_ceil_d __nvvm_ceil_f __nvvm_ceil_ftz_f __nvvm_clz_i __nvvm_clz_ll __nvvm_cos_approx_f __nvvm_cos_approx_ftz_f __nvvm_d2f_rm __nvvm_d2f_rm_ftz __nvvm_d2f_rn __nvvm_d2f_rn_ftz __nvvm_d2f_rp __nvvm_d2f_rp_ftz __nvvm_d2f_rz __nvvm_d2f_rz_ftz __nvvm_d2i_hi __nvvm_d2i_lo __nvvm_d2i_rm __nvvm_d2i_rn __nvvm_d2i_rp __nvvm_d2i_rz __nvvm_d2ll_rm __nvvm_d2ll_rn __nvvm_d2ll_rp __nvvm_d2ll_rz __nvvm_d2ui_rm __nvvm_d2ui_rn __nvvm_d2ui_rp __nvvm_d2ui_rz __nvvm_d2ull_rm __nvvm_d2ull_rn __nvvm_d2ull_rp __nvvm_d2ull_rz __nvvm_div_approx_f __nvvm_div_approx_ftz_f __nvvm_div_rm_d __nvvm_div_rm_f __nvvm_div_rm_ftz_f __nvvm_div_rn_d __nvvm_div_rn_f __nvvm_div_rn_ftz_f __nvvm_div_rp_d __nvvm_div_rp_f __nvvm_div_rp_ftz_f __nvvm_div_rz_d __nvvm_div_rz_f __nvvm_div_rz_ftz_f __nvvm_ex2_approx_d __nvvm_ex2_approx_f __nvvm_ex2_approx_ftz_f __nvvm_f2h_rn __nvvm_f2h_rn_ftz __nvvm_f2i_rm __nvvm_f2i_rm_ftz __nvvm_f2i_rn __nvvm_f2i_rn_ftz __nvvm_f2i_rp __nvvm_f2i_rp_ftz __nvvm_f2i_rz __nvvm_f2i_rz_ftz __nvvm_f2ll_rm __nvvm_f2ll_rm_ftz __nvvm_f2ll_rn __nvvm_f2ll_rn_ftz __nvvm_f2ll_rp __nvvm_f2ll_rp_ftz __nvvm_f2ll_rz __nvvm_f2ll_rz_ftz __nvvm_f2ui_rm __nvvm_f2ui_rm_ftz __nvvm_f2ui_rn __nvvm_f2ui_rn_ftz __nvvm_f2ui_rp __nvvm_f2ui_rp_ftz __nvvm_f2ui_rz __nvvm_f2ui_rz_ftz __nvvm_f2ull_rm __nvvm_f2ull_rm_ftz __nvvm_f2ull_rn __nvvm_f2ull_rn_ftz __nvvm_f2ull_rp __nvvm_f2ull_rp_ftz __nvvm_f2ull_rz __nvvm_f2ull_rz_ftz __nvvm_fabs_d __nvvm_fabs_f __nvvm_fabs_ftz_f __nvvm_floor_d __nvvm_floor_f __nvvm_floor_ftz_f __nvvm_fma_rm_d __nvvm_fma_rm_f __nvvm_fma_rm_ftz_f __nvvm_fma_rn_d __nvvm_fma_rn_f __nvvm_fma_rn_ftz_f __nvvm_fma_rp_d __nvvm_fma_rp_f __nvvm_fma_rp_ftz_f __nvvm_fma_rz_d __nvvm_fma_rz_f __nvvm_fma_rz_ftz_f __nvvm_fmax_d __nvvm_fmax_f __nvvm_fmax_ftz_f __nvvm_fmin_d __nvvm_fmin_f __nvvm_fmin_ftz_f __nvvm_h2f __nvvm_i2d_rm __nvvm_i2d_rn __nvvm_i2d_rp __nvvm_i2d_rz __nvvm_i2f_rm __nvvm_i2f_rn __nvvm_i2f_rp __nvvm_i2f_rz __nvvm_isspacep_const __nvvm_isspacep_global __nvvm_isspacep_local __nvvm_isspacep_shared __nvvm_istypep_sampler __nvvm_istypep_surface __nvvm_istypep_texture __nvvm_lg2_approx_d __nvvm_lg2_approx_f __nvvm_lg2_approx_ftz_f __nvvm_ll2d_rm __nvvm_ll2d_rn __nvvm_ll2d_rp __nvvm_ll2d_rz __nvvm_ll2f_rm __nvvm_ll2f_rn __nvvm_ll2f_rp __nvvm_ll2f_rz __nvvm_lohi_i2d __nvvm_max_i __nvvm_max_ll __nvvm_max_ui __nvvm_max_ull __nvvm_membar_cta __nvvm_membar_gl __nvvm_membar_sys __nvvm_min_i __nvvm_min_ll __nvvm_min_ui __nvvm_min_ull __nvvm_mul_rm_d __nvvm_mul_rm_f __nvvm_mul_rm_ftz_f __nvvm_mul_rn_d __nvvm_mul_rn_f __nvvm_mul_rn_ftz_f __nvvm_mul_rp_d __nvvm_mul_rp_f __nvvm_mul_rp_ftz_f __nvvm_mul_rz_d __nvvm_mul_rz_f __nvvm_mul_rz_ftz_f __nvvm_mul24_i __nvvm_mul24_ui __nvvm_mulhi_i __nvvm_mulhi_ll __nvvm_mulhi_ui __nvvm_mulhi_ull __nvvm_popc_i __nvvm_popc_ll __nvvm_prmt __nvvm_rcp_approx_ftz_d __nvvm_rcp_rm_d __nvvm_rcp_rm_f __nvvm_rcp_rm_ftz_f __nvvm_rcp_rn_d __nvvm_rcp_rn_f __nvvm_rcp_rn_ftz_f __nvvm_rcp_rp_d __nvvm_rcp_rp_f __nvvm_rcp_rp_ftz_f __nvvm_rcp_rz_d __nvvm_rcp_rz_f __nvvm_rcp_rz_ftz_f __nvvm_read_ptx_sreg_ctaid_x __nvvm_read_ptx_sreg_ctaid_y __nvvm_read_ptx_sreg_ctaid_z __nvvm_read_ptx_sreg_envreg0 __nvvm_read_ptx_sreg_envreg1 __nvvm_read_ptx_sreg_envreg10 __nvvm_read_ptx_sreg_envreg11 __nvvm_read_ptx_sreg_envreg12 __nvvm_read_ptx_sreg_envreg13 __nvvm_read_ptx_sreg_envreg14 __nvvm_read_ptx_sreg_envreg15 __nvvm_read_ptx_sreg_envreg16 __nvvm_read_ptx_sreg_envreg17 __nvvm_read_ptx_sreg_envreg18 __nvvm_read_ptx_sreg_envreg19 __nvvm_read_ptx_sreg_envreg2 __nvvm_read_ptx_sreg_envreg20 __nvvm_read_ptx_sreg_envreg21 __nvvm_read_ptx_sreg_envreg22 __nvvm_read_ptx_sreg_envreg23 __nvvm_read_ptx_sreg_envreg24 __nvvm_read_ptx_sreg_envreg25 __nvvm_read_ptx_sreg_envreg26 __nvvm_read_ptx_sreg_envreg27 __nvvm_read_ptx_sreg_envreg28 __nvvm_read_ptx_sreg_envreg29 __nvvm_read_ptx_sreg_envreg3 __nvvm_read_ptx_sreg_envreg30 __nvvm_read_ptx_sreg_envreg31 __nvvm_read_ptx_sreg_envreg4 __nvvm_read_ptx_sreg_envreg5 __nvvm_read_ptx_sreg_envreg6 __nvvm_read_ptx_sreg_envreg7 __nvvm_read_ptx_sreg_envreg8 __nvvm_read_ptx_sreg_envreg9 __nvvm_read_ptx_sreg_nctaid_x __nvvm_read_ptx_sreg_nctaid_y __nvvm_read_ptx_sreg_nctaid_z __nvvm_read_ptx_sreg_ntid_x __nvvm_read_ptx_sreg_ntid_y __nvvm_read_ptx_sreg_ntid_z __nvvm_read_ptx_sreg_tid_x __nvvm_read_ptx_sreg_tid_y __nvvm_read_ptx_sreg_tid_z __nvvm_read_ptx_sreg_warpsize __nvvm_rotate_b32 __nvvm_rotate_b64 __nvvm_rotate_right_b64 __nvvm_round_d __nvvm_round_f __nvvm_round_ftz_f __nvvm_rsqrt_approx_d __nvvm_rsqrt_approx_f __nvvm_rsqrt_approx_ftz_f __nvvm_sad_i __nvvm_sad_ui __nvvm_saturate_d __nvvm_saturate_f __nvvm_saturate_ftz_f __nvvm_sin_approx_f __nvvm_sin_approx_ftz_f __nvvm_sqrt_approx_f __nvvm_sqrt_approx_ftz_f __nvvm_sqrt_f __nvvm_sqrt_rm_d __nvvm_sqrt_rm_f __nvvm_sqrt_rm_ftz_f __nvvm_sqrt_rn_d __nvvm_sqrt_rn_f __nvvm_sqrt_rn_ftz_f __nvvm_sqrt_rp_d __nvvm_sqrt_rp_f __nvvm_sqrt_rp_ftz_f __nvvm_sqrt_rz_d __nvvm_sqrt_rz_f __nvvm_sqrt_rz_ftz_f __nvvm_suq_array_size __nvvm_suq_channel_data_type __nvvm_suq_channel_order __nvvm_suq_depth __nvvm_suq_height __nvvm_suq_width __nvvm_sust_b_1d_array_i16_clamp __nvvm_sust_b_1d_array_i16_trap __nvvm_sust_b_1d_array_i16_zero __nvvm_sust_b_1d_array_i32_clamp __nvvm_sust_b_1d_array_i32_trap __nvvm_sust_b_1d_array_i32_zero __nvvm_sust_b_1d_array_i64_clamp __nvvm_sust_b_1d_array_i64_trap __nvvm_sust_b_1d_array_i64_zero __nvvm_sust_b_1d_array_i8_clamp __nvvm_sust_b_1d_array_i8_trap __nvvm_sust_b_1d_array_i8_zero __nvvm_sust_b_1d_array_v2i16_clamp __nvvm_sust_b_1d_array_v2i16_trap __nvvm_sust_b_1d_array_v2i16_zero __nvvm_sust_b_1d_array_v2i32_clamp __nvvm_sust_b_1d_array_v2i32_trap __nvvm_sust_b_1d_array_v2i32_zero __nvvm_sust_b_1d_array_v2i64_clamp __nvvm_sust_b_1d_array_v2i64_trap __nvvm_sust_b_1d_array_v2i64_zero __nvvm_sust_b_1d_array_v2i8_clamp __nvvm_sust_b_1d_array_v2i8_trap __nvvm_sust_b_1d_array_v2i8_zero __nvvm_sust_b_1d_array_v4i16_clamp __nvvm_sust_b_1d_array_v4i16_trap __nvvm_sust_b_1d_array_v4i16_zero __nvvm_sust_b_1d_array_v4i32_clamp __nvvm_sust_b_1d_array_v4i32_trap __nvvm_sust_b_1d_array_v4i32_zero __nvvm_sust_b_1d_array_v4i8_clamp __nvvm_sust_b_1d_array_v4i8_trap __nvvm_sust_b_1d_array_v4i8_zero __nvvm_sust_b_1d_i16_clamp __nvvm_sust_b_1d_i16_trap __nvvm_sust_b_1d_i16_zero __nvvm_sust_b_1d_i32_clamp __nvvm_sust_b_1d_i32_trap __nvvm_sust_b_1d_i32_zero __nvvm_sust_b_1d_i64_clamp __nvvm_sust_b_1d_i64_trap __nvvm_sust_b_1d_i64_zero __nvvm_sust_b_1d_i8_clamp __nvvm_sust_b_1d_i8_trap __nvvm_sust_b_1d_i8_zero __nvvm_sust_b_1d_v2i16_clamp __nvvm_sust_b_1d_v2i16_trap __nvvm_sust_b_1d_v2i16_zero __nvvm_sust_b_1d_v2i32_clamp __nvvm_sust_b_1d_v2i32_trap __nvvm_sust_b_1d_v2i32_zero __nvvm_sust_b_1d_v2i64_clamp __nvvm_sust_b_1d_v2i64_trap __nvvm_sust_b_1d_v2i64_zero __nvvm_sust_b_1d_v2i8_clamp __nvvm_sust_b_1d_v2i8_trap __nvvm_sust_b_1d_v2i8_zero __nvvm_sust_b_1d_v4i16_clamp __nvvm_sust_b_1d_v4i16_trap __nvvm_sust_b_1d_v4i16_zero __nvvm_sust_b_1d_v4i32_clamp __nvvm_sust_b_1d_v4i32_trap __nvvm_sust_b_1d_v4i32_zero __nvvm_sust_b_1d_v4i8_clamp __nvvm_sust_b_1d_v4i8_trap __nvvm_sust_b_1d_v4i8_zero __nvvm_sust_b_2d_array_i16_clamp __nvvm_sust_b_2d_array_i16_trap __nvvm_sust_b_2d_array_i16_zero __nvvm_sust_b_2d_array_i32_clamp __nvvm_sust_b_2d_array_i32_trap __nvvm_sust_b_2d_array_i32_zero __nvvm_sust_b_2d_array_i64_clamp __nvvm_sust_b_2d_array_i64_trap __nvvm_sust_b_2d_array_i64_zero __nvvm_sust_b_2d_array_i8_clamp __nvvm_sust_b_2d_array_i8_trap __nvvm_sust_b_2d_array_i8_zero __nvvm_sust_b_2d_array_v2i16_clamp __nvvm_sust_b_2d_array_v2i16_trap __nvvm_sust_b_2d_array_v2i16_zero __nvvm_sust_b_2d_array_v2i32_clamp __nvvm_sust_b_2d_array_v2i32_trap __nvvm_sust_b_2d_array_v2i32_zero __nvvm_sust_b_2d_array_v2i64_clamp __nvvm_sust_b_2d_array_v2i64_trap __nvvm_sust_b_2d_array_v2i64_zero __nvvm_sust_b_2d_array_v2i8_clamp __nvvm_sust_b_2d_array_v2i8_trap __nvvm_sust_b_2d_array_v2i8_zero __nvvm_sust_b_2d_array_v4i16_clamp __nvvm_sust_b_2d_array_v4i16_trap __nvvm_sust_b_2d_array_v4i16_zero __nvvm_sust_b_2d_array_v4i32_clamp __nvvm_sust_b_2d_array_v4i32_trap __nvvm_sust_b_2d_array_v4i32_zero __nvvm_sust_b_2d_array_v4i8_clamp __nvvm_sust_b_2d_array_v4i8_trap __nvvm_sust_b_2d_array_v4i8_zero __nvvm_sust_b_2d_i16_clamp __nvvm_sust_b_2d_i16_trap __nvvm_sust_b_2d_i16_zero __nvvm_sust_b_2d_i32_clamp __nvvm_sust_b_2d_i32_trap __nvvm_sust_b_2d_i32_zero __nvvm_sust_b_2d_i64_clamp __nvvm_sust_b_2d_i64_trap __nvvm_sust_b_2d_i64_zero __nvvm_sust_b_2d_i8_clamp __nvvm_sust_b_2d_i8_trap __nvvm_sust_b_2d_i8_zero __nvvm_sust_b_2d_v2i16_clamp __nvvm_sust_b_2d_v2i16_trap __nvvm_sust_b_2d_v2i16_zero __nvvm_sust_b_2d_v2i32_clamp __nvvm_sust_b_2d_v2i32_trap __nvvm_sust_b_2d_v2i32_zero __nvvm_sust_b_2d_v2i64_clamp __nvvm_sust_b_2d_v2i64_trap __nvvm_sust_b_2d_v2i64_zero __nvvm_sust_b_2d_v2i8_clamp __nvvm_sust_b_2d_v2i8_trap __nvvm_sust_b_2d_v2i8_zero __nvvm_sust_b_2d_v4i16_clamp __nvvm_sust_b_2d_v4i16_trap __nvvm_sust_b_2d_v4i16_zero __nvvm_sust_b_2d_v4i32_clamp __nvvm_sust_b_2d_v4i32_trap __nvvm_sust_b_2d_v4i32_zero __nvvm_sust_b_2d_v4i8_clamp __nvvm_sust_b_2d_v4i8_trap __nvvm_sust_b_2d_v4i8_zero __nvvm_sust_b_3d_i16_clamp __nvvm_sust_b_3d_i16_trap __nvvm_sust_b_3d_i16_zero __nvvm_sust_b_3d_i32_clamp __nvvm_sust_b_3d_i32_trap __nvvm_sust_b_3d_i32_zero __nvvm_sust_b_3d_i64_clamp __nvvm_sust_b_3d_i64_trap __nvvm_sust_b_3d_i64_zero __nvvm_sust_b_3d_i8_clamp __nvvm_sust_b_3d_i8_trap __nvvm_sust_b_3d_i8_zero __nvvm_sust_b_3d_v2i16_clamp __nvvm_sust_b_3d_v2i16_trap __nvvm_sust_b_3d_v2i16_zero __nvvm_sust_b_3d_v2i32_clamp __nvvm_sust_b_3d_v2i32_trap __nvvm_sust_b_3d_v2i32_zero __nvvm_sust_b_3d_v2i64_clamp __nvvm_sust_b_3d_v2i64_trap __nvvm_sust_b_3d_v2i64_zero __nvvm_sust_b_3d_v2i8_clamp __nvvm_sust_b_3d_v2i8_trap __nvvm_sust_b_3d_v2i8_zero __nvvm_sust_b_3d_v4i16_clamp __nvvm_sust_b_3d_v4i16_trap __nvvm_sust_b_3d_v4i16_zero __nvvm_sust_b_3d_v4i32_clamp __nvvm_sust_b_3d_v4i32_trap __nvvm_sust_b_3d_v4i32_zero __nvvm_sust_b_3d_v4i8_clamp __nvvm_sust_b_3d_v4i8_trap __nvvm_sust_b_3d_v4i8_zero __nvvm_sust_p_1d_array_i16_trap __nvvm_sust_p_1d_array_i32_trap __nvvm_sust_p_1d_array_i8_trap __nvvm_sust_p_1d_array_v2i16_trap __nvvm_sust_p_1d_array_v2i32_trap __nvvm_sust_p_1d_array_v2i8_trap __nvvm_sust_p_1d_array_v4i16_trap __nvvm_sust_p_1d_array_v4i32_trap __nvvm_sust_p_1d_array_v4i8_trap __nvvm_sust_p_1d_i16_trap __nvvm_sust_p_1d_i32_trap __nvvm_sust_p_1d_i8_trap __nvvm_sust_p_1d_v2i16_trap __nvvm_sust_p_1d_v2i32_trap __nvvm_sust_p_1d_v2i8_trap __nvvm_sust_p_1d_v4i16_trap __nvvm_sust_p_1d_v4i32_trap __nvvm_sust_p_1d_v4i8_trap __nvvm_sust_p_2d_array_i16_trap __nvvm_sust_p_2d_array_i32_trap __nvvm_sust_p_2d_array_i8_trap __nvvm_sust_p_2d_array_v2i16_trap __nvvm_sust_p_2d_array_v2i32_trap __nvvm_sust_p_2d_array_v2i8_trap __nvvm_sust_p_2d_array_v4i16_trap __nvvm_sust_p_2d_array_v4i32_trap __nvvm_sust_p_2d_array_v4i8_trap __nvvm_sust_p_2d_i16_trap __nvvm_sust_p_2d_i32_trap __nvvm_sust_p_2d_i8_trap __nvvm_sust_p_2d_v2i16_trap __nvvm_sust_p_2d_v2i32_trap __nvvm_sust_p_2d_v2i8_trap __nvvm_sust_p_2d_v4i16_trap __nvvm_sust_p_2d_v4i32_trap __nvvm_sust_p_2d_v4i8_trap __nvvm_sust_p_3d_i16_trap __nvvm_sust_p_3d_i32_trap __nvvm_sust_p_3d_i8_trap __nvvm_sust_p_3d_v2i16_trap __nvvm_sust_p_3d_v2i32_trap __nvvm_sust_p_3d_v2i8_trap __nvvm_sust_p_3d_v4i16_trap __nvvm_sust_p_3d_v4i32_trap __nvvm_sust_p_3d_v4i8_trap __nvvm_swap_lo_hi_b64 __nvvm_trunc_d __nvvm_trunc_f __nvvm_trunc_ftz_f __nvvm_txq_array_size __nvvm_txq_channel_data_type __nvvm_txq_channel_order __nvvm_txq_depth __nvvm_txq_height __nvvm_txq_num_mipmap_levels __nvvm_txq_num_samples __nvvm_txq_width __nvvm_ui2d_rm __nvvm_ui2d_rn __nvvm_ui2d_rp __nvvm_ui2d_rz __nvvm_ui2f_rm __nvvm_ui2f_rn __nvvm_ui2f_rp __nvvm_ui2f_rz __nvvm_ull2d_rm __nvvm_ull2d_rn __nvvm_ull2d_rp __nvvm_ull2d_rz __nvvm_ull2f_rm __nvvm_ull2f_rn __nvvm_ull2f_rp __nvvm_ull2f_rz __builtin_object_size __builtin_altivec_crypto_vcipher __builtin_altivec_crypto_vcipherlast __builtin_altivec_crypto_vncipher __builtin_altivec_crypto_vncipherlast __builtin_altivec_crypto_vpermxor __builtin_altivec_crypto_vpmsumb __builtin_altivec_crypto_vpmsumd __builtin_altivec_crypto_vpmsumh __builtin_altivec_crypto_vpmsumw __builtin_altivec_crypto_vsbox __builtin_altivec_crypto_vshasigmad __builtin_altivec_crypto_vshasigmaw __builtin_altivec_dss __builtin_altivec_dssall __builtin_altivec_dst __builtin_altivec_dstst __builtin_altivec_dststt __builtin_altivec_dstt __builtin_altivec_mfvscr __builtin_altivec_mtvscr __builtin_altivec_vaddcuq __builtin_altivec_vaddcuw __builtin_altivec_vaddecuq __builtin_altivec_vaddeuqm __builtin_altivec_vaddsbs __builtin_altivec_vaddshs __builtin_altivec_vaddsws __builtin_altivec_vaddubs __builtin_altivec_vadduhs __builtin_altivec_vadduws __builtin_altivec_vavgsb __builtin_altivec_vavgsh __builtin_altivec_vavgsw __builtin_altivec_vavgub __builtin_altivec_vavguh __builtin_altivec_vavguw __builtin_altivec_vbpermq __builtin_altivec_vcfsx __builtin_altivec_vcfux __builtin_altivec_vcmpbfp __builtin_altivec_vcmpbfp_p __builtin_altivec_vcmpeqfp __builtin_altivec_vcmpeqfp_p __builtin_altivec_vcmpequb __builtin_altivec_vcmpequb_p __builtin_altivec_vcmpequd __builtin_altivec_vcmpequd_p __builtin_altivec_vcmpequh __builtin_altivec_vcmpequh_p __builtin_altivec_vcmpequw __builtin_altivec_vcmpequw_p __builtin_altivec_vcmpgefp __builtin_altivec_vcmpgefp_p __builtin_altivec_vcmpgtfp __builtin_altivec_vcmpgtfp_p __builtin_altivec_vcmpgtsb __builtin_altivec_vcmpgtsb_p __builtin_altivec_vcmpgtsd __builtin_altivec_vcmpgtsd_p __builtin_altivec_vcmpgtsh __builtin_altivec_vcmpgtsh_p __builtin_altivec_vcmpgtsw __builtin_altivec_vcmpgtsw_p __builtin_altivec_vcmpgtub __builtin_altivec_vcmpgtub_p __builtin_altivec_vcmpgtud __builtin_altivec_vcmpgtud_p __builtin_altivec_vcmpgtuh __builtin_altivec_vcmpgtuh_p __builtin_altivec_vcmpgtuw __builtin_altivec_vcmpgtuw_p __builtin_altivec_vctsxs __builtin_altivec_vctuxs __builtin_altivec_vexptefp __builtin_altivec_vgbbd __builtin_altivec_vlogefp __builtin_altivec_vmaddfp __builtin_altivec_vmaxfp __builtin_altivec_vmaxsb __builtin_altivec_vmaxsd __builtin_altivec_vmaxsh __builtin_altivec_vmaxsw __builtin_altivec_vmaxub __builtin_altivec_vmaxud __builtin_altivec_vmaxuh __builtin_altivec_vmaxuw __builtin_altivec_vmhaddshs __builtin_altivec_vmhraddshs __builtin_altivec_vminfp __builtin_altivec_vminsb __builtin_altivec_vminsd __builtin_altivec_vminsh __builtin_altivec_vminsw __builtin_altivec_vminub __builtin_altivec_vminud __builtin_altivec_vminuh __builtin_altivec_vminuw __builtin_altivec_vmladduhm __builtin_altivec_vmsummbm __builtin_altivec_vmsumshm __builtin_altivec_vmsumshs __builtin_altivec_vmsumubm __builtin_altivec_vmsumuhm __builtin_altivec_vmsumuhs __builtin_altivec_vmulesb __builtin_altivec_vmulesh __builtin_altivec_vmulesw __builtin_altivec_vmuleub __builtin_altivec_vmuleuh __builtin_altivec_vmuleuw __builtin_altivec_vmulosb __builtin_altivec_vmulosh __builtin_altivec_vmulosw __builtin_altivec_vmuloub __builtin_altivec_vmulouh __builtin_altivec_vmulouw __builtin_altivec_vnmsubfp __builtin_altivec_vperm_4si __builtin_altivec_vpkpx __builtin_altivec_vpksdss __builtin_altivec_vpksdus __builtin_altivec_vpkshss __builtin_altivec_vpkshus __builtin_altivec_vpkswss __builtin_altivec_vpkswus __builtin_altivec_vpkudus __builtin_altivec_vpkuhus __builtin_altivec_vpkuwus __builtin_altivec_vrefp __builtin_altivec_vrfim __builtin_altivec_vrfin __builtin_altivec_vrfip __builtin_altivec_vrfiz __builtin_altivec_vrlb __builtin_altivec_vrld __builtin_altivec_vrlh __builtin_altivec_vrlw __builtin_altivec_vrsqrtefp __builtin_altivec_vsel_4si __builtin_altivec_vsl __builtin_altivec_vslb __builtin_altivec_vslh __builtin_altivec_vslo __builtin_altivec_vslw __builtin_altivec_vsr __builtin_altivec_vsrab __builtin_altivec_vsrah __builtin_altivec_vsraw __builtin_altivec_vsrb __builtin_altivec_vsrh __builtin_altivec_vsro __builtin_altivec_vsrw __builtin_altivec_vsubcuq __builtin_altivec_vsubcuw __builtin_altivec_vsubecuq __builtin_altivec_vsubeuqm __builtin_altivec_vsubsbs __builtin_altivec_vsubshs __builtin_altivec_vsubsws __builtin_altivec_vsububs __builtin_altivec_vsubuhs __builtin_altivec_vsubuws __builtin_altivec_vsum2sws __builtin_altivec_vsum4sbs __builtin_altivec_vsum4shs __builtin_altivec_vsum4ubs __builtin_altivec_vsumsws __builtin_altivec_vupkhpx __builtin_altivec_vupkhsb __builtin_altivec_vupkhsh __builtin_altivec_vupkhsw __builtin_altivec_vupklpx __builtin_altivec_vupklsb __builtin_altivec_vupklsh __builtin_altivec_vupklsw __builtin_bpermd __builtin_divde __builtin_divdeu __builtin_divwe __builtin_divweu __builtin_get_texasr __builtin_get_texasru __builtin_get_tfhar __builtin_get_tfiar __builtin_qpx_qvfabs __builtin_qpx_qvfadd __builtin_qpx_qvfadds __builtin_qpx_qvfcfid __builtin_qpx_qvfcfids __builtin_qpx_qvfcfidu __builtin_qpx_qvfcfidus __builtin_qpx_qvfcmpeq __builtin_qpx_qvfcmpgt __builtin_qpx_qvfcmplt __builtin_qpx_qvfcpsgn __builtin_qpx_qvfctid __builtin_qpx_qvfctidu __builtin_qpx_qvfctiduz __builtin_qpx_qvfctidz __builtin_qpx_qvfctiw __builtin_qpx_qvfctiwu __builtin_qpx_qvfctiwuz __builtin_qpx_qvfctiwz __builtin_qpx_qvflogical __builtin_qpx_qvfmadd __builtin_qpx_qvfmadds __builtin_qpx_qvfmsub __builtin_qpx_qvfmsubs __builtin_qpx_qvfmul __builtin_qpx_qvfmuls __builtin_qpx_qvfnabs __builtin_qpx_qvfneg __builtin_qpx_qvfnmadd __builtin_qpx_qvfnmadds __builtin_qpx_qvfnmsub __builtin_qpx_qvfnmsubs __builtin_qpx_qvfperm __builtin_qpx_qvfre __builtin_qpx_qvfres __builtin_qpx_qvfrim __builtin_qpx_qvfrin __builtin_qpx_qvfrip __builtin_qpx_qvfriz __builtin_qpx_qvfrsp __builtin_qpx_qvfrsqrte __builtin_qpx_qvfrsqrtes __builtin_qpx_qvfsel __builtin_qpx_qvfsub __builtin_qpx_qvfsubs __builtin_qpx_qvftstnan __builtin_qpx_qvfxmadd __builtin_qpx_qvfxmadds __builtin_qpx_qvfxmul __builtin_qpx_qvfxmuls __builtin_qpx_qvfxxcpnmadd __builtin_qpx_qvfxxcpnmadds __builtin_qpx_qvfxxmadd __builtin_qpx_qvfxxmadds __builtin_qpx_qvfxxnpmadd __builtin_qpx_qvfxxnpmadds __builtin_qpx_qvgpci __builtin_qpx_qvlfcd __builtin_qpx_qvlfcda __builtin_qpx_qvlfcs __builtin_qpx_qvlfcsa __builtin_qpx_qvlfd __builtin_qpx_qvlfda __builtin_qpx_qvlfiwa __builtin_qpx_qvlfiwaa __builtin_qpx_qvlfiwz __builtin_qpx_qvlfiwza __builtin_qpx_qvlfs __builtin_qpx_qvlfsa __builtin_qpx_qvlpcld __builtin_qpx_qvlpcls __builtin_qpx_qvlpcrd __builtin_qpx_qvlpcrs __builtin_qpx_qvstfcd __builtin_qpx_qvstfcda __builtin_qpx_qvstfcs __builtin_qpx_qvstfcsa __builtin_qpx_qvstfd __builtin_qpx_qvstfda __builtin_qpx_qvstfiw __builtin_qpx_qvstfiwa __builtin_qpx_qvstfs __builtin_qpx_qvstfsa __builtin_set_texasr __builtin_set_texasru __builtin_set_tfhar __builtin_set_tfiar __builtin_tabort __builtin_tabortdc __builtin_tabortdci __builtin_tabortwc __builtin_tabortwci __builtin_tbegin __builtin_tcheck __builtin_tend __builtin_tendall __builtin_trechkpt __builtin_treclaim __builtin_tresume __builtin_tsr __builtin_tsuspend __builtin_ttest __builtin_vsx_xsmaxdp __builtin_vsx_xsmindp __builtin_vsx_xvcmpeqdp __builtin_vsx_xvcmpeqdp_p __builtin_vsx_xvcmpeqsp __builtin_vsx_xvcmpeqsp_p __builtin_vsx_xvcmpgedp __builtin_vsx_xvcmpgedp_p __builtin_vsx_xvcmpgesp __builtin_vsx_xvcmpgesp_p __builtin_vsx_xvcmpgtdp __builtin_vsx_xvcmpgtdp_p __builtin_vsx_xvcmpgtsp __builtin_vsx_xvcmpgtsp_p __builtin_vsx_xvdivdp __builtin_vsx_xvdivsp __builtin_vsx_xvmaxdp __builtin_vsx_xvmaxsp __builtin_vsx_xvmindp __builtin_vsx_xvminsp __builtin_vsx_xvredp __builtin_vsx_xvresp __builtin_vsx_xvrsqrtedp __builtin_vsx_xvrsqrtesp __builtin_vsx_xxleqv __builtin_ptx_bar_sync __builtin_ptx_read_clock __builtin_ptx_read_clock64 __builtin_ptx_read_ctaid_w __builtin_ptx_read_ctaid_x __builtin_ptx_read_ctaid_y __builtin_ptx_read_ctaid_z __builtin_ptx_read_gridid __builtin_ptx_read_laneid __builtin_ptx_read_lanemask_eq __builtin_ptx_read_lanemask_ge __builtin_ptx_read_lanemask_gt __builtin_ptx_read_lanemask_le __builtin_ptx_read_lanemask_lt __builtin_ptx_read_nctaid_w __builtin_ptx_read_nctaid_x __builtin_ptx_read_nctaid_y __builtin_ptx_read_nctaid_z __builtin_ptx_read_nsmid __builtin_ptx_read_ntid_w __builtin_ptx_read_ntid_x __builtin_ptx_read_ntid_y __builtin_ptx_read_ntid_z __builtin_ptx_read_nwarpid __builtin_ptx_read_pm0 __builtin_ptx_read_pm1 __builtin_ptx_read_pm2 __builtin_ptx_read_pm3 __builtin_ptx_read_smid __builtin_ptx_read_tid_w __builtin_ptx_read_tid_x __builtin_ptx_read_tid_y __builtin_ptx_read_tid_z __builtin_ptx_read_warpid __builtin_r600_rat_store_typed __builtin_r600_read_global_size_x __builtin_r600_read_global_size_y __builtin_r600_read_global_size_z __builtin_r600_read_local_size_x __builtin_r600_read_local_size_y __builtin_r600_read_local_size_z __builtin_r600_read_ngroups_x __builtin_r600_read_ngroups_y __builtin_r600_read_ngroups_z __builtin_r600_read_tgid_x __builtin_r600_read_tgid_y __builtin_r600_read_tgid_z __builtin_r600_read_tidig_x __builtin_r600_read_tidig_y __builtin_r600_read_tidig_z __builtin_r600_read_workdim __builtin_tx_nesting_depth __builtin_s390_lcbb __builtin_tx_assist __builtin_s390_vaccb __builtin_s390_vacccq __builtin_s390_vaccf __builtin_s390_vaccg __builtin_s390_vacch __builtin_s390_vaccq __builtin_s390_vacq __builtin_s390_vaq __builtin_s390_vavgb __builtin_s390_vavgf __builtin_s390_vavgg __builtin_s390_vavgh __builtin_s390_vavglb __builtin_s390_vavglf __builtin_s390_vavglg __builtin_s390_vavglh __builtin_s390_vcksm __builtin_s390_verimb __builtin_s390_verimf __builtin_s390_verimg __builtin_s390_verimh __builtin_s390_verllb __builtin_s390_verllf __builtin_s390_verllg __builtin_s390_verllh __builtin_s390_verllvb __builtin_s390_verllvf __builtin_s390_verllvg __builtin_s390_verllvh __builtin_s390_vfaeb __builtin_s390_vfaef __builtin_s390_vfaeh __builtin_s390_vfaezb __builtin_s390_vfaezf __builtin_s390_vfaezh __builtin_s390_vfeeb __builtin_s390_vfeef __builtin_s390_vfeeh __builtin_s390_vfeezb __builtin_s390_vfeezf __builtin_s390_vfeezh __builtin_s390_vfeneb __builtin_s390_vfenef __builtin_s390_vfeneh __builtin_s390_vfenezb __builtin_s390_vfenezf __builtin_s390_vfenezh __builtin_s390_vgfmab __builtin_s390_vgfmaf __builtin_s390_vgfmag __builtin_s390_vgfmah __builtin_s390_vgfmb __builtin_s390_vgfmf __builtin_s390_vgfmg __builtin_s390_vgfmh __builtin_s390_vistrb __builtin_s390_vistrf __builtin_s390_vistrh __builtin_s390_vlbb __builtin_s390_vll __builtin_s390_vmaeb __builtin_s390_vmaef __builtin_s390_vmaeh __builtin_s390_vmahb __builtin_s390_vmahf __builtin_s390_vmahh __builtin_s390_vmaleb __builtin_s390_vmalef __builtin_s390_vmaleh __builtin_s390_vmalhb __builtin_s390_vmalhf __builtin_s390_vmalhh __builtin_s390_vmalob __builtin_s390_vmalof __builtin_s390_vmaloh __builtin_s390_vmaob __builtin_s390_vmaof __builtin_s390_vmaoh __builtin_s390_vmeb __builtin_s390_vmef __builtin_s390_vmeh __builtin_s390_vmhb __builtin_s390_vmhf __builtin_s390_vmhh __builtin_s390_vmleb __builtin_s390_vmlef __builtin_s390_vmleh __builtin_s390_vmlhb __builtin_s390_vmlhf __builtin_s390_vmlhh __builtin_s390_vmlob __builtin_s390_vmlof __builtin_s390_vmloh __builtin_s390_vmob __builtin_s390_vmof __builtin_s390_vmoh __builtin_s390_vpdi __builtin_s390_vperm __builtin_s390_vpklsf __builtin_s390_vpklsg __builtin_s390_vpklsh __builtin_s390_vpksf __builtin_s390_vpksg __builtin_s390_vpksh __builtin_s390_vsbcbiq __builtin_s390_vsbiq __builtin_s390_vscbib __builtin_s390_vscbif __builtin_s390_vscbig __builtin_s390_vscbih __builtin_s390_vscbiq __builtin_s390_vsl __builtin_s390_vslb __builtin_s390_vsldb __builtin_s390_vsq __builtin_s390_vsra __builtin_s390_vsrab __builtin_s390_vsrl __builtin_s390_vsrlb __builtin_s390_vstl __builtin_s390_vstrcb __builtin_s390_vstrcf __builtin_s390_vstrch __builtin_s390_vstrczb __builtin_s390_vstrczf __builtin_s390_vstrczh __builtin_s390_vsumb __builtin_s390_vsumgf __builtin_s390_vsumgh __builtin_s390_vsumh __builtin_s390_vsumqf __builtin_s390_vsumqg __builtin_s390_vtm __builtin_s390_vuphb __builtin_s390_vuphf __builtin_s390_vuphh __builtin_s390_vuplb __builtin_s390_vuplf __builtin_s390_vuplhb __builtin_s390_vuplhf __builtin_s390_vuplhh __builtin_s390_vuplhw __builtin_s390_vupllb __builtin_s390_vupllf __builtin_s390_vupllh __builtin_stack_restore __builtin_stack_save __builtin_thread_pointer __builtin_trap __builtin_ia32_pavgusb __builtin_ia32_pf2id __builtin_ia32_pfacc __builtin_ia32_pfadd __builtin_ia32_pfcmpeq __builtin_ia32_pfcmpge __builtin_ia32_pfcmpgt __builtin_ia32_pfmax __builtin_ia32_pfmin __builtin_ia32_pfmul __builtin_ia32_pfrcp __builtin_ia32_pfrcpit1 __builtin_ia32_pfrcpit2 __builtin_ia32_pfrsqit1 __builtin_ia32_pfrsqrt __builtin_ia32_pfsub __builtin_ia32_pfsubr __builtin_ia32_pi2fd __builtin_ia32_pmulhrw __builtin_ia32_pf2iw __builtin_ia32_pfnacc __builtin_ia32_pfpnacc __builtin_ia32_pi2fw __builtin_ia32_addcarry_u32 __builtin_ia32_addcarry_u64 __builtin_ia32_addcarryx_u32 __builtin_ia32_addcarryx_u64 __builtin_ia32_aesdec128 __builtin_ia32_aesdeclast128 __builtin_ia32_aesenc128 __builtin_ia32_aesenclast128 __builtin_ia32_aesimc128 __builtin_ia32_aeskeygenassist128 __builtin_ia32_addsubpd256 __builtin_ia32_addsubps256 __builtin_ia32_blendvpd256 __builtin_ia32_blendvps256 __builtin_ia32_cmppd256 __builtin_ia32_cmpps256 __builtin_ia32_cvtpd2ps256 __builtin_ia32_cvtpd2dq256 __builtin_ia32_cvtps2pd256 __builtin_ia32_cvtps2dq256 __builtin_ia32_cvtdq2pd256 __builtin_ia32_cvtdq2ps256 __builtin_ia32_cvttpd2dq256 __builtin_ia32_cvttps2dq256 __builtin_ia32_dpps256 __builtin_ia32_haddpd256 __builtin_ia32_haddps256 __builtin_ia32_hsubpd256 __builtin_ia32_hsubps256 __builtin_ia32_lddqu256 __builtin_ia32_maskloadpd __builtin_ia32_maskloadpd256 __builtin_ia32_maskloadps __builtin_ia32_maskloadps256 __builtin_ia32_maskstorepd __builtin_ia32_maskstorepd256 __builtin_ia32_maskstoreps __builtin_ia32_maskstoreps256 __builtin_ia32_maxpd256 __builtin_ia32_maxps256 __builtin_ia32_minpd256 __builtin_ia32_minps256 __builtin_ia32_movmskpd256 __builtin_ia32_movmskps256 __builtin_ia32_ptestc256 __builtin_ia32_ptestnzc256 __builtin_ia32_ptestz256 __builtin_ia32_rcpps256 __builtin_ia32_roundpd256 __builtin_ia32_roundps256 __builtin_ia32_rsqrtps256 __builtin_ia32_sqrtpd256 __builtin_ia32_sqrtps256 __builtin_ia32_storedqu256 __builtin_ia32_storeupd256 __builtin_ia32_storeups256 __builtin_ia32_vbroadcastf128_pd256 __builtin_ia32_vbroadcastf128_ps256 __builtin_ia32_vperm2f128_pd256 __builtin_ia32_vperm2f128_ps256 __builtin_ia32_vperm2f128_si256 __builtin_ia32_vpermilvarpd __builtin_ia32_vpermilvarpd256 __builtin_ia32_vpermilvarps __builtin_ia32_vpermilvarps256 __builtin_ia32_vtestcpd __builtin_ia32_vtestcpd256 __builtin_ia32_vtestcps __builtin_ia32_vtestcps256 __builtin_ia32_vtestnzcpd __builtin_ia32_vtestnzcpd256 __builtin_ia32_vtestnzcps __builtin_ia32_vtestnzcps256 __builtin_ia32_vtestzpd __builtin_ia32_vtestzpd256 __builtin_ia32_vtestzps __builtin_ia32_vtestzps256 __builtin_ia32_vzeroall __builtin_ia32_vzeroupper __builtin_ia32_gatherd_d __builtin_ia32_gatherd_d256 __builtin_ia32_gatherd_pd __builtin_ia32_gatherd_pd256 __builtin_ia32_gatherd_ps __builtin_ia32_gatherd_ps256 __builtin_ia32_gatherd_q __builtin_ia32_gatherd_q256 __builtin_ia32_gatherq_d __builtin_ia32_gatherq_d256 __builtin_ia32_gatherq_pd __builtin_ia32_gatherq_pd256 __builtin_ia32_gatherq_ps __builtin_ia32_gatherq_ps256 __builtin_ia32_gatherq_q __builtin_ia32_gatherq_q256 __builtin_ia32_maskloadd __builtin_ia32_maskloadd256 __builtin_ia32_maskloadq __builtin_ia32_maskloadq256 __builtin_ia32_maskstored __builtin_ia32_maskstored256 __builtin_ia32_maskstoreq __builtin_ia32_maskstoreq256 __builtin_ia32_movntdqa256 __builtin_ia32_mpsadbw256 __builtin_ia32_pabsb256 __builtin_ia32_pabsd256 __builtin_ia32_pabsw256 __builtin_ia32_packssdw256 __builtin_ia32_packsswb256 __builtin_ia32_packusdw256 __builtin_ia32_packuswb256 __builtin_ia32_paddsb256 __builtin_ia32_paddsw256 __builtin_ia32_paddusb256 __builtin_ia32_paddusw256 __builtin_ia32_pavgb256 __builtin_ia32_pavgw256 __builtin_ia32_pblendvb256 __builtin_ia32_permvarsi256 __builtin_ia32_permvarsf256 __builtin_ia32_phaddd256 __builtin_ia32_phaddsw256 __builtin_ia32_phaddw256 __builtin_ia32_phsubd256 __builtin_ia32_phsubsw256 __builtin_ia32_phsubw256 __builtin_ia32_pmaddubsw256 __builtin_ia32_pmaddwd256 __builtin_ia32_pmaxsb256 __builtin_ia32_pmaxsd256 __builtin_ia32_pmaxsw256 __builtin_ia32_pmaxub256 __builtin_ia32_pmaxud256 __builtin_ia32_pmaxuw256 __builtin_ia32_pminsb256 __builtin_ia32_pminsd256 __builtin_ia32_pminsw256 __builtin_ia32_pminub256 __builtin_ia32_pminud256 __builtin_ia32_pminuw256 __builtin_ia32_pmovmskb256 __builtin_ia32_pmovsxbd256 __builtin_ia32_pmovsxbq256 __builtin_ia32_pmovsxbw256 __builtin_ia32_pmovsxdq256 __builtin_ia32_pmovsxwd256 __builtin_ia32_pmovsxwq256 __builtin_ia32_pmovzxbd256 __builtin_ia32_pmovzxbq256 __builtin_ia32_pmovzxbw256 __builtin_ia32_pmovzxdq256 __builtin_ia32_pmovzxwd256 __builtin_ia32_pmovzxwq256 __builtin_ia32_pmuldq256 __builtin_ia32_pmulhrsw256 __builtin_ia32_pmulhw256 __builtin_ia32_pmulhuw256 __builtin_ia32_pmuludq256 __builtin_ia32_psadbw256 __builtin_ia32_pshufb256 __builtin_ia32_psignb256 __builtin_ia32_psignd256 __builtin_ia32_psignw256 __builtin_ia32_pslld256 __builtin_ia32_psllq256 __builtin_ia32_psllw256 __builtin_ia32_pslldi256 __builtin_ia32_psllqi256 __builtin_ia32_psllwi256 __builtin_ia32_psllv4si __builtin_ia32_psllv8si __builtin_ia32_psllv2di __builtin_ia32_psllv4di __builtin_ia32_psrad256 __builtin_ia32_psraw256 __builtin_ia32_psradi256 __builtin_ia32_psrawi256 __builtin_ia32_psrav4si __builtin_ia32_psrav8si __builtin_ia32_psrld256 __builtin_ia32_psrlq256 __builtin_ia32_psrlw256 __builtin_ia32_psrldi256 __builtin_ia32_psrlqi256 __builtin_ia32_psrlwi256 __builtin_ia32_psrlv4si __builtin_ia32_psrlv8si __builtin_ia32_psrlv2di __builtin_ia32_psrlv4di __builtin_ia32_psubsb256 __builtin_ia32_psubsw256 __builtin_ia32_psubusb256 __builtin_ia32_psubusw256 __builtin_ia32_permti256 __builtin_ia32_broadcastmb128 __builtin_ia32_broadcastmb256 __builtin_ia32_broadcastmb512 __builtin_ia32_broadcastmw128 __builtin_ia32_broadcastmw256 __builtin_ia32_broadcastmw512 __builtin_ia32_cvtb2mask128 __builtin_ia32_cvtb2mask256 __builtin_ia32_cvtb2mask512 __builtin_ia32_cvtd2mask128 __builtin_ia32_cvtd2mask256 __builtin_ia32_cvtd2mask512 __builtin_ia32_cvtmask2b128 __builtin_ia32_cvtmask2b256 __builtin_ia32_cvtmask2b512 __builtin_ia32_cvtmask2d128 __builtin_ia32_cvtmask2d256 __builtin_ia32_cvtmask2d512 __builtin_ia32_cvtmask2q128 __builtin_ia32_cvtmask2q256 __builtin_ia32_cvtmask2q512 __builtin_ia32_cvtmask2w128 __builtin_ia32_cvtmask2w256 __builtin_ia32_cvtmask2w512 __builtin_ia32_cvtq2mask128 __builtin_ia32_cvtq2mask256 __builtin_ia32_cvtq2mask512 __builtin_ia32_cvtsi2sd32 __builtin_ia32_cvtsi2sd64 __builtin_ia32_cvtsi2ss32 __builtin_ia32_cvtsi2ss64 __builtin_ia32_vcvttsd2si32 __builtin_ia32_vcvttsd2si64 __builtin_ia32_vcvttsd2usi32 __builtin_ia32_vcvttsd2usi64 __builtin_ia32_vcvttss2si32 __builtin_ia32_vcvttss2si64 __builtin_ia32_vcvttss2usi32 __builtin_ia32_vcvttss2usi64 __builtin_ia32_cvtusi2sd32 __builtin_ia32_cvtusi2ss32 __builtin_ia32_cvtusi2sd64 __builtin_ia32_cvtusi2ss64 __builtin_ia32_cvtw2mask128 __builtin_ia32_cvtw2mask256 __builtin_ia32_cvtw2mask512 __builtin_ia32_exp2pd_mask __builtin_ia32_exp2ps_mask __builtin_ia32_gathersiv8df __builtin_ia32_gathersiv16si __builtin_ia32_gathersiv8di __builtin_ia32_gathersiv16sf __builtin_ia32_gatherdiv8df __builtin_ia32_gatherdiv16si __builtin_ia32_gatherdiv8di __builtin_ia32_gatherdiv16sf __builtin_ia32_gather3div2df __builtin_ia32_gather3div2di __builtin_ia32_gather3div4df __builtin_ia32_gather3div4di __builtin_ia32_gather3div4sf __builtin_ia32_gather3div4si __builtin_ia32_gather3div8sf __builtin_ia32_gather3div8si __builtin_ia32_gather3siv2df __builtin_ia32_gather3siv2di __builtin_ia32_gather3siv4df __builtin_ia32_gather3siv4di __builtin_ia32_gather3siv4sf __builtin_ia32_gather3siv4si __builtin_ia32_gather3siv8sf __builtin_ia32_gather3siv8si __builtin_ia32_gatherpfdpd __builtin_ia32_gatherpfdps __builtin_ia32_gatherpfqpd __builtin_ia32_gatherpfqps __builtin_ia32_kandhi __builtin_ia32_kandnhi __builtin_ia32_knothi __builtin_ia32_korhi __builtin_ia32_kortestchi __builtin_ia32_kortestzhi __builtin_ia32_kunpckhi __builtin_ia32_kunpckdi __builtin_ia32_kunpcksi __builtin_ia32_kxnorhi __builtin_ia32_kxorhi __builtin_ia32_addpd128_mask __builtin_ia32_addpd256_mask __builtin_ia32_addpd512_mask __builtin_ia32_addps128_mask __builtin_ia32_addps256_mask __builtin_ia32_addps512_mask __builtin_ia32_addsd_round_mask __builtin_ia32_addss_round_mask __builtin_ia32_andpd128_mask __builtin_ia32_andpd256_mask __builtin_ia32_andpd512_mask __builtin_ia32_andps128_mask __builtin_ia32_andps256_mask __builtin_ia32_andps512_mask __builtin_ia32_andnpd128_mask __builtin_ia32_andnpd256_mask __builtin_ia32_andnpd512_mask __builtin_ia32_andnps128_mask __builtin_ia32_andnps256_mask __builtin_ia32_andnps512_mask __builtin_ia32_blendmb_128_mask __builtin_ia32_blendmb_256_mask __builtin_ia32_blendmb_512_mask __builtin_ia32_blendmd_128_mask __builtin_ia32_blendmd_256_mask __builtin_ia32_blendmd_512_mask __builtin_ia32_blendmpd_128_mask __builtin_ia32_blendmpd_256_mask __builtin_ia32_blendmpd_512_mask __builtin_ia32_blendmps_128_mask __builtin_ia32_blendmps_256_mask __builtin_ia32_blendmps_512_mask __builtin_ia32_blendmq_128_mask __builtin_ia32_blendmq_256_mask __builtin_ia32_blendmq_512_mask __builtin_ia32_blendmw_128_mask __builtin_ia32_blendmw_256_mask __builtin_ia32_blendmw_512_mask __builtin_ia32_broadcastsd256_mask __builtin_ia32_broadcastsd512 __builtin_ia32_broadcastss128_mask __builtin_ia32_broadcastss256_mask __builtin_ia32_broadcastss512 __builtin_ia32_broadcastf32x2_256_mask __builtin_ia32_broadcastf32x2_512_mask __builtin_ia32_broadcastf32x4_256_mask __builtin_ia32_broadcastf32x4_512 __builtin_ia32_broadcastf32x8_512_mask __builtin_ia32_broadcastf64x2_256_mask __builtin_ia32_broadcastf64x2_512_mask __builtin_ia32_broadcastf64x4_512 __builtin_ia32_broadcasti32x2_128_mask __builtin_ia32_broadcasti32x2_256_mask __builtin_ia32_broadcasti32x2_512_mask __builtin_ia32_broadcasti32x4_256_mask __builtin_ia32_broadcasti32x4_512 __builtin_ia32_broadcasti32x8_512_mask __builtin_ia32_broadcasti64x2_256_mask __builtin_ia32_broadcasti64x2_512_mask __builtin_ia32_broadcasti64x4_512 __builtin_ia32_cmpb128_mask __builtin_ia32_cmpb256_mask __builtin_ia32_cmpb512_mask __builtin_ia32_cmpd128_mask __builtin_ia32_cmpd256_mask __builtin_ia32_cmpd512_mask __builtin_ia32_cmppd128_mask __builtin_ia32_cmppd256_mask __builtin_ia32_cmppd512_mask __builtin_ia32_cmpps128_mask __builtin_ia32_cmpps256_mask __builtin_ia32_cmpps512_mask __builtin_ia32_cmpq128_mask __builtin_ia32_cmpq256_mask __builtin_ia32_cmpq512_mask __builtin_ia32_cmpsd_mask __builtin_ia32_cmpss_mask __builtin_ia32_cmpw128_mask __builtin_ia32_cmpw256_mask __builtin_ia32_cmpw512_mask __builtin_ia32_compresssi128_mask __builtin_ia32_compresssi256_mask __builtin_ia32_compresssi512_mask __builtin_ia32_compressdf128_mask __builtin_ia32_compressdf256_mask __builtin_ia32_compressdf512_mask __builtin_ia32_compresssf128_mask __builtin_ia32_compresssf256_mask __builtin_ia32_compresssf512_mask __builtin_ia32_compressdi128_mask __builtin_ia32_compressdi256_mask __builtin_ia32_compressdi512_mask __builtin_ia32_compressstoresi128_mask __builtin_ia32_compressstoresi256_mask __builtin_ia32_compressstoresi512_mask __builtin_ia32_compressstoredf128_mask __builtin_ia32_compressstoredf256_mask __builtin_ia32_compressstoredf512_mask __builtin_ia32_compressstoresf128_mask __builtin_ia32_compressstoresf256_mask __builtin_ia32_compressstoresf512_mask __builtin_ia32_compressstoredi128_mask __builtin_ia32_compressstoredi256_mask __builtin_ia32_compressstoredi512_mask __builtin_ia32_vpconflictsi_128_mask __builtin_ia32_vpconflictsi_256_mask __builtin_ia32_vpconflictsi_512_mask __builtin_ia32_vpconflictdi_128_mask __builtin_ia32_vpconflictdi_256_mask __builtin_ia32_vpconflictdi_512_mask __builtin_ia32_cvtdq2pd128_mask __builtin_ia32_cvtdq2pd256_mask __builtin_ia32_cvtdq2pd512_mask __builtin_ia32_cvtdq2ps128_mask __builtin_ia32_cvtdq2ps256_mask __builtin_ia32_cvtdq2ps512_mask __builtin_ia32_cvtpd2dq128_mask __builtin_ia32_cvtpd2dq256_mask __builtin_ia32_cvtpd2dq512_mask __builtin_ia32_cvtpd2ps_mask __builtin_ia32_cvtpd2ps256_mask __builtin_ia32_cvtpd2ps512_mask __builtin_ia32_cvtpd2qq128_mask __builtin_ia32_cvtpd2qq256_mask __builtin_ia32_cvtpd2qq512_mask __builtin_ia32_cvtpd2udq128_mask __builtin_ia32_cvtpd2udq256_mask __builtin_ia32_cvtpd2udq512_mask __builtin_ia32_cvtpd2uqq128_mask __builtin_ia32_cvtpd2uqq256_mask __builtin_ia32_cvtpd2uqq512_mask __builtin_ia32_cvtps2dq128_mask __builtin_ia32_cvtps2dq256_mask __builtin_ia32_cvtps2dq512_mask __builtin_ia32_cvtps2pd128_mask __builtin_ia32_cvtps2pd256_mask __builtin_ia32_cvtps2pd512_mask __builtin_ia32_cvtps2qq128_mask __builtin_ia32_cvtps2qq256_mask __builtin_ia32_cvtps2qq512_mask __builtin_ia32_cvtps2udq128_mask __builtin_ia32_cvtps2udq256_mask __builtin_ia32_cvtps2udq512_mask __builtin_ia32_cvtps2uqq128_mask __builtin_ia32_cvtps2uqq256_mask __builtin_ia32_cvtps2uqq512_mask __builtin_ia32_cvtqq2pd128_mask __builtin_ia32_cvtqq2pd256_mask __builtin_ia32_cvtqq2pd512_mask __builtin_ia32_cvtqq2ps128_mask __builtin_ia32_cvtqq2ps256_mask __builtin_ia32_cvtqq2ps512_mask __builtin_ia32_cvtsd2ss_round_mask __builtin_ia32_cvtss2sd_round_mask __builtin_ia32_cvttpd2dq128_mask __builtin_ia32_cvttpd2dq256_mask __builtin_ia32_cvttpd2dq512_mask __builtin_ia32_cvttpd2qq128_mask __builtin_ia32_cvttpd2qq256_mask __builtin_ia32_cvttpd2qq512_mask __builtin_ia32_cvttpd2udq128_mask __builtin_ia32_cvttpd2udq256_mask __builtin_ia32_cvttpd2udq512_mask __builtin_ia32_cvttpd2uqq128_mask __builtin_ia32_cvttpd2uqq256_mask __builtin_ia32_cvttpd2uqq512_mask __builtin_ia32_cvttps2dq128_mask __builtin_ia32_cvttps2dq256_mask __builtin_ia32_cvttps2dq512_mask __builtin_ia32_cvttps2qq128_mask __builtin_ia32_cvttps2qq256_mask __builtin_ia32_cvttps2qq512_mask __builtin_ia32_cvttps2udq128_mask __builtin_ia32_cvttps2udq256_mask __builtin_ia32_cvttps2udq512_mask __builtin_ia32_cvttps2uqq128_mask __builtin_ia32_cvttps2uqq256_mask __builtin_ia32_cvttps2uqq512_mask __builtin_ia32_cvtudq2pd128_mask __builtin_ia32_cvtudq2pd256_mask __builtin_ia32_cvtudq2pd512_mask __builtin_ia32_cvtudq2ps128_mask __builtin_ia32_cvtudq2ps256_mask __builtin_ia32_cvtudq2ps512_mask __builtin_ia32_cvtuqq2pd128_mask __builtin_ia32_cvtuqq2pd256_mask __builtin_ia32_cvtuqq2pd512_mask __builtin_ia32_cvtuqq2ps128_mask __builtin_ia32_cvtuqq2ps256_mask __builtin_ia32_cvtuqq2ps512_mask __builtin_ia32_dbpsadbw128_mask __builtin_ia32_dbpsadbw256_mask __builtin_ia32_dbpsadbw512_mask __builtin_ia32_divpd_mask __builtin_ia32_divpd256_mask __builtin_ia32_divpd512_mask __builtin_ia32_divps_mask __builtin_ia32_divps256_mask __builtin_ia32_divps512_mask __builtin_ia32_divsd_round_mask __builtin_ia32_divss_round_mask __builtin_ia32_expandsi128_mask __builtin_ia32_expandsi256_mask __builtin_ia32_expandsi512_mask __builtin_ia32_expandloadsi128_mask __builtin_ia32_expandloadsi256_mask __builtin_ia32_expandloadsi512_mask __builtin_ia32_expandloaddf128_mask __builtin_ia32_expandloaddf256_mask __builtin_ia32_expandloaddf512_mask __builtin_ia32_expandloadsf128_mask __builtin_ia32_expandloadsf256_mask __builtin_ia32_expandloadsf512_mask __builtin_ia32_expandloaddi128_mask __builtin_ia32_expandloaddi256_mask __builtin_ia32_expandloaddi512_mask __builtin_ia32_expanddf128_mask __builtin_ia32_expanddf256_mask __builtin_ia32_expanddf512_mask __builtin_ia32_expandsf128_mask __builtin_ia32_expandsf256_mask __builtin_ia32_expandsf512_mask __builtin_ia32_expanddi128_mask __builtin_ia32_expanddi256_mask __builtin_ia32_expanddi512_mask __builtin_ia32_fixupimmpd128_mask __builtin_ia32_fixupimmpd256_mask __builtin_ia32_fixupimmpd512_mask __builtin_ia32_fixupimmps128_mask __builtin_ia32_fixupimmps256_mask __builtin_ia32_fixupimmps512_mask __builtin_ia32_fixupimmsd_mask __builtin_ia32_fixupimmss_mask __builtin_ia32_fpclasspd128_mask __builtin_ia32_fpclasspd256_mask __builtin_ia32_fpclasspd512_mask __builtin_ia32_fpclassps128_mask __builtin_ia32_fpclassps256_mask __builtin_ia32_fpclassps512_mask __builtin_ia32_fpclasssd_mask __builtin_ia32_fpclassss_mask __builtin_ia32_getexppd128_mask __builtin_ia32_getexppd256_mask __builtin_ia32_getexppd512_mask __builtin_ia32_getexpps128_mask __builtin_ia32_getexpps256_mask __builtin_ia32_getexpps512_mask __builtin_ia32_getexpsd128_round_mask __builtin_ia32_getexpss128_round_mask __builtin_ia32_getmantpd128_mask __builtin_ia32_getmantpd256_mask __builtin_ia32_getmantpd512_mask __builtin_ia32_getmantps128_mask __builtin_ia32_getmantps256_mask __builtin_ia32_getmantps512_mask __builtin_ia32_getmantsd_round_mask __builtin_ia32_getmantss_round_mask __builtin_ia32_insertf32x4_256_mask __builtin_ia32_insertf32x4_512_mask __builtin_ia32_insertf32x8_mask __builtin_ia32_insertf64x2_256_mask __builtin_ia32_insertf64x2_512_mask __builtin_ia32_insertf64x4_mask __builtin_ia32_inserti32x4_256_mask __builtin_ia32_inserti32x4_512_mask __builtin_ia32_inserti32x8_mask __builtin_ia32_inserti64x2_256_mask __builtin_ia32_inserti64x2_512_mask __builtin_ia32_inserti64x4_mask __builtin_ia32_movdqa32load128_mask __builtin_ia32_movdqa32load256_mask __builtin_ia32_movdqa32load512_mask __builtin_ia32_loadapd128_mask __builtin_ia32_loadapd256_mask __builtin_ia32_loadapd512_mask __builtin_ia32_loadaps128_mask __builtin_ia32_loadaps256_mask __builtin_ia32_loadaps512_mask __builtin_ia32_movdqa64load128_mask __builtin_ia32_movdqa64load256_mask __builtin_ia32_movdqa64load512_mask __builtin_ia32_loaddquqi128_mask __builtin_ia32_loaddquqi256_mask __builtin_ia32_loaddquqi512_mask __builtin_ia32_loaddqusi128_mask __builtin_ia32_loaddqusi256_mask __builtin_ia32_loaddqusi512_mask __builtin_ia32_loadupd128_mask __builtin_ia32_loadupd256_mask __builtin_ia32_loadupd512_mask __builtin_ia32_loadups128_mask __builtin_ia32_loadups256_mask __builtin_ia32_loadups512_mask __builtin_ia32_loaddqudi128_mask __builtin_ia32_loaddqudi256_mask __builtin_ia32_loaddqudi512_mask __builtin_ia32_loaddquhi128_mask __builtin_ia32_loaddquhi256_mask __builtin_ia32_loaddquhi512_mask __builtin_ia32_vplzcntd_128_mask __builtin_ia32_vplzcntd_256_mask __builtin_ia32_vplzcntd_512_mask __builtin_ia32_vplzcntq_128_mask __builtin_ia32_vplzcntq_256_mask __builtin_ia32_vplzcntq_512_mask __builtin_ia32_maxpd_mask __builtin_ia32_maxpd256_mask __builtin_ia32_maxpd512_mask __builtin_ia32_maxps_mask __builtin_ia32_maxps256_mask __builtin_ia32_maxps512_mask __builtin_ia32_maxsd_round_mask __builtin_ia32_maxss_round_mask __builtin_ia32_minpd_mask __builtin_ia32_minpd256_mask __builtin_ia32_minpd512_mask __builtin_ia32_minps_mask __builtin_ia32_minps256_mask __builtin_ia32_minps512_mask __builtin_ia32_minsd_round_mask __builtin_ia32_minss_round_mask __builtin_ia32_movdqa32_128_mask __builtin_ia32_movdqa32_256_mask __builtin_ia32_movdqa32_512_mask __builtin_ia32_movapd128_mask __builtin_ia32_movapd256_mask __builtin_ia32_movapd512_mask __builtin_ia32_movaps128_mask __builtin_ia32_movaps256_mask __builtin_ia32_movaps512_mask __builtin_ia32_movdqa64_128_mask __builtin_ia32_movdqa64_256_mask __builtin_ia32_movdqa64_512_mask __builtin_ia32_movddup128_mask __builtin_ia32_movddup256_mask __builtin_ia32_movddup512_mask __builtin_ia32_movsd_mask __builtin_ia32_movss_mask __builtin_ia32_movshdup128_mask __builtin_ia32_movshdup256_mask __builtin_ia32_movshdup512_mask __builtin_ia32_movsldup128_mask __builtin_ia32_movsldup256_mask __builtin_ia32_movsldup512_mask __builtin_ia32_movdquqi128_mask __builtin_ia32_movdquqi256_mask __builtin_ia32_movdquqi512_mask __builtin_ia32_movdquhi128_mask __builtin_ia32_movdquhi256_mask __builtin_ia32_movdquhi512_mask __builtin_ia32_mulpd_mask __builtin_ia32_mulpd256_mask __builtin_ia32_mulpd512_mask __builtin_ia32_mulps_mask __builtin_ia32_mulps256_mask __builtin_ia32_mulps512_mask __builtin_ia32_mulsd_round_mask __builtin_ia32_mulss_round_mask __builtin_ia32_orpd128_mask __builtin_ia32_orpd256_mask __builtin_ia32_orpd512_mask __builtin_ia32_orps128_mask __builtin_ia32_orps256_mask __builtin_ia32_orps512_mask __builtin_ia32_pabsb128_mask __builtin_ia32_pabsb256_mask __builtin_ia32_pabsb512_mask __builtin_ia32_pabsd128_mask __builtin_ia32_pabsd256_mask __builtin_ia32_pabsd512_mask __builtin_ia32_pabsq128_mask __builtin_ia32_pabsq256_mask __builtin_ia32_pabsq512_mask __builtin_ia32_pabsw128_mask __builtin_ia32_pabsw256_mask __builtin_ia32_pabsw512_mask __builtin_ia32_packssdw128_mask __builtin_ia32_packssdw256_mask __builtin_ia32_packssdw512_mask __builtin_ia32_packsswb128_mask __builtin_ia32_packsswb256_mask __builtin_ia32_packsswb512_mask __builtin_ia32_packusdw128_mask __builtin_ia32_packusdw256_mask __builtin_ia32_packusdw512_mask __builtin_ia32_packuswb128_mask __builtin_ia32_packuswb256_mask __builtin_ia32_packuswb512_mask __builtin_ia32_paddb128_mask __builtin_ia32_paddb256_mask __builtin_ia32_paddb512_mask __builtin_ia32_paddd128_mask __builtin_ia32_paddd256_mask __builtin_ia32_paddd512_mask __builtin_ia32_paddq128_mask __builtin_ia32_paddq256_mask __builtin_ia32_paddq512_mask __builtin_ia32_paddw128_mask __builtin_ia32_paddw256_mask __builtin_ia32_paddw512_mask __builtin_ia32_paddsb128_mask __builtin_ia32_paddsb256_mask __builtin_ia32_paddsb512_mask __builtin_ia32_paddsw128_mask __builtin_ia32_paddsw256_mask __builtin_ia32_paddsw512_mask __builtin_ia32_paddusb128_mask __builtin_ia32_paddusb256_mask __builtin_ia32_paddusb512_mask __builtin_ia32_paddusw128_mask __builtin_ia32_paddusw256_mask __builtin_ia32_paddusw512_mask __builtin_ia32_palignr128_mask __builtin_ia32_palignr256_mask __builtin_ia32_palignr512_mask __builtin_ia32_pandd128_mask __builtin_ia32_pandd256_mask __builtin_ia32_pandd512_mask __builtin_ia32_pandq128_mask __builtin_ia32_pandq256_mask __builtin_ia32_pandq512_mask __builtin_ia32_pandnd128_mask __builtin_ia32_pandnd256_mask __builtin_ia32_pandnd512_mask __builtin_ia32_pandnq128_mask __builtin_ia32_pandnq256_mask __builtin_ia32_pandnq512_mask __builtin_ia32_pavgb128_mask __builtin_ia32_pavgb256_mask __builtin_ia32_pavgb512_mask __builtin_ia32_pavgw128_mask __builtin_ia32_pavgw256_mask __builtin_ia32_pavgw512_mask __builtin_ia32_pbroadcastb128_gpr_mask __builtin_ia32_pbroadcastb256_gpr_mask __builtin_ia32_pbroadcastb512_gpr_mask __builtin_ia32_pbroadcastd128_gpr_mask __builtin_ia32_pbroadcastd256_gpr_mask __builtin_ia32_pbroadcastd512_gpr_mask __builtin_ia32_pbroadcastq128_gpr_mask __builtin_ia32_pbroadcastq256_gpr_mask __builtin_ia32_pbroadcastq512_gpr_mask __builtin_ia32_pbroadcastq512_mem_mask __builtin_ia32_pbroadcastw128_gpr_mask __builtin_ia32_pbroadcastw256_gpr_mask __builtin_ia32_pbroadcastw512_gpr_mask __builtin_ia32_pcmpeqb128_mask __builtin_ia32_pcmpeqb256_mask __builtin_ia32_pcmpeqb512_mask __builtin_ia32_pcmpeqd128_mask __builtin_ia32_pcmpeqd256_mask __builtin_ia32_pcmpeqd512_mask __builtin_ia32_pcmpeqq128_mask __builtin_ia32_pcmpeqq256_mask __builtin_ia32_pcmpeqq512_mask __builtin_ia32_pcmpeqw128_mask __builtin_ia32_pcmpeqw256_mask __builtin_ia32_pcmpeqw512_mask __builtin_ia32_pcmpgtb128_mask __builtin_ia32_pcmpgtb256_mask __builtin_ia32_pcmpgtb512_mask __builtin_ia32_pcmpgtd128_mask __builtin_ia32_pcmpgtd256_mask __builtin_ia32_pcmpgtd512_mask __builtin_ia32_pcmpgtq128_mask __builtin_ia32_pcmpgtq256_mask __builtin_ia32_pcmpgtq512_mask __builtin_ia32_pcmpgtw128_mask __builtin_ia32_pcmpgtw256_mask __builtin_ia32_pcmpgtw512_mask __builtin_ia32_permdf256_mask __builtin_ia32_permdf512_mask __builtin_ia32_permdi256_mask __builtin_ia32_permdi512_mask __builtin_ia32_permvardf256_mask __builtin_ia32_permvardf512_mask __builtin_ia32_permvardi256_mask __builtin_ia32_permvardi512_mask __builtin_ia32_permvarhi128_mask __builtin_ia32_permvarhi256_mask __builtin_ia32_permvarhi512_mask __builtin_ia32_permvarqi128_mask __builtin_ia32_permvarqi256_mask __builtin_ia32_permvarqi512_mask __builtin_ia32_permvarsf256_mask __builtin_ia32_permvarsf512_mask __builtin_ia32_permvarsi256_mask __builtin_ia32_permvarsi512_mask __builtin_ia32_pmaddubsw128_mask __builtin_ia32_pmaddubsw256_mask __builtin_ia32_pmaddubsw512_mask __builtin_ia32_pmaddwd128_mask __builtin_ia32_pmaddwd256_mask __builtin_ia32_pmaddwd512_mask __builtin_ia32_pmaxsb128_mask __builtin_ia32_pmaxsb256_mask __builtin_ia32_pmaxsb512_mask __builtin_ia32_pmaxsd128_mask __builtin_ia32_pmaxsd256_mask __builtin_ia32_pmaxsd512_mask __builtin_ia32_pmaxsq128_mask __builtin_ia32_pmaxsq256_mask __builtin_ia32_pmaxsq512_mask __builtin_ia32_pmaxsw128_mask __builtin_ia32_pmaxsw256_mask __builtin_ia32_pmaxsw512_mask __builtin_ia32_pmaxub128_mask __builtin_ia32_pmaxub256_mask __builtin_ia32_pmaxub512_mask __builtin_ia32_pmaxud128_mask __builtin_ia32_pmaxud256_mask __builtin_ia32_pmaxud512_mask __builtin_ia32_pmaxuq128_mask __builtin_ia32_pmaxuq256_mask __builtin_ia32_pmaxuq512_mask __builtin_ia32_pmaxuw128_mask __builtin_ia32_pmaxuw256_mask __builtin_ia32_pmaxuw512_mask __builtin_ia32_pminsb128_mask __builtin_ia32_pminsb256_mask __builtin_ia32_pminsb512_mask __builtin_ia32_pminsd128_mask __builtin_ia32_pminsd256_mask __builtin_ia32_pminsd512_mask __builtin_ia32_pminsq128_mask __builtin_ia32_pminsq256_mask __builtin_ia32_pminsq512_mask __builtin_ia32_pminsw128_mask __builtin_ia32_pminsw256_mask __builtin_ia32_pminsw512_mask __builtin_ia32_pminub128_mask __builtin_ia32_pminub256_mask __builtin_ia32_pminub512_mask __builtin_ia32_pminud128_mask __builtin_ia32_pminud256_mask __builtin_ia32_pminud512_mask __builtin_ia32_pminuq128_mask __builtin_ia32_pminuq256_mask __builtin_ia32_pminuq512_mask __builtin_ia32_pminuw128_mask __builtin_ia32_pminuw256_mask __builtin_ia32_pminuw512_mask __builtin_ia32_pmovdb128_mask __builtin_ia32_pmovdb256_mask __builtin_ia32_pmovdb512_mask __builtin_ia32_pmovdb128mem_mask __builtin_ia32_pmovdb256mem_mask __builtin_ia32_pmovdb512mem_mask __builtin_ia32_pmovdw128_mask __builtin_ia32_pmovdw256_mask __builtin_ia32_pmovdw512_mask __builtin_ia32_pmovdw128mem_mask __builtin_ia32_pmovdw256mem_mask __builtin_ia32_pmovdw512mem_mask __builtin_ia32_pmovqb128_mask __builtin_ia32_pmovqb256_mask __builtin_ia32_pmovqb512_mask __builtin_ia32_pmovqb128mem_mask __builtin_ia32_pmovqb256mem_mask __builtin_ia32_pmovqb512mem_mask __builtin_ia32_pmovqd128_mask __builtin_ia32_pmovqd256_mask __builtin_ia32_pmovqd512_mask __builtin_ia32_pmovqd128mem_mask __builtin_ia32_pmovqd256mem_mask __builtin_ia32_pmovqd512mem_mask __builtin_ia32_pmovqw128_mask __builtin_ia32_pmovqw256_mask __builtin_ia32_pmovqw512_mask __builtin_ia32_pmovqw128mem_mask __builtin_ia32_pmovqw256mem_mask __builtin_ia32_pmovqw512mem_mask __builtin_ia32_pmovwb128_mask __builtin_ia32_pmovwb256_mask __builtin_ia32_pmovwb512_mask __builtin_ia32_pmovwb128mem_mask __builtin_ia32_pmovwb256mem_mask __builtin_ia32_pmovwb512mem_mask __builtin_ia32_pmovsdb128_mask __builtin_ia32_pmovsdb256_mask __builtin_ia32_pmovsdb512_mask __builtin_ia32_pmovsdb128mem_mask __builtin_ia32_pmovsdb256mem_mask __builtin_ia32_pmovsdb512mem_mask __builtin_ia32_pmovsdw128_mask __builtin_ia32_pmovsdw256_mask __builtin_ia32_pmovsdw512_mask __builtin_ia32_pmovsdw128mem_mask __builtin_ia32_pmovsdw256mem_mask __builtin_ia32_pmovsdw512mem_mask __builtin_ia32_pmovsqb128_mask __builtin_ia32_pmovsqb256_mask __builtin_ia32_pmovsqb512_mask __builtin_ia32_pmovsqb128mem_mask __builtin_ia32_pmovsqb256mem_mask __builtin_ia32_pmovsqb512mem_mask __builtin_ia32_pmovsqd128_mask __builtin_ia32_pmovsqd256_mask __builtin_ia32_pmovsqd512_mask __builtin_ia32_pmovsqd128mem_mask __builtin_ia32_pmovsqd256mem_mask __builtin_ia32_pmovsqd512mem_mask __builtin_ia32_pmovsqw128_mask __builtin_ia32_pmovsqw256_mask __builtin_ia32_pmovsqw512_mask __builtin_ia32_pmovsqw128mem_mask __builtin_ia32_pmovsqw256mem_mask __builtin_ia32_pmovsqw512mem_mask __builtin_ia32_pmovswb128_mask __builtin_ia32_pmovswb256_mask __builtin_ia32_pmovswb512_mask __builtin_ia32_pmovswb128mem_mask __builtin_ia32_pmovswb256mem_mask __builtin_ia32_pmovswb512mem_mask __builtin_ia32_pmovsxbd128_mask __builtin_ia32_pmovsxbd256_mask __builtin_ia32_pmovsxbd512_mask __builtin_ia32_pmovsxbq128_mask __builtin_ia32_pmovsxbq256_mask __builtin_ia32_pmovsxbq512_mask __builtin_ia32_pmovsxbw128_mask __builtin_ia32_pmovsxbw256_mask __builtin_ia32_pmovsxbw512_mask __builtin_ia32_pmovsxdq128_mask __builtin_ia32_pmovsxdq256_mask __builtin_ia32_pmovsxdq512_mask __builtin_ia32_pmovsxwd128_mask __builtin_ia32_pmovsxwd256_mask __builtin_ia32_pmovsxwd512_mask __builtin_ia32_pmovsxwq128_mask __builtin_ia32_pmovsxwq256_mask __builtin_ia32_pmovsxwq512_mask __builtin_ia32_pmovusdb128_mask __builtin_ia32_pmovusdb256_mask __builtin_ia32_pmovusdb512_mask __builtin_ia32_pmovusdb128mem_mask __builtin_ia32_pmovusdb256mem_mask __builtin_ia32_pmovusdb512mem_mask __builtin_ia32_pmovusdw128_mask __builtin_ia32_pmovusdw256_mask __builtin_ia32_pmovusdw512_mask __builtin_ia32_pmovusdw128mem_mask __builtin_ia32_pmovusdw256mem_mask __builtin_ia32_pmovusdw512mem_mask __builtin_ia32_pmovusqb128_mask __builtin_ia32_pmovusqb256_mask __builtin_ia32_pmovusqb512_mask __builtin_ia32_pmovusqb128mem_mask __builtin_ia32_pmovusqb256mem_mask __builtin_ia32_pmovusqb512mem_mask __builtin_ia32_pmovusqd128_mask __builtin_ia32_pmovusqd256_mask __builtin_ia32_pmovusqd512_mask __builtin_ia32_pmovusqd128mem_mask __builtin_ia32_pmovusqd256mem_mask __builtin_ia32_pmovusqd512mem_mask __builtin_ia32_pmovusqw128_mask __builtin_ia32_pmovusqw256_mask __builtin_ia32_pmovusqw512_mask __builtin_ia32_pmovusqw128mem_mask __builtin_ia32_pmovusqw256mem_mask __builtin_ia32_pmovusqw512mem_mask __builtin_ia32_pmovuswb128_mask __builtin_ia32_pmovuswb256_mask __builtin_ia32_pmovuswb512_mask __builtin_ia32_pmovuswb128mem_mask __builtin_ia32_pmovuswb256mem_mask __builtin_ia32_pmovuswb512mem_mask __builtin_ia32_pmovzxbd128_mask __builtin_ia32_pmovzxbd256_mask __builtin_ia32_pmovzxbd512_mask __builtin_ia32_pmovzxbq128_mask __builtin_ia32_pmovzxbq256_mask __builtin_ia32_pmovzxbq512_mask __builtin_ia32_pmovzxbw128_mask __builtin_ia32_pmovzxbw256_mask __builtin_ia32_pmovzxbw512_mask __builtin_ia32_pmovzxdq128_mask __builtin_ia32_pmovzxdq256_mask __builtin_ia32_pmovzxdq512_mask __builtin_ia32_pmovzxwd128_mask __builtin_ia32_pmovzxwd256_mask __builtin_ia32_pmovzxwd512_mask __builtin_ia32_pmovzxwq128_mask __builtin_ia32_pmovzxwq256_mask __builtin_ia32_pmovzxwq512_mask __builtin_ia32_pmuldq128_mask __builtin_ia32_pmuldq256_mask __builtin_ia32_pmuldq512_mask __builtin_ia32_pmulhrsw128_mask __builtin_ia32_pmulhrsw256_mask __builtin_ia32_pmulhrsw512_mask __builtin_ia32_pmulhw128_mask __builtin_ia32_pmulhw256_mask __builtin_ia32_pmulhw512_mask __builtin_ia32_pmulhuw128_mask __builtin_ia32_pmulhuw256_mask __builtin_ia32_pmulhuw512_mask __builtin_ia32_pmulld128_mask __builtin_ia32_pmulld256_mask __builtin_ia32_pmulld512_mask __builtin_ia32_pmullq128_mask __builtin_ia32_pmullq256_mask __builtin_ia32_pmullq512_mask __builtin_ia32_pmullw128_mask __builtin_ia32_pmullw256_mask __builtin_ia32_pmullw512_mask __builtin_ia32_vpmultishiftqb128_mask __builtin_ia32_vpmultishiftqb256_mask __builtin_ia32_vpmultishiftqb512_mask __builtin_ia32_pmuludq128_mask __builtin_ia32_pmuludq256_mask __builtin_ia32_pmuludq512_mask __builtin_ia32_pord128_mask __builtin_ia32_pord256_mask __builtin_ia32_pord512_mask __builtin_ia32_porq128_mask __builtin_ia32_porq256_mask __builtin_ia32_porq512_mask __builtin_ia32_prold128_mask __builtin_ia32_prold256_mask __builtin_ia32_prold512_mask __builtin_ia32_prolq128_mask __builtin_ia32_prolq256_mask __builtin_ia32_prolq512_mask __builtin_ia32_prolvd128_mask __builtin_ia32_prolvd256_mask __builtin_ia32_prolvd512_mask __builtin_ia32_prolvq128_mask __builtin_ia32_prolvq256_mask __builtin_ia32_prolvq512_mask __builtin_ia32_prord128_mask __builtin_ia32_prord256_mask __builtin_ia32_prord512_mask __builtin_ia32_prorq128_mask __builtin_ia32_prorq256_mask __builtin_ia32_prorq512_mask __builtin_ia32_prorvd128_mask __builtin_ia32_prorvd256_mask __builtin_ia32_prorvd512_mask __builtin_ia32_prorvq128_mask __builtin_ia32_prorvq256_mask __builtin_ia32_prorvq512_mask __builtin_ia32_pshufb128_mask __builtin_ia32_pshufb256_mask __builtin_ia32_pshufb512_mask __builtin_ia32_pshufd128_mask __builtin_ia32_pshufd256_mask __builtin_ia32_pshufd512_mask __builtin_ia32_pshufhw128_mask __builtin_ia32_pshufhw256_mask __builtin_ia32_pshufhw512_mask __builtin_ia32_pshuflw128_mask __builtin_ia32_pshuflw256_mask __builtin_ia32_pshuflw512_mask __builtin_ia32_pslld512_mask __builtin_ia32_pslld128_mask __builtin_ia32_pslld256_mask __builtin_ia32_pslldi128_mask __builtin_ia32_pslldi256_mask __builtin_ia32_pslldi512_mask __builtin_ia32_psllq512_mask __builtin_ia32_psllq128_mask __builtin_ia32_psllq256_mask __builtin_ia32_psllqi128_mask __builtin_ia32_psllqi256_mask __builtin_ia32_psllqi512_mask __builtin_ia32_psllw128_mask __builtin_ia32_psllw256_mask __builtin_ia32_psllw512_mask __builtin_ia32_psllwi128_mask __builtin_ia32_psllwi256_mask __builtin_ia32_psllwi512_mask __builtin_ia32_pslldi512 __builtin_ia32_psllqi512 __builtin_ia32_psllv16si_mask __builtin_ia32_psllv8di_mask __builtin_ia32_psllv16hi_mask __builtin_ia32_psllv2di_mask __builtin_ia32_psllv32hi_mask __builtin_ia32_psllv4di_mask __builtin_ia32_psllv4si_mask __builtin_ia32_psllv8hi_mask __builtin_ia32_psllv8si_mask __builtin_ia32_psrad512_mask __builtin_ia32_psrad128_mask __builtin_ia32_psrad256_mask __builtin_ia32_psradi128_mask __builtin_ia32_psradi256_mask __builtin_ia32_psradi512_mask __builtin_ia32_psraq512_mask __builtin_ia32_psraq128_mask __builtin_ia32_psraq256_mask __builtin_ia32_psraqi128_mask __builtin_ia32_psraqi256_mask __builtin_ia32_psraqi512_mask __builtin_ia32_psraw128_mask __builtin_ia32_psraw256_mask __builtin_ia32_psraw512_mask __builtin_ia32_psrawi128_mask __builtin_ia32_psrawi256_mask __builtin_ia32_psrawi512_mask __builtin_ia32_psradi512 __builtin_ia32_psraqi512 __builtin_ia32_psrav16si_mask __builtin_ia32_psrav8di_mask __builtin_ia32_psravq128_mask __builtin_ia32_psravq256_mask __builtin_ia32_psrav16hi_mask __builtin_ia32_psrav32hi_mask __builtin_ia32_psrav4si_mask __builtin_ia32_psrav8hi_mask __builtin_ia32_psrav8si_mask __builtin_ia32_psrld512_mask __builtin_ia32_psrld128_mask __builtin_ia32_psrld256_mask __builtin_ia32_psrldi128_mask __builtin_ia32_psrldi256_mask __builtin_ia32_psrldi512_mask __builtin_ia32_psrlq512_mask __builtin_ia32_psrlq128_mask __builtin_ia32_psrlq256_mask __builtin_ia32_psrlqi128_mask __builtin_ia32_psrlqi256_mask __builtin_ia32_psrlqi512_mask __builtin_ia32_psrlw128_mask __builtin_ia32_psrlw256_mask __builtin_ia32_psrlw512_mask __builtin_ia32_psrlwi128_mask __builtin_ia32_psrlwi256_mask __builtin_ia32_psrlwi512_mask __builtin_ia32_psrldi512 __builtin_ia32_psrlqi512 __builtin_ia32_psrlv16si_mask __builtin_ia32_psrlv8di_mask __builtin_ia32_psrlv16hi_mask __builtin_ia32_psrlv2di_mask __builtin_ia32_psrlv32hi_mask __builtin_ia32_psrlv4di_mask __builtin_ia32_psrlv4si_mask __builtin_ia32_psrlv8hi_mask __builtin_ia32_psrlv8si_mask __builtin_ia32_psubb128_mask __builtin_ia32_psubb256_mask __builtin_ia32_psubb512_mask __builtin_ia32_psubd128_mask __builtin_ia32_psubd256_mask __builtin_ia32_psubd512_mask __builtin_ia32_psubq128_mask __builtin_ia32_psubq256_mask __builtin_ia32_psubq512_mask __builtin_ia32_psubw128_mask __builtin_ia32_psubw256_mask __builtin_ia32_psubw512_mask __builtin_ia32_psubsb128_mask __builtin_ia32_psubsb256_mask __builtin_ia32_psubsb512_mask __builtin_ia32_psubsw128_mask __builtin_ia32_psubsw256_mask __builtin_ia32_psubsw512_mask __builtin_ia32_psubusb128_mask __builtin_ia32_psubusb256_mask __builtin_ia32_psubusb512_mask __builtin_ia32_psubusw128_mask __builtin_ia32_psubusw256_mask __builtin_ia32_psubusw512_mask __builtin_ia32_pternlogd128_mask __builtin_ia32_pternlogd256_mask __builtin_ia32_pternlogd512_mask __builtin_ia32_pternlogq128_mask __builtin_ia32_pternlogq256_mask __builtin_ia32_pternlogq512_mask __builtin_ia32_punpckhbw128_mask __builtin_ia32_punpckhbw256_mask __builtin_ia32_punpckhbw512_mask __builtin_ia32_punpckhdq128_mask __builtin_ia32_punpckhdq256_mask __builtin_ia32_punpckhdq512_mask __builtin_ia32_punpckhqdq128_mask __builtin_ia32_punpckhqdq256_mask __builtin_ia32_punpckhqdq512_mask __builtin_ia32_punpckhwd128_mask __builtin_ia32_punpckhwd256_mask __builtin_ia32_punpckhwd512_mask __builtin_ia32_punpcklbw128_mask __builtin_ia32_punpcklbw256_mask __builtin_ia32_punpcklbw512_mask __builtin_ia32_punpckldq128_mask __builtin_ia32_punpckldq256_mask __builtin_ia32_punpckldq512_mask __builtin_ia32_punpcklqdq128_mask __builtin_ia32_punpcklqdq256_mask __builtin_ia32_punpcklqdq512_mask __builtin_ia32_punpcklwd128_mask __builtin_ia32_punpcklwd256_mask __builtin_ia32_punpcklwd512_mask __builtin_ia32_pxord128_mask __builtin_ia32_pxord256_mask __builtin_ia32_pxord512_mask __builtin_ia32_pxorq128_mask __builtin_ia32_pxorq256_mask __builtin_ia32_pxorq512_mask __builtin_ia32_rangepd128_mask __builtin_ia32_rangepd256_mask __builtin_ia32_rangepd512_mask __builtin_ia32_rangeps128_mask __builtin_ia32_rangeps256_mask __builtin_ia32_rangeps512_mask __builtin_ia32_rangesd128_round_mask __builtin_ia32_rangess128_round_mask __builtin_ia32_reducepd128_mask __builtin_ia32_reducepd256_mask __builtin_ia32_reducepd512_mask __builtin_ia32_reduceps128_mask __builtin_ia32_reduceps256_mask __builtin_ia32_reduceps512_mask __builtin_ia32_reducesd_mask __builtin_ia32_reducess_mask __builtin_ia32_rndscalepd_128_mask __builtin_ia32_rndscalepd_256_mask __builtin_ia32_rndscalepd_mask __builtin_ia32_rndscaleps_128_mask __builtin_ia32_rndscaleps_256_mask __builtin_ia32_rndscaleps_mask __builtin_ia32_rndscalesd_round_mask __builtin_ia32_rndscaless_round_mask __builtin_ia32_scalefpd128_mask __builtin_ia32_scalefpd256_mask __builtin_ia32_scalefpd512_mask __builtin_ia32_scalefps128_mask __builtin_ia32_scalefps256_mask __builtin_ia32_scalefps512_mask __builtin_ia32_scalefsd_round_mask __builtin_ia32_scalefss_round_mask __builtin_ia32_shuf_f32x4_mask __builtin_ia32_shuf_f32x4_256_mask __builtin_ia32_shuf_f64x2_mask __builtin_ia32_shuf_f64x2_256_mask __builtin_ia32_shuf_i32x4_mask __builtin_ia32_shuf_i32x4_256_mask __builtin_ia32_shuf_i64x2_mask __builtin_ia32_shuf_i64x2_256_mask __builtin_ia32_shufpd128_mask __builtin_ia32_shufpd256_mask __builtin_ia32_shufpd512_mask __builtin_ia32_shufps128_mask __builtin_ia32_shufps256_mask __builtin_ia32_shufps512_mask __builtin_ia32_sqrtpd128_mask __builtin_ia32_sqrtpd256_mask __builtin_ia32_sqrtpd512_mask __builtin_ia32_sqrtps128_mask __builtin_ia32_sqrtps256_mask __builtin_ia32_sqrtps512_mask __builtin_ia32_sqrtsd_round_mask __builtin_ia32_sqrtss_round_mask __builtin_ia32_movdqa32store128_mask __builtin_ia32_movdqa32store256_mask __builtin_ia32_movdqa32store512_mask __builtin_ia32_storeapd128_mask __builtin_ia32_storeapd256_mask __builtin_ia32_storeapd512_mask __builtin_ia32_storeaps128_mask __builtin_ia32_storeaps256_mask __builtin_ia32_storeaps512_mask __builtin_ia32_movdqa64store128_mask __builtin_ia32_movdqa64store256_mask __builtin_ia32_movdqa64store512_mask __builtin_ia32_storess_mask __builtin_ia32_storedquqi128_mask __builtin_ia32_storedquqi256_mask __builtin_ia32_storedquqi512_mask __builtin_ia32_storedqusi128_mask __builtin_ia32_storedqusi256_mask __builtin_ia32_storedqusi512_mask __builtin_ia32_storeupd128_mask __builtin_ia32_storeupd256_mask __builtin_ia32_storeupd512_mask __builtin_ia32_storeups128_mask __builtin_ia32_storeups256_mask __builtin_ia32_storeups512_mask __builtin_ia32_storedqudi128_mask __builtin_ia32_storedqudi256_mask __builtin_ia32_storedqudi512_mask __builtin_ia32_storedquhi128_mask __builtin_ia32_storedquhi256_mask __builtin_ia32_storedquhi512_mask __builtin_ia32_subpd128_mask __builtin_ia32_subpd256_mask __builtin_ia32_subpd512_mask __builtin_ia32_subps128_mask __builtin_ia32_subps256_mask __builtin_ia32_subps512_mask __builtin_ia32_subsd_round_mask __builtin_ia32_subss_round_mask __builtin_ia32_ucmpb128_mask __builtin_ia32_ucmpb256_mask __builtin_ia32_ucmpb512_mask __builtin_ia32_ucmpd128_mask __builtin_ia32_ucmpd256_mask __builtin_ia32_ucmpd512_mask __builtin_ia32_ucmpq128_mask __builtin_ia32_ucmpq256_mask __builtin_ia32_ucmpq512_mask __builtin_ia32_ucmpw128_mask __builtin_ia32_ucmpw256_mask __builtin_ia32_ucmpw512_mask __builtin_ia32_unpckhpd128_mask __builtin_ia32_unpckhpd256_mask __builtin_ia32_unpckhpd512_mask __builtin_ia32_unpckhps128_mask __builtin_ia32_unpckhps256_mask __builtin_ia32_unpckhps512_mask __builtin_ia32_unpcklpd128_mask __builtin_ia32_unpcklpd256_mask __builtin_ia32_unpcklpd512_mask __builtin_ia32_unpcklps128_mask __builtin_ia32_unpcklps256_mask __builtin_ia32_unpcklps512_mask __builtin_ia32_alignd128_mask __builtin_ia32_alignd256_mask __builtin_ia32_alignd512_mask __builtin_ia32_alignq128_mask __builtin_ia32_alignq256_mask __builtin_ia32_alignq512_mask __builtin_ia32_vcvtph2ps_mask __builtin_ia32_vcvtph2ps256_mask __builtin_ia32_vcvtph2ps512_mask __builtin_ia32_vcvtps2ph_mask __builtin_ia32_vcvtps2ph256_mask __builtin_ia32_vcvtps2ph512_mask __builtin_ia32_extractf32x4_256_mask __builtin_ia32_extractf32x4_mask __builtin_ia32_extractf32x8_mask __builtin_ia32_extractf64x2_256_mask __builtin_ia32_extractf64x2_512_mask __builtin_ia32_extractf64x4_mask __builtin_ia32_extracti32x4_256_mask __builtin_ia32_extracti32x4_mask __builtin_ia32_extracti32x8_mask __builtin_ia32_extracti64x2_256_mask __builtin_ia32_extracti64x2_512_mask __builtin_ia32_extracti64x4_mask __builtin_ia32_vfmaddpd128_mask __builtin_ia32_vfmaddpd256_mask __builtin_ia32_vfmaddpd512_mask __builtin_ia32_vfmaddps128_mask __builtin_ia32_vfmaddps256_mask __builtin_ia32_vfmaddps512_mask __builtin_ia32_vfmaddsd3_mask __builtin_ia32_vfmaddss3_mask __builtin_ia32_vfmaddsubpd128_mask __builtin_ia32_vfmaddsubpd256_mask __builtin_ia32_vfmaddsubpd512_mask __builtin_ia32_vfmaddsubps128_mask __builtin_ia32_vfmaddsubps256_mask __builtin_ia32_vfmaddsubps512_mask __builtin_ia32_vfnmaddpd128_mask __builtin_ia32_vfnmaddpd256_mask __builtin_ia32_vfnmaddpd512_mask __builtin_ia32_vfnmaddps128_mask __builtin_ia32_vfnmaddps256_mask __builtin_ia32_vfnmaddps512_mask __builtin_ia32_vfnmsubpd128_mask __builtin_ia32_vfnmsubpd256_mask __builtin_ia32_vfnmsubpd512_mask __builtin_ia32_vfnmsubps128_mask __builtin_ia32_vfnmsubps256_mask __builtin_ia32_vfnmsubps512_mask __builtin_ia32_vpermi2vard128_mask __builtin_ia32_vpermi2vard256_mask __builtin_ia32_vpermi2vard512_mask __builtin_ia32_vpermi2varhi128_mask __builtin_ia32_vpermi2varhi256_mask __builtin_ia32_vpermi2varhi512_mask __builtin_ia32_vpermi2varpd128_mask __builtin_ia32_vpermi2varpd256_mask __builtin_ia32_vpermi2varpd512_mask __builtin_ia32_vpermi2varps128_mask __builtin_ia32_vpermi2varps256_mask __builtin_ia32_vpermi2varps512_mask __builtin_ia32_vpermi2varq128_mask __builtin_ia32_vpermi2varq256_mask __builtin_ia32_vpermi2varq512_mask __builtin_ia32_vpermi2varqi128_mask __builtin_ia32_vpermi2varqi256_mask __builtin_ia32_vpermi2varqi512_mask __builtin_ia32_vpermilpd_mask __builtin_ia32_vpermilpd256_mask __builtin_ia32_vpermilpd512_mask __builtin_ia32_vpermilps_mask __builtin_ia32_vpermilps256_mask __builtin_ia32_vpermilps512_mask __builtin_ia32_vpermilvarpd_mask __builtin_ia32_vpermilvarpd256_mask __builtin_ia32_vpermilvarpd512_mask __builtin_ia32_vpermilvarps_mask __builtin_ia32_vpermilvarps256_mask __builtin_ia32_vpermilvarps512_mask __builtin_ia32_vpermt2vard128_mask __builtin_ia32_vpermt2vard256_mask __builtin_ia32_vpermt2vard512_mask __builtin_ia32_vpermt2varhi128_mask __builtin_ia32_vpermt2varhi256_mask __builtin_ia32_vpermt2varhi512_mask __builtin_ia32_vpermt2varpd128_mask __builtin_ia32_vpermt2varpd256_mask __builtin_ia32_vpermt2varpd512_mask __builtin_ia32_vpermt2varps128_mask __builtin_ia32_vpermt2varps256_mask __builtin_ia32_vpermt2varps512_mask __builtin_ia32_vpermt2varq128_mask __builtin_ia32_vpermt2varq256_mask __builtin_ia32_vpermt2varq512_mask __builtin_ia32_vpermt2varqi128_mask __builtin_ia32_vpermt2varqi256_mask __builtin_ia32_vpermt2varqi512_mask __builtin_ia32_vpmadd52huq128_mask __builtin_ia32_vpmadd52huq256_mask __builtin_ia32_vpmadd52huq512_mask __builtin_ia32_vpmadd52luq128_mask __builtin_ia32_vpmadd52luq256_mask __builtin_ia32_vpmadd52luq512_mask __builtin_ia32_xorpd128_mask __builtin_ia32_xorpd256_mask __builtin_ia32_xorpd512_mask __builtin_ia32_xorps128_mask __builtin_ia32_xorps256_mask __builtin_ia32_xorps512_mask __builtin_ia32_vfmaddpd128_mask3 __builtin_ia32_vfmaddpd256_mask3 __builtin_ia32_vfmaddpd512_mask3 __builtin_ia32_vfmaddps128_mask3 __builtin_ia32_vfmaddps256_mask3 __builtin_ia32_vfmaddps512_mask3 __builtin_ia32_vfmaddsd3_mask3 __builtin_ia32_vfmaddss3_mask3 __builtin_ia32_vfmaddsubpd128_mask3 __builtin_ia32_vfmaddsubpd256_mask3 __builtin_ia32_vfmaddsubpd512_mask3 __builtin_ia32_vfmaddsubps128_mask3 __builtin_ia32_vfmaddsubps256_mask3 __builtin_ia32_vfmaddsubps512_mask3 __builtin_ia32_vfmsubpd128_mask3 __builtin_ia32_vfmsubpd256_mask3 __builtin_ia32_vfmsubpd512_mask3 __builtin_ia32_vfmsubps128_mask3 __builtin_ia32_vfmsubps256_mask3 __builtin_ia32_vfmsubps512_mask3 __builtin_ia32_vfmsubaddpd128_mask3 __builtin_ia32_vfmsubaddpd256_mask3 __builtin_ia32_vfmsubaddpd512_mask3 __builtin_ia32_vfmsubaddps128_mask3 __builtin_ia32_vfmsubaddps256_mask3 __builtin_ia32_vfmsubaddps512_mask3 __builtin_ia32_vfnmsubpd128_mask3 __builtin_ia32_vfnmsubpd256_mask3 __builtin_ia32_vfnmsubpd512_mask3 __builtin_ia32_vfnmsubps128_mask3 __builtin_ia32_vfnmsubps256_mask3 __builtin_ia32_vfnmsubps512_mask3 __builtin_ia32_fixupimmpd128_maskz __builtin_ia32_fixupimmpd256_maskz __builtin_ia32_fixupimmpd512_maskz __builtin_ia32_fixupimmps128_maskz __builtin_ia32_fixupimmps256_maskz __builtin_ia32_fixupimmps512_maskz __builtin_ia32_fixupimmsd_maskz __builtin_ia32_fixupimmss_maskz __builtin_ia32_pternlogd128_maskz __builtin_ia32_pternlogd256_maskz __builtin_ia32_pternlogd512_maskz __builtin_ia32_pternlogq128_maskz __builtin_ia32_pternlogq256_maskz __builtin_ia32_pternlogq512_maskz __builtin_ia32_vfmaddpd128_maskz __builtin_ia32_vfmaddpd256_maskz __builtin_ia32_vfmaddpd512_maskz __builtin_ia32_vfmaddps128_maskz __builtin_ia32_vfmaddps256_maskz __builtin_ia32_vfmaddps512_maskz __builtin_ia32_vfmaddsd3_maskz __builtin_ia32_vfmaddss3_maskz __builtin_ia32_vfmaddsubpd128_maskz __builtin_ia32_vfmaddsubpd256_maskz __builtin_ia32_vfmaddsubpd512_maskz __builtin_ia32_vfmaddsubps128_maskz __builtin_ia32_vfmaddsubps256_maskz __builtin_ia32_vfmaddsubps512_maskz __builtin_ia32_vpermt2vard128_maskz __builtin_ia32_vpermt2vard256_maskz __builtin_ia32_vpermt2vard512_maskz __builtin_ia32_vpermt2varhi128_maskz __builtin_ia32_vpermt2varhi256_maskz __builtin_ia32_vpermt2varhi512_maskz __builtin_ia32_vpermt2varpd128_maskz __builtin_ia32_vpermt2varpd256_maskz __builtin_ia32_vpermt2varpd512_maskz __builtin_ia32_vpermt2varps128_maskz __builtin_ia32_vpermt2varps256_maskz __builtin_ia32_vpermt2varps512_maskz __builtin_ia32_vpermt2varq128_maskz __builtin_ia32_vpermt2varq256_maskz __builtin_ia32_vpermt2varq512_maskz __builtin_ia32_vpermt2varqi128_maskz __builtin_ia32_vpermt2varqi256_maskz __builtin_ia32_vpermt2varqi512_maskz __builtin_ia32_vpmadd52huq128_maskz __builtin_ia32_vpmadd52huq256_maskz __builtin_ia32_vpmadd52huq512_maskz __builtin_ia32_vpmadd52luq128_maskz __builtin_ia32_vpmadd52luq256_maskz __builtin_ia32_vpmadd52luq512_maskz __builtin_ia32_movntdqa512 __builtin_ia32_pbroadcastb128_mask __builtin_ia32_pbroadcastb256_mask __builtin_ia32_pbroadcastb512_mask __builtin_ia32_pbroadcastd128_mask __builtin_ia32_pbroadcastd256_mask __builtin_ia32_pbroadcastd512 __builtin_ia32_pbroadcastq128_mask __builtin_ia32_pbroadcastq256_mask __builtin_ia32_pbroadcastq512 __builtin_ia32_pbroadcastw128_mask __builtin_ia32_pbroadcastw256_mask __builtin_ia32_pbroadcastw512_mask __builtin_ia32_pmovzxbd512 __builtin_ia32_pmovzxbq512 __builtin_ia32_pmovzxdq512 __builtin_ia32_pmovzxwd512 __builtin_ia32_pmovzxwq512 __builtin_ia32_psadbw512 __builtin_ia32_pslldq512 __builtin_ia32_psrldq512 __builtin_ia32_ptestmb128 __builtin_ia32_ptestmb256 __builtin_ia32_ptestmb512 __builtin_ia32_ptestmd128 __builtin_ia32_ptestmd256 __builtin_ia32_ptestmd512 __builtin_ia32_ptestmq128 __builtin_ia32_ptestmq256 __builtin_ia32_ptestmq512 __builtin_ia32_ptestmw128 __builtin_ia32_ptestmw256 __builtin_ia32_ptestmw512 __builtin_ia32_ptestnmb128 __builtin_ia32_ptestnmb256 __builtin_ia32_ptestnmb512 __builtin_ia32_ptestnmd128 __builtin_ia32_ptestnmd256 __builtin_ia32_ptestnmd512 __builtin_ia32_ptestnmq128 __builtin_ia32_ptestnmq256 __builtin_ia32_ptestnmq512 __builtin_ia32_ptestnmw128 __builtin_ia32_ptestnmw256 __builtin_ia32_ptestnmw512 __builtin_ia32_rcp14pd128_mask __builtin_ia32_rcp14pd256_mask __builtin_ia32_rcp14pd512_mask __builtin_ia32_rcp14ps128_mask __builtin_ia32_rcp14ps256_mask __builtin_ia32_rcp14ps512_mask __builtin_ia32_rcp14sd_mask __builtin_ia32_rcp14ss_mask __builtin_ia32_rcp28pd_mask __builtin_ia32_rcp28ps_mask __builtin_ia32_rcp28sd_round_mask __builtin_ia32_rcp28ss_round_mask __builtin_ia32_rsqrt14pd128_mask __builtin_ia32_rsqrt14pd256_mask __builtin_ia32_rsqrt14pd512_mask __builtin_ia32_rsqrt14ps128_mask __builtin_ia32_rsqrt14ps256_mask __builtin_ia32_rsqrt14ps512_mask __builtin_ia32_rsqrt14sd_mask __builtin_ia32_rsqrt14ss_mask __builtin_ia32_rsqrt28pd_mask __builtin_ia32_rsqrt28ps_mask __builtin_ia32_rsqrt28sd_round_mask __builtin_ia32_rsqrt28ss_round_mask __builtin_ia32_scattersiv8df __builtin_ia32_scattersiv16si __builtin_ia32_scattersiv8di __builtin_ia32_scattersiv16sf __builtin_ia32_scatterdiv8df __builtin_ia32_scatterdiv16si __builtin_ia32_scatterdiv8di __builtin_ia32_scatterdiv16sf __builtin_ia32_scatterdiv2df __builtin_ia32_scatterdiv2di __builtin_ia32_scatterdiv4df __builtin_ia32_scatterdiv4di __builtin_ia32_scatterdiv4sf __builtin_ia32_scatterdiv4si __builtin_ia32_scatterdiv8sf __builtin_ia32_scatterdiv8si __builtin_ia32_scatterpfdpd __builtin_ia32_scatterpfdps __builtin_ia32_scatterpfqpd __builtin_ia32_scatterpfqps __builtin_ia32_scattersiv2df __builtin_ia32_scattersiv2di __builtin_ia32_scattersiv4df __builtin_ia32_scattersiv4di __builtin_ia32_scattersiv4sf __builtin_ia32_scattersiv4si __builtin_ia32_scattersiv8sf __builtin_ia32_scattersiv8si __builtin_ia32_movntpd512 __builtin_ia32_movntps512 __builtin_ia32_movntdq512 __builtin_ia32_vbroadcastsd512 __builtin_ia32_vbroadcastss512 __builtin_ia32_vcomisd __builtin_ia32_vcomiss __builtin_ia32_vcvtsd2si32 __builtin_ia32_vcvtsd2si64 __builtin_ia32_vcvtsd2usi32 __builtin_ia32_vcvtsd2usi64 __builtin_ia32_vcvtss2si32 __builtin_ia32_vcvtss2si64 __builtin_ia32_vcvtss2usi32 __builtin_ia32_vcvtss2usi64 __builtin_ia32_bextr_u32 __builtin_ia32_bextr_u64 __builtin_ia32_bzhi_si __builtin_ia32_bzhi_di __builtin_ia32_pdep_si __builtin_ia32_pdep_di __builtin_ia32_pext_si __builtin_ia32_pext_di __builtin_ia32_readeflags_u32 __builtin_ia32_readeflags_u64 __builtin_ia32_writeeflags_u32 __builtin_ia32_writeeflags_u64 __builtin_ia32_vfmaddpd __builtin_ia32_vfmaddpd256 __builtin_ia32_vfmaddps __builtin_ia32_vfmaddps256 __builtin_ia32_vfmaddsd __builtin_ia32_vfmaddss __builtin_ia32_vfmaddsubpd __builtin_ia32_vfmaddsubpd256 __builtin_ia32_vfmaddsubps __builtin_ia32_vfmaddsubps256 __builtin_ia32_vfmsubpd __builtin_ia32_vfmsubpd256 __builtin_ia32_vfmsubps __builtin_ia32_vfmsubps256 __builtin_ia32_vfmsubsd __builtin_ia32_vfmsubss __builtin_ia32_vfmsubaddpd __builtin_ia32_vfmsubaddpd256 __builtin_ia32_vfmsubaddps __builtin_ia32_vfmsubaddps256 __builtin_ia32_vfnmaddpd __builtin_ia32_vfnmaddpd256 __builtin_ia32_vfnmaddps __builtin_ia32_vfnmaddps256 __builtin_ia32_vfnmaddsd __builtin_ia32_vfnmaddss __builtin_ia32_vfnmsubpd __builtin_ia32_vfnmsubpd256 __builtin_ia32_vfnmsubps __builtin_ia32_vfnmsubps256 __builtin_ia32_vfnmsubsd __builtin_ia32_vfnmsubss __builtin_ia32_fxrstor __builtin_ia32_fxrstor64 __builtin_ia32_fxsave __builtin_ia32_fxsave64 __builtin_ia32_emms __builtin_ia32_femms __builtin_ia32_maskmovq __builtin_ia32_movntq __builtin_ia32_packssdw __builtin_ia32_packsswb __builtin_ia32_packuswb __builtin_ia32_paddb __builtin_ia32_paddd __builtin_ia32_paddq __builtin_ia32_paddw __builtin_ia32_paddsb __builtin_ia32_paddsw __builtin_ia32_paddusb __builtin_ia32_paddusw __builtin_ia32_palignr __builtin_ia32_pand __builtin_ia32_pandn __builtin_ia32_pavgb __builtin_ia32_pavgw __builtin_ia32_pcmpeqb __builtin_ia32_pcmpeqd __builtin_ia32_pcmpeqw __builtin_ia32_pcmpgtb __builtin_ia32_pcmpgtd __builtin_ia32_pcmpgtw __builtin_ia32_vec_ext_v4hi __builtin_ia32_vec_set_v4hi __builtin_ia32_pmaddwd __builtin_ia32_pmaxsw __builtin_ia32_pmaxub __builtin_ia32_pminsw __builtin_ia32_pminub __builtin_ia32_pmovmskb __builtin_ia32_pmulhw __builtin_ia32_pmulhuw __builtin_ia32_pmullw __builtin_ia32_pmuludq __builtin_ia32_por __builtin_ia32_psadbw __builtin_ia32_pslld __builtin_ia32_psllq __builtin_ia32_psllw __builtin_ia32_pslldi __builtin_ia32_psllqi __builtin_ia32_psllwi __builtin_ia32_psrad __builtin_ia32_psraw __builtin_ia32_psradi __builtin_ia32_psrawi __builtin_ia32_psrld __builtin_ia32_psrlq __builtin_ia32_psrlw __builtin_ia32_psrldi __builtin_ia32_psrlqi __builtin_ia32_psrlwi __builtin_ia32_psubb __builtin_ia32_psubd __builtin_ia32_psubq __builtin_ia32_psubw __builtin_ia32_psubsb __builtin_ia32_psubsw __builtin_ia32_psubusb __builtin_ia32_psubusw __builtin_ia32_punpckhbw __builtin_ia32_punpckhdq __builtin_ia32_punpckhwd __builtin_ia32_punpcklbw __builtin_ia32_punpckldq __builtin_ia32_punpcklwd __builtin_ia32_pxor __builtin_ia32_pclmulqdq128 __builtin_ia32_rdfsbase32 __builtin_ia32_rdfsbase64 __builtin_ia32_rdgsbase32 __builtin_ia32_rdgsbase64 __builtin_ia32_rdpkru __builtin_ia32_rdpmc __builtin_ia32_rdtsc __builtin_ia32_rdtscp __builtin_ia32_sha1msg1 __builtin_ia32_sha1msg2 __builtin_ia32_sha1nexte __builtin_ia32_sha1rnds4 __builtin_ia32_sha256msg1 __builtin_ia32_sha256msg2 __builtin_ia32_sha256rnds2 __builtin_ia32_addss __builtin_ia32_cmpps __builtin_ia32_cmpss __builtin_ia32_comieq __builtin_ia32_comige __builtin_ia32_comigt __builtin_ia32_comile __builtin_ia32_comilt __builtin_ia32_comineq __builtin_ia32_cvtpd2pi __builtin_ia32_cvtpi2pd __builtin_ia32_cvtpi2ps __builtin_ia32_cvtps2pi __builtin_ia32_cvtsi2ss __builtin_ia32_cvtsi642ss __builtin_ia32_cvtss2si __builtin_ia32_cvtss2si64 __builtin_ia32_cvttpd2pi __builtin_ia32_cvttps2pi __builtin_ia32_cvttss2si __builtin_ia32_cvttss2si64 __builtin_ia32_divss __builtin_ia32_maxps __builtin_ia32_maxss __builtin_ia32_minps __builtin_ia32_minss __builtin_ia32_movmskps __builtin_ia32_mulss __builtin_ia32_pshufw __builtin_ia32_rcpps __builtin_ia32_rcpss __builtin_ia32_rsqrtps __builtin_ia32_rsqrtss __builtin_ia32_sfence __builtin_ia32_sqrtps __builtin_ia32_sqrtss __builtin_ia32_storeups __builtin_ia32_subss __builtin_ia32_ucomieq __builtin_ia32_ucomige __builtin_ia32_ucomigt __builtin_ia32_ucomile __builtin_ia32_ucomilt __builtin_ia32_ucomineq __builtin_ia32_addsd __builtin_ia32_clflush __builtin_ia32_cmppd __builtin_ia32_cmpsd __builtin_ia32_comisdeq __builtin_ia32_comisdge __builtin_ia32_comisdgt __builtin_ia32_comisdle __builtin_ia32_comisdlt __builtin_ia32_comisdneq __builtin_ia32_cvtdq2pd __builtin_ia32_cvtdq2ps __builtin_ia32_cvtpd2dq __builtin_ia32_cvtpd2ps __builtin_ia32_cvtps2dq __builtin_ia32_cvtps2pd __builtin_ia32_cvtsd2si __builtin_ia32_cvtsd2si64 __builtin_ia32_cvtsd2ss __builtin_ia32_cvtsi2sd __builtin_ia32_cvtsi642sd __builtin_ia32_cvtss2sd __builtin_ia32_cvttpd2dq __builtin_ia32_cvttps2dq __builtin_ia32_cvttsd2si __builtin_ia32_cvttsd2si64 __builtin_ia32_divsd __builtin_ia32_lfence __builtin_ia32_maskmovdqu __builtin_ia32_maxpd __builtin_ia32_maxsd __builtin_ia32_mfence __builtin_ia32_minpd __builtin_ia32_minsd __builtin_ia32_movmskpd __builtin_ia32_mulsd __builtin_ia32_packssdw128 __builtin_ia32_packsswb128 __builtin_ia32_packuswb128 __builtin_ia32_paddsb128 __builtin_ia32_paddsw128 __builtin_ia32_paddusb128 __builtin_ia32_paddusw128 __builtin_ia32_pause __builtin_ia32_pavgb128 __builtin_ia32_pavgw128 __builtin_ia32_pmaddwd128 __builtin_ia32_pmaxsw128 __builtin_ia32_pmaxub128 __builtin_ia32_pminsw128 __builtin_ia32_pminub128 __builtin_ia32_pmovmskb128 __builtin_ia32_pmulhw128 __builtin_ia32_pmulhuw128 __builtin_ia32_pmuludq128 __builtin_ia32_psadbw128 __builtin_ia32_pshufd __builtin_ia32_pshufhw __builtin_ia32_pshuflw __builtin_ia32_pslld128 __builtin_ia32_psllq128 __builtin_ia32_psllw128 __builtin_ia32_pslldi128 __builtin_ia32_psllqi128 __builtin_ia32_psllwi128 __builtin_ia32_psrad128 __builtin_ia32_psraw128 __builtin_ia32_psradi128 __builtin_ia32_psrawi128 __builtin_ia32_psrld128 __builtin_ia32_psrlq128 __builtin_ia32_psrlw128 __builtin_ia32_psrldi128 __builtin_ia32_psrlqi128 __builtin_ia32_psrlwi128 __builtin_ia32_psubsb128 __builtin_ia32_psubsw128 __builtin_ia32_psubusb128 __builtin_ia32_psubusw128 __builtin_ia32_sqrtpd __builtin_ia32_sqrtsd __builtin_ia32_storelv4si __builtin_ia32_storedqu __builtin_ia32_storeupd __builtin_ia32_subsd __builtin_ia32_ucomisdeq __builtin_ia32_ucomisdge __builtin_ia32_ucomisdgt __builtin_ia32_ucomisdle __builtin_ia32_ucomisdlt __builtin_ia32_ucomisdneq __builtin_ia32_addsubpd __builtin_ia32_addsubps __builtin_ia32_haddpd __builtin_ia32_haddps __builtin_ia32_hsubpd __builtin_ia32_hsubps __builtin_ia32_lddqu __builtin_ia32_monitor __builtin_ia32_mwait __builtin_ia32_blendvpd __builtin_ia32_blendvps __builtin_ia32_dppd __builtin_ia32_dpps __builtin_ia32_extractps128 __builtin_ia32_insertps128 __builtin_ia32_movntdqa __builtin_ia32_mpsadbw128 __builtin_ia32_packusdw128 __builtin_ia32_pblendvb128 __builtin_ia32_phminposuw128 __builtin_ia32_pmaxsb128 __builtin_ia32_pmaxsd128 __builtin_ia32_pmaxud128 __builtin_ia32_pmaxuw128 __builtin_ia32_pminsb128 __builtin_ia32_pminsd128 __builtin_ia32_pminud128 __builtin_ia32_pminuw128 __builtin_ia32_pmovsxbd128 __builtin_ia32_pmovsxbq128 __builtin_ia32_pmovsxbw128 __builtin_ia32_pmovsxdq128 __builtin_ia32_pmovsxwd128 __builtin_ia32_pmovsxwq128 __builtin_ia32_pmovzxbd128 __builtin_ia32_pmovzxbq128 __builtin_ia32_pmovzxbw128 __builtin_ia32_pmovzxdq128 __builtin_ia32_pmovzxwd128 __builtin_ia32_pmovzxwq128 __builtin_ia32_pmuldq128 __builtin_ia32_ptestc128 __builtin_ia32_ptestnzc128 __builtin_ia32_ptestz128 __builtin_ia32_roundpd __builtin_ia32_roundps __builtin_ia32_roundsd __builtin_ia32_roundss __builtin_ia32_crc32hi __builtin_ia32_crc32si __builtin_ia32_crc32qi __builtin_ia32_crc32di __builtin_ia32_pcmpestri128 __builtin_ia32_pcmpestria128 __builtin_ia32_pcmpestric128 __builtin_ia32_pcmpestrio128 __builtin_ia32_pcmpestris128 __builtin_ia32_pcmpestriz128 __builtin_ia32_pcmpestrm128 __builtin_ia32_pcmpistri128 __builtin_ia32_pcmpistria128 __builtin_ia32_pcmpistric128 __builtin_ia32_pcmpistrio128 __builtin_ia32_pcmpistris128 __builtin_ia32_pcmpistriz128 __builtin_ia32_pcmpistrm128 __builtin_ia32_extrq __builtin_ia32_extrqi __builtin_ia32_insertq __builtin_ia32_insertqi __builtin_ia32_movntsd __builtin_ia32_movntss __builtin_ia32_pabsb __builtin_ia32_pabsb128 __builtin_ia32_pabsd __builtin_ia32_pabsd128 __builtin_ia32_pabsw __builtin_ia32_pabsw128 __builtin_ia32_phaddd __builtin_ia32_phaddd128 __builtin_ia32_phaddsw __builtin_ia32_phaddsw128 __builtin_ia32_phaddw __builtin_ia32_phaddw128 __builtin_ia32_phsubd __builtin_ia32_phsubd128 __builtin_ia32_phsubsw __builtin_ia32_phsubsw128 __builtin_ia32_phsubw __builtin_ia32_phsubw128 __builtin_ia32_pmaddubsw __builtin_ia32_pmaddubsw128 __builtin_ia32_pmulhrsw __builtin_ia32_pmulhrsw128 __builtin_ia32_pshufb __builtin_ia32_pshufb128 __builtin_ia32_psignb __builtin_ia32_psignb128 __builtin_ia32_psignd __builtin_ia32_psignd128 __builtin_ia32_psignw __builtin_ia32_psignw128 __builtin_ia32_subborrow_u32 __builtin_ia32_subborrow_u64 __builtin_ia32_bextri_u32 __builtin_ia32_bextri_u64 __builtin_ia32_vcvtph2ps __builtin_ia32_vcvtph2ps256 __builtin_ia32_vcvtps2ph __builtin_ia32_vcvtps2ph256 __builtin_ia32_wrfsbase32 __builtin_ia32_wrfsbase64 __builtin_ia32_wrgsbase32 __builtin_ia32_wrgsbase64 __builtin_ia32_wrpkru __builtin_ia32_xabort __builtin_ia32_xbegin __builtin_ia32_xend __builtin_ia32_vfrczpd __builtin_ia32_vfrczpd256 __builtin_ia32_vfrczps __builtin_ia32_vfrczps256 __builtin_ia32_vfrczsd __builtin_ia32_vfrczss __builtin_ia32_vpcmov __builtin_ia32_vpcmov_256 __builtin_ia32_vpcomb __builtin_ia32_vpcomd __builtin_ia32_vpcomq __builtin_ia32_vpcomub __builtin_ia32_vpcomud __builtin_ia32_vpcomuq __builtin_ia32_vpcomuw __builtin_ia32_vpcomw __builtin_ia32_vpermil2pd __builtin_ia32_vpermil2pd256 __builtin_ia32_vpermil2ps __builtin_ia32_vpermil2ps256 __builtin_ia32_vphaddbd __builtin_ia32_vphaddbq __builtin_ia32_vphaddbw __builtin_ia32_vphadddq __builtin_ia32_vphaddubd __builtin_ia32_vphaddubq __builtin_ia32_vphaddubw __builtin_ia32_vphaddudq __builtin_ia32_vphadduwd __builtin_ia32_vphadduwq __builtin_ia32_vphaddwd __builtin_ia32_vphaddwq __builtin_ia32_vphsubbw __builtin_ia32_vphsubdq __builtin_ia32_vphsubwd __builtin_ia32_vpmacsdd __builtin_ia32_vpmacsdqh __builtin_ia32_vpmacsdql __builtin_ia32_vpmacssdd __builtin_ia32_vpmacssdqh __builtin_ia32_vpmacssdql __builtin_ia32_vpmacsswd __builtin_ia32_vpmacssww __builtin_ia32_vpmacswd __builtin_ia32_vpmacsww __builtin_ia32_vpmadcsswd __builtin_ia32_vpmadcswd __builtin_ia32_vpperm __builtin_ia32_vprotb __builtin_ia32_vprotbi __builtin_ia32_vprotd __builtin_ia32_vprotdi __builtin_ia32_vprotq __builtin_ia32_vprotqi __builtin_ia32_vprotw __builtin_ia32_vprotwi __builtin_ia32_vpshab __builtin_ia32_vpshad __builtin_ia32_vpshaq __builtin_ia32_vpshaw __builtin_ia32_vpshlb __builtin_ia32_vpshld __builtin_ia32_vpshlq __builtin_ia32_vpshlw __builtin_ia32_xtest __builtin_bitrev __builtin_getid __builtin_getps __builtin_setps ( I j @ a 3 L g 5 T r ! ' " B # [ $ u % & ' ( ) * + - , F - ` . z / 0 1 2 3 4 , 5 M 6 r 7 8 9 : ; # < H = m > ? @ A B C D 1 E N F k G H I J K L M * N C O ^ P y Q R S T U V W ; X Z Y u Z [ \ ] ^ _ ` 9 a V b r c d e f g h i 8 j U k q l m n o p q ! r > s \ t w u v w x y z { 7 | R } n ~ 4 R o % A ] z 5 O j : W u " A ` ( E c " @ ] { 1 P l 4 R l , H d ) F a } 2 K j ! +! G! d! ! ! ! ! ! " 2" W" u" " " " " # "# A# `# # # # # $ ($ M$ l$ $ $ $ $ % 8% X% }% % % % & & @& _& ~& & & & & ' ,' ! I' " d' # ' $ ' % ' & ' ' ' ( ( ) 1( * O( + j( , ( - ( . ( / ( 0 ( 1 ) 2 6) 3 Q) 4 l) 5 ) 6 ) 7 ) 8 ) 9 * : * ; <* < Z* = x* > * ? * @ * A * B + C 0+ D P+ E p+ F + G + H + I + J , K &, L E, M d, N , O , P , Q , R - S 8- T X- U x- V - W - X - Y - Z . [ (. \ H. ] h. ^ . _ . ` . a . b / c $/ d E/ e f/ f / g / h / i / j 0 k (0 l G0 m f0 n 0 o 0 p 0 q 0 r 0 s 1 t <1 u \1 v {1 w 1 x 1 y 1 z 1 { 2 | ;2 } ^2 ~ 2 2 2 2 3 03 W3 ~3 3 3 3 4 A4 h4 4 4 4 4 5 "5 A5 `5 5 5 5 5 6 26 U6 x6 6 6 6 7 ;7 b7 7 7 7 7 8 <8 _8 8 8 8 8 9 19 T9 w9 9 9 9 : .: U: |: : : : ; 4; S; v; ; ; ; < *< N< r< < < < < = 6= V= v= = = = > &> J> n> > > > > "? F? j? ? ? ? ? @ *@ N@ r@ @ @ @ A &A JA jA A A A A B *B JB nB B B B B "C FC jC C C C C D @D eD D D D D E 3E TE uE E E E F &F KF pF F F F F G 1G MG lG G G G G H ?H cH H H ! H " H # I $ I % :I & WI ' wI ( I ) I * I + I , J - 5J . UJ / tJ 0 J 1 J 2 J 3 J 4 K 5 5K 6 RK 7 rK 8 K 9 K : K ; K < L = 5L > VL ? zL @ L A L B L C L D M E 3M F QM G mM H M I M J M K M L N M 'N N GN O gN P N Q N R N S N T O U &O V AO W ]O X xO Y O Z O [ O \ O ] P ^ ;P _ [P ` P a P b P c P d Q e Q f :Q g XQ h vQ i Q j Q k Q l Q m R n &R o DR p bR q R r R s R t R u R v S w ?S x `S y S z S { S | S } T ~ "T BT cT T T T T T U AU aU U U U U V "V CV aV V V V V V W @W lW W W W W X -X YX }X X X X X Y 9Y YY zY Y Y Y Y Z ;Z _Z }Z Z Z Z Z [ $[ =[ W[ p[ [ [ [ [ [ \ /\ I\ k\ \ \ \ \ ] &] C] c] ] ] ] ] ] ^ =^ ^^ {^ ^ ^ ^ ^ _ :_ W_ x_ _ _ _ _ ` :` [` |` ` ` ` ` a 8a Ya za a a a a b ;b [b yb b b b b c )c Fc cc c c c c d 2d \d d d d d e "e @e \e ze e e e e f 4f Xf tf f f f f g 3g Rg ng g g g g h ! h " :h # Wh $ xh % h & h ' h ( h ) i * 4i + Qi , qi - i . i / i 0 i 1 j 2 %j 3 Cj 4 _j 5 j 6 j 7 j 8 j 9 j : k ; =k < \k = k > k ? k @ k A k B l C ;l D jl E l F l G l H l I m J 1m K Rm L rm M m N m O m P m Q n R 4n S Vn T un U n W n X n Y o Z -o [ Jo \ bo ] o ^ o _ o ` o a p b !p c Fp d dp e p f p g p h p i q j +q k Rq l pq m q n q o q p q q r r ;r s `r t r u r v r w r x r y !s z <s { \s | {s } s ~ s s s t 8t Zt vt t t t t u 0u Ru nu u u u u v 3v Tv qv v v v v w >w bw w w w w x %x Cx fx x x x x y #y Dy jy y y y y z #z @z bz z z z z { /{ J{ j{ { { { { | %| A| b| }| | | | } 1} Q} v} } } } } ~ 1~ M~ n~ ~ ~ ~ ~ ? [ | 7 U x 5 T x / J j = ` | 9 \ ~ ; X z * S s ( K s . T y ! " # $ % 5 & R ' t ( ) * + , - 5 . R / t 0 1 2 3 4 5 / 6 L 7 n 8 9 : ; < = ) > F ? h @ A B C D E # F @ G b H I J K L M N : O \ P z Q R S T U V 9 W \ X { Y Z [ \ ] ^ ; _ ^ ` } a b c d e f = g ` h i j k l m n : o \ p z q r s t u ! v @ w d x y z { | } ~ 3 T o 5 \ y % H p % @ ` { 0 P m 5 X t : ` ~ ' G l 1 O r 7 S t = _ 0 Q q : ] z " C i @ b ( J k 0 R s , N j + J c F h . T v ! ! " ? # b $ % & ' ( ) 9 * X + | , - . / 0 ' 1 M 2 j 3 4 5 6 7 8 6 9 ] : { ; < = > ? @ > A a B C D E F G ( H F I i J K L M N O . P G Q e R ~ S T U V W X 8 Y [ Z x [ \ ] ^ _ ` < a _ b } c d e f g h 8 i [ j x k l m n o p 0 q S r p s t u v w x 1 y W z s { | } ~ 8 _ ~ * E e " @ c " B g 0 Q w < [ > W u n V n V 3 F Y n . C Y Z 7Z TZ bw w w w w w , x ` ( 0x V5 [ n5 3[ qZ Z Z Z Z Z x y :y Xy vy y Px mx x x x x 4 M T z? U ? y y y z 2z Rz rz z z z z { 8{ X{ x{ { { { 6 N[ 76 i[ | | | } 4} [} } } } } ~ @~ g~ ~ ~ ~ ~ K m L n M ;n N Yn O wn P n { | 9| \| | } f , < X t , [ a ( [ < Y v , b ( 6 c ) d #) e 9) f O) g e) h {) - (- @- X- p- - @ b R t _ I p " 8 F: : /: : Q n R n S n T o U #o V ?o - \ - ;\ < W [o X wo Y o Z o [ o \ o ] p ^ p _ ;p ` Wp a sp b p - \ [ | i ) - [ 9 Y y ! " # $ j ) k ) . % ? \ & _ ' . ( [ ) * l ) + , - ? . _ / 0 1 2 3 c p d p e p 4 % 5 E 6 e 7 8 9 1. I. c. : {. f p g q m ) h 3q i Mq . n * . ; o $* p <* . < + V\ = L > m q V* ? @ A B C D 5 E W F y G . H r\ I J r o* K L A M b N O P Q R S - . / s * t * T O U p V W X Y Z [ 6 \ W ] x ^ _ r Kr t r s fr u r v r w r x r ` a b d U e r c ; g h f +/ i u * j O6 c6 \ ! y s z &s z 3 { S | s 3 q r s 7 w x y t [ u v n o p } ~ k # l C m c A b 4 Y ~ w6 . ; / < $! S + U u , x - . / 0 1 ' > 2 G ] ~ # A %t Bt _t |t t t t t u *u Gu du u u u u Wb pb b b b b b c t s s s u v +v Fv /c Hc dc ~c c c c c ~ s | ]s { As } zs _ E k 1 U 5 \ 5 \ 5 \ 5 \ y ) I m 6 0 < 1 1< av wv v v v v w v w 5w Lw 5 ] @/ + L m / P q d d !] ;] X] r] <d Ud V/ 9! qd d ] ] ] ] d d p/ ^ w * ^ % B / _ x * / / 1^ y * I^ * / G z + g 5 & D b ? = a ^ _ ` ? c g h i $ R r / a^ { %+ |^ 6 d _ { Q! 2 I< 3 `< ^ 2 x 6 d , I f / | =+ 6 2 N j 4 w< 5 < e 6 < 7 < ,e 3 P m 8 < 9 < De g! 0 \e > ! "0 ^ we ~ 6 e ! " ! =0 # e $ > % ^ ! & ~ ' ( ! ) * + ! , , - I . f " X0 2 e 3 4 " q0 5 4 e 6 R 7 p /" 0 8 e 9 : F" 0 ; f < = ) ! / 0 1 ]" > H ? g @ t" A B C " G S H q I J K L D E F 6 0 " 0 M .f N $ O A p X " 0 P ^ Ff Q { R 6 ^f S ` T a U b V * c W Q d " e E X x Y f c Z g h [ \ ] ; i ^ b j _ k G C' " ` a b " c d , e K f j g h " i j k ]: ! y: " : # : $ : % : & ; # l $ m C n b ## o p q r s t :# u ; v Z w y ' &; ( B; ) _; * |; + ; , ; - ; x y z { J m | } 1 ~ R s 9 f Z { yf q X Y r /X s DX t YX u pX v X w X x X y X Y Y z X { X | Y } "Y ~ :Y QY fY : < ; = f < -= = D= f > ^= ? t= f 7 @ = A = f B = C = g D = E > 0g |Y Y F > G 5> Ig # 1 A eg ` 37 g L7 g 4 R p # 1 g # 61 g $ B e7 ` g ~ ~7 g 2 P 7 n h 7 .h " @ ^ # O1 | Gh # h1 `h 7 0 yh N l 7 h > \ z U v 7 ! # 1 h 3 T u 2 P n + M o 2 Q p R t 3 7 Y { 7 > h ^ ~ 8 h 18 h > L8 ^ i ~ g8 2i 8 Mi > ^ ~ $ G # ! g $ " % & ) p ' 0 * ( P + , / 9 - 0 \ . 1 2 5 3 6 % 4 7 H 8 k ; 9 < : = I j + 8 > 4 hi ? T l 0 @ t 8 A i B m K C 8 D i E F 4 8 G T i H t n f I 9 J i K o L $9 M ! i N 4 p O T ?9 P t " j Q R H Q> I i> S # #j T U Y # &$ 1 Y % Wj Z [ " $ 1 V . $ >j W L X j \ ] ^ ! _ ? ` ] a { $ =$ b c d % S$ 1 h e & qj i j & j$ k l m n o 2 p N q j r s t u v w x 6 y T z r { | } ~ # @ ] z ' }$ 1 ' j q J > K > . ( j L j 2 2 /2 ? ^ } } R+ L > M > ) j N > O > * j P ? Q '? + j ( $ F2 , k + $ 2 / Pk / r ) $ ^2 j - k M , $ 2 0 ik 4 k : W 5 k u 2 k 3 k * $ v2 . 8k 8 - $ 2 U 1 k s . % 2 6 k # 0 >% 3 @ 8 +l ^ | - . : ]l L ; ul i / )% 2 K 7 l h 1 T% "3 9 Dl 2 j% ;3 U < l r 8 5 % 3 ? l K s 3 % S3 = l # 6 % 3 @ @ l ^ d | } D Pm E hm B m . K C 8m h 4 % k3 > l 7 % 3 A m - 8 % 9 & : & 3 P m < ?& 3 F m = U& 3 ; G m Y w > k& 4 H m ? & 4 I m 0 ; *& O 3 g p 4 5 6 7 8 X9 ^ t u v 6 w P x j y z { | } ~ : U p - H c q9 ^ 9 ^ @ & 6 W A & x B & A b C & D & ( I j E ' ! F /' " 3 # P $ m % & ' ( ) * + > , ] - | . / ~ 8 T p ~ h+ ^ }+ H _' I y' J ' K ' L ' M ' T ' U ( 0 1 2 % 3 E 4 e 5 6 7 8 9 : % ; D < g = > ? 9 ^ 9 _ 9 9 . O p * N + 0_ + @ A B 3 C S D s E F G @ ^ { # ) F b ~ * G r d + Y ( Z 5( [ M( \ f( ] ( ^ ( _ ( I H K Z J ; M L } O N P Q R = S [ T y U 44 V J_ W X + Y c_ Z - [ K J4 \ i + ] a b : c Z d z e f z4 |_ w x y 5 z W { y | k e l m n o p `4 j I 4 q 1 _ r Q s q , t _ u v R @? S ]? } ~ 1 N 4 k , < Y v /, F, ], t, , , 4 4 4 5 #5 <5 ' G g ' G g _ _ * A V ? W ? Y z ; X ? Y ? X s j gq k q l q m q n q o q p r q .r Q# m# j 9 3 0 : T Q ; u r < = ? > _ ? } @ A 7 7 B [ [ C 9 D T ' E J F # ! A " \ # A $ e r - N o z m 3 % / T & u ' K ( d ) * 3 - R w ` 5` U` ? b : ^ 3 W { u` ` \ ; ` ` G 0 H 3 S I W v J { K L M N * O 4 N P Y r Q ~ R S T U # V 4 G W Y k X ~ 3 T u Y Z [ \ ] 3 > ^ W e f g ? ` a a 6a Qa ka a a a a a b %b =b Z @ [ 2@ \ L@ ] f@ , K ^ @ _ @ ` @ a @ a ~ F % = amdgcn s390 xcore function_entry_count not_intrinsic llvm.AMDGPU.ldexp llvm.aarch64.clrex llvm.aarch64.crc32b llvm.aarch64.crc32cb llvm.aarch64.crc32ch llvm.aarch64.crc32cw llvm.aarch64.crc32cx llvm.aarch64.crc32h llvm.aarch64.crc32w llvm.aarch64.crc32x llvm.aarch64.crypto.aesd llvm.aarch64.crypto.aese llvm.aarch64.crypto.aesimc llvm.aarch64.crypto.aesmc llvm.aarch64.crypto.sha1c llvm.aarch64.crypto.sha1h llvm.aarch64.crypto.sha1m llvm.aarch64.crypto.sha1p llvm.aarch64.crypto.sha1su0 llvm.aarch64.crypto.sha1su1 llvm.aarch64.crypto.sha256h llvm.aarch64.crypto.sha256h2 llvm.aarch64.crypto.sha256su0 llvm.aarch64.crypto.sha256su1 llvm.aarch64.dmb llvm.aarch64.dsb llvm.aarch64.hint llvm.aarch64.isb llvm.aarch64.ldaxp llvm.aarch64.ldaxr llvm.aarch64.ldxp llvm.aarch64.ldxr llvm.aarch64.neon.abs llvm.aarch64.neon.addhn llvm.aarch64.neon.addp llvm.aarch64.neon.cls llvm.aarch64.neon.fabd llvm.aarch64.neon.facge llvm.aarch64.neon.facgt llvm.aarch64.neon.faddv llvm.aarch64.neon.fcvtas llvm.aarch64.neon.fcvtau llvm.aarch64.neon.fcvtms llvm.aarch64.neon.fcvtmu llvm.aarch64.neon.fcvtns llvm.aarch64.neon.fcvtnu llvm.aarch64.neon.fcvtps llvm.aarch64.neon.fcvtpu llvm.aarch64.neon.fcvtxn llvm.aarch64.neon.fcvtzs llvm.aarch64.neon.fcvtzu llvm.aarch64.neon.fmax llvm.aarch64.neon.fmaxnm llvm.aarch64.neon.fmaxnmp llvm.aarch64.neon.fmaxnmv llvm.aarch64.neon.fmaxp llvm.aarch64.neon.fmaxv llvm.aarch64.neon.fmin llvm.aarch64.neon.fminnm llvm.aarch64.neon.fminnmp llvm.aarch64.neon.fminnmv llvm.aarch64.neon.fminp llvm.aarch64.neon.fminv llvm.aarch64.neon.fmulx llvm.aarch64.neon.frecpe llvm.aarch64.neon.frecps llvm.aarch64.neon.frecpx llvm.aarch64.neon.frintn llvm.aarch64.neon.frsqrte llvm.aarch64.neon.frsqrts llvm.aarch64.neon.ld1x2 llvm.aarch64.neon.ld1x3 llvm.aarch64.neon.ld1x4 llvm.aarch64.neon.ld2 llvm.aarch64.neon.ld2lane llvm.aarch64.neon.ld2r llvm.aarch64.neon.ld3 llvm.aarch64.neon.ld3lane llvm.aarch64.neon.ld3r llvm.aarch64.neon.ld4 llvm.aarch64.neon.ld4lane llvm.aarch64.neon.ld4r llvm.aarch64.neon.pmul llvm.aarch64.neon.pmull llvm.aarch64.neon.pmull64 llvm.aarch64.neon.raddhn llvm.aarch64.neon.rbit llvm.aarch64.neon.rshrn llvm.aarch64.neon.rsubhn llvm.aarch64.neon.sabd llvm.aarch64.neon.saddlp llvm.aarch64.neon.saddlv llvm.aarch64.neon.saddv llvm.aarch64.neon.scalar.sqxtn llvm.aarch64.neon.scalar.sqxtun llvm.aarch64.neon.scalar.uqxtn llvm.aarch64.neon.shadd llvm.aarch64.neon.shll llvm.aarch64.neon.shsub llvm.aarch64.neon.smax llvm.aarch64.neon.smaxp llvm.aarch64.neon.smaxv llvm.aarch64.neon.smin llvm.aarch64.neon.sminp llvm.aarch64.neon.sminv llvm.aarch64.neon.smull llvm.aarch64.neon.sqabs llvm.aarch64.neon.sqadd llvm.aarch64.neon.sqdmulh llvm.aarch64.neon.sqdmull llvm.aarch64.neon.sqdmulls.scalar llvm.aarch64.neon.sqneg llvm.aarch64.neon.sqrdmulh llvm.aarch64.neon.sqrshl llvm.aarch64.neon.sqrshrn llvm.aarch64.neon.sqrshrun llvm.aarch64.neon.sqshl llvm.aarch64.neon.sqshlu llvm.aarch64.neon.sqshrn llvm.aarch64.neon.sqshrun llvm.aarch64.neon.sqsub llvm.aarch64.neon.sqxtn llvm.aarch64.neon.sqxtun llvm.aarch64.neon.srhadd llvm.aarch64.neon.srshl llvm.aarch64.neon.sshl llvm.aarch64.neon.sshll llvm.aarch64.neon.st1x2 llvm.aarch64.neon.st1x3 llvm.aarch64.neon.st1x4 llvm.aarch64.neon.st2 llvm.aarch64.neon.st2lane llvm.aarch64.neon.st3 llvm.aarch64.neon.st3lane llvm.aarch64.neon.st4 llvm.aarch64.neon.st4lane llvm.aarch64.neon.subhn llvm.aarch64.neon.suqadd llvm.aarch64.neon.tbl1 llvm.aarch64.neon.tbl2 llvm.aarch64.neon.tbl3 llvm.aarch64.neon.tbl4 llvm.aarch64.neon.tbx1 llvm.aarch64.neon.tbx2 llvm.aarch64.neon.tbx3 llvm.aarch64.neon.tbx4 llvm.aarch64.neon.uabd llvm.aarch64.neon.uaddlp llvm.aarch64.neon.uaddlv llvm.aarch64.neon.uaddv llvm.aarch64.neon.uhadd llvm.aarch64.neon.uhsub llvm.aarch64.neon.umax llvm.aarch64.neon.umaxp llvm.aarch64.neon.umaxv llvm.aarch64.neon.umin llvm.aarch64.neon.uminp llvm.aarch64.neon.uminv llvm.aarch64.neon.umull llvm.aarch64.neon.uqadd llvm.aarch64.neon.uqrshl llvm.aarch64.neon.uqrshrn llvm.aarch64.neon.uqshl llvm.aarch64.neon.uqshrn llvm.aarch64.neon.uqsub llvm.aarch64.neon.uqxtn llvm.aarch64.neon.urecpe llvm.aarch64.neon.urhadd llvm.aarch64.neon.urshl llvm.aarch64.neon.ursqrte llvm.aarch64.neon.ushl llvm.aarch64.neon.ushll llvm.aarch64.neon.usqadd llvm.aarch64.neon.vcopy.lane llvm.aarch64.neon.vcvtfp2fxs llvm.aarch64.neon.vcvtfp2fxu llvm.aarch64.neon.vcvtfp2hf llvm.aarch64.neon.vcvtfxs2fp llvm.aarch64.neon.vcvtfxu2fp llvm.aarch64.neon.vcvthf2fp llvm.aarch64.neon.vsli llvm.aarch64.neon.vsri llvm.aarch64.rbit llvm.aarch64.sdiv llvm.aarch64.sisd.fabd llvm.aarch64.sisd.fcvtxn llvm.aarch64.stlxp llvm.aarch64.stlxr llvm.aarch64.stxp llvm.aarch64.stxr llvm.aarch64.udiv llvm.adjust.trampoline llvm.amdgcn.atomic.dec llvm.amdgcn.atomic.inc llvm.amdgcn.buffer.atomic.add llvm.amdgcn.buffer.atomic.and llvm.amdgcn.buffer.atomic.cmpswap llvm.amdgcn.buffer.atomic.or llvm.amdgcn.buffer.atomic.smax llvm.amdgcn.buffer.atomic.smin llvm.amdgcn.buffer.atomic.sub llvm.amdgcn.buffer.atomic.swap llvm.amdgcn.buffer.atomic.umax llvm.amdgcn.buffer.atomic.umin llvm.amdgcn.buffer.atomic.xor llvm.amdgcn.buffer.load llvm.amdgcn.buffer.load.format llvm.amdgcn.buffer.store llvm.amdgcn.buffer.store.format llvm.amdgcn.buffer.wbinvl1 llvm.amdgcn.buffer.wbinvl1.sc llvm.amdgcn.buffer.wbinvl1.vol llvm.amdgcn.class llvm.amdgcn.cos llvm.amdgcn.cubeid llvm.amdgcn.cubema llvm.amdgcn.cubesc llvm.amdgcn.cubetc llvm.amdgcn.dispatch.ptr llvm.amdgcn.div.fixup llvm.amdgcn.div.fmas llvm.amdgcn.div.scale llvm.amdgcn.ds.bpermute llvm.amdgcn.ds.permute llvm.amdgcn.frexp.exp llvm.amdgcn.frexp.mant llvm.amdgcn.groupstaticsize llvm.amdgcn.image.atomic.add llvm.amdgcn.image.atomic.and llvm.amdgcn.image.atomic.cmpswap llvm.amdgcn.image.atomic.dec llvm.amdgcn.image.atomic.inc llvm.amdgcn.image.atomic.or llvm.amdgcn.image.atomic.smax llvm.amdgcn.image.atomic.smin llvm.amdgcn.image.atomic.sub llvm.amdgcn.image.atomic.swap llvm.amdgcn.image.atomic.umax llvm.amdgcn.image.atomic.umin llvm.amdgcn.image.atomic.xor llvm.amdgcn.image.load llvm.amdgcn.image.load.mip llvm.amdgcn.image.store llvm.amdgcn.image.store.mip llvm.amdgcn.interp.p1 llvm.amdgcn.interp.p2 llvm.amdgcn.kernarg.segment.ptr llvm.amdgcn.ldexp llvm.amdgcn.log.clamp llvm.amdgcn.mbcnt.hi llvm.amdgcn.mbcnt.lo llvm.amdgcn.mov.dpp llvm.amdgcn.ps.live llvm.amdgcn.queue.ptr llvm.amdgcn.rcp llvm.amdgcn.read.workdim llvm.amdgcn.rsq llvm.amdgcn.rsq.clamp llvm.amdgcn.s.barrier llvm.amdgcn.s.dcache.inv llvm.amdgcn.s.dcache.inv.vol llvm.amdgcn.s.dcache.wb llvm.amdgcn.s.dcache.wb.vol llvm.amdgcn.s.getreg llvm.amdgcn.s.memrealtime llvm.amdgcn.s.memtime llvm.amdgcn.s.sleep llvm.amdgcn.s.waitcnt llvm.amdgcn.sin llvm.amdgcn.trig.preop llvm.amdgcn.workgroup.id.x llvm.amdgcn.workgroup.id.y llvm.amdgcn.workgroup.id.z llvm.amdgcn.workitem.id.x llvm.amdgcn.workitem.id.y llvm.amdgcn.workitem.id.z llvm.annotation llvm.arm.cdp llvm.arm.cdp2 llvm.arm.clrex llvm.arm.crc32b llvm.arm.crc32cb llvm.arm.crc32ch llvm.arm.crc32cw llvm.arm.crc32h llvm.arm.crc32w llvm.arm.dbg llvm.arm.dmb llvm.arm.dsb llvm.arm.get.fpscr llvm.arm.hint llvm.arm.isb llvm.arm.ldaex llvm.arm.ldaexd llvm.arm.ldrex llvm.arm.ldrexd llvm.arm.mcr llvm.arm.mcr2 llvm.arm.mcrr llvm.arm.mcrr2 llvm.arm.mrc llvm.arm.mrc2 llvm.arm.neon.aesd llvm.arm.neon.aese llvm.arm.neon.aesimc llvm.arm.neon.aesmc llvm.arm.neon.sha1c llvm.arm.neon.sha1h llvm.arm.neon.sha1m llvm.arm.neon.sha1p llvm.arm.neon.sha1su0 llvm.arm.neon.sha1su1 llvm.arm.neon.sha256h llvm.arm.neon.sha256h2 llvm.arm.neon.sha256su0 llvm.arm.neon.sha256su1 llvm.arm.neon.vabds llvm.arm.neon.vabdu llvm.arm.neon.vabs llvm.arm.neon.vacge llvm.arm.neon.vacgt llvm.arm.neon.vbsl llvm.arm.neon.vcls llvm.arm.neon.vcvtas llvm.arm.neon.vcvtau llvm.arm.neon.vcvtfp2fxs llvm.arm.neon.vcvtfp2fxu llvm.arm.neon.vcvtfp2hf llvm.arm.neon.vcvtfxs2fp llvm.arm.neon.vcvtfxu2fp llvm.arm.neon.vcvthf2fp llvm.arm.neon.vcvtms llvm.arm.neon.vcvtmu llvm.arm.neon.vcvtns llvm.arm.neon.vcvtnu llvm.arm.neon.vcvtps llvm.arm.neon.vcvtpu llvm.arm.neon.vhadds llvm.arm.neon.vhaddu llvm.arm.neon.vhsubs llvm.arm.neon.vhsubu llvm.arm.neon.vld1 llvm.arm.neon.vld2 llvm.arm.neon.vld2lane llvm.arm.neon.vld3 llvm.arm.neon.vld3lane llvm.arm.neon.vld4 llvm.arm.neon.vld4lane llvm.arm.neon.vmaxnm llvm.arm.neon.vmaxs llvm.arm.neon.vmaxu llvm.arm.neon.vminnm llvm.arm.neon.vmins llvm.arm.neon.vminu llvm.arm.neon.vmullp llvm.arm.neon.vmulls llvm.arm.neon.vmullu llvm.arm.neon.vmulp llvm.arm.neon.vpadals llvm.arm.neon.vpadalu llvm.arm.neon.vpadd llvm.arm.neon.vpaddls llvm.arm.neon.vpaddlu llvm.arm.neon.vpmaxs llvm.arm.neon.vpmaxu llvm.arm.neon.vpmins llvm.arm.neon.vpminu llvm.arm.neon.vqabs llvm.arm.neon.vqadds llvm.arm.neon.vqaddu llvm.arm.neon.vqdmulh llvm.arm.neon.vqdmull llvm.arm.neon.vqmovns llvm.arm.neon.vqmovnsu llvm.arm.neon.vqmovnu llvm.arm.neon.vqneg llvm.arm.neon.vqrdmulh llvm.arm.neon.vqrshiftns llvm.arm.neon.vqrshiftnsu llvm.arm.neon.vqrshiftnu llvm.arm.neon.vqrshifts llvm.arm.neon.vqrshiftu llvm.arm.neon.vqshiftns llvm.arm.neon.vqshiftnsu llvm.arm.neon.vqshiftnu llvm.arm.neon.vqshifts llvm.arm.neon.vqshiftsu llvm.arm.neon.vqshiftu llvm.arm.neon.vqsubs llvm.arm.neon.vqsubu llvm.arm.neon.vraddhn llvm.arm.neon.vrecpe llvm.arm.neon.vrecps llvm.arm.neon.vrhadds llvm.arm.neon.vrhaddu llvm.arm.neon.vrinta llvm.arm.neon.vrintm llvm.arm.neon.vrintn llvm.arm.neon.vrintp llvm.arm.neon.vrintx llvm.arm.neon.vrintz llvm.arm.neon.vrshiftn llvm.arm.neon.vrshifts llvm.arm.neon.vrshiftu llvm.arm.neon.vrsqrte llvm.arm.neon.vrsqrts llvm.arm.neon.vrsubhn llvm.arm.neon.vshiftins llvm.arm.neon.vshifts llvm.arm.neon.vshiftu llvm.arm.neon.vst1 llvm.arm.neon.vst2 llvm.arm.neon.vst2lane llvm.arm.neon.vst3 llvm.arm.neon.vst3lane llvm.arm.neon.vst4 llvm.arm.neon.vst4lane llvm.arm.neon.vtbl1 llvm.arm.neon.vtbl2 llvm.arm.neon.vtbl3 llvm.arm.neon.vtbl4 llvm.arm.neon.vtbx1 llvm.arm.neon.vtbx2 llvm.arm.neon.vtbx3 llvm.arm.neon.vtbx4 llvm.arm.qadd llvm.arm.qsub llvm.arm.rbit llvm.arm.set.fpscr llvm.arm.space llvm.arm.ssat llvm.arm.stlex llvm.arm.stlexd llvm.arm.strex llvm.arm.strexd llvm.arm.undefined llvm.arm.usat llvm.arm.vcvtr llvm.arm.vcvtru llvm.assume llvm.bitreverse llvm.bitset.test llvm.bpf.load.byte llvm.bpf.load.half llvm.bpf.load.word llvm.bpf.pseudo llvm.bswap llvm.canonicalize llvm.ceil llvm.clear_cache llvm.convert.from.fp16 llvm.convert.to.fp16 llvm.convertff llvm.convertfsi llvm.convertfui llvm.convertsif llvm.convertss llvm.convertsu llvm.convertuif llvm.convertus llvm.convertuu llvm.copysign llvm.cos llvm.ctlz llvm.ctpop llvm.cttz llvm.cuda.syncthreads llvm.debugtrap llvm.donothing llvm.eh.dwarf.cfa llvm.eh.exceptioncode llvm.eh.exceptionpointer llvm.eh.return.i32 llvm.eh.return.i64 llvm.eh.sjlj.callsite llvm.eh.sjlj.functioncontext llvm.eh.sjlj.longjmp llvm.eh.sjlj.lsda llvm.eh.sjlj.setjmp llvm.eh.sjlj.setup.dispatch llvm.eh.typeid.for llvm.eh.unwind.init llvm.exp llvm.exp2 llvm.expect llvm.experimental.deoptimize llvm.experimental.gc.relocate llvm.experimental.gc.result llvm.experimental.gc.statepoint llvm.experimental.guard llvm.experimental.patchpoint.i64 llvm.experimental.patchpoint.void llvm.experimental.stackmap llvm.fabs llvm.floor llvm.flt.rounds llvm.fma llvm.fmuladd llvm.frameaddress llvm.gcread llvm.gcroot llvm.gcwrite llvm.get.dynamic.area.offset llvm.hexagon.A2.abs llvm.hexagon.A2.absp llvm.hexagon.A2.abssat llvm.hexagon.A2.add llvm.hexagon.A2.addh.h16.hh llvm.hexagon.A2.addh.h16.hl llvm.hexagon.A2.addh.h16.lh llvm.hexagon.A2.addh.h16.ll llvm.hexagon.A2.addh.h16.sat.hh llvm.hexagon.A2.addh.h16.sat.hl llvm.hexagon.A2.addh.h16.sat.lh llvm.hexagon.A2.addh.h16.sat.ll llvm.hexagon.A2.addh.l16.hl llvm.hexagon.A2.addh.l16.ll llvm.hexagon.A2.addh.l16.sat.hl llvm.hexagon.A2.addh.l16.sat.ll llvm.hexagon.A2.addi llvm.hexagon.A2.addp llvm.hexagon.A2.addpsat llvm.hexagon.A2.addsat llvm.hexagon.A2.addsp llvm.hexagon.A2.and llvm.hexagon.A2.andir llvm.hexagon.A2.andp llvm.hexagon.A2.aslh llvm.hexagon.A2.asrh llvm.hexagon.A2.combine.hh llvm.hexagon.A2.combine.hl llvm.hexagon.A2.combine.lh llvm.hexagon.A2.combine.ll llvm.hexagon.A2.combineii llvm.hexagon.A2.combinew llvm.hexagon.A2.max llvm.hexagon.A2.maxp llvm.hexagon.A2.maxu llvm.hexagon.A2.maxup llvm.hexagon.A2.min llvm.hexagon.A2.minp llvm.hexagon.A2.minu llvm.hexagon.A2.minup llvm.hexagon.A2.neg llvm.hexagon.A2.negp llvm.hexagon.A2.negsat llvm.hexagon.A2.not llvm.hexagon.A2.notp llvm.hexagon.A2.or llvm.hexagon.A2.orir llvm.hexagon.A2.orp llvm.hexagon.A2.roundsat llvm.hexagon.A2.sat llvm.hexagon.A2.satb llvm.hexagon.A2.sath llvm.hexagon.A2.satub llvm.hexagon.A2.satuh llvm.hexagon.A2.sub llvm.hexagon.A2.subh.h16.hh llvm.hexagon.A2.subh.h16.hl llvm.hexagon.A2.subh.h16.lh llvm.hexagon.A2.subh.h16.ll llvm.hexagon.A2.subh.h16.sat.hh llvm.hexagon.A2.subh.h16.sat.hl llvm.hexagon.A2.subh.h16.sat.lh llvm.hexagon.A2.subh.h16.sat.ll llvm.hexagon.A2.subh.l16.hl llvm.hexagon.A2.subh.l16.ll llvm.hexagon.A2.subh.l16.sat.hl llvm.hexagon.A2.subh.l16.sat.ll llvm.hexagon.A2.subp llvm.hexagon.A2.subri llvm.hexagon.A2.subsat llvm.hexagon.A2.svaddh llvm.hexagon.A2.svaddhs llvm.hexagon.A2.svadduhs llvm.hexagon.A2.svavgh llvm.hexagon.A2.svavghs llvm.hexagon.A2.svnavgh llvm.hexagon.A2.svsubh llvm.hexagon.A2.svsubhs llvm.hexagon.A2.svsubuhs llvm.hexagon.A2.swiz llvm.hexagon.A2.sxtb llvm.hexagon.A2.sxth llvm.hexagon.A2.sxtw llvm.hexagon.A2.tfr llvm.hexagon.A2.tfrih llvm.hexagon.A2.tfril llvm.hexagon.A2.tfrp llvm.hexagon.A2.tfrpi llvm.hexagon.A2.tfrsi llvm.hexagon.A2.vabsh llvm.hexagon.A2.vabshsat llvm.hexagon.A2.vabsw llvm.hexagon.A2.vabswsat llvm.hexagon.A2.vaddb.map llvm.hexagon.A2.vaddh llvm.hexagon.A2.vaddhs llvm.hexagon.A2.vaddub llvm.hexagon.A2.vaddubs llvm.hexagon.A2.vadduhs llvm.hexagon.A2.vaddw llvm.hexagon.A2.vaddws llvm.hexagon.A2.vavgh llvm.hexagon.A2.vavghcr llvm.hexagon.A2.vavghr llvm.hexagon.A2.vavgub llvm.hexagon.A2.vavgubr llvm.hexagon.A2.vavguh llvm.hexagon.A2.vavguhr llvm.hexagon.A2.vavguw llvm.hexagon.A2.vavguwr llvm.hexagon.A2.vavgw llvm.hexagon.A2.vavgwcr llvm.hexagon.A2.vavgwr llvm.hexagon.A2.vcmpbeq llvm.hexagon.A2.vcmpbgtu llvm.hexagon.A2.vcmpheq llvm.hexagon.A2.vcmphgt llvm.hexagon.A2.vcmphgtu llvm.hexagon.A2.vcmpweq llvm.hexagon.A2.vcmpwgt llvm.hexagon.A2.vcmpwgtu llvm.hexagon.A2.vconj llvm.hexagon.A2.vmaxb llvm.hexagon.A2.vmaxh llvm.hexagon.A2.vmaxub llvm.hexagon.A2.vmaxuh llvm.hexagon.A2.vmaxuw llvm.hexagon.A2.vmaxw llvm.hexagon.A2.vminb llvm.hexagon.A2.vminh llvm.hexagon.A2.vminub llvm.hexagon.A2.vminuh llvm.hexagon.A2.vminuw llvm.hexagon.A2.vminw llvm.hexagon.A2.vnavgh llvm.hexagon.A2.vnavghcr llvm.hexagon.A2.vnavghr llvm.hexagon.A2.vnavgw llvm.hexagon.A2.vnavgwcr llvm.hexagon.A2.vnavgwr llvm.hexagon.A2.vraddub llvm.hexagon.A2.vraddub.acc llvm.hexagon.A2.vrsadub llvm.hexagon.A2.vrsadub.acc llvm.hexagon.A2.vsubb.map llvm.hexagon.A2.vsubh llvm.hexagon.A2.vsubhs llvm.hexagon.A2.vsubub llvm.hexagon.A2.vsububs llvm.hexagon.A2.vsubuhs llvm.hexagon.A2.vsubw llvm.hexagon.A2.vsubws llvm.hexagon.A2.xor llvm.hexagon.A2.xorp llvm.hexagon.A2.zxtb llvm.hexagon.A2.zxth llvm.hexagon.A4.andn llvm.hexagon.A4.andnp llvm.hexagon.A4.bitsplit llvm.hexagon.A4.bitspliti llvm.hexagon.A4.boundscheck llvm.hexagon.A4.cmpbeq llvm.hexagon.A4.cmpbeqi llvm.hexagon.A4.cmpbgt llvm.hexagon.A4.cmpbgti llvm.hexagon.A4.cmpbgtu llvm.hexagon.A4.cmpbgtui llvm.hexagon.A4.cmpheq llvm.hexagon.A4.cmpheqi llvm.hexagon.A4.cmphgt llvm.hexagon.A4.cmphgti llvm.hexagon.A4.cmphgtu llvm.hexagon.A4.cmphgtui llvm.hexagon.A4.combineir llvm.hexagon.A4.combineri llvm.hexagon.A4.cround.ri llvm.hexagon.A4.cround.rr llvm.hexagon.A4.modwrapu llvm.hexagon.A4.orn llvm.hexagon.A4.ornp llvm.hexagon.A4.rcmpeq llvm.hexagon.A4.rcmpeqi llvm.hexagon.A4.rcmpneq llvm.hexagon.A4.rcmpneqi llvm.hexagon.A4.round.ri llvm.hexagon.A4.round.ri.sat llvm.hexagon.A4.round.rr llvm.hexagon.A4.round.rr.sat llvm.hexagon.A4.tlbmatch llvm.hexagon.A4.vcmpbeq.any llvm.hexagon.A4.vcmpbeqi llvm.hexagon.A4.vcmpbgt llvm.hexagon.A4.vcmpbgti llvm.hexagon.A4.vcmpbgtui llvm.hexagon.A4.vcmpheqi llvm.hexagon.A4.vcmphgti llvm.hexagon.A4.vcmphgtui llvm.hexagon.A4.vcmpweqi llvm.hexagon.A4.vcmpwgti llvm.hexagon.A4.vcmpwgtui llvm.hexagon.A4.vrmaxh llvm.hexagon.A4.vrmaxuh llvm.hexagon.A4.vrmaxuw llvm.hexagon.A4.vrmaxw llvm.hexagon.A4.vrminh llvm.hexagon.A4.vrminuh llvm.hexagon.A4.vrminuw llvm.hexagon.A4.vrminw llvm.hexagon.A5.vaddhubs llvm.hexagon.C2.all8 llvm.hexagon.C2.and llvm.hexagon.C2.andn llvm.hexagon.C2.any8 llvm.hexagon.C2.bitsclr llvm.hexagon.C2.bitsclri llvm.hexagon.C2.bitsset llvm.hexagon.C2.cmpeq llvm.hexagon.C2.cmpeqi llvm.hexagon.C2.cmpeqp llvm.hexagon.C2.cmpgei llvm.hexagon.C2.cmpgeui llvm.hexagon.C2.cmpgt llvm.hexagon.C2.cmpgti llvm.hexagon.C2.cmpgtp llvm.hexagon.C2.cmpgtu llvm.hexagon.C2.cmpgtui llvm.hexagon.C2.cmpgtup llvm.hexagon.C2.cmplt llvm.hexagon.C2.cmpltu llvm.hexagon.C2.mask llvm.hexagon.C2.mux llvm.hexagon.C2.muxii llvm.hexagon.C2.muxir llvm.hexagon.C2.muxri llvm.hexagon.C2.not llvm.hexagon.C2.or llvm.hexagon.C2.orn llvm.hexagon.C2.pxfer.map llvm.hexagon.C2.tfrpr llvm.hexagon.C2.tfrrp llvm.hexagon.C2.vitpack llvm.hexagon.C2.vmux llvm.hexagon.C2.xor llvm.hexagon.C4.and.and llvm.hexagon.C4.and.andn llvm.hexagon.C4.and.or llvm.hexagon.C4.and.orn llvm.hexagon.C4.cmplte llvm.hexagon.C4.cmpltei llvm.hexagon.C4.cmplteu llvm.hexagon.C4.cmplteui llvm.hexagon.C4.cmpneq llvm.hexagon.C4.cmpneqi llvm.hexagon.C4.fastcorner9 llvm.hexagon.C4.fastcorner9.not llvm.hexagon.C4.nbitsclr llvm.hexagon.C4.nbitsclri llvm.hexagon.C4.nbitsset llvm.hexagon.C4.or.and llvm.hexagon.C4.or.andn llvm.hexagon.C4.or.or llvm.hexagon.C4.or.orn llvm.hexagon.F2.conv.d2df llvm.hexagon.F2.conv.d2sf llvm.hexagon.F2.conv.df2d llvm.hexagon.F2.conv.df2d.chop llvm.hexagon.F2.conv.df2sf llvm.hexagon.F2.conv.df2ud llvm.hexagon.F2.conv.df2ud.chop llvm.hexagon.F2.conv.df2uw llvm.hexagon.F2.conv.df2uw.chop llvm.hexagon.F2.conv.df2w llvm.hexagon.F2.conv.df2w.chop llvm.hexagon.F2.conv.sf2d llvm.hexagon.F2.conv.sf2d.chop llvm.hexagon.F2.conv.sf2df llvm.hexagon.F2.conv.sf2ud llvm.hexagon.F2.conv.sf2ud.chop llvm.hexagon.F2.conv.sf2uw llvm.hexagon.F2.conv.sf2uw.chop llvm.hexagon.F2.conv.sf2w llvm.hexagon.F2.conv.sf2w.chop llvm.hexagon.F2.conv.ud2df llvm.hexagon.F2.conv.ud2sf llvm.hexagon.F2.conv.uw2df llvm.hexagon.F2.conv.uw2sf llvm.hexagon.F2.conv.w2df llvm.hexagon.F2.conv.w2sf llvm.hexagon.F2.dfclass llvm.hexagon.F2.dfcmpeq llvm.hexagon.F2.dfcmpge llvm.hexagon.F2.dfcmpgt llvm.hexagon.F2.dfcmpuo llvm.hexagon.F2.dfimm.n llvm.hexagon.F2.dfimm.p llvm.hexagon.F2.sfadd llvm.hexagon.F2.sfclass llvm.hexagon.F2.sfcmpeq llvm.hexagon.F2.sfcmpge llvm.hexagon.F2.sfcmpgt llvm.hexagon.F2.sfcmpuo llvm.hexagon.F2.sffixupd llvm.hexagon.F2.sffixupn llvm.hexagon.F2.sffixupr llvm.hexagon.F2.sffma llvm.hexagon.F2.sffma.lib llvm.hexagon.F2.sffma.sc llvm.hexagon.F2.sffms llvm.hexagon.F2.sffms.lib llvm.hexagon.F2.sfimm.n llvm.hexagon.F2.sfimm.p llvm.hexagon.F2.sfmax llvm.hexagon.F2.sfmin llvm.hexagon.F2.sfmpy llvm.hexagon.F2.sfsub llvm.hexagon.L2.loadw.locked llvm.hexagon.L4.loadd.locked llvm.hexagon.M2.acci llvm.hexagon.M2.accii llvm.hexagon.M2.cmaci.s0 llvm.hexagon.M2.cmacr.s0 llvm.hexagon.M2.cmacs.s0 llvm.hexagon.M2.cmacs.s1 llvm.hexagon.M2.cmacsc.s0 llvm.hexagon.M2.cmacsc.s1 llvm.hexagon.M2.cmpyi.s0 llvm.hexagon.M2.cmpyr.s0 llvm.hexagon.M2.cmpyrs.s0 llvm.hexagon.M2.cmpyrs.s1 llvm.hexagon.M2.cmpyrsc.s0 llvm.hexagon.M2.cmpyrsc.s1 llvm.hexagon.M2.cmpys.s0 llvm.hexagon.M2.cmpys.s1 llvm.hexagon.M2.cmpysc.s0 llvm.hexagon.M2.cmpysc.s1 llvm.hexagon.M2.cnacs.s0 llvm.hexagon.M2.cnacs.s1 llvm.hexagon.M2.cnacsc.s0 llvm.hexagon.M2.cnacsc.s1 llvm.hexagon.M2.dpmpyss.acc.s0 llvm.hexagon.M2.dpmpyss.nac.s0 llvm.hexagon.M2.dpmpyss.rnd.s0 llvm.hexagon.M2.dpmpyss.s0 llvm.hexagon.M2.dpmpyuu.acc.s0 llvm.hexagon.M2.dpmpyuu.nac.s0 llvm.hexagon.M2.dpmpyuu.s0 llvm.hexagon.M2.hmmpyh.rs1 llvm.hexagon.M2.hmmpyh.s1 llvm.hexagon.M2.hmmpyl.rs1 llvm.hexagon.M2.hmmpyl.s1 llvm.hexagon.M2.maci llvm.hexagon.M2.macsin llvm.hexagon.M2.macsip llvm.hexagon.M2.mmachs.rs0 llvm.hexagon.M2.mmachs.rs1 llvm.hexagon.M2.mmachs.s0 llvm.hexagon.M2.mmachs.s1 llvm.hexagon.M2.mmacls.rs0 llvm.hexagon.M2.mmacls.rs1 llvm.hexagon.M2.mmacls.s0 llvm.hexagon.M2.mmacls.s1 llvm.hexagon.M2.mmacuhs.rs0 llvm.hexagon.M2.mmacuhs.rs1 llvm.hexagon.M2.mmacuhs.s0 llvm.hexagon.M2.mmacuhs.s1 llvm.hexagon.M2.mmaculs.rs0 llvm.hexagon.M2.mmaculs.rs1 llvm.hexagon.M2.mmaculs.s0 llvm.hexagon.M2.mmaculs.s1 llvm.hexagon.M2.mmpyh.rs0 llvm.hexagon.M2.mmpyh.rs1 llvm.hexagon.M2.mmpyh.s0 llvm.hexagon.M2.mmpyh.s1 llvm.hexagon.M2.mmpyl.rs0 llvm.hexagon.M2.mmpyl.rs1 llvm.hexagon.M2.mmpyl.s0 llvm.hexagon.M2.mmpyl.s1 llvm.hexagon.M2.mmpyuh.rs0 llvm.hexagon.M2.mmpyuh.rs1 llvm.hexagon.M2.mmpyuh.s0 llvm.hexagon.M2.mmpyuh.s1 llvm.hexagon.M2.mmpyul.rs0 llvm.hexagon.M2.mmpyul.rs1 llvm.hexagon.M2.mmpyul.s0 llvm.hexagon.M2.mmpyul.s1 llvm.hexagon.M2.mpy.acc.hh.s0 llvm.hexagon.M2.mpy.acc.hh.s1 llvm.hexagon.M2.mpy.acc.hl.s0 llvm.hexagon.M2.mpy.acc.hl.s1 llvm.hexagon.M2.mpy.acc.lh.s0 llvm.hexagon.M2.mpy.acc.lh.s1 llvm.hexagon.M2.mpy.acc.ll.s0 llvm.hexagon.M2.mpy.acc.ll.s1 llvm.hexagon.M2.mpy.acc.sat.hh.s0 llvm.hexagon.M2.mpy.acc.sat.hh.s1 llvm.hexagon.M2.mpy.acc.sat.hl.s0 llvm.hexagon.M2.mpy.acc.sat.hl.s1 llvm.hexagon.M2.mpy.acc.sat.lh.s0 llvm.hexagon.M2.mpy.acc.sat.lh.s1 llvm.hexagon.M2.mpy.acc.sat.ll.s0 llvm.hexagon.M2.mpy.acc.sat.ll.s1 llvm.hexagon.M2.mpy.hh.s0 llvm.hexagon.M2.mpy.hh.s1 llvm.hexagon.M2.mpy.hl.s0 llvm.hexagon.M2.mpy.hl.s1 llvm.hexagon.M2.mpy.lh.s0 llvm.hexagon.M2.mpy.lh.s1 llvm.hexagon.M2.mpy.ll.s0 llvm.hexagon.M2.mpy.ll.s1 llvm.hexagon.M2.mpy.nac.hh.s0 llvm.hexagon.M2.mpy.nac.hh.s1 llvm.hexagon.M2.mpy.nac.hl.s0 llvm.hexagon.M2.mpy.nac.hl.s1 llvm.hexagon.M2.mpy.nac.lh.s0 llvm.hexagon.M2.mpy.nac.lh.s1 llvm.hexagon.M2.mpy.nac.ll.s0 llvm.hexagon.M2.mpy.nac.ll.s1 llvm.hexagon.M2.mpy.nac.sat.hh.s0 llvm.hexagon.M2.mpy.nac.sat.hh.s1 llvm.hexagon.M2.mpy.nac.sat.hl.s0 llvm.hexagon.M2.mpy.nac.sat.hl.s1 llvm.hexagon.M2.mpy.nac.sat.lh.s0 llvm.hexagon.M2.mpy.nac.sat.lh.s1 llvm.hexagon.M2.mpy.nac.sat.ll.s0 llvm.hexagon.M2.mpy.nac.sat.ll.s1 llvm.hexagon.M2.mpy.rnd.hh.s0 llvm.hexagon.M2.mpy.rnd.hh.s1 llvm.hexagon.M2.mpy.rnd.hl.s0 llvm.hexagon.M2.mpy.rnd.hl.s1 llvm.hexagon.M2.mpy.rnd.lh.s0 llvm.hexagon.M2.mpy.rnd.lh.s1 llvm.hexagon.M2.mpy.rnd.ll.s0 llvm.hexagon.M2.mpy.rnd.ll.s1 llvm.hexagon.M2.mpy.sat.hh.s0 llvm.hexagon.M2.mpy.sat.hh.s1 llvm.hexagon.M2.mpy.sat.hl.s0 llvm.hexagon.M2.mpy.sat.hl.s1 llvm.hexagon.M2.mpy.sat.lh.s0 llvm.hexagon.M2.mpy.sat.lh.s1 llvm.hexagon.M2.mpy.sat.ll.s0 llvm.hexagon.M2.mpy.sat.ll.s1 llvm.hexagon.M2.mpy.sat.rnd.hh.s0 llvm.hexagon.M2.mpy.sat.rnd.hh.s1 llvm.hexagon.M2.mpy.sat.rnd.hl.s0 llvm.hexagon.M2.mpy.sat.rnd.hl.s1 llvm.hexagon.M2.mpy.sat.rnd.lh.s0 llvm.hexagon.M2.mpy.sat.rnd.lh.s1 llvm.hexagon.M2.mpy.sat.rnd.ll.s0 llvm.hexagon.M2.mpy.sat.rnd.ll.s1 llvm.hexagon.M2.mpy.up llvm.hexagon.M2.mpy.up.s1 llvm.hexagon.M2.mpy.up.s1.sat llvm.hexagon.M2.mpyd.acc.hh.s0 llvm.hexagon.M2.mpyd.acc.hh.s1 llvm.hexagon.M2.mpyd.acc.hl.s0 llvm.hexagon.M2.mpyd.acc.hl.s1 llvm.hexagon.M2.mpyd.acc.lh.s0 llvm.hexagon.M2.mpyd.acc.lh.s1 llvm.hexagon.M2.mpyd.acc.ll.s0 llvm.hexagon.M2.mpyd.acc.ll.s1 llvm.hexagon.M2.mpyd.hh.s0 llvm.hexagon.M2.mpyd.hh.s1 llvm.hexagon.M2.mpyd.hl.s0 llvm.hexagon.M2.mpyd.hl.s1 llvm.hexagon.M2.mpyd.lh.s0 llvm.hexagon.M2.mpyd.lh.s1 llvm.hexagon.M2.mpyd.ll.s0 llvm.hexagon.M2.mpyd.ll.s1 llvm.hexagon.M2.mpyd.nac.hh.s0 llvm.hexagon.M2.mpyd.nac.hh.s1 llvm.hexagon.M2.mpyd.nac.hl.s0 llvm.hexagon.M2.mpyd.nac.hl.s1 llvm.hexagon.M2.mpyd.nac.lh.s0 llvm.hexagon.M2.mpyd.nac.lh.s1 llvm.hexagon.M2.mpyd.nac.ll.s0 llvm.hexagon.M2.mpyd.nac.ll.s1 llvm.hexagon.M2.mpyd.rnd.hh.s0 llvm.hexagon.M2.mpyd.rnd.hh.s1 llvm.hexagon.M2.mpyd.rnd.hl.s0 llvm.hexagon.M2.mpyd.rnd.hl.s1 llvm.hexagon.M2.mpyd.rnd.lh.s0 llvm.hexagon.M2.mpyd.rnd.lh.s1 llvm.hexagon.M2.mpyd.rnd.ll.s0 llvm.hexagon.M2.mpyd.rnd.ll.s1 llvm.hexagon.M2.mpyi llvm.hexagon.M2.mpysmi llvm.hexagon.M2.mpysu.up llvm.hexagon.M2.mpyu.acc.hh.s0 llvm.hexagon.M2.mpyu.acc.hh.s1 llvm.hexagon.M2.mpyu.acc.hl.s0 llvm.hexagon.M2.mpyu.acc.hl.s1 llvm.hexagon.M2.mpyu.acc.lh.s0 llvm.hexagon.M2.mpyu.acc.lh.s1 llvm.hexagon.M2.mpyu.acc.ll.s0 llvm.hexagon.M2.mpyu.acc.ll.s1 llvm.hexagon.M2.mpyu.hh.s0 llvm.hexagon.M2.mpyu.hh.s1 llvm.hexagon.M2.mpyu.hl.s0 llvm.hexagon.M2.mpyu.hl.s1 llvm.hexagon.M2.mpyu.lh.s0 llvm.hexagon.M2.mpyu.lh.s1 llvm.hexagon.M2.mpyu.ll.s0 llvm.hexagon.M2.mpyu.ll.s1 llvm.hexagon.M2.mpyu.nac.hh.s0 llvm.hexagon.M2.mpyu.nac.hh.s1 llvm.hexagon.M2.mpyu.nac.hl.s0 llvm.hexagon.M2.mpyu.nac.hl.s1 llvm.hexagon.M2.mpyu.nac.lh.s0 llvm.hexagon.M2.mpyu.nac.lh.s1 llvm.hexagon.M2.mpyu.nac.ll.s0 llvm.hexagon.M2.mpyu.nac.ll.s1 llvm.hexagon.M2.mpyu.up llvm.hexagon.M2.mpyud.acc.hh.s0 llvm.hexagon.M2.mpyud.acc.hh.s1 llvm.hexagon.M2.mpyud.acc.hl.s0 llvm.hexagon.M2.mpyud.acc.hl.s1 llvm.hexagon.M2.mpyud.acc.lh.s0 llvm.hexagon.M2.mpyud.acc.lh.s1 llvm.hexagon.M2.mpyud.acc.ll.s0 llvm.hexagon.M2.mpyud.acc.ll.s1 llvm.hexagon.M2.mpyud.hh.s0 llvm.hexagon.M2.mpyud.hh.s1 llvm.hexagon.M2.mpyud.hl.s0 llvm.hexagon.M2.mpyud.hl.s1 llvm.hexagon.M2.mpyud.lh.s0 llvm.hexagon.M2.mpyud.lh.s1 llvm.hexagon.M2.mpyud.ll.s0 llvm.hexagon.M2.mpyud.ll.s1 llvm.hexagon.M2.mpyud.nac.hh.s0 llvm.hexagon.M2.mpyud.nac.hh.s1 llvm.hexagon.M2.mpyud.nac.hl.s0 llvm.hexagon.M2.mpyud.nac.hl.s1 llvm.hexagon.M2.mpyud.nac.lh.s0 llvm.hexagon.M2.mpyud.nac.lh.s1 llvm.hexagon.M2.mpyud.nac.ll.s0 llvm.hexagon.M2.mpyud.nac.ll.s1 llvm.hexagon.M2.mpyui llvm.hexagon.M2.nacci llvm.hexagon.M2.naccii llvm.hexagon.M2.subacc llvm.hexagon.M2.vabsdiffh llvm.hexagon.M2.vabsdiffw llvm.hexagon.M2.vcmac.s0.sat.i llvm.hexagon.M2.vcmac.s0.sat.r llvm.hexagon.M2.vcmpy.s0.sat.i llvm.hexagon.M2.vcmpy.s0.sat.r llvm.hexagon.M2.vcmpy.s1.sat.i llvm.hexagon.M2.vcmpy.s1.sat.r llvm.hexagon.M2.vdmacs.s0 llvm.hexagon.M2.vdmacs.s1 llvm.hexagon.M2.vdmpyrs.s0 llvm.hexagon.M2.vdmpyrs.s1 llvm.hexagon.M2.vdmpys.s0 llvm.hexagon.M2.vdmpys.s1 llvm.hexagon.M2.vmac2 llvm.hexagon.M2.vmac2es llvm.hexagon.M2.vmac2es.s0 llvm.hexagon.M2.vmac2es.s1 llvm.hexagon.M2.vmac2s.s0 llvm.hexagon.M2.vmac2s.s1 llvm.hexagon.M2.vmac2su.s0 llvm.hexagon.M2.vmac2su.s1 llvm.hexagon.M2.vmpy2es.s0 llvm.hexagon.M2.vmpy2es.s1 llvm.hexagon.M2.vmpy2s.s0 llvm.hexagon.M2.vmpy2s.s0pack llvm.hexagon.M2.vmpy2s.s1 llvm.hexagon.M2.vmpy2s.s1pack llvm.hexagon.M2.vmpy2su.s0 llvm.hexagon.M2.vmpy2su.s1 llvm.hexagon.M2.vraddh llvm.hexagon.M2.vradduh llvm.hexagon.M2.vrcmaci.s0 llvm.hexagon.M2.vrcmaci.s0c llvm.hexagon.M2.vrcmacr.s0 llvm.hexagon.M2.vrcmacr.s0c llvm.hexagon.M2.vrcmpyi.s0 llvm.hexagon.M2.vrcmpyi.s0c llvm.hexagon.M2.vrcmpyr.s0 llvm.hexagon.M2.vrcmpyr.s0c llvm.hexagon.M2.vrcmpys.acc.s1 llvm.hexagon.M2.vrcmpys.s1 llvm.hexagon.M2.vrcmpys.s1rp llvm.hexagon.M2.vrmac.s0 llvm.hexagon.M2.vrmpy.s0 llvm.hexagon.M2.xor.xacc llvm.hexagon.M4.and.and llvm.hexagon.M4.and.andn llvm.hexagon.M4.and.or llvm.hexagon.M4.and.xor llvm.hexagon.M4.cmpyi.wh llvm.hexagon.M4.cmpyi.whc llvm.hexagon.M4.cmpyr.wh llvm.hexagon.M4.cmpyr.whc llvm.hexagon.M4.mac.up.s1.sat llvm.hexagon.M4.mpyri.addi llvm.hexagon.M4.mpyri.addr llvm.hexagon.M4.mpyri.addr.u2 llvm.hexagon.M4.mpyrr.addi llvm.hexagon.M4.mpyrr.addr llvm.hexagon.M4.nac.up.s1.sat llvm.hexagon.M4.or.and llvm.hexagon.M4.or.andn llvm.hexagon.M4.or.or llvm.hexagon.M4.or.xor llvm.hexagon.M4.pmpyw llvm.hexagon.M4.pmpyw.acc llvm.hexagon.M4.vpmpyh llvm.hexagon.M4.vpmpyh.acc llvm.hexagon.M4.vrmpyeh.acc.s0 llvm.hexagon.M4.vrmpyeh.acc.s1 llvm.hexagon.M4.vrmpyeh.s0 llvm.hexagon.M4.vrmpyeh.s1 llvm.hexagon.M4.vrmpyoh.acc.s0 llvm.hexagon.M4.vrmpyoh.acc.s1 llvm.hexagon.M4.vrmpyoh.s0 llvm.hexagon.M4.vrmpyoh.s1 llvm.hexagon.M4.xor.and llvm.hexagon.M4.xor.andn llvm.hexagon.M4.xor.or llvm.hexagon.M4.xor.xacc llvm.hexagon.M5.vdmacbsu llvm.hexagon.M5.vdmpybsu llvm.hexagon.M5.vmacbsu llvm.hexagon.M5.vmacbuu llvm.hexagon.M5.vmpybsu llvm.hexagon.M5.vmpybuu llvm.hexagon.M5.vrmacbsu llvm.hexagon.M5.vrmacbuu llvm.hexagon.M5.vrmpybsu llvm.hexagon.M5.vrmpybuu llvm.hexagon.M6.vabsdiffb llvm.hexagon.M6.vabsdiffub llvm.hexagon.S2.addasl.rrri llvm.hexagon.S2.asl.i.p llvm.hexagon.S2.asl.i.p.acc llvm.hexagon.S2.asl.i.p.and llvm.hexagon.S2.asl.i.p.nac llvm.hexagon.S2.asl.i.p.or llvm.hexagon.S2.asl.i.p.xacc llvm.hexagon.S2.asl.i.r llvm.hexagon.S2.asl.i.r.acc llvm.hexagon.S2.asl.i.r.and llvm.hexagon.S2.asl.i.r.nac llvm.hexagon.S2.asl.i.r.or llvm.hexagon.S2.asl.i.r.sat llvm.hexagon.S2.asl.i.r.xacc llvm.hexagon.S2.asl.i.vh llvm.hexagon.S2.asl.i.vw llvm.hexagon.S2.asl.r.p llvm.hexagon.S2.asl.r.p.acc llvm.hexagon.S2.asl.r.p.and llvm.hexagon.S2.asl.r.p.nac llvm.hexagon.S2.asl.r.p.or llvm.hexagon.S2.asl.r.p.xor llvm.hexagon.S2.asl.r.r llvm.hexagon.S2.asl.r.r.acc llvm.hexagon.S2.asl.r.r.and llvm.hexagon.S2.asl.r.r.nac llvm.hexagon.S2.asl.r.r.or llvm.hexagon.S2.asl.r.r.sat llvm.hexagon.S2.asl.r.vh llvm.hexagon.S2.asl.r.vw llvm.hexagon.S2.asr.i.p llvm.hexagon.S2.asr.i.p.acc llvm.hexagon.S2.asr.i.p.and llvm.hexagon.S2.asr.i.p.nac llvm.hexagon.S2.asr.i.p.or llvm.hexagon.S2.asr.i.p.rnd llvm.hexagon.S2.asr.i.p.rnd.goodsyntax llvm.hexagon.S2.asr.i.r llvm.hexagon.S2.asr.i.r.acc llvm.hexagon.S2.asr.i.r.and llvm.hexagon.S2.asr.i.r.nac llvm.hexagon.S2.asr.i.r.or llvm.hexagon.S2.asr.i.r.rnd llvm.hexagon.S2.asr.i.r.rnd.goodsyntax llvm.hexagon.S2.asr.i.svw.trun llvm.hexagon.S2.asr.i.vh llvm.hexagon.S2.asr.i.vw llvm.hexagon.S2.asr.r.p llvm.hexagon.S2.asr.r.p.acc llvm.hexagon.S2.asr.r.p.and llvm.hexagon.S2.asr.r.p.nac llvm.hexagon.S2.asr.r.p.or llvm.hexagon.S2.asr.r.p.xor llvm.hexagon.S2.asr.r.r llvm.hexagon.S2.asr.r.r.acc llvm.hexagon.S2.asr.r.r.and llvm.hexagon.S2.asr.r.r.nac llvm.hexagon.S2.asr.r.r.or llvm.hexagon.S2.asr.r.r.sat llvm.hexagon.S2.asr.r.svw.trun llvm.hexagon.S2.asr.r.vh llvm.hexagon.S2.asr.r.vw llvm.hexagon.S2.brev llvm.hexagon.S2.brevp llvm.hexagon.S2.cabacencbin llvm.hexagon.S2.cl0 llvm.hexagon.S2.cl0p llvm.hexagon.S2.cl1 llvm.hexagon.S2.cl1p llvm.hexagon.S2.clb llvm.hexagon.S2.clbnorm llvm.hexagon.S2.clbp llvm.hexagon.S2.clrbit.i llvm.hexagon.S2.clrbit.r llvm.hexagon.S2.ct0 llvm.hexagon.S2.ct0p llvm.hexagon.S2.ct1 llvm.hexagon.S2.ct1p llvm.hexagon.S2.deinterleave llvm.hexagon.S2.extractu llvm.hexagon.S2.extractu.rp llvm.hexagon.S2.extractup llvm.hexagon.S2.extractup.rp llvm.hexagon.S2.insert llvm.hexagon.S2.insert.rp llvm.hexagon.S2.insertp llvm.hexagon.S2.insertp.rp llvm.hexagon.S2.interleave llvm.hexagon.S2.lfsp llvm.hexagon.S2.lsl.r.p llvm.hexagon.S2.lsl.r.p.acc llvm.hexagon.S2.lsl.r.p.and llvm.hexagon.S2.lsl.r.p.nac llvm.hexagon.S2.lsl.r.p.or llvm.hexagon.S2.lsl.r.p.xor llvm.hexagon.S2.lsl.r.r llvm.hexagon.S2.lsl.r.r.acc llvm.hexagon.S2.lsl.r.r.and llvm.hexagon.S2.lsl.r.r.nac llvm.hexagon.S2.lsl.r.r.or llvm.hexagon.S2.lsl.r.vh llvm.hexagon.S2.lsl.r.vw llvm.hexagon.S2.lsr.i.p llvm.hexagon.S2.lsr.i.p.acc llvm.hexagon.S2.lsr.i.p.and llvm.hexagon.S2.lsr.i.p.nac llvm.hexagon.S2.lsr.i.p.or llvm.hexagon.S2.lsr.i.p.xacc llvm.hexagon.S2.lsr.i.r llvm.hexagon.S2.lsr.i.r.acc llvm.hexagon.S2.lsr.i.r.and llvm.hexagon.S2.lsr.i.r.nac llvm.hexagon.S2.lsr.i.r.or llvm.hexagon.S2.lsr.i.r.xacc llvm.hexagon.S2.lsr.i.vh llvm.hexagon.S2.lsr.i.vw llvm.hexagon.S2.lsr.r.p llvm.hexagon.S2.lsr.r.p.acc llvm.hexagon.S2.lsr.r.p.and llvm.hexagon.S2.lsr.r.p.nac llvm.hexagon.S2.lsr.r.p.or llvm.hexagon.S2.lsr.r.p.xor llvm.hexagon.S2.lsr.r.r llvm.hexagon.S2.lsr.r.r.acc llvm.hexagon.S2.lsr.r.r.and llvm.hexagon.S2.lsr.r.r.nac llvm.hexagon.S2.lsr.r.r.or llvm.hexagon.S2.lsr.r.vh llvm.hexagon.S2.lsr.r.vw llvm.hexagon.S2.packhl llvm.hexagon.S2.parityp llvm.hexagon.S2.setbit.i llvm.hexagon.S2.setbit.r llvm.hexagon.S2.shuffeb llvm.hexagon.S2.shuffeh llvm.hexagon.S2.shuffob llvm.hexagon.S2.shuffoh llvm.hexagon.S2.storew.locked llvm.hexagon.S2.svsathb llvm.hexagon.S2.svsathub llvm.hexagon.S2.tableidxb.goodsyntax llvm.hexagon.S2.tableidxd.goodsyntax llvm.hexagon.S2.tableidxh.goodsyntax llvm.hexagon.S2.tableidxw.goodsyntax llvm.hexagon.S2.togglebit.i llvm.hexagon.S2.togglebit.r llvm.hexagon.S2.tstbit.i llvm.hexagon.S2.tstbit.r llvm.hexagon.S2.valignib llvm.hexagon.S2.valignrb llvm.hexagon.S2.vcnegh llvm.hexagon.S2.vcrotate llvm.hexagon.S2.vrcnegh llvm.hexagon.S2.vrndpackwh llvm.hexagon.S2.vrndpackwhs llvm.hexagon.S2.vsathb llvm.hexagon.S2.vsathb.nopack llvm.hexagon.S2.vsathub llvm.hexagon.S2.vsathub.nopack llvm.hexagon.S2.vsatwh llvm.hexagon.S2.vsatwh.nopack llvm.hexagon.S2.vsatwuh llvm.hexagon.S2.vsatwuh.nopack llvm.hexagon.S2.vsplatrb llvm.hexagon.S2.vsplatrh llvm.hexagon.S2.vspliceib llvm.hexagon.S2.vsplicerb llvm.hexagon.S2.vsxtbh llvm.hexagon.S2.vsxthw llvm.hexagon.S2.vtrunehb llvm.hexagon.S2.vtrunewh llvm.hexagon.S2.vtrunohb llvm.hexagon.S2.vtrunowh llvm.hexagon.S2.vzxtbh llvm.hexagon.S2.vzxthw llvm.hexagon.S4.addaddi llvm.hexagon.S4.addi.asl.ri llvm.hexagon.S4.addi.lsr.ri llvm.hexagon.S4.andi.asl.ri llvm.hexagon.S4.andi.lsr.ri llvm.hexagon.S4.clbaddi llvm.hexagon.S4.clbpaddi llvm.hexagon.S4.clbpnorm llvm.hexagon.S4.extract llvm.hexagon.S4.extract.rp llvm.hexagon.S4.extractp llvm.hexagon.S4.extractp.rp llvm.hexagon.S4.lsli llvm.hexagon.S4.ntstbit.i llvm.hexagon.S4.ntstbit.r llvm.hexagon.S4.or.andi llvm.hexagon.S4.or.andix llvm.hexagon.S4.or.ori llvm.hexagon.S4.ori.asl.ri llvm.hexagon.S4.ori.lsr.ri llvm.hexagon.S4.parity llvm.hexagon.S4.stored.locked llvm.hexagon.S4.subaddi llvm.hexagon.S4.subi.asl.ri llvm.hexagon.S4.subi.lsr.ri llvm.hexagon.S4.vrcrotate llvm.hexagon.S4.vrcrotate.acc llvm.hexagon.S4.vxaddsubh llvm.hexagon.S4.vxaddsubhr llvm.hexagon.S4.vxaddsubw llvm.hexagon.S4.vxsubaddh llvm.hexagon.S4.vxsubaddhr llvm.hexagon.S4.vxsubaddw llvm.hexagon.S5.asrhub.rnd.sat.goodsyntax llvm.hexagon.S5.asrhub.sat llvm.hexagon.S5.popcountp llvm.hexagon.S5.vasrhrnd.goodsyntax llvm.hexagon.S6.rol.i.p llvm.hexagon.S6.rol.i.p.acc llvm.hexagon.S6.rol.i.p.and llvm.hexagon.S6.rol.i.p.nac llvm.hexagon.S6.rol.i.p.or llvm.hexagon.S6.rol.i.p.xacc llvm.hexagon.S6.rol.i.r llvm.hexagon.S6.rol.i.r.acc llvm.hexagon.S6.rol.i.r.and llvm.hexagon.S6.rol.i.r.nac llvm.hexagon.S6.rol.i.r.or llvm.hexagon.S6.rol.i.r.xacc llvm.hexagon.S6.vsplatrbp llvm.hexagon.S6.vtrunehb.ppp llvm.hexagon.S6.vtrunohb.ppp llvm.hexagon.SI.to.SXTHI.asrh llvm.hexagon.V6.extractw llvm.hexagon.V6.extractw.128B llvm.hexagon.V6.hi llvm.hexagon.V6.hi.128B llvm.hexagon.V6.lo llvm.hexagon.V6.lo.128B llvm.hexagon.V6.lvsplatw llvm.hexagon.V6.lvsplatw.128B llvm.hexagon.V6.pred.and llvm.hexagon.V6.pred.and.128B llvm.hexagon.V6.pred.and.n llvm.hexagon.V6.pred.and.n.128B llvm.hexagon.V6.pred.not llvm.hexagon.V6.pred.not.128B llvm.hexagon.V6.pred.or llvm.hexagon.V6.pred.or.128B llvm.hexagon.V6.pred.or.n llvm.hexagon.V6.pred.or.n.128B llvm.hexagon.V6.pred.scalar2 llvm.hexagon.V6.pred.scalar2.128B llvm.hexagon.V6.pred.xor llvm.hexagon.V6.pred.xor.128B llvm.hexagon.V6.vabsdiffh llvm.hexagon.V6.vabsdiffh.128B llvm.hexagon.V6.vabsdiffub llvm.hexagon.V6.vabsdiffub.128B llvm.hexagon.V6.vabsdiffuh llvm.hexagon.V6.vabsdiffuh.128B llvm.hexagon.V6.vabsdiffw llvm.hexagon.V6.vabsdiffw.128B llvm.hexagon.V6.vabsh llvm.hexagon.V6.vabsh.128B llvm.hexagon.V6.vabsh.sat llvm.hexagon.V6.vabsh.sat.128B llvm.hexagon.V6.vabsw llvm.hexagon.V6.vabsw.128B llvm.hexagon.V6.vabsw.sat llvm.hexagon.V6.vabsw.sat.128B llvm.hexagon.V6.vaddb llvm.hexagon.V6.vaddb.128B llvm.hexagon.V6.vaddb.dv llvm.hexagon.V6.vaddb.dv.128B llvm.hexagon.V6.vaddbnq llvm.hexagon.V6.vaddbnq.128B llvm.hexagon.V6.vaddbq llvm.hexagon.V6.vaddbq.128B llvm.hexagon.V6.vaddh llvm.hexagon.V6.vaddh.128B llvm.hexagon.V6.vaddh.dv llvm.hexagon.V6.vaddh.dv.128B llvm.hexagon.V6.vaddhnq llvm.hexagon.V6.vaddhnq.128B llvm.hexagon.V6.vaddhq llvm.hexagon.V6.vaddhq.128B llvm.hexagon.V6.vaddhsat llvm.hexagon.V6.vaddhsat.128B llvm.hexagon.V6.vaddhsat.dv llvm.hexagon.V6.vaddhsat.dv.128B llvm.hexagon.V6.vaddhw llvm.hexagon.V6.vaddhw.128B llvm.hexagon.V6.vaddubh llvm.hexagon.V6.vaddubh.128B llvm.hexagon.V6.vaddubsat llvm.hexagon.V6.vaddubsat.128B llvm.hexagon.V6.vaddubsat.dv llvm.hexagon.V6.vaddubsat.dv.128B llvm.hexagon.V6.vadduhsat llvm.hexagon.V6.vadduhsat.128B llvm.hexagon.V6.vadduhsat.dv llvm.hexagon.V6.vadduhsat.dv.128B llvm.hexagon.V6.vadduhw llvm.hexagon.V6.vadduhw.128B llvm.hexagon.V6.vaddw llvm.hexagon.V6.vaddw.128B llvm.hexagon.V6.vaddw.dv llvm.hexagon.V6.vaddw.dv.128B llvm.hexagon.V6.vaddwnq llvm.hexagon.V6.vaddwnq.128B llvm.hexagon.V6.vaddwq llvm.hexagon.V6.vaddwq.128B llvm.hexagon.V6.vaddwsat llvm.hexagon.V6.vaddwsat.128B llvm.hexagon.V6.vaddwsat.dv llvm.hexagon.V6.vaddwsat.dv.128B llvm.hexagon.V6.valignb llvm.hexagon.V6.valignb.128B llvm.hexagon.V6.valignbi llvm.hexagon.V6.valignbi.128B llvm.hexagon.V6.vand llvm.hexagon.V6.vand.128B llvm.hexagon.V6.vandqrt llvm.hexagon.V6.vandqrt.128B llvm.hexagon.V6.vandqrt.acc llvm.hexagon.V6.vandqrt.acc.128B llvm.hexagon.V6.vandvrt llvm.hexagon.V6.vandvrt.128B llvm.hexagon.V6.vandvrt.acc llvm.hexagon.V6.vandvrt.acc.128B llvm.hexagon.V6.vaslh llvm.hexagon.V6.vaslh.128B llvm.hexagon.V6.vaslhv llvm.hexagon.V6.vaslhv.128B llvm.hexagon.V6.vaslw llvm.hexagon.V6.vaslw.128B llvm.hexagon.V6.vaslw.acc llvm.hexagon.V6.vaslw.acc.128B llvm.hexagon.V6.vaslwv llvm.hexagon.V6.vaslwv.128B llvm.hexagon.V6.vasrh llvm.hexagon.V6.vasrh.128B llvm.hexagon.V6.vasrhbrndsat llvm.hexagon.V6.vasrhbrndsat.128B llvm.hexagon.V6.vasrhubrndsat llvm.hexagon.V6.vasrhubrndsat.128B llvm.hexagon.V6.vasrhubsat llvm.hexagon.V6.vasrhubsat.128B llvm.hexagon.V6.vasrhv llvm.hexagon.V6.vasrhv.128B llvm.hexagon.V6.vasrw llvm.hexagon.V6.vasrw.128B llvm.hexagon.V6.vasrw.acc llvm.hexagon.V6.vasrw.acc.128B llvm.hexagon.V6.vasrwh llvm.hexagon.V6.vasrwh.128B llvm.hexagon.V6.vasrwhrndsat llvm.hexagon.V6.vasrwhrndsat.128B llvm.hexagon.V6.vasrwhsat llvm.hexagon.V6.vasrwhsat.128B llvm.hexagon.V6.vasrwuhsat llvm.hexagon.V6.vasrwuhsat.128B llvm.hexagon.V6.vasrwv llvm.hexagon.V6.vasrwv.128B llvm.hexagon.V6.vassign llvm.hexagon.V6.vassign.128B llvm.hexagon.V6.vassignp llvm.hexagon.V6.vassignp.128B llvm.hexagon.V6.vavgh llvm.hexagon.V6.vavgh.128B llvm.hexagon.V6.vavghrnd llvm.hexagon.V6.vavghrnd.128B llvm.hexagon.V6.vavgub llvm.hexagon.V6.vavgub.128B llvm.hexagon.V6.vavgubrnd llvm.hexagon.V6.vavgubrnd.128B llvm.hexagon.V6.vavguh llvm.hexagon.V6.vavguh.128B llvm.hexagon.V6.vavguhrnd llvm.hexagon.V6.vavguhrnd.128B llvm.hexagon.V6.vavgw llvm.hexagon.V6.vavgw.128B llvm.hexagon.V6.vavgwrnd llvm.hexagon.V6.vavgwrnd.128B llvm.hexagon.V6.vcl0h llvm.hexagon.V6.vcl0h.128B llvm.hexagon.V6.vcl0w llvm.hexagon.V6.vcl0w.128B llvm.hexagon.V6.vcombine llvm.hexagon.V6.vcombine.128B llvm.hexagon.V6.vd0 llvm.hexagon.V6.vd0.128B llvm.hexagon.V6.vdealb llvm.hexagon.V6.vdealb.128B llvm.hexagon.V6.vdealb4w llvm.hexagon.V6.vdealb4w.128B llvm.hexagon.V6.vdealh llvm.hexagon.V6.vdealh.128B llvm.hexagon.V6.vdealvdd llvm.hexagon.V6.vdealvdd.128B llvm.hexagon.V6.vdelta llvm.hexagon.V6.vdelta.128B llvm.hexagon.V6.vdmpybus llvm.hexagon.V6.vdmpybus.128B llvm.hexagon.V6.vdmpybus.acc llvm.hexagon.V6.vdmpybus.acc.128B llvm.hexagon.V6.vdmpybus.dv llvm.hexagon.V6.vdmpybus.dv.128B llvm.hexagon.V6.vdmpybus.dv.acc llvm.hexagon.V6.vdmpybus.dv.acc.128B llvm.hexagon.V6.vdmpyhb llvm.hexagon.V6.vdmpyhb.128B llvm.hexagon.V6.vdmpyhb.acc llvm.hexagon.V6.vdmpyhb.acc.128B llvm.hexagon.V6.vdmpyhb.dv llvm.hexagon.V6.vdmpyhb.dv.128B llvm.hexagon.V6.vdmpyhb.dv.acc llvm.hexagon.V6.vdmpyhb.dv.acc.128B llvm.hexagon.V6.vdmpyhisat llvm.hexagon.V6.vdmpyhisat.128B llvm.hexagon.V6.vdmpyhisat.acc llvm.hexagon.V6.vdmpyhisat.acc.128B llvm.hexagon.V6.vdmpyhsat llvm.hexagon.V6.vdmpyhsat.128B llvm.hexagon.V6.vdmpyhsat.acc llvm.hexagon.V6.vdmpyhsat.acc.128B llvm.hexagon.V6.vdmpyhsuisat llvm.hexagon.V6.vdmpyhsuisat.128B llvm.hexagon.V6.vdmpyhsuisat.acc llvm.hexagon.V6.vdmpyhsuisat.acc.128B llvm.hexagon.V6.vdmpyhsusat llvm.hexagon.V6.vdmpyhsusat.128B llvm.hexagon.V6.vdmpyhsusat.acc llvm.hexagon.V6.vdmpyhsusat.acc.128B llvm.hexagon.V6.vdmpyhvsat llvm.hexagon.V6.vdmpyhvsat.128B llvm.hexagon.V6.vdmpyhvsat.acc llvm.hexagon.V6.vdmpyhvsat.acc.128B llvm.hexagon.V6.vdsaduh llvm.hexagon.V6.vdsaduh.128B llvm.hexagon.V6.vdsaduh.acc llvm.hexagon.V6.vdsaduh.acc.128B llvm.hexagon.V6.veqb llvm.hexagon.V6.veqb.128B llvm.hexagon.V6.veqb.and llvm.hexagon.V6.veqb.and.128B llvm.hexagon.V6.veqb.or llvm.hexagon.V6.veqb.or.128B llvm.hexagon.V6.veqb.xor llvm.hexagon.V6.veqb.xor.128B llvm.hexagon.V6.veqh llvm.hexagon.V6.veqh.128B llvm.hexagon.V6.veqh.and llvm.hexagon.V6.veqh.and.128B llvm.hexagon.V6.veqh.or llvm.hexagon.V6.veqh.or.128B llvm.hexagon.V6.veqh.xor llvm.hexagon.V6.veqh.xor.128B llvm.hexagon.V6.veqw llvm.hexagon.V6.veqw.128B llvm.hexagon.V6.veqw.and llvm.hexagon.V6.veqw.and.128B llvm.hexagon.V6.veqw.or llvm.hexagon.V6.veqw.or.128B llvm.hexagon.V6.veqw.xor llvm.hexagon.V6.veqw.xor.128B llvm.hexagon.V6.vgtb llvm.hexagon.V6.vgtb.128B llvm.hexagon.V6.vgtb.and llvm.hexagon.V6.vgtb.and.128B llvm.hexagon.V6.vgtb.or llvm.hexagon.V6.vgtb.or.128B llvm.hexagon.V6.vgtb.xor llvm.hexagon.V6.vgtb.xor.128B llvm.hexagon.V6.vgth llvm.hexagon.V6.vgth.128B llvm.hexagon.V6.vgth.and llvm.hexagon.V6.vgth.and.128B llvm.hexagon.V6.vgth.or llvm.hexagon.V6.vgth.or.128B llvm.hexagon.V6.vgth.xor llvm.hexagon.V6.vgth.xor.128B llvm.hexagon.V6.vgtub llvm.hexagon.V6.vgtub.128B llvm.hexagon.V6.vgtub.and llvm.hexagon.V6.vgtub.and.128B llvm.hexagon.V6.vgtub.or llvm.hexagon.V6.vgtub.or.128B llvm.hexagon.V6.vgtub.xor llvm.hexagon.V6.vgtub.xor.128B llvm.hexagon.V6.vgtuh llvm.hexagon.V6.vgtuh.128B llvm.hexagon.V6.vgtuh.and llvm.hexagon.V6.vgtuh.and.128B llvm.hexagon.V6.vgtuh.or llvm.hexagon.V6.vgtuh.or.128B llvm.hexagon.V6.vgtuh.xor llvm.hexagon.V6.vgtuh.xor.128B llvm.hexagon.V6.vgtuw llvm.hexagon.V6.vgtuw.128B llvm.hexagon.V6.vgtuw.and llvm.hexagon.V6.vgtuw.and.128B llvm.hexagon.V6.vgtuw.or llvm.hexagon.V6.vgtuw.or.128B llvm.hexagon.V6.vgtuw.xor llvm.hexagon.V6.vgtuw.xor.128B llvm.hexagon.V6.vgtw llvm.hexagon.V6.vgtw.128B llvm.hexagon.V6.vgtw.and llvm.hexagon.V6.vgtw.and.128B llvm.hexagon.V6.vgtw.or llvm.hexagon.V6.vgtw.or.128B llvm.hexagon.V6.vgtw.xor llvm.hexagon.V6.vgtw.xor.128B llvm.hexagon.V6.vinsertwr llvm.hexagon.V6.vinsertwr.128B llvm.hexagon.V6.vlalignb llvm.hexagon.V6.vlalignb.128B llvm.hexagon.V6.vlalignbi llvm.hexagon.V6.vlalignbi.128B llvm.hexagon.V6.vlsrh llvm.hexagon.V6.vlsrh.128B llvm.hexagon.V6.vlsrhv llvm.hexagon.V6.vlsrhv.128B llvm.hexagon.V6.vlsrw llvm.hexagon.V6.vlsrw.128B llvm.hexagon.V6.vlsrwv llvm.hexagon.V6.vlsrwv.128B llvm.hexagon.V6.vlutb llvm.hexagon.V6.vlutb.128B llvm.hexagon.V6.vlutb.acc llvm.hexagon.V6.vlutb.acc.128B llvm.hexagon.V6.vlutb.dv llvm.hexagon.V6.vlutb.dv.128B llvm.hexagon.V6.vlutb.dv.acc llvm.hexagon.V6.vlutb.dv.acc.128B llvm.hexagon.V6.vlutvvb llvm.hexagon.V6.vlutvvb.128B llvm.hexagon.V6.vlutvvb.oracc llvm.hexagon.V6.vlutvvb.oracc.128B llvm.hexagon.V6.vlutvwh llvm.hexagon.V6.vlutvwh.128B llvm.hexagon.V6.vlutvwh.oracc llvm.hexagon.V6.vlutvwh.oracc.128B llvm.hexagon.V6.vmaxh llvm.hexagon.V6.vmaxh.128B llvm.hexagon.V6.vmaxub llvm.hexagon.V6.vmaxub.128B llvm.hexagon.V6.vmaxuh llvm.hexagon.V6.vmaxuh.128B llvm.hexagon.V6.vmaxw llvm.hexagon.V6.vmaxw.128B llvm.hexagon.V6.vminh llvm.hexagon.V6.vminh.128B llvm.hexagon.V6.vminub llvm.hexagon.V6.vminub.128B llvm.hexagon.V6.vminuh llvm.hexagon.V6.vminuh.128B llvm.hexagon.V6.vminw llvm.hexagon.V6.vminw.128B llvm.hexagon.V6.vmpabus llvm.hexagon.V6.vmpabus.128B llvm.hexagon.V6.vmpabus.acc llvm.hexagon.V6.vmpabus.acc.128B llvm.hexagon.V6.vmpabusv llvm.hexagon.V6.vmpabusv.128B llvm.hexagon.V6.vmpabuuv llvm.hexagon.V6.vmpabuuv.128B llvm.hexagon.V6.vmpahb llvm.hexagon.V6.vmpahb.128B llvm.hexagon.V6.vmpahb.acc llvm.hexagon.V6.vmpahb.acc.128B llvm.hexagon.V6.vmpybus llvm.hexagon.V6.vmpybus.128B llvm.hexagon.V6.vmpybus.acc llvm.hexagon.V6.vmpybus.acc.128B llvm.hexagon.V6.vmpybusv llvm.hexagon.V6.vmpybusv.128B llvm.hexagon.V6.vmpybusv.acc llvm.hexagon.V6.vmpybusv.acc.128B llvm.hexagon.V6.vmpybv llvm.hexagon.V6.vmpybv.128B llvm.hexagon.V6.vmpybv.acc llvm.hexagon.V6.vmpybv.acc.128B llvm.hexagon.V6.vmpyewuh llvm.hexagon.V6.vmpyewuh.128B llvm.hexagon.V6.vmpyh llvm.hexagon.V6.vmpyh.128B llvm.hexagon.V6.vmpyhsat.acc llvm.hexagon.V6.vmpyhsat.acc.128B llvm.hexagon.V6.vmpyhsrs llvm.hexagon.V6.vmpyhsrs.128B llvm.hexagon.V6.vmpyhss llvm.hexagon.V6.vmpyhss.128B llvm.hexagon.V6.vmpyhus llvm.hexagon.V6.vmpyhus.128B llvm.hexagon.V6.vmpyhus.acc llvm.hexagon.V6.vmpyhus.acc.128B llvm.hexagon.V6.vmpyhv llvm.hexagon.V6.vmpyhv.128B llvm.hexagon.V6.vmpyhv.acc llvm.hexagon.V6.vmpyhv.acc.128B llvm.hexagon.V6.vmpyhvsrs llvm.hexagon.V6.vmpyhvsrs.128B llvm.hexagon.V6.vmpyieoh llvm.hexagon.V6.vmpyieoh.128B llvm.hexagon.V6.vmpyiewh.acc llvm.hexagon.V6.vmpyiewh.acc.128B llvm.hexagon.V6.vmpyiewuh llvm.hexagon.V6.vmpyiewuh.128B llvm.hexagon.V6.vmpyiewuh.acc llvm.hexagon.V6.vmpyiewuh.acc.128B llvm.hexagon.V6.vmpyih llvm.hexagon.V6.vmpyih.128B llvm.hexagon.V6.vmpyih.acc llvm.hexagon.V6.vmpyih.acc.128B llvm.hexagon.V6.vmpyihb llvm.hexagon.V6.vmpyihb.128B llvm.hexagon.V6.vmpyihb.acc llvm.hexagon.V6.vmpyihb.acc.128B llvm.hexagon.V6.vmpyiowh llvm.hexagon.V6.vmpyiowh.128B llvm.hexagon.V6.vmpyiwb llvm.hexagon.V6.vmpyiwb.128B llvm.hexagon.V6.vmpyiwb.acc llvm.hexagon.V6.vmpyiwb.acc.128B llvm.hexagon.V6.vmpyiwh llvm.hexagon.V6.vmpyiwh.128B llvm.hexagon.V6.vmpyiwh.acc llvm.hexagon.V6.vmpyiwh.acc.128B llvm.hexagon.V6.vmpyowh llvm.hexagon.V6.vmpyowh.128B llvm.hexagon.V6.vmpyowh.rnd llvm.hexagon.V6.vmpyowh.rnd.128B llvm.hexagon.V6.vmpyowh.rnd.sacc llvm.hexagon.V6.vmpyowh.rnd.sacc.128B llvm.hexagon.V6.vmpyowh.sacc llvm.hexagon.V6.vmpyowh.sacc.128B llvm.hexagon.V6.vmpyub llvm.hexagon.V6.vmpyub.128B llvm.hexagon.V6.vmpyub.acc llvm.hexagon.V6.vmpyub.acc.128B llvm.hexagon.V6.vmpyubv llvm.hexagon.V6.vmpyubv.128B llvm.hexagon.V6.vmpyubv.acc llvm.hexagon.V6.vmpyubv.acc.128B llvm.hexagon.V6.vmpyuh llvm.hexagon.V6.vmpyuh.128B llvm.hexagon.V6.vmpyuh.acc llvm.hexagon.V6.vmpyuh.acc.128B llvm.hexagon.V6.vmpyuhv llvm.hexagon.V6.vmpyuhv.128B llvm.hexagon.V6.vmpyuhv.acc llvm.hexagon.V6.vmpyuhv.acc.128B llvm.hexagon.V6.vmux llvm.hexagon.V6.vmux.128B llvm.hexagon.V6.vnavgh llvm.hexagon.V6.vnavgh.128B llvm.hexagon.V6.vnavgub llvm.hexagon.V6.vnavgub.128B llvm.hexagon.V6.vnavgw llvm.hexagon.V6.vnavgw.128B llvm.hexagon.V6.vnormamth llvm.hexagon.V6.vnormamth.128B llvm.hexagon.V6.vnormamtw llvm.hexagon.V6.vnormamtw.128B llvm.hexagon.V6.vnot llvm.hexagon.V6.vnot.128B llvm.hexagon.V6.vor llvm.hexagon.V6.vor.128B llvm.hexagon.V6.vpackeb llvm.hexagon.V6.vpackeb.128B llvm.hexagon.V6.vpackeh llvm.hexagon.V6.vpackeh.128B llvm.hexagon.V6.vpackhb.sat llvm.hexagon.V6.vpackhb.sat.128B llvm.hexagon.V6.vpackhub.sat llvm.hexagon.V6.vpackhub.sat.128B llvm.hexagon.V6.vpackob llvm.hexagon.V6.vpackob.128B llvm.hexagon.V6.vpackoh llvm.hexagon.V6.vpackoh.128B llvm.hexagon.V6.vpackwh.sat llvm.hexagon.V6.vpackwh.sat.128B llvm.hexagon.V6.vpackwuh.sat llvm.hexagon.V6.vpackwuh.sat.128B llvm.hexagon.V6.vpopcounth llvm.hexagon.V6.vpopcounth.128B llvm.hexagon.V6.vrdelta llvm.hexagon.V6.vrdelta.128B llvm.hexagon.V6.vrmpybus llvm.hexagon.V6.vrmpybus.128B llvm.hexagon.V6.vrmpybus.acc llvm.hexagon.V6.vrmpybus.acc.128B llvm.hexagon.V6.vrmpybusi llvm.hexagon.V6.vrmpybusi.128B llvm.hexagon.V6.vrmpybusi.acc llvm.hexagon.V6.vrmpybusi.acc.128B llvm.hexagon.V6.vrmpybusv llvm.hexagon.V6.vrmpybusv.128B llvm.hexagon.V6.vrmpybusv.acc llvm.hexagon.V6.vrmpybusv.acc.128B llvm.hexagon.V6.vrmpybv llvm.hexagon.V6.vrmpybv.128B llvm.hexagon.V6.vrmpybv.acc llvm.hexagon.V6.vrmpybv.acc.128B llvm.hexagon.V6.vrmpyub llvm.hexagon.V6.vrmpyub.128B llvm.hexagon.V6.vrmpyub.acc llvm.hexagon.V6.vrmpyub.acc.128B llvm.hexagon.V6.vrmpyubi llvm.hexagon.V6.vrmpyubi.128B llvm.hexagon.V6.vrmpyubi.acc llvm.hexagon.V6.vrmpyubi.acc.128B llvm.hexagon.V6.vrmpyubv llvm.hexagon.V6.vrmpyubv.128B llvm.hexagon.V6.vrmpyubv.acc llvm.hexagon.V6.vrmpyubv.acc.128B llvm.hexagon.V6.vror llvm.hexagon.V6.vror.128B llvm.hexagon.V6.vroundhb llvm.hexagon.V6.vroundhb.128B llvm.hexagon.V6.vroundhub llvm.hexagon.V6.vroundhub.128B llvm.hexagon.V6.vroundwh llvm.hexagon.V6.vroundwh.128B llvm.hexagon.V6.vroundwuh llvm.hexagon.V6.vroundwuh.128B llvm.hexagon.V6.vrsadubi llvm.hexagon.V6.vrsadubi.128B llvm.hexagon.V6.vrsadubi.acc llvm.hexagon.V6.vrsadubi.acc.128B llvm.hexagon.V6.vsathub llvm.hexagon.V6.vsathub.128B llvm.hexagon.V6.vsatwh llvm.hexagon.V6.vsatwh.128B llvm.hexagon.V6.vsb llvm.hexagon.V6.vsb.128B llvm.hexagon.V6.vsh llvm.hexagon.V6.vsh.128B llvm.hexagon.V6.vshufeh llvm.hexagon.V6.vshufeh.128B llvm.hexagon.V6.vshuffb llvm.hexagon.V6.vshuffb.128B llvm.hexagon.V6.vshuffeb llvm.hexagon.V6.vshuffeb.128B llvm.hexagon.V6.vshuffh llvm.hexagon.V6.vshuffh.128B llvm.hexagon.V6.vshuffob llvm.hexagon.V6.vshuffob.128B llvm.hexagon.V6.vshuffvdd llvm.hexagon.V6.vshuffvdd.128B llvm.hexagon.V6.vshufoeb llvm.hexagon.V6.vshufoeb.128B llvm.hexagon.V6.vshufoeh llvm.hexagon.V6.vshufoeh.128B llvm.hexagon.V6.vshufoh llvm.hexagon.V6.vshufoh.128B llvm.hexagon.V6.vsubb llvm.hexagon.V6.vsubb.128B llvm.hexagon.V6.vsubb.dv llvm.hexagon.V6.vsubb.dv.128B llvm.hexagon.V6.vsubbnq llvm.hexagon.V6.vsubbnq.128B llvm.hexagon.V6.vsubbq llvm.hexagon.V6.vsubbq.128B llvm.hexagon.V6.vsubh llvm.hexagon.V6.vsubh.128B llvm.hexagon.V6.vsubh.dv llvm.hexagon.V6.vsubh.dv.128B llvm.hexagon.V6.vsubhnq llvm.hexagon.V6.vsubhnq.128B llvm.hexagon.V6.vsubhq llvm.hexagon.V6.vsubhq.128B llvm.hexagon.V6.vsubhsat llvm.hexagon.V6.vsubhsat.128B llvm.hexagon.V6.vsubhsat.dv llvm.hexagon.V6.vsubhsat.dv.128B llvm.hexagon.V6.vsubhw llvm.hexagon.V6.vsubhw.128B llvm.hexagon.V6.vsububh llvm.hexagon.V6.vsububh.128B llvm.hexagon.V6.vsububsat llvm.hexagon.V6.vsububsat.128B llvm.hexagon.V6.vsububsat.dv llvm.hexagon.V6.vsububsat.dv.128B llvm.hexagon.V6.vsubuhsat llvm.hexagon.V6.vsubuhsat.128B llvm.hexagon.V6.vsubuhsat.dv llvm.hexagon.V6.vsubuhsat.dv.128B llvm.hexagon.V6.vsubuhw llvm.hexagon.V6.vsubuhw.128B llvm.hexagon.V6.vsubw llvm.hexagon.V6.vsubw.128B llvm.hexagon.V6.vsubw.dv llvm.hexagon.V6.vsubw.dv.128B llvm.hexagon.V6.vsubwnq llvm.hexagon.V6.vsubwnq.128B llvm.hexagon.V6.vsubwq llvm.hexagon.V6.vsubwq.128B llvm.hexagon.V6.vsubwsat llvm.hexagon.V6.vsubwsat.128B llvm.hexagon.V6.vsubwsat.dv llvm.hexagon.V6.vsubwsat.dv.128B llvm.hexagon.V6.vswap llvm.hexagon.V6.vswap.128B llvm.hexagon.V6.vtmpyb llvm.hexagon.V6.vtmpyb.128B llvm.hexagon.V6.vtmpyb.acc llvm.hexagon.V6.vtmpyb.acc.128B llvm.hexagon.V6.vtmpybus llvm.hexagon.V6.vtmpybus.128B llvm.hexagon.V6.vtmpybus.acc llvm.hexagon.V6.vtmpybus.acc.128B llvm.hexagon.V6.vtmpyhb llvm.hexagon.V6.vtmpyhb.128B llvm.hexagon.V6.vtmpyhb.acc llvm.hexagon.V6.vtmpyhb.acc.128B llvm.hexagon.V6.vunpackb llvm.hexagon.V6.vunpackb.128B llvm.hexagon.V6.vunpackh llvm.hexagon.V6.vunpackh.128B llvm.hexagon.V6.vunpackob llvm.hexagon.V6.vunpackob.128B llvm.hexagon.V6.vunpackoh llvm.hexagon.V6.vunpackoh.128B llvm.hexagon.V6.vunpackub llvm.hexagon.V6.vunpackub.128B llvm.hexagon.V6.vunpackuh llvm.hexagon.V6.vunpackuh.128B llvm.hexagon.V6.vxor llvm.hexagon.V6.vxor.128B llvm.hexagon.V6.vzb llvm.hexagon.V6.vzb.128B llvm.hexagon.V6.vzh llvm.hexagon.V6.vzh.128B llvm.hexagon.brev.ldb llvm.hexagon.brev.ldd llvm.hexagon.brev.ldh llvm.hexagon.brev.ldub llvm.hexagon.brev.lduh llvm.hexagon.brev.ldw llvm.hexagon.brev.stb llvm.hexagon.brev.std llvm.hexagon.brev.sth llvm.hexagon.brev.sthhi llvm.hexagon.brev.stw llvm.hexagon.circ.ldb llvm.hexagon.circ.ldd llvm.hexagon.circ.ldh llvm.hexagon.circ.ldub llvm.hexagon.circ.lduh llvm.hexagon.circ.ldw llvm.hexagon.circ.stb llvm.hexagon.circ.std llvm.hexagon.circ.sth llvm.hexagon.circ.sthhi llvm.hexagon.circ.stw llvm.hexagon.mm256i.vaddw llvm.hexagon.prefetch llvm.init.trampoline llvm.instrprof.increment llvm.instrprof.value.profile llvm.invariant.end llvm.invariant.group.barrier llvm.invariant.start llvm.lifetime.end llvm.lifetime.start llvm.load.relative llvm.localaddress llvm.localescape llvm.localrecover llvm.log llvm.log10 llvm.log2 llvm.longjmp llvm.masked.gather llvm.masked.load llvm.masked.scatter llvm.masked.store llvm.maxnum llvm.memcpy llvm.memmove llvm.memset llvm.minnum llvm.mips.absq.s.ph llvm.mips.absq.s.qb llvm.mips.absq.s.w llvm.mips.add.a.b llvm.mips.add.a.d llvm.mips.add.a.h llvm.mips.add.a.w llvm.mips.addq.ph llvm.mips.addq.s.ph llvm.mips.addq.s.w llvm.mips.addqh.ph llvm.mips.addqh.r.ph llvm.mips.addqh.r.w llvm.mips.addqh.w llvm.mips.adds.a.b llvm.mips.adds.a.d llvm.mips.adds.a.h llvm.mips.adds.a.w llvm.mips.adds.s.b llvm.mips.adds.s.d llvm.mips.adds.s.h llvm.mips.adds.s.w llvm.mips.adds.u.b llvm.mips.adds.u.d llvm.mips.adds.u.h llvm.mips.adds.u.w llvm.mips.addsc llvm.mips.addu.ph llvm.mips.addu.qb llvm.mips.addu.s.ph llvm.mips.addu.s.qb llvm.mips.adduh.qb llvm.mips.adduh.r.qb llvm.mips.addv.b llvm.mips.addv.d llvm.mips.addv.h llvm.mips.addv.w llvm.mips.addvi.b llvm.mips.addvi.d llvm.mips.addvi.h llvm.mips.addvi.w llvm.mips.addwc llvm.mips.and.v llvm.mips.andi.b llvm.mips.append llvm.mips.asub.s.b llvm.mips.asub.s.d llvm.mips.asub.s.h llvm.mips.asub.s.w llvm.mips.asub.u.b llvm.mips.asub.u.d llvm.mips.asub.u.h llvm.mips.asub.u.w llvm.mips.ave.s.b llvm.mips.ave.s.d llvm.mips.ave.s.h llvm.mips.ave.s.w llvm.mips.ave.u.b llvm.mips.ave.u.d llvm.mips.ave.u.h llvm.mips.ave.u.w llvm.mips.aver.s.b llvm.mips.aver.s.d llvm.mips.aver.s.h llvm.mips.aver.s.w llvm.mips.aver.u.b llvm.mips.aver.u.d llvm.mips.aver.u.h llvm.mips.aver.u.w llvm.mips.balign llvm.mips.bclr.b llvm.mips.bclr.d llvm.mips.bclr.h llvm.mips.bclr.w llvm.mips.bclri.b llvm.mips.bclri.d llvm.mips.bclri.h llvm.mips.bclri.w llvm.mips.binsl.b llvm.mips.binsl.d llvm.mips.binsl.h llvm.mips.binsl.w llvm.mips.binsli.b llvm.mips.binsli.d llvm.mips.binsli.h llvm.mips.binsli.w llvm.mips.binsr.b llvm.mips.binsr.d llvm.mips.binsr.h llvm.mips.binsr.w llvm.mips.binsri.b llvm.mips.binsri.d llvm.mips.binsri.h llvm.mips.binsri.w llvm.mips.bitrev llvm.mips.bmnz.v llvm.mips.bmnzi.b llvm.mips.bmz.v llvm.mips.bmzi.b llvm.mips.bneg.b llvm.mips.bneg.d llvm.mips.bneg.h llvm.mips.bneg.w llvm.mips.bnegi.b llvm.mips.bnegi.d llvm.mips.bnegi.h llvm.mips.bnegi.w llvm.mips.bnz.b llvm.mips.bnz.d llvm.mips.bnz.h llvm.mips.bnz.v llvm.mips.bnz.w llvm.mips.bposge32 llvm.mips.bsel.v llvm.mips.bseli.b llvm.mips.bset.b llvm.mips.bset.d llvm.mips.bset.h llvm.mips.bset.w llvm.mips.bseti.b llvm.mips.bseti.d llvm.mips.bseti.h llvm.mips.bseti.w llvm.mips.bz.b llvm.mips.bz.d llvm.mips.bz.h llvm.mips.bz.v llvm.mips.bz.w llvm.mips.ceq.b llvm.mips.ceq.d llvm.mips.ceq.h llvm.mips.ceq.w llvm.mips.ceqi.b llvm.mips.ceqi.d llvm.mips.ceqi.h llvm.mips.ceqi.w llvm.mips.cfcmsa llvm.mips.cle.s.b llvm.mips.cle.s.d llvm.mips.cle.s.h llvm.mips.cle.s.w llvm.mips.cle.u.b llvm.mips.cle.u.d llvm.mips.cle.u.h llvm.mips.cle.u.w llvm.mips.clei.s.b llvm.mips.clei.s.d llvm.mips.clei.s.h llvm.mips.clei.s.w llvm.mips.clei.u.b llvm.mips.clei.u.d llvm.mips.clei.u.h llvm.mips.clei.u.w llvm.mips.clt.s.b llvm.mips.clt.s.d llvm.mips.clt.s.h llvm.mips.clt.s.w llvm.mips.clt.u.b llvm.mips.clt.u.d llvm.mips.clt.u.h llvm.mips.clt.u.w llvm.mips.clti.s.b llvm.mips.clti.s.d llvm.mips.clti.s.h llvm.mips.clti.s.w llvm.mips.clti.u.b llvm.mips.clti.u.d llvm.mips.clti.u.h llvm.mips.clti.u.w llvm.mips.cmp.eq.ph llvm.mips.cmp.le.ph llvm.mips.cmp.lt.ph llvm.mips.cmpgdu.eq.qb llvm.mips.cmpgdu.le.qb llvm.mips.cmpgdu.lt.qb llvm.mips.cmpgu.eq.qb llvm.mips.cmpgu.le.qb llvm.mips.cmpgu.lt.qb llvm.mips.cmpu.eq.qb llvm.mips.cmpu.le.qb llvm.mips.cmpu.lt.qb llvm.mips.copy.s.b llvm.mips.copy.s.d llvm.mips.copy.s.h llvm.mips.copy.s.w llvm.mips.copy.u.b llvm.mips.copy.u.d llvm.mips.copy.u.h llvm.mips.copy.u.w llvm.mips.ctcmsa llvm.mips.div.s.b llvm.mips.div.s.d llvm.mips.div.s.h llvm.mips.div.s.w llvm.mips.div.u.b llvm.mips.div.u.d llvm.mips.div.u.h llvm.mips.div.u.w llvm.mips.dlsa llvm.mips.dotp.s.d llvm.mips.dotp.s.h llvm.mips.dotp.s.w llvm.mips.dotp.u.d llvm.mips.dotp.u.h llvm.mips.dotp.u.w llvm.mips.dpa.w.ph llvm.mips.dpadd.s.d llvm.mips.dpadd.s.h llvm.mips.dpadd.s.w llvm.mips.dpadd.u.d llvm.mips.dpadd.u.h llvm.mips.dpadd.u.w llvm.mips.dpaq.s.w.ph llvm.mips.dpaq.sa.l.w llvm.mips.dpaqx.s.w.ph llvm.mips.dpaqx.sa.w.ph llvm.mips.dpau.h.qbl llvm.mips.dpau.h.qbr llvm.mips.dpax.w.ph llvm.mips.dps.w.ph llvm.mips.dpsq.s.w.ph llvm.mips.dpsq.sa.l.w llvm.mips.dpsqx.s.w.ph llvm.mips.dpsqx.sa.w.ph llvm.mips.dpsu.h.qbl llvm.mips.dpsu.h.qbr llvm.mips.dpsub.s.d llvm.mips.dpsub.s.h llvm.mips.dpsub.s.w llvm.mips.dpsub.u.d llvm.mips.dpsub.u.h llvm.mips.dpsub.u.w llvm.mips.dpsx.w.ph llvm.mips.extp llvm.mips.extpdp llvm.mips.extr.r.w llvm.mips.extr.rs.w llvm.mips.extr.s.h llvm.mips.extr.w llvm.mips.fadd.d llvm.mips.fadd.w llvm.mips.fcaf.d llvm.mips.fcaf.w llvm.mips.fceq.d llvm.mips.fceq.w llvm.mips.fclass.d llvm.mips.fclass.w llvm.mips.fcle.d llvm.mips.fcle.w llvm.mips.fclt.d llvm.mips.fclt.w llvm.mips.fcne.d llvm.mips.fcne.w llvm.mips.fcor.d llvm.mips.fcor.w llvm.mips.fcueq.d llvm.mips.fcueq.w llvm.mips.fcule.d llvm.mips.fcule.w llvm.mips.fcult.d llvm.mips.fcult.w llvm.mips.fcun.d llvm.mips.fcun.w llvm.mips.fcune.d llvm.mips.fcune.w llvm.mips.fdiv.d llvm.mips.fdiv.w llvm.mips.fexdo.h llvm.mips.fexdo.w llvm.mips.fexp2.d llvm.mips.fexp2.w llvm.mips.fexupl.d llvm.mips.fexupl.w llvm.mips.fexupr.d llvm.mips.fexupr.w llvm.mips.ffint.s.d llvm.mips.ffint.s.w llvm.mips.ffint.u.d llvm.mips.ffint.u.w llvm.mips.ffql.d llvm.mips.ffql.w llvm.mips.ffqr.d llvm.mips.ffqr.w llvm.mips.fill.b llvm.mips.fill.d llvm.mips.fill.h llvm.mips.fill.w llvm.mips.flog2.d llvm.mips.flog2.w llvm.mips.fmadd.d llvm.mips.fmadd.w llvm.mips.fmax.a.d llvm.mips.fmax.a.w llvm.mips.fmax.d llvm.mips.fmax.w llvm.mips.fmin.a.d llvm.mips.fmin.a.w llvm.mips.fmin.d llvm.mips.fmin.w llvm.mips.fmsub.d llvm.mips.fmsub.w llvm.mips.fmul.d llvm.mips.fmul.w llvm.mips.frcp.d llvm.mips.frcp.w llvm.mips.frint.d llvm.mips.frint.w llvm.mips.frsqrt.d llvm.mips.frsqrt.w llvm.mips.fsaf.d llvm.mips.fsaf.w llvm.mips.fseq.d llvm.mips.fseq.w llvm.mips.fsle.d llvm.mips.fsle.w llvm.mips.fslt.d llvm.mips.fslt.w llvm.mips.fsne.d llvm.mips.fsne.w llvm.mips.fsor.d llvm.mips.fsor.w llvm.mips.fsqrt.d llvm.mips.fsqrt.w llvm.mips.fsub.d llvm.mips.fsub.w llvm.mips.fsueq.d llvm.mips.fsueq.w llvm.mips.fsule.d llvm.mips.fsule.w llvm.mips.fsult.d llvm.mips.fsult.w llvm.mips.fsun.d llvm.mips.fsun.w llvm.mips.fsune.d llvm.mips.fsune.w llvm.mips.ftint.s.d llvm.mips.ftint.s.w llvm.mips.ftint.u.d llvm.mips.ftint.u.w llvm.mips.ftq.h llvm.mips.ftq.w llvm.mips.ftrunc.s.d llvm.mips.ftrunc.s.w llvm.mips.ftrunc.u.d llvm.mips.ftrunc.u.w llvm.mips.hadd.s.d llvm.mips.hadd.s.h llvm.mips.hadd.s.w llvm.mips.hadd.u.d llvm.mips.hadd.u.h llvm.mips.hadd.u.w llvm.mips.hsub.s.d llvm.mips.hsub.s.h llvm.mips.hsub.s.w llvm.mips.hsub.u.d llvm.mips.hsub.u.h llvm.mips.hsub.u.w llvm.mips.ilvev.b llvm.mips.ilvev.d llvm.mips.ilvev.h llvm.mips.ilvev.w llvm.mips.ilvl.b llvm.mips.ilvl.d llvm.mips.ilvl.h llvm.mips.ilvl.w llvm.mips.ilvod.b llvm.mips.ilvod.d llvm.mips.ilvod.h llvm.mips.ilvod.w llvm.mips.ilvr.b llvm.mips.ilvr.d llvm.mips.ilvr.h llvm.mips.ilvr.w llvm.mips.insert.b llvm.mips.insert.d llvm.mips.insert.h llvm.mips.insert.w llvm.mips.insv llvm.mips.insve.b llvm.mips.insve.d llvm.mips.insve.h llvm.mips.insve.w llvm.mips.lbux llvm.mips.ld.b llvm.mips.ld.d llvm.mips.ld.h llvm.mips.ld.w llvm.mips.ldi.b llvm.mips.ldi.d llvm.mips.ldi.h llvm.mips.ldi.w llvm.mips.lhx llvm.mips.lsa llvm.mips.lwx llvm.mips.madd llvm.mips.madd.q.h llvm.mips.madd.q.w llvm.mips.maddr.q.h llvm.mips.maddr.q.w llvm.mips.maddu llvm.mips.maddv.b llvm.mips.maddv.d llvm.mips.maddv.h llvm.mips.maddv.w llvm.mips.maq.s.w.phl llvm.mips.maq.s.w.phr llvm.mips.maq.sa.w.phl llvm.mips.maq.sa.w.phr llvm.mips.max.a.b llvm.mips.max.a.d llvm.mips.max.a.h llvm.mips.max.a.w llvm.mips.max.s.b llvm.mips.max.s.d llvm.mips.max.s.h llvm.mips.max.s.w llvm.mips.max.u.b llvm.mips.max.u.d llvm.mips.max.u.h llvm.mips.max.u.w llvm.mips.maxi.s.b llvm.mips.maxi.s.d llvm.mips.maxi.s.h llvm.mips.maxi.s.w llvm.mips.maxi.u.b llvm.mips.maxi.u.d llvm.mips.maxi.u.h llvm.mips.maxi.u.w llvm.mips.min.a.b llvm.mips.min.a.d llvm.mips.min.a.h llvm.mips.min.a.w llvm.mips.min.s.b llvm.mips.min.s.d llvm.mips.min.s.h llvm.mips.min.s.w llvm.mips.min.u.b llvm.mips.min.u.d llvm.mips.min.u.h llvm.mips.min.u.w llvm.mips.mini.s.b llvm.mips.mini.s.d llvm.mips.mini.s.h llvm.mips.mini.s.w llvm.mips.mini.u.b llvm.mips.mini.u.d llvm.mips.mini.u.h llvm.mips.mini.u.w llvm.mips.mod.s.b llvm.mips.mod.s.d llvm.mips.mod.s.h llvm.mips.mod.s.w llvm.mips.mod.u.b llvm.mips.mod.u.d llvm.mips.mod.u.h llvm.mips.mod.u.w llvm.mips.modsub llvm.mips.move.v llvm.mips.msub llvm.mips.msub.q.h llvm.mips.msub.q.w llvm.mips.msubr.q.h llvm.mips.msubr.q.w llvm.mips.msubu llvm.mips.msubv.b llvm.mips.msubv.d llvm.mips.msubv.h llvm.mips.msubv.w llvm.mips.mthlip llvm.mips.mul.ph llvm.mips.mul.q.h llvm.mips.mul.q.w llvm.mips.mul.s.ph llvm.mips.muleq.s.w.phl llvm.mips.muleq.s.w.phr llvm.mips.muleu.s.ph.qbl llvm.mips.muleu.s.ph.qbr llvm.mips.mulq.rs.ph llvm.mips.mulq.rs.w llvm.mips.mulq.s.ph llvm.mips.mulq.s.w llvm.mips.mulr.q.h llvm.mips.mulr.q.w llvm.mips.mulsa.w.ph llvm.mips.mulsaq.s.w.ph llvm.mips.mult llvm.mips.multu llvm.mips.mulv.b llvm.mips.mulv.d llvm.mips.mulv.h llvm.mips.mulv.w llvm.mips.nloc.b llvm.mips.nloc.d llvm.mips.nloc.h llvm.mips.nloc.w llvm.mips.nlzc.b llvm.mips.nlzc.d llvm.mips.nlzc.h llvm.mips.nlzc.w llvm.mips.nor.v llvm.mips.nori.b llvm.mips.or.v llvm.mips.ori.b llvm.mips.packrl.ph llvm.mips.pckev.b llvm.mips.pckev.d llvm.mips.pckev.h llvm.mips.pckev.w llvm.mips.pckod.b llvm.mips.pckod.d llvm.mips.pckod.h llvm.mips.pckod.w llvm.mips.pcnt.b llvm.mips.pcnt.d llvm.mips.pcnt.h llvm.mips.pcnt.w llvm.mips.pick.ph llvm.mips.pick.qb llvm.mips.preceq.w.phl llvm.mips.preceq.w.phr llvm.mips.precequ.ph.qbl llvm.mips.precequ.ph.qbla llvm.mips.precequ.ph.qbr llvm.mips.precequ.ph.qbra llvm.mips.preceu.ph.qbl llvm.mips.preceu.ph.qbla llvm.mips.preceu.ph.qbr llvm.mips.preceu.ph.qbra llvm.mips.precr.qb.ph llvm.mips.precr.sra.ph.w llvm.mips.precr.sra.r.ph.w llvm.mips.precrq.ph.w llvm.mips.precrq.qb.ph llvm.mips.precrq.rs.ph.w llvm.mips.precrqu.s.qb.ph llvm.mips.prepend llvm.mips.raddu.w.qb llvm.mips.rddsp llvm.mips.repl.ph llvm.mips.repl.qb llvm.mips.sat.s.b llvm.mips.sat.s.d llvm.mips.sat.s.h llvm.mips.sat.s.w llvm.mips.sat.u.b llvm.mips.sat.u.d llvm.mips.sat.u.h llvm.mips.sat.u.w llvm.mips.shf.b llvm.mips.shf.h llvm.mips.shf.w llvm.mips.shilo llvm.mips.shll.ph llvm.mips.shll.qb llvm.mips.shll.s.ph llvm.mips.shll.s.w llvm.mips.shra.ph llvm.mips.shra.qb llvm.mips.shra.r.ph llvm.mips.shra.r.qb llvm.mips.shra.r.w llvm.mips.shrl.ph llvm.mips.shrl.qb llvm.mips.sld.b llvm.mips.sld.d llvm.mips.sld.h llvm.mips.sld.w llvm.mips.sldi.b llvm.mips.sldi.d llvm.mips.sldi.h llvm.mips.sldi.w llvm.mips.sll.b llvm.mips.sll.d llvm.mips.sll.h llvm.mips.sll.w llvm.mips.slli.b llvm.mips.slli.d llvm.mips.slli.h llvm.mips.slli.w llvm.mips.splat.b llvm.mips.splat.d llvm.mips.splat.h llvm.mips.splat.w llvm.mips.splati.b llvm.mips.splati.d llvm.mips.splati.h llvm.mips.splati.w llvm.mips.sra.b llvm.mips.sra.d llvm.mips.sra.h llvm.mips.sra.w llvm.mips.srai.b llvm.mips.srai.d llvm.mips.srai.h llvm.mips.srai.w llvm.mips.srar.b llvm.mips.srar.d llvm.mips.srar.h llvm.mips.srar.w llvm.mips.srari.b llvm.mips.srari.d llvm.mips.srari.h llvm.mips.srari.w llvm.mips.srl.b llvm.mips.srl.d llvm.mips.srl.h llvm.mips.srl.w llvm.mips.srli.b llvm.mips.srli.d llvm.mips.srli.h llvm.mips.srli.w llvm.mips.srlr.b llvm.mips.srlr.d llvm.mips.srlr.h llvm.mips.srlr.w llvm.mips.srlri.b llvm.mips.srlri.d llvm.mips.srlri.h llvm.mips.srlri.w llvm.mips.st.b llvm.mips.st.d llvm.mips.st.h llvm.mips.st.w llvm.mips.subq.ph llvm.mips.subq.s.ph llvm.mips.subq.s.w llvm.mips.subqh.ph llvm.mips.subqh.r.ph llvm.mips.subqh.r.w llvm.mips.subqh.w llvm.mips.subs.s.b llvm.mips.subs.s.d llvm.mips.subs.s.h llvm.mips.subs.s.w llvm.mips.subs.u.b llvm.mips.subs.u.d llvm.mips.subs.u.h llvm.mips.subs.u.w llvm.mips.subsus.u.b llvm.mips.subsus.u.d llvm.mips.subsus.u.h llvm.mips.subsus.u.w llvm.mips.subsuu.s.b llvm.mips.subsuu.s.d llvm.mips.subsuu.s.h llvm.mips.subsuu.s.w llvm.mips.subu.ph llvm.mips.subu.qb llvm.mips.subu.s.ph llvm.mips.subu.s.qb llvm.mips.subuh.qb llvm.mips.subuh.r.qb llvm.mips.subv.b llvm.mips.subv.d llvm.mips.subv.h llvm.mips.subv.w llvm.mips.subvi.b llvm.mips.subvi.d llvm.mips.subvi.h llvm.mips.subvi.w llvm.mips.vshf.b llvm.mips.vshf.d llvm.mips.vshf.h llvm.mips.vshf.w llvm.mips.wrdsp llvm.mips.xor.v llvm.mips.xori.b llvm.nearbyint llvm.nvvm.abs.i llvm.nvvm.abs.ll llvm.nvvm.add.rm.d llvm.nvvm.add.rm.f llvm.nvvm.add.rm.ftz.f llvm.nvvm.add.rn.d llvm.nvvm.add.rn.f llvm.nvvm.add.rn.ftz.f llvm.nvvm.add.rp.d llvm.nvvm.add.rp.f llvm.nvvm.add.rp.ftz.f llvm.nvvm.add.rz.d llvm.nvvm.add.rz.f llvm.nvvm.add.rz.ftz.f llvm.nvvm.atomic.load.add.f32 llvm.nvvm.atomic.load.dec.32 llvm.nvvm.atomic.load.inc.32 llvm.nvvm.barrier0 llvm.nvvm.barrier0.and llvm.nvvm.barrier0.or llvm.nvvm.barrier0.popc llvm.nvvm.bitcast.d2ll llvm.nvvm.bitcast.f2i llvm.nvvm.bitcast.i2f llvm.nvvm.bitcast.ll2d llvm.nvvm.brev32 llvm.nvvm.brev64 llvm.nvvm.ceil.d llvm.nvvm.ceil.f llvm.nvvm.ceil.ftz.f llvm.nvvm.clz.i llvm.nvvm.clz.ll llvm.nvvm.compiler.error llvm.nvvm.compiler.warn llvm.nvvm.cos.approx.f llvm.nvvm.cos.approx.ftz.f llvm.nvvm.d2f.rm llvm.nvvm.d2f.rm.ftz llvm.nvvm.d2f.rn llvm.nvvm.d2f.rn.ftz llvm.nvvm.d2f.rp llvm.nvvm.d2f.rp.ftz llvm.nvvm.d2f.rz llvm.nvvm.d2f.rz.ftz llvm.nvvm.d2i.hi llvm.nvvm.d2i.lo llvm.nvvm.d2i.rm llvm.nvvm.d2i.rn llvm.nvvm.d2i.rp llvm.nvvm.d2i.rz llvm.nvvm.d2ll.rm llvm.nvvm.d2ll.rn llvm.nvvm.d2ll.rp llvm.nvvm.d2ll.rz llvm.nvvm.d2ui.rm llvm.nvvm.d2ui.rn llvm.nvvm.d2ui.rp llvm.nvvm.d2ui.rz llvm.nvvm.d2ull.rm llvm.nvvm.d2ull.rn llvm.nvvm.d2ull.rp llvm.nvvm.d2ull.rz llvm.nvvm.div.approx.f llvm.nvvm.div.approx.ftz.f llvm.nvvm.div.rm.d llvm.nvvm.div.rm.f llvm.nvvm.div.rm.ftz.f llvm.nvvm.div.rn.d llvm.nvvm.div.rn.f llvm.nvvm.div.rn.ftz.f llvm.nvvm.div.rp.d llvm.nvvm.div.rp.f llvm.nvvm.div.rp.ftz.f llvm.nvvm.div.rz.d llvm.nvvm.div.rz.f llvm.nvvm.div.rz.ftz.f llvm.nvvm.ex2.approx.d llvm.nvvm.ex2.approx.f llvm.nvvm.ex2.approx.ftz.f llvm.nvvm.f2h.rn llvm.nvvm.f2h.rn.ftz llvm.nvvm.f2i.rm llvm.nvvm.f2i.rm.ftz llvm.nvvm.f2i.rn llvm.nvvm.f2i.rn.ftz llvm.nvvm.f2i.rp llvm.nvvm.f2i.rp.ftz llvm.nvvm.f2i.rz llvm.nvvm.f2i.rz.ftz llvm.nvvm.f2ll.rm llvm.nvvm.f2ll.rm.ftz llvm.nvvm.f2ll.rn llvm.nvvm.f2ll.rn.ftz llvm.nvvm.f2ll.rp llvm.nvvm.f2ll.rp.ftz llvm.nvvm.f2ll.rz llvm.nvvm.f2ll.rz.ftz llvm.nvvm.f2ui.rm llvm.nvvm.f2ui.rm.ftz llvm.nvvm.f2ui.rn llvm.nvvm.f2ui.rn.ftz llvm.nvvm.f2ui.rp llvm.nvvm.f2ui.rp.ftz llvm.nvvm.f2ui.rz llvm.nvvm.f2ui.rz.ftz llvm.nvvm.f2ull.rm llvm.nvvm.f2ull.rm.ftz llvm.nvvm.f2ull.rn llvm.nvvm.f2ull.rn.ftz llvm.nvvm.f2ull.rp llvm.nvvm.f2ull.rp.ftz llvm.nvvm.f2ull.rz llvm.nvvm.f2ull.rz.ftz llvm.nvvm.fabs.d llvm.nvvm.fabs.f llvm.nvvm.fabs.ftz.f llvm.nvvm.floor.d llvm.nvvm.floor.f llvm.nvvm.floor.ftz.f llvm.nvvm.fma.rm.d llvm.nvvm.fma.rm.f llvm.nvvm.fma.rm.ftz.f llvm.nvvm.fma.rn.d llvm.nvvm.fma.rn.f llvm.nvvm.fma.rn.ftz.f llvm.nvvm.fma.rp.d llvm.nvvm.fma.rp.f llvm.nvvm.fma.rp.ftz.f llvm.nvvm.fma.rz.d llvm.nvvm.fma.rz.f llvm.nvvm.fma.rz.ftz.f llvm.nvvm.fmax.d llvm.nvvm.fmax.f llvm.nvvm.fmax.ftz.f llvm.nvvm.fmin.d llvm.nvvm.fmin.f llvm.nvvm.fmin.ftz.f llvm.nvvm.h2f llvm.nvvm.i2d.rm llvm.nvvm.i2d.rn llvm.nvvm.i2d.rp llvm.nvvm.i2d.rz llvm.nvvm.i2f.rm llvm.nvvm.i2f.rn llvm.nvvm.i2f.rp llvm.nvvm.i2f.rz llvm.nvvm.isspacep.const llvm.nvvm.isspacep.global llvm.nvvm.isspacep.local llvm.nvvm.isspacep.shared llvm.nvvm.istypep.sampler llvm.nvvm.istypep.surface llvm.nvvm.istypep.texture llvm.nvvm.ldg.global.f llvm.nvvm.ldg.global.i llvm.nvvm.ldg.global.p llvm.nvvm.ldu.global.f llvm.nvvm.ldu.global.i llvm.nvvm.ldu.global.p llvm.nvvm.lg2.approx.d llvm.nvvm.lg2.approx.f llvm.nvvm.lg2.approx.ftz.f llvm.nvvm.ll2d.rm llvm.nvvm.ll2d.rn llvm.nvvm.ll2d.rp llvm.nvvm.ll2d.rz llvm.nvvm.ll2f.rm llvm.nvvm.ll2f.rn llvm.nvvm.ll2f.rp llvm.nvvm.ll2f.rz llvm.nvvm.lohi.i2d llvm.nvvm.max.i llvm.nvvm.max.ll llvm.nvvm.max.ui llvm.nvvm.max.ull llvm.nvvm.membar.cta llvm.nvvm.membar.gl llvm.nvvm.membar.sys llvm.nvvm.min.i llvm.nvvm.min.ll llvm.nvvm.min.ui llvm.nvvm.min.ull llvm.nvvm.move.double llvm.nvvm.move.float llvm.nvvm.move.i16 llvm.nvvm.move.i32 llvm.nvvm.move.i64 llvm.nvvm.move.ptr llvm.nvvm.mul.rm.d llvm.nvvm.mul.rm.f llvm.nvvm.mul.rm.ftz.f llvm.nvvm.mul.rn.d llvm.nvvm.mul.rn.f llvm.nvvm.mul.rn.ftz.f llvm.nvvm.mul.rp.d llvm.nvvm.mul.rp.f llvm.nvvm.mul.rp.ftz.f llvm.nvvm.mul.rz.d llvm.nvvm.mul.rz.f llvm.nvvm.mul.rz.ftz.f llvm.nvvm.mul24.i llvm.nvvm.mul24.ui llvm.nvvm.mulhi.i llvm.nvvm.mulhi.ll llvm.nvvm.mulhi.ui llvm.nvvm.mulhi.ull llvm.nvvm.popc.i llvm.nvvm.popc.ll llvm.nvvm.prmt llvm.nvvm.ptr.constant.to.gen llvm.nvvm.ptr.gen.to.constant llvm.nvvm.ptr.gen.to.global llvm.nvvm.ptr.gen.to.local llvm.nvvm.ptr.gen.to.param llvm.nvvm.ptr.gen.to.shared llvm.nvvm.ptr.global.to.gen llvm.nvvm.ptr.local.to.gen llvm.nvvm.ptr.shared.to.gen llvm.nvvm.rcp.approx.ftz.d llvm.nvvm.rcp.rm.d llvm.nvvm.rcp.rm.f llvm.nvvm.rcp.rm.ftz.f llvm.nvvm.rcp.rn.d llvm.nvvm.rcp.rn.f llvm.nvvm.rcp.rn.ftz.f llvm.nvvm.rcp.rp.d llvm.nvvm.rcp.rp.f llvm.nvvm.rcp.rp.ftz.f llvm.nvvm.rcp.rz.d llvm.nvvm.rcp.rz.f llvm.nvvm.rcp.rz.ftz.f llvm.nvvm.read.ptx.sreg.ctaid.x llvm.nvvm.read.ptx.sreg.ctaid.y llvm.nvvm.read.ptx.sreg.ctaid.z llvm.nvvm.read.ptx.sreg.envreg0 llvm.nvvm.read.ptx.sreg.envreg1 llvm.nvvm.read.ptx.sreg.envreg10 llvm.nvvm.read.ptx.sreg.envreg11 llvm.nvvm.read.ptx.sreg.envreg12 llvm.nvvm.read.ptx.sreg.envreg13 llvm.nvvm.read.ptx.sreg.envreg14 llvm.nvvm.read.ptx.sreg.envreg15 llvm.nvvm.read.ptx.sreg.envreg16 llvm.nvvm.read.ptx.sreg.envreg17 llvm.nvvm.read.ptx.sreg.envreg18 llvm.nvvm.read.ptx.sreg.envreg19 llvm.nvvm.read.ptx.sreg.envreg2 llvm.nvvm.read.ptx.sreg.envreg20 llvm.nvvm.read.ptx.sreg.envreg21 llvm.nvvm.read.ptx.sreg.envreg22 llvm.nvvm.read.ptx.sreg.envreg23 llvm.nvvm.read.ptx.sreg.envreg24 llvm.nvvm.read.ptx.sreg.envreg25 llvm.nvvm.read.ptx.sreg.envreg26 llvm.nvvm.read.ptx.sreg.envreg27 llvm.nvvm.read.ptx.sreg.envreg28 llvm.nvvm.read.ptx.sreg.envreg29 llvm.nvvm.read.ptx.sreg.envreg3 llvm.nvvm.read.ptx.sreg.envreg30 llvm.nvvm.read.ptx.sreg.envreg31 llvm.nvvm.read.ptx.sreg.envreg4 llvm.nvvm.read.ptx.sreg.envreg5 llvm.nvvm.read.ptx.sreg.envreg6 llvm.nvvm.read.ptx.sreg.envreg7 llvm.nvvm.read.ptx.sreg.envreg8 llvm.nvvm.read.ptx.sreg.envreg9 llvm.nvvm.read.ptx.sreg.nctaid.x llvm.nvvm.read.ptx.sreg.nctaid.y llvm.nvvm.read.ptx.sreg.nctaid.z llvm.nvvm.read.ptx.sreg.ntid.x llvm.nvvm.read.ptx.sreg.ntid.y llvm.nvvm.read.ptx.sreg.ntid.z llvm.nvvm.read.ptx.sreg.tid.x llvm.nvvm.read.ptx.sreg.tid.y llvm.nvvm.read.ptx.sreg.tid.z llvm.nvvm.read.ptx.sreg.warpsize llvm.nvvm.reflect llvm.nvvm.rotate.b32 llvm.nvvm.rotate.b64 llvm.nvvm.rotate.right.b64 llvm.nvvm.round.d llvm.nvvm.round.f llvm.nvvm.round.ftz.f llvm.nvvm.rsqrt.approx.d llvm.nvvm.rsqrt.approx.f llvm.nvvm.rsqrt.approx.ftz.f llvm.nvvm.sad.i llvm.nvvm.sad.ui llvm.nvvm.saturate.d llvm.nvvm.saturate.f llvm.nvvm.saturate.ftz.f llvm.nvvm.sin.approx.f llvm.nvvm.sin.approx.ftz.f llvm.nvvm.sqrt.approx.f llvm.nvvm.sqrt.approx.ftz.f llvm.nvvm.sqrt.f llvm.nvvm.sqrt.rm.d llvm.nvvm.sqrt.rm.f llvm.nvvm.sqrt.rm.ftz.f llvm.nvvm.sqrt.rn.d llvm.nvvm.sqrt.rn.f llvm.nvvm.sqrt.rn.ftz.f llvm.nvvm.sqrt.rp.d llvm.nvvm.sqrt.rp.f llvm.nvvm.sqrt.rp.ftz.f llvm.nvvm.sqrt.rz.d llvm.nvvm.sqrt.rz.f llvm.nvvm.sqrt.rz.ftz.f llvm.nvvm.suld.1d.array.i16.clamp llvm.nvvm.suld.1d.array.i16.trap llvm.nvvm.suld.1d.array.i16.zero llvm.nvvm.suld.1d.array.i32.clamp llvm.nvvm.suld.1d.array.i32.trap llvm.nvvm.suld.1d.array.i32.zero llvm.nvvm.suld.1d.array.i64.clamp llvm.nvvm.suld.1d.array.i64.trap llvm.nvvm.suld.1d.array.i64.zero llvm.nvvm.suld.1d.array.i8.clamp llvm.nvvm.suld.1d.array.i8.trap llvm.nvvm.suld.1d.array.i8.zero llvm.nvvm.suld.1d.array.v2i16.clamp llvm.nvvm.suld.1d.array.v2i16.trap llvm.nvvm.suld.1d.array.v2i16.zero llvm.nvvm.suld.1d.array.v2i32.clamp llvm.nvvm.suld.1d.array.v2i32.trap llvm.nvvm.suld.1d.array.v2i32.zero llvm.nvvm.suld.1d.array.v2i64.clamp llvm.nvvm.suld.1d.array.v2i64.trap llvm.nvvm.suld.1d.array.v2i64.zero llvm.nvvm.suld.1d.array.v2i8.clamp llvm.nvvm.suld.1d.array.v2i8.trap llvm.nvvm.suld.1d.array.v2i8.zero llvm.nvvm.suld.1d.array.v4i16.clamp llvm.nvvm.suld.1d.array.v4i16.trap llvm.nvvm.suld.1d.array.v4i16.zero llvm.nvvm.suld.1d.array.v4i32.clamp llvm.nvvm.suld.1d.array.v4i32.trap llvm.nvvm.suld.1d.array.v4i32.zero llvm.nvvm.suld.1d.array.v4i8.clamp llvm.nvvm.suld.1d.array.v4i8.trap llvm.nvvm.suld.1d.array.v4i8.zero llvm.nvvm.suld.1d.i16.clamp llvm.nvvm.suld.1d.i16.trap llvm.nvvm.suld.1d.i16.zero llvm.nvvm.suld.1d.i32.clamp llvm.nvvm.suld.1d.i32.trap llvm.nvvm.suld.1d.i32.zero llvm.nvvm.suld.1d.i64.clamp llvm.nvvm.suld.1d.i64.trap llvm.nvvm.suld.1d.i64.zero llvm.nvvm.suld.1d.i8.clamp llvm.nvvm.suld.1d.i8.trap llvm.nvvm.suld.1d.i8.zero llvm.nvvm.suld.1d.v2i16.clamp llvm.nvvm.suld.1d.v2i16.trap llvm.nvvm.suld.1d.v2i16.zero llvm.nvvm.suld.1d.v2i32.clamp llvm.nvvm.suld.1d.v2i32.trap llvm.nvvm.suld.1d.v2i32.zero llvm.nvvm.suld.1d.v2i64.clamp llvm.nvvm.suld.1d.v2i64.trap llvm.nvvm.suld.1d.v2i64.zero llvm.nvvm.suld.1d.v2i8.clamp llvm.nvvm.suld.1d.v2i8.trap llvm.nvvm.suld.1d.v2i8.zero llvm.nvvm.suld.1d.v4i16.clamp llvm.nvvm.suld.1d.v4i16.trap llvm.nvvm.suld.1d.v4i16.zero llvm.nvvm.suld.1d.v4i32.clamp llvm.nvvm.suld.1d.v4i32.trap llvm.nvvm.suld.1d.v4i32.zero llvm.nvvm.suld.1d.v4i8.clamp llvm.nvvm.suld.1d.v4i8.trap llvm.nvvm.suld.1d.v4i8.zero llvm.nvvm.suld.2d.array.i16.clamp llvm.nvvm.suld.2d.array.i16.trap llvm.nvvm.suld.2d.array.i16.zero llvm.nvvm.suld.2d.array.i32.clamp llvm.nvvm.suld.2d.array.i32.trap llvm.nvvm.suld.2d.array.i32.zero llvm.nvvm.suld.2d.array.i64.clamp llvm.nvvm.suld.2d.array.i64.trap llvm.nvvm.suld.2d.array.i64.zero llvm.nvvm.suld.2d.array.i8.clamp llvm.nvvm.suld.2d.array.i8.trap llvm.nvvm.suld.2d.array.i8.zero llvm.nvvm.suld.2d.array.v2i16.clamp llvm.nvvm.suld.2d.array.v2i16.trap llvm.nvvm.suld.2d.array.v2i16.zero llvm.nvvm.suld.2d.array.v2i32.clamp llvm.nvvm.suld.2d.array.v2i32.trap llvm.nvvm.suld.2d.array.v2i32.zero llvm.nvvm.suld.2d.array.v2i64.clamp llvm.nvvm.suld.2d.array.v2i64.trap llvm.nvvm.suld.2d.array.v2i64.zero llvm.nvvm.suld.2d.array.v2i8.clamp llvm.nvvm.suld.2d.array.v2i8.trap llvm.nvvm.suld.2d.array.v2i8.zero llvm.nvvm.suld.2d.array.v4i16.clamp llvm.nvvm.suld.2d.array.v4i16.trap llvm.nvvm.suld.2d.array.v4i16.zero llvm.nvvm.suld.2d.array.v4i32.clamp llvm.nvvm.suld.2d.array.v4i32.trap llvm.nvvm.suld.2d.array.v4i32.zero llvm.nvvm.suld.2d.array.v4i8.clamp llvm.nvvm.suld.2d.array.v4i8.trap llvm.nvvm.suld.2d.array.v4i8.zero llvm.nvvm.suld.2d.i16.clamp llvm.nvvm.suld.2d.i16.trap llvm.nvvm.suld.2d.i16.zero llvm.nvvm.suld.2d.i32.clamp llvm.nvvm.suld.2d.i32.trap llvm.nvvm.suld.2d.i32.zero llvm.nvvm.suld.2d.i64.clamp llvm.nvvm.suld.2d.i64.trap llvm.nvvm.suld.2d.i64.zero llvm.nvvm.suld.2d.i8.clamp llvm.nvvm.suld.2d.i8.trap llvm.nvvm.suld.2d.i8.zero llvm.nvvm.suld.2d.v2i16.clamp llvm.nvvm.suld.2d.v2i16.trap llvm.nvvm.suld.2d.v2i16.zero llvm.nvvm.suld.2d.v2i32.clamp llvm.nvvm.suld.2d.v2i32.trap llvm.nvvm.suld.2d.v2i32.zero llvm.nvvm.suld.2d.v2i64.clamp llvm.nvvm.suld.2d.v2i64.trap llvm.nvvm.suld.2d.v2i64.zero llvm.nvvm.suld.2d.v2i8.clamp llvm.nvvm.suld.2d.v2i8.trap llvm.nvvm.suld.2d.v2i8.zero llvm.nvvm.suld.2d.v4i16.clamp llvm.nvvm.suld.2d.v4i16.trap llvm.nvvm.suld.2d.v4i16.zero llvm.nvvm.suld.2d.v4i32.clamp llvm.nvvm.suld.2d.v4i32.trap llvm.nvvm.suld.2d.v4i32.zero llvm.nvvm.suld.2d.v4i8.clamp llvm.nvvm.suld.2d.v4i8.trap llvm.nvvm.suld.2d.v4i8.zero llvm.nvvm.suld.3d.i16.clamp llvm.nvvm.suld.3d.i16.trap llvm.nvvm.suld.3d.i16.zero llvm.nvvm.suld.3d.i32.clamp llvm.nvvm.suld.3d.i32.trap llvm.nvvm.suld.3d.i32.zero llvm.nvvm.suld.3d.i64.clamp llvm.nvvm.suld.3d.i64.trap llvm.nvvm.suld.3d.i64.zero llvm.nvvm.suld.3d.i8.clamp llvm.nvvm.suld.3d.i8.trap llvm.nvvm.suld.3d.i8.zero llvm.nvvm.suld.3d.v2i16.clamp llvm.nvvm.suld.3d.v2i16.trap llvm.nvvm.suld.3d.v2i16.zero llvm.nvvm.suld.3d.v2i32.clamp llvm.nvvm.suld.3d.v2i32.trap llvm.nvvm.suld.3d.v2i32.zero llvm.nvvm.suld.3d.v2i64.clamp llvm.nvvm.suld.3d.v2i64.trap llvm.nvvm.suld.3d.v2i64.zero llvm.nvvm.suld.3d.v2i8.clamp llvm.nvvm.suld.3d.v2i8.trap llvm.nvvm.suld.3d.v2i8.zero llvm.nvvm.suld.3d.v4i16.clamp llvm.nvvm.suld.3d.v4i16.trap llvm.nvvm.suld.3d.v4i16.zero llvm.nvvm.suld.3d.v4i32.clamp llvm.nvvm.suld.3d.v4i32.trap llvm.nvvm.suld.3d.v4i32.zero llvm.nvvm.suld.3d.v4i8.clamp llvm.nvvm.suld.3d.v4i8.trap llvm.nvvm.suld.3d.v4i8.zero llvm.nvvm.suq.array.size llvm.nvvm.suq.channel.data.type llvm.nvvm.suq.channel.order llvm.nvvm.suq.depth llvm.nvvm.suq.height llvm.nvvm.suq.width llvm.nvvm.sust.b.1d.array.i16.clamp llvm.nvvm.sust.b.1d.array.i16.trap llvm.nvvm.sust.b.1d.array.i16.zero llvm.nvvm.sust.b.1d.array.i32.clamp llvm.nvvm.sust.b.1d.array.i32.trap llvm.nvvm.sust.b.1d.array.i32.zero llvm.nvvm.sust.b.1d.array.i64.clamp llvm.nvvm.sust.b.1d.array.i64.trap llvm.nvvm.sust.b.1d.array.i64.zero llvm.nvvm.sust.b.1d.array.i8.clamp llvm.nvvm.sust.b.1d.array.i8.trap llvm.nvvm.sust.b.1d.array.i8.zero llvm.nvvm.sust.b.1d.array.v2i16.clamp llvm.nvvm.sust.b.1d.array.v2i16.trap llvm.nvvm.sust.b.1d.array.v2i16.zero llvm.nvvm.sust.b.1d.array.v2i32.clamp llvm.nvvm.sust.b.1d.array.v2i32.trap llvm.nvvm.sust.b.1d.array.v2i32.zero llvm.nvvm.sust.b.1d.array.v2i64.clamp llvm.nvvm.sust.b.1d.array.v2i64.trap llvm.nvvm.sust.b.1d.array.v2i64.zero llvm.nvvm.sust.b.1d.array.v2i8.clamp llvm.nvvm.sust.b.1d.array.v2i8.trap llvm.nvvm.sust.b.1d.array.v2i8.zero llvm.nvvm.sust.b.1d.array.v4i16.clamp llvm.nvvm.sust.b.1d.array.v4i16.trap llvm.nvvm.sust.b.1d.array.v4i16.zero llvm.nvvm.sust.b.1d.array.v4i32.clamp llvm.nvvm.sust.b.1d.array.v4i32.trap llvm.nvvm.sust.b.1d.array.v4i32.zero llvm.nvvm.sust.b.1d.array.v4i8.clamp llvm.nvvm.sust.b.1d.array.v4i8.trap llvm.nvvm.sust.b.1d.array.v4i8.zero llvm.nvvm.sust.b.1d.i16.clamp llvm.nvvm.sust.b.1d.i16.trap llvm.nvvm.sust.b.1d.i16.zero llvm.nvvm.sust.b.1d.i32.clamp llvm.nvvm.sust.b.1d.i32.trap llvm.nvvm.sust.b.1d.i32.zero llvm.nvvm.sust.b.1d.i64.clamp llvm.nvvm.sust.b.1d.i64.trap llvm.nvvm.sust.b.1d.i64.zero llvm.nvvm.sust.b.1d.i8.clamp llvm.nvvm.sust.b.1d.i8.trap llvm.nvvm.sust.b.1d.i8.zero llvm.nvvm.sust.b.1d.v2i16.clamp llvm.nvvm.sust.b.1d.v2i16.trap llvm.nvvm.sust.b.1d.v2i16.zero llvm.nvvm.sust.b.1d.v2i32.clamp llvm.nvvm.sust.b.1d.v2i32.trap llvm.nvvm.sust.b.1d.v2i32.zero llvm.nvvm.sust.b.1d.v2i64.clamp llvm.nvvm.sust.b.1d.v2i64.trap llvm.nvvm.sust.b.1d.v2i64.zero llvm.nvvm.sust.b.1d.v2i8.clamp llvm.nvvm.sust.b.1d.v2i8.trap llvm.nvvm.sust.b.1d.v2i8.zero llvm.nvvm.sust.b.1d.v4i16.clamp llvm.nvvm.sust.b.1d.v4i16.trap llvm.nvvm.sust.b.1d.v4i16.zero llvm.nvvm.sust.b.1d.v4i32.clamp llvm.nvvm.sust.b.1d.v4i32.trap llvm.nvvm.sust.b.1d.v4i32.zero llvm.nvvm.sust.b.1d.v4i8.clamp llvm.nvvm.sust.b.1d.v4i8.trap llvm.nvvm.sust.b.1d.v4i8.zero llvm.nvvm.sust.b.2d.array.i16.clamp llvm.nvvm.sust.b.2d.array.i16.trap llvm.nvvm.sust.b.2d.array.i16.zero llvm.nvvm.sust.b.2d.array.i32.clamp llvm.nvvm.sust.b.2d.array.i32.trap llvm.nvvm.sust.b.2d.array.i32.zero llvm.nvvm.sust.b.2d.array.i64.clamp llvm.nvvm.sust.b.2d.array.i64.trap llvm.nvvm.sust.b.2d.array.i64.zero llvm.nvvm.sust.b.2d.array.i8.clamp llvm.nvvm.sust.b.2d.array.i8.trap llvm.nvvm.sust.b.2d.array.i8.zero llvm.nvvm.sust.b.2d.array.v2i16.clamp llvm.nvvm.sust.b.2d.array.v2i16.trap llvm.nvvm.sust.b.2d.array.v2i16.zero llvm.nvvm.sust.b.2d.array.v2i32.clamp llvm.nvvm.sust.b.2d.array.v2i32.trap llvm.nvvm.sust.b.2d.array.v2i32.zero llvm.nvvm.sust.b.2d.array.v2i64.clamp llvm.nvvm.sust.b.2d.array.v2i64.trap llvm.nvvm.sust.b.2d.array.v2i64.zero llvm.nvvm.sust.b.2d.array.v2i8.clamp llvm.nvvm.sust.b.2d.array.v2i8.trap llvm.nvvm.sust.b.2d.array.v2i8.zero llvm.nvvm.sust.b.2d.array.v4i16.clamp llvm.nvvm.sust.b.2d.array.v4i16.trap llvm.nvvm.sust.b.2d.array.v4i16.zero llvm.nvvm.sust.b.2d.array.v4i32.clamp llvm.nvvm.sust.b.2d.array.v4i32.trap llvm.nvvm.sust.b.2d.array.v4i32.zero llvm.nvvm.sust.b.2d.array.v4i8.clamp llvm.nvvm.sust.b.2d.array.v4i8.trap llvm.nvvm.sust.b.2d.array.v4i8.zero llvm.nvvm.sust.b.2d.i16.clamp llvm.nvvm.sust.b.2d.i16.trap llvm.nvvm.sust.b.2d.i16.zero llvm.nvvm.sust.b.2d.i32.clamp llvm.nvvm.sust.b.2d.i32.trap llvm.nvvm.sust.b.2d.i32.zero llvm.nvvm.sust.b.2d.i64.clamp llvm.nvvm.sust.b.2d.i64.trap llvm.nvvm.sust.b.2d.i64.zero llvm.nvvm.sust.b.2d.i8.clamp llvm.nvvm.sust.b.2d.i8.trap llvm.nvvm.sust.b.2d.i8.zero llvm.nvvm.sust.b.2d.v2i16.clamp llvm.nvvm.sust.b.2d.v2i16.trap llvm.nvvm.sust.b.2d.v2i16.zero llvm.nvvm.sust.b.2d.v2i32.clamp llvm.nvvm.sust.b.2d.v2i32.trap llvm.nvvm.sust.b.2d.v2i32.zero llvm.nvvm.sust.b.2d.v2i64.clamp llvm.nvvm.sust.b.2d.v2i64.trap llvm.nvvm.sust.b.2d.v2i64.zero llvm.nvvm.sust.b.2d.v2i8.clamp llvm.nvvm.sust.b.2d.v2i8.trap llvm.nvvm.sust.b.2d.v2i8.zero llvm.nvvm.sust.b.2d.v4i16.clamp llvm.nvvm.sust.b.2d.v4i16.trap llvm.nvvm.sust.b.2d.v4i16.zero llvm.nvvm.sust.b.2d.v4i32.clamp llvm.nvvm.sust.b.2d.v4i32.trap llvm.nvvm.sust.b.2d.v4i32.zero llvm.nvvm.sust.b.2d.v4i8.clamp llvm.nvvm.sust.b.2d.v4i8.trap llvm.nvvm.sust.b.2d.v4i8.zero llvm.nvvm.sust.b.3d.i16.clamp llvm.nvvm.sust.b.3d.i16.trap llvm.nvvm.sust.b.3d.i16.zero llvm.nvvm.sust.b.3d.i32.clamp llvm.nvvm.sust.b.3d.i32.trap llvm.nvvm.sust.b.3d.i32.zero llvm.nvvm.sust.b.3d.i64.clamp llvm.nvvm.sust.b.3d.i64.trap llvm.nvvm.sust.b.3d.i64.zero llvm.nvvm.sust.b.3d.i8.clamp llvm.nvvm.sust.b.3d.i8.trap llvm.nvvm.sust.b.3d.i8.zero llvm.nvvm.sust.b.3d.v2i16.clamp llvm.nvvm.sust.b.3d.v2i16.trap llvm.nvvm.sust.b.3d.v2i16.zero llvm.nvvm.sust.b.3d.v2i32.clamp llvm.nvvm.sust.b.3d.v2i32.trap llvm.nvvm.sust.b.3d.v2i32.zero llvm.nvvm.sust.b.3d.v2i64.clamp llvm.nvvm.sust.b.3d.v2i64.trap llvm.nvvm.sust.b.3d.v2i64.zero llvm.nvvm.sust.b.3d.v2i8.clamp llvm.nvvm.sust.b.3d.v2i8.trap llvm.nvvm.sust.b.3d.v2i8.zero llvm.nvvm.sust.b.3d.v4i16.clamp llvm.nvvm.sust.b.3d.v4i16.trap llvm.nvvm.sust.b.3d.v4i16.zero llvm.nvvm.sust.b.3d.v4i32.clamp llvm.nvvm.sust.b.3d.v4i32.trap llvm.nvvm.sust.b.3d.v4i32.zero llvm.nvvm.sust.b.3d.v4i8.clamp llvm.nvvm.sust.b.3d.v4i8.trap llvm.nvvm.sust.b.3d.v4i8.zero llvm.nvvm.sust.p.1d.array.i16.trap llvm.nvvm.sust.p.1d.array.i32.trap llvm.nvvm.sust.p.1d.array.i8.trap llvm.nvvm.sust.p.1d.array.v2i16.trap llvm.nvvm.sust.p.1d.array.v2i32.trap llvm.nvvm.sust.p.1d.array.v2i8.trap llvm.nvvm.sust.p.1d.array.v4i16.trap llvm.nvvm.sust.p.1d.array.v4i32.trap llvm.nvvm.sust.p.1d.array.v4i8.trap llvm.nvvm.sust.p.1d.i16.trap llvm.nvvm.sust.p.1d.i32.trap llvm.nvvm.sust.p.1d.i8.trap llvm.nvvm.sust.p.1d.v2i16.trap llvm.nvvm.sust.p.1d.v2i32.trap llvm.nvvm.sust.p.1d.v2i8.trap llvm.nvvm.sust.p.1d.v4i16.trap llvm.nvvm.sust.p.1d.v4i32.trap llvm.nvvm.sust.p.1d.v4i8.trap llvm.nvvm.sust.p.2d.array.i16.trap llvm.nvvm.sust.p.2d.array.i32.trap llvm.nvvm.sust.p.2d.array.i8.trap llvm.nvvm.sust.p.2d.array.v2i16.trap llvm.nvvm.sust.p.2d.array.v2i32.trap llvm.nvvm.sust.p.2d.array.v2i8.trap llvm.nvvm.sust.p.2d.array.v4i16.trap llvm.nvvm.sust.p.2d.array.v4i32.trap llvm.nvvm.sust.p.2d.array.v4i8.trap llvm.nvvm.sust.p.2d.i16.trap llvm.nvvm.sust.p.2d.i32.trap llvm.nvvm.sust.p.2d.i8.trap llvm.nvvm.sust.p.2d.v2i16.trap llvm.nvvm.sust.p.2d.v2i32.trap llvm.nvvm.sust.p.2d.v2i8.trap llvm.nvvm.sust.p.2d.v4i16.trap llvm.nvvm.sust.p.2d.v4i32.trap llvm.nvvm.sust.p.2d.v4i8.trap llvm.nvvm.sust.p.3d.i16.trap llvm.nvvm.sust.p.3d.i32.trap llvm.nvvm.sust.p.3d.i8.trap llvm.nvvm.sust.p.3d.v2i16.trap llvm.nvvm.sust.p.3d.v2i32.trap llvm.nvvm.sust.p.3d.v2i8.trap llvm.nvvm.sust.p.3d.v4i16.trap llvm.nvvm.sust.p.3d.v4i32.trap llvm.nvvm.sust.p.3d.v4i8.trap llvm.nvvm.swap.lo.hi.b64 llvm.nvvm.tex.1d.array.grad.v4f32.f32 llvm.nvvm.tex.1d.array.grad.v4s32.f32 llvm.nvvm.tex.1d.array.grad.v4u32.f32 llvm.nvvm.tex.1d.array.level.v4f32.f32 llvm.nvvm.tex.1d.array.level.v4s32.f32 llvm.nvvm.tex.1d.array.level.v4u32.f32 llvm.nvvm.tex.1d.array.v4f32.f32 llvm.nvvm.tex.1d.array.v4f32.s32 llvm.nvvm.tex.1d.array.v4s32.f32 llvm.nvvm.tex.1d.array.v4s32.s32 llvm.nvvm.tex.1d.array.v4u32.f32 llvm.nvvm.tex.1d.array.v4u32.s32 llvm.nvvm.tex.1d.grad.v4f32.f32 llvm.nvvm.tex.1d.grad.v4s32.f32 llvm.nvvm.tex.1d.grad.v4u32.f32 llvm.nvvm.tex.1d.level.v4f32.f32 llvm.nvvm.tex.1d.level.v4s32.f32 llvm.nvvm.tex.1d.level.v4u32.f32 llvm.nvvm.tex.1d.v4f32.f32 llvm.nvvm.tex.1d.v4f32.s32 llvm.nvvm.tex.1d.v4s32.f32 llvm.nvvm.tex.1d.v4s32.s32 llvm.nvvm.tex.1d.v4u32.f32 llvm.nvvm.tex.1d.v4u32.s32 llvm.nvvm.tex.2d.array.grad.v4f32.f32 llvm.nvvm.tex.2d.array.grad.v4s32.f32 llvm.nvvm.tex.2d.array.grad.v4u32.f32 llvm.nvvm.tex.2d.array.level.v4f32.f32 llvm.nvvm.tex.2d.array.level.v4s32.f32 llvm.nvvm.tex.2d.array.level.v4u32.f32 llvm.nvvm.tex.2d.array.v4f32.f32 llvm.nvvm.tex.2d.array.v4f32.s32 llvm.nvvm.tex.2d.array.v4s32.f32 llvm.nvvm.tex.2d.array.v4s32.s32 llvm.nvvm.tex.2d.array.v4u32.f32 llvm.nvvm.tex.2d.array.v4u32.s32 llvm.nvvm.tex.2d.grad.v4f32.f32 llvm.nvvm.tex.2d.grad.v4s32.f32 llvm.nvvm.tex.2d.grad.v4u32.f32 llvm.nvvm.tex.2d.level.v4f32.f32 llvm.nvvm.tex.2d.level.v4s32.f32 llvm.nvvm.tex.2d.level.v4u32.f32 llvm.nvvm.tex.2d.v4f32.f32 llvm.nvvm.tex.2d.v4f32.s32 llvm.nvvm.tex.2d.v4s32.f32 llvm.nvvm.tex.2d.v4s32.s32 llvm.nvvm.tex.2d.v4u32.f32 llvm.nvvm.tex.2d.v4u32.s32 llvm.nvvm.tex.3d.grad.v4f32.f32 llvm.nvvm.tex.3d.grad.v4s32.f32 llvm.nvvm.tex.3d.grad.v4u32.f32 llvm.nvvm.tex.3d.level.v4f32.f32 llvm.nvvm.tex.3d.level.v4s32.f32 llvm.nvvm.tex.3d.level.v4u32.f32 llvm.nvvm.tex.3d.v4f32.f32 llvm.nvvm.tex.3d.v4f32.s32 llvm.nvvm.tex.3d.v4s32.f32 llvm.nvvm.tex.3d.v4s32.s32 llvm.nvvm.tex.3d.v4u32.f32 llvm.nvvm.tex.3d.v4u32.s32 llvm.nvvm.tex.cube.array.level.v4f32.f32 llvm.nvvm.tex.cube.array.level.v4s32.f32 llvm.nvvm.tex.cube.array.level.v4u32.f32 llvm.nvvm.tex.cube.array.v4f32.f32 llvm.nvvm.tex.cube.array.v4s32.f32 llvm.nvvm.tex.cube.array.v4u32.f32 llvm.nvvm.tex.cube.level.v4f32.f32 llvm.nvvm.tex.cube.level.v4s32.f32 llvm.nvvm.tex.cube.level.v4u32.f32 llvm.nvvm.tex.cube.v4f32.f32 llvm.nvvm.tex.cube.v4s32.f32 llvm.nvvm.tex.cube.v4u32.f32 llvm.nvvm.tex.unified.1d.array.grad.v4f32.f32 llvm.nvvm.tex.unified.1d.array.grad.v4s32.f32 llvm.nvvm.tex.unified.1d.array.grad.v4u32.f32 llvm.nvvm.tex.unified.1d.array.level.v4f32.f32 llvm.nvvm.tex.unified.1d.array.level.v4s32.f32 llvm.nvvm.tex.unified.1d.array.level.v4u32.f32 llvm.nvvm.tex.unified.1d.array.v4f32.f32 llvm.nvvm.tex.unified.1d.array.v4f32.s32 llvm.nvvm.tex.unified.1d.array.v4s32.f32 llvm.nvvm.tex.unified.1d.array.v4s32.s32 llvm.nvvm.tex.unified.1d.array.v4u32.f32 llvm.nvvm.tex.unified.1d.array.v4u32.s32 llvm.nvvm.tex.unified.1d.grad.v4f32.f32 llvm.nvvm.tex.unified.1d.grad.v4s32.f32 llvm.nvvm.tex.unified.1d.grad.v4u32.f32 llvm.nvvm.tex.unified.1d.level.v4f32.f32 llvm.nvvm.tex.unified.1d.level.v4s32.f32 llvm.nvvm.tex.unified.1d.level.v4u32.f32 llvm.nvvm.tex.unified.1d.v4f32.f32 llvm.nvvm.tex.unified.1d.v4f32.s32 llvm.nvvm.tex.unified.1d.v4s32.f32 llvm.nvvm.tex.unified.1d.v4s32.s32 llvm.nvvm.tex.unified.1d.v4u32.f32 llvm.nvvm.tex.unified.1d.v4u32.s32 llvm.nvvm.tex.unified.2d.array.grad.v4f32.f32 llvm.nvvm.tex.unified.2d.array.grad.v4s32.f32 llvm.nvvm.tex.unified.2d.array.grad.v4u32.f32 llvm.nvvm.tex.unified.2d.array.level.v4f32.f32 llvm.nvvm.tex.unified.2d.array.level.v4s32.f32 llvm.nvvm.tex.unified.2d.array.level.v4u32.f32 llvm.nvvm.tex.unified.2d.array.v4f32.f32 llvm.nvvm.tex.unified.2d.array.v4f32.s32 llvm.nvvm.tex.unified.2d.array.v4s32.f32 llvm.nvvm.tex.unified.2d.array.v4s32.s32 llvm.nvvm.tex.unified.2d.array.v4u32.f32 llvm.nvvm.tex.unified.2d.array.v4u32.s32 llvm.nvvm.tex.unified.2d.grad.v4f32.f32 llvm.nvvm.tex.unified.2d.grad.v4s32.f32 llvm.nvvm.tex.unified.2d.grad.v4u32.f32 llvm.nvvm.tex.unified.2d.level.v4f32.f32 llvm.nvvm.tex.unified.2d.level.v4s32.f32 llvm.nvvm.tex.unified.2d.level.v4u32.f32 llvm.nvvm.tex.unified.2d.v4f32.f32 llvm.nvvm.tex.unified.2d.v4f32.s32 llvm.nvvm.tex.unified.2d.v4s32.f32 llvm.nvvm.tex.unified.2d.v4s32.s32 llvm.nvvm.tex.unified.2d.v4u32.f32 llvm.nvvm.tex.unified.2d.v4u32.s32 llvm.nvvm.tex.unified.3d.grad.v4f32.f32 llvm.nvvm.tex.unified.3d.grad.v4s32.f32 llvm.nvvm.tex.unified.3d.grad.v4u32.f32 llvm.nvvm.tex.unified.3d.level.v4f32.f32 llvm.nvvm.tex.unified.3d.level.v4s32.f32 llvm.nvvm.tex.unified.3d.level.v4u32.f32 llvm.nvvm.tex.unified.3d.v4f32.f32 llvm.nvvm.tex.unified.3d.v4f32.s32 llvm.nvvm.tex.unified.3d.v4s32.f32 llvm.nvvm.tex.unified.3d.v4s32.s32 llvm.nvvm.tex.unified.3d.v4u32.f32 llvm.nvvm.tex.unified.3d.v4u32.s32 llvm.nvvm.tex.unified.cube.array.level.v4f32.f32 llvm.nvvm.tex.unified.cube.array.level.v4s32.f32 llvm.nvvm.tex.unified.cube.array.level.v4u32.f32 llvm.nvvm.tex.unified.cube.array.v4f32.f32 llvm.nvvm.tex.unified.cube.array.v4s32.f32 llvm.nvvm.tex.unified.cube.array.v4u32.f32 llvm.nvvm.tex.unified.cube.level.v4f32.f32 llvm.nvvm.tex.unified.cube.level.v4s32.f32 llvm.nvvm.tex.unified.cube.level.v4u32.f32 llvm.nvvm.tex.unified.cube.v4f32.f32 llvm.nvvm.tex.unified.cube.v4s32.f32 llvm.nvvm.tex.unified.cube.v4u32.f32 llvm.nvvm.texsurf.handle llvm.nvvm.texsurf.handle.internal llvm.nvvm.tld4.a.2d.v4f32.f32 llvm.nvvm.tld4.a.2d.v4s32.f32 llvm.nvvm.tld4.a.2d.v4u32.f32 llvm.nvvm.tld4.b.2d.v4f32.f32 llvm.nvvm.tld4.b.2d.v4s32.f32 llvm.nvvm.tld4.b.2d.v4u32.f32 llvm.nvvm.tld4.g.2d.v4f32.f32 llvm.nvvm.tld4.g.2d.v4s32.f32 llvm.nvvm.tld4.g.2d.v4u32.f32 llvm.nvvm.tld4.r.2d.v4f32.f32 llvm.nvvm.tld4.r.2d.v4s32.f32 llvm.nvvm.tld4.r.2d.v4u32.f32 llvm.nvvm.tld4.unified.a.2d.v4f32.f32 llvm.nvvm.tld4.unified.a.2d.v4s32.f32 llvm.nvvm.tld4.unified.a.2d.v4u32.f32 llvm.nvvm.tld4.unified.b.2d.v4f32.f32 llvm.nvvm.tld4.unified.b.2d.v4s32.f32 llvm.nvvm.tld4.unified.b.2d.v4u32.f32 llvm.nvvm.tld4.unified.g.2d.v4f32.f32 llvm.nvvm.tld4.unified.g.2d.v4s32.f32 llvm.nvvm.tld4.unified.g.2d.v4u32.f32 llvm.nvvm.tld4.unified.r.2d.v4f32.f32 llvm.nvvm.tld4.unified.r.2d.v4s32.f32 llvm.nvvm.tld4.unified.r.2d.v4u32.f32 llvm.nvvm.trunc.d llvm.nvvm.trunc.f llvm.nvvm.trunc.ftz.f llvm.nvvm.txq.array.size llvm.nvvm.txq.channel.data.type llvm.nvvm.txq.channel.order llvm.nvvm.txq.depth llvm.nvvm.txq.height llvm.nvvm.txq.num.mipmap.levels llvm.nvvm.txq.num.samples llvm.nvvm.txq.width llvm.nvvm.ui2d.rm llvm.nvvm.ui2d.rn llvm.nvvm.ui2d.rp llvm.nvvm.ui2d.rz llvm.nvvm.ui2f.rm llvm.nvvm.ui2f.rn llvm.nvvm.ui2f.rp llvm.nvvm.ui2f.rz llvm.nvvm.ull2d.rm llvm.nvvm.ull2d.rn llvm.nvvm.ull2d.rp llvm.nvvm.ull2d.rz llvm.nvvm.ull2f.rm llvm.nvvm.ull2f.rn llvm.nvvm.ull2f.rp llvm.nvvm.ull2f.rz llvm.objectsize llvm.pcmarker llvm.pow llvm.powi llvm.ppc.altivec.crypto.vcipher llvm.ppc.altivec.crypto.vcipherlast llvm.ppc.altivec.crypto.vncipher llvm.ppc.altivec.crypto.vncipherlast llvm.ppc.altivec.crypto.vpermxor llvm.ppc.altivec.crypto.vpmsumb llvm.ppc.altivec.crypto.vpmsumd llvm.ppc.altivec.crypto.vpmsumh llvm.ppc.altivec.crypto.vpmsumw llvm.ppc.altivec.crypto.vsbox llvm.ppc.altivec.crypto.vshasigmad llvm.ppc.altivec.crypto.vshasigmaw llvm.ppc.altivec.dss llvm.ppc.altivec.dssall llvm.ppc.altivec.dst llvm.ppc.altivec.dstst llvm.ppc.altivec.dststt llvm.ppc.altivec.dstt llvm.ppc.altivec.lvebx llvm.ppc.altivec.lvehx llvm.ppc.altivec.lvewx llvm.ppc.altivec.lvsl llvm.ppc.altivec.lvsr llvm.ppc.altivec.lvx llvm.ppc.altivec.lvxl llvm.ppc.altivec.mfvscr llvm.ppc.altivec.mtvscr llvm.ppc.altivec.stvebx llvm.ppc.altivec.stvehx llvm.ppc.altivec.stvewx llvm.ppc.altivec.stvx llvm.ppc.altivec.stvxl llvm.ppc.altivec.vaddcuq llvm.ppc.altivec.vaddcuw llvm.ppc.altivec.vaddecuq llvm.ppc.altivec.vaddeuqm llvm.ppc.altivec.vaddsbs llvm.ppc.altivec.vaddshs llvm.ppc.altivec.vaddsws llvm.ppc.altivec.vaddubs llvm.ppc.altivec.vadduhs llvm.ppc.altivec.vadduws llvm.ppc.altivec.vavgsb llvm.ppc.altivec.vavgsh llvm.ppc.altivec.vavgsw llvm.ppc.altivec.vavgub llvm.ppc.altivec.vavguh llvm.ppc.altivec.vavguw llvm.ppc.altivec.vbpermq llvm.ppc.altivec.vcfsx llvm.ppc.altivec.vcfux llvm.ppc.altivec.vcmpbfp llvm.ppc.altivec.vcmpbfp.p llvm.ppc.altivec.vcmpeqfp llvm.ppc.altivec.vcmpeqfp.p llvm.ppc.altivec.vcmpequb llvm.ppc.altivec.vcmpequb.p llvm.ppc.altivec.vcmpequd llvm.ppc.altivec.vcmpequd.p llvm.ppc.altivec.vcmpequh llvm.ppc.altivec.vcmpequh.p llvm.ppc.altivec.vcmpequw llvm.ppc.altivec.vcmpequw.p llvm.ppc.altivec.vcmpgefp llvm.ppc.altivec.vcmpgefp.p llvm.ppc.altivec.vcmpgtfp llvm.ppc.altivec.vcmpgtfp.p llvm.ppc.altivec.vcmpgtsb llvm.ppc.altivec.vcmpgtsb.p llvm.ppc.altivec.vcmpgtsd llvm.ppc.altivec.vcmpgtsd.p llvm.ppc.altivec.vcmpgtsh llvm.ppc.altivec.vcmpgtsh.p llvm.ppc.altivec.vcmpgtsw llvm.ppc.altivec.vcmpgtsw.p llvm.ppc.altivec.vcmpgtub llvm.ppc.altivec.vcmpgtub.p llvm.ppc.altivec.vcmpgtud llvm.ppc.altivec.vcmpgtud.p llvm.ppc.altivec.vcmpgtuh llvm.ppc.altivec.vcmpgtuh.p llvm.ppc.altivec.vcmpgtuw llvm.ppc.altivec.vcmpgtuw.p llvm.ppc.altivec.vctsxs llvm.ppc.altivec.vctuxs llvm.ppc.altivec.vexptefp llvm.ppc.altivec.vgbbd llvm.ppc.altivec.vlogefp llvm.ppc.altivec.vmaddfp llvm.ppc.altivec.vmaxfp llvm.ppc.altivec.vmaxsb llvm.ppc.altivec.vmaxsd llvm.ppc.altivec.vmaxsh llvm.ppc.altivec.vmaxsw llvm.ppc.altivec.vmaxub llvm.ppc.altivec.vmaxud llvm.ppc.altivec.vmaxuh llvm.ppc.altivec.vmaxuw llvm.ppc.altivec.vmhaddshs llvm.ppc.altivec.vmhraddshs llvm.ppc.altivec.vminfp llvm.ppc.altivec.vminsb llvm.ppc.altivec.vminsd llvm.ppc.altivec.vminsh llvm.ppc.altivec.vminsw llvm.ppc.altivec.vminub llvm.ppc.altivec.vminud llvm.ppc.altivec.vminuh llvm.ppc.altivec.vminuw llvm.ppc.altivec.vmladduhm llvm.ppc.altivec.vmsummbm llvm.ppc.altivec.vmsumshm llvm.ppc.altivec.vmsumshs llvm.ppc.altivec.vmsumubm llvm.ppc.altivec.vmsumuhm llvm.ppc.altivec.vmsumuhs llvm.ppc.altivec.vmulesb llvm.ppc.altivec.vmulesh llvm.ppc.altivec.vmulesw llvm.ppc.altivec.vmuleub llvm.ppc.altivec.vmuleuh llvm.ppc.altivec.vmuleuw llvm.ppc.altivec.vmulosb llvm.ppc.altivec.vmulosh llvm.ppc.altivec.vmulosw llvm.ppc.altivec.vmuloub llvm.ppc.altivec.vmulouh llvm.ppc.altivec.vmulouw llvm.ppc.altivec.vnmsubfp llvm.ppc.altivec.vperm llvm.ppc.altivec.vpkpx llvm.ppc.altivec.vpksdss llvm.ppc.altivec.vpksdus llvm.ppc.altivec.vpkshss llvm.ppc.altivec.vpkshus llvm.ppc.altivec.vpkswss llvm.ppc.altivec.vpkswus llvm.ppc.altivec.vpkudus llvm.ppc.altivec.vpkuhus llvm.ppc.altivec.vpkuwus llvm.ppc.altivec.vrefp llvm.ppc.altivec.vrfim llvm.ppc.altivec.vrfin llvm.ppc.altivec.vrfip llvm.ppc.altivec.vrfiz llvm.ppc.altivec.vrlb llvm.ppc.altivec.vrld llvm.ppc.altivec.vrlh llvm.ppc.altivec.vrlw llvm.ppc.altivec.vrsqrtefp llvm.ppc.altivec.vsel llvm.ppc.altivec.vsl llvm.ppc.altivec.vslb llvm.ppc.altivec.vslh llvm.ppc.altivec.vslo llvm.ppc.altivec.vslw llvm.ppc.altivec.vsr llvm.ppc.altivec.vsrab llvm.ppc.altivec.vsrah llvm.ppc.altivec.vsraw llvm.ppc.altivec.vsrb llvm.ppc.altivec.vsrh llvm.ppc.altivec.vsro llvm.ppc.altivec.vsrw llvm.ppc.altivec.vsubcuq llvm.ppc.altivec.vsubcuw llvm.ppc.altivec.vsubecuq llvm.ppc.altivec.vsubeuqm llvm.ppc.altivec.vsubsbs llvm.ppc.altivec.vsubshs llvm.ppc.altivec.vsubsws llvm.ppc.altivec.vsububs llvm.ppc.altivec.vsubuhs llvm.ppc.altivec.vsubuws llvm.ppc.altivec.vsum2sws llvm.ppc.altivec.vsum4sbs llvm.ppc.altivec.vsum4shs llvm.ppc.altivec.vsum4ubs llvm.ppc.altivec.vsumsws llvm.ppc.altivec.vupkhpx llvm.ppc.altivec.vupkhsb llvm.ppc.altivec.vupkhsh llvm.ppc.altivec.vupkhsw llvm.ppc.altivec.vupklpx llvm.ppc.altivec.vupklsb llvm.ppc.altivec.vupklsh llvm.ppc.altivec.vupklsw llvm.ppc.bpermd llvm.ppc.dcba llvm.ppc.dcbf llvm.ppc.dcbi llvm.ppc.dcbst llvm.ppc.dcbt llvm.ppc.dcbtst llvm.ppc.dcbz llvm.ppc.dcbzl llvm.ppc.divde llvm.ppc.divdeu llvm.ppc.divwe llvm.ppc.divweu llvm.ppc.get.texasr llvm.ppc.get.texasru llvm.ppc.get.tfhar llvm.ppc.get.tfiar llvm.ppc.is.decremented.ctr.nonzero llvm.ppc.lwsync llvm.ppc.mtctr llvm.ppc.qpx.qvfabs llvm.ppc.qpx.qvfadd llvm.ppc.qpx.qvfadds llvm.ppc.qpx.qvfcfid llvm.ppc.qpx.qvfcfids llvm.ppc.qpx.qvfcfidu llvm.ppc.qpx.qvfcfidus llvm.ppc.qpx.qvfcmpeq llvm.ppc.qpx.qvfcmpgt llvm.ppc.qpx.qvfcmplt llvm.ppc.qpx.qvfcpsgn llvm.ppc.qpx.qvfctid llvm.ppc.qpx.qvfctidu llvm.ppc.qpx.qvfctiduz llvm.ppc.qpx.qvfctidz llvm.ppc.qpx.qvfctiw llvm.ppc.qpx.qvfctiwu llvm.ppc.qpx.qvfctiwuz llvm.ppc.qpx.qvfctiwz llvm.ppc.qpx.qvflogical llvm.ppc.qpx.qvfmadd llvm.ppc.qpx.qvfmadds llvm.ppc.qpx.qvfmsub llvm.ppc.qpx.qvfmsubs llvm.ppc.qpx.qvfmul llvm.ppc.qpx.qvfmuls llvm.ppc.qpx.qvfnabs llvm.ppc.qpx.qvfneg llvm.ppc.qpx.qvfnmadd llvm.ppc.qpx.qvfnmadds llvm.ppc.qpx.qvfnmsub llvm.ppc.qpx.qvfnmsubs llvm.ppc.qpx.qvfperm llvm.ppc.qpx.qvfre llvm.ppc.qpx.qvfres llvm.ppc.qpx.qvfrim llvm.ppc.qpx.qvfrin llvm.ppc.qpx.qvfrip llvm.ppc.qpx.qvfriz llvm.ppc.qpx.qvfrsp llvm.ppc.qpx.qvfrsqrte llvm.ppc.qpx.qvfrsqrtes llvm.ppc.qpx.qvfsel llvm.ppc.qpx.qvfsub llvm.ppc.qpx.qvfsubs llvm.ppc.qpx.qvftstnan llvm.ppc.qpx.qvfxmadd llvm.ppc.qpx.qvfxmadds llvm.ppc.qpx.qvfxmul llvm.ppc.qpx.qvfxmuls llvm.ppc.qpx.qvfxxcpnmadd llvm.ppc.qpx.qvfxxcpnmadds llvm.ppc.qpx.qvfxxmadd llvm.ppc.qpx.qvfxxmadds llvm.ppc.qpx.qvfxxnpmadd llvm.ppc.qpx.qvfxxnpmadds llvm.ppc.qpx.qvgpci llvm.ppc.qpx.qvlfcd llvm.ppc.qpx.qvlfcda llvm.ppc.qpx.qvlfcs llvm.ppc.qpx.qvlfcsa llvm.ppc.qpx.qvlfd llvm.ppc.qpx.qvlfda llvm.ppc.qpx.qvlfiwa llvm.ppc.qpx.qvlfiwaa llvm.ppc.qpx.qvlfiwz llvm.ppc.qpx.qvlfiwza llvm.ppc.qpx.qvlfs llvm.ppc.qpx.qvlfsa llvm.ppc.qpx.qvlpcld llvm.ppc.qpx.qvlpcls llvm.ppc.qpx.qvlpcrd llvm.ppc.qpx.qvlpcrs llvm.ppc.qpx.qvstfcd llvm.ppc.qpx.qvstfcda llvm.ppc.qpx.qvstfcs llvm.ppc.qpx.qvstfcsa llvm.ppc.qpx.qvstfd llvm.ppc.qpx.qvstfda llvm.ppc.qpx.qvstfiw llvm.ppc.qpx.qvstfiwa llvm.ppc.qpx.qvstfs llvm.ppc.qpx.qvstfsa llvm.ppc.set.texasr llvm.ppc.set.texasru llvm.ppc.set.tfhar llvm.ppc.set.tfiar llvm.ppc.sync llvm.ppc.tabort llvm.ppc.tabortdc llvm.ppc.tabortdci llvm.ppc.tabortwc llvm.ppc.tabortwci llvm.ppc.tbegin llvm.ppc.tcheck llvm.ppc.tend llvm.ppc.tendall llvm.ppc.trechkpt llvm.ppc.treclaim llvm.ppc.tresume llvm.ppc.tsr llvm.ppc.tsuspend llvm.ppc.ttest llvm.ppc.vsx.lxvd2x llvm.ppc.vsx.lxvw4x llvm.ppc.vsx.stxvd2x llvm.ppc.vsx.stxvw4x llvm.ppc.vsx.xsmaxdp llvm.ppc.vsx.xsmindp llvm.ppc.vsx.xvcmpeqdp llvm.ppc.vsx.xvcmpeqdp.p llvm.ppc.vsx.xvcmpeqsp llvm.ppc.vsx.xvcmpeqsp.p llvm.ppc.vsx.xvcmpgedp llvm.ppc.vsx.xvcmpgedp.p llvm.ppc.vsx.xvcmpgesp llvm.ppc.vsx.xvcmpgesp.p llvm.ppc.vsx.xvcmpgtdp llvm.ppc.vsx.xvcmpgtdp.p llvm.ppc.vsx.xvcmpgtsp llvm.ppc.vsx.xvcmpgtsp.p llvm.ppc.vsx.xvdivdp llvm.ppc.vsx.xvdivsp llvm.ppc.vsx.xvmaxdp llvm.ppc.vsx.xvmaxsp llvm.ppc.vsx.xvmindp llvm.ppc.vsx.xvminsp llvm.ppc.vsx.xvrdpip llvm.ppc.vsx.xvredp llvm.ppc.vsx.xvresp llvm.ppc.vsx.xvrspip llvm.ppc.vsx.xvrsqrtedp llvm.ppc.vsx.xvrsqrtesp llvm.ppc.vsx.xxleqv llvm.prefetch llvm.ptr.annotation llvm.ptx.bar.sync llvm.ptx.read.clock llvm.ptx.read.clock64 llvm.ptx.read.ctaid.w llvm.ptx.read.ctaid.x llvm.ptx.read.ctaid.y llvm.ptx.read.ctaid.z llvm.ptx.read.gridid llvm.ptx.read.laneid llvm.ptx.read.lanemask.eq llvm.ptx.read.lanemask.ge llvm.ptx.read.lanemask.gt llvm.ptx.read.lanemask.le llvm.ptx.read.lanemask.lt llvm.ptx.read.nctaid.w llvm.ptx.read.nctaid.x llvm.ptx.read.nctaid.y llvm.ptx.read.nctaid.z llvm.ptx.read.nsmid llvm.ptx.read.ntid.w llvm.ptx.read.ntid.x llvm.ptx.read.ntid.y llvm.ptx.read.ntid.z llvm.ptx.read.nwarpid llvm.ptx.read.pm0 llvm.ptx.read.pm1 llvm.ptx.read.pm2 llvm.ptx.read.pm3 llvm.ptx.read.smid llvm.ptx.read.tid.w llvm.ptx.read.tid.x llvm.ptx.read.tid.y llvm.ptx.read.tid.z llvm.ptx.read.warpid llvm.r600.rat.store.typed llvm.r600.read.global.size.x llvm.r600.read.global.size.y llvm.r600.read.global.size.z llvm.r600.read.local.size.x llvm.r600.read.local.size.y llvm.r600.read.local.size.z llvm.r600.read.ngroups.x llvm.r600.read.ngroups.y llvm.r600.read.ngroups.z llvm.r600.read.tgid.x llvm.r600.read.tgid.y llvm.r600.read.tgid.z llvm.r600.read.tidig.x llvm.r600.read.tidig.y llvm.r600.read.tidig.z llvm.r600.read.workdim llvm.r600.rsq llvm.read_register llvm.readcyclecounter llvm.returnaddress llvm.rint llvm.round llvm.s390.etnd llvm.s390.lcbb llvm.s390.ntstg llvm.s390.ppa.txassist llvm.s390.tabort llvm.s390.tbegin llvm.s390.tbegin.nofloat llvm.s390.tbeginc llvm.s390.tend llvm.s390.vaccb llvm.s390.vacccq llvm.s390.vaccf llvm.s390.vaccg llvm.s390.vacch llvm.s390.vaccq llvm.s390.vacq llvm.s390.vaq llvm.s390.vavgb llvm.s390.vavgf llvm.s390.vavgg llvm.s390.vavgh llvm.s390.vavglb llvm.s390.vavglf llvm.s390.vavglg llvm.s390.vavglh llvm.s390.vceqbs llvm.s390.vceqfs llvm.s390.vceqgs llvm.s390.vceqhs llvm.s390.vchbs llvm.s390.vchfs llvm.s390.vchgs llvm.s390.vchhs llvm.s390.vchlbs llvm.s390.vchlfs llvm.s390.vchlgs llvm.s390.vchlhs llvm.s390.vcksm llvm.s390.verimb llvm.s390.verimf llvm.s390.verimg llvm.s390.verimh llvm.s390.verllb llvm.s390.verllf llvm.s390.verllg llvm.s390.verllh llvm.s390.verllvb llvm.s390.verllvf llvm.s390.verllvg llvm.s390.verllvh llvm.s390.vfaeb llvm.s390.vfaebs llvm.s390.vfaef llvm.s390.vfaefs llvm.s390.vfaeh llvm.s390.vfaehs llvm.s390.vfaezb llvm.s390.vfaezbs llvm.s390.vfaezf llvm.s390.vfaezfs llvm.s390.vfaezh llvm.s390.vfaezhs llvm.s390.vfcedbs llvm.s390.vfchdbs llvm.s390.vfchedbs llvm.s390.vfeeb llvm.s390.vfeebs llvm.s390.vfeef llvm.s390.vfeefs llvm.s390.vfeeh llvm.s390.vfeehs llvm.s390.vfeezb llvm.s390.vfeezbs llvm.s390.vfeezf llvm.s390.vfeezfs llvm.s390.vfeezh llvm.s390.vfeezhs llvm.s390.vfeneb llvm.s390.vfenebs llvm.s390.vfenef llvm.s390.vfenefs llvm.s390.vfeneh llvm.s390.vfenehs llvm.s390.vfenezb llvm.s390.vfenezbs llvm.s390.vfenezf llvm.s390.vfenezfs llvm.s390.vfenezh llvm.s390.vfenezhs llvm.s390.vfidb llvm.s390.vftcidb llvm.s390.vgfmab llvm.s390.vgfmaf llvm.s390.vgfmag llvm.s390.vgfmah llvm.s390.vgfmb llvm.s390.vgfmf llvm.s390.vgfmg llvm.s390.vgfmh llvm.s390.vistrb llvm.s390.vistrbs llvm.s390.vistrf llvm.s390.vistrfs llvm.s390.vistrh llvm.s390.vistrhs llvm.s390.vlbb llvm.s390.vll llvm.s390.vmaeb llvm.s390.vmaef llvm.s390.vmaeh llvm.s390.vmahb llvm.s390.vmahf llvm.s390.vmahh llvm.s390.vmaleb llvm.s390.vmalef llvm.s390.vmaleh llvm.s390.vmalhb llvm.s390.vmalhf llvm.s390.vmalhh llvm.s390.vmalob llvm.s390.vmalof llvm.s390.vmaloh llvm.s390.vmaob llvm.s390.vmaof llvm.s390.vmaoh llvm.s390.vmeb llvm.s390.vmef llvm.s390.vmeh llvm.s390.vmhb llvm.s390.vmhf llvm.s390.vmhh llvm.s390.vmleb llvm.s390.vmlef llvm.s390.vmleh llvm.s390.vmlhb llvm.s390.vmlhf llvm.s390.vmlhh llvm.s390.vmlob llvm.s390.vmlof llvm.s390.vmloh llvm.s390.vmob llvm.s390.vmof llvm.s390.vmoh llvm.s390.vpdi llvm.s390.vperm llvm.s390.vpklsf llvm.s390.vpklsfs llvm.s390.vpklsg llvm.s390.vpklsgs llvm.s390.vpklsh llvm.s390.vpklshs llvm.s390.vpksf llvm.s390.vpksfs llvm.s390.vpksg llvm.s390.vpksgs llvm.s390.vpksh llvm.s390.vpkshs llvm.s390.vsbcbiq llvm.s390.vsbiq llvm.s390.vscbib llvm.s390.vscbif llvm.s390.vscbig llvm.s390.vscbih llvm.s390.vscbiq llvm.s390.vsl llvm.s390.vslb llvm.s390.vsldb llvm.s390.vsq llvm.s390.vsra llvm.s390.vsrab llvm.s390.vsrl llvm.s390.vsrlb llvm.s390.vstl llvm.s390.vstrcb llvm.s390.vstrcbs llvm.s390.vstrcf llvm.s390.vstrcfs llvm.s390.vstrch llvm.s390.vstrchs llvm.s390.vstrczb llvm.s390.vstrczbs llvm.s390.vstrczf llvm.s390.vstrczfs llvm.s390.vstrczh llvm.s390.vstrczhs llvm.s390.vsumb llvm.s390.vsumgf llvm.s390.vsumgh llvm.s390.vsumh llvm.s390.vsumqf llvm.s390.vsumqg llvm.s390.vtm llvm.s390.vuphb llvm.s390.vuphf llvm.s390.vuphh llvm.s390.vuplb llvm.s390.vuplf llvm.s390.vuplhb llvm.s390.vuplhf llvm.s390.vuplhh llvm.s390.vuplhw llvm.s390.vupllb llvm.s390.vupllf llvm.s390.vupllh llvm.sadd.with.overflow llvm.setjmp llvm.siglongjmp llvm.sigsetjmp llvm.sin llvm.smul.with.overflow llvm.sqrt llvm.ssub.with.overflow llvm.stackguard llvm.stackprotector llvm.stackrestore llvm.stacksave llvm.thread.pointer llvm.trap llvm.trunc llvm.uadd.with.overflow llvm.umul.with.overflow llvm.usub.with.overflow llvm.va_copy llvm.va_end llvm.va_start llvm.var.annotation llvm.wasm.grow.memory llvm.wasm.memory.size llvm.write_register llvm.x86.3dnow.pavgusb llvm.x86.3dnow.pf2id llvm.x86.3dnow.pfacc llvm.x86.3dnow.pfadd llvm.x86.3dnow.pfcmpeq llvm.x86.3dnow.pfcmpge llvm.x86.3dnow.pfcmpgt llvm.x86.3dnow.pfmax llvm.x86.3dnow.pfmin llvm.x86.3dnow.pfmul llvm.x86.3dnow.pfrcp llvm.x86.3dnow.pfrcpit1 llvm.x86.3dnow.pfrcpit2 llvm.x86.3dnow.pfrsqit1 llvm.x86.3dnow.pfrsqrt llvm.x86.3dnow.pfsub llvm.x86.3dnow.pfsubr llvm.x86.3dnow.pi2fd llvm.x86.3dnow.pmulhrw llvm.x86.3dnowa.pf2iw llvm.x86.3dnowa.pfnacc llvm.x86.3dnowa.pfpnacc llvm.x86.3dnowa.pi2fw llvm.x86.3dnowa.pswapd llvm.x86.addcarry.u32 llvm.x86.addcarry.u64 llvm.x86.addcarryx.u32 llvm.x86.addcarryx.u64 llvm.x86.aesni.aesdec llvm.x86.aesni.aesdeclast llvm.x86.aesni.aesenc llvm.x86.aesni.aesenclast llvm.x86.aesni.aesimc llvm.x86.aesni.aeskeygenassist llvm.x86.avx.addsub.pd.256 llvm.x86.avx.addsub.ps.256 llvm.x86.avx.blendv.pd.256 llvm.x86.avx.blendv.ps.256 llvm.x86.avx.cmp.pd.256 llvm.x86.avx.cmp.ps.256 llvm.x86.avx.cvt.pd2.ps.256 llvm.x86.avx.cvt.pd2dq.256 llvm.x86.avx.cvt.ps2.pd.256 llvm.x86.avx.cvt.ps2dq.256 llvm.x86.avx.cvtdq2.pd.256 llvm.x86.avx.cvtdq2.ps.256 llvm.x86.avx.cvtt.pd2dq.256 llvm.x86.avx.cvtt.ps2dq.256 llvm.x86.avx.dp.ps.256 llvm.x86.avx.hadd.pd.256 llvm.x86.avx.hadd.ps.256 llvm.x86.avx.hsub.pd.256 llvm.x86.avx.hsub.ps.256 llvm.x86.avx.ldu.dq.256 llvm.x86.avx.maskload.pd llvm.x86.avx.maskload.pd.256 llvm.x86.avx.maskload.ps llvm.x86.avx.maskload.ps.256 llvm.x86.avx.maskstore.pd llvm.x86.avx.maskstore.pd.256 llvm.x86.avx.maskstore.ps llvm.x86.avx.maskstore.ps.256 llvm.x86.avx.max.pd.256 llvm.x86.avx.max.ps.256 llvm.x86.avx.min.pd.256 llvm.x86.avx.min.ps.256 llvm.x86.avx.movmsk.pd.256 llvm.x86.avx.movmsk.ps.256 llvm.x86.avx.ptestc.256 llvm.x86.avx.ptestnzc.256 llvm.x86.avx.ptestz.256 llvm.x86.avx.rcp.ps.256 llvm.x86.avx.round.pd.256 llvm.x86.avx.round.ps.256 llvm.x86.avx.rsqrt.ps.256 llvm.x86.avx.sqrt.pd.256 llvm.x86.avx.sqrt.ps.256 llvm.x86.avx.storeu.dq.256 llvm.x86.avx.storeu.pd.256 llvm.x86.avx.storeu.ps.256 llvm.x86.avx.vbroadcastf128.pd.256 llvm.x86.avx.vbroadcastf128.ps.256 llvm.x86.avx.vperm2f128.pd.256 llvm.x86.avx.vperm2f128.ps.256 llvm.x86.avx.vperm2f128.si.256 llvm.x86.avx.vpermilvar.pd llvm.x86.avx.vpermilvar.pd.256 llvm.x86.avx.vpermilvar.ps llvm.x86.avx.vpermilvar.ps.256 llvm.x86.avx.vtestc.pd llvm.x86.avx.vtestc.pd.256 llvm.x86.avx.vtestc.ps llvm.x86.avx.vtestc.ps.256 llvm.x86.avx.vtestnzc.pd llvm.x86.avx.vtestnzc.pd.256 llvm.x86.avx.vtestnzc.ps llvm.x86.avx.vtestnzc.ps.256 llvm.x86.avx.vtestz.pd llvm.x86.avx.vtestz.pd.256 llvm.x86.avx.vtestz.ps llvm.x86.avx.vtestz.ps.256 llvm.x86.avx.vzeroall llvm.x86.avx.vzeroupper llvm.x86.avx2.gather.d.d llvm.x86.avx2.gather.d.d.256 llvm.x86.avx2.gather.d.pd llvm.x86.avx2.gather.d.pd.256 llvm.x86.avx2.gather.d.ps llvm.x86.avx2.gather.d.ps.256 llvm.x86.avx2.gather.d.q llvm.x86.avx2.gather.d.q.256 llvm.x86.avx2.gather.q.d llvm.x86.avx2.gather.q.d.256 llvm.x86.avx2.gather.q.pd llvm.x86.avx2.gather.q.pd.256 llvm.x86.avx2.gather.q.ps llvm.x86.avx2.gather.q.ps.256 llvm.x86.avx2.gather.q.q llvm.x86.avx2.gather.q.q.256 llvm.x86.avx2.maskload.d llvm.x86.avx2.maskload.d.256 llvm.x86.avx2.maskload.q llvm.x86.avx2.maskload.q.256 llvm.x86.avx2.maskstore.d llvm.x86.avx2.maskstore.d.256 llvm.x86.avx2.maskstore.q llvm.x86.avx2.maskstore.q.256 llvm.x86.avx2.movntdqa llvm.x86.avx2.mpsadbw llvm.x86.avx2.pabs.b llvm.x86.avx2.pabs.d llvm.x86.avx2.pabs.w llvm.x86.avx2.packssdw llvm.x86.avx2.packsswb llvm.x86.avx2.packusdw llvm.x86.avx2.packuswb llvm.x86.avx2.padds.b llvm.x86.avx2.padds.w llvm.x86.avx2.paddus.b llvm.x86.avx2.paddus.w llvm.x86.avx2.pavg.b llvm.x86.avx2.pavg.w llvm.x86.avx2.pblendvb llvm.x86.avx2.permd llvm.x86.avx2.permps llvm.x86.avx2.phadd.d llvm.x86.avx2.phadd.sw llvm.x86.avx2.phadd.w llvm.x86.avx2.phsub.d llvm.x86.avx2.phsub.sw llvm.x86.avx2.phsub.w llvm.x86.avx2.pmadd.ub.sw llvm.x86.avx2.pmadd.wd llvm.x86.avx2.pmaxs.b llvm.x86.avx2.pmaxs.d llvm.x86.avx2.pmaxs.w llvm.x86.avx2.pmaxu.b llvm.x86.avx2.pmaxu.d llvm.x86.avx2.pmaxu.w llvm.x86.avx2.pmins.b llvm.x86.avx2.pmins.d llvm.x86.avx2.pmins.w llvm.x86.avx2.pminu.b llvm.x86.avx2.pminu.d llvm.x86.avx2.pminu.w llvm.x86.avx2.pmovmskb llvm.x86.avx2.pmovsxbd llvm.x86.avx2.pmovsxbq llvm.x86.avx2.pmovsxbw llvm.x86.avx2.pmovsxdq llvm.x86.avx2.pmovsxwd llvm.x86.avx2.pmovsxwq llvm.x86.avx2.pmovzxbd llvm.x86.avx2.pmovzxbq llvm.x86.avx2.pmovzxbw llvm.x86.avx2.pmovzxdq llvm.x86.avx2.pmovzxwd llvm.x86.avx2.pmovzxwq llvm.x86.avx2.pmul.dq llvm.x86.avx2.pmul.hr.sw llvm.x86.avx2.pmulh.w llvm.x86.avx2.pmulhu.w llvm.x86.avx2.pmulu.dq llvm.x86.avx2.psad.bw llvm.x86.avx2.pshuf.b llvm.x86.avx2.psign.b llvm.x86.avx2.psign.d llvm.x86.avx2.psign.w llvm.x86.avx2.psll.d llvm.x86.avx2.psll.q llvm.x86.avx2.psll.w llvm.x86.avx2.pslli.d llvm.x86.avx2.pslli.q llvm.x86.avx2.pslli.w llvm.x86.avx2.psllv.d llvm.x86.avx2.psllv.d.256 llvm.x86.avx2.psllv.q llvm.x86.avx2.psllv.q.256 llvm.x86.avx2.psra.d llvm.x86.avx2.psra.w llvm.x86.avx2.psrai.d llvm.x86.avx2.psrai.w llvm.x86.avx2.psrav.d llvm.x86.avx2.psrav.d.256 llvm.x86.avx2.psrl.d llvm.x86.avx2.psrl.q llvm.x86.avx2.psrl.w llvm.x86.avx2.psrli.d llvm.x86.avx2.psrli.q llvm.x86.avx2.psrli.w llvm.x86.avx2.psrlv.d llvm.x86.avx2.psrlv.d.256 llvm.x86.avx2.psrlv.q llvm.x86.avx2.psrlv.q.256 llvm.x86.avx2.psubs.b llvm.x86.avx2.psubs.w llvm.x86.avx2.psubus.b llvm.x86.avx2.psubus.w llvm.x86.avx2.vperm2i128 llvm.x86.avx512.broadcastmb.128 llvm.x86.avx512.broadcastmb.256 llvm.x86.avx512.broadcastmb.512 llvm.x86.avx512.broadcastmw.128 llvm.x86.avx512.broadcastmw.256 llvm.x86.avx512.broadcastmw.512 llvm.x86.avx512.cvtb2mask.128 llvm.x86.avx512.cvtb2mask.256 llvm.x86.avx512.cvtb2mask.512 llvm.x86.avx512.cvtd2mask.128 llvm.x86.avx512.cvtd2mask.256 llvm.x86.avx512.cvtd2mask.512 llvm.x86.avx512.cvtmask2b.128 llvm.x86.avx512.cvtmask2b.256 llvm.x86.avx512.cvtmask2b.512 llvm.x86.avx512.cvtmask2d.128 llvm.x86.avx512.cvtmask2d.256 llvm.x86.avx512.cvtmask2d.512 llvm.x86.avx512.cvtmask2q.128 llvm.x86.avx512.cvtmask2q.256 llvm.x86.avx512.cvtmask2q.512 llvm.x86.avx512.cvtmask2w.128 llvm.x86.avx512.cvtmask2w.256 llvm.x86.avx512.cvtmask2w.512 llvm.x86.avx512.cvtq2mask.128 llvm.x86.avx512.cvtq2mask.256 llvm.x86.avx512.cvtq2mask.512 llvm.x86.avx512.cvtsi2sd32 llvm.x86.avx512.cvtsi2sd64 llvm.x86.avx512.cvtsi2ss32 llvm.x86.avx512.cvtsi2ss64 llvm.x86.avx512.cvttsd2si llvm.x86.avx512.cvttsd2si64 llvm.x86.avx512.cvttsd2usi llvm.x86.avx512.cvttsd2usi64 llvm.x86.avx512.cvttss2si llvm.x86.avx512.cvttss2si64 llvm.x86.avx512.cvttss2usi llvm.x86.avx512.cvttss2usi64 llvm.x86.avx512.cvtusi2sd llvm.x86.avx512.cvtusi2ss llvm.x86.avx512.cvtusi642sd llvm.x86.avx512.cvtusi642ss llvm.x86.avx512.cvtw2mask.128 llvm.x86.avx512.cvtw2mask.256 llvm.x86.avx512.cvtw2mask.512 llvm.x86.avx512.exp2.pd llvm.x86.avx512.exp2.ps llvm.x86.avx512.gather.dpd.512 llvm.x86.avx512.gather.dpi.512 llvm.x86.avx512.gather.dpq.512 llvm.x86.avx512.gather.dps.512 llvm.x86.avx512.gather.qpd.512 llvm.x86.avx512.gather.qpi.512 llvm.x86.avx512.gather.qpq.512 llvm.x86.avx512.gather.qps.512 llvm.x86.avx512.gather3div2.df llvm.x86.avx512.gather3div2.di llvm.x86.avx512.gather3div4.df llvm.x86.avx512.gather3div4.di llvm.x86.avx512.gather3div4.sf llvm.x86.avx512.gather3div4.si llvm.x86.avx512.gather3div8.sf llvm.x86.avx512.gather3div8.si llvm.x86.avx512.gather3siv2.df llvm.x86.avx512.gather3siv2.di llvm.x86.avx512.gather3siv4.df llvm.x86.avx512.gather3siv4.di llvm.x86.avx512.gather3siv4.sf llvm.x86.avx512.gather3siv4.si llvm.x86.avx512.gather3siv8.sf llvm.x86.avx512.gather3siv8.si llvm.x86.avx512.gatherpf.dpd.512 llvm.x86.avx512.gatherpf.dps.512 llvm.x86.avx512.gatherpf.qpd.512 llvm.x86.avx512.gatherpf.qps.512 llvm.x86.avx512.kand.w llvm.x86.avx512.kandn.w llvm.x86.avx512.knot.w llvm.x86.avx512.kor.w llvm.x86.avx512.kortestc.w llvm.x86.avx512.kortestz.w llvm.x86.avx512.kunpck.bw llvm.x86.avx512.kunpck.dq llvm.x86.avx512.kunpck.wd llvm.x86.avx512.kxnor.w llvm.x86.avx512.kxor.w llvm.x86.avx512.mask.add.pd.128 llvm.x86.avx512.mask.add.pd.256 llvm.x86.avx512.mask.add.pd.512 llvm.x86.avx512.mask.add.ps.128 llvm.x86.avx512.mask.add.ps.256 llvm.x86.avx512.mask.add.ps.512 llvm.x86.avx512.mask.add.sd.round llvm.x86.avx512.mask.add.ss.round llvm.x86.avx512.mask.and.pd.128 llvm.x86.avx512.mask.and.pd.256 llvm.x86.avx512.mask.and.pd.512 llvm.x86.avx512.mask.and.ps.128 llvm.x86.avx512.mask.and.ps.256 llvm.x86.avx512.mask.and.ps.512 llvm.x86.avx512.mask.andn.pd.128 llvm.x86.avx512.mask.andn.pd.256 llvm.x86.avx512.mask.andn.pd.512 llvm.x86.avx512.mask.andn.ps.128 llvm.x86.avx512.mask.andn.ps.256 llvm.x86.avx512.mask.andn.ps.512 llvm.x86.avx512.mask.blend.b.128 llvm.x86.avx512.mask.blend.b.256 llvm.x86.avx512.mask.blend.b.512 llvm.x86.avx512.mask.blend.d.128 llvm.x86.avx512.mask.blend.d.256 llvm.x86.avx512.mask.blend.d.512 llvm.x86.avx512.mask.blend.pd.128 llvm.x86.avx512.mask.blend.pd.256 llvm.x86.avx512.mask.blend.pd.512 llvm.x86.avx512.mask.blend.ps.128 llvm.x86.avx512.mask.blend.ps.256 llvm.x86.avx512.mask.blend.ps.512 llvm.x86.avx512.mask.blend.q.128 llvm.x86.avx512.mask.blend.q.256 llvm.x86.avx512.mask.blend.q.512 llvm.x86.avx512.mask.blend.w.128 llvm.x86.avx512.mask.blend.w.256 llvm.x86.avx512.mask.blend.w.512 llvm.x86.avx512.mask.broadcast.sd.pd.256 llvm.x86.avx512.mask.broadcast.sd.pd.512 llvm.x86.avx512.mask.broadcast.ss.ps.128 llvm.x86.avx512.mask.broadcast.ss.ps.256 llvm.x86.avx512.mask.broadcast.ss.ps.512 llvm.x86.avx512.mask.broadcastf32x2.256 llvm.x86.avx512.mask.broadcastf32x2.512 llvm.x86.avx512.mask.broadcastf32x4.256 llvm.x86.avx512.mask.broadcastf32x4.512 llvm.x86.avx512.mask.broadcastf32x8.512 llvm.x86.avx512.mask.broadcastf64x2.256 llvm.x86.avx512.mask.broadcastf64x2.512 llvm.x86.avx512.mask.broadcastf64x4.512 llvm.x86.avx512.mask.broadcasti32x2.128 llvm.x86.avx512.mask.broadcasti32x2.256 llvm.x86.avx512.mask.broadcasti32x2.512 llvm.x86.avx512.mask.broadcasti32x4.256 llvm.x86.avx512.mask.broadcasti32x4.512 llvm.x86.avx512.mask.broadcasti32x8.512 llvm.x86.avx512.mask.broadcasti64x2.256 llvm.x86.avx512.mask.broadcasti64x2.512 llvm.x86.avx512.mask.broadcasti64x4.512 llvm.x86.avx512.mask.cmp.b.128 llvm.x86.avx512.mask.cmp.b.256 llvm.x86.avx512.mask.cmp.b.512 llvm.x86.avx512.mask.cmp.d.128 llvm.x86.avx512.mask.cmp.d.256 llvm.x86.avx512.mask.cmp.d.512 llvm.x86.avx512.mask.cmp.pd.128 llvm.x86.avx512.mask.cmp.pd.256 llvm.x86.avx512.mask.cmp.pd.512 llvm.x86.avx512.mask.cmp.ps.128 llvm.x86.avx512.mask.cmp.ps.256 llvm.x86.avx512.mask.cmp.ps.512 llvm.x86.avx512.mask.cmp.q.128 llvm.x86.avx512.mask.cmp.q.256 llvm.x86.avx512.mask.cmp.q.512 llvm.x86.avx512.mask.cmp.sd llvm.x86.avx512.mask.cmp.ss llvm.x86.avx512.mask.cmp.w.128 llvm.x86.avx512.mask.cmp.w.256 llvm.x86.avx512.mask.cmp.w.512 llvm.x86.avx512.mask.compress.d.128 llvm.x86.avx512.mask.compress.d.256 llvm.x86.avx512.mask.compress.d.512 llvm.x86.avx512.mask.compress.pd.128 llvm.x86.avx512.mask.compress.pd.256 llvm.x86.avx512.mask.compress.pd.512 llvm.x86.avx512.mask.compress.ps.128 llvm.x86.avx512.mask.compress.ps.256 llvm.x86.avx512.mask.compress.ps.512 llvm.x86.avx512.mask.compress.q.128 llvm.x86.avx512.mask.compress.q.256 llvm.x86.avx512.mask.compress.q.512 llvm.x86.avx512.mask.compress.store.d.128 llvm.x86.avx512.mask.compress.store.d.256 llvm.x86.avx512.mask.compress.store.d.512 llvm.x86.avx512.mask.compress.store.pd.128 llvm.x86.avx512.mask.compress.store.pd.256 llvm.x86.avx512.mask.compress.store.pd.512 llvm.x86.avx512.mask.compress.store.ps.128 llvm.x86.avx512.mask.compress.store.ps.256 llvm.x86.avx512.mask.compress.store.ps.512 llvm.x86.avx512.mask.compress.store.q.128 llvm.x86.avx512.mask.compress.store.q.256 llvm.x86.avx512.mask.compress.store.q.512 llvm.x86.avx512.mask.conflict.d.128 llvm.x86.avx512.mask.conflict.d.256 llvm.x86.avx512.mask.conflict.d.512 llvm.x86.avx512.mask.conflict.q.128 llvm.x86.avx512.mask.conflict.q.256 llvm.x86.avx512.mask.conflict.q.512 llvm.x86.avx512.mask.cvtdq2pd.128 llvm.x86.avx512.mask.cvtdq2pd.256 llvm.x86.avx512.mask.cvtdq2pd.512 llvm.x86.avx512.mask.cvtdq2ps.128 llvm.x86.avx512.mask.cvtdq2ps.256 llvm.x86.avx512.mask.cvtdq2ps.512 llvm.x86.avx512.mask.cvtpd2dq.128 llvm.x86.avx512.mask.cvtpd2dq.256 llvm.x86.avx512.mask.cvtpd2dq.512 llvm.x86.avx512.mask.cvtpd2ps llvm.x86.avx512.mask.cvtpd2ps.256 llvm.x86.avx512.mask.cvtpd2ps.512 llvm.x86.avx512.mask.cvtpd2qq.128 llvm.x86.avx512.mask.cvtpd2qq.256 llvm.x86.avx512.mask.cvtpd2qq.512 llvm.x86.avx512.mask.cvtpd2udq.128 llvm.x86.avx512.mask.cvtpd2udq.256 llvm.x86.avx512.mask.cvtpd2udq.512 llvm.x86.avx512.mask.cvtpd2uqq.128 llvm.x86.avx512.mask.cvtpd2uqq.256 llvm.x86.avx512.mask.cvtpd2uqq.512 llvm.x86.avx512.mask.cvtps2dq.128 llvm.x86.avx512.mask.cvtps2dq.256 llvm.x86.avx512.mask.cvtps2dq.512 llvm.x86.avx512.mask.cvtps2pd.128 llvm.x86.avx512.mask.cvtps2pd.256 llvm.x86.avx512.mask.cvtps2pd.512 llvm.x86.avx512.mask.cvtps2qq.128 llvm.x86.avx512.mask.cvtps2qq.256 llvm.x86.avx512.mask.cvtps2qq.512 llvm.x86.avx512.mask.cvtps2udq.128 llvm.x86.avx512.mask.cvtps2udq.256 llvm.x86.avx512.mask.cvtps2udq.512 llvm.x86.avx512.mask.cvtps2uqq.128 llvm.x86.avx512.mask.cvtps2uqq.256 llvm.x86.avx512.mask.cvtps2uqq.512 llvm.x86.avx512.mask.cvtqq2pd.128 llvm.x86.avx512.mask.cvtqq2pd.256 llvm.x86.avx512.mask.cvtqq2pd.512 llvm.x86.avx512.mask.cvtqq2ps.128 llvm.x86.avx512.mask.cvtqq2ps.256 llvm.x86.avx512.mask.cvtqq2ps.512 llvm.x86.avx512.mask.cvtsd2ss.round llvm.x86.avx512.mask.cvtss2sd.round llvm.x86.avx512.mask.cvttpd2dq.128 llvm.x86.avx512.mask.cvttpd2dq.256 llvm.x86.avx512.mask.cvttpd2dq.512 llvm.x86.avx512.mask.cvttpd2qq.128 llvm.x86.avx512.mask.cvttpd2qq.256 llvm.x86.avx512.mask.cvttpd2qq.512 llvm.x86.avx512.mask.cvttpd2udq.128 llvm.x86.avx512.mask.cvttpd2udq.256 llvm.x86.avx512.mask.cvttpd2udq.512 llvm.x86.avx512.mask.cvttpd2uqq.128 llvm.x86.avx512.mask.cvttpd2uqq.256 llvm.x86.avx512.mask.cvttpd2uqq.512 llvm.x86.avx512.mask.cvttps2dq.128 llvm.x86.avx512.mask.cvttps2dq.256 llvm.x86.avx512.mask.cvttps2dq.512 llvm.x86.avx512.mask.cvttps2qq.128 llvm.x86.avx512.mask.cvttps2qq.256 llvm.x86.avx512.mask.cvttps2qq.512 llvm.x86.avx512.mask.cvttps2udq.128 llvm.x86.avx512.mask.cvttps2udq.256 llvm.x86.avx512.mask.cvttps2udq.512 llvm.x86.avx512.mask.cvttps2uqq.128 llvm.x86.avx512.mask.cvttps2uqq.256 llvm.x86.avx512.mask.cvttps2uqq.512 llvm.x86.avx512.mask.cvtudq2pd.128 llvm.x86.avx512.mask.cvtudq2pd.256 llvm.x86.avx512.mask.cvtudq2pd.512 llvm.x86.avx512.mask.cvtudq2ps.128 llvm.x86.avx512.mask.cvtudq2ps.256 llvm.x86.avx512.mask.cvtudq2ps.512 llvm.x86.avx512.mask.cvtuqq2pd.128 llvm.x86.avx512.mask.cvtuqq2pd.256 llvm.x86.avx512.mask.cvtuqq2pd.512 llvm.x86.avx512.mask.cvtuqq2ps.128 llvm.x86.avx512.mask.cvtuqq2ps.256 llvm.x86.avx512.mask.cvtuqq2ps.512 llvm.x86.avx512.mask.dbpsadbw.128 llvm.x86.avx512.mask.dbpsadbw.256 llvm.x86.avx512.mask.dbpsadbw.512 llvm.x86.avx512.mask.div.pd.128 llvm.x86.avx512.mask.div.pd.256 llvm.x86.avx512.mask.div.pd.512 llvm.x86.avx512.mask.div.ps.128 llvm.x86.avx512.mask.div.ps.256 llvm.x86.avx512.mask.div.ps.512 llvm.x86.avx512.mask.div.sd.round llvm.x86.avx512.mask.div.ss.round llvm.x86.avx512.mask.expand.d.128 llvm.x86.avx512.mask.expand.d.256 llvm.x86.avx512.mask.expand.d.512 llvm.x86.avx512.mask.expand.load.d.128 llvm.x86.avx512.mask.expand.load.d.256 llvm.x86.avx512.mask.expand.load.d.512 llvm.x86.avx512.mask.expand.load.pd.128 llvm.x86.avx512.mask.expand.load.pd.256 llvm.x86.avx512.mask.expand.load.pd.512 llvm.x86.avx512.mask.expand.load.ps.128 llvm.x86.avx512.mask.expand.load.ps.256 llvm.x86.avx512.mask.expand.load.ps.512 llvm.x86.avx512.mask.expand.load.q.128 llvm.x86.avx512.mask.expand.load.q.256 llvm.x86.avx512.mask.expand.load.q.512 llvm.x86.avx512.mask.expand.pd.128 llvm.x86.avx512.mask.expand.pd.256 llvm.x86.avx512.mask.expand.pd.512 llvm.x86.avx512.mask.expand.ps.128 llvm.x86.avx512.mask.expand.ps.256 llvm.x86.avx512.mask.expand.ps.512 llvm.x86.avx512.mask.expand.q.128 llvm.x86.avx512.mask.expand.q.256 llvm.x86.avx512.mask.expand.q.512 llvm.x86.avx512.mask.fixupimm.pd.128 llvm.x86.avx512.mask.fixupimm.pd.256 llvm.x86.avx512.mask.fixupimm.pd.512 llvm.x86.avx512.mask.fixupimm.ps.128 llvm.x86.avx512.mask.fixupimm.ps.256 llvm.x86.avx512.mask.fixupimm.ps.512 llvm.x86.avx512.mask.fixupimm.sd llvm.x86.avx512.mask.fixupimm.ss llvm.x86.avx512.mask.fpclass.pd.128 llvm.x86.avx512.mask.fpclass.pd.256 llvm.x86.avx512.mask.fpclass.pd.512 llvm.x86.avx512.mask.fpclass.ps.128 llvm.x86.avx512.mask.fpclass.ps.256 llvm.x86.avx512.mask.fpclass.ps.512 llvm.x86.avx512.mask.fpclass.sd llvm.x86.avx512.mask.fpclass.ss llvm.x86.avx512.mask.getexp.pd.128 llvm.x86.avx512.mask.getexp.pd.256 llvm.x86.avx512.mask.getexp.pd.512 llvm.x86.avx512.mask.getexp.ps.128 llvm.x86.avx512.mask.getexp.ps.256 llvm.x86.avx512.mask.getexp.ps.512 llvm.x86.avx512.mask.getexp.sd llvm.x86.avx512.mask.getexp.ss llvm.x86.avx512.mask.getmant.pd.128 llvm.x86.avx512.mask.getmant.pd.256 llvm.x86.avx512.mask.getmant.pd.512 llvm.x86.avx512.mask.getmant.ps.128 llvm.x86.avx512.mask.getmant.ps.256 llvm.x86.avx512.mask.getmant.ps.512 llvm.x86.avx512.mask.getmant.sd llvm.x86.avx512.mask.getmant.ss llvm.x86.avx512.mask.insertf32x4.256 llvm.x86.avx512.mask.insertf32x4.512 llvm.x86.avx512.mask.insertf32x8.512 llvm.x86.avx512.mask.insertf64x2.256 llvm.x86.avx512.mask.insertf64x2.512 llvm.x86.avx512.mask.insertf64x4.512 llvm.x86.avx512.mask.inserti32x4.256 llvm.x86.avx512.mask.inserti32x4.512 llvm.x86.avx512.mask.inserti32x8.512 llvm.x86.avx512.mask.inserti64x2.256 llvm.x86.avx512.mask.inserti64x2.512 llvm.x86.avx512.mask.inserti64x4.512 llvm.x86.avx512.mask.load.d.128 llvm.x86.avx512.mask.load.d.256 llvm.x86.avx512.mask.load.d.512 llvm.x86.avx512.mask.load.pd.128 llvm.x86.avx512.mask.load.pd.256 llvm.x86.avx512.mask.load.pd.512 llvm.x86.avx512.mask.load.ps.128 llvm.x86.avx512.mask.load.ps.256 llvm.x86.avx512.mask.load.ps.512 llvm.x86.avx512.mask.load.q.128 llvm.x86.avx512.mask.load.q.256 llvm.x86.avx512.mask.load.q.512 llvm.x86.avx512.mask.loadu.b.128 llvm.x86.avx512.mask.loadu.b.256 llvm.x86.avx512.mask.loadu.b.512 llvm.x86.avx512.mask.loadu.d.128 llvm.x86.avx512.mask.loadu.d.256 llvm.x86.avx512.mask.loadu.d.512 llvm.x86.avx512.mask.loadu.pd.128 llvm.x86.avx512.mask.loadu.pd.256 llvm.x86.avx512.mask.loadu.pd.512 llvm.x86.avx512.mask.loadu.ps.128 llvm.x86.avx512.mask.loadu.ps.256 llvm.x86.avx512.mask.loadu.ps.512 llvm.x86.avx512.mask.loadu.q.128 llvm.x86.avx512.mask.loadu.q.256 llvm.x86.avx512.mask.loadu.q.512 llvm.x86.avx512.mask.loadu.w.128 llvm.x86.avx512.mask.loadu.w.256 llvm.x86.avx512.mask.loadu.w.512 llvm.x86.avx512.mask.lzcnt.d.128 llvm.x86.avx512.mask.lzcnt.d.256 llvm.x86.avx512.mask.lzcnt.d.512 llvm.x86.avx512.mask.lzcnt.q.128 llvm.x86.avx512.mask.lzcnt.q.256 llvm.x86.avx512.mask.lzcnt.q.512 llvm.x86.avx512.mask.max.pd.128 llvm.x86.avx512.mask.max.pd.256 llvm.x86.avx512.mask.max.pd.512 llvm.x86.avx512.mask.max.ps.128 llvm.x86.avx512.mask.max.ps.256 llvm.x86.avx512.mask.max.ps.512 llvm.x86.avx512.mask.max.sd.round llvm.x86.avx512.mask.max.ss.round llvm.x86.avx512.mask.min.pd.128 llvm.x86.avx512.mask.min.pd.256 llvm.x86.avx512.mask.min.pd.512 llvm.x86.avx512.mask.min.ps.128 llvm.x86.avx512.mask.min.ps.256 llvm.x86.avx512.mask.min.ps.512 llvm.x86.avx512.mask.min.sd.round llvm.x86.avx512.mask.min.ss.round llvm.x86.avx512.mask.mova.d.128 llvm.x86.avx512.mask.mova.d.256 llvm.x86.avx512.mask.mova.d.512 llvm.x86.avx512.mask.mova.pd.128 llvm.x86.avx512.mask.mova.pd.256 llvm.x86.avx512.mask.mova.pd.512 llvm.x86.avx512.mask.mova.ps.128 llvm.x86.avx512.mask.mova.ps.256 llvm.x86.avx512.mask.mova.ps.512 llvm.x86.avx512.mask.mova.q.128 llvm.x86.avx512.mask.mova.q.256 llvm.x86.avx512.mask.mova.q.512 llvm.x86.avx512.mask.movddup.128 llvm.x86.avx512.mask.movddup.256 llvm.x86.avx512.mask.movddup.512 llvm.x86.avx512.mask.move.sd llvm.x86.avx512.mask.move.ss llvm.x86.avx512.mask.movshdup.128 llvm.x86.avx512.mask.movshdup.256 llvm.x86.avx512.mask.movshdup.512 llvm.x86.avx512.mask.movsldup.128 llvm.x86.avx512.mask.movsldup.256 llvm.x86.avx512.mask.movsldup.512 llvm.x86.avx512.mask.movu.b.128 llvm.x86.avx512.mask.movu.b.256 llvm.x86.avx512.mask.movu.b.512 llvm.x86.avx512.mask.movu.w.128 llvm.x86.avx512.mask.movu.w.256 llvm.x86.avx512.mask.movu.w.512 llvm.x86.avx512.mask.mul.pd.128 llvm.x86.avx512.mask.mul.pd.256 llvm.x86.avx512.mask.mul.pd.512 llvm.x86.avx512.mask.mul.ps.128 llvm.x86.avx512.mask.mul.ps.256 llvm.x86.avx512.mask.mul.ps.512 llvm.x86.avx512.mask.mul.sd.round llvm.x86.avx512.mask.mul.ss.round llvm.x86.avx512.mask.or.pd.128 llvm.x86.avx512.mask.or.pd.256 llvm.x86.avx512.mask.or.pd.512 llvm.x86.avx512.mask.or.ps.128 llvm.x86.avx512.mask.or.ps.256 llvm.x86.avx512.mask.or.ps.512 llvm.x86.avx512.mask.pabs.b.128 llvm.x86.avx512.mask.pabs.b.256 llvm.x86.avx512.mask.pabs.b.512 llvm.x86.avx512.mask.pabs.d.128 llvm.x86.avx512.mask.pabs.d.256 llvm.x86.avx512.mask.pabs.d.512 llvm.x86.avx512.mask.pabs.q.128 llvm.x86.avx512.mask.pabs.q.256 llvm.x86.avx512.mask.pabs.q.512 llvm.x86.avx512.mask.pabs.w.128 llvm.x86.avx512.mask.pabs.w.256 llvm.x86.avx512.mask.pabs.w.512 llvm.x86.avx512.mask.packssdw.128 llvm.x86.avx512.mask.packssdw.256 llvm.x86.avx512.mask.packssdw.512 llvm.x86.avx512.mask.packsswb.128 llvm.x86.avx512.mask.packsswb.256 llvm.x86.avx512.mask.packsswb.512 llvm.x86.avx512.mask.packusdw.128 llvm.x86.avx512.mask.packusdw.256 llvm.x86.avx512.mask.packusdw.512 llvm.x86.avx512.mask.packuswb.128 llvm.x86.avx512.mask.packuswb.256 llvm.x86.avx512.mask.packuswb.512 llvm.x86.avx512.mask.padd.b.128 llvm.x86.avx512.mask.padd.b.256 llvm.x86.avx512.mask.padd.b.512 llvm.x86.avx512.mask.padd.d.128 llvm.x86.avx512.mask.padd.d.256 llvm.x86.avx512.mask.padd.d.512 llvm.x86.avx512.mask.padd.q.128 llvm.x86.avx512.mask.padd.q.256 llvm.x86.avx512.mask.padd.q.512 llvm.x86.avx512.mask.padd.w.128 llvm.x86.avx512.mask.padd.w.256 llvm.x86.avx512.mask.padd.w.512 llvm.x86.avx512.mask.padds.b.128 llvm.x86.avx512.mask.padds.b.256 llvm.x86.avx512.mask.padds.b.512 llvm.x86.avx512.mask.padds.w.128 llvm.x86.avx512.mask.padds.w.256 llvm.x86.avx512.mask.padds.w.512 llvm.x86.avx512.mask.paddus.b.128 llvm.x86.avx512.mask.paddus.b.256 llvm.x86.avx512.mask.paddus.b.512 llvm.x86.avx512.mask.paddus.w.128 llvm.x86.avx512.mask.paddus.w.256 llvm.x86.avx512.mask.paddus.w.512 llvm.x86.avx512.mask.palignr.128 llvm.x86.avx512.mask.palignr.256 llvm.x86.avx512.mask.palignr.512 llvm.x86.avx512.mask.pand.d.128 llvm.x86.avx512.mask.pand.d.256 llvm.x86.avx512.mask.pand.d.512 llvm.x86.avx512.mask.pand.q.128 llvm.x86.avx512.mask.pand.q.256 llvm.x86.avx512.mask.pand.q.512 llvm.x86.avx512.mask.pandn.d.128 llvm.x86.avx512.mask.pandn.d.256 llvm.x86.avx512.mask.pandn.d.512 llvm.x86.avx512.mask.pandn.q.128 llvm.x86.avx512.mask.pandn.q.256 llvm.x86.avx512.mask.pandn.q.512 llvm.x86.avx512.mask.pavg.b.128 llvm.x86.avx512.mask.pavg.b.256 llvm.x86.avx512.mask.pavg.b.512 llvm.x86.avx512.mask.pavg.w.128 llvm.x86.avx512.mask.pavg.w.256 llvm.x86.avx512.mask.pavg.w.512 llvm.x86.avx512.mask.pbroadcast.b.gpr.128 llvm.x86.avx512.mask.pbroadcast.b.gpr.256 llvm.x86.avx512.mask.pbroadcast.b.gpr.512 llvm.x86.avx512.mask.pbroadcast.d.gpr.128 llvm.x86.avx512.mask.pbroadcast.d.gpr.256 llvm.x86.avx512.mask.pbroadcast.d.gpr.512 llvm.x86.avx512.mask.pbroadcast.q.gpr.128 llvm.x86.avx512.mask.pbroadcast.q.gpr.256 llvm.x86.avx512.mask.pbroadcast.q.gpr.512 llvm.x86.avx512.mask.pbroadcast.q.mem.512 llvm.x86.avx512.mask.pbroadcast.w.gpr.128 llvm.x86.avx512.mask.pbroadcast.w.gpr.256 llvm.x86.avx512.mask.pbroadcast.w.gpr.512 llvm.x86.avx512.mask.pcmpeq.b.128 llvm.x86.avx512.mask.pcmpeq.b.256 llvm.x86.avx512.mask.pcmpeq.b.512 llvm.x86.avx512.mask.pcmpeq.d.128 llvm.x86.avx512.mask.pcmpeq.d.256 llvm.x86.avx512.mask.pcmpeq.d.512 llvm.x86.avx512.mask.pcmpeq.q.128 llvm.x86.avx512.mask.pcmpeq.q.256 llvm.x86.avx512.mask.pcmpeq.q.512 llvm.x86.avx512.mask.pcmpeq.w.128 llvm.x86.avx512.mask.pcmpeq.w.256 llvm.x86.avx512.mask.pcmpeq.w.512 llvm.x86.avx512.mask.pcmpgt.b.128 llvm.x86.avx512.mask.pcmpgt.b.256 llvm.x86.avx512.mask.pcmpgt.b.512 llvm.x86.avx512.mask.pcmpgt.d.128 llvm.x86.avx512.mask.pcmpgt.d.256 llvm.x86.avx512.mask.pcmpgt.d.512 llvm.x86.avx512.mask.pcmpgt.q.128 llvm.x86.avx512.mask.pcmpgt.q.256 llvm.x86.avx512.mask.pcmpgt.q.512 llvm.x86.avx512.mask.pcmpgt.w.128 llvm.x86.avx512.mask.pcmpgt.w.256 llvm.x86.avx512.mask.pcmpgt.w.512 llvm.x86.avx512.mask.perm.df.256 llvm.x86.avx512.mask.perm.df.512 llvm.x86.avx512.mask.perm.di.256 llvm.x86.avx512.mask.perm.di.512 llvm.x86.avx512.mask.permvar.df.256 llvm.x86.avx512.mask.permvar.df.512 llvm.x86.avx512.mask.permvar.di.256 llvm.x86.avx512.mask.permvar.di.512 llvm.x86.avx512.mask.permvar.hi.128 llvm.x86.avx512.mask.permvar.hi.256 llvm.x86.avx512.mask.permvar.hi.512 llvm.x86.avx512.mask.permvar.qi.128 llvm.x86.avx512.mask.permvar.qi.256 llvm.x86.avx512.mask.permvar.qi.512 llvm.x86.avx512.mask.permvar.sf.256 llvm.x86.avx512.mask.permvar.sf.512 llvm.x86.avx512.mask.permvar.si.256 llvm.x86.avx512.mask.permvar.si.512 llvm.x86.avx512.mask.pmaddubs.w.128 llvm.x86.avx512.mask.pmaddubs.w.256 llvm.x86.avx512.mask.pmaddubs.w.512 llvm.x86.avx512.mask.pmaddw.d.128 llvm.x86.avx512.mask.pmaddw.d.256 llvm.x86.avx512.mask.pmaddw.d.512 llvm.x86.avx512.mask.pmaxs.b.128 llvm.x86.avx512.mask.pmaxs.b.256 llvm.x86.avx512.mask.pmaxs.b.512 llvm.x86.avx512.mask.pmaxs.d.128 llvm.x86.avx512.mask.pmaxs.d.256 llvm.x86.avx512.mask.pmaxs.d.512 llvm.x86.avx512.mask.pmaxs.q.128 llvm.x86.avx512.mask.pmaxs.q.256 llvm.x86.avx512.mask.pmaxs.q.512 llvm.x86.avx512.mask.pmaxs.w.128 llvm.x86.avx512.mask.pmaxs.w.256 llvm.x86.avx512.mask.pmaxs.w.512 llvm.x86.avx512.mask.pmaxu.b.128 llvm.x86.avx512.mask.pmaxu.b.256 llvm.x86.avx512.mask.pmaxu.b.512 llvm.x86.avx512.mask.pmaxu.d.128 llvm.x86.avx512.mask.pmaxu.d.256 llvm.x86.avx512.mask.pmaxu.d.512 llvm.x86.avx512.mask.pmaxu.q.128 llvm.x86.avx512.mask.pmaxu.q.256 llvm.x86.avx512.mask.pmaxu.q.512 llvm.x86.avx512.mask.pmaxu.w.128 llvm.x86.avx512.mask.pmaxu.w.256 llvm.x86.avx512.mask.pmaxu.w.512 llvm.x86.avx512.mask.pmins.b.128 llvm.x86.avx512.mask.pmins.b.256 llvm.x86.avx512.mask.pmins.b.512 llvm.x86.avx512.mask.pmins.d.128 llvm.x86.avx512.mask.pmins.d.256 llvm.x86.avx512.mask.pmins.d.512 llvm.x86.avx512.mask.pmins.q.128 llvm.x86.avx512.mask.pmins.q.256 llvm.x86.avx512.mask.pmins.q.512 llvm.x86.avx512.mask.pmins.w.128 llvm.x86.avx512.mask.pmins.w.256 llvm.x86.avx512.mask.pmins.w.512 llvm.x86.avx512.mask.pminu.b.128 llvm.x86.avx512.mask.pminu.b.256 llvm.x86.avx512.mask.pminu.b.512 llvm.x86.avx512.mask.pminu.d.128 llvm.x86.avx512.mask.pminu.d.256 llvm.x86.avx512.mask.pminu.d.512 llvm.x86.avx512.mask.pminu.q.128 llvm.x86.avx512.mask.pminu.q.256 llvm.x86.avx512.mask.pminu.q.512 llvm.x86.avx512.mask.pminu.w.128 llvm.x86.avx512.mask.pminu.w.256 llvm.x86.avx512.mask.pminu.w.512 llvm.x86.avx512.mask.pmov.db.128 llvm.x86.avx512.mask.pmov.db.256 llvm.x86.avx512.mask.pmov.db.512 llvm.x86.avx512.mask.pmov.db.mem.128 llvm.x86.avx512.mask.pmov.db.mem.256 llvm.x86.avx512.mask.pmov.db.mem.512 llvm.x86.avx512.mask.pmov.dw.128 llvm.x86.avx512.mask.pmov.dw.256 llvm.x86.avx512.mask.pmov.dw.512 llvm.x86.avx512.mask.pmov.dw.mem.128 llvm.x86.avx512.mask.pmov.dw.mem.256 llvm.x86.avx512.mask.pmov.dw.mem.512 llvm.x86.avx512.mask.pmov.qb.128 llvm.x86.avx512.mask.pmov.qb.256 llvm.x86.avx512.mask.pmov.qb.512 llvm.x86.avx512.mask.pmov.qb.mem.128 llvm.x86.avx512.mask.pmov.qb.mem.256 llvm.x86.avx512.mask.pmov.qb.mem.512 llvm.x86.avx512.mask.pmov.qd.128 llvm.x86.avx512.mask.pmov.qd.256 llvm.x86.avx512.mask.pmov.qd.512 llvm.x86.avx512.mask.pmov.qd.mem.128 llvm.x86.avx512.mask.pmov.qd.mem.256 llvm.x86.avx512.mask.pmov.qd.mem.512 llvm.x86.avx512.mask.pmov.qw.128 llvm.x86.avx512.mask.pmov.qw.256 llvm.x86.avx512.mask.pmov.qw.512 llvm.x86.avx512.mask.pmov.qw.mem.128 llvm.x86.avx512.mask.pmov.qw.mem.256 llvm.x86.avx512.mask.pmov.qw.mem.512 llvm.x86.avx512.mask.pmov.wb.128 llvm.x86.avx512.mask.pmov.wb.256 llvm.x86.avx512.mask.pmov.wb.512 llvm.x86.avx512.mask.pmov.wb.mem.128 llvm.x86.avx512.mask.pmov.wb.mem.256 llvm.x86.avx512.mask.pmov.wb.mem.512 llvm.x86.avx512.mask.pmovs.db.128 llvm.x86.avx512.mask.pmovs.db.256 llvm.x86.avx512.mask.pmovs.db.512 llvm.x86.avx512.mask.pmovs.db.mem.128 llvm.x86.avx512.mask.pmovs.db.mem.256 llvm.x86.avx512.mask.pmovs.db.mem.512 llvm.x86.avx512.mask.pmovs.dw.128 llvm.x86.avx512.mask.pmovs.dw.256 llvm.x86.avx512.mask.pmovs.dw.512 llvm.x86.avx512.mask.pmovs.dw.mem.128 llvm.x86.avx512.mask.pmovs.dw.mem.256 llvm.x86.avx512.mask.pmovs.dw.mem.512 llvm.x86.avx512.mask.pmovs.qb.128 llvm.x86.avx512.mask.pmovs.qb.256 llvm.x86.avx512.mask.pmovs.qb.512 llvm.x86.avx512.mask.pmovs.qb.mem.128 llvm.x86.avx512.mask.pmovs.qb.mem.256 llvm.x86.avx512.mask.pmovs.qb.mem.512 llvm.x86.avx512.mask.pmovs.qd.128 llvm.x86.avx512.mask.pmovs.qd.256 llvm.x86.avx512.mask.pmovs.qd.512 llvm.x86.avx512.mask.pmovs.qd.mem.128 llvm.x86.avx512.mask.pmovs.qd.mem.256 llvm.x86.avx512.mask.pmovs.qd.mem.512 llvm.x86.avx512.mask.pmovs.qw.128 llvm.x86.avx512.mask.pmovs.qw.256 llvm.x86.avx512.mask.pmovs.qw.512 llvm.x86.avx512.mask.pmovs.qw.mem.128 llvm.x86.avx512.mask.pmovs.qw.mem.256 llvm.x86.avx512.mask.pmovs.qw.mem.512 llvm.x86.avx512.mask.pmovs.wb.128 llvm.x86.avx512.mask.pmovs.wb.256 llvm.x86.avx512.mask.pmovs.wb.512 llvm.x86.avx512.mask.pmovs.wb.mem.128 llvm.x86.avx512.mask.pmovs.wb.mem.256 llvm.x86.avx512.mask.pmovs.wb.mem.512 llvm.x86.avx512.mask.pmovsxb.d.128 llvm.x86.avx512.mask.pmovsxb.d.256 llvm.x86.avx512.mask.pmovsxb.d.512 llvm.x86.avx512.mask.pmovsxb.q.128 llvm.x86.avx512.mask.pmovsxb.q.256 llvm.x86.avx512.mask.pmovsxb.q.512 llvm.x86.avx512.mask.pmovsxb.w.128 llvm.x86.avx512.mask.pmovsxb.w.256 llvm.x86.avx512.mask.pmovsxb.w.512 llvm.x86.avx512.mask.pmovsxd.q.128 llvm.x86.avx512.mask.pmovsxd.q.256 llvm.x86.avx512.mask.pmovsxd.q.512 llvm.x86.avx512.mask.pmovsxw.d.128 llvm.x86.avx512.mask.pmovsxw.d.256 llvm.x86.avx512.mask.pmovsxw.d.512 llvm.x86.avx512.mask.pmovsxw.q.128 llvm.x86.avx512.mask.pmovsxw.q.256 llvm.x86.avx512.mask.pmovsxw.q.512 llvm.x86.avx512.mask.pmovus.db.128 llvm.x86.avx512.mask.pmovus.db.256 llvm.x86.avx512.mask.pmovus.db.512 llvm.x86.avx512.mask.pmovus.db.mem.128 llvm.x86.avx512.mask.pmovus.db.mem.256 llvm.x86.avx512.mask.pmovus.db.mem.512 llvm.x86.avx512.mask.pmovus.dw.128 llvm.x86.avx512.mask.pmovus.dw.256 llvm.x86.avx512.mask.pmovus.dw.512 llvm.x86.avx512.mask.pmovus.dw.mem.128 llvm.x86.avx512.mask.pmovus.dw.mem.256 llvm.x86.avx512.mask.pmovus.dw.mem.512 llvm.x86.avx512.mask.pmovus.qb.128 llvm.x86.avx512.mask.pmovus.qb.256 llvm.x86.avx512.mask.pmovus.qb.512 llvm.x86.avx512.mask.pmovus.qb.mem.128 llvm.x86.avx512.mask.pmovus.qb.mem.256 llvm.x86.avx512.mask.pmovus.qb.mem.512 llvm.x86.avx512.mask.pmovus.qd.128 llvm.x86.avx512.mask.pmovus.qd.256 llvm.x86.avx512.mask.pmovus.qd.512 llvm.x86.avx512.mask.pmovus.qd.mem.128 llvm.x86.avx512.mask.pmovus.qd.mem.256 llvm.x86.avx512.mask.pmovus.qd.mem.512 llvm.x86.avx512.mask.pmovus.qw.128 llvm.x86.avx512.mask.pmovus.qw.256 llvm.x86.avx512.mask.pmovus.qw.512 llvm.x86.avx512.mask.pmovus.qw.mem.128 llvm.x86.avx512.mask.pmovus.qw.mem.256 llvm.x86.avx512.mask.pmovus.qw.mem.512 llvm.x86.avx512.mask.pmovus.wb.128 llvm.x86.avx512.mask.pmovus.wb.256 llvm.x86.avx512.mask.pmovus.wb.512 llvm.x86.avx512.mask.pmovus.wb.mem.128 llvm.x86.avx512.mask.pmovus.wb.mem.256 llvm.x86.avx512.mask.pmovus.wb.mem.512 llvm.x86.avx512.mask.pmovzxb.d.128 llvm.x86.avx512.mask.pmovzxb.d.256 llvm.x86.avx512.mask.pmovzxb.d.512 llvm.x86.avx512.mask.pmovzxb.q.128 llvm.x86.avx512.mask.pmovzxb.q.256 llvm.x86.avx512.mask.pmovzxb.q.512 llvm.x86.avx512.mask.pmovzxb.w.128 llvm.x86.avx512.mask.pmovzxb.w.256 llvm.x86.avx512.mask.pmovzxb.w.512 llvm.x86.avx512.mask.pmovzxd.q.128 llvm.x86.avx512.mask.pmovzxd.q.256 llvm.x86.avx512.mask.pmovzxd.q.512 llvm.x86.avx512.mask.pmovzxw.d.128 llvm.x86.avx512.mask.pmovzxw.d.256 llvm.x86.avx512.mask.pmovzxw.d.512 llvm.x86.avx512.mask.pmovzxw.q.128 llvm.x86.avx512.mask.pmovzxw.q.256 llvm.x86.avx512.mask.pmovzxw.q.512 llvm.x86.avx512.mask.pmul.dq.128 llvm.x86.avx512.mask.pmul.dq.256 llvm.x86.avx512.mask.pmul.dq.512 llvm.x86.avx512.mask.pmul.hr.sw.128 llvm.x86.avx512.mask.pmul.hr.sw.256 llvm.x86.avx512.mask.pmul.hr.sw.512 llvm.x86.avx512.mask.pmulh.w.128 llvm.x86.avx512.mask.pmulh.w.256 llvm.x86.avx512.mask.pmulh.w.512 llvm.x86.avx512.mask.pmulhu.w.128 llvm.x86.avx512.mask.pmulhu.w.256 llvm.x86.avx512.mask.pmulhu.w.512 llvm.x86.avx512.mask.pmull.d.128 llvm.x86.avx512.mask.pmull.d.256 llvm.x86.avx512.mask.pmull.d.512 llvm.x86.avx512.mask.pmull.q.128 llvm.x86.avx512.mask.pmull.q.256 llvm.x86.avx512.mask.pmull.q.512 llvm.x86.avx512.mask.pmull.w.128 llvm.x86.avx512.mask.pmull.w.256 llvm.x86.avx512.mask.pmull.w.512 llvm.x86.avx512.mask.pmultishift.qb.128 llvm.x86.avx512.mask.pmultishift.qb.256 llvm.x86.avx512.mask.pmultishift.qb.512 llvm.x86.avx512.mask.pmulu.dq.128 llvm.x86.avx512.mask.pmulu.dq.256 llvm.x86.avx512.mask.pmulu.dq.512 llvm.x86.avx512.mask.por.d.128 llvm.x86.avx512.mask.por.d.256 llvm.x86.avx512.mask.por.d.512 llvm.x86.avx512.mask.por.q.128 llvm.x86.avx512.mask.por.q.256 llvm.x86.avx512.mask.por.q.512 llvm.x86.avx512.mask.prol.d.128 llvm.x86.avx512.mask.prol.d.256 llvm.x86.avx512.mask.prol.d.512 llvm.x86.avx512.mask.prol.q.128 llvm.x86.avx512.mask.prol.q.256 llvm.x86.avx512.mask.prol.q.512 llvm.x86.avx512.mask.prolv.d.128 llvm.x86.avx512.mask.prolv.d.256 llvm.x86.avx512.mask.prolv.d.512 llvm.x86.avx512.mask.prolv.q.128 llvm.x86.avx512.mask.prolv.q.256 llvm.x86.avx512.mask.prolv.q.512 llvm.x86.avx512.mask.pror.d.128 llvm.x86.avx512.mask.pror.d.256 llvm.x86.avx512.mask.pror.d.512 llvm.x86.avx512.mask.pror.q.128 llvm.x86.avx512.mask.pror.q.256 llvm.x86.avx512.mask.pror.q.512 llvm.x86.avx512.mask.prorv.d.128 llvm.x86.avx512.mask.prorv.d.256 llvm.x86.avx512.mask.prorv.d.512 llvm.x86.avx512.mask.prorv.q.128 llvm.x86.avx512.mask.prorv.q.256 llvm.x86.avx512.mask.prorv.q.512 llvm.x86.avx512.mask.pshuf.b.128 llvm.x86.avx512.mask.pshuf.b.256 llvm.x86.avx512.mask.pshuf.b.512 llvm.x86.avx512.mask.pshuf.d.128 llvm.x86.avx512.mask.pshuf.d.256 llvm.x86.avx512.mask.pshuf.d.512 llvm.x86.avx512.mask.pshufh.w.128 llvm.x86.avx512.mask.pshufh.w.256 llvm.x86.avx512.mask.pshufh.w.512 llvm.x86.avx512.mask.pshufl.w.128 llvm.x86.avx512.mask.pshufl.w.256 llvm.x86.avx512.mask.pshufl.w.512 llvm.x86.avx512.mask.psll.d llvm.x86.avx512.mask.psll.d.128 llvm.x86.avx512.mask.psll.d.256 llvm.x86.avx512.mask.psll.di.128 llvm.x86.avx512.mask.psll.di.256 llvm.x86.avx512.mask.psll.di.512 llvm.x86.avx512.mask.psll.q llvm.x86.avx512.mask.psll.q.128 llvm.x86.avx512.mask.psll.q.256 llvm.x86.avx512.mask.psll.qi.128 llvm.x86.avx512.mask.psll.qi.256 llvm.x86.avx512.mask.psll.qi.512 llvm.x86.avx512.mask.psll.w.128 llvm.x86.avx512.mask.psll.w.256 llvm.x86.avx512.mask.psll.w.512 llvm.x86.avx512.mask.psll.wi.128 llvm.x86.avx512.mask.psll.wi.256 llvm.x86.avx512.mask.psll.wi.512 llvm.x86.avx512.mask.pslli.d llvm.x86.avx512.mask.pslli.q llvm.x86.avx512.mask.psllv.d llvm.x86.avx512.mask.psllv.q llvm.x86.avx512.mask.psllv16.hi llvm.x86.avx512.mask.psllv2.di llvm.x86.avx512.mask.psllv32hi llvm.x86.avx512.mask.psllv4.di llvm.x86.avx512.mask.psllv4.si llvm.x86.avx512.mask.psllv8.hi llvm.x86.avx512.mask.psllv8.si llvm.x86.avx512.mask.psra.d llvm.x86.avx512.mask.psra.d.128 llvm.x86.avx512.mask.psra.d.256 llvm.x86.avx512.mask.psra.di.128 llvm.x86.avx512.mask.psra.di.256 llvm.x86.avx512.mask.psra.di.512 llvm.x86.avx512.mask.psra.q llvm.x86.avx512.mask.psra.q.128 llvm.x86.avx512.mask.psra.q.256 llvm.x86.avx512.mask.psra.qi.128 llvm.x86.avx512.mask.psra.qi.256 llvm.x86.avx512.mask.psra.qi.512 llvm.x86.avx512.mask.psra.w.128 llvm.x86.avx512.mask.psra.w.256 llvm.x86.avx512.mask.psra.w.512 llvm.x86.avx512.mask.psra.wi.128 llvm.x86.avx512.mask.psra.wi.256 llvm.x86.avx512.mask.psra.wi.512 llvm.x86.avx512.mask.psrai.d llvm.x86.avx512.mask.psrai.q llvm.x86.avx512.mask.psrav.d llvm.x86.avx512.mask.psrav.q llvm.x86.avx512.mask.psrav.q.128 llvm.x86.avx512.mask.psrav.q.256 llvm.x86.avx512.mask.psrav16.hi llvm.x86.avx512.mask.psrav32.hi llvm.x86.avx512.mask.psrav4.si llvm.x86.avx512.mask.psrav8.hi llvm.x86.avx512.mask.psrav8.si llvm.x86.avx512.mask.psrl.d llvm.x86.avx512.mask.psrl.d.128 llvm.x86.avx512.mask.psrl.d.256 llvm.x86.avx512.mask.psrl.di.128 llvm.x86.avx512.mask.psrl.di.256 llvm.x86.avx512.mask.psrl.di.512 llvm.x86.avx512.mask.psrl.q llvm.x86.avx512.mask.psrl.q.128 llvm.x86.avx512.mask.psrl.q.256 llvm.x86.avx512.mask.psrl.qi.128 llvm.x86.avx512.mask.psrl.qi.256 llvm.x86.avx512.mask.psrl.qi.512 llvm.x86.avx512.mask.psrl.w.128 llvm.x86.avx512.mask.psrl.w.256 llvm.x86.avx512.mask.psrl.w.512 llvm.x86.avx512.mask.psrl.wi.128 llvm.x86.avx512.mask.psrl.wi.256 llvm.x86.avx512.mask.psrl.wi.512 llvm.x86.avx512.mask.psrli.d llvm.x86.avx512.mask.psrli.q llvm.x86.avx512.mask.psrlv.d llvm.x86.avx512.mask.psrlv.q llvm.x86.avx512.mask.psrlv16.hi llvm.x86.avx512.mask.psrlv2.di llvm.x86.avx512.mask.psrlv32hi llvm.x86.avx512.mask.psrlv4.di llvm.x86.avx512.mask.psrlv4.si llvm.x86.avx512.mask.psrlv8.hi llvm.x86.avx512.mask.psrlv8.si llvm.x86.avx512.mask.psub.b.128 llvm.x86.avx512.mask.psub.b.256 llvm.x86.avx512.mask.psub.b.512 llvm.x86.avx512.mask.psub.d.128 llvm.x86.avx512.mask.psub.d.256 llvm.x86.avx512.mask.psub.d.512 llvm.x86.avx512.mask.psub.q.128 llvm.x86.avx512.mask.psub.q.256 llvm.x86.avx512.mask.psub.q.512 llvm.x86.avx512.mask.psub.w.128 llvm.x86.avx512.mask.psub.w.256 llvm.x86.avx512.mask.psub.w.512 llvm.x86.avx512.mask.psubs.b.128 llvm.x86.avx512.mask.psubs.b.256 llvm.x86.avx512.mask.psubs.b.512 llvm.x86.avx512.mask.psubs.w.128 llvm.x86.avx512.mask.psubs.w.256 llvm.x86.avx512.mask.psubs.w.512 llvm.x86.avx512.mask.psubus.b.128 llvm.x86.avx512.mask.psubus.b.256 llvm.x86.avx512.mask.psubus.b.512 llvm.x86.avx512.mask.psubus.w.128 llvm.x86.avx512.mask.psubus.w.256 llvm.x86.avx512.mask.psubus.w.512 llvm.x86.avx512.mask.pternlog.d.128 llvm.x86.avx512.mask.pternlog.d.256 llvm.x86.avx512.mask.pternlog.d.512 llvm.x86.avx512.mask.pternlog.q.128 llvm.x86.avx512.mask.pternlog.q.256 llvm.x86.avx512.mask.pternlog.q.512 llvm.x86.avx512.mask.punpckhb.w.128 llvm.x86.avx512.mask.punpckhb.w.256 llvm.x86.avx512.mask.punpckhb.w.512 llvm.x86.avx512.mask.punpckhd.q.128 llvm.x86.avx512.mask.punpckhd.q.256 llvm.x86.avx512.mask.punpckhd.q.512 llvm.x86.avx512.mask.punpckhqd.q.128 llvm.x86.avx512.mask.punpckhqd.q.256 llvm.x86.avx512.mask.punpckhqd.q.512 llvm.x86.avx512.mask.punpckhw.d.128 llvm.x86.avx512.mask.punpckhw.d.256 llvm.x86.avx512.mask.punpckhw.d.512 llvm.x86.avx512.mask.punpcklb.w.128 llvm.x86.avx512.mask.punpcklb.w.256 llvm.x86.avx512.mask.punpcklb.w.512 llvm.x86.avx512.mask.punpckld.q.128 llvm.x86.avx512.mask.punpckld.q.256 llvm.x86.avx512.mask.punpckld.q.512 llvm.x86.avx512.mask.punpcklqd.q.128 llvm.x86.avx512.mask.punpcklqd.q.256 llvm.x86.avx512.mask.punpcklqd.q.512 llvm.x86.avx512.mask.punpcklw.d.128 llvm.x86.avx512.mask.punpcklw.d.256 llvm.x86.avx512.mask.punpcklw.d.512 llvm.x86.avx512.mask.pxor.d.128 llvm.x86.avx512.mask.pxor.d.256 llvm.x86.avx512.mask.pxor.d.512 llvm.x86.avx512.mask.pxor.q.128 llvm.x86.avx512.mask.pxor.q.256 llvm.x86.avx512.mask.pxor.q.512 llvm.x86.avx512.mask.range.pd.128 llvm.x86.avx512.mask.range.pd.256 llvm.x86.avx512.mask.range.pd.512 llvm.x86.avx512.mask.range.ps.128 llvm.x86.avx512.mask.range.ps.256 llvm.x86.avx512.mask.range.ps.512 llvm.x86.avx512.mask.range.sd llvm.x86.avx512.mask.range.ss llvm.x86.avx512.mask.reduce.pd.128 llvm.x86.avx512.mask.reduce.pd.256 llvm.x86.avx512.mask.reduce.pd.512 llvm.x86.avx512.mask.reduce.ps.128 llvm.x86.avx512.mask.reduce.ps.256 llvm.x86.avx512.mask.reduce.ps.512 llvm.x86.avx512.mask.reduce.sd llvm.x86.avx512.mask.reduce.ss llvm.x86.avx512.mask.rndscale.pd.128 llvm.x86.avx512.mask.rndscale.pd.256 llvm.x86.avx512.mask.rndscale.pd.512 llvm.x86.avx512.mask.rndscale.ps.128 llvm.x86.avx512.mask.rndscale.ps.256 llvm.x86.avx512.mask.rndscale.ps.512 llvm.x86.avx512.mask.rndscale.sd llvm.x86.avx512.mask.rndscale.ss llvm.x86.avx512.mask.scalef.pd.128 llvm.x86.avx512.mask.scalef.pd.256 llvm.x86.avx512.mask.scalef.pd.512 llvm.x86.avx512.mask.scalef.ps.128 llvm.x86.avx512.mask.scalef.ps.256 llvm.x86.avx512.mask.scalef.ps.512 llvm.x86.avx512.mask.scalef.sd llvm.x86.avx512.mask.scalef.ss llvm.x86.avx512.mask.shuf.f32x4 llvm.x86.avx512.mask.shuf.f32x4.256 llvm.x86.avx512.mask.shuf.f64x2 llvm.x86.avx512.mask.shuf.f64x2.256 llvm.x86.avx512.mask.shuf.i32x4 llvm.x86.avx512.mask.shuf.i32x4.256 llvm.x86.avx512.mask.shuf.i64x2 llvm.x86.avx512.mask.shuf.i64x2.256 llvm.x86.avx512.mask.shuf.pd.128 llvm.x86.avx512.mask.shuf.pd.256 llvm.x86.avx512.mask.shuf.pd.512 llvm.x86.avx512.mask.shuf.ps.128 llvm.x86.avx512.mask.shuf.ps.256 llvm.x86.avx512.mask.shuf.ps.512 llvm.x86.avx512.mask.sqrt.pd.128 llvm.x86.avx512.mask.sqrt.pd.256 llvm.x86.avx512.mask.sqrt.pd.512 llvm.x86.avx512.mask.sqrt.ps.128 llvm.x86.avx512.mask.sqrt.ps.256 llvm.x86.avx512.mask.sqrt.ps.512 llvm.x86.avx512.mask.sqrt.sd llvm.x86.avx512.mask.sqrt.ss llvm.x86.avx512.mask.store.d.128 llvm.x86.avx512.mask.store.d.256 llvm.x86.avx512.mask.store.d.512 llvm.x86.avx512.mask.store.pd.128 llvm.x86.avx512.mask.store.pd.256 llvm.x86.avx512.mask.store.pd.512 llvm.x86.avx512.mask.store.ps.128 llvm.x86.avx512.mask.store.ps.256 llvm.x86.avx512.mask.store.ps.512 llvm.x86.avx512.mask.store.q.128 llvm.x86.avx512.mask.store.q.256 llvm.x86.avx512.mask.store.q.512 llvm.x86.avx512.mask.store.ss llvm.x86.avx512.mask.storeu.b.128 llvm.x86.avx512.mask.storeu.b.256 llvm.x86.avx512.mask.storeu.b.512 llvm.x86.avx512.mask.storeu.d.128 llvm.x86.avx512.mask.storeu.d.256 llvm.x86.avx512.mask.storeu.d.512 llvm.x86.avx512.mask.storeu.pd.128 llvm.x86.avx512.mask.storeu.pd.256 llvm.x86.avx512.mask.storeu.pd.512 llvm.x86.avx512.mask.storeu.ps.128 llvm.x86.avx512.mask.storeu.ps.256 llvm.x86.avx512.mask.storeu.ps.512 llvm.x86.avx512.mask.storeu.q.128 llvm.x86.avx512.mask.storeu.q.256 llvm.x86.avx512.mask.storeu.q.512 llvm.x86.avx512.mask.storeu.w.128 llvm.x86.avx512.mask.storeu.w.256 llvm.x86.avx512.mask.storeu.w.512 llvm.x86.avx512.mask.sub.pd.128 llvm.x86.avx512.mask.sub.pd.256 llvm.x86.avx512.mask.sub.pd.512 llvm.x86.avx512.mask.sub.ps.128 llvm.x86.avx512.mask.sub.ps.256 llvm.x86.avx512.mask.sub.ps.512 llvm.x86.avx512.mask.sub.sd.round llvm.x86.avx512.mask.sub.ss.round llvm.x86.avx512.mask.ucmp.b.128 llvm.x86.avx512.mask.ucmp.b.256 llvm.x86.avx512.mask.ucmp.b.512 llvm.x86.avx512.mask.ucmp.d.128 llvm.x86.avx512.mask.ucmp.d.256 llvm.x86.avx512.mask.ucmp.d.512 llvm.x86.avx512.mask.ucmp.q.128 llvm.x86.avx512.mask.ucmp.q.256 llvm.x86.avx512.mask.ucmp.q.512 llvm.x86.avx512.mask.ucmp.w.128 llvm.x86.avx512.mask.ucmp.w.256 llvm.x86.avx512.mask.ucmp.w.512 llvm.x86.avx512.mask.unpckh.pd.128 llvm.x86.avx512.mask.unpckh.pd.256 llvm.x86.avx512.mask.unpckh.pd.512 llvm.x86.avx512.mask.unpckh.ps.128 llvm.x86.avx512.mask.unpckh.ps.256 llvm.x86.avx512.mask.unpckh.ps.512 llvm.x86.avx512.mask.unpckl.pd.128 llvm.x86.avx512.mask.unpckl.pd.256 llvm.x86.avx512.mask.unpckl.pd.512 llvm.x86.avx512.mask.unpckl.ps.128 llvm.x86.avx512.mask.unpckl.ps.256 llvm.x86.avx512.mask.unpckl.ps.512 llvm.x86.avx512.mask.valign.d.128 llvm.x86.avx512.mask.valign.d.256 llvm.x86.avx512.mask.valign.d.512 llvm.x86.avx512.mask.valign.q.128 llvm.x86.avx512.mask.valign.q.256 llvm.x86.avx512.mask.valign.q.512 llvm.x86.avx512.mask.vcvtph2ps.128 llvm.x86.avx512.mask.vcvtph2ps.256 llvm.x86.avx512.mask.vcvtph2ps.512 llvm.x86.avx512.mask.vcvtps2ph.128 llvm.x86.avx512.mask.vcvtps2ph.256 llvm.x86.avx512.mask.vcvtps2ph.512 llvm.x86.avx512.mask.vextractf32x4.256 llvm.x86.avx512.mask.vextractf32x4.512 llvm.x86.avx512.mask.vextractf32x8.512 llvm.x86.avx512.mask.vextractf64x2.256 llvm.x86.avx512.mask.vextractf64x2.512 llvm.x86.avx512.mask.vextractf64x4.512 llvm.x86.avx512.mask.vextracti32x4.256 llvm.x86.avx512.mask.vextracti32x4.512 llvm.x86.avx512.mask.vextracti32x8.512 llvm.x86.avx512.mask.vextracti64x2.256 llvm.x86.avx512.mask.vextracti64x2.512 llvm.x86.avx512.mask.vextracti64x4.512 llvm.x86.avx512.mask.vfmadd.pd.128 llvm.x86.avx512.mask.vfmadd.pd.256 llvm.x86.avx512.mask.vfmadd.pd.512 llvm.x86.avx512.mask.vfmadd.ps.128 llvm.x86.avx512.mask.vfmadd.ps.256 llvm.x86.avx512.mask.vfmadd.ps.512 llvm.x86.avx512.mask.vfmadd.sd llvm.x86.avx512.mask.vfmadd.ss llvm.x86.avx512.mask.vfmaddsub.pd.128 llvm.x86.avx512.mask.vfmaddsub.pd.256 llvm.x86.avx512.mask.vfmaddsub.pd.512 llvm.x86.avx512.mask.vfmaddsub.ps.128 llvm.x86.avx512.mask.vfmaddsub.ps.256 llvm.x86.avx512.mask.vfmaddsub.ps.512 llvm.x86.avx512.mask.vfnmadd.pd.128 llvm.x86.avx512.mask.vfnmadd.pd.256 llvm.x86.avx512.mask.vfnmadd.pd.512 llvm.x86.avx512.mask.vfnmadd.ps.128 llvm.x86.avx512.mask.vfnmadd.ps.256 llvm.x86.avx512.mask.vfnmadd.ps.512 llvm.x86.avx512.mask.vfnmsub.pd.128 llvm.x86.avx512.mask.vfnmsub.pd.256 llvm.x86.avx512.mask.vfnmsub.pd.512 llvm.x86.avx512.mask.vfnmsub.ps.128 llvm.x86.avx512.mask.vfnmsub.ps.256 llvm.x86.avx512.mask.vfnmsub.ps.512 llvm.x86.avx512.mask.vpermi2var.d.128 llvm.x86.avx512.mask.vpermi2var.d.256 llvm.x86.avx512.mask.vpermi2var.d.512 llvm.x86.avx512.mask.vpermi2var.hi.128 llvm.x86.avx512.mask.vpermi2var.hi.256 llvm.x86.avx512.mask.vpermi2var.hi.512 llvm.x86.avx512.mask.vpermi2var.pd.128 llvm.x86.avx512.mask.vpermi2var.pd.256 llvm.x86.avx512.mask.vpermi2var.pd.512 llvm.x86.avx512.mask.vpermi2var.ps.128 llvm.x86.avx512.mask.vpermi2var.ps.256 llvm.x86.avx512.mask.vpermi2var.ps.512 llvm.x86.avx512.mask.vpermi2var.q.128 llvm.x86.avx512.mask.vpermi2var.q.256 llvm.x86.avx512.mask.vpermi2var.q.512 llvm.x86.avx512.mask.vpermi2var.qi.128 llvm.x86.avx512.mask.vpermi2var.qi.256 llvm.x86.avx512.mask.vpermi2var.qi.512 llvm.x86.avx512.mask.vpermil.pd.128 llvm.x86.avx512.mask.vpermil.pd.256 llvm.x86.avx512.mask.vpermil.pd.512 llvm.x86.avx512.mask.vpermil.ps.128 llvm.x86.avx512.mask.vpermil.ps.256 llvm.x86.avx512.mask.vpermil.ps.512 llvm.x86.avx512.mask.vpermilvar.pd.128 llvm.x86.avx512.mask.vpermilvar.pd.256 llvm.x86.avx512.mask.vpermilvar.pd.512 llvm.x86.avx512.mask.vpermilvar.ps.128 llvm.x86.avx512.mask.vpermilvar.ps.256 llvm.x86.avx512.mask.vpermilvar.ps.512 llvm.x86.avx512.mask.vpermt2var.d.128 llvm.x86.avx512.mask.vpermt2var.d.256 llvm.x86.avx512.mask.vpermt2var.d.512 llvm.x86.avx512.mask.vpermt2var.hi.128 llvm.x86.avx512.mask.vpermt2var.hi.256 llvm.x86.avx512.mask.vpermt2var.hi.512 llvm.x86.avx512.mask.vpermt2var.pd.128 llvm.x86.avx512.mask.vpermt2var.pd.256 llvm.x86.avx512.mask.vpermt2var.pd.512 llvm.x86.avx512.mask.vpermt2var.ps.128 llvm.x86.avx512.mask.vpermt2var.ps.256 llvm.x86.avx512.mask.vpermt2var.ps.512 llvm.x86.avx512.mask.vpermt2var.q.128 llvm.x86.avx512.mask.vpermt2var.q.256 llvm.x86.avx512.mask.vpermt2var.q.512 llvm.x86.avx512.mask.vpermt2var.qi.128 llvm.x86.avx512.mask.vpermt2var.qi.256 llvm.x86.avx512.mask.vpermt2var.qi.512 llvm.x86.avx512.mask.vpmadd52h.uq.128 llvm.x86.avx512.mask.vpmadd52h.uq.256 llvm.x86.avx512.mask.vpmadd52h.uq.512 llvm.x86.avx512.mask.vpmadd52l.uq.128 llvm.x86.avx512.mask.vpmadd52l.uq.256 llvm.x86.avx512.mask.vpmadd52l.uq.512 llvm.x86.avx512.mask.xor.pd.128 llvm.x86.avx512.mask.xor.pd.256 llvm.x86.avx512.mask.xor.pd.512 llvm.x86.avx512.mask.xor.ps.128 llvm.x86.avx512.mask.xor.ps.256 llvm.x86.avx512.mask.xor.ps.512 llvm.x86.avx512.mask3.vfmadd.pd.128 llvm.x86.avx512.mask3.vfmadd.pd.256 llvm.x86.avx512.mask3.vfmadd.pd.512 llvm.x86.avx512.mask3.vfmadd.ps.128 llvm.x86.avx512.mask3.vfmadd.ps.256 llvm.x86.avx512.mask3.vfmadd.ps.512 llvm.x86.avx512.mask3.vfmadd.sd llvm.x86.avx512.mask3.vfmadd.ss llvm.x86.avx512.mask3.vfmaddsub.pd.128 llvm.x86.avx512.mask3.vfmaddsub.pd.256 llvm.x86.avx512.mask3.vfmaddsub.pd.512 llvm.x86.avx512.mask3.vfmaddsub.ps.128 llvm.x86.avx512.mask3.vfmaddsub.ps.256 llvm.x86.avx512.mask3.vfmaddsub.ps.512 llvm.x86.avx512.mask3.vfmsub.pd.128 llvm.x86.avx512.mask3.vfmsub.pd.256 llvm.x86.avx512.mask3.vfmsub.pd.512 llvm.x86.avx512.mask3.vfmsub.ps.128 llvm.x86.avx512.mask3.vfmsub.ps.256 llvm.x86.avx512.mask3.vfmsub.ps.512 llvm.x86.avx512.mask3.vfmsubadd.pd.128 llvm.x86.avx512.mask3.vfmsubadd.pd.256 llvm.x86.avx512.mask3.vfmsubadd.pd.512 llvm.x86.avx512.mask3.vfmsubadd.ps.128 llvm.x86.avx512.mask3.vfmsubadd.ps.256 llvm.x86.avx512.mask3.vfmsubadd.ps.512 llvm.x86.avx512.mask3.vfnmsub.pd.128 llvm.x86.avx512.mask3.vfnmsub.pd.256 llvm.x86.avx512.mask3.vfnmsub.pd.512 llvm.x86.avx512.mask3.vfnmsub.ps.128 llvm.x86.avx512.mask3.vfnmsub.ps.256 llvm.x86.avx512.mask3.vfnmsub.ps.512 llvm.x86.avx512.maskz.fixupimm.pd.128 llvm.x86.avx512.maskz.fixupimm.pd.256 llvm.x86.avx512.maskz.fixupimm.pd.512 llvm.x86.avx512.maskz.fixupimm.ps.128 llvm.x86.avx512.maskz.fixupimm.ps.256 llvm.x86.avx512.maskz.fixupimm.ps.512 llvm.x86.avx512.maskz.fixupimm.sd llvm.x86.avx512.maskz.fixupimm.ss llvm.x86.avx512.maskz.pternlog.d.128 llvm.x86.avx512.maskz.pternlog.d.256 llvm.x86.avx512.maskz.pternlog.d.512 llvm.x86.avx512.maskz.pternlog.q.128 llvm.x86.avx512.maskz.pternlog.q.256 llvm.x86.avx512.maskz.pternlog.q.512 llvm.x86.avx512.maskz.vfmadd.pd.128 llvm.x86.avx512.maskz.vfmadd.pd.256 llvm.x86.avx512.maskz.vfmadd.pd.512 llvm.x86.avx512.maskz.vfmadd.ps.128 llvm.x86.avx512.maskz.vfmadd.ps.256 llvm.x86.avx512.maskz.vfmadd.ps.512 llvm.x86.avx512.maskz.vfmadd.sd llvm.x86.avx512.maskz.vfmadd.ss llvm.x86.avx512.maskz.vfmaddsub.pd.128 llvm.x86.avx512.maskz.vfmaddsub.pd.256 llvm.x86.avx512.maskz.vfmaddsub.pd.512 llvm.x86.avx512.maskz.vfmaddsub.ps.128 llvm.x86.avx512.maskz.vfmaddsub.ps.256 llvm.x86.avx512.maskz.vfmaddsub.ps.512 llvm.x86.avx512.maskz.vpermt2var.d.128 llvm.x86.avx512.maskz.vpermt2var.d.256 llvm.x86.avx512.maskz.vpermt2var.d.512 llvm.x86.avx512.maskz.vpermt2var.hi.128 llvm.x86.avx512.maskz.vpermt2var.hi.256 llvm.x86.avx512.maskz.vpermt2var.hi.512 llvm.x86.avx512.maskz.vpermt2var.pd.128 llvm.x86.avx512.maskz.vpermt2var.pd.256 llvm.x86.avx512.maskz.vpermt2var.pd.512 llvm.x86.avx512.maskz.vpermt2var.ps.128 llvm.x86.avx512.maskz.vpermt2var.ps.256 llvm.x86.avx512.maskz.vpermt2var.ps.512 llvm.x86.avx512.maskz.vpermt2var.q.128 llvm.x86.avx512.maskz.vpermt2var.q.256 llvm.x86.avx512.maskz.vpermt2var.q.512 llvm.x86.avx512.maskz.vpermt2var.qi.128 llvm.x86.avx512.maskz.vpermt2var.qi.256 llvm.x86.avx512.maskz.vpermt2var.qi.512 llvm.x86.avx512.maskz.vpmadd52h.uq.128 llvm.x86.avx512.maskz.vpmadd52h.uq.256 llvm.x86.avx512.maskz.vpmadd52h.uq.512 llvm.x86.avx512.maskz.vpmadd52l.uq.128 llvm.x86.avx512.maskz.vpmadd52l.uq.256 llvm.x86.avx512.maskz.vpmadd52l.uq.512 llvm.x86.avx512.movntdqa llvm.x86.avx512.pbroadcastb.128 llvm.x86.avx512.pbroadcastb.256 llvm.x86.avx512.pbroadcastb.512 llvm.x86.avx512.pbroadcastd.128 llvm.x86.avx512.pbroadcastd.256 llvm.x86.avx512.pbroadcastd.512 llvm.x86.avx512.pbroadcastq.128 llvm.x86.avx512.pbroadcastq.256 llvm.x86.avx512.pbroadcastq.512 llvm.x86.avx512.pbroadcastw.128 llvm.x86.avx512.pbroadcastw.256 llvm.x86.avx512.pbroadcastw.512 llvm.x86.avx512.pmovzxbd llvm.x86.avx512.pmovzxbq llvm.x86.avx512.pmovzxdq llvm.x86.avx512.pmovzxwd llvm.x86.avx512.pmovzxwq llvm.x86.avx512.psad.bw.512 llvm.x86.avx512.psll.dq.512 llvm.x86.avx512.psrl.dq.512 llvm.x86.avx512.ptestm.b.128 llvm.x86.avx512.ptestm.b.256 llvm.x86.avx512.ptestm.b.512 llvm.x86.avx512.ptestm.d.128 llvm.x86.avx512.ptestm.d.256 llvm.x86.avx512.ptestm.d.512 llvm.x86.avx512.ptestm.q.128 llvm.x86.avx512.ptestm.q.256 llvm.x86.avx512.ptestm.q.512 llvm.x86.avx512.ptestm.w.128 llvm.x86.avx512.ptestm.w.256 llvm.x86.avx512.ptestm.w.512 llvm.x86.avx512.ptestnm.b.128 llvm.x86.avx512.ptestnm.b.256 llvm.x86.avx512.ptestnm.b.512 llvm.x86.avx512.ptestnm.d.128 llvm.x86.avx512.ptestnm.d.256 llvm.x86.avx512.ptestnm.d.512 llvm.x86.avx512.ptestnm.q.128 llvm.x86.avx512.ptestnm.q.256 llvm.x86.avx512.ptestnm.q.512 llvm.x86.avx512.ptestnm.w.128 llvm.x86.avx512.ptestnm.w.256 llvm.x86.avx512.ptestnm.w.512 llvm.x86.avx512.rcp14.pd.128 llvm.x86.avx512.rcp14.pd.256 llvm.x86.avx512.rcp14.pd.512 llvm.x86.avx512.rcp14.ps.128 llvm.x86.avx512.rcp14.ps.256 llvm.x86.avx512.rcp14.ps.512 llvm.x86.avx512.rcp14.sd llvm.x86.avx512.rcp14.ss llvm.x86.avx512.rcp28.pd llvm.x86.avx512.rcp28.ps llvm.x86.avx512.rcp28.sd llvm.x86.avx512.rcp28.ss llvm.x86.avx512.rsqrt14.pd.128 llvm.x86.avx512.rsqrt14.pd.256 llvm.x86.avx512.rsqrt14.pd.512 llvm.x86.avx512.rsqrt14.ps.128 llvm.x86.avx512.rsqrt14.ps.256 llvm.x86.avx512.rsqrt14.ps.512 llvm.x86.avx512.rsqrt14.sd llvm.x86.avx512.rsqrt14.ss llvm.x86.avx512.rsqrt28.pd llvm.x86.avx512.rsqrt28.ps llvm.x86.avx512.rsqrt28.sd llvm.x86.avx512.rsqrt28.ss llvm.x86.avx512.scatter.dpd.512 llvm.x86.avx512.scatter.dpi.512 llvm.x86.avx512.scatter.dpq.512 llvm.x86.avx512.scatter.dps.512 llvm.x86.avx512.scatter.qpd.512 llvm.x86.avx512.scatter.qpi.512 llvm.x86.avx512.scatter.qpq.512 llvm.x86.avx512.scatter.qps.512 llvm.x86.avx512.scatterdiv2.df llvm.x86.avx512.scatterdiv2.di llvm.x86.avx512.scatterdiv4.df llvm.x86.avx512.scatterdiv4.di llvm.x86.avx512.scatterdiv4.sf llvm.x86.avx512.scatterdiv4.si llvm.x86.avx512.scatterdiv8.sf llvm.x86.avx512.scatterdiv8.si llvm.x86.avx512.scatterpf.dpd.512 llvm.x86.avx512.scatterpf.dps.512 llvm.x86.avx512.scatterpf.qpd.512 llvm.x86.avx512.scatterpf.qps.512 llvm.x86.avx512.scattersiv2.df llvm.x86.avx512.scattersiv2.di llvm.x86.avx512.scattersiv4.df llvm.x86.avx512.scattersiv4.di llvm.x86.avx512.scattersiv4.sf llvm.x86.avx512.scattersiv4.si llvm.x86.avx512.scattersiv8.sf llvm.x86.avx512.scattersiv8.si llvm.x86.avx512.storent.pd.512 llvm.x86.avx512.storent.ps.512 llvm.x86.avx512.storent.q.512 llvm.x86.avx512.vbroadcast.sd.512 llvm.x86.avx512.vbroadcast.ss.512 llvm.x86.avx512.vcomi.sd llvm.x86.avx512.vcomi.ss llvm.x86.avx512.vcvtsd2si32 llvm.x86.avx512.vcvtsd2si64 llvm.x86.avx512.vcvtsd2usi32 llvm.x86.avx512.vcvtsd2usi64 llvm.x86.avx512.vcvtss2si32 llvm.x86.avx512.vcvtss2si64 llvm.x86.avx512.vcvtss2usi32 llvm.x86.avx512.vcvtss2usi64 llvm.x86.bmi.bextr.32 llvm.x86.bmi.bextr.64 llvm.x86.bmi.bzhi.32 llvm.x86.bmi.bzhi.64 llvm.x86.bmi.pdep.32 llvm.x86.bmi.pdep.64 llvm.x86.bmi.pext.32 llvm.x86.bmi.pext.64 llvm.x86.flags.read.u32 llvm.x86.flags.read.u64 llvm.x86.flags.write.u32 llvm.x86.flags.write.u64 llvm.x86.fma.vfmadd.pd llvm.x86.fma.vfmadd.pd.256 llvm.x86.fma.vfmadd.ps llvm.x86.fma.vfmadd.ps.256 llvm.x86.fma.vfmadd.sd llvm.x86.fma.vfmadd.ss llvm.x86.fma.vfmaddsub.pd llvm.x86.fma.vfmaddsub.pd.256 llvm.x86.fma.vfmaddsub.ps llvm.x86.fma.vfmaddsub.ps.256 llvm.x86.fma.vfmsub.pd llvm.x86.fma.vfmsub.pd.256 llvm.x86.fma.vfmsub.ps llvm.x86.fma.vfmsub.ps.256 llvm.x86.fma.vfmsub.sd llvm.x86.fma.vfmsub.ss llvm.x86.fma.vfmsubadd.pd llvm.x86.fma.vfmsubadd.pd.256 llvm.x86.fma.vfmsubadd.ps llvm.x86.fma.vfmsubadd.ps.256 llvm.x86.fma.vfnmadd.pd llvm.x86.fma.vfnmadd.pd.256 llvm.x86.fma.vfnmadd.ps llvm.x86.fma.vfnmadd.ps.256 llvm.x86.fma.vfnmadd.sd llvm.x86.fma.vfnmadd.ss llvm.x86.fma.vfnmsub.pd llvm.x86.fma.vfnmsub.pd.256 llvm.x86.fma.vfnmsub.ps llvm.x86.fma.vfnmsub.ps.256 llvm.x86.fma.vfnmsub.sd llvm.x86.fma.vfnmsub.ss llvm.x86.fxrstor llvm.x86.fxrstor64 llvm.x86.fxsave llvm.x86.fxsave64 llvm.x86.int llvm.x86.mmx.emms llvm.x86.mmx.femms llvm.x86.mmx.maskmovq llvm.x86.mmx.movnt.dq llvm.x86.mmx.packssdw llvm.x86.mmx.packsswb llvm.x86.mmx.packuswb llvm.x86.mmx.padd.b llvm.x86.mmx.padd.d llvm.x86.mmx.padd.q llvm.x86.mmx.padd.w llvm.x86.mmx.padds.b llvm.x86.mmx.padds.w llvm.x86.mmx.paddus.b llvm.x86.mmx.paddus.w llvm.x86.mmx.palignr.b llvm.x86.mmx.pand llvm.x86.mmx.pandn llvm.x86.mmx.pavg.b llvm.x86.mmx.pavg.w llvm.x86.mmx.pcmpeq.b llvm.x86.mmx.pcmpeq.d llvm.x86.mmx.pcmpeq.w llvm.x86.mmx.pcmpgt.b llvm.x86.mmx.pcmpgt.d llvm.x86.mmx.pcmpgt.w llvm.x86.mmx.pextr.w llvm.x86.mmx.pinsr.w llvm.x86.mmx.pmadd.wd llvm.x86.mmx.pmaxs.w llvm.x86.mmx.pmaxu.b llvm.x86.mmx.pmins.w llvm.x86.mmx.pminu.b llvm.x86.mmx.pmovmskb llvm.x86.mmx.pmulh.w llvm.x86.mmx.pmulhu.w llvm.x86.mmx.pmull.w llvm.x86.mmx.pmulu.dq llvm.x86.mmx.por llvm.x86.mmx.psad.bw llvm.x86.mmx.psll.d llvm.x86.mmx.psll.q llvm.x86.mmx.psll.w llvm.x86.mmx.pslli.d llvm.x86.mmx.pslli.q llvm.x86.mmx.pslli.w llvm.x86.mmx.psra.d llvm.x86.mmx.psra.w llvm.x86.mmx.psrai.d llvm.x86.mmx.psrai.w llvm.x86.mmx.psrl.d llvm.x86.mmx.psrl.q llvm.x86.mmx.psrl.w llvm.x86.mmx.psrli.d llvm.x86.mmx.psrli.q llvm.x86.mmx.psrli.w llvm.x86.mmx.psub.b llvm.x86.mmx.psub.d llvm.x86.mmx.psub.q llvm.x86.mmx.psub.w llvm.x86.mmx.psubs.b llvm.x86.mmx.psubs.w llvm.x86.mmx.psubus.b llvm.x86.mmx.psubus.w llvm.x86.mmx.punpckhbw llvm.x86.mmx.punpckhdq llvm.x86.mmx.punpckhwd llvm.x86.mmx.punpcklbw llvm.x86.mmx.punpckldq llvm.x86.mmx.punpcklwd llvm.x86.mmx.pxor llvm.x86.pclmulqdq llvm.x86.rdfsbase.32 llvm.x86.rdfsbase.64 llvm.x86.rdgsbase.32 llvm.x86.rdgsbase.64 llvm.x86.rdpkru llvm.x86.rdpmc llvm.x86.rdrand.16 llvm.x86.rdrand.32 llvm.x86.rdrand.64 llvm.x86.rdseed.16 llvm.x86.rdseed.32 llvm.x86.rdseed.64 llvm.x86.rdtsc llvm.x86.rdtscp llvm.x86.seh.ehregnode llvm.x86.seh.lsda llvm.x86.seh.recoverfp llvm.x86.sha1msg1 llvm.x86.sha1msg2 llvm.x86.sha1nexte llvm.x86.sha1rnds4 llvm.x86.sha256msg1 llvm.x86.sha256msg2 llvm.x86.sha256rnds2 llvm.x86.sse.add.ss llvm.x86.sse.cmp.ps llvm.x86.sse.cmp.ss llvm.x86.sse.comieq.ss llvm.x86.sse.comige.ss llvm.x86.sse.comigt.ss llvm.x86.sse.comile.ss llvm.x86.sse.comilt.ss llvm.x86.sse.comineq.ss llvm.x86.sse.cvtpd2pi llvm.x86.sse.cvtpi2pd llvm.x86.sse.cvtpi2ps llvm.x86.sse.cvtps2pi llvm.x86.sse.cvtsi2ss llvm.x86.sse.cvtsi642ss llvm.x86.sse.cvtss2si llvm.x86.sse.cvtss2si64 llvm.x86.sse.cvttpd2pi llvm.x86.sse.cvttps2pi llvm.x86.sse.cvttss2si llvm.x86.sse.cvttss2si64 llvm.x86.sse.div.ss llvm.x86.sse.ldmxcsr llvm.x86.sse.max.ps llvm.x86.sse.max.ss llvm.x86.sse.min.ps llvm.x86.sse.min.ss llvm.x86.sse.movmsk.ps llvm.x86.sse.mul.ss llvm.x86.sse.pshuf.w llvm.x86.sse.rcp.ps llvm.x86.sse.rcp.ss llvm.x86.sse.rsqrt.ps llvm.x86.sse.rsqrt.ss llvm.x86.sse.sfence llvm.x86.sse.sqrt.ps llvm.x86.sse.sqrt.ss llvm.x86.sse.stmxcsr llvm.x86.sse.storeu.ps llvm.x86.sse.sub.ss llvm.x86.sse.ucomieq.ss llvm.x86.sse.ucomige.ss llvm.x86.sse.ucomigt.ss llvm.x86.sse.ucomile.ss llvm.x86.sse.ucomilt.ss llvm.x86.sse.ucomineq.ss llvm.x86.sse2.add.sd llvm.x86.sse2.clflush llvm.x86.sse2.cmp.pd llvm.x86.sse2.cmp.sd llvm.x86.sse2.comieq.sd llvm.x86.sse2.comige.sd llvm.x86.sse2.comigt.sd llvm.x86.sse2.comile.sd llvm.x86.sse2.comilt.sd llvm.x86.sse2.comineq.sd llvm.x86.sse2.cvtdq2pd llvm.x86.sse2.cvtdq2ps llvm.x86.sse2.cvtpd2dq llvm.x86.sse2.cvtpd2ps llvm.x86.sse2.cvtps2dq llvm.x86.sse2.cvtps2pd llvm.x86.sse2.cvtsd2si llvm.x86.sse2.cvtsd2si64 llvm.x86.sse2.cvtsd2ss llvm.x86.sse2.cvtsi2sd llvm.x86.sse2.cvtsi642sd llvm.x86.sse2.cvtss2sd llvm.x86.sse2.cvttpd2dq llvm.x86.sse2.cvttps2dq llvm.x86.sse2.cvttsd2si llvm.x86.sse2.cvttsd2si64 llvm.x86.sse2.div.sd llvm.x86.sse2.lfence llvm.x86.sse2.maskmov.dqu llvm.x86.sse2.max.pd llvm.x86.sse2.max.sd llvm.x86.sse2.mfence llvm.x86.sse2.min.pd llvm.x86.sse2.min.sd llvm.x86.sse2.movmsk.pd llvm.x86.sse2.mul.sd llvm.x86.sse2.packssdw.128 llvm.x86.sse2.packsswb.128 llvm.x86.sse2.packuswb.128 llvm.x86.sse2.padds.b llvm.x86.sse2.padds.w llvm.x86.sse2.paddus.b llvm.x86.sse2.paddus.w llvm.x86.sse2.pause llvm.x86.sse2.pavg.b llvm.x86.sse2.pavg.w llvm.x86.sse2.pmadd.wd llvm.x86.sse2.pmaxs.w llvm.x86.sse2.pmaxu.b llvm.x86.sse2.pmins.w llvm.x86.sse2.pminu.b llvm.x86.sse2.pmovmskb.128 llvm.x86.sse2.pmulh.w llvm.x86.sse2.pmulhu.w llvm.x86.sse2.pmulu.dq llvm.x86.sse2.psad.bw llvm.x86.sse2.pshuf.d llvm.x86.sse2.pshufh.w llvm.x86.sse2.pshufl.w llvm.x86.sse2.psll.d llvm.x86.sse2.psll.q llvm.x86.sse2.psll.w llvm.x86.sse2.pslli.d llvm.x86.sse2.pslli.q llvm.x86.sse2.pslli.w llvm.x86.sse2.psra.d llvm.x86.sse2.psra.w llvm.x86.sse2.psrai.d llvm.x86.sse2.psrai.w llvm.x86.sse2.psrl.d llvm.x86.sse2.psrl.q llvm.x86.sse2.psrl.w llvm.x86.sse2.psrli.d llvm.x86.sse2.psrli.q llvm.x86.sse2.psrli.w llvm.x86.sse2.psubs.b llvm.x86.sse2.psubs.w llvm.x86.sse2.psubus.b llvm.x86.sse2.psubus.w llvm.x86.sse2.sqrt.pd llvm.x86.sse2.sqrt.sd llvm.x86.sse2.storel.dq llvm.x86.sse2.storeu.dq llvm.x86.sse2.storeu.pd llvm.x86.sse2.sub.sd llvm.x86.sse2.ucomieq.sd llvm.x86.sse2.ucomige.sd llvm.x86.sse2.ucomigt.sd llvm.x86.sse2.ucomile.sd llvm.x86.sse2.ucomilt.sd llvm.x86.sse2.ucomineq.sd llvm.x86.sse3.addsub.pd llvm.x86.sse3.addsub.ps llvm.x86.sse3.hadd.pd llvm.x86.sse3.hadd.ps llvm.x86.sse3.hsub.pd llvm.x86.sse3.hsub.ps llvm.x86.sse3.ldu.dq llvm.x86.sse3.monitor llvm.x86.sse3.mwait llvm.x86.sse41.blendvpd llvm.x86.sse41.blendvps llvm.x86.sse41.dppd llvm.x86.sse41.dpps llvm.x86.sse41.extractps llvm.x86.sse41.insertps llvm.x86.sse41.movntdqa llvm.x86.sse41.mpsadbw llvm.x86.sse41.packusdw llvm.x86.sse41.pblendvb llvm.x86.sse41.pextrb llvm.x86.sse41.pextrd llvm.x86.sse41.pextrq llvm.x86.sse41.phminposuw llvm.x86.sse41.pmaxsb llvm.x86.sse41.pmaxsd llvm.x86.sse41.pmaxud llvm.x86.sse41.pmaxuw llvm.x86.sse41.pminsb llvm.x86.sse41.pminsd llvm.x86.sse41.pminud llvm.x86.sse41.pminuw llvm.x86.sse41.pmovsxbd llvm.x86.sse41.pmovsxbq llvm.x86.sse41.pmovsxbw llvm.x86.sse41.pmovsxdq llvm.x86.sse41.pmovsxwd llvm.x86.sse41.pmovsxwq llvm.x86.sse41.pmovzxbd llvm.x86.sse41.pmovzxbq llvm.x86.sse41.pmovzxbw llvm.x86.sse41.pmovzxdq llvm.x86.sse41.pmovzxwd llvm.x86.sse41.pmovzxwq llvm.x86.sse41.pmuldq llvm.x86.sse41.ptestc llvm.x86.sse41.ptestnzc llvm.x86.sse41.ptestz llvm.x86.sse41.round.pd llvm.x86.sse41.round.ps llvm.x86.sse41.round.sd llvm.x86.sse41.round.ss llvm.x86.sse42.crc32.32.16 llvm.x86.sse42.crc32.32.32 llvm.x86.sse42.crc32.32.8 llvm.x86.sse42.crc32.64.64 llvm.x86.sse42.pcmpestri128 llvm.x86.sse42.pcmpestria128 llvm.x86.sse42.pcmpestric128 llvm.x86.sse42.pcmpestrio128 llvm.x86.sse42.pcmpestris128 llvm.x86.sse42.pcmpestriz128 llvm.x86.sse42.pcmpestrm128 llvm.x86.sse42.pcmpistri128 llvm.x86.sse42.pcmpistria128 llvm.x86.sse42.pcmpistric128 llvm.x86.sse42.pcmpistrio128 llvm.x86.sse42.pcmpistris128 llvm.x86.sse42.pcmpistriz128 llvm.x86.sse42.pcmpistrm128 llvm.x86.sse4a.extrq llvm.x86.sse4a.extrqi llvm.x86.sse4a.insertq llvm.x86.sse4a.insertqi llvm.x86.sse4a.movnt.sd llvm.x86.sse4a.movnt.ss llvm.x86.ssse3.pabs.b llvm.x86.ssse3.pabs.b.128 llvm.x86.ssse3.pabs.d llvm.x86.ssse3.pabs.d.128 llvm.x86.ssse3.pabs.w llvm.x86.ssse3.pabs.w.128 llvm.x86.ssse3.phadd.d llvm.x86.ssse3.phadd.d.128 llvm.x86.ssse3.phadd.sw llvm.x86.ssse3.phadd.sw.128 llvm.x86.ssse3.phadd.w llvm.x86.ssse3.phadd.w.128 llvm.x86.ssse3.phsub.d llvm.x86.ssse3.phsub.d.128 llvm.x86.ssse3.phsub.sw llvm.x86.ssse3.phsub.sw.128 llvm.x86.ssse3.phsub.w llvm.x86.ssse3.phsub.w.128 llvm.x86.ssse3.pmadd.ub.sw llvm.x86.ssse3.pmadd.ub.sw.128 llvm.x86.ssse3.pmul.hr.sw llvm.x86.ssse3.pmul.hr.sw.128 llvm.x86.ssse3.pshuf.b llvm.x86.ssse3.pshuf.b.128 llvm.x86.ssse3.psign.b llvm.x86.ssse3.psign.b.128 llvm.x86.ssse3.psign.d llvm.x86.ssse3.psign.d.128 llvm.x86.ssse3.psign.w llvm.x86.ssse3.psign.w.128 llvm.x86.subborrow.u32 llvm.x86.subborrow.u64 llvm.x86.tbm.bextri.u32 llvm.x86.tbm.bextri.u64 llvm.x86.vcvtph2ps.128 llvm.x86.vcvtph2ps.256 llvm.x86.vcvtps2ph.128 llvm.x86.vcvtps2ph.256 llvm.x86.wrfsbase.32 llvm.x86.wrfsbase.64 llvm.x86.wrgsbase.32 llvm.x86.wrgsbase.64 llvm.x86.wrpkru llvm.x86.xabort llvm.x86.xbegin llvm.x86.xend llvm.x86.xop.vfrcz.pd llvm.x86.xop.vfrcz.pd.256 llvm.x86.xop.vfrcz.ps llvm.x86.xop.vfrcz.ps.256 llvm.x86.xop.vfrcz.sd llvm.x86.xop.vfrcz.ss llvm.x86.xop.vpcmov.256 llvm.x86.xop.vpcomb llvm.x86.xop.vpcomd llvm.x86.xop.vpcomq llvm.x86.xop.vpcomub llvm.x86.xop.vpcomud llvm.x86.xop.vpcomuq llvm.x86.xop.vpcomuw llvm.x86.xop.vpcomw llvm.x86.xop.vpermil2pd llvm.x86.xop.vpermil2pd.256 llvm.x86.xop.vpermil2ps llvm.x86.xop.vpermil2ps.256 llvm.x86.xop.vphaddbd llvm.x86.xop.vphaddbq llvm.x86.xop.vphaddbw llvm.x86.xop.vphadddq llvm.x86.xop.vphaddubd llvm.x86.xop.vphaddubq llvm.x86.xop.vphaddubw llvm.x86.xop.vphaddudq llvm.x86.xop.vphadduwd llvm.x86.xop.vphadduwq llvm.x86.xop.vphaddwd llvm.x86.xop.vphaddwq llvm.x86.xop.vphsubbw llvm.x86.xop.vphsubdq llvm.x86.xop.vphsubwd llvm.x86.xop.vpmacsdd llvm.x86.xop.vpmacsdqh llvm.x86.xop.vpmacsdql llvm.x86.xop.vpmacssdd llvm.x86.xop.vpmacssdqh llvm.x86.xop.vpmacssdql llvm.x86.xop.vpmacsswd llvm.x86.xop.vpmacssww llvm.x86.xop.vpmacswd llvm.x86.xop.vpmacsww llvm.x86.xop.vpmadcsswd llvm.x86.xop.vpmadcswd llvm.x86.xop.vpperm llvm.x86.xop.vprotb llvm.x86.xop.vprotbi llvm.x86.xop.vprotd llvm.x86.xop.vprotdi llvm.x86.xop.vprotq llvm.x86.xop.vprotqi llvm.x86.xop.vprotw llvm.x86.xop.vprotwi llvm.x86.xop.vpshab llvm.x86.xop.vpshad llvm.x86.xop.vpshaq llvm.x86.xop.vpshaw llvm.x86.xop.vpshlb llvm.x86.xop.vpshld llvm.x86.xop.vpshlq llvm.x86.xop.vpshlw llvm.x86.xrstor llvm.x86.xrstor64 llvm.x86.xrstors llvm.x86.xrstors64 llvm.x86.xsave llvm.x86.xsave64 llvm.x86.xsavec llvm.x86.xsavec64 llvm.x86.xsaveopt llvm.x86.xsaveopt64 llvm.x86.xsaves llvm.x86.xsaves64 llvm.x86.xtest llvm.xcore.bitrev llvm.xcore.checkevent llvm.xcore.chkct llvm.xcore.clre llvm.xcore.clrpt llvm.xcore.clrsr llvm.xcore.crc32 llvm.xcore.crc8 llvm.xcore.edu llvm.xcore.eeu llvm.xcore.endin llvm.xcore.freer llvm.xcore.geted llvm.xcore.getet llvm.xcore.getid llvm.xcore.getps llvm.xcore.getr llvm.xcore.getst llvm.xcore.getts llvm.xcore.in llvm.xcore.inct llvm.xcore.initcp llvm.xcore.initdp llvm.xcore.initlr llvm.xcore.initpc llvm.xcore.initsp llvm.xcore.inshr llvm.xcore.int llvm.xcore.mjoin llvm.xcore.msync llvm.xcore.out llvm.xcore.outct llvm.xcore.outshr llvm.xcore.outt llvm.xcore.peek llvm.xcore.setc llvm.xcore.setclk llvm.xcore.setd llvm.xcore.setev llvm.xcore.setps llvm.xcore.setpsc llvm.xcore.setpt llvm.xcore.setrdy llvm.xcore.setsr llvm.xcore.settw llvm.xcore.setv llvm.xcore.sext llvm.xcore.ssync llvm.xcore.syncr llvm.xcore.testct llvm.xcore.testwct llvm.xcore.waitevent llvm.xcore.zext <unknown>: Print module to stderr print-module Print function to stderr print-function Print BB to stderr print-bb <Invalid operator> cc ccc cc ccc cc ccc cc ccc cc ccc ccc cc cc ccc cc cc ccc cc cc ccc cc cc cc ccc ccccccccc c both values to select must have same type select values cannot have token type vector select condition element type must be i1 selected values for vector select must be vectors vector select requires selected vectors to have the same vector length as select condition select condition must be i1 or <n x i1> mallocsize malloccall prof fpmath tbaa.struct alias.scope make.implicit unpredictable invariant.group llvm.loop gc-transition Function Pass Manager BasicBlock Pass Manager Module Pass Manager ... Pass execution timing report ... Releasing pass ' Running pass ' on module ' on FunctionPass Manager ModulePass Manager BasicBlockPass Manager Executing Pass ' Made Modification ' Freeing Pass ' ' on BasicBlock ' '... ' on Function ' ' on Module ' ' on Region ' ' on Loop ' ' on Call Graph Nodes ' -- ' ' is not preserving ' -*- ' ' is the last user of following pass instances. Free these instances Pass Arguments: Analyses: Uninitialized Pass Required Preserved Pass ' ' is not initialized. Verify if there is a pass dependency cycle. Required Passes: Error: Required pass not found! Possible causes: - Pass misconfiguration (e.g.: missing macros) - Corruption of the global PassRegistry *** IR Dump Before *** *** IR Dump After Error reading bitcode file: disable debug output Disabled print pass details when it is executed Details print pass name before it is executed Executions print pass structure before run() Structure print pass arguments to pass to 'opt' Arguments debug-pass Print PassManager debugging information print-before Print IR before specified passes print-after Print IR after specified passes print-before-all Print IR before each pass print-after-all Print IR after each pass filter-print-funcs function names Only print IR for functions whose name match this for all print-[before|after][-all] options time-passes Time each pass, printing elapsed time for each on exit llvm.module.flags PIC Level PIE Level ProfileSummary NOT BISECT: running pass module ( function ( basic block ( ) in function ( SCC ( BISECT: running case ( BISECT: NOT running case ( ): opt-bisect-limit Maximum optimization to perform Unnamed pass: implement Pass::getPassName() Pass::print not implemented for pass: ' Two passes with the same argument (- ) attempted to be registered! statepoint-id statepoint-num-patch-bytes f80 f128 ppcf128 isVoid glue x86mmx v2i1 v3i1 v4i1 v8i1 v16i1 v32i1 v64i1 v512i1 v1024i1 v1i8 v2i8 v3i8 v4i8 v8i8 v16i8 v32i8 v64i8 v128i8 v256i8 v1i16 v2i16 v3i16 v4i16 v8i16 v16i16 v32i16 v64i16 v128i16 v1i32 v2i32 v3i32 v4i32 v8i32 v16i32 v32i32 v64i32 v1i64 v3i64 v4i64 v8i64 v16i64 v32i64 v1i128 v1f32 v2f16 v3f16 v4f16 v8f16 v16f16 v3f32 v4f32 v8f32 v16f32 v1f64 v3f64 v4f64 v8f64 v16f64 Metadata Untyped Attribute ' ' only applies to functions! ' does not apply to function returns ' does not apply to functions! dereferenceable, dereferenceable_or_null apply only to pointer types dereferenceable, dereferenceable_or_null apply only to load instructions, use attributes for calls or invokes dereferenceable, dereferenceable_or_null take one operand! dereferenceable, dereferenceable_or_null metadata value must be an i64! swifterror value when used in a callsite should be marked with swifterror attribute swifterror value can only be loaded and stored from, or as a swifterror argument! swifterror value should be the second operand when used by stores 'allocsize' argument is out of bounds argument must refer to an integer parameter invalid type ref invalid file invalid scope Global is referenced in a different module! Global is used by function in a different module Global is referenced by parentless instruction! invalid template parameter invalid template params invalid tag invalid subroutine type invalid containing type invalid reference flags subprogram definitions must be distinct subprogram definitions must have a compile unit invalid unit type subprogram declarations must not have a compile unit invalid subprogram declaration invalid variable list invalid local variable invalid pointer to member type invalid base type huge alignment values are unsupported Declaration may not be in a Comdat! Global is external, but doesn't have external or weak linkage! Only global variables can have appending linkage! Only global arrays can have appending linkage! Invalid bitcast Referencing global in another module! Global variable initializer type does not match global variable type! 'common' global must have a zero initializer! 'common' global may not be marked constant! 'common' global may not be in a Comdat! members of llvm.used must be named invalid linkage type for global declaration invalid linkage for intrinsic global variable wrong type for intrinsic global variable wrong initalizer for intrinsic global variable invalid llvm.used member Global is marked as dllimport, but not external Alias must point to a definition Aliases cannot form a cycle Alias cannot point to an interposable alias atomic memory access' size must be byte-sized atomic memory access' operand must have a power-of-two size Module Verifier location requires a valid scope inlined-at should be a location invalid expression invalid subrange count invalid vtable holder class/union requires a filename invalid composite elements invalid subroutine type ref compile units must be distinct invalid filename invalid enum list invalid enum type invalid retained type list invalid retained type invalid global variable list invalid imported entity list invalid macro list invalid macro ref invalid local scope anonymous module missing global variable name invalid static data member declaration local variable requires a valid scope invalid imported entity anonymous macro invalid macinfo type Invalid operand for global metadata! Expected valid value Unexpected metadata round-trip through values Expected no forward declarations! invalid global variable ref invalid imported entity ref cannot have column info without line info invalid scope ref invalid global varaible ref invalid scope for imported entity All nodes should be resolved! Instruction not embedded in basic block! Only PHI nodes may reference their own value! Instruction returns a non-scalar type! Instruction referencing instruction not embedded in a basic block! Instruction has null operand! Cannot take the address of an intrinsic! Cannot invoke an intrinsic other than donothing, patchpoint or statepoint Referencing function in another module! Referring to a basic block in another function! Referring to an argument in another function! Instruction does not dominate all uses! fpmath requires a floating point result! fpmath takes one operand! fpmath accuracy not a positive number! invalid fpmath accuracy! Unfinished range! It should have at least one range! The lower limit must be an integer! The upper limit must be an integer! Intervals are overlapping nonnull applies only to pointer types nonnull applies only to load instructions, use attributes for calls or invokes align applies only to pointer types align applies only to load instructions, use attributes for calls or invokes align takes one operand! align metadata value must be an i64! alignment is larger that implementation defined limit invalid !dbg metadata attachment piece is larger than or outside of variable piece covers entire variable Instruction has a name, but provides a void value! Invalid use of metadata! Use of instruction is not an instruction! Instruction operands must be first-class values! Cannot take the address of an inline asm! Ranges are only for loads, calls and invokes! Range types must match instruction type! Range must not be empty! Intervals are not in order Intervals are contiguous align metadata value must be a power of 2! Terminator found in the middle of a basic block! Found return instr that returns non-void in Function of void return type! Function return type does not match operand type of return inst! Switch constants must all be same type as switch value! Duplicate integer as switch case Indirectbr operand must have pointer type! Indirectbr destinations must all have pointer type! Both operands to a binary operator are not of the same type! Integer arithmetic operators only work with integral types! Integer arithmetic operators must have same type for operands and result! Floating-point arithmetic operators must have same type for operands and result! Logical operators only work with integral types! Logical operators must have same type for operands and result! Shifts only work with integral types! Shift return type must be same as operands! Floating-point arithmetic operators only work with floating-point types! Atomic load must specify explicit alignment atomic load operand must have integer, pointer, or floating point type! Non-atomic load cannot have SynchronizationScope specified Load operand must be a pointer. Load cannot have Release ordering Stored value type does not match pointer operand type! Atomic store must specify explicit alignment atomic store operand must have integer, pointer, or floating point type! Non-atomic store cannot have SynchronizationScope specified Store operand must be a pointer. Store cannot have Acquire ordering GEP base pointer is not a vector or a vector of pointers GEP into unsized type! Invalid indices for GEP pointer type! Vector GEP result width doesn't match operand's Invalid GEP index vector width All GEP indices should be of integer type GEP is not of right type for indices! cmpxchg instructions must be atomic. cmpxchg instructions cannot be unordered. cmpxchg instructions failure argument shall be no stronger than the success argument Expected value type does not match pointer operand type! First cmpxchg operand must be a pointer. cmpxchg operand must have integer or pointer type Trunc only operates on integer Trunc only produces integer trunc source and destination must both be a vector or neither DestTy too big for Trunc ZExt only operates on integer ZExt only produces an integer zext source and destination must both be a vector or neither Type too small for ZExt SExt only operates on integer SExt only produces an integer sext source and destination must both be a vector or neither Type too small for SExt FPToUI source and dest must both be vector or scalar FPToUI result must be integer or integer vector FPToUI source and dest vector length mismatch FPToUI source must be FP or FP vector FPToSI source and dest must both be vector or scalar FPToSI result must be integer or integer vector FPToSI source and dest vector length mismatch FPToSI source must be FP or FP vector UIToFP source and dest must both be vector or scalar UIToFP source must be integer or integer vector UIToFP source and dest vector length mismatch UIToFP result must be FP or FP vector SIToFP source and dest must both be vector or scalar SIToFP source must be integer or integer vector SIToFP source and dest vector length mismatch SIToFP result must be FP or FP vector fptrunc source and destination must both be a vector or neither DestTy too big for FPTrunc FPTrunc only operates on FP FPTrunc only produces an FP fpext source and destination must both be a vector or neither DestTy too small for FPExt FPExt only operates on FP FPExt only produces an FP PtrToInt source must be pointer PtrToInt result must be integral PtrToInt type mismatch PtrToInt Vector width mismatch IntToPtr source must be an integral IntToPtr result must be a pointer IntToPtr type mismatch IntToPtr Vector width mismatch AddrSpaceCast source must be a pointer AddrSpaceCast result must be a pointer AddrSpaceCast must be between different address spaces AddrSpaceCast vector pointer number of elements mismatch Both operands to ICmp instruction are not of the same type! Invalid operand types for ICmp instruction Invalid predicate in ICmp instruction! Both operands to FCmp instruction are not of the same type! Invalid operand types for FCmp instruction Invalid predicate in FCmp instruction! PHI nodes cannot have token type! PHI node operands are not the same type as the result! PHI nodes not grouped at top of basic block! Invalid operands for select instruction! Select values must have same type as select instruction! Allocation instruction pointer not in the generic address space! Cannot allocate unsized type Alloca array size must have integer type Attributes 'byval', 'inalloca', 'inreg', 'nest', and 'sret' are incompatible! Wrong types for attribute: Attribute 'swifterror' only applies to parameters with pointer to pointer type! Attribute 'byval' only applies to parameters with pointer type! Attribute 'swifterror' only applies to parameters with pointer type! Attributes 'byval', 'inalloca', 'nest', 'sret', 'nocapture', 'returned', 'swiftself', and 'swifterror' do not apply to return values! Attributes 'inalloca and readonly' are incompatible! Attributes 'sret and returned' are incompatible! Attributes 'zeroext and signext' are incompatible! Attributes 'readnone and readonly' are incompatible! Attributes 'noinline and alwaysinline' are incompatible! Attributes 'byval' and 'inalloca' do not support unsized types! More than one parameter has attribute nest! More than one parameter has attribute returned! Incompatible argument and return types for 'returned' attribute Cannot have multiple 'sret' parameters! Attribute 'sret' is not on first or second parameter! Cannot have multiple 'swiftself' parameters! Cannot have multiple 'swifterror' parameters! inalloca isn't on the last parameter! Attribute 'optnone' requires 'noinline'! Attributes 'optsize and optnone' are incompatible! Attributes 'minsize and optnone' are incompatible! Attribute 'jumptable' requires 'unnamed_addr' element size number of elements Attributes 'readnone and inaccessiblemem_or_argmemonly' are incompatible! Attributes 'readnone and inaccessiblememonly' are incompatible! cannot use musttail call with inline asm cannot guarantee tail call due to mismatched parameter counts cannot guarantee tail call due to mismatched varargs cannot guarantee tail call due to mismatched return types cannot guarantee tail call due to mismatched parameter types cannot guarantee tail call due to mismatched calling conv cannot guarantee tail call due to mismatched ABI impacting function attributes bitcast following musttail call must use the call musttail call result must be returned musttail call must be precede a ret with an optional bitcast EH pad cannot be in entry block. Block containing LandingPadInst must be jumped to only by the unwind edge of an invoke. Block containg CatchPadInst must be jumped to only by its catchswitch. Catchswitch cannot unwind to one of its catchpads EH pad must be jumped to via an unwind edge A cleanupret must exit its cleanup A single unwind edge may only enter one EH pad EH pad cannot handle exceptions raised within it EH pad jumps through a cycle of pads Function context does not match Module context! Functions may not have common linkage # formal arguments must match # of arguments for function type! Functions cannot return aggregate values! Invalid struct return type! Attribute after last parameter! Attribute 'builtin' can only be applied to a callsite. Calling convention does not support varargs or perfect forwarding! Argument value does not match function argument type! Function takes metadata but isn't an intrinsic Function takes token but isn't an intrinsic Functions returns a token but isn't an intrinsic !prof annotations should have exactly 2 operands first operand should not be null expected string with name of the !prof annotation second operand should not be null expected integer argument to function_entry_count Referencing personality function in another module! unmaterialized function cannot have metadata function without a body cannot have metadata Function declaration shouldn't have a personality routine llvm intrinsics cannot be defined! blockaddress may not be used with the entry block! function !dbg attachment must be a subprogram Invalid user of intrinsic instruction! !dbg attachment points at wrong subprogram for function Function arguments must have first-class types! first operand should be 'function_entry_count' invalid linkage type for function declaration Function is marked as dllimport, but not external. Entry block to function must not have predecessors! incorrect number of operands in module flag invalid behavior operand in module flag (expected constant integer) invalid behavior operand in module flag (unexpected constant) invalid value for 'require' module flag (first value operand should be a string) module flag identifiers must be unique (or of 'require' type) invalid requirement on flag, flag is not present in module invalid requirement on flag, flag does not have the required value invalid ID operand in module flag (expected metadata string) invalid value for 'require' module flag (expected metadata pair) invalid value for 'append'-type module flag (expected a metadata node) all indices passed to llvm.localrecover must be less than the number of arguments passed ot llvm.localescape in the parent function Alias should have private, internal, linkonce, weak, linkonce_odr, weak_odr, or external linkage! Alias and aliasee types should match! Aliasee should be either GlobalValue or ConstantExpr invalid compile unit comdat global value has private linkage incorrect number of operands in llvm.ident metadata All DICompileUnits must be listed in llvm.dbg.cu Aliasee cannot be NULL! invalid value for llvm.ident metadata entry operand(the operand should be a string) Broken module found, compilation aborted! FuncletPadInst must not be nested within itself Unwind edges out of a funclet pad must have the same unwind dest Unwind edges out of a catch must have the same unwind dest as the parent catchswitch Bogus funclet pad use EH pads can't handle each other's exceptions Intrinsic functions should never be defined! Intrinsic has incorrect return type! Intrinsic has incorrect argument type! Intrinsic has too few arguments! Intrinsic name not mangled correctly for type arguments! Should be: function-local metadata used outside a function function-local metadata not in basic block function-local metadata used in wrong function is_zero_undef argument of bit counting intrinsics must be a constant int invalid llvm.dbg.declare intrinsic call 1 invalid llvm.dbg. intrinsic address/value intrinsic variable intrinsic expression intrinsic requires a !dbg attachment mismatched subprogram between llvm.dbg. variable and !dbg attachment alignment argument of memory intrinsics must be a power of 2 isvolatile argument of memory intrinsics must be a constant int llvm.gcroot parameter #1 must be an alloca. llvm.gcroot parameter #1 must either be a pointer alloca, or argument #2 must be a non-null constant. Enclosing function does not use GC. llvm.init_trampoline parameter #2 must resolve to a function. size argument of memory use markers must be a constant integer llvm.invariant.end parameter #2 must be a constant integer llvm.localescape used outside of entry block multiple calls to llvm.localescape in one function gc.statepoint support for inline assembly unimplemented gc.statepoint ID must be a constant integer gc.statepoint number of patchable bytes must be a constant integer gc.statepoint number of patchable bytes must be positive gc.statepoint number of arguments to underlying call must be constant integer gc.statepoint number of arguments to underlying call must be positive gc.statepoint mismatch in number of vararg call args gc.statepoint doesn't support wrapping non-void vararg functions yet gc.statepoint mismatch in number of call args gc.statepoint flags must be constant integer unknown flag used in gc.statepoint flags argument gc.statepoint call argument does not match wrapped function type gc.statepoint number of transition arguments must be constant integer gc.statepoint number of transition arguments must be positive gc.statepoint number of deoptimization arguments must be constant integer gc.statepoint number of deoptimization arguments must be positive gc.statepoint too few arguments according to length fields illegal use of statepoint token gc.result connected to wrong gc.statepoint gc.relocate connected to wrong gc.statepoint gc.result operand #1 must be from a statepoint gc.result result type does not match wrapped callee wrong number of arguments gc.relocate must return a pointer or a vector of pointers safepoints should have unique landingpads safepoint block should be well formed gc relocate should be linked to a statepoint gc.relocate operand #2 must be integer offset gc.relocate operand #3 must be integer offset gc.relocate: statepoint derived index out of bounds gc.statepoint: insufficient arguments gc.statement: number of call arguments must be constant integer gc.statepoint: mismatch in number of call arguments gc.statepoint: number of transition arguments must be a constant integer gc.statepoint: number of deoptimization arguments must be a constant integer gc.relocate: statepoint base index doesn't fall within the 'gc parameters' section of the statepoint call gc.relocate: statepoint derived index doesn't fall within the 'gc parameters' section of the statepoint call gc.relocate: relocated value must be a gc pointer gc.relocate: vector relocates to vector and pointer to pointer gc.relocate: relocating a pointer shouldn't change its address space masked_load: must return a vector masked_load: mask must be vector masked_load: return must match pointer type masked_load: pass through and data type must match masked_load: vector mask must be same length as data masked_store: mask must be vector masked_store: storee must match pointer type masked_store: vector mask must be same length as data experimental_guard cannot be invoked experimental_guard must have exactly one "deopt" operand bundle experimental_deoptimize cannot be invoked experimental_deoptimize must have exactly one "deopt" operand bundle experimental_deoptimize return type must match caller return type calls to experimental_deoptimize must be followed by a return of the value computed by experimental_deoptimize Intrinsic was not defined with variable arguments! Callsite was not defined with variable arguments! alignment argument of memory intrinsics must be a constant int llvm.gcroot parameter #2 must be a constant. invalid arguments to llvm.prefetch llvm.stackprotector parameter #2 must resolve to an alloca. llvm.localescape only accepts static allocas llvm.localrecover first argument must be function defined in this module idx argument of llvm.localrecover must be a constant int gc.statepoint must read and write all memory to preserve reordering restrictions required by safepoint semantics gc.statepoint callee must be of function pointer type gc.result or gc.relocate are the only value usesof a gc.statepoint gc relocate is incorrectly tied to the statepoint gc.relocate: statepoint base index out of bounds eh.exceptionpointer argument must be a catchpad calls to experimental_deoptimize must be followed by a return Called function must be a pointer! Called function is not pointer to function type! Called function is not the same type as the call! Called function requires more parameters than were provided! Incorrect number of arguments passed to called function! Call parameter type does not match function signature! inalloca argument for call has mismatched alloca swifterror argument for call has mismatched alloca Attribute 'sret' cannot be used for vararg call arguments! inalloca isn't on the last argument! Function has metadata parameter but isn't an intrinsic Function has token parameter but isn't an intrinsic Return type cannot be token for indirect call! Multiple deopt operand bundles Multiple gc-transition operand bundles Multiple funclet operand bundles Expected exactly one funclet bundle operand inlinable function call in a function with debug info must have a !dbg location Funclet bundle operands should correspond to a FuncletPadInst swifterror argument should come from alloca Function ' ' does not contain an entry block! Basic Block in function ' ' does not have terminator! Basic Block does not have terminator! PHINode should have one entry for each predecessor of its parent basic block! PHI nodes must have at least one entry. If the block is dead, the PHI should be removed! PHI node entries do not match predecessors! Instruction has bogus parent pointer! Operand is null Branch condition is not 'i1' type! CleanupReturnInst must unwind to an EH block which is not a landingpad. CatchSwitchInst needs to be in a function with a personality. CatchSwitchInst not the first non-PHI instruction in the block. CatchSwitchInst must unwind to an EH block which is not a landingpad. CatchSwitchInst cannot have empty handler list CatchSwitchInst handlers must be catchpads fence instructions may only have acquire, release, acq_rel, or seq_cst ordering. atomicrmw instructions must be atomic. atomicrmw instructions cannot be unordered. atomicrmw operand must have integer type! Argument value type does not match pointer operand type! CleanupPadInst needs to be in a function with a personality. CleanupPadInst not the first non-PHI instruction in the block. CatchPadInst needs to be in a function with a personality. CatchPadInst not the first non-PHI instruction in the block. User-defined operators should not live outside of a pass! Invalid extractelement operands! Invalid insertelement operands! Invalid shufflevector operands! Invalid ExtractValueInst operands! Invalid InsertValueInst operands! The landingpad instruction should have a consistent result type inside a function. LandingPadInst needs to be in a function with a personality. LandingPadInst not the first non-PHI instruction in the block. Catch operand does not have pointer type! PHI node has multiple entries for the same basic block with different incoming values! The unwind destination does not have an exception handling instruction! CleanupReturnInst needs to be provided a CleanupPad CatchReturnInst needs to be provided a CatchPad First atomicrmw operand must be a pointer. Invalid binary operation! CatchPadInst needs to be directly nested in a CatchSwitchInst. LandingPadInst needs at least one clause or to be a cleanup. Filter operand is not an array of constants! CatchSwitchInst has an invalid parent. CleanupPadInst has an invalid parent. Broken function found, compilation aborted! verify-debug-info / $ 1 0 ? q 7 j INFINITY -inf -INFINITY NaN -nan -NaN -Inf +Inf 0.0E+0 ? @ P 5 @ } q 5 = -1 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ 0b APInt( b, u @ ` P 0 p H ( h X 8 x D $ d T 4 t L , l \ < | B " b R 2 r J * j Z : z F & f V 6 v N . n ^ > ~ A ! a Q 1 q I ) i Y 9 y E % e U 5 u M - m ] = } C # c S 3 s K + k [ ; { G ' g W 7 w O / o _ ? Number of memory regions: Bytes used: Bytes allocated: Bytes wasted: (includes alignment, etc) Recycler element size: Recycler element alignment: Number of elements free for recycling: ?% 0x%08x / 0x%08x = %.2f%% - OVERVIEW: USAGE: [options] -- OPTIONS: = - - : CommandLine Error: Option ' ' registered more than once! inconsistency in registered CommandLine options : for the - option: requires a value! multi-valued option specified with ValueDisallowed modifier! does not allow a value! ' ' specified. not enough values! may only occur zero or one times! must occur exactly one time! Cannot specify more than one option with cl::ConsumeAfter! error - this positional option will never be matched, because it does not Require a value, and a cl::ConsumeAfter option is active! ' is all messed up! : Unknown command line argument ' '. Try: ' -help' : Did you mean '- '? : Not enough positional command line arguments specified! Must specify at least positional arguments: See: -help must be specified at least once! error - option can never match, because another positional argument will match an unbounded number of values, and this option does not require a value! : Too many positional arguments specified! Can specify at most TRUE True FALSE False ' is invalid value for boolean argument! Try 0 or 1 LLVM (http://llvm.org/): version Optimized build (unknown) Default target: Host CPU: ' value invalid for integer argument! ' value invalid for uint argument! ' value invalid for floating point argument! (default: = *unknown option value* *no default* = *cannot print option value* This option category has no options. General options Generic Options help-list Display list of available options (-help-list-hidden for more) help-list-hidden Display list of all available options help Display available options (-help-hidden for more) help-hidden Display all available options print-options Print non-default options after command line parsing print-all-options Print all option values after command line parsing Display the version of this program 0 DW_TAG_array_type DW_TAG_class_type DW_TAG_entry_point DW_TAG_enumeration_type DW_TAG_formal_parameter DW_TAG_imported_declaration DW_TAG_label DW_TAG_lexical_block DW_TAG_member DW_TAG_pointer_type DW_TAG_reference_type DW_TAG_compile_unit DW_TAG_string_type DW_TAG_structure_type DW_TAG_subroutine_type DW_TAG_typedef DW_TAG_union_type DW_TAG_unspecified_parameters DW_TAG_variant DW_TAG_common_block DW_TAG_common_inclusion DW_TAG_inheritance DW_TAG_inlined_subroutine DW_TAG_module DW_TAG_ptr_to_member_type DW_TAG_set_type DW_TAG_subrange_type DW_TAG_with_stmt DW_TAG_access_declaration DW_TAG_base_type DW_TAG_catch_block DW_TAG_const_type DW_TAG_constant DW_TAG_enumerator DW_TAG_file_type DW_TAG_friend DW_TAG_namelist DW_TAG_namelist_item DW_TAG_packed_type DW_TAG_subprogram DW_TAG_template_type_parameter DW_TAG_template_value_parameter DW_TAG_thrown_type DW_TAG_try_block DW_TAG_variant_part DW_TAG_variable DW_TAG_volatile_type DW_TAG_dwarf_procedure DW_TAG_restrict_type DW_TAG_interface_type DW_TAG_namespace DW_TAG_imported_module DW_TAG_unspecified_type DW_TAG_partial_unit DW_TAG_imported_unit DW_TAG_condition DW_TAG_shared_type DW_TAG_type_unit DW_TAG_rvalue_reference_type DW_TAG_template_alias DW_TAG_coarray_type DW_TAG_generic_subrange DW_TAG_dynamic_type DW_TAG_MIPS_loop DW_TAG_format_label DW_TAG_function_template DW_TAG_class_template DW_TAG_GNU_template_template_param DW_TAG_GNU_template_parameter_pack DW_TAG_GNU_formal_parameter_pack DW_TAG_APPLE_property DW_TAG_BORLAND_property DW_TAG_BORLAND_Delphi_string DW_TAG_BORLAND_Delphi_dynamic_array DW_TAG_BORLAND_Delphi_set DW_TAG_BORLAND_Delphi_variant DW_CHILDREN_no DW_CHILDREN_yes DW_AT_sibling DW_AT_location DW_AT_name DW_AT_ordering DW_AT_byte_size DW_AT_bit_offset DW_AT_bit_size DW_AT_stmt_list DW_AT_low_pc DW_AT_high_pc DW_AT_language DW_AT_discr DW_AT_discr_value DW_AT_visibility DW_AT_import DW_AT_string_length DW_AT_common_reference DW_AT_comp_dir DW_AT_const_value DW_AT_containing_type DW_AT_default_value DW_AT_inline DW_AT_is_optional DW_AT_lower_bound DW_AT_producer DW_AT_prototyped DW_AT_return_addr DW_AT_start_scope DW_AT_bit_stride DW_AT_upper_bound DW_AT_abstract_origin DW_AT_accessibility DW_AT_address_class DW_AT_artificial DW_AT_base_types DW_AT_calling_convention DW_AT_count DW_AT_data_member_location DW_AT_decl_column DW_AT_decl_file DW_AT_decl_line DW_AT_declaration DW_AT_discr_list DW_AT_encoding DW_AT_external DW_AT_frame_base DW_AT_friend DW_AT_identifier_case DW_AT_macro_info DW_AT_namelist_item DW_AT_priority DW_AT_segment DW_AT_specification DW_AT_static_link DW_AT_type DW_AT_use_location DW_AT_variable_parameter DW_AT_virtuality DW_AT_vtable_elem_location DW_AT_allocated DW_AT_associated DW_AT_data_location DW_AT_byte_stride DW_AT_entry_pc DW_AT_use_UTF8 DW_AT_extension DW_AT_ranges DW_AT_trampoline DW_AT_call_column DW_AT_call_file DW_AT_call_line DW_AT_description DW_AT_binary_scale DW_AT_decimal_scale DW_AT_small DW_AT_decimal_sign DW_AT_digit_count DW_AT_picture_string DW_AT_mutable DW_AT_threads_scaled DW_AT_explicit DW_AT_object_pointer DW_AT_endianity DW_AT_elemental DW_AT_pure DW_AT_recursive DW_AT_signature DW_AT_main_subprogram DW_AT_data_bit_offset DW_AT_const_expr DW_AT_enum_class DW_AT_linkage_name DW_AT_string_length_bit_size DW_AT_string_length_byte_size DW_AT_rank DW_AT_str_offsets_base DW_AT_addr_base DW_AT_ranges_base DW_AT_dwo_id DW_AT_dwo_name DW_AT_reference DW_AT_rvalue_reference DW_AT_MIPS_loop_begin DW_AT_MIPS_tail_loop_begin DW_AT_MIPS_epilog_begin DW_AT_MIPS_loop_unroll_factor DW_AT_MIPS_software_pipeline_depth DW_AT_MIPS_linkage_name DW_AT_MIPS_stride DW_AT_MIPS_abstract_name DW_AT_MIPS_clone_origin DW_AT_MIPS_has_inlines DW_AT_MIPS_stride_byte DW_AT_MIPS_stride_elem DW_AT_MIPS_ptr_dopetype DW_AT_MIPS_allocatable_dopetype DW_AT_MIPS_assumed_shape_dopetype DW_AT_sf_names DW_AT_src_info DW_AT_mac_info DW_AT_src_coords DW_AT_body_begin DW_AT_body_end DW_AT_GNU_vector DW_AT_GNU_template_name DW_AT_GNU_odr_signature DW_AT_MIPS_assumed_size DW_AT_lo_user DW_AT_hi_user DW_AT_BORLAND_property_read DW_AT_BORLAND_property_write DW_AT_BORLAND_property_implements DW_AT_BORLAND_property_index DW_AT_BORLAND_property_default DW_AT_BORLAND_Delphi_unit DW_AT_BORLAND_Delphi_class DW_AT_BORLAND_Delphi_record DW_AT_BORLAND_Delphi_metaclass DW_AT_BORLAND_Delphi_constructor DW_AT_BORLAND_Delphi_destructor DW_AT_BORLAND_Delphi_anonymous_method DW_AT_BORLAND_Delphi_interface DW_AT_BORLAND_Delphi_ABI DW_AT_BORLAND_Delphi_return DW_AT_BORLAND_Delphi_frameptr DW_AT_BORLAND_closure DW_AT_APPLE_optimized DW_AT_APPLE_flags DW_AT_APPLE_isa DW_AT_APPLE_block DW_AT_APPLE_major_runtime_vers DW_AT_APPLE_runtime_class DW_AT_APPLE_omit_frame_ptr DW_AT_APPLE_property_name DW_AT_APPLE_property_getter DW_AT_APPLE_property_setter DW_AT_APPLE_property_attribute DW_AT_APPLE_property DW_AT_APPLE_objc_complete_type DW_AT_LLVM_include_path DW_AT_LLVM_config_macros DW_AT_LLVM_isysroot DW_AT_GNU_dwo_name DW_AT_GNU_dwo_id DW_AT_GNU_ranges_base DW_AT_GNU_addr_base DW_AT_GNU_pubnames DW_AT_GNU_pubtypes DW_AT_GNU_discriminator DW_FORM_addr DW_FORM_block2 DW_FORM_block4 DW_FORM_data2 DW_FORM_data4 DW_FORM_data8 DW_FORM_string DW_FORM_block DW_FORM_block1 DW_FORM_data1 DW_FORM_flag DW_FORM_sdata DW_FORM_strp DW_FORM_udata DW_FORM_ref_addr DW_FORM_ref1 DW_FORM_ref2 DW_FORM_ref4 DW_FORM_ref8 DW_FORM_ref_udata DW_FORM_indirect DW_FORM_sec_offset DW_FORM_exprloc DW_FORM_flag_present DW_FORM_ref_sig8 DW_FORM_GNU_addr_index DW_FORM_GNU_str_index DW_FORM_GNU_ref_alt DW_FORM_GNU_strp_alt DW_OP_addr DW_OP_deref DW_OP_const1u DW_OP_const1s DW_OP_const2u DW_OP_const2s DW_OP_const4u DW_OP_const4s DW_OP_const8u DW_OP_const8s DW_OP_constu DW_OP_consts DW_OP_dup DW_OP_drop DW_OP_over DW_OP_pick DW_OP_swap DW_OP_rot DW_OP_xderef DW_OP_abs DW_OP_and DW_OP_div DW_OP_minus DW_OP_mod DW_OP_mul DW_OP_neg DW_OP_not DW_OP_or DW_OP_plus DW_OP_plus_uconst DW_OP_shl DW_OP_shr DW_OP_shra DW_OP_xor DW_OP_skip DW_OP_bra DW_OP_eq DW_OP_ge DW_OP_gt DW_OP_le DW_OP_lt DW_OP_ne DW_OP_lit0 DW_OP_lit1 DW_OP_lit2 DW_OP_lit3 DW_OP_lit4 DW_OP_lit5 DW_OP_lit6 DW_OP_lit7 DW_OP_lit8 DW_OP_lit9 DW_OP_lit10 DW_OP_lit11 DW_OP_lit12 DW_OP_lit13 DW_OP_lit14 DW_OP_lit15 DW_OP_lit16 DW_OP_lit17 DW_OP_lit18 DW_OP_lit19 DW_OP_lit20 DW_OP_lit21 DW_OP_lit22 DW_OP_lit23 DW_OP_lit24 DW_OP_lit25 DW_OP_lit26 DW_OP_lit27 DW_OP_lit28 DW_OP_lit29 DW_OP_lit30 DW_OP_lit31 DW_OP_reg0 DW_OP_reg1 DW_OP_reg2 DW_OP_reg3 DW_OP_reg4 DW_OP_reg5 DW_OP_reg6 DW_OP_reg7 DW_OP_reg8 DW_OP_reg9 DW_OP_reg10 DW_OP_reg11 DW_OP_reg12 DW_OP_reg13 DW_OP_reg14 DW_OP_reg15 DW_OP_reg16 DW_OP_reg17 DW_OP_reg18 DW_OP_reg19 DW_OP_reg20 DW_OP_reg21 DW_OP_reg22 DW_OP_reg23 DW_OP_reg24 DW_OP_reg25 DW_OP_reg26 DW_OP_reg27 DW_OP_reg28 DW_OP_reg29 DW_OP_reg30 DW_OP_reg31 DW_OP_breg0 DW_OP_breg1 DW_OP_breg2 DW_OP_breg3 DW_OP_breg4 DW_OP_breg5 DW_OP_breg6 DW_OP_breg7 DW_OP_breg8 DW_OP_breg9 DW_OP_breg10 DW_OP_breg11 DW_OP_breg12 DW_OP_breg13 DW_OP_breg14 DW_OP_breg15 DW_OP_breg16 DW_OP_breg17 DW_OP_breg18 DW_OP_breg19 DW_OP_breg20 DW_OP_breg21 DW_OP_breg22 DW_OP_breg23 DW_OP_breg24 DW_OP_breg25 DW_OP_breg26 DW_OP_breg27 DW_OP_breg28 DW_OP_breg29 DW_OP_breg30 DW_OP_breg31 DW_OP_regx DW_OP_fbreg DW_OP_bregx DW_OP_piece DW_OP_deref_size DW_OP_xderef_size DW_OP_nop DW_OP_push_object_address DW_OP_call2 DW_OP_call4 DW_OP_call_ref DW_OP_form_tls_address DW_OP_call_frame_cfa DW_OP_bit_piece DW_OP_implicit_value DW_OP_stack_value DW_OP_GNU_push_tls_address DW_OP_GNU_addr_index DW_OP_GNU_const_index DW_ATE_address DW_ATE_boolean DW_ATE_complex_float DW_ATE_float DW_ATE_signed DW_ATE_signed_char DW_ATE_unsigned DW_ATE_unsigned_char DW_ATE_imaginary_float DW_ATE_packed_decimal DW_ATE_numeric_string DW_ATE_edited DW_ATE_signed_fixed DW_ATE_unsigned_fixed DW_ATE_decimal_float DW_ATE_UTF DW_DS_unsigned DW_DS_leading_overpunch DW_DS_trailing_overpunch DW_DS_leading_separate DW_DS_trailing_separate DW_END_default DW_END_big DW_END_little DW_END_lo_user DW_END_hi_user DW_ACCESS_public DW_ACCESS_protected DW_ACCESS_private DW_VIS_local DW_VIS_exported DW_VIS_qualified DW_VIRTUALITY_none DW_VIRTUALITY_virtual DW_VIRTUALITY_pure_virtual DW_LANG_C89 DW_LANG_C DW_LANG_Ada83 DW_LANG_C_plus_plus DW_LANG_Cobol74 DW_LANG_Cobol85 DW_LANG_Fortran77 DW_LANG_Fortran90 DW_LANG_Pascal83 DW_LANG_Modula2 DW_LANG_Java DW_LANG_C99 DW_LANG_Ada95 DW_LANG_Fortran95 DW_LANG_PLI DW_LANG_ObjC DW_LANG_ObjC_plus_plus DW_LANG_UPC DW_LANG_D DW_LANG_Python DW_LANG_OpenCL DW_LANG_Go DW_LANG_Modula3 DW_LANG_Haskell DW_LANG_C_plus_plus_03 DW_LANG_C_plus_plus_11 DW_LANG_OCaml DW_LANG_Rust DW_LANG_C11 DW_LANG_Swift DW_LANG_Julia DW_LANG_Dylan DW_LANG_C_plus_plus_14 DW_LANG_Fortran03 DW_LANG_Fortran08 DW_LANG_Mips_Assembler DW_LANG_GOOGLE_RenderScript DW_LANG_BORLAND_Delphi DW_ID_case_sensitive DW_ID_up_case DW_ID_down_case DW_ID_case_insensitive DW_CC_normal DW_CC_program DW_CC_nocall DW_CC_lo_user DW_CC_hi_user DW_CC_GNU_borland_fastcall_i386 DW_CC_BORLAND_safecall DW_CC_BORLAND_stdcall DW_CC_BORLAND_pascal DW_CC_BORLAND_msfastcall DW_CC_BORLAND_msreturn DW_CC_BORLAND_thiscall DW_CC_BORLAND_fastcall DW_INL_not_inlined DW_INL_inlined DW_INL_declared_not_inlined DW_INL_declared_inlined DW_ORD_row_major DW_ORD_col_major DW_DSC_label DW_DSC_range DW_LNS_copy DW_LNS_advance_pc DW_LNS_advance_line DW_LNS_set_file DW_LNS_set_column DW_LNS_negate_stmt DW_LNS_set_basic_block DW_LNS_const_add_pc DW_LNS_fixed_advance_pc DW_LNS_set_prologue_end DW_LNS_set_epilogue_begin DW_LNS_set_isa DW_LNE_end_sequence DW_LNE_set_address DW_LNE_define_file DW_LNE_set_discriminator DW_LNE_lo_user DW_LNE_hi_user DW_MACINFO_define DW_MACINFO_undef DW_MACINFO_start_file DW_MACINFO_end_file DW_MACINFO_vendor_ext DW_MACINFO_invalid DW_CFA_nop DW_CFA_advance_loc DW_CFA_offset DW_CFA_restore DW_CFA_set_loc DW_CFA_advance_loc1 DW_CFA_advance_loc2 DW_CFA_advance_loc4 DW_CFA_offset_extended DW_CFA_restore_extended DW_CFA_undefined DW_CFA_same_value DW_CFA_register DW_CFA_remember_state DW_CFA_restore_state DW_CFA_def_cfa DW_CFA_def_cfa_register DW_CFA_def_cfa_offset DW_CFA_def_cfa_expression DW_CFA_expression DW_CFA_offset_extended_sf DW_CFA_def_cfa_sf DW_CFA_def_cfa_offset_sf DW_CFA_val_offset DW_CFA_val_offset_sf DW_CFA_val_expression DW_CFA_MIPS_advance_loc8 DW_CFA_GNU_window_save DW_CFA_GNU_args_size DW_CFA_lo_user DW_CFA_hi_user DW_APPLE_PROPERTY_readonly DW_APPLE_PROPERTY_getter DW_APPLE_PROPERTY_assign DW_APPLE_PROPERTY_readwrite DW_APPLE_PROPERTY_retain DW_APPLE_PROPERTY_copy DW_APPLE_PROPERTY_nonatomic DW_APPLE_PROPERTY_setter DW_APPLE_PROPERTY_atomic DW_APPLE_PROPERTY_weak DW_APPLE_PROPERTY_strong DW_APPLE_PROPERTY_unsafe_unretained DW_ATOM_null DW_ATOM_die_offset DW_ATOM_cu_offset DW_ATOM_die_tag DW_ATOM_type_flags TYPE VARIABLE OTHER UNUSED5 UNUSED6 UNUSED7 EXTERNAL STATIC Multiple errors Multiple errors: LLVM ERROR: UNREACHABLE executed Error: Remember to erase graph file: '... fdp neato twopi xdg-open Tried ' Trying 'xdg-open' program... Graphviz Running 'Graphviz' program... xdot|xdot.py -f Running 'xdot.py' program... dot|fdp|neato|twopi|circo -Tps -Nfontname=Courier -Gsize=7.5,10 Running ' -W --spartan dotty Running 'dotty' program... Error: Couldn't find a usable graph viewer program: view-background Execute graph viewer in the background. Creates tmp file litter. aaaaaa aa0000 00aa00 aa5500 0055ff aa00aa 00aaaa 555555 ff5555 55ff55 ffff55 5555ff ff55ff 55ffff ffaaaa aaffaa ffffaa aaaaff ffaaff aaffff 0 w,a Q m jp5 c d 2 y +L | ~ - d jHq A } mQ V l kdz b e O\ l cc= n;^ iL A` rqg <G K k 5l B @ l 2u\ E Y= 0 &: Q Q a !# V ( _ $ |o/ LhX a =-f A v q * q 3 x4 j-=m ld \c Qkkbal 0e N b l{ W eP | bI- | eL Xa M Q :t 0 A J =m j iC n4F g ` s- D 3_L | <q P A ' % hW o f a ^ )" = Y .;\ l t9G w & s c ;d >jm Zjz ' }D h i]Wb ge q6l knv + Zz J go C ` ~ 8R O g gW ?K6 H + L J 6`z A ` U g n1y iF a f o%6 hR w G "/& U ; ( Z + j \ 1 , [ d & c ju m ?6 g r W J z + {8 |! B hn [& w owG Z pj ; f\ e i b kaE l x T N 9a&g ` MGiI wn>Jj Z f @ ; 7S G 0 0 S $ 6 )W T g #.zf Ja h] +o*7 Z -%.2x rng-seed Seed for the random number generator ()^$|*+?.[]\{} .0 *2^ Included from malformed line malformed regex in line can't open file ' error parsing file ' %s: __position (which is %zu) >= _Nb (which is %zu) 0B 0o arm2 arm7m arm8 arm810 strongarm strongarm110 strongarm1100 arm7tdmi arm7tdmi-s arm710t arm9 arm9tdmi arm920 arm920t ep9312 arm10tdmi arm1020t arm9e arm946e-s arm10e arm1020e arm926ej-s arm1136jf-s arm1176j-s arm1176jz-s mpcore mpcorenovfp arm1176jzf-s arm1156t2-s arm1156t2f-s cortex-m0plus cortex-m1 sc000 cortex-a5 cortex-a12 krait cortex-r4 cortex-r4f cortex-r5 sc300 cortex-a32 iwmmxt swift arm3 arm6 strongarm1110 arm720t arm922t arm9312 arm940t arm966e-s arm968e-s arm1022e arm1136j-s arm1136jz-s cortex-a7 cortex-a8 cortex-a9 cortex-a15 cortex-a17 cortex-r7 cortex-r8 cortex-m7 arm,thumb _be thumb,arm fpa fpe2 fpe3 maverick vfpv2 vfpv3-d16 vfp3-d16 fpv4-sp-d16 fp4-sp-d16 vfpv4-sp-d16 fpv4-dp-d16 fp5-dp-d16 fpv5-dp-d16 vfpv3 vfpv4-d16 fpv5-d16 vfpv4 vfp4-d16 fp4-dp-d16 fpv5-sp-d16 fp5-sp-d16 neon-vfpv3 v8-m.main v5t v5te v5e v6k v6hl v6-m v6m v6sm v6z v6zk v7a v7hl v7l v7-r v7r v7e-m v7em v8-a v8a v8.2a v8-m.base v8m.base v6kz v7-a v8.1-a v8.2-a v6j v7-m v7m v8.1a v8m.main v6s-m armeb thumbeb aarch64_be -hwdiv-arm -hwdiv -crc -dsp +d16 -fp-only-sp -vfp4 -vfp3 -vfp2 -crypto -neon crc idiv sec virt +fullfp16 -fullfp16 iwmmxt2 armv2 armv2a 2A v2a armv3 armv3m 3M v3m armv4 4T v4t armv5t 5T armv5te 5TE armv5tej 5TEJ armv6k 6K armv6t2 v6t2 armv6kz 6KZ armv6-m 6-M armv7-a 7-A armv7-r 7-R armv7-m 7-M armv7e-m 7E-M armv8-a 8-A armv8.1-a 8.1-A armv8.2-a 8.2-A armv8-m.base 8-M.Baseline armv8-m.main 8-M.Mainline 7-S v7s 7-K v7k vfpv3-fp16 vfpv3-d16-fp16 vfpv3xd vfpv3xd-fp16 neon-fp16 neon-vfpv4 neon-fp-armv8 crypto-neon-fp-armv8 softvfp Error opening info-output-file ' for appending! ----- %7.4f (%5.1f%%) %9lld Miscellaneous Ungrouped Timers === Total Execution Time: %5.4f seconds (%5.4f wall clock) ---User Time--- --System Time-- --User+System-- ---Wall Time--- ---Mem--- --- Name --- Total track-memory Enable -time-passes memory tracking (this may be slow) info-output-file File to append -stats and -timer output to bpf_be bpfeb bpf_le bpfel apple scei bgp nvidia amd mesa bgq fsl ibm img mti myriad cloudabi dragonfly freebsd kfreebsd lv2 openbsd windows haiku nacl cnk bitrig aix cuda amdhsa ps4 elfiamcu mesa3d netbsd solaris minix rtems nvcl eabihf gnueabihf gnueabi gnux32 msvc itanium cygnus amdopencl code16 coff macho i886 i986 amd64 ppu xscaleeb avr mipseb mipsallegrex mipsel mipsallegrexel mips64eb mips64el s390x sparcel sparc64 nvptx64 le32 amdil amdil64 hsail hsail64 spir64 kalimba i786 sparcv9 shave ppc32 kalimba3 kalimba4 kalimba5 cygwin mingw androideabi o K _ p p 0 J # % ' ) - Y [ : : < < A H M M Q W b c < < A B G H K M Q Q p q u u < < ? ? A D M M V V b c > @ F H J M U V b c A D M M b c 1 1 4 : G N 5 5 7 7 9 9 q ~ - 0 2 7 9 : = > X Y ^ ` q t ] _ 2 4 R S r s " ' ( 2 2 9 ; V V X ^ ` ` b b e l s | 4 4 6 : < < B B k s , 3 6 7 , , - - - - *0 -0 0 0 o r t } % & & - G Q ) . 1 2 5 6 C C L L & 8 : ? ? 8 F ' + - 4 o o g i { B D )# *# . >0 @0 0 o ` O O x y ( 0 W X ` ` K L . / ? ? \ ] _ x x ) ) 1 1 4 4 7 7 : ; = = C F I J N P R X ] ] _ e v ) ) 1 1 4 4 : ; E F I J N U X [ ^ ^ d e x ) ) 4 4 : < E E I I N T W W Z _ d e p w ; < E E I I O V X _ d e v x ; > \ H H m p _ ` I I N O W W Y Y ^ _ [ \ } 7 ? T _ m m q q t x , / < ? A C n o u _ _ } ~ L O } 8 : J L F G N O X X Z Z \ \ ^ ^ ~ * . ` o r s ! ! # # '$ ?$ K$ _$ ' ' M+ O+ Z+ + /, /, _, _, , , &- &- (- ,- .- /- h- n- q- ~- - - - - - - - - - - - - - - - - - - <. . . . . . / / / / @0 @0 0 0 1 1 .1 01 d1 d1 1 1 1 1 1 1 2 2 2 2 M M , ? , / : ? x T ^ } 7 ? N O Z [ | ' ' / n o 7 7 = = ? ? B B E E @ O ' / S S g g l o u u ' ' ; ; > > N O ^ 4 6 $ / K 6 6 9 ; = > V V ` : > @ 4 7 ; > H O Y _ 6 8 V W s w I _ N Q p 5 5 D o# # c$ o$ t$ / /4 g 9j n Eo Oo o o o ' ( s z F W _ r U U : : ? ? E E G I Q Q # # % & ( ( 3 3 8 8 : : < A C F H H J J L L P P S S U V X X Z Z \ \ ^ ^ ` ` c c e f k k s s x x } } , / / / l o ; ? I O R ! / 6 6 } ? ? A A > ? D O h A D P t 5 ? 0x0000000000000000 IO failure on output stream. %e [:<:]] [:>:]] NUL SOH STX ETX EOT ENQ ACK BEL alert backspace HT newline VT vertical-tab form-feed CR carriage-return SO DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM IS4 FS IS3 GS IS2 IS1 US exclamation-mark quotation-mark number-sign dollar-sign percent-sign ampersand apostrophe left-parenthesis right-parenthesis asterisk plus-sign hyphen hyphen-minus full-stop three four five six seven nine semicolon less-than-sign equals-sign greater-than-sign question-mark commercial-at left-square-bracket backslash reverse-solidus right-square-bracket circumflex circumflex-accent underscore low-line grave-accent left-brace left-curly-bracket vertical-line right-brace right-curly-bracket DEL alnum ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 alpha ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz blank cntrl ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ lower abcdefghijklmnopqrstuvwxyz print ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ punct !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ ABCDEFGHIJKLMNOPQRSTUVWXYZ xdigit 0123456789ABCDEFabcdef REG_0x%x REG_NOMATCH llvm_regexec() failed to match REG_BADPAT invalid regular expression REG_ECOLLATE invalid collating element REG_ECTYPE invalid character class REG_EESCAPE trailing backslash (\) REG_ESUBREG invalid backreference number REG_EBRACK brackets ([ ]) not balanced REG_EPAREN parentheses not balanced REG_EBRACE braces not balanced REG_BADBR invalid repetition count(s) REG_ERANGE invalid character range REG_ESPACE out of memory REG_BADRPT repetition-operator operand invalid REG_EMPTY empty (sub)expression REG_ASSERT "can't happen" -- you found a bug REG_INVARG invalid argument to regex routine *** unknown regexp error code *** x86_64-unknown-linux-gnu /proc/cpuinfo CPU implementer 0x41 CPU part 0x926 0xb02 0x06f : 0xb36 0xb56 0xb76 0xc08 0xc09 0xc0f 0xc20 0xc23 0xc24 0x51 Features idiva idivt vfpv3d16 PE !<arch> !<thin> /proc/self/exe PATH PWD HOME /tmp XDG_CACHE_HOME .cache -%%%%%% -%%%%%%. TMPDIR TMP TEMP TEMPDIR K j / /dev/null COLUMNS [1m [7m [0m /dev/urandom [0;30m [0;31m [0;32m [0;33m [0;34m [0;35m [0;36m [0;37m [0;1;30m [0;1;31m [0;1;32m [0;1;33m [0;1;34m [0;1;35m [0;1;36m [0;1;37m [0;40m [0;41m [0;42m [0;43m [0;44m [0;45m [0;46m [0;47m [0;1;40m [0;1;41m [0;1;42m [0;1;43m [0;1;44m [0;1;45m [0;1;46m [0;1;47m Cannot dup2 Cannot open file ' ' for Executable " " doesn't exist! Can't redirect stderr to stdout posix_spawn failed Couldn't fork Child timed out but wouldn't die Child timed out Error waiting for child process Program could not be executed (core dumped) Unable to find target for this triple (no targets are registered) No available targets are compatible with this triple. Cannot choose between targets " " and " error: invalid target ' : error: unable to get target for ' ', see --version and --triple. Registered Targets: (none) %Y-%m-%d %H:%M:%S %s.%.9u
p 8 9 ; 4 D 4 $ , ( , $ u 9 u/ / u. * a* - - - - . m* - - ]- I I =J J J 9M O =O eO O Q 1Q YQ Q Q [ I[ [ [ [ \ ] ] ^ ^ ^ 9_ _ a a b e e e Mf f =g eg g h Ii i i j j ]k k k k n Ar au Iw Yz | -~ = Q Y = u !k R ] 5j j l o s L M !M T =a b 1d e i q 1y \ 8 P 6 H 6 0 0 0 0 0 0 0 0 0 0 0 x 0 d 0 P 0 < 0 ( 0 T 0 @ 0 , 0 0 0 0 0 0 0 0 0 0 0 0 | 0 h 0 0 0 l 0 X 0 D 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 p 0 \ 0 H 0 t 0 ` 0 L 0 8 0 $ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 x 0 d 0 P 0 < 0 ( 0 T 0 @ 0 , 0 0 0 0 0 0 0 0 0 0 0 0 | 0 h 0 0 0 l 0 X 0 D 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 p 0 \ 0 H 0 t 0 ` 0 L 0 8 0 $ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 x 0 d 0 P 0 < 0 ( 0 T 0 @ 0 , 0 0 0 0 0 0 0 0 0 0 0 0 | 0 h 0 0 0 l 0 X 0 D 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 p 0 \ 0 H 0 t 0 ` 0 L 0 8 0 $ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 x 0 d 0 P 0 < 0 ( 0 T 0 @ 0 , 0 0 0 0 0 0 g h 0 g | 0 g g 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 l 0 X 0 D 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 p 0 p 0 p 0 p 0 \ 0 \ 0 H 0 4 0 0 0 0 0 0 0 0 0 INFO WARN ERROR FAIL ALL A A A A A A A @| A T| EF h| || | | | 1 | } | !} } %} } )" ,} E <} + P} MW h} } mp } 0 } b } ! } ! } u } 1 ~ 9 $~ E 0~ iH D~ ): T~ 5 d~ 2 t~ G ~ d ~ } ~ @ ~ ~ ~ eW ~ X ~ Mg } a $ 0 ! aW T h m x 9 " }p " EGL_COLOR_BUFFER_FORMAT_sABGR8888 EGL_COLOR_BUFFER_FORMAT_sARGB8888 EGL_COLOR_BUFFER_FORMAT_sXBGR8888 EGL_COLOR_BUFFER_FORMAT_BGR565 EGL_COLOR_BUFFER_FORMAT_RGB565 EGL_COLOR_BUFFER_FORMAT_ABGR8888 EGL_COLOR_BUFFER_FORMAT_ARGB8888 EGL_COLOR_BUFFER_FORMAT_BGRA8888 S EGL_COLOR_BUFFER_FORMAT_RGBA8888 EGL_COLOR_BUFFER_FORMAT_XBGR8888 EGL_COLOR_BUFFER_FORMAT_XRGB8888 EGL_COLOR_BUFFER_FORMAT_BGRX8888 S EGL_COLOR_BUFFER_FORMAT_RGBX8888 : EGL_COLOR_BUFFER_FORMAT_BGR888 : EGL_COLOR_BUFFER_FORMAT_RGB888 EGL_COLOR_BUFFER_FORMAT_ABGR4444 EGL_COLOR_BUFFER_FORMAT_ARGB4444 EGL_COLOR_BUFFER_FORMAT_BGRA4444 S EGL_COLOR_BUFFER_FORMAT_RGBA4444 EGL_COLOR_BUFFER_FORMAT_ABGR1555 EGL_COLOR_BUFFER_FORMAT_ARGB1555 & EGL_COLOR_BUFFER_FORMAT_BGRA5551 & EGL_COLOR_BUFFER_FORMAT_RGBA5551 : EGL_COLOR_BUFFER_FORMAT_L8 z EGL_COLOR_BUFFER_FORMAT_YV12_BT601_NARROW z EGL_COLOR_BUFFER_FORMAT_YV12_BT601_WIDE z EGL_COLOR_BUFFER_FORMAT_YV12_BT709_NARROW z EGL_COLOR_BUFFER_FORMAT_YV12_BT709_WIDE j EGL_COLOR_BUFFER_FORMAT_NV12_BT601_NARROW j EGL_COLOR_BUFFER_FORMAT_NV12_BT601_WIDE j EGL_COLOR_BUFFER_FORMAT_NV12_BT709_NARROW j EGL_COLOR_BUFFER_FORMAT_NV12_BT709_WIDE * EGL_COLOR_BUFFER_FORMAT_NV16_BT601_NARROW * EGL_COLOR_BUFFER_FORMAT_NV16_BT601_WIDE * EGL_COLOR_BUFFER_FORMAT_NV16_BT709_NARROW * EGL_COLOR_BUFFER_FORMAT_NV16_BT709_WIDE * EGL_COLOR_BUFFER_FORMAT_YUYV_BT601_NARROW * EGL_COLOR_BUFFER_FORMAT_YUYV_BT601_WIDE * EGL_COLOR_BUFFER_FORMAT_YUYV_BT709_NARROW * EGL_COLOR_BUFFER_FORMAT_YUYV_BT709_WIDE Pj EGL_COLOR_BUFFER_FORMAT_NV21_BT601_NARROW Pj EGL_COLOR_BUFFER_FORMAT_NV21_BT601_WIDE Pj EGL_COLOR_BUFFER_FORMAT_NV21_BT709_NARROW Pj EGL_COLOR_BUFFER_FORMAT_NV21_BT709_WIDE 6 EGL_COLOR_BUFFER_FORMAT_ABGR8888_AFBC 6 EGL_COLOR_BUFFER_FORMAT_XBGR8888_AFBC : 6 EGL_COLOR_BUFFER_FORMAT_BGR888_AFBC 6 EGL_COLOR_BUFFER_FORMAT_BGR565_AFBC 6 EGL_COLOR_BUFFER_FORMAT_ABGR4444_AFBC 6 EGL_COLOR_BUFFER_FORMAT_ABGR1555_AFBC j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_NARROW_AFBC j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_WIDE_AFBC j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_NARROW_AFBC j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_WIDE_AFBC v EGL_COLOR_BUFFER_FORMAT_ABGR8888_AFBC_SPLITBLK v EGL_COLOR_BUFFER_FORMAT_XBGR8888_AFBC_SPLITBLK : v EGL_COLOR_BUFFER_FORMAT_BGR888_AFBC_SPLITBLK v EGL_COLOR_BUFFER_FORMAT_BGR565_AFBC_SPLITBLK EGL_COLOR_BUFFER_FORMAT_ABGR8888_AFBC_SPLITBLK_WIDEBLK EGL_COLOR_BUFFER_FORMAT_XBGR8888_AFBC_SPLITBLK_WIDEBLK : EGL_COLOR_BUFFER_FORMAT_BGR888_AFBC_SPLITBLK_WIDEBLK EGL_COLOR_BUFFER_FORMAT_BGR565_AFBC_WIDEBLK j V EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_NARROW_AFBC_SPLITBLK j V EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_WIDE_AFBC_SPLITBLK j V EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_NARROW_AFBC_SPLITBLK j V EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_WIDE_AFBC_SPLITBLK j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_NARROW_AFBC_WIDEBLK j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_WIDE_AFBC_WIDEBLK j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_NARROW_AFBC_WIDEBLK j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_WIDE_AFBC_WIDEBLK * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT601_NARROW_AFBC * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT601_WIDE_AFBC * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT709_NARROW_AFBC * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT709_WIDE_AFBC * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT601_NARROW_AFBC_WIDEBLK * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT601_WIDE_AFBC_WIDEBLK * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT709_NARROW_AFBC_WIDEBLK * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT709_WIDE_AFBC_WIDEBLK EGL_COLOR_BUFFER_FORMAT_Y0L2 f EGL_COLOR_BUFFER_FORMAT_P010 B EGL_COLOR_BUFFER_FORMAT_P210 " EGL_COLOR_BUFFER_FORMAT_Y210 EGL_COLOR_BUFFER_FORMAT_Y410 EGL_COLOR_BUFFER_FORMAT_A2Y10U10V10 EGL_COLOR_BUFFER_FORMAT_Y10U10Y10V10 EGL_COLOR_BUFFER_FORMAT_V10Y10U10Y10 EGL_COLOR_BUFFER_FORMAT_Y10_U10V10_422 EGL_COLOR_BUFFER_FORMAT_Y10_U10V10_420 v EGL_COLOR_BUFFER_FORMAT_Y16_U16V16_420 EGL_COLOR_BUFFER_FORMAT_YUV420_10BIT_AFBC EGL_COLOR_BUFFER_FORMAT_YUV420_10BIT_AFBC_WIDEBLK B EGL_COLOR_BUFFER_FORMAT_YUV422_10BIT_AFBC B EGL_COLOR_BUFFER_FORMAT_YUV422_10BIT_AFBC_WIDEBLK 6 EGL_COLOR_BUFFER_FORMAT_ABGR2101010 6 EGL_COLOR_BUFFER_FORMAT_ABGR2101010_AFBC 8[ t | \ $ X l x ! " # $ % & ' T P $ ` 0 a . $ ` H ( H $ < " H $ 8 4 < @ t d T o - l- u - 2 - + - + A - , - 2 - (, - 8, U - P, - D, - d- - `, - , - , - , - , - , - - - - - 0- - @- - T- - W W W W $W 4p ,W 8W @W LW P . t PD 0 ' D # . ' # T ' P Z h 4. 4. % L U Dm$ , `m$ 2 2 2 2 2 2 2 . # & " & " h [& 2 3 P 3 3 3 $3 ,3 43 <3 D3 L3 T3 \3 d3 l3 t3 |3 3 3 A tA 3 3 3 3 < ` 3 3 3 3 3 4 4 4 4 $4 (4 ,4 <4 H4 T4 X4 \4 d4 l4 t4 & 4 4 4 4 4 4 4 : ,: 4 4 4 5 $5 85 L5 d5 |5 5 5 5 5 5 6 6 46 D6 l6 6 6 6 6 6 7 ,7 <7 X7 h7 |7 7 7 7 7 7 9 7 7 7 8 8 8 ,8 88 L8 \8 t8 8 8 8 8 8 8 T < 8 8 8 9 9 ,9 @9 P9 X9 l9 9 9 d 9 9 9 9 9 : : : (: 8: H: \: l: x: : : : : : : : ; ; ,; 8; L; `; l; |; ; ; ; ; ; ; ; ; ; ; < < < ,< << H< T< `< l< x< < < < < < < < < < < XW TA = = = $= ,= 4= <= D= L= P= T= \A \= ;' d= h= p= |= = = = = = = = = = = = = > > > (> 0> <> D> H> T> d> x> > > > > > > > > > > > > > > ? ? ? $? ,? 4? <? D? n' P? \? h? t? ? ? ? ? ? ? ? ? ? ? ? ? ? ? @ @ @ @ @ $@ 0@ 8@ @@ D@ P@ X@ `@ d@ l@ t@ @ @ @ @ @ @ @ @ @ b @ @ @ @ <4 @ @ @ @ @ @ A A A A $A ,A 8A @A HA PA XA `A hA tA |A A A A A A A A A A A A A A B B B B (B 0B 4B @B LB TB \B hB pB |B B B B B B B B B B B B B PD B B B B B B C C C C $C (C 0C <C DC PC XC DB lC tC |C C C C C C C C C C C C C C D D D $D 4D <D HD h XD hD pD xD D D D D D D D D D D D E E E (E 4E @E HE PE XE dE lE xE E E E E E E E E E E E E E F F F 0F 8F @F HF PF \F dF pF xF F F F F F F F F F F G G G (G 4G @G HG TG `G lG xG G G G G G G G G G G G H H H $H 4H LH dH |H H H H H H H I I |W 8\ \ [ `[ 8\ [ [ [ `[ P\ [ [ `[ 8\ [ [ `[ 8\ [ [ \ [ [ 86 @6 yC6 ]=6 66 66 5;6 >6 -86 ?6 =6 76 =76 76 a76 $ 8 P | d | | { <| X| l| < X p p} | l | | } } @} \} } } { ~ ~ , ~ ~ D~ h~ l D ~ X { { { | | <| X| l| | | | l | | } } @} \} p} } } } } ~ ~ D~ h~ ~ ~ ~ ~ ~ , D l t 0 X l L t 8 h T ( @ 4 < X Q X V 3 b c W 4 @ < A E A C A ` ` H @ ` @ d t u x @ y ` v @ w ` p r q ! s " @ # @ $ @ % @ & @ ' @ ( @ ) @ * @ + @ , @ - @ . @ / @ 0 ` 1 ` 2 ` 3 ` 4 ` 5 ` 6 ` 7 ` 8 ` 9 ` : ` ; ` < ` = ` > H ? H @ H A H B H C H D H E H F H G H H h I h J h K h L h M h N h O h P h Q h R S @ T U @ V @ W X @ Y Z @ [ @ \ R h ] Y h ^ Y h _ ) ` + ' a A b c ' d e - f / ' g h Q i . j 0 ' k l W m : ; n A ! o C p ! q ' ! r = > s o h C t p C u q v < ( w 6 x v C y w z : ( { 4 | | C } } ~ 8 ( 2 C ; ( 5 C 9 ( 3 C 7 ( 1 K n Z K n Z K n X K n [ K n X K n W K n X K n Y K n HX K n X K n Y K n L K n M K n lW K n XW K n PZ K n Y K n `V K n 8V K n W K n W K n L K n X K n W K n LY K n @[ K n xZ K n K pX n Z pX n pX pX n Z pX n W pX n ,[ pX n W pX x n 8Y pX n Y pX n HX pX n Y pX n [ Y n W Y n W Y n tY Y n V Y n T[ Y x n tV Y n X Y n Y Y n `V Y n @[ Y n lW [ x n 0 <Z J hN [ n 0 Z J hN [ n 0 Z J N [ n 0 Z J PN [ x n 0 <Z J PN [ x n 0 <Z J N Y n Y Y n dZ Y n Z Y n W Y n Z Y n W Y x n <Z Y n V Y n \X Y n W Y n [ K x 0 0^ K \ K x @ 0^ K \ \ L x 0 ^ L \ L x @ ^ L \ \ L x 0 ^ L \ L x @ ^ L \ \ M x 0 ^ M \ M x @ ^ M \ \ K x 0 ] K \ K x @ ] K \ \ L x 0 ] L \ L x @ ] L \ \ L x 0 ] L \ L x @ ] L \ \ M x 0 x] M \ M x @ x] M \ \ K x 0 (] K \ K x @ (] K \ \ L x 0 ] L \ L x @ ] L \ \ L x 0 \ L \ L x @ \ L \ \ M x 0 \ M \ M x @ \ M \ \ K K L L dM dM L L J J ,L ,L M M $Y x n $Y [ n [ Y n Y \X n \X ,L x n ,L dM n dM X n X Z n Z V n V 8Y x n 8Y <Z x n <Z Z n Z V x n V X n X W n W `Y x n `Y J n J tV x n tV W n W V n V X n X K n R K n P Z x n `Y Z n X Z n Z Z n Z Z n Y Z n LV Z n LY Z n X Z n W Z n Y Z n Z @[ n V @[ n tY @[ n W @[ n lW @[ x n tV @[ n Y @[ n @[ @[ n X @[ n T[ @[ n W @[ n `V ,[ n W ,[ x n 8Y ,[ n pX ,[ n W ,[ n ,[ ,[ n Z ,[ n Z ,[ n HX ,[ n Y ,[ n Y ,[ n [ V n V V n ,W V n (Z V n X V n V V n X V x n V V n X V n V V n 4X V n xZ HX n ,[ HX n pX HX n HX HX n Y HX x n 8Y HX n Z HX n W HX n [ HX n W HX n Y HX n Z \X n V \X n \X \X n dZ \X n Z \X n Y \X n W \X n [ \X n W \X n <Z \X n W \X n Z xZ n X xZ x n V xZ n (Z xZ n V xZ n ,W xZ n V xZ n X xZ n X xZ n 4X xZ n V xZ n xZ L n ! L L V n ! V V Y n ! Y Y Z n ! Z Z X n ! X X Y n ! Y Y X n ! X X X n ! X X W n ! W W K n ! K K [ n ! [ [ V n ! V V 4X n ! 4X 4X `V n ! `V `V Y n ! Y Y tY n ! tY tY L n ! L L W n ! W W LY n ! LY LY W n ! W W ,[ n ! ,[ ,[ ,W n ! ,W ,W pX n ! pX pX DW n ! DW DW HX n ! HX HX M n ! M M Y n ! Y Y PZ n ! PZ PZ X n ! X X 8V n ! 8V 8V M n ! M M L n ! L L W n ! W W Y n ! Y Y W n ! W W W n ! W W X n ! X X LV n ! LV LV Z n ! Z Z K n ! K K Z n ! Z Z Z n ! Z Z Y n ! Y Y @[ n ! @[ @[ Z n ! Z Z V n ! V V W n ! W W xZ n ! xZ xZ Z n ! Z Z (Z n ! (Z (Z XW n ! XW XW T[ n ! T[ T[ xK n ! xK xK lW n ! lW lW X n ! X X dZ n ! dZ dZ <Z , / n K <Z , / n xK <Z x n Z <Z , / n M <Z , / n J <Z , / n ,L <Z x n <Z <Z , / n M <Z , / n L <Z , / n L <Z x n dZ <Z , / n L <Z , / n K <Z , / n dM [ x n 0 V J N [ n 0 V J PN [ n 0 V J hN [ x n 0 V J hN [ x n 0 V J PN [ n 0 V J N `V n Y `V n V `V n T[ `V n W `V n @[ `V n `V `V n X `V n lW `V x n tV `V n tY `V n W DW n 8V DW n X DW x n $Y DW n X DW n W DW n X DW n XW DW n PZ DW n Y DW n Z DW n DW Y n Y dM n dM Z n Z V n V X n X W n W X n X XW n ! DW DW X n ! LV LV X n ! Z Z X n ! X X X n ! X X W n ! Y Y 8V n ! W W LY n ! Z Z Z n ! Z Z X n ! V V `V n ! `V `V PZ n ! X X HX n ! W W LY n ! LY LY W n ! W W lW n ! tY tY 8V n ! 8V 8V Y n ! ,[ ,[ HX n ! HX HX Y n ! Y Y PZ n ! PZ PZ X n ! X X Y n ! pX pX Y n ! Y Y X n ! X X Y n ! Z Z X n ! ,W ,W Z n ! Z Z Y n ! Y Y @[ n ! @[ @[ @[ n ! Y Y W n ! W W xZ n ! xZ xZ W n ! V V xZ n ! (Z (Z `V n ! T[ T[ X n ! X X X n ! 4X 4X lW n ! lW lW XW n ! XW XW V n dZ V x n <Z V n Z V n W V n [ V n W V n \X V n W V n Z V n Y V n V xZ x n ! V V Y x n ! 8Y 8Y W n ! Z Z PZ n ! X X K x n ! ,L ,L `V x n ! tV tV W x n ! `Y `Y HX n ! [ [ lW n ! X X X n ! Y Y Z n ! W W Z x n ! <Z <Z W n ! W W 8V n ! X X X n ! V V XW x n ! $Y $Y K n ! J J LY n ! Z Z K n ! dM dM X n ! V V [ n ! \X \X [ x n 0 $Y J hN [ x n 0 $Y J N [ n 0 X J PN [ n 0 X J hN [ x n 0 $Y J PN [ n 0 X J N $Y x n $Y ,L x n ,L \X n \X Z n Z X n X dM n dM <Z x n <Z Z n Z Y n Y W n W X n X J n J tV x n tV `Y x n `Y X n X L n K L n xK L n M L n J L n L L n K L n M L n L L n L L x n ,L L n dM [ n 0 W J PN [ n 0 W J hN [ x n 0 8Y J N [ x n 0 8Y J PN [ x n 0 8Y J hN [ n 0 W J N V n " J J V n " J J V n " J J V n " J J V n ,W V n (Z V x n V V n xZ V n V V n X V n X V n X V n V V n 4X V n V X n xZ X n V X n X X x n V X n V X n X X n (Z X n 4X X n X X n V X n ,W X n Y X n Z X n Y X n X X n LY X x n `Y X n LV X n W X n Z X n Z X n X Y n pX Y n ,[ Y n Z Y n [ Y n HX Y n Y Y n Y Y x n 8Y Y n W Y n W Y n Z Z n X Z x n `Y Z n LV Z n Y Z n Y Z n W Z n Z Z n LY Z n X Z n Z Z n Z [ n W [ n [ [ n Y [ n Z [ n W [ n \X [ n V [ n W [ x n <Z [ n Z [ n dZ dZ n Y dZ n W dZ n dZ dZ n W dZ n [ dZ n Z dZ n \X dZ n V dZ x n <Z dZ n Z dZ n W [ x n 0 ,L J PN [ x n 0 ,L J hN [ n 0 dM J hN [ n 0 dM J N [ x n 0 ,L J N [ n 0 dM J PN XW x n $Y XW n DW XW n Z XW n W XW n X XW n Y XW n PZ XW n X XW n 8V XW n X XW n XW LY n Z LY n Z LY n X LY n W LY n Y LY n Z LY x n `Y LY n X LY n LV LY n Y LY n LY ,W n V ,W n DW ,W , / n dM ,W , / n J ,W , / n M ,W x n tV ,W , / n L ,W n XW ,W , / n K ,W n T[ ,W n Z ,W , / n K ,W n ,W ,W n W ,W n Z ,W x n $Y ,W , / n ,L ,W , / n L ,W n `V ,W , / n L ,W , / n xK ,W , / n M ,W n X X , / n L X , / n dM X n X X , / n M X n V X , / n M X n Y X n 4X X , / n L X , / n xK X , / n K X , / n ,L X , / n K X x n 8Y X , / n L X n pX X , / n J Y n ! Y Y V n ! V V Z n ! Z Z X n ! X X X n ! X X W n ! W W dM n ! dM dM L x ] L K x 0^ K L x ^ L M x x] M L x \ L M x \ M L x ] L L x ] L K x ] K K x (] K M x ^ M L x ^ L K n dM K n K K n xK K n K K n M K x n ,L K n L K n L K n M K n J K n L LV x n `Y LV n X LV n Y LV n LV LV n W LV n LY LV n Z LV n Z LV n Y LV n Z LV n X Z Z ,[ ,[ dZ dZ W W M M W W pX pX PZ PZ Z Z Z Z Y Y lW lW X X ,W ,W W W Y Y K K [ [ V V X X W W LY LY Z Z K K xZ xZ W W Y Y Y Y V V V V X X W W XW XW T[ T[ L L xK xK `V `V Z Z tY tY 8V 8V L L M M LV LV DW DW HX HX Y Y X X Y Y Z Z @[ @[ (Z (Z W W 4X 4X L L X X X X dM n K dM n M dM n dM dM n L dM n L dM n K dM n J dM n L dM n xK dM x n ,L dM n M L n [ K n \ L n [ K n \ L n 8\ L n [ M n [ M n [ T[ n W T[ n X T[ x n tV T[ n W T[ n @[ T[ n tY T[ n `V T[ n lW T[ n V T[ n T[ T[ n Y Z n Z Z n HX Z n Z Z x n 8Y Z n W Z n [ Z n W Z n ,[ Z n Y Z n Y Z n pX X n X X n xZ X x n V X n X X n V X n 4X X n V X n ,W X n V X n X X n (Z L n L L n J L n M L n dM L n xK L n L L x n ,L L n M L n K L n K L n L L n K L n K L n L L n J L n L L n M L x n ,L L n L L n xK L n dM L n M [ n ! [ [ tV x n ! tV ,L `Y x n ! `Y `Y W n ! W J V x n ! V V W n ! W W \X n ! \X J <Z x n ! <Z ,L Z n ! Z Z X n ! X X Y n ! Y Y X n ! X dM 8Y x n ! 8Y ,L tV x n ! tV tV <Z x n ! <Z <Z Z n ! Z J X n ! X dM V n ! V V 8Y x n ! 8Y 8Y Y n ! Y dM X n ! X X X n ! X X W n ! W W dM n ! dM dM W n ! W dM [ n ! [ J V n ! V V $Y x n ! $Y ,L V n ! V dM V x n ! V ,L Z n ! Z dM J n ! J J Z n ! Z Z \X n ! \X \X V n ! V J $Y x n ! $Y $Y ,L x n ! ,L ,L `Y x n ! `Y ,L X n ! X J [ n ! [ [ Y n ! Y Y V n ! V V V n ! V V W n ! W W J n ! J J ,L x n ! ,L ,L Z n ! Z Z \X n ! \X \X X n ! X X X n ! X X X n ! X X W n ! W W `Y x n ! `Y `Y $Y x n ! $Y $Y dM n ! dM dM 8Y x n ! 8Y 8Y tV x n ! tV tV Z n ! Z Z <Z x n ! <Z <Z V x n ! V V M n [ M K n \ K L n [ L L n 8\ L K n \ K M n [ M L n [ L L n [ L W n XW W x n $Y W n DW W n X W n 8V W n PZ W n Y W n W W n X W n Z W n X lW n Y lW x n tV lW n T[ lW n V lW n @[ lW n `V lW n tY lW n W lW n W lW n lW lW n X Z n dZ Z n [ Z n Z Z n Y Z n \X Z x n <Z Z n Z Z n W Z n V Z n W Z n W X x 2 R R K X x 2 R R dM X n 2 R R X X n 2 R R Y X n 2 R R 8V X n 2 R R X X x 2 tR R X X x 2 tR R Y X x 2 XR R 8V X x 2 XR R X X x " R K X x " R X X x " R 8V X x " tR X X x " XR 8V X x " <R K Z n Y Z n Z Z n @[ Z , / n J Z n Z Z , / n M Z n L Z n K Z n dM Z , / n L Z , / n xK Z , / n M Z , / n K Z n LY Z , / n L Z n Z Z , / n ,L Z n Y X n $Y X n W X n Z X n DW X n X X n 8V X n PZ X n X X n X X n XW X n Y Z n W Z n Y Z n Z Z n Z Z n X Z n X Z n LY Z n Y Z n Z Z n LV Z n `Y W n tV W n @[ W n W W n `V W n tY W n Y W n X W n lW W n W W n V W n T[ [ n W [ n ,[ [ n W [ n Y [ n Y [ n [ [ n Z [ n Z [ n 8Y [ n pX [ n HX `Y x n ! V Y LY n ! HX Z [ n ! [ W Z n ! Z dZ dZ n ! Y dZ X n ! W V Z n ! V Y Y n ! Y Y Z n ! X Z Z n ! Y dZ W n ! W W xZ n ! Z (Z W n ! W Y Y n ! Y LV W n ! V Z 8V n ! W W Z n ! W Y Y n ! Y Y X n ! X LV DW n ! (Z DW W n ! Z W `Y x n ! 8Y Y ,W n ! W ,W V n ! ,[ V W n ! XW Y Y n ! X Z pX n ! (Z pX Y n ! Y Z W n ! 8V Y XW n ! Z DW \X n ! X W W n ! Y Y X n ! ,W X Y n ! pX Y W n ! W Z 8Y x n ! <Z pX Z n ! Z Z ,W n ! ,W ,W LV n ! 4X LV \X n ! \X W Y n ! Z LV 4X n ! Y 4X X n ! X V $Y x n ! 8Y DW Z n ! X Y W n ! Y W Y n ! W Z LV n ! Z LV V n ! Z 4X X n ! \X X X n ! Y Z W n ! Z Z Z n ! 8V Z HX n ! HX W X n ! W Z PZ n ! X X V x n ! V (Z Y n ! 4X Y XW n ! XW DW dZ n ! dZ dZ Y n ! xZ pX Y n ! DW Y 8V n ! 8V W Z n ! X Z Z n ! xZ dZ V x n ! <Z (Z V n ! Y 4X \X n ! V W (Z n ! (Z (Z X n ! W X X n ! [ X X n ! Z LV V x n ! $Y (Z Z n ! X Z V n ! X ,W Z n ! \X Z W n ! xZ Y LY n ! PZ Z Y n ! X LV ,[ n ! Z ,[ [ n ! [ W pX n ! pX pX 4X n ! LV 4X Y n ! W ,[ W n ! Z W X n ! V W W n ! X W [ n ! X W 8Y x n ! 8Y pX Z n ! XW dZ X n ! HX ,W 4X n ! 4X 4X X n ! X Z X n ! X W Z n ! W Z X n ! 8V 4X Y n ! X ,[ X n ! V X V n ! \X ,W $Y x n ! <Z DW W n ! W Y \X n ! Z W PZ n ! PZ X PZ n ! [ X V n ! Z V [ n ! Z W Y n ! XW pX V n ! Z V xZ n ! W (Z LV n ! Y LV X n ! X X 8Y x n ! `Y pX W n ! 4X W W n ! W W V n ! V V Y n ! Z Y X n ! Y Z X n ! W X X n ! Z W 8Y x n ! V pX X n ! Z X W n ! X V $Y x n ! $Y DW Z n ! V Z PZ n ! HX X DW n ! Y DW <Z x n ! V dZ XW n ! xZ DW Y n ! Y pX Z n ! 4X Z X n ! Y V V n ! ,[ V V n ! W 4X xZ n ! XW (Z V n ! V V Z n ! Z Z V n ! V V Z n ! ,[ Z LY n ! LY Z X n ! Y W X n ! X 4X (Z n ! pX (Z 8V n ! Z W Y n ! dZ Y W n ! Z Y Y n ! (Z Y X n ! 8V LV Z n ! Z Z Z n ! V Z (Z n ! Y (Z xZ n ! Y (Z W n ! X Y dZ n ! (Z dZ [ n ! LY W Y n ! Y Z V x n ! `Y (Z X n ! [ ,W X n ! Z 4X Y n ! W pX V n ! Z V HX n ! [ W Z n ! W Z xZ n ! xZ (Z X n ! X LV ,[ n ! ,[ ,[ Y n ! W LV $Y x n ! `Y DW Z n ! Z Z HX n ! X W X n ! X ,W <Z x n ! `Y dZ V n ! [ ,W V n ! V 4X ,[ n ! V ,[ XW n ! W DW Z n ! W dZ W n ! W W Y n ! Y ,[ W n ! X Y ,W n ! W ,W W n ! Z W W n ! X Z X n ! X Z Y n ! Y ,[ Y n ! Z pX W n ! LV W Z n ! Z Z \X n ! [ W dZ n ! DW dZ $Y x n ! V DW ,W n ! X ,W V n ! V ,W DW n ! pX DW PZ n ! LY X <Z x n ! 8Y dZ ,W n ! Z ,W `Y x n ! $Y Y Z n ! V Z LV n ! W LV Y n ! X Z Y n ! X ,[ DW n ! dZ DW (Z n ! DW (Z Z n ! LV Z <Z x n ! $Y dZ X n ! W W X n ! PZ ,W ,[ n ! Z ,[ HX n ! PZ W Z n ! Z Z Z n ! ,[ Z pX n ! dZ pX ,[ n ! V ,[ X n ! X X [ n ! V W 4X n ! Z 4X Z n ! Y Y LY n ! X Z W n ! X W X n ! Y V pX n ! DW pX V n ! V V Z n ! Z Z X n ! X V Z n ! Z Z 8Y x n ! $Y pX Z n ! X Z Y n ! V LV V x n ! 8Y (Z LY n ! [ Z W n ! W W [ n ! PZ W X n ! X 4X Z n ! Y Z W n ! Y V V n ! Z ,W `Y x n ! <Z Y Z n ! Z Y W n ! ,W W X n ! LY ,W W n ! W W Z n ! V Z dZ n ! pX dZ pX n ! Y pX Z n ! V Z X n ! W 4X 4X n ! W 4X Z n ! ,W Z DW n ! DW DW (Z n ! dZ (Z W n ! Z Y Z n ! [ Z LV n ! LV LV HX n ! LY W Y n ! LV Y Y n ! W Y Z n ! W Z 8V n ! X W V n ! Z V [ n ! \X W [ n ! HX W W n ! X V W n ! ,W W 8V n ! X W X n ! Z X [ n ! X W V n ! X 4X `Y x n ! `Y Y X n ! W LV W n ! W V W n ! Y Z XW n ! Y DW W n ! Y V Z n ! W Z <Z x n ! <Z dZ V , / n K V , / n L V , / n ,L V n 4X V , / n M V , / n K V , / n L V n V V n X V n pX V , / n xK V , / n dM V , / n L V , / n J V , / n M V n Y V x n 8Y Z n 1 Z Z Z lW n 1 lW lW lW V n 1 V V W dM n 1 dM dM K Z n 1 Z Z Z X n 1 X X 8V W n 1 W W W L n 1 L L L 8Y x n 1 8Y 8Y pX Z n 1 Z Z Z Y n 1 Y Y Y <Z x n 1 <Z <Z dZ Z n 1 Z Z W X n 1 X X V W n 1 W W W W n 1 W W W Y n 1 Y Y W V n 1 V V X \X n 1 \X \X [ Y n 1 Y Y Y Y n 1 Y Y Z [ n 1 [ [ HX Z n 1 Z Z Y J n 1 J J L Y n 1 Y Y @[ L n 1 L L L Z n 1 Z Z Z ,L x n 1 ,L ,L L W n 1 W W HX XW n 1 XW XW DW LY n 1 LY LY LY dM n 1 dM dM L K n 1 K K K Y n 1 Y Y LV K n 1 K K L M n 1 M M M W n 1 W W Z W n 1 W W W `V n 1 `V `V `V X n 1 X X X W n 1 W W Y M n 1 M M M V n 1 V V ,W LV n 1 LV LV X HX n 1 HX HX HX `Y x n 1 `Y `Y W Z n 1 Z Z LY W n 1 W W [ W n 1 W W W W n 1 W W Y X n 1 X X X Z n 1 Z Z Y tV x n 1 tV tV `V X n 1 X X Z V n 1 V V X V n 1 V V W X n 1 X X tY Z n 1 Z Z LY X n 1 X X X (Z n 1 (Z (Z (Z V n 1 V V V Z n 1 Z Z Z <Z x n 1 <Z <Z Z @[ n 1 @[ @[ @[ Y n 1 Y Y Y Y n 1 Y Y ,[ xZ n 1 xZ xZ xZ L n 1 L L K xZ n 1 xZ xZ (Z Y n 1 Y Y Y $Y x n 1 $Y $Y XW X n 1 X X LV XW n 1 XW XW XW `Y x n 1 `Y `Y Y (Z n 1 (Z (Z xZ 4X n 1 4X 4X X X n 1 X X X V x n 1 V V (Z dZ n 1 dZ dZ dZ V n 1 V V 4X V n 1 V V V Y n 1 Y Y W [ n 1 [ [ W PZ n 1 PZ PZ X M n 1 M M xK V n 1 V V V X n 1 X X W X n 1 X X PZ [ n 1 [ [ W pX n 1 pX pX Y DW n 1 DW DW XW W n 1 W W Z ,W n 1 ,W ,W ,W 8Y x n 1 8Y 8Y Y 8V n 1 8V 8V W X n 1 X X X tV x n 1 tV tV T[ LV n 1 LV LV LV tY n 1 tY tY tY W n 1 W W V ,[ n 1 ,[ ,[ ,[ Z n 1 Z Z Z 8V n 1 8V 8V 8V K n 1 K K L Y n 1 Y Y Y X n 1 X X lW W n 1 W W V L n 1 L L K T[ n 1 T[ T[ `V Z n 1 Z Z Z L n 1 L L L J n 1 J J K 4X n 1 4X 4X 4X W n 1 W W W L n 1 L L M tY n 1 tY tY lW M n 1 M M L W n 1 W W V X n 1 X X X PZ n 1 PZ PZ PZ X n 1 X X PZ W n 1 W W W Y n 1 Y Y pX ,L x n 1 ,L ,L M Z n 1 Z Z X X n 1 X X 4X DW n 1 DW DW DW dZ n 1 dZ dZ Z V x n 1 V V xZ LY n 1 LY LY Z Z n 1 Z Z Z Z n 1 Z Z dZ W n 1 W W W W n 1 W W 8V @[ n 1 @[ @[ Y Z n 1 Z Z Z xK n 1 xK xK M V n 1 V V X Y n 1 Y Y X HX n 1 HX HX W Y n 1 Y Y Y K n 1 K K K `V n 1 `V `V T[ $Y x n 1 $Y $Y DW [ n 1 [ [ [ X n 1 X X ,W \X n 1 \X \X W T[ n 1 T[ T[ T[ X n 1 X X X ,[ n 1 ,[ ,[ Y xK n 1 xK xK xK lW n 1 lW lW tY ,W n 1 ,W ,W X pX n 1 pX pX pX V , / n L V , / n M V n W V , / n xK V , / n K V n V V , / n J V , / n L V , / n M V , / n L V , / n dM V , / n ,L V , / n K Z , / n J Z n L Z , / n K Z n dM Z , / n M Z n Z Z n Z Z , / n xK Z , / n L Z n LY Z n Z Z n @[ Z n Y Z n K Z , / n M Z n Y Z , / n L Z , / n ,L Y , / n M Y , / n K Y n K Y n dM Y n L Y , / n L Y n Z Y n Z Y n Y Y , / n M Y , / n ,L Y , / n J Y n Y Y , / n L Y n LY Y n Z Y , / n xK Y n @[ Z n L Z , / n M Z , / n ,L Z , / n xK Z , / n K Z n X Z n J Z n K Z , / n L Z , / n L Z n Z Z , / n M Z , / n dM dM x 0 ] dM \ dM x @ ] dM \ \ ,L x 0 ] ,L \ ,L x @ ] ,L \ \ dM x 0 \] dM \ dM x @ \] dM \ \ ,L x 0 @] ,L \ ,L x @ @] ,L \ \ dM x 0 \ dM \ dM x @ \ dM \ \ ,L x 0 \ ,L \ ,L x @ \ ,L \ \ J , / n M J , / n L J , / n xK J n K J n X J , / n dM J , / n L J , / n ,L J , / n K J , / n M J n J J n L J n Z K n R K n P K n P K x P K n R K x XR K n R K n R K x tR K x <R K n P K x P K x R K x Q K x XR K n P K x P K x P dM n X dM n Y dM n X dM n Z dM n dM Z n Z Z n 8V Z x n $Y Z n X Z n W Z n XW Z n PZ Z n X Z n Y Z n DW Z n X XW x n $Y Z n W `V x n tV HX n [ [ n \X X n Y K x n ,L K n dM W x n `Y xZ x n V Z x n <Z 8V n X Y x n 8Y PZ n X lW n X LY n Z W n W K n J W n Z X n V X n V W n " J J W n " J J W n " J J W n " J J V x n (Z V x n V V x n X V x n 4X V x n V V x n X V x n X V x n V V x n ,W V x n xZ V x n V Y n Z Y n X Y n W Y n PZ Y n X Y n XW Y x n $Y Y n Y Y n X Y n 8V Y n DW K n \ K L n 8\ L L n [ L K n \ K X n " J J X n " J J X n " J J X n " J J `Y x n `Y Q \X n \X lQ Z n Z \Q \X n \X \Q ,L x n ,L xP W n W |Q $Y x n $Y Q tV x n tV Q W n W Q [ n [ Q <Z x n <Z lQ X n X Q V x n V ,R X n X Q Y n Y Q V n V $R J n J xP $Y x n $Y Q W n W Q V n V $R Y n Y LQ \X n \X R 8Y x n 8Y Q `Y x n `Y R X n X Q Z n Z R X n X Q <Z x n <Z R X n X Q V n V Q X n X R Z n Z LQ X n X Q V n V Q `Y x n `Y LQ V x n V $R Z n Z lQ W n W Q 8Y x n 8Y |Q W n W Q Z n Z R dM n dM `O ,L x n ,L O $Y x n $Y R V n V ,R ,L x n ,L `O J n J O [ n [ |Q tV x n tV Q dM n dM xP Z n Z Q V x n V Q X n X R tV x n tV Q 8Y x n 8Y Q [ n [ Q W n W Q J n J `O V n V ,R Y n Y R X n X Q <Z x n <Z \Q dM n dM O W n Y W n \X W n W W x n <Z W n V W n Z W n Z W n [ W n W W n W W n dZ [ n ,Q [ x 0 ,Q \ \ X n W X n M X n L X n X X , / n K X n Y X n ,[ X n W X n X X , / n J X , / n M X , / n L X x n ,L X , / n dM X n Y X n LV X , / n xK X , / n K X n V X , / n L X n PZ X n X [ x n 0 tV J hN [ n 0 X J hN [ n 0 X J N [ x n 0 tV J PN [ x n 0 tV J N [ n 0 X J PN Z n @[ Z n Z Z , / n J Z n Z Z n L Z n dM Z , / n L Z , / n M Z n Y Z , / n ,L Z , / n K Z , / n M Z , / n L Z n Z Z n K Z , / n xK Z n Y Z n LY W x n ,L W n W W n X W , / n L W n ,[ W , / n K W n V W n PZ W n X W , / n J W , / n K W n M W n W W , / n M W , / n dM W n Y W n L W n LV W n Y W , / n L W n X W , / n xK [ , / n M [ x n `Y [ , / n M [ n V [ , / n dM [ , / n L [ , / n L [ , / n xK [ , / n J [ , / n K [ n W [ n W [ n [ [ , / n K [ n X [ n HX [ , / n L [ n W [ n lW [ n Y [ n X [ , / n ,L [ n 8V [ n X [ n tY tY n W tY n T[ tY n Y tY x n tV tY n `V tY n tY tY n lW tY n V tY n W tY n @[ tY n X xK n xK xK n L xK n K xK n dM xK n K xK n J xK n M xK n L xK n M xK x n ,L xK n L K n \ K dM n L\ dM L n [ L L n 8\ L K n \ K dM n h\ dM V n X V n ,W V n (Z V n 4X V n xZ V n V V n X V n X V n V V n V V n V dM n " J J dM n " J J dM n " J J dM n " J J X n `V X , / n L X n T[ X n W X n Z X n X X , / n M X , / n xK X , / n K X x n tV X n V X , / n J X , / n dM X , / n M X n DW X , / n L X n XW X , / n ,L X , / n K X , / n L X x n $Y X n Z X n ,W [ n ,V J [ n @V J [ n TV J [ n hV J [ n |V J [ n V J [ n K J [ n V J [ n V J [ n V J [ n V J [ n V J [ n W J [ n W J [ n M J [ n 8W J [ n LW J [ n L J [ n `W J [ n tW J [ n W J [ n XM J [ n W J [ n W J [ n W J [ n W J [ n W J [ n X J [ n X J [ n (X J [ n <X J [ n PX J [ n J J [ n dX J [ n xX J [ n X J [ n X J [ n X J [ n K J [ n lK J [ n X J [ n X J [ n X J [ n Y J [ n Y J [ n M J [ n ,Y J [ n @Y J [ n TY J [ n hY J [ n |Y J [ n Y J [ n Y J [ n Y J [ n Y J [ n Y J [ n Y J [ n L J [ n Z J [ n Z J [ n 0Z J [ n DZ J [ n XZ J [ n lZ J [ n Z J [ n Z J [ n Z J [ n Z J [ n Z J [ n Z J [ n L J [ n Z J [ n [ J [ n L J [ n [ J [ n 4[ J [ n H[ J Y n ,[ Y n pX Y n W Y n Y Y n [ Y x n 8Y Y n Z Y n Z Y n HX Y n Y Y n W X n LV X n Y X n LY X n X X n X X n W X n Z X n Z X n Y X n Z X x n `Y \X , / n J \X , / n ,L \X , / n L \X , / n xK \X , / n dM \X n W \X n \X \X , / n K \X , / n L \X , / n K \X , / n L \X n [ \X , / n M \X , / n M tV x n 1 tV tV tV 8Y x n 1 8Y 8Y 8Y \X n 1 \X \X \X W n 1 W W W <Z x n 1 <Z <Z <Z `Y x n 1 `Y `Y `Y V n 1 V V V Z n 1 Z Z Z [ n 1 [ [ [ ,L x n 1 ,L ,L ,L Z n 1 Z Z Z X n 1 X X X V n 1 V V V X n 1 X X X J n 1 J J J W n 1 W W W dM n 1 dM dM dM $Y x n 1 $Y $Y $Y V x n 1 V V V X n 1 X X X Y n 1 Y Y Y Y n 1 Y Y Y X n 1 X X X lW n 1 lW lW lW Z n 1 Z Z Z 8V n 1 8V 8V 8V W n 1 W W W W n 1 W W W LV n 1 LV LV LV L n 1 L L L 4X n 1 4X 4X 4X K n 1 K K K tY n 1 tY tY tY Z n 1 Z Z Z X n 1 X X X 8V , / n L 8V n X 8V n W 8V , / n L 8V , / n J 8V , / n ,L 8V n [ 8V , / n dM 8V , / n K 8V n Y 8V , / n K 8V x n `Y 8V n V 8V n X 8V n lW 8V n X 8V , / n M 8V n tY 8V n W 8V n 8V 8V , / n L 8V n W 8V , / n M 8V n HX 8V , / n xK `V n T[ `V , / n K `V , / n M `V n X `V , / n ,L `V x n tV `V x n $Y `V n ,W `V n `V `V , / n J `V , / n L `V , / n K `V , / n dM `V , / n L `V n V `V , / n L `V , / n xK `V , / n M `V n DW `V n XW `V n Z `V n W `V n Z W n Z W x n `Y W n X W n Y W n Z W n X W n LV W n Y W n W W n LY W n Z W , / n K W n W W n HX W n tY W , / n ,L W n lW W , / n J W n [ W , / n dM W , / n L W x n `Y W , / n L W n W W n V W , / n K W n X W , / n M W n 8V W n X W , / n M W n X W n Y W n W W , / n xK W , / n L Z n " J J Z n " J J Z n " J J Z n " J J W n Y W x n <Z W n W W n \X W n W W n Z W n [ W n V W n dZ W n W W n Z tV x n ! tV lW `Y x n ! `Y X X n ! X lW ,L x n ! ,L K X n ! X 8V dM n ! dM K 8Y x n ! 8Y Z [ n ! [ Z W n ! W Z Y n ! Y X X n ! X 8V W n ! W lW J n ! J K <Z x n ! <Z W V n ! V X Z n ! Z W V x n ! V X V n ! V X $Y x n ! $Y 8V Z n ! Z X \X n ! \X W (Z x n V (Z n V (Z n 4X (Z n V (Z n ,W (Z n X (Z n V (Z n X (Z n xZ (Z n X (Z n (Z [ x 0 P K 8V [ n 0 P X 8V [ ` n 0 P 8V 8V [ x 0 P 8V 8V [ x 0 P X 8V [ x 0 Q K 8V [ x 0 P 8V X [ n 0 P X X [ x 0 Q K X [ x 0 P X X [ n 0 P 8V X [ x 0 P K X XW n DW XW , / n J XW x n tV XW , / n K XW , / n L XW n `V XW x n $Y XW , / n L XW , / n xK XW n ,W XW n W XW , / n ,L XW , / n K XW , / n L XW n Z XW , / n M XW n X XW , / n M XW n XW XW , / n dM XW n V XW n T[ XW n Z X n 2 R R X X n 2 R R Y X x 2 XR R 8V X x 2 XR R X X x 2 tR R X X x 2 tR R Y X x 2 R R K X x 2 R R dM X x 2 R R 8V X x 2 R R X X x " R K X x " R X X x " R 8V X x " tR X X x " XR 8V X x " <R K PZ n Y PZ , / n K PZ , / n M PZ , / n dM PZ n X PZ n X PZ n V PZ n ,[ PZ n M PZ n Y PZ x n ,L PZ , / n J PZ n W PZ n LV PZ n PZ PZ , / n K PZ , / n xK PZ , / n L PZ n W PZ n L PZ n X PZ , / n L [ , / n L [ , / n J [ n \X [ , / n L [ , / n dM [ , / n ,L [ , / n M [ n [ [ , / n M [ , / n K [ , / n xK [ , / n K [ n W [ , / n L X n V X n X X x n V X n xZ X n V X n X X n V X n ,W X n 4X X n X X n (Z [ x n 0 `Y J N [ n 0 Y J PN [ x n 0 `Y J hN [ n 0 Y J hN [ x n 0 `Y J PN [ n 0 Y J N LY , / n xK LY n Z LY , / n M LY n Z LY , / n J LY n L LY n Y LY n Z LY n K LY , / n ,L LY , / n L LY , / n M LY n @[ LY , / n L LY n Y LY n LY LY , / n K LY n dM @^ x P 0^ xP K \ \ @^ x ` 0^ xP K \ \ \ @^ x P ^ O L \ \ @^ x ` ^ O L \ \ \ @^ x P ^ P L \ \ @^ x ` ^ P L \ \ \ @^ x P ^ 4P M \ \ @^ x ` ^ 4P M \ \ \ @^ x P ] <P dM \ \ @^ x ` ] <P dM \ \ \ @^ x P ] O ,L \ \ @^ x ` ] O ,L \ \ \ @^ x P ] xP K \ \ @^ x ` ] xP K \ \ \ @^ x P ] O L \ \ @^ x ` ] O L \ \ \ @^ x P ] P L \ \ @^ x ` ] P L \ \ \ @^ x P x] 4P M \ \ @^ x ` x] 4P M \ \ \ @^ x P \] <P dM \ \ @^ x ` \] <P dM \ \ \ @^ x P @] O ,L \ \ @^ x ` @] O ,L \ \ \ @^ x P (] xP K \ \ @^ x ` (] xP K \ \ \ @^ x P ] O L \ \ @^ x ` ] O L \ \ \ @^ x P \ P L \ \ @^ x ` \ P L \ \ \ @^ x P \ 4P M \ \ @^ x ` \ 4P M \ \ \ @^ x P \ <P dM \ \ @^ x ` \ <P dM \ \ \ @^ x P \ O ,L \ \ @^ x ` \ O ,L \ \ \ HX , / n K HX , / n K HX , / n M HX n X HX n HX HX n X HX n 8V HX n [ HX , / n L HX n V HX n W HX n X HX n W HX , / n ,L HX n tY HX , / n L HX , / n M HX , / n dM HX n lW HX , / n J HX n Y HX n W HX , / n L HX , / n xK HX x n `Y xK n xK [ n [ X n X X n X Y n Y XW n XW L n L Z n Z K n K Y n Y Z n Z W n W W n W X n X HX n HX Y n Y pX n pX 8V n 8V tY n tY W n W `V n `V (Z n (Z L n L lW n lW W n W M n M K n K ,W n ,W T[ n T[ W n W Y n Y xZ n xZ Z n Z X n X dZ n dZ Y n Y V n V Y n Y PZ n PZ Z n Z DW n DW V n V Z n Z W n W V n V 4X n 4X ,[ n ,[ X n X W n W L n L X n X LV n LV M n M @[ n @[ Z n Z LY n LY V n T[ V x n tV V n V V n `V V n Y V n @[ V n W V n tY V n X V n lW V n W <Z x n W <Z x n W <Z x n <Z <Z x n W <Z x n Y <Z x n V <Z x n [ <Z x n \X <Z x n dZ <Z x n Z <Z x n Z W n W W n Z W n V W n [ W n Y W n W W n \X W n dZ W x n <Z W n W W n Z Y n " J J Y n " J J Y n " J J Y n " J J Y n Z Y n X Y n Z Y x n `Y Y n LY Y n W Y n Y Y n LV Y n Y Y n Z Y n X K x 0^ \ K x 0 0^ \ \ L x ^ \ L x 0 ^ \ \ L x ^ \ L x 0 ^ \ \ M x ^ \ M x 0 ^ \ \ dM x ] \ dM x 0 ] \ \ ,L x ] \ ,L x 0 ] \ \ K x ] \ K x 0 ] \ \ L x ] \ L x 0 ] \ \ L x ] \ L x 0 ] \ \ M x x] \ M x 0 x] \ \ dM x \] \ dM x 0 \] \ \ ,L x @] \ ,L x 0 @] \ \ K x (] \ K x 0 (] \ \ L x ] \ L x 0 ] \ \ L x \ \ L x 0 \ \ \ M x \ \ M x 0 \ \ \ dM x \ \ dM x 0 \ \ \ ,L x \ \ ,L x 0 \ \ \ Z n 1 Z Z Z L n 1 L L L T[ n 1 T[ T[ T[ X n 1 X X X PZ n 1 PZ PZ PZ HX n 1 HX HX HX XW n 1 XW XW XW M n 1 M M M dZ n 1 dZ dZ dZ 4X n 1 4X 4X 4X M n 1 M M M `V n 1 `V `V `V W n 1 W W W Z n 1 Z Z Z tY n 1 tY tY tY Y n 1 Y Y Y DW n 1 DW DW DW V n 1 V V V pX n 1 pX pX pX W n 1 W W W W n 1 W W W X n 1 X X X lW n 1 lW lW lW W n 1 W W W xK n 1 xK xK xK Z n 1 Z Z Z W n 1 W W W @[ n 1 @[ @[ @[ Y n 1 Y Y Y ,W n 1 ,W ,W ,W X n 1 X X X Y n 1 Y Y Y X n 1 X X X K n 1 K K K Z n 1 Z Z Z (Z n 1 (Z (Z (Z L n 1 L L L V n 1 V V V ,[ n 1 ,[ ,[ ,[ 8V n 1 8V 8V 8V Z n 1 Z Z Z [ n 1 [ [ [ X n 1 X X X Y n 1 Y Y Y Y n 1 Y Y Y LV n 1 LV LV LV X n 1 X X X V n 1 V V V LY n 1 LY LY LY Z n 1 Z Z Z L n 1 L L L Y n 1 Y Y Y xZ n 1 xZ xZ xZ K n 1 K K K W n 1 W W W W n 1 W W W $Y x n X $Y x n X $Y x n DW $Y x n $Y $Y x n 8V $Y x n X $Y x n Y $Y x n W $Y x n XW $Y x n PZ $Y x n Z V n T[ V n Z V , / n L V , / n K V , / n K V n V V n ,W V , / n M V x n $Y V , / n L V , / n M V , / n J V n `V V n W V n Z V n DW V x n tV V n X V n XW V , / n xK V , / n dM V , / n ,L V , / n L `V n " J lL W n " J J X n " J XM tY n " J XL lW n " J K tY n " J K W n " J M `V n " J M W n " J <K V n " J K lW n " J tM V n " J K W n " J J X n " J <L W n " J N tV x n " J K W n " J J Y n " J lK @[ n " J $K @[ n " J HM V n " J M tY n " J ,M T[ n " J L @[ n " J M T[ n " J J V n " J L tV x n " J L Y n " J L tV x n " J M W n " J J T[ n " J M `V n " J M lW n " J K tY n " J L Y n " J L X n " J N W n " J L lW n " J K `V n " J L T[ n " J M Y n " J 4M @[ n " J 8N X n " J L tV x n " J XK W x 2 R R K W x 2 R R dM W n 2 R R X W n 2 R R Y W n 2 R R 8V W n 2 R R X W x 2 tR R X W x 2 tR R Y W x 2 XR R 8V W x 2 XR R X W x " R K W x " R X W x " R 8V W x " tR X W x " XR 8V W x " <R K tV x n 1 tV tV tV Z n 1 Z Z Z `V n 1 `V L L V n 1 V J J Z n 1 Z Z Z W n 1 W W W 4X n 1 4X 4X 4X W n 1 W W W Y n 1 Y dM dM Y n 1 Y Y Y Y n 1 Y M M PZ n 1 PZ L L W n 1 W W W X n 1 X M M \X n 1 \X J J W n 1 W L L Z n 1 Z J J Z n 1 Z Z Z Y n 1 Y Y Y 8V n 1 8V 8V 8V L n 1 L L L Z n 1 Z Z Z XW n 1 XW L L X n 1 X X X V n 1 V xK xK LV n 1 LV L L X n 1 X J J LY n 1 LY LY LY V n 1 V dM dM Z n 1 Z Z Z T[ n 1 T[ M M Y n 1 Y L L M n 1 M M M W n 1 W W W DW n 1 DW M M `V n 1 `V `V `V W n 1 W K K 8Y x n 1 8Y ,L ,L X n 1 X dM dM M n 1 M M M X n 1 X X X HX n 1 HX HX HX Z n 1 Z K K W n 1 W L L W n 1 W W W X n 1 X X X dZ n 1 dZ M M xK n 1 xK xK xK xZ n 1 xZ L L 4X n 1 4X L L 8V n 1 8V K K Z n 1 Z K K HX n 1 HX L L X n 1 X L L W n 1 W K K ,[ n 1 ,[ xK xK (Z n 1 (Z M M Y n 1 Y xK xK Y n 1 Y M M W n 1 W L L (Z n 1 (Z (Z (Z \X n 1 \X \X \X V n 1 V V V Z n 1 Z Z Z V x n 1 V ,L ,L @[ n 1 @[ @[ @[ Y n 1 Y Y Y W n 1 W W W xZ n 1 xZ xZ xZ LY n 1 LY L L V n 1 V K K Y n 1 Y Y Y T[ n 1 T[ T[ T[ XW n 1 XW XW XW L n 1 L L L pX n 1 pX M M X n 1 X X X V n 1 V V V tY n 1 tY L L V n 1 V V V pX n 1 pX pX pX lW n 1 lW K K Z n 1 Z xK xK dZ n 1 dZ dZ dZ X n 1 X K K Y n 1 Y L L dM n 1 dM dM dM V x n 1 V V V ,W n 1 ,W ,W ,W W n 1 W dM dM X n 1 X X X LV n 1 LV LV LV [ n 1 [ J J tY n 1 tY tY tY ,[ n 1 ,[ ,[ ,[ <Z x n 1 <Z ,L ,L Y n 1 Y Y Y Y n 1 Y Y Y L n 1 L L L V n 1 V V V K n 1 K K K W n 1 W W W ,W n 1 ,W K K [ n 1 [ [ [ X n 1 X X X PZ n 1 PZ PZ PZ tV x n 1 tV ,L ,L V n 1 V V V W n 1 W M M $Y x n 1 $Y ,L ,L @[ n 1 @[ M M ,L x n 1 ,L ,L ,L W n 1 W W W X n 1 X K K DW n 1 DW DW DW Z n 1 Z xK xK W n 1 W J J `Y x n 1 `Y ,L ,L Z n 1 Z Z Z W n 1 W W W `Y x n 1 `Y `Y `Y lW n 1 lW lW lW Z n 1 Z Z Z [ n 1 [ [ [ 8Y x n 1 8Y 8Y 8Y $Y x n 1 $Y $Y $Y <Z x n 1 <Z <Z <Z W n 1 W K K Z n 1 Z dM dM Y n 1 Y Y Y K n 1 K K K Z n 1 Z L L X n 1 X X X X n 1 X dM dM V n 1 V xK xK X n 1 X X X [ n 1 [ L L X n 1 X K K Y n 1 Y M M X n 1 X X X J n 1 J J J Z n 1 Z L L X n 1 X M M `Y x n Z `Y x n W `Y x n LV `Y x n Y `Y x n X `Y x n `Y `Y x n LY `Y x n X `Y x n Y `Y x n Z `Y x n Z L n W n Z W n HX W n Z W n ,[ W n pX W n Y W x n 8Y W n W W n [ W n W W n Y X n " J J X n " J J X n " J J X n " J J L n 0 [ L L K n 0 \ K K L n 0 [ L L M n 0 [ M M M n 0 [ M M L n 0 8\ L L K n 0 \ K K L n 0 [ L L X n W X n XW X n Z X n 8V X n DW X n Y X n X X n X X n X X n PZ X x n $Y [ x |^ \ [ x 0 |^ \ \ [ x d^ \ [ x 0 d^ \ \ [ x L^ \ [ x 0 L^ \ \ Z n Z Z n pX Z n Y Z n Y Z n W Z n W Z x n 8Y Z n Z Z n ,[ Z n HX Z n [ J n dM J n L J n xK J n M J n K J n ,L J n K J n L J n J J n L J n M V n M V , / n xK V n Y V , / n L V , / n K V n Y V , / n M V n W V , / n K V n X V n X V n LV V , / n L V n PZ V n L V x n ,L V n V V n ,[ V n X V n W V , / n dM V , / n J X n V X , / n K X x n ,L X , / n L X n W X , / n K X , / n xK X n W X , / n L X n X X n Y X n LV X n Y X n M X , / n dM X n ,[ X n X X n X X n L X n PZ X , / n J X , / n M W , / n J W , / n K W , / n K W , / n ,L W n \X W , / n M W , / n L W n W W , / n M W , / n L W , / n dM W , / n xK W , / n L W n [ W , / n L W n Y W n 8V W n V W , / n ,L W n W W n W W , / n L W , / n M W , / n M W , / n K W n lW W , / n K W n W W n X W , / n J W , / n xK W n X W , / n L W , / n dM W n [ W n HX W x n `Y W n X W n tY tV x n `V tV x n W tV x n @[ tV x n tY tV x n X tV x n W tV x n lW tV x n T[ tV x n Y tV x n V tV x n tV M n M M n dM M n L M x n ,L M n xK M n L M n K M n L M n K M n J M n M J n Z ,L x n ,L dM n X dM n dM ,L x n <Z ,L x n $Y dM n Z J n \X J n X J n J ,L x n `Y dM n X J n W ,L x n tV dM n Y ,Q x \[ ,Q x t[ ,Q x [ [ n 0 Y J O [ n 0 Y J O [ x n 0 <Z J O [ n 0 [ J O [ n 0 [ J N [ n 0 W J O [ n 0 W J N [ n 0 W J `O [ n 0 dZ J N [ n 0 W J dP [ n 0 \X J N [ n 0 V J N [ x n 0 <Z J HO [ n 0 V J O [ n 0 Z J P [ n 0 W J lJ [ n 0 \X J hN [ x n 0 <Z J xO [ n 0 Z J O [ n 0 W J P [ n 0 Z J <P [ n 0 W J LP [ n 0 \X J PN [ n 0 [ J P [ n 0 Z J O [ n 0 W J O [ n 0 Z J N [ n 0 Y J N [ n 0 W J xP [ n 0 dZ J P [ n 0 Z J 0O [ n 0 dZ J 4P [ n 0 V J O K n K `Y x n ! `Y X X n ! X lW [ n ! [ K \X n ! \X W X n ! X 8V J n ! J K <Z x n ! <Z W $Y x n ! $Y 8V Z n ! Z W V n ! V K ,L x n ! ,L K [ n ! [ Z W n ! W Z Y n ! Y X V n ! V K V n ! V X V n ! V X Y n ! Y K tV x n ! tV lW X n ! X K X n ! X K $Y x n ! $Y K `Y x n ! `Y K Z n ! Z K W n ! W K V x n ! V K V x n ! V X tV x n ! tV K W n ! W K X n ! X 8V dM n ! dM K 8Y x n ! 8Y Z 8Y x n ! 8Y K W n ! W lW X n ! X K Z n ! Z X W n \X Z n W X x n `Y X x n V Z n [ X n Y Z x n 8Y K n dM K x n ,L 8V x n $Y X n V 8V n X lW x n tV 8V n X lW n X lW n W W x n <Z W n Z X n V X n Z K n J K n M K x n ,L K n dM K n M K n xK K n J K n K K n K K n L K n L K n L [ x \ L [ x ^ M [ x ] L [ x ] dM [ x \ ,L [ x \] dM [ x (] K [ x ] ,L [ x \ dM [ x x] M [ x ^ L [ x ] L [ x \ M [ x @] ,L [ x ] L [ x 0^ K [ x ^ L [ x ] K K n Z K , / n M K n Z K , / n L K n Y K n LY K , / n xK K n Z K n dM K , / n K K n @[ K , / n J K , / n M K , / n ,L K , / n L K n K K n L K n Y ,L x n L ,L x n M ,L x n ,L ,L x n M ,L x n K ,L x n K ,L x n L ,L x n L ,L x n dM ,L x n xK ,L x n J M n L M n K M n L M n dM M n J M n M M n xK M n M M n K M n L M x n ,L W n X W n lW W n tY W n Y W n V W n W W n @[ W x n tV W n `V W n T[ W n W x n P R ^ J J n P S Y J J n P ^ W J J n P ^ ^ J J n P N L J J n P ^ ^ J J n P Q ^ J J n P tT V J J n P _ $_ J J n P Q 8_ J J n P Q L_ J J n P `_ t_ J J n P T _ J J n P HS _ J J n P _ _ J J x n P HO K J J x n P U _ J J n P \Q _ J J n P ` X J J x n P 8U ` J J n P (` 8` J J x n P V Y J J n P L` Y J J n P O tM J J n P \` H[ J J n P p` W J J n P LP M J J n P (U [ J J n P ` ` J J n P ` Y J J n P ` ` J J n P Q `W J J x n P T |V J J n P 0O lL J J n P ` ` J J n P `O K J J n P a V J J x n P `U 0Z J J n P a DZ J J n P 4a TV J J n P Da Ta J J n P ha <X J J n P |a a J J n P a a J J n P O XL J J n P U a J J n P a Z J J n P a @Y J J x n P LU TY J J n P b Y J J n P U Z J J n P b (b J J n P <b Y J J n P Lb V J J x n P T \b J J n P Q X J J n P U V J J n P tb W J J n P S b J J n P U xX J J n P N L J J n P b V J J n P b b J J n P b b J J n P b Z J J n P lQ W J J n P c c J J n P 4c Hc J J x n P 0T hV J J n P \c pc J J n P c XZ J J n P c @V J J n P c Z J J n P c 8W J J n P LQ c J J n P c c J J n P ,R d J J n P d Y J J n P 0d Dd J J n P S Z J J n P Q Z J J n P Xd Z J J n P Q X J J n P S PX J J n P ld W J J n P d d J J n P O <L J J n P S d J J n P d W J J x n P |S ,Y J J n P d d J J n P d e J J n P O XM J J n P T e J J n P (e <e J J n P Pe Z J J n P de xe J J n P lJ $K J J n P e (X J J n P O lK J J n P P J J J n P e 4[ J J n P hS e J J n P P K J J n P e e J J n P e e J J n P f $f J J n P U 8f J J n P S Lf J J n P `f pf J J n P T W J J n P f f J J n P S tW J J n P T X J J n P f f J J x n P U f J J n P f X J J n P f g J J n P g 4g J J n P T X J J n P V Hg J J n P \g LW J J n P lg [ J J n P g V J J n P g |Y J J n P N M J J n P hN J J J n P g g J J n P g Y J J n P g X J J n P Q ,V J J n P g h J J n P N L J J n P h X J J n P (h dX J J n P <h lZ J J n P Ph Z J J n P T dh J J n P xh h J J n P dP K J J n P h h J J n P h h J J n P R h J J x n P ,S i J J n P PN J J J n P i W J J n P N <K J J n P P L J J x n P xO L J J n P (i hY J J n P 8i Li J J n P `i ti J J n P i i J J n P i i J J Z n 1 Z Z Z XW n 1 XW XW DW LV n 1 W W LV LV n 1 Y Y LV Z n 1 Y Y dZ Z n 1 Z Z Y X n 1 ,W ,W X X n 1 Y Y Z XW n 1 Y Y DW Z n 1 W W Z V n 1 Z Z V Z n 1 Z Z Z Z n 1 [ [ Z <Z x n 1 <Z <Z dZ W n 1 Z Z W X n 1 X X V Y n 1 W W Y Y n 1 dZ dZ Y DW n 1 Y Y DW Z n 1 \X \X Z Z n 1 W W Z ,[ n 1 Z Z ,[ [ n 1 [ [ W Y n 1 W W ,[ X n 1 W W W V n 1 X X ,W PZ n 1 HX HX X X n 1 X X V W n 1 Z Z Y Y n 1 Y Y Z \X n 1 X X W W n 1 Y Y W X n 1 [ [ ,W 8V n 1 X X W Z n 1 X X Z xZ n 1 Z Z (Z HX n 1 PZ PZ W X n 1 Y Y W Z n 1 Z Z Z Z n 1 Z Z Z pX n 1 DW DW pX X n 1 V V X Z n 1 W W Z Y n 1 X X Z [ n 1 PZ PZ W V n 1 Z Z ,W Y n 1 W W Z X n 1 X X 4X X n 1 Y Y V W n 1 xZ xZ Y Y n 1 Y Y LV XW n 1 W W DW Z n 1 X X Z Y n 1 Y Y Y W n 1 Z Z W XW n 1 xZ xZ DW Z n 1 4X 4X Z 8V n 1 X X W W n 1 W W Z Z n 1 ,W ,W Z (Z n 1 pX pX (Z ,W n 1 ,W ,W ,W X n 1 W W X pX n 1 (Z (Z pX X n 1 X X X Z n 1 Y Y Z pX n 1 Y Y pX (Z n 1 dZ dZ (Z V n 1 V V ,W \X n 1 V V W W n 1 X X W Y n 1 Z Z pX 4X n 1 Z Z 4X V n 1 V V V W n 1 X X W Y n 1 W W pX 8Y x n 1 `Y `Y pX \X n 1 Z Z W W n 1 X X V W n 1 X X Y W n 1 V V Z 8V n 1 Z Z W V n 1 X X 4X Z n 1 X X Y Y n 1 xZ xZ pX 8Y x n 1 $Y $Y pX X n 1 X X Z PZ n 1 [ [ X Y n 1 4X 4X Y V n 1 \X \X ,W Z n 1 8V 8V Z 4X n 1 Y Y 4X 4X n 1 LV LV 4X xZ n 1 XW XW (Z Z n 1 xZ xZ dZ W n 1 8V 8V Y [ n 1 X X W [ n 1 X X W W n 1 Y Y Z Z n 1 V V Z <Z x n 1 V V dZ X n 1 X X Z V n 1 W W 4X W n 1 W W W (Z n 1 (Z (Z (Z V n 1 V V V Z n 1 Z Z Z XW n 1 Z Z DW W n 1 ,W ,W W `Y x n 1 8Y 8Y Y ,W n 1 W W ,W 8Y x n 1 <Z <Z pX Y n 1 Y Y Y V x n 1 `Y `Y (Z V x n 1 8Y 8Y (Z Y n 1 Y Y ,[ W n 1 W W W W n 1 4X 4X W `Y x n 1 $Y $Y Y Y n 1 LV LV Y Z n 1 Z Z Z X n 1 Z Z 4X Z n 1 V V Z xZ n 1 xZ xZ (Z Z n 1 ,[ ,[ Z HX n 1 [ [ W X n 1 Z Z W X n 1 X X LV LY n 1 PZ PZ Z xZ n 1 Y Y (Z W n 1 W W W 8Y x n 1 V V pX [ n 1 Z Z W <Z x n 1 $Y $Y dZ V n 1 Z Z 4X Y n 1 Y Y ,[ LY n 1 X X Z W n 1 X X Y X n 1 X X X LV n 1 4X 4X LV X n 1 8V 8V LV V x n 1 V V (Z W n 1 ,W ,W W ,W n 1 Z Z ,W W n 1 LV LV W ,[ n 1 V V ,[ PZ n 1 PZ PZ X V n 1 V V V X n 1 W W LV X n 1 W W Z X n 1 X X W V n 1 Z Z V X n 1 Z Z LV Y n 1 DW DW Y V n 1 Y Y 4X W n 1 W W Y [ n 1 V V W W n 1 W W Y [ n 1 [ [ W W n 1 Y Y V xZ n 1 W W (Z Z n 1 XW XW dZ (Z n 1 DW DW (Z dZ n 1 (Z (Z dZ V n 1 V V V X n 1 \X \X X X n 1 W W V 8V n 1 8V 8V W [ n 1 LY LY W V x n 1 <Z <Z (Z 8V n 1 W W W LY n 1 [ [ Z X n 1 X X ,W pX n 1 dZ dZ pX DW n 1 pX pX DW Y n 1 X X ,[ ,[ n 1 ,[ ,[ ,[ X n 1 X X LV X n 1 W W 4X $Y x n 1 8Y 8Y DW 8Y x n 1 8Y 8Y pX $Y x n 1 V V DW Y n 1 pX pX Y LY n 1 HX HX Z ,[ n 1 Z Z ,[ W n 1 W W V DW n 1 (Z (Z DW X n 1 V V W Z n 1 V V Z W n 1 Y Y Y X n 1 HX HX ,W Y n 1 (Z (Z Y ,W n 1 X X ,W [ n 1 \X \X W Z n 1 LV LV Z 4X n 1 4X 4X 4X V n 1 V V 4X W n 1 W W W ,W n 1 W W ,W Y n 1 Y Y Z `Y x n 1 V V Y Z n 1 W W Y <Z x n 1 `Y `Y dZ Z n 1 W W Z V n 1 [ [ ,W dZ n 1 dZ dZ dZ Y n 1 Y Y pX X n 1 LY LY ,W HX n 1 LY LY W Z n 1 ,[ ,[ Z DW n 1 dZ dZ DW Y n 1 X X Z Z n 1 Y Y Y HX n 1 X X W $Y x n 1 <Z <Z DW X n 1 X X 4X $Y x n 1 `Y `Y DW Y n 1 XW XW pX W n 1 Z Z W W n 1 Z Z Y DW n 1 DW DW DW dZ n 1 DW DW dZ LY n 1 LY LY Z Z n 1 Z Z Z `Y x n 1 <Z <Z Y dZ n 1 pX pX dZ Z n 1 V V Y Y n 1 X X LV dZ n 1 Y Y dZ Z n 1 Z Z dZ W n 1 W W W V n 1 ,[ ,[ V LV n 1 LV LV LV Z n 1 X X Z W n 1 X X Z V n 1 Z Z V Z n 1 Z Z Z Z n 1 V V Z ,[ n 1 V V ,[ Z n 1 W W dZ (Z n 1 Y Y (Z X n 1 [ [ X X n 1 Y Y Z X n 1 PZ PZ ,W V x n 1 $Y $Y (Z V n 1 Z Z V X n 1 8V 8V 4X Y n 1 Z Z LV W n 1 Y Y V Y n 1 W W LV Y n 1 Z Z Y [ n 1 HX HX W X n 1 W W X LV n 1 Z Z LV Y n 1 V V LV Z n 1 V V Z $Y x n 1 $Y $Y DW W n 1 XW XW Y W n 1 Z Z Z X n 1 Y Y V <Z x n 1 8Y 8Y dZ \X n 1 \X \X W W n 1 X X V 4X n 1 W W 4X X n 1 Z Z X X n 1 Z Z X V n 1 ,[ ,[ V \X n 1 [ [ W pX n 1 pX pX pX Z n 1 X X Z `Y x n 1 `Y `Y Y HX n 1 HX HX W PZ n 1 LY LY X Y n 1 X X ,[ PZ n 1 X X X xK , / n M xK n xK xK , / n L xK , / n K xK , / n K xK , / n L xK , / n J xK , / n ,L xK n M xK , / n L xK , / n dM W n Z W n W W n Z W x n 8Y W n Y W n Y W n [ W n pX W n W W n ,[ W n HX X n 8V X n W X n X X x n $Y X n Y X n XW X n X X n X X n DW X n PZ X n Z tV , / n J tV x n ,W tV x n `V tV , / n K tV , / n dM tV x n Z tV , / n L tV , / n xK tV x n T[ tV x n W tV x n Z tV , / n L tV x n X tV , / n ,L tV , / n M tV , / n K tV , / n M tV x n $Y tV x n tV tV x n DW tV x n V tV x n XW tV , / n L 4X n V 4X n xZ 4X n (Z 4X n X 4X n X 4X n 4X 4X n ,W 4X n X 4X n V 4X x n V 4X n V L n K xK n xK DW n XW Y n W V n W W n 8V Y n Y M n L M n M L n L W n [ Z n Y xK n M Z n LY 4X n 4X W n W pX n Y tY n lW V n W pX n pX tY n tY LV n X Z n X (Z n (Z T[ n `V Z n Z K n L ,[ n Y W n W Y n @[ Y n Y X n X T[ n T[ dZ n dZ Z n Z dZ n Z Y n W V n V (Z n xZ K n K Z n Z DW n DW V n V Y n Y V n V Z n Z ,[ n ,[ 4X n X LV n LV W n W V n X W n HX ,W n X X n PZ ,W n ,W Z n Z L n [ L M n [ M M n [ M L n [ L L n [ L K n \ K K n \ K L n 8\ L ,W n V ,W x n V ,W n V ,W n X ,W n V ,W n xZ ,W n 4X ,W n (Z ,W n X ,W n X ,W n ,W $Y x n X $Y , / n xK $Y x n Z $Y , / n L $Y x n tV $Y , / n L $Y , / n M $Y x n `V $Y x n Z $Y x n XW $Y , / n L $Y , / n J $Y x n V $Y , / n M $Y x n W $Y , / n K $Y x n ,W $Y x n $Y $Y , / n dM $Y x n T[ $Y , / n ,L $Y , / n K $Y x n DW dM n dM O $Y x n $Y R X n X R J n J PN Y n Y S W n W S X n X $S J n J hN <Z x n <Z ,S X n X @S W n W HS $Y x n $Y \S X n X hS ,L x n ,L HO 8Y x n 8Y |S V n V S \X n \X S [ n [ S V x n V S ,L x n ,L xO Z n Z S Z n Z S V n V S W n W S \X n \X S dM n dM <P V x n V T W n W T tV x n tV 0T tV x n tV DT W n W PT Y n Y XT Z n Z `T 8Y x n 8Y hT V n V tT X n X T V x n V T X n X T \X n \X T Y n Y T Z n Z T `Y x n `Y T V n V U dM n dM O X n X U `Y x n `Y U ,L x n ,L O [ n [ (U 8Y x n 8Y 8U `Y x n `Y LU <Z x n <Z `U <Z x n <Z tU W n W U J n J N tV x n tV U X n X U Z n Z U Z n Z U [ n [ U V n V U X n X U $Y x n $Y V V n V V [ n 0 PZ J O [ x n 0 $Y J HO [ n 0 X J hN [ n 0 DW J 4P [ n 0 X J PN [ n 0 X J O [ n 0 W J O [ n 0 8V J `O [ n 0 Z J O [ n 0 8V J O [ n 0 XW J P [ n 0 X J <P [ n 0 X J N [ n 0 W J O [ n 0 X J dP [ n 0 Y J N [ n 0 DW J N [ x n 0 $Y J xO [ n 0 PZ J N [ n 0 XW J N [ n 0 XW J 0O [ n 0 DW J P [ n 0 PZ J P [ n 0 X J O [ n 0 X J P [ n 0 Y J LP [ n 0 W J N [ n 0 Z J O [ n 0 Z J N [ x n 0 $Y J O [ n 0 Y J lJ [ n 0 X J O [ n 0 8V J xP Y n LV Y n Y Y n Y Y n Z Y n Z Y x n `Y Y n X Y n W Y n LY Y n Z Y n X [ n 0 W J 0O [ x n 0 `Y J HO [ n 0 LV J N [ n 0 Z J N [ n 0 W J P [ n 0 X J N [ n 0 Z J dP [ n 0 Y J <P [ n 0 Z J O [ n 0 X J lJ [ n 0 LV J O [ n 0 Z J P [ n 0 X J `O [ n 0 Y J 4P [ n 0 Y J N [ n 0 Y J P [ n 0 W J N [ n 0 Z J PN [ n 0 Z J hN [ n 0 Z J O [ x n 0 `Y J O [ n 0 X J LP [ n 0 X J xP [ n 0 Z J N [ n 0 X J O [ n 0 LV J O [ n 0 LY J O [ x n 0 `Y J xO [ n 0 LY J N [ n 0 Z J O [ n 0 Y J O [ n 0 LY J P [ n 0 Y J O [ n 0 Z J O [ n 0 [ J PN [ n 0 Z J `O [ n 0 [ J hN [ n 0 ,[ J O [ n 0 W J O [ n 0 Y J LP [ n 0 HX J P [ n 0 Z J xP [ n 0 W J <P [ n 0 W J O [ n 0 pX J 4P [ n 0 W J O [ n 0 Y J P [ n 0 HX J O [ n 0 ,[ J N [ n 0 [ J N [ n 0 Y J N [ n 0 Z J O [ x n 0 8Y J HO [ n 0 Y J N [ n 0 W J dP [ n 0 Z J N [ x n 0 8Y J O [ x n 0 8Y J xO [ n 0 Y J 0O [ n 0 ,[ J O [ n 0 pX J P [ n 0 W J P [ n 0 HX J N [ n 0 Z J O [ n 0 pX J N [ n 0 Y J lJ K , / n L K , / n M K , / n xK K , / n dM K n Z K n K K , / n L K , / n ,L K , / n K K n L K n X K n J K , / n M Y , / n K Y , / n L Y n M Y , / n K Y , / n dM Y , / n J Y n Y Y n Y Y n X Y n ,[ Y n X Y n X Y x n ,L Y n LV Y n W Y n L Y n PZ Y , / n L Y n V Y , / n M Y , / n xK Y n W V , / n M V x n (Z V , / n L V x n xZ V x n V V , / n xK V , / n K V , / n L V , / n L V , / n dM V , / n ,L V , / n K V , / n J V , / n M 8V n DW 8V n Z 8V n PZ 8V n W 8V n X 8V n X 8V n 8V 8V x n $Y 8V n Y 8V n XW 8V n X W , / n J W , / n dM W n Z W n Y W , / n ,L W , / n L W , / n xK W n W W , / n L W , / n L W , / n M W , / n K W , / n K W , / n M Z n 0 Z Z LQ <Z x n 0 <Z <Z \Q <Z x n 0 <Z <Z lQ W n 0 W W |Q X n 0 X X Q X n 0 X X Q J n 0 J J O Y n 0 Y Y Q tV x n 0 tV tV Q [ n 0 [ [ Q X n 0 X X Q V x n 0 V V Q X n 0 X X Q 8Y x n 0 8Y 8Y Q $Y x n 0 $Y $Y Q W n 0 W W Q `Y x n 0 `Y `Y Q <Z x n 0 <Z <Z R \X n 0 \X \X \Q Y n 0 Y Y R ,L x n 0 ,L ,L `O J n 0 J J `O $Y x n 0 $Y $Y R V n 0 V V Q ,L x n 0 ,L ,L O `Y x n 0 `Y `Y R X n 0 X X R dM n 0 dM dM O X n 0 X X Q Z n 0 Z Z R tV x n 0 tV tV Q Z n 0 Z Z \Q V n 0 V V $R W n 0 W W Q X n 0 X X Q dM n 0 dM dM `O `Y x n 0 `Y `Y LQ W n 0 W W Q V n 0 V V $R dM n 0 dM dM xP W n 0 W W Q 8Y x n 0 8Y 8Y Q $Y x n 0 $Y $Y Q tV x n 0 tV tV Q Z n 0 Z Z R [ n 0 [ [ |Q V x n 0 V V ,R V n 0 V V ,R V n 0 V V Q [ n 0 [ [ Q J n 0 J J xP X n 0 X X R \X n 0 \X \X lQ V x n 0 V V $R Z n 0 Z Z Q ,L x n 0 ,L ,L xP V n 0 V V ,R Y n 0 Y Y LQ Z n 0 Z Z lQ 8Y x n 0 8Y 8Y |Q X n 0 X X Q W n 0 W W Q \X n 0 \X \X R dZ , / n M dZ , / n J dZ n dZ dZ , / n dM dZ n Z dZ , / n xK dZ , / n L dZ , / n K dZ , / n L dZ , / n ,L dZ x n <Z dZ , / n L dZ , / n K dZ , / n M J n ! Z Z J n ! W W dM n ! Y Y ,L x n ! `Y `Y J n ! J J ,L x n ! ,L ,L J n ! \X \X dM n ! Z Z ,L x n ! <Z <Z dM n ! X X dM n ! dM dM dM n ! X X J n ! X X ,L x n ! tV tV ,L x n ! $Y $Y PZ n Z PZ n DW PZ n X PZ n 8V PZ n W PZ n X PZ n X PZ x n $Y PZ n Y PZ n PZ PZ n XW n @ N M J n @ S d J x n @ U _ J n @ U 8f J n @ c Z J n @ e 4[ J n @ h h J x n @ R ^ J n @ hS e J n @ f f J n @ L` Y J x n @ ,S i J n @ N L J n @ 0O lL J n @ P J J n @ U Z J n @ (i hY J n @ `_ t_ J n @ Ph Z J n @ b Y J n @ S Y J x n @ 8U ` J n @ lg [ J n @ N L J n @ tb W J n @ tT V J n @ (h dX J n @ S tW J n @ T e J n @ f X J n @ f $f J n @ h X J n @ xh h J n @ T X J n @ HS _ J n @ P L J n @ a V J n @ hN J J n @ T _ J n @ Q 8_ J n @ ` X J x n @ LU TY J n @ `f pf J n @ c 8W J n @ e e J n @ Q Z J n @ i i J n @ Q ,V J n @ h h J n @ Q ^ J n @ g 4g J n @ b b J n @ g g J n @ lJ $K J n @ b b J n @ g h J n @ _ $_ J n @ ^ ^ J n @ c c J n @ R h J x n @ V Y J n @ d d J x n @ HO K J n @ \` H[ J x n @ T \b J n @ d d J n @ Xd Z J n @ O XL J n @ |a a J n @ de xe J n @ O lK J n @ g V J n @ e (X J n @ Q X J n @ S Lf J n @ i W J n @ _ _ J n @ f f J n @ <h lZ J n @ a @Y J n @ ^ ^ J n @ O XM J x n @ 0T hV J n @ V Hg J n @ p` W J n @ PN J J n @ b Z J n @ O <L J n @ (e <e J n @ ` Y J x n @ xO L J n @ d W J n @ 0d Dd J n @ LQ c J n @ ` ` J n @ ` ` J n @ T dh J n @ 8i Li J n @ O tM J n @ a DZ J n @ `O K J n @ ^ W J n @ S PX J n @ U xX J n @ b (b J n @ Q `W J n @ S b J x n @ |S ,Y J n @ <b Y J n @ Pe Z J n @ \g LW J n @ U a J n @ N <K J n @ a Z J n @ U V J n @ dP K J x n @ T |V J n @ e e J n @ T W J n @ c c J n @ 4c Hc J n @ Q L_ J n @ (U [ J n @ d Y J n @ a a J n @ ld W J n @ g Y J n @ d e J x n @ `U 0Z J n @ (` 8` J n @ ` ` J n @ N L J n @ f g J n @ g X J n @ Q X J n @ ,R d J n @ g |Y J n @ \c pc J n @ i i J n @ LP M J n @ c @V J n @ Lb V J n @ c XZ J n @ ha <X J n @ Da Ta J n @ S Z J n @ `i ti J x n @ U f J n @ 4a TV J n @ \Q _ J n @ b V J n @ P K J n @ lQ W J n @ T X J L , / n M L n X L , / n xK L , / n K L , / n dM L n J L , / n M L n Z L n L L , / n L L n K L , / n ,L L , / n L [ x 0 P X W [ x 0 P K W [ n 0 P X W [ x 0 Q K W [ x 0 P 8V W [ ` n 0 P 8V W W n X W , / n J W n X W n X W n ,[ W , / n K W n M W n W W , / n dM W x n ,L W n PZ W , / n K W , / n L W n L W n LV W n Y W n V W , / n L W n Y W , / n M W , / n xK W n W Z , / n L Z n dZ Z , / n M Z x n <Z Z , / n ,L Z , / n K Z , / n dM Z , / n K Z n Z Z , / n L Z , / n xK Z , / n L Z , / n J Z , / n M Z n V Z n W Z n Z Z n dZ Z n Z Z n W Z n Y Z x n <Z Z n W Z n [ Z n \X L n 1 Z Z L Y , / n K Y n pX Y n V Y n X Y , / n L Y , / n M Y n Y Y , / n ,L Y , / n xK Y x n 8Y Y , / n dM Y , / n K Y , / n M Y , / n J Y n 4X Y , / n L Y , / n L pX , / n K pX , / n M pX n V pX , / n ,L pX , / n L pX , / n L pX , / n M pX , / n xK pX n pX pX x n 8Y pX , / n K pX , / n dM pX , / n L pX n 4X pX n X pX , / n J pX n Y DW , / n ,L DW n `V DW , / n dM DW x n $Y DW , / n M DW , / n xK DW , / n K DW n V DW , / n L DW n Z DW n X DW , / n L DW n W DW , / n K DW n DW DW , / n M DW n ,W DW x n tV DW , / n J DW n T[ DW , / n L DW n XW DW n Z T[ , / n M T[ x n tV T[ , / n L T[ , / n dM T[ n ,W T[ , / n M T[ n DW T[ n T[ T[ n Z T[ n X T[ n XW T[ , / n L T[ n `V T[ x n $Y T[ , / n xK T[ n V T[ n Z T[ , / n L T[ , / n K T[ , / n J T[ , / n ,L T[ , / n K T[ n W Y n X Y , / n dM Y , / n J Y , / n L Y x n `Y Y , / n ,L Y , / n xK Y n tY Y n W Y n lW Y , / n K Y n V Y , / n L Y n X Y , / n K Y n X Y n W Y n 8V Y n Y Y n [ Y n W Y , / n M Y , / n L Y , / n M Y n HX (Z n " J J ,W n " J K X n " J $K X n " J <K V x n " J XK V n " J lK X n " J K ,W n " J K X n " J K X n " J K 4X n " J K V x n " J K V n " J L V n " J L V x n " J L V n " J <L 4X n " J XL V n " J J V n " J J xZ n " J lL ,W n " J L xZ n " J L X n " J L 4X n " J L V n " J L (Z n " J L V n " J J (Z n " J M X n " J M 4X n " J ,M V n " J 4M X n " J HM V n " J XM X n " J tM ,W n " J M X n " J M V x n " J M xZ n " J M (Z n " J M xZ n " J M V n " J N V n " J J X n " J N X n " J 8N [ x |^ [ x d^ [ x L^ [ x 0 0^ K \ [ x @ 0^ K \ \ [ x 0 ^ L \ [ x @ ^ L \ \ [ x 0 ^ L \ [ x @ ^ L \ \ [ x 0 ^ M \ [ x @ ^ M \ \ [ x 0 ] dM \ [ x @ ] dM \ \ [ x 0 ] ,L \ [ x @ ] ,L \ \ [ x 0 ] K \ [ x @ ] K \ \ [ x 0 ] L \ [ x @ ] L \ \ [ x 0 ] L \ [ x @ ] L \ \ [ x 0 x] M \ [ x @ x] M \ \ [ x 0 \] dM \ [ x @ \] dM \ \ [ x 0 @] ,L \ [ x @ @] ,L \ \ [ x 0 (] K \ [ x @ (] K \ \ [ x 0 ] L \ [ x @ ] L \ \ [ x 0 \ L \ [ x @ \ L \ \ [ x 0 \ M \ [ x @ \ M \ \ [ x 0 \ dM \ [ x @ \ dM \ \ [ x 0 \ ,L \ [ x @ \ ,L \ \ 8Y x n 8Y 8Y x n [ 8Y x n Z 8Y x n W 8Y x n Z 8Y x n pX 8Y x n ,[ 8Y x n W 8Y x n Y 8Y x n HX 8Y x n Y @[ n dM @[ n Y @[ n Y @[ n Z @[ , / n J @[ , / n M @[ , / n L @[ n Z @[ n Z @[ , / n L @[ n @[ @[ n K @[ n L @[ , / n xK @[ n LY @[ , / n M @[ , / n ,L @[ , / n K Y , / n M Y n Y Y , / n J Y n Z Y n W Y , / n xK Y , / n K Y , / n K Y , / n ,L Y , / n L Y , / n L Y , / n L Y , / n dM Y , / n M @^ x L^ @^ x |^ @^ x d^ [ ` n 0 P 8V X [ x 0 Q K X [ x 0 P 8V X [ x 0 P K X [ x 0 P X X [ n 0 P X X [ n 0 W J P [ n 0 `V J P [ n 0 V J dP [ n 0 X J O [ n 0 Y J N [ n 0 Y J O [ x n 0 tV J HO [ n 0 W J N [ x n 0 tV J xO [ n 0 lW J O [ n 0 X J O [ n 0 lW J xP [ n 0 T[ J N [ n 0 lW J `O [ n 0 @[ J N [ x n 0 tV J O [ n 0 V J P [ n 0 W J O [ n 0 @[ J LP [ n 0 T[ J P [ n 0 @[ J lJ [ n 0 W J N [ n 0 T[ J 4P [ n 0 W J PN [ n 0 tY J O [ n 0 W J hN [ n 0 X J <P [ n 0 `V J 0O [ n 0 tY J N [ n 0 Y J O [ n 0 V J O [ n 0 tY J O [ n 0 `V J N dM n Z dM , / n L dM , / n J dM n dM dM n L dM n Z dM , / n ,L dM n Y dM , / n L dM n Y dM n K dM , / n K dM , / n M dM , / n M dM n Z dM n @[ dM , / n xK dM n LY X , / n xK X , / n K X x n `Y X n V X , / n L X n W X n 8V X n tY X , / n L X , / n L X n Y X , / n M X n W X n lW X , / n ,L X n [ X , / n K X n X X , / n dM X n HX X , / n M X n W X , / n J X n X X n X Z , / n K Z , / n L Z n Z Z n W Z , / n L Z n Y Z , / n M Z , / n K Z , / n xK Z , / n dM Z , / n ,L Z , / n M Z , / n J Z , / n L Y n Y Y , / n L Y n W Y n X Y , / n J Y n Y Y x n ,L Y n L Y , / n xK Y , / n K Y , / n L Y n X Y n W Y n M Y n LV Y , / n dM Y n V Y n PZ Y , / n K Y n ,[ Y , / n M Y n X X , / n L X n W X n HX X , / n J X n X X n Y X , / n K X , / n M X x n `Y X , / n L X n X X n X X , / n L X n tY X , / n xK X n 8V X n lW X , / n ,L X n V X n W X , / n M X , / n K X , / n dM X n W X n [ W n X W , / n J W , / n ,L W , / n L W x n $Y W , / n xK W n V W , / n M W , / n L W , / n dM W n Z W n XW W , / n K W n `V W n W W n Z W , / n L W x n tV W n ,W W , / n M W n DW W n T[ W , / n K 8V x 2 R R K 8V x 2 R R dM 8V n 2 R R X 8V n 2 R R Y 8V n 2 R R 8V 8V n 2 R R X 8V x 2 tR R X 8V x 2 tR R Y 8V x 2 XR R 8V 8V x 2 XR R X 8V x " R K 8V x " R X 8V x " R 8V 8V x " tR X 8V x " XR 8V 8V x " <R K L n ! L L 4X n ! 4X 4X X n ! X X K n ! K K Y n ! Y Y W n ! W W LV n ! LV LV tY n ! tY tY W n ! W W 8V n ! 8V 8V Z n ! Z Z Z n ! Z Z lW n ! lW lW X n ! X X tY , / n ,L tY , / n L tY , / n J tY n HX tY n X tY x n `Y tY , / n M tY n tY tY n X tY n W tY , / n K tY , / n M tY , / n K tY , / n xK tY n X tY n W tY , / n dM tY n V tY , / n L tY n W tY n 8V tY n [ tY n Y tY n lW tY , / n L LV n V LV n Y LV x n ,L LV n M LV , / n L LV n X LV n W LV , / n M LV , / n L LV n ,[ LV n L LV n X LV n X LV , / n dM LV n W LV n LV LV , / n xK LV , / n K LV n PZ LV , / n J LV n Y LV , / n K W , / n K W , / n L W n [ W n tY W , / n ,L W n 8V W , / n J W x n `Y W n W W n W W , / n K W , / n M W , / n dM W , / n L W n HX W n X W n Y W n X W n W W n lW W , / n L W , / n M W n X W n V W , / n xK Z , / n M Z n ,W Z n XW Z , / n L Z , / n K Z , / n xK Z n T[ Z n Z Z n `V Z , / n L Z , / n L Z , / n M Z , / n dM Z , / n J Z n W Z n V Z , / n K Z n Z Z , / n ,L Z x n $Y Z n DW Z n X Z x n tV X n @[ X x n tV X n `V X n T[ X n tY X n lW X n W X n Y X n V X n W X n X (Z x n V (Z , / n L (Z , / n ,L (Z , / n M (Z , / n dM (Z , / n xK (Z , / n L (Z , / n M (Z , / n K (Z n xZ (Z , / n K (Z , / n J (Z , / n L (Z n (Z xK n ! M M V n ! V V (Z n ! xZ xZ Z n ! LY LY Z n ! Y Y W n ! W W Y n ! Y Y W n ! [ [ X n ! X X K n ! K K V n ! V V Z n ! Z Z dZ n ! Z Z V n ! W W W n ! 8V 8V Y n ! Y Y L n ! K K tY n ! lW lW LV n ! X X V n ! X X W n ! W W tY n ! tY tY Y n ! Y Y T[ n ! T[ T[ K n ! L L ,W n ! ,W ,W pX n ! pX pX Y n ! @[ @[ M n ! M M 4X n ! 4X 4X ,[ n ! ,[ ,[ ,[ n ! Y Y Z n ! Z Z DW n ! DW DW W n ! W W X n ! PZ PZ 4X n ! X X V n ! V V LV n ! LV LV M n ! L L Z n ! Z Z Y n ! W W W n ! HX HX DW n ! XW XW Z n ! Z Z Z n ! X X ,W n ! X X pX n ! Y Y L n ! L L Z n ! Z Z V n ! W W (Z n ! (Z (Z T[ n ! `V `V xK n ! xK xK Y n ! W W dZ n ! dZ dZ lW n X lW , / n ,L lW , / n J lW , / n L lW x n `Y lW n X lW n W lW n W lW , / n xK lW n X lW , / n M lW , / n dM lW n tY lW , / n K lW n V lW n Y lW n HX lW n W lW n lW lW n [ lW , / n L lW , / n K lW , / n M lW , / n L lW n 8V X n W X x n ,L X n X X n X X , / n K X n M X , / n J X , / n dM X , / n L X n PZ X n V X n L X , / n L X , / n K X n X X n ,[ X n Y X n W X n LV X n Y X , / n M X , / n xK Z , / n L Z n T[ Z , / n J Z x n tV Z , / n M Z n `V Z n XW Z , / n K Z n X Z , / n L Z , / n L Z n V Z n Z Z , / n xK Z n W Z n DW Z n Z Z , / n M Z x n $Y Z , / n dM Z , / n K Z n ,W Z , / n ,L Z n 1 Z Z Z L n 1 L L L T[ n 1 T[ T[ T[ X n 1 X X X PZ n 1 PZ PZ PZ HX n 1 HX HX HX XW n 1 XW XW XW M n 1 M M M dZ n 1 dZ dZ dZ 4X n 1 4X 4X 4X M n 1 M M M `V n 1 `V `V `V W n 1 W W W X n 1 X X X Z n 1 Z Z Z `Y x n 1 `Y `Y `Y ,L x n 1 ,L ,L ,L tY n 1 tY tY tY Y n 1 Y Y Y $Y x n 1 $Y $Y $Y DW n 1 DW DW DW tV x n 1 tV tV tV <Z x n 1 <Z <Z <Z V n 1 V V V pX n 1 pX pX pX W n 1 W W W W n 1 W W W Y n 1 Y Y Y X n 1 X X X lW n 1 lW lW lW W n 1 W W W Z n 1 Z Z Z [ n 1 [ [ [ xK n 1 xK xK xK Z n 1 Z Z Z W n 1 W W W X n 1 X X X dM n 1 dM dM dM @[ n 1 @[ @[ @[ Y n 1 Y Y Y W n 1 W W W ,W n 1 ,W ,W ,W \X n 1 \X \X \X 8Y x n 1 8Y 8Y 8Y X n 1 X X X W n 1 W W W Y n 1 Y Y Y X n 1 X X X K n 1 K K K Z n 1 Z Z Z (Z n 1 (Z (Z (Z L n 1 L L L V n 1 V V V V x n 1 V V V ,[ n 1 ,[ ,[ ,[ 8V n 1 8V 8V 8V Z n 1 Z Z Z X n 1 X X X [ n 1 [ [ [ X n 1 X X X Y n 1 Y Y Y Y n 1 Y Y Y LV n 1 LV LV LV X n 1 X X X V n 1 V V V LY n 1 LY LY LY Z n 1 Z Z Z Z n 1 Z Z Z L n 1 L L L V n 1 V V V Y n 1 Y Y Y J n 1 J J J xZ n 1 xZ xZ xZ K n 1 K K K W n 1 W W W V n 1 V V V W n 1 W W W W n " J L Y n " J 8N Y n " J M Z n " J XL HX n " J L W n " J L Z n " J K 8Y x n " J XK Y n " J lL ,[ n " J L W n " J <L HX n " J M Y n " J $K W n " J K Y n " J HM pX n " J M Y n " J L W n " J K [ n " J J Y n " J M pX n " J M Z n " J K pX n " J L Z n " J tM Z n " J ,M ,[ n " J L Z n " J L W n " J M 8Y x n " J M [ n " J J Z n " J K [ n " J J ,[ n " J 4M 8Y x n " J L W n " J N Z n " J K 8Y x n " J K Y n " J M HX n " J <K W n " J XM HX n " J N ,[ n " J lK [ n " J J pX n " J J V , / n L V n W V , / n M V n W V n X V , / n M V n Y V n X V , / n dM V , / n K V n 8V V , / n J V , / n ,L V n W V , / n L V n V V n tY V n HX V , / n xK V , / n K V , / n L V n [ V n X V x n `Y V n lW Z n " J L Y n " J 8N Z n " J 4M X n " J N DW n " J L W n " J XL Z n " J lK 8V n " J tM X n " J K XW n " J M DW n " J M Z n " J L PZ n " J M DW n " J J X n " J J PZ n " J <K 8V n " J K W n " J ,M X n " J J X n " J L 8V n " J K X n " J <L Y n " J M X n " J J X n " J XM PZ n " J L DW n " J M Y n " J HM XW n " J M 8V n " J K X n " J M X n " J K $Y x n " J M $Y x n " J XK XW n " J L PZ n " J N W n " J K $Y x n " J L $Y x n " J K XW n " J lL X n " J J X n " J L W n " J L Y n " J $K Y n " J XL W n " J M W n " J L dZ n " J J Y n " J K Z n " J L W n " J K Z n " J M V n " J lK Z n " J L Z n " J XM W n " J M \X n " J J <Z x n " J XK dZ n " J M Z n " J lL W n " J HM [ n " J N V n " J L W n " J $K W n " J K \X n " J J W n " J K \X n " J J Z n " J M V n " J 4M \X n " J J W n " J tM W n " J K Z n " J N <Z x n " J K Z n " J <L W n " J 8N Y n " J ,M V n " J L <Z x n " J L [ n " J L dZ n " J L W n " J K Y n " J L [ n " J M dZ n " J M [ n " J <K <Z x n " J M W n ! W W X n ! X X X n ! X X $Y n ! $Y $Y X n ! X X tV x n ! tV tV 8Y x n 8Y 8Y x n X 8Y , / n K 8Y , / n L 8Y x n V 8Y , / n J 8Y x n Y 8Y x n 4X 8Y , / n M 8Y , / n dM 8Y , / n L 8Y , / n xK 8Y , / n M 8Y , / n K 8Y x n pX 8Y , / n L 8Y , / n ,L `Y , / n J `Y x n V `Y x n W `Y x n lW `Y , / n xK `Y x n W `Y x n Y `Y x n [ `Y , / n L `Y x n X `Y , / n dM `Y x n X `Y x n `Y `Y , / n L `Y x n W `Y , / n ,L `Y , / n L `Y x n 8V `Y x n HX `Y x n tY `Y x n X `Y , / n M `Y , / n M `Y , / n K `Y , / n K Y n ! Y Y `Y x n ! `Y `Y W n ! W J V x n ! V V Y n ! Y M X n ! X X X n ! X X W n ! W dM W n ! W W 8Y x n ! 8Y ,L Z n ! Z J W n ! W L `V n ! `V `V xZ n ! xZ L ,L x n ! ,L ,L X n ! X X (Z n ! (Z (Z LY n ! LY LY 8V n ! 8V 8V ,W n ! ,W ,W HX n ! HX HX M n ! M M X n ! X X M n ! M M W n ! W W V x n ! V ,L @[ n ! @[ @[ W n ! W M Z n ! Z Z Z n ! Z Z PZ n ! PZ L LY n ! LY L W n ! W W xZ n ! xZ xZ (Z n ! (Z M X n ! X K `Y x n ! `Y ,L X n ! X J XW n ! XW XW X n ! X M @[ n ! @[ M `V n ! `V L X n ! X X Z n ! Z K pX n ! pX pX [ n ! [ [ dZ n ! dZ dZ X n ! X dM 4X n ! 4X 4X V n ! V V T[ n ! T[ T[ Y n ! Y dM W n ! W K X n ! X X W n ! W W ,[ n ! ,[ xK Y n ! Y M [ n ! [ J W n ! W K V n ! V V DW n ! DW DW W n ! W W W n ! W W V n ! V V $Y x n ! $Y ,L pX n ! pX M Z n ! Z K Y n ! Y Y Z n ! Z L Z n ! Z xK \X n ! \X \X DW n ! DW M Z n ! Z Z V n ! V J X n ! X L W n ! W W V n ! V xK V n ! V K lW n ! lW lW L n ! L L Y n ! Y Y XW n ! XW L K n ! K K Y n ! Y M Z n ! Z dM Y n ! Y Y ,W n ! ,W K tV x n ! tV tV <Z x n ! <Z <Z HX n ! HX L X n ! X K L n ! L L tY n ! tY tY W n ! W W ,[ n ! ,[ ,[ dM n ! dM dM Z n ! Z Z Y n ! Y Y PZ n ! PZ PZ tY n ! tY L X n ! X M X n ! X X Y n ! Y Y Z n ! Z Z Z n ! Z Z Y n ! Y L J n ! J J Z n ! Z xK $Y x n ! $Y $Y LV n ! LV L W n ! W K X n ! X X V n ! V xK [ n ! [ [ tV x n ! tV ,L V n ! V V Y n ! Y L \X n ! \X J <Z x n ! <Z ,L Z n ! Z Z X n ! X X X n ! X dM K n ! K K V n ! V V dZ n ! dZ M 8V n ! 8V K 8Y x n ! 8Y 8Y 4X n ! 4X L W n ! W W X n ! X K W n ! W L L n ! L L Z n ! Z L Y n ! Y Y V n ! V dM Y n ! Y xK LV n ! LV LV W n ! W L lW n ! lW K xK n ! xK xK Z n ! Z Z [ n ! [ L T[ n ! T[ M ,L x n W ,L , / n xK ,L x n PZ ,L x n X ,L x n X ,L , / n K ,L x n LV ,L x n W ,L , / n M ,L x n L ,L x n ,L ,L , / n dM ,L x n ,[ ,L , / n J ,L , / n K ,L x n X ,L x n Y ,L , / n L ,L x n M ,L , / n L ,L x n Y ,L x n V W n Z X n W \X n W [ n W X n tY J n K Z n Z dM n L Z n Y $Y x n DW `Y x n Y Y n LV V n ,W tV x n T[ ,L x n M 8Y x n pX <Z x n dZ W n V X n X V n 4X V x n (Z <Z x n 1 <Z <Z <Z tV x n 1 tV tV tV \X n 1 \X \X J V n 1 V V V ,L x n 1 ,L ,L ,L <Z x n 1 <Z <Z ,L X n 1 X X X Y n 1 Y Y dM W n 1 W W W Z n 1 Z Z J `Y x n 1 `Y `Y `Y Z n 1 Z Z Z [ n 1 [ [ [ W n 1 W W W Z n 1 Z Z dM [ n 1 [ [ J tV x n 1 tV tV ,L dM n 1 dM dM dM V x n 1 V V V $Y x n 1 $Y $Y $Y X n 1 X X dM W n 1 W W J X n 1 X X dM 8Y x n 1 8Y 8Y ,L X n 1 X X J \X n 1 \X \X \X 8Y x n 1 8Y 8Y 8Y W n 1 W W dM X n 1 X X X V n 1 V V J `Y x n 1 `Y `Y ,L V n 1 V V dM $Y x n 1 $Y $Y ,L V x n 1 V V ,L Z n 1 Z Z Z V n 1 V V V X n 1 X X X J n 1 J J J Y n 1 Y Y Y X n tY X , / n xK X n 8V X n lW X , / n ,L X n V X n W X , / n L X , / n M X , / n K X , / n dM X n W X n [ X , / n L X n W X n HX X , / n J X n X X n Y X , / n K X , / n M X x n `Y X n X X n X X , / n L L n K L n Y L , / n L L n Z L n @[ L , / n xK L n Y L n Z L , / n K L n dM L n LY L , / n L L , / n M L , / n M L n L L , / n J L , / n ,L L n Z X x X W x W V x V W x W lW x lW L x L (Z x (Z X x X 8V x 8V pX x pX LV x LV K x K HX x HX M x M ,W x ,W @[ x @[ W x W W x W L x L V x V LY x LY DW x DW ,[ x ,[ `V x `V PZ x PZ 4X x 4X Y x Y [ x [ V x V X x X Z x Z X x X W x W L x L xZ x xZ K x K Z x Z xK x xK XW x XW Z x Z Y x Y tY x tY X x X Y x Y dZ x dZ Y x Y Y x Y Y x Y W x W Z x Z M x M Z x Z T[ x T[ W x W X x X Z x Z L n 0 8\ L L L n 0 [ L L K n 0 \ K K K n 0 \ K K K , n 8N [ n $ K @Q <Z x n 1 <Z <Z <Z X n 1 J J X tV x n 1 tV tV tV V n 1 V V V Z n 1 Z Z Z 8Y x n 1 ,L ,L 8Y X n 1 X X X V n 1 J J V ,L x n 1 ,L ,L ,L Z n 1 J J Z `Y x n 1 ,L ,L `Y \X n 1 J J \X `Y x n 1 `Y `Y `Y 8Y x n 1 8Y 8Y 8Y [ n 1 [ [ [ W n 1 W W W dM n 1 dM dM dM V x n 1 V V V W n 1 W W W V x n 1 ,L ,L V W n 1 J J W \X n 1 \X \X \X [ n 1 J J [ X n 1 X X X $Y x n 1 $Y $Y $Y <Z x n 1 ,L ,L <Z tV x n 1 ,L ,L tV Z n 1 Z Z Z V n 1 V V V X n 1 X X X J n 1 J J J $Y x n 1 ,L ,L $Y Y n 1 Y Y Y J x tR J x P J x P J x XR M n Y M n L M n M M n W M , / n J M n X M , / n M M n ,[ M , / n K M x n ,L M n X M n X M , / n K M , / n xK M n V M , / n dM M n Y M , / n L M n W M n LV M n PZ M , / n L L , / n J L n W L , / n L L n LV L n Y L , / n L L , / n K L n PZ L x n ,L L n V L n X L n ,[ L n W L n X L n L L n X L , / n xK L n Y L , / n K L n M L , / n dM L , / n M M , / n dM M , / n ,L M , / n M M , / n K M n xK M , / n J M , / n L M , / n L M , / n K M , / n L M n M W n ! J W [ n ! [ [ `Y x n ! `Y `Y V x n ! V V W n ! W W <Z x n ! ,L <Z Z n ! Z Z X n ! X X `Y x n ! ,L `Y Y n ! Y Y \X n ! J \X $Y x n ! ,L $Y tV x n ! tV tV <Z x n ! <Z <Z V n ! V V Z n ! dM Z X n ! X X X n ! X X W n ! W W dM n ! dM dM $Y x n ! $Y $Y Y n ! dM Y V n ! V V [ n ! J [ tV x n ! ,L tV X n ! J X V n ! dM V V x n ! ,L V V n ! J V Z n ! J Z X n ! dM X X n ! dM X J n ! J J Z n ! Z Z \X n ! \X \X 8Y x n ! ,L 8Y ,L x n ! ,L ,L W n ! dM W 8Y x n ! 8Y 8Y X n P 8V n R X x XR X n R 8V n P X x P ,[ n W ,[ n Y ,[ n M ,[ n PZ ,[ n X ,[ , / n M ,[ , / n J ,[ n Y ,[ , / n xK ,[ , / n dM ,[ x n ,L ,[ n X ,[ , / n L ,[ , / n K ,[ , / n K ,[ n LV ,[ n L ,[ n ,[ ,[ n V ,[ , / n L ,[ n W ,[ n X dM n ! X X dM n ! X X dM n ! Y Y dM n ! Z Z dM n ! dM dM L x ^ K x ] K x (] dM x \ L x ] K x 0^ L x ] L x ] L x ^ ,L x @] ,L x \ M x ^ M x \ dM x ] M x x] L x \ dM x \] ,L x ] W , / n K W , / n dM W , / n L W n W W , / n J W , / n K W , / n M W , / n L W , / n L W n V W , / n ,L W , / n M W , / n xK Y n Z Y n L Y , / n M Y , / n K Y , / n M Y , / n L Y , / n xK Y , / n J Y n K Y , / n L Y , / n ,L Y n Z Y n LY Y n dM Y n Z Y n Y Y n @[ Y n Y X n L X , / n L X , / n dM X n X X n J X , / n M X , / n M X , / n ,L X , / n xK X , / n K X n K X n Z X , / n L K n \ L n 8\ L n [ K n \ X n X Z n Z Y n Y X n X dM n dM K K J K 0 K J J K @ K J J J L L J L 0 L J J L @ L J J J L L J L 0 L J J L @ L J J J M M J M 0 M J J M @ M J J J dM dM J dM 0 dM J J dM @ dM J J J J J J J 0 J J J J @ J J J J ,L ,L J ,L 0 ,L J J ,L @ ,L J J J [ n 0 V J hN [ n 0 4X J N [ n 0 X J N [ n 0 X J N [ n 0 (Z J N [ n 0 xZ J N [ n 0 V J N [ n 0 V J O [ n 0 V J O [ n 0 V J PN [ n 0 4X J O [ n 0 xZ J 0O [ x n 0 V J HO [ n 0 X J `O [ x n 0 V J xO [ x n 0 V J O [ n 0 V J O [ n 0 V J O [ n 0 4X J O [ n 0 X J O [ n 0 X J O [ n 0 ,W J O [ n 0 V J N [ n 0 xZ J P [ n 0 (Z J P [ n 0 X J lJ [ n 0 ,W J P [ n 0 (Z J 4P [ n 0 V J <P [ n 0 X J LP [ n 0 ,W J dP [ n 0 X J xP [ n 0 X J P @^ x |^ \ @^ x 0 |^ \ \ @^ x d^ \ @^ x 0 d^ \ \ @^ x L^ \ @^ x 0 L^ \ \ 4X n V 4X , / n L 4X n pX 4X , / n K 4X , / n xK 4X n 4X 4X , / n dM 4X n X 4X , / n L 4X , / n ,L 4X , / n L 4X x n 8Y 4X , / n K 4X , / n J 4X , / n M 4X n Y 4X , / n M @^ x 0 ] O L @^ x 0 0^ xP K @^ x 0 (] xP K @^ x 0 \ <P dM @^ x 0 ^ P L @^ x 0 ] P L @^ x 0 ] <P dM @^ x 0 \ O ,L @^ x 0 ] xP K @^ x 0 @] O ,L @^ x 0 \ 4P M @^ x 0 ] O L @^ x 0 ^ O L @^ x 0 \] <P dM @^ x 0 ] O ,L @^ x 0 ^ 4P M @^ x 0 \ P L @^ x 0 x] 4P M xZ x n V xZ , / n K xZ , / n dM xZ , / n J xZ , / n M xZ , / n L xZ , / n L xZ , / n L xZ , / n K xZ , / n ,L xZ , / n M xZ n (Z xZ , / n xK xZ n xZ L n ! K L Z n ! W Y W n ! [ W X n ! X ,W Y n ! W W lW n ! W V Y n ! LV LV K n ! L K K n ! xK xK LV n ! Z Z LY n ! X Z Z n ! HX W XW n ! 8V W ,W n ! V V L n ! M xK L n ! K K (Z n ! 4X 4X Z n ! Z Z HX n ! Y ,[ Z n ! W W DW n ! W W PZ n ! Y Z dZ n ! Y Y X n ! Z Z X n ! X V W n ! V V Y n ! Z Z W n ! X X 4X n ! ,W ,W T[ n ! tY tY V n ! Y Y X n ! LY Z W n ! ,[ ,[ 8V n ! PZ X [ n ! W V M n ! L L W n ! X LV xZ n ! X 4X tY n ! V V `V n ! lW tY pX n ! Z Z W n ! @[ Y K n Z K n Z K n X K n Z K x n $Y K n Z K n M K n Y K n [ K n W K n V K n ,[ K n tY K n Z K n V K n X K n W K n V K n DW K n pX K n X K n Y K n dZ K n HX K x n tV K n Z K n W K x n 8Y K n X K n V K x n V K n Y K n K K n dM K n L K n J K n W K n M K n V K n \X K n Y K n Y K n lW K n XW K n PZ K n Z K n Y K n [ K n `V K n 8V K n W K n W K n LV K n L K n Y K n X K x n <Z K n T[ K n W K x n `Y K n LY K n X K n @[ K n xZ K x n ,L K n 4X K n Z K n (Z K n X K n X K n xK K n ,W K n W K n X K n K K n L K n W ,L x @] ,L L x ] L ,L x \ ,L dM x ] dM ,L x ] ,L K x 0^ K dM x \] dM L x ^ L M x x] M L x \ L dM x \ dM M x \ M L x ] L L x ] L K x ] K K x (] K M x ^ M L x ^ L Y n " J L X n " J K Y n " J L Z n " J L Y n " J XM LV n " J L Z n " J K Y n " J <L `Y x n " J M Y n " J M X n " J HM LV n " J K W n " J lL X n " J K Z n " J J Z n " J J `Y x n " J L Z n " J L Z n " J M LY n " J M W n " J M LV n " J ,M W n " J M Y n " J M Z n " J J X n " J $K LY n " J <K Z n " J lK `Y x n " J XK Z n " J K W n " J L X n " J tM LY n " J L X n " J M X n " J K LV n " J XL Z n " J 4M Z n " J L Y n " J J Z n " J J Y n " J N LY n " J N `Y x n " J K X n " J 8N n X n LV n X n ,[ , / n K n W n Y , / n L n W x n ,L , / n K n L , / n J n X n Y , / n L n M , / n xK , / n dM , / n M n V n PZ J n L lJ n J , / n xK J n Y J x n ,L J n X J n V J , / n L J n LV J n ,[ J , / n L J n W J , / n M J , / n K J n L J , / n K J n M J , / n dM J n X J n Y J , / n J J n W J n PZ J n X L n J , / n xK J n X J , / n K J x n ,L J n X J n V J , / n L J n M J , / n L J n W J n ,[ J , / n M J n L J , / n K J n LV J n X J , / n dM J n Y J , / n J J n W J n PZ J n Y J n Y J n LV J n W J n W J , / n M J n Y J n ,[ J x n ,L J , / n K J , / n J J n V J , / n L J , / n dM J , / n K J n X J n PZ J n L J , / n L J n M J n X J n X J , / n xK i g++ (Ubuntu 4.9.3-13ubuntu2) 4.9.3 allocator=drm_dumb cl=1 cycle_counter=1 drm_allocator=1 floatabi=hard gpu=t86x hwver=r2p0 kernel_modules=0 libs_install=bin opencl_platform_config=config_t6xx os=linux profile=tx011-release progs_install=bin simd=1 symbols=0 toolchain_prefix_target=/home/cz/workspace/mali_so_for_midgard_for_linux/driver/product/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf- ump=0 wayland_server=1 winsys=wayland,gbm winsys_dma_buf=1 6d22f2bd43cad3c2f8c156f039addb30fd6cf857 , 0 H X p | ( $ < L d t + 7 . t 0& & $ 0 < H & . 0 ' D # \ # , 8 D P " . t H " + l . ( d & D& & & & & & & ' ' ' ' D ' ' ' ' T ' ' ' $ ' ' ' ' ' ' ( ' ' $ 8 ' 4 @ ' H ' @ ' X ' ` ' X ' p ' x ' t ' ' \ ' ' ' ' ' ' ; + / / + X / ` / + / / + / / + P ' L / + Z / + 0 / 8 / + T / \ / + / / + l & / + X;% / + / / + + . $ . ( . , . 0 . 4 . 8 . < . @ . $S' H . T . tk T4' X . ` . d . 5' t . . . . > . . . . . . . . . . \A C . . . . . . . l & . ! . " . # . $ . % ( . & 4 . ' @ . ( T . ) h . * t . + x & , . - . - ,& . . . D . / T . / 8 0 t 1 & 2 . 3 . 4 . 5 . 6 . 7 P 8 . 9 . : . ; . < . = . > . ? . @ , . [ @ . \ L . \ \ . ] t . ^ . ^ . _ . _ . ` . { . { . | . } . } H ~ / 8 / D / d / p / / / / / / / / / , / 8 / T / ` / | / / / / / / / / / / 4 / @ / X / d / / / + / H / P / T / \ /
GCC: (Linaro GCC 4.9-2017.01) 4.9.4
.ARM.attributes .ARM.exidx .ARM.extab .bss .comment .data .data.rel.ro .dynamic .dynstr .dynsym .eh_frame .fini .fini_array .gnu.version .gnu.version_d .gnu.version_r .got .hash .init .init_array .jcr .note.gnu.build-id .rel.dyn .rel.plt .rodata .shstrtab .tbss .text
libmali.so.1 libpthread.so.0 libdl.so.2 librt.so.1 libdrm.so.2 libwayland-server.so.0 libm.so.6 libwayland-client.so.0 libstdc++.so.6 libgcc_s.so.1 libc.so.6 ld-linux-armhf.so.3 ConvertUTF16toUTF32 ConvertUTF16toUTF8 ConvertUTF32toUTF16 ConvertUTF32toUTF8 ConvertUTF8toUTF16 ConvertUTF8toUTF32 ConvertUTF8toUTF32Partial LIBMALI_1.0 PrintAfter PrintAfterAll PrintBefore PrintBeforeAll PrintFuncsList _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable _Jv_RegisterClasses _ZNKSs13find_first_ofEPKcjj _ZNKSs16find_last_not_ofEcj _ZNKSs17find_first_not_ofEPKcjj _ZNKSs17find_first_not_ofEcj _ZNKSs4findEPKcj _ZNKSs4findEPKcjj _ZNKSs4findEcj _ZNKSs5rfindEcj _ZNKSs6substrEjj _ZNKSs7compareEPKc _ZNKSs7compareERKSs _ZNKSs7compareEjjPKc _ZNKSs7compareEjjRKSs _ZNKSt14error_category10equivalentERKSt10error_codei _ZNKSt14error_category10equivalentEiRKSt15error_condition _ZNKSt14error_category23default_error_conditionEi _ZNKSt8__detail20_Prime_rehash_policy11_M_next_bktEj _ZNKSt8__detail20_Prime_rehash_policy14_M_need_rehashEjjj _ZNSdD2Ev _ZNSi10_M_extractIjEERSiRT_ _ZNSi3getEv _ZNSi4peekEv _ZNSirsERi _ZNSo5writeEPKci _ZNSo9_M_insertIbEERSoT_ _ZNSo9_M_insertIdEERSoT_ _ZNSo9_M_insertImEERSoT_ _ZNSo9_M_insertIxEERSoT_ _ZNSo9_M_insertIyEERSoT_ _ZNSolsEi _ZNSolsEs _ZNSs12_M_leak_hardEv _ZNSs14_M_replace_auxEjjjc _ZNSs3endEv _ZNSs4_Rep10_M_destroyERKSaIcE _ZNSs4_Rep20_S_empty_rep_storageE _ZNSs4_Rep9_S_createEjjRKSaIcE _ZNSs4swapERSs _ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2_ _ZNSs5eraseEjj _ZNSs6appendEPKc _ZNSs6appendEPKcj _ZNSs6appendERKSs _ZNSs6appendEjc _ZNSs6assignEPKc _ZNSs6assignEPKcj _ZNSs6assignERKSs _ZNSs6assignERKSsjj _ZNSs6insertEjPKc _ZNSs6insertEjPKcj _ZNSs6resizeEjc _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKc _ZNSs7replaceEjjPKc _ZNSs7replaceEjjPKcj _ZNSs7reserveEj _ZNSs9_M_mutateEjjj _ZNSs9push_backEc _ZNSsC1EPKcRKSaIcE _ZNSsC1EPKcjRKSaIcE _ZNSsC1ERKSs _ZNSsC1ERKSsjj _ZNSsC1EjcRKSaIcE _ZNSt12__basic_fileIcED1Ev _ZNSt13basic_filebufIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode _ZNSt13basic_filebufIcSt11char_traitsIcEE5closeEv _ZNSt13basic_filebufIcSt11char_traitsIcEEC1Ev _ZNSt14error_categoryD2Ev _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7_M_syncEPcjj _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev _ZNSt6localeC1Ev _ZNSt6localeD1Ev _ZNSt8__detail15_List_node_base11_M_transferEPS0_S1_ _ZNSt8__detail15_List_node_base4swapERS0_S1_ _ZNSt8__detail15_List_node_base7_M_hookEPS0_ _ZNSt8__detail15_List_node_base9_M_unhookEv _ZNSt8ios_baseC2Ev _ZNSt8ios_baseD2Ev _ZNSt9bad_allocD1Ev _ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_E _ZNSt9basic_iosIcSt11char_traitsIcEE5clearESt12_Ios_Iostate _ZSt11_Hash_bytesPKvjj _ZSt15system_categoryv _ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_i _ZSt16generic_categoryv _ZSt17__throw_bad_allocv _ZSt18_Rb_tree_decrementPKSt18_Rb_tree_node_base _ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base _ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base _ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base _ZSt19__throw_logic_errorPKc _ZSt20__throw_length_errorPKc _ZSt20__throw_out_of_rangePKc _ZSt24__throw_out_of_range_fmtPKcz _ZSt25__throw_bad_function_callv _ZSt28_Rb_tree_rebalance_for_erasePSt18_Rb_tree_node_baseRS_ _ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_ _ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_ES4_ _ZSt7nothrow _ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc _ZStrsIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E _ZTTSt14basic_ifstreamIcSt11char_traitsIcEE _ZTTSt18basic_stringstreamIcSt11char_traitsIcESaIcEE _ZTVN10__cxxabiv117__class_type_infoE _ZTVN10__cxxabiv120__si_class_type_infoE _ZTVSt13basic_filebufIcSt11char_traitsIcEE _ZTVSt14basic_ifstreamIcSt11char_traitsIcEE _ZTVSt15basic_streambufIcSt11char_traitsIcEE _ZTVSt15basic_stringbufIcSt11char_traitsIcESaIcEE _ZTVSt18basic_stringstreamIcSt11char_traitsIcESaIcEE _ZTVSt9bad_alloc _ZTVSt9basic_iosIcSt11char_traitsIcEE _ZdaPv _ZdlPv _ZdlPvRKSt9nothrow_t _Znaj _Znwj _ZnwjRKSt9nothrow_t __aeabi_atexit __aeabi_unwind_cpp_pr0 __aeabi_unwind_cpp_pr1 __assert_fail __bss_end__ __bss_start __bss_start__ __ctype_b_loc __ctype_tolower_loc __ctype_toupper_loc __cxa_atexit __cxa_begin_catch __cxa_end_catch __cxa_end_cleanup __cxa_finalize __cxa_guard_acquire __cxa_guard_release __cxa_pure_virtual __cxa_rethrow __end__ __environ __errno_location __fxstat __gmon_start__ __gxx_personality_v0 __isnanf __lxstat __progname __pthread_key_create __register_atfork __strdup __tls_get_addr __xstat _edata _end _exit _fini abort accept access acos alarm asctime asin atan atan2 bind calloc ceil ceilf chdir clBuildProgram clCompileProgram clCreateBuffer clCreateCommandQueue clCreateContext clCreateContextFromType clCreateFromEGLImageKHR clCreateImage clCreateImage2D clCreateImage3D clCreateKernel clCreateKernelsInProgram clCreateProgramWithBinary clCreateProgramWithBuiltInKernels clCreateProgramWithSource clCreateSampler clCreateSubBuffer clCreateSubDevices clCreateUserEvent clEnqueueAcquireEGLObjectsKHR clEnqueueBarrier clEnqueueBarrierWithWaitList clEnqueueCopyBuffer clEnqueueCopyBufferRect clEnqueueCopyBufferToImage clEnqueueCopyImage clEnqueueCopyImageToBuffer clEnqueueFillBuffer clEnqueueFillImage clEnqueueMapBuffer clEnqueueMapImage clEnqueueMarker clEnqueueMarkerWithWaitList clEnqueueMigrateMemObjects clEnqueueNDRangeKernel clEnqueueNativeKernel clEnqueueReadBuffer clEnqueueReadBufferRect clEnqueueReadImage clEnqueueReleaseEGLObjectsKHR clEnqueueTask clEnqueueUnmapMemObject clEnqueueWaitForEvents clEnqueueWriteBuffer clEnqueueWriteBufferRect clEnqueueWriteImage clFinish clFlush clGetCommandQueueInfo clGetContextInfo clGetDeviceIDs clGetDeviceInfo clGetEventInfo clGetEventProfilingInfo clGetExtensionFunctionAddress clGetExtensionFunctionAddressForPlatform clGetImageInfo clGetKernelArgInfo clGetKernelInfo clGetKernelWorkGroupInfo clGetMemObjectInfo clGetPlatformIDs clGetPlatformInfo clGetProgramBuildInfo clGetProgramInfo clGetSamplerInfo clGetSupportedImageFormats clIcdGetPlatformIDsKHR clImportMemoryARM clLinkProgram clReleaseCommandQueue clReleaseContext clReleaseDevice clReleaseEvent clReleaseKernel clReleaseMemObject clReleaseProgram clReleaseSampler clRetainCommandQueue clRetainContext clRetainDevice clRetainEvent clRetainKernel clRetainMemObject clRetainProgram clRetainSampler clSetCommandQueueProperty clSetEventCallback clSetKernelArg clSetMemObjectDestructorCallback clSetUserEventStatus clUnloadCompiler clUnloadPlatformCompiler clWaitForEvents clock_gettime closedir config_compatible_with_format cosh dlerror drmAuthMagic drmFree drmGetBusid drmGetMagic drmOpen drmSetInterfaceVersion eglBindAPI eglBindTexImage eglChooseConfig eglClientWaitSyncKHR eglCopyBuffers eglCreateContext eglCreateImageKHR eglCreatePbufferFromClientBuffer eglCreatePbufferSurface eglCreatePixmapSurface eglCreateSyncKHR eglCreateWindowSurface eglDestroyContext eglDestroyImageKHR eglDestroySurface eglDestroySyncKHR eglGetConfigAttrib eglGetConfigs eglGetCurrentContext eglGetCurrentDisplay eglGetCurrentSurface eglGetDisplay eglGetError eglGetPlatformDisplayEXT eglGetProcAddress eglGetSyncAttribKHR eglInitialize eglMakeCurrent eglQueryAPI eglQueryContext eglQueryString eglQuerySurface eglReleaseTexImage eglReleaseThread eglSetDamageRegionKHR eglSurfaceAttrib eglSwapBuffers eglSwapInterval eglTerminate eglWaitClient eglWaitGL eglWaitNative eglWaitSyncKHR egl_check_display_valid_and_retain egl_check_surface_current egl_check_surface_valid_and_retain egl_color_buffer_flush_mapping_to_cpu egl_color_buffer_flush_mapping_to_gpu egl_color_buffer_force_cpu_sync egl_color_buffer_format_get_afbc_size egl_color_buffer_format_get_planes egl_color_buffer_format_is_afbc_split_mode egl_color_buffer_format_is_afbc_wideblk_mode egl_color_buffer_format_needs_y_inversion egl_color_buffer_get_age egl_color_buffer_get_crop_rectangle egl_color_buffer_get_early_display egl_color_buffer_get_fence egl_color_buffer_get_format egl_color_buffer_get_height egl_color_buffer_get_line_stride egl_color_buffer_get_mapped_address egl_color_buffer_get_non_thread_safe egl_color_buffer_get_num_planes egl_color_buffer_get_plane_dims egl_color_buffer_get_rotation egl_color_buffer_get_transaction_elimination_disabled egl_color_buffer_get_width egl_color_buffer_get_y_inversion egl_color_buffer_get_yuva_comp_sizes egl_color_buffer_increment_age egl_color_buffer_is_secure egl_color_buffer_lock egl_color_buffer_map egl_color_buffer_new egl_color_buffer_release egl_color_buffer_retain egl_color_buffer_rgb_format_get_bpp egl_color_buffer_set_age egl_color_buffer_set_crop_rectangle egl_color_buffer_set_early_display egl_color_buffer_set_fence egl_color_buffer_set_non_thread_safe egl_color_buffer_set_rotation egl_color_buffer_set_transaction_elimination_disabled egl_color_buffer_unlock egl_color_buffer_unmap egl_color_buffer_user_property_enabled egl_color_buffer_user_property_get egl_color_buffer_user_property_set egl_color_buffer_validate_format egl_color_buffer_validate_render_target egl_color_buffer_wrap_external egl_color_buffer_wrap_external_planar egl_display_release egl_env_set egl_export_platform_fence egl_get_winsys_display egl_get_winsys_surface egl_magic_surface_set_displayed_callback egl_magic_surface_set_winsys_surface egl_register_gles_blob_cache_callbacks egl_set_changed_region egl_set_error egl_surface_release egl_window_buffer_displayed egl_winsys_get_implementation egl_winsys_get_implementation_gbm eglp_call_color_buffer_wait_unlock eglp_call_config_get_color_buffer_format eglp_check_attribute_present eglp_color_buffer_format_to_string eglp_color_buffer_wait_unlock eglp_config_set_attributes eglp_display_create_default_configs eglp_find_unterminated_state eglp_get_attribute_value eglp_get_color_buffer_format_supported eglp_get_color_buffer_format_table eglp_has_display_terminated eglp_read_write_buffer eglp_string_to_color_buffer_format eglp_swap_buffers eglp_wait_buffer_displayed eventfd execv execve exp exp2 fabs fclose fcntl fegetround feof fesetround fflush fgets fileno floor floorf fmod fopen fprintf fputc fputs fread fseek ftell ftello fwrite gbm_bo_create gbm_bo_destroy gbm_bo_get_device gbm_bo_get_fd gbm_bo_get_format gbm_bo_get_handle gbm_bo_get_height gbm_bo_get_stride gbm_bo_get_user_data gbm_bo_get_width gbm_bo_import gbm_bo_map gbm_bo_ref gbm_bo_set_user_data gbm_bo_unmap gbm_bo_unref gbm_bo_write gbm_create_device gbm_device_destroy gbm_device_get_backend_name gbm_device_get_fd gbm_device_is_format_supported gbm_surface_create gbm_surface_destroy gbm_surface_has_free_buffers gbm_surface_lock_front_buffer gbm_surface_nolock_front_buffer gbm_surface_release_buffer getNumBytesForUTF8 getcwd getenv getpagesize getpid getrlimit getrusage gettimeofday getuid glActiveShaderProgram glActiveTexture glAlphaFunc glAlphaFuncx glAlphaFuncxOES glAttachShader glBeginQuery glBeginQueryEXT glBeginTransformFeedback glBindAttribLocation glBindBuffer glBindBufferBase glBindBufferRange glBindFramebuffer glBindFramebufferOES glBindImageTexture glBindProgramPipeline glBindRenderbuffer glBindRenderbufferOES glBindSampler glBindTexture glBindTransformFeedback glBindVertexArray glBindVertexArrayOES glBindVertexBuffer glBlendBarrier glBlendBarrierKHR glBlendColor glBlendEquation glBlendEquationOES glBlendEquationSeparate glBlendEquationSeparateOES glBlendEquationSeparatei glBlendEquationSeparateiEXT glBlendEquationSeparateiOES glBlendEquationi glBlendEquationiEXT glBlendEquationiOES glBlendFunc glBlendFuncSeparate glBlendFuncSeparateOES glBlendFuncSeparatei glBlendFuncSeparateiEXT glBlendFuncSeparateiOES glBlendFunci glBlendFunciEXT glBlendFunciOES glBlitFramebuffer glBufferData glBufferSubData glCheckFramebufferStatus glCheckFramebufferStatusOES glClear glClearBufferfi glClearBufferfv glClearBufferiv glClearBufferuiv glClearColor glClearColorx glClearColorxOES glClearDepthf glClearDepthfOES glClearDepthx glClearDepthxOES glClearStencil glClientActiveTexture glClientWaitSync glClipPlanef glClipPlanefOES glClipPlanex glClipPlanexOES glColor4f glColor4ub glColor4x glColor4xOES glColorMask glColorMaski glColorMaskiEXT glColorMaskiOES glColorPointer glCompileShader glCompressedTexImage2D glCompressedTexImage3D glCompressedTexImage3DOES glCompressedTexSubImage2D glCompressedTexSubImage3D glCompressedTexSubImage3DOES glCopyBufferSubData glCopyImageSubData glCopyImageSubDataEXT glCopyImageSubDataOES glCopyTexImage2D glCopyTexSubImage2D glCopyTexSubImage3D glCopyTexSubImage3DOES glCreateProgram glCreateShader glCreateShaderProgramv glCullFace glCurrentPaletteMatrixOES glDebugMessageCallback glDebugMessageCallbackKHR glDebugMessageControl glDebugMessageControlKHR glDebugMessageInsert glDebugMessageInsertKHR glDeleteBuffers glDeleteFramebuffers glDeleteFramebuffersOES glDeleteProgram glDeleteProgramPipelines glDeleteQueries glDeleteQueriesEXT glDeleteRenderbuffers glDeleteRenderbuffersOES glDeleteSamplers glDeleteShader glDeleteSync glDeleteTextures glDeleteTransformFeedbacks glDeleteVertexArrays glDeleteVertexArraysOES glDepthFunc glDepthMask glDepthRangef glDepthRangefOES glDepthRangex glDepthRangexOES glDetachShader glDisable glDisableClientState glDisableVertexAttribArray glDisablei glDisableiEXT glDisableiOES glDiscardFramebufferEXT glDispatchCompute glDispatchComputeIndirect glDrawArrays glDrawArraysIndirect glDrawArraysInstanced glDrawBuffers glDrawElements glDrawElementsBaseVertex glDrawElementsBaseVertexEXT glDrawElementsBaseVertexOES glDrawElementsIndirect glDrawElementsInstanced glDrawElementsInstancedBaseVertex glDrawElementsInstancedBaseVertexEXT glDrawElementsInstancedBaseVertexOES glDrawRangeElements glDrawRangeElementsBaseVertex glDrawRangeElementsBaseVertexEXT glDrawRangeElementsBaseVertexOES glDrawTexfOES glDrawTexfvOES glDrawTexiOES glDrawTexivOES glDrawTexsOES glDrawTexsvOES glDrawTexxOES glDrawTexxvOES glEGLImageTargetRenderbufferStorageOES glEGLImageTargetTexture2DOES glEnable glEnableClientState glEnableVertexAttribArray glEnablei glEnableiEXT glEnableiOES glEndQuery glEndQueryEXT glEndTransformFeedback glFenceSync glFinish glFlush glFlushMappedBufferRange glFogf glFogfv glFogx glFogxOES glFogxv glFogxvOES glFramebufferParameteri glFramebufferRenderbuffer glFramebufferRenderbufferOES glFramebufferTexture glFramebufferTexture2D glFramebufferTexture2DMultisampleEXT glFramebufferTexture2DOES glFramebufferTexture3DOES glFramebufferTextureEXT glFramebufferTextureLayer glFramebufferTextureMultisampleMultiviewOVR glFramebufferTextureMultiviewOVR glFramebufferTextureOES glFrontFace glFrustumf glFrustumfOES glFrustumx glFrustumxOES glGenBuffers glGenFramebuffers glGenFramebuffersOES glGenProgramPipelines glGenQueries glGenQueriesEXT glGenRenderbuffers glGenRenderbuffersOES glGenSamplers glGenTextures glGenTransformFeedbacks glGenVertexArrays glGenVertexArraysOES glGenerateMipmap glGenerateMipmapOES glGetActiveAttrib glGetActiveUniform glGetActiveUniformBlockName glGetActiveUniformBlockiv glGetActiveUniformsiv glGetAttachedShaders glGetAttribLocation glGetBooleani_v glGetBooleanv glGetBufferParameteri64v glGetBufferParameteriv glGetBufferPointerv glGetBufferPointervOES glGetClipPlanef glGetClipPlanefOES glGetClipPlanex glGetClipPlanexOES glGetDebugMessageLog glGetDebugMessageLogKHR glGetFixedv glGetFixedvOES glGetFloatv glGetFragDataLocation glGetFramebufferAttachmentParameteriv glGetFramebufferAttachmentParameterivOES glGetFramebufferParameteriv glGetGraphicsResetStatus glGetGraphicsResetStatusEXT glGetGraphicsResetStatusKHR glGetInteger64i_v glGetInteger64v glGetIntegeri_v glGetIntegerv glGetInternalformativ glGetLightfv glGetLightxv glGetLightxvOES glGetMaterialfv glGetMaterialxv glGetMaterialxvOES glGetMultisamplefv glGetObjectLabel glGetObjectLabelKHR glGetObjectPtrLabel glGetObjectPtrLabelKHR glGetPointerv glGetPointervKHR glGetProgramBinary glGetProgramBinaryOES glGetProgramInfoLog glGetProgramInterfaceiv glGetProgramPipelineInfoLog glGetProgramPipelineiv glGetProgramResourceIndex glGetProgramResourceLocation glGetProgramResourceName glGetProgramResourceiv glGetProgramiv glGetQueryObjecti64vEXT glGetQueryObjectivEXT glGetQueryObjectui64vEXT glGetQueryObjectuiv glGetQueryObjectuivEXT glGetQueryiv glGetQueryivEXT glGetRenderbufferParameteriv glGetRenderbufferParameterivOES glGetSamplerParameterIiv glGetSamplerParameterIivEXT glGetSamplerParameterIivOES glGetSamplerParameterIuiv glGetSamplerParameterIuivEXT glGetSamplerParameterIuivOES glGetSamplerParameterfv glGetSamplerParameteriv glGetShaderInfoLog glGetShaderPrecisionFormat glGetShaderSource glGetShaderiv glGetString glGetStringi glGetSynciv glGetTexEnvfv glGetTexEnviv glGetTexEnvxv glGetTexEnvxvOES glGetTexGenfvOES glGetTexGenivOES glGetTexGenxvOES glGetTexLevelParameterfv glGetTexLevelParameteriv glGetTexParameterIiv glGetTexParameterIivEXT glGetTexParameterIivOES glGetTexParameterIuiv glGetTexParameterIuivEXT glGetTexParameterIuivOES glGetTexParameterfv glGetTexParameteriv glGetTexParameterxv glGetTexParameterxvOES glGetTransformFeedbackVarying glGetUniformBlockIndex glGetUniformIndices glGetUniformLocation glGetUniformfv glGetUniformiv glGetUniformuiv glGetVertexAttribIiv glGetVertexAttribIuiv glGetVertexAttribPointerv glGetVertexAttribfv glGetVertexAttribiv glGetnUniformfv glGetnUniformfvEXT glGetnUniformfvKHR glGetnUniformiv glGetnUniformivEXT glGetnUniformivKHR glGetnUniformuiv glGetnUniformuivKHR glHint glInvalidateFramebuffer glInvalidateSubFramebuffer glIsBuffer glIsEnabled glIsEnabledi glIsEnablediEXT glIsEnablediOES glIsFramebuffer glIsFramebufferOES glIsProgram glIsProgramPipeline glIsQuery glIsQueryEXT glIsRenderbuffer glIsRenderbufferOES glIsSampler glIsShader glIsSync glIsTexture glIsTransformFeedback glIsVertexArray glIsVertexArrayOES glLightModelf glLightModelfv glLightModelx glLightModelxOES glLightModelxv glLightModelxvOES glLightf glLightfv glLightx glLightxOES glLightxv glLightxvOES glLineWidth glLineWidthx glLineWidthxOES glLinkProgram glLoadIdentity glLoadMatrixf glLoadMatrixx glLoadMatrixxOES glLoadPaletteFromModelViewMatrixOES glLogicOp glMapBufferOES glMapBufferRange glMaterialf glMaterialfv glMaterialx glMaterialxOES glMaterialxv glMaterialxvOES glMatrixIndexPointerOES glMatrixMode glMemoryBarrier glMemoryBarrierByRegion glMinSampleShading glMinSampleShadingOES glMultMatrixf glMultMatrixx glMultMatrixxOES glMultiTexCoord4b glMultiTexCoord4bOES glMultiTexCoord4f glMultiTexCoord4x glMultiTexCoord4xOES glNormal3f glNormal3x glNormal3xOES glNormalPointer glObjectLabel glObjectLabelKHR glObjectPtrLabel glObjectPtrLabelKHR glOrthof glOrthofOES glOrthox glOrthoxOES glPatchParameteri glPatchParameteriEXT glPatchParameteriOES glPauseTransformFeedback glPixelStorei glPointParameterf glPointParameterfv glPointParameterx glPointParameterxOES glPointParameterxv glPointParameterxvOES glPointSize glPointSizePointerOES glPointSizex glPointSizexOES glPolygonOffset glPolygonOffsetx glPolygonOffsetxOES glPopDebugGroup glPopDebugGroupKHR glPopMatrix glPrimitiveBoundingBox glPrimitiveBoundingBoxEXT glPrimitiveBoundingBoxOES glProgramBinary glProgramBinaryOES glProgramParameteri glProgramUniform1f glProgramUniform1fv glProgramUniform1i glProgramUniform1iv glProgramUniform1ui glProgramUniform1uiv glProgramUniform2f glProgramUniform2fv glProgramUniform2i glProgramUniform2iv glProgramUniform2ui glProgramUniform2uiv glProgramUniform3f glProgramUniform3fv glProgramUniform3i glProgramUniform3iv glProgramUniform3ui glProgramUniform3uiv glProgramUniform4f glProgramUniform4fv glProgramUniform4i glProgramUniform4iv glProgramUniform4ui glProgramUniform4uiv glProgramUniformMatrix2fv glProgramUniformMatrix2x3fv glProgramUniformMatrix2x4fv glProgramUniformMatrix3fv glProgramUniformMatrix3x2fv glProgramUniformMatrix3x4fv glProgramUniformMatrix4fv glProgramUniformMatrix4x2fv glProgramUniformMatrix4x3fv glPushDebugGroup glPushDebugGroupKHR glPushMatrix glQueryCounterEXT glQueryMatrixxOES glReadBuffer glReadPixels glReadnPixels glReadnPixelsEXT glReadnPixelsKHR glReleaseShaderCompiler glRenderbufferStorage glRenderbufferStorageMultisample glRenderbufferStorageMultisampleEXT glRenderbufferStorageOES glResumeTransformFeedback glRotatef glRotatex glRotatexOES glSampleCoverage glSampleCoveragex glSampleCoveragexOES glSampleMaski glSamplerParameterIiv glSamplerParameterIivEXT glSamplerParameterIivOES glSamplerParameterIuiv glSamplerParameterIuivEXT glSamplerParameterIuivOES glSamplerParameterf glSamplerParameterfv glSamplerParameteri glSamplerParameteriv glScalef glScalex glScalexOES glScissor glShadeModel glShaderBinary glShaderSource glStencilFunc glStencilFuncSeparate glStencilMask glStencilMaskSeparate glStencilOp glStencilOpSeparate glTexBuffer glTexBufferEXT glTexBufferOES glTexBufferRange glTexBufferRangeEXT glTexBufferRangeOES glTexCoordPointer glTexEnvf glTexEnvfv glTexEnvi glTexEnviv glTexEnvx glTexEnvxOES glTexEnvxv glTexEnvxvOES glTexGenfOES glTexGenfvOES glTexGeniOES glTexGenivOES glTexGenxOES glTexGenxvOES glTexImage2D glTexImage3D glTexImage3DOES glTexParameterIiv glTexParameterIivEXT glTexParameterIivOES glTexParameterIuiv glTexParameterIuivEXT glTexParameterIuivOES glTexParameterf glTexParameterfv glTexParameteri glTexParameteriv glTexParameterx glTexParameterxOES glTexParameterxv glTexParameterxvOES glTexStorage2D glTexStorage2DEXT glTexStorage2DMultisample glTexStorage3D glTexStorage3DEXT glTexStorage3DMultisample glTexStorage3DMultisampleOES glTexSubImage2D glTexSubImage3D glTexSubImage3DOES glTransformFeedbackVaryings glTranslatef glTranslatex glTranslatexOES glUniform1f glUniform1fv glUniform1i glUniform1iv glUniform1ui glUniform1uiv glUniform2f glUniform2fv glUniform2i glUniform2iv glUniform2ui glUniform2uiv glUniform3f glUniform3fv glUniform3i glUniform3iv glUniform3ui glUniform3uiv glUniform4f glUniform4fv glUniform4i glUniform4iv glUniform4ui glUniform4uiv glUniformBlockBinding glUniformMatrix2fv glUniformMatrix2x3fv glUniformMatrix2x4fv glUniformMatrix3fv glUniformMatrix3x2fv glUniformMatrix3x4fv glUniformMatrix4fv glUniformMatrix4x2fv glUniformMatrix4x3fv glUnmapBuffer glUnmapBufferOES glUseProgram glUseProgramStages glValidateProgram glValidateProgramPipeline glVertexAttrib1f glVertexAttrib1fv glVertexAttrib2f glVertexAttrib2fv glVertexAttrib3f glVertexAttrib3fv glVertexAttrib4f glVertexAttrib4fv glVertexAttribBinding glVertexAttribDivisor glVertexAttribFormat glVertexAttribI4i glVertexAttribI4iv glVertexAttribI4ui glVertexAttribI4uiv glVertexAttribIFormat glVertexAttribIPointer glVertexAttribPointer glVertexBindingDivisor glVertexPointer glViewport glWaitSync glWeightPointerOES gles_vertexp_bb_neon_transform_and_produce_clip_bits gles_vertexp_neon_indices_scan_4xu16 gles_vertexp_neon_indices_scan_4xu16_restart gles_vertexp_neon_indices_scan_4xu32 gles_vertexp_neon_indices_scan_4xu32_restart ioctl isLegalUTF8Sequence isLegalUTF8String isalnum isalpha isatty isprint isxdigit kill listen llvm_regcomp llvm_regerror llvm_regexec llvm_regfree llvm_strlcpy localtime localtime_r log log10 log2 logf longjmp lseek mali_buffer_sharing_interface mali_egl_image_get_buffer_ext_phandle mali_egl_image_get_buffer_ext_type mali_egl_image_get_buffer_size mali_egl_image_get_format malioc_compile malioc_get_api_version malioc_get_capabilities malioc_release_capabilities malioc_release_outputs mallinfo malloc memchr memcmp memcpy memmove memset mincore mkdir mlock mmap mmap64 munlock munmap nearbyintf newlocale opendir osup_d_mutex_term osup_deregister_unload_callback osup_dlclose osup_dlopen osup_dlsym osup_get_number_of_cpu_cores osup_mutex_lock osup_mutex_static_get osup_mutex_unlock osup_register_unload_callback osup_sem_init osup_sem_post osup_sem_term osup_sem_timedwait osup_sem_trywait osup_sem_wait osup_spinlock_lock osup_spinlock_term osup_spinlock_unlock osup_sync_object_clear osup_sync_object_init osup_sync_object_set_and_broadcast osup_sync_object_term osup_sync_object_timedwait osup_sync_object_wait osup_thread_callback_set osup_thread_callback_unset osup_thread_create osup_thread_data_get osup_thread_data_set osup_thread_getname osup_thread_setdeferrability osup_thread_setname perror pipe poll posix_spawn posix_spawn_file_actions_adddup2 posix_spawn_file_actions_addopen posix_spawn_file_actions_destroy posix_spawn_file_actions_init pow powf prctl pread pthread_cond_broadcast pthread_cond_destroy pthread_cond_init pthread_cond_timedwait pthread_cond_wait pthread_condattr_destroy pthread_condattr_init pthread_condattr_setclock pthread_create pthread_getspecific pthread_join pthread_key_delete pthread_mutex_destroy pthread_mutex_init pthread_mutex_lock pthread_mutex_unlock pthread_mutexattr_destroy pthread_mutexattr_init pthread_mutexattr_settype pthread_once pthread_rwlock_destroy pthread_rwlock_init pthread_rwlock_rdlock pthread_rwlock_unlock pthread_rwlock_wrlock pthread_self pthread_setschedparam pthread_setspecific pthread_sigmask putchar qsort raise readdir realloc realpath recv remove sched_get_priority_max sched_get_priority_min sem_destroy send setrlimit shutdown sigaction sigemptyset sigfillset sincosf sinh socket sqrt srand sscanf stderr stdout strchr strcmp strerror_r strftime strlen strncmp strncpy strnlen strpbrk strsignal strstr strtod strtol strtol_l strtoul strtoul_l strtoull sysconf tanh uname unlink usleep vsnprintf waitpid wl_buffer_interface wl_callback_interface wl_client_get_display wl_client_post_no_memory wl_display_cancel_read wl_display_connect wl_display_create_queue wl_display_disconnect wl_display_dispatch_queue wl_display_dispatch_queue_pending wl_display_flush wl_display_get_error wl_display_get_fd wl_display_prepare_read_queue wl_display_read_events wl_egl_window_create wl_egl_window_destroy wl_egl_window_get_attached_size wl_egl_window_release wl_egl_window_resize wl_egl_window_retain wl_event_queue_destroy wl_global_create wl_global_destroy wl_proxy_add_listener wl_proxy_create_wrapper wl_proxy_destroy wl_proxy_marshal wl_proxy_marshal_constructor wl_proxy_marshal_constructor_versioned wl_proxy_set_queue wl_proxy_wrapper_destroy wl_registry_interface wl_resource_create wl_resource_destroy wl_resource_get_client wl_resource_get_user_data wl_resource_instance_of wl_resource_post_error wl_resource_post_event wl_resource_set_implementation wl_resource_set_user_data GLIBC_2.4 GCC_3.5 CXXABI_1.3.5 GLIBCXX_3.4.14 CXXABI_ARM_1.3.3 GLIBCXX_3.4.18 GLIBCXX_3.4.11 GLIBCXX_3.4.9 GLIBCXX_3.4.15 CXXABI_1.3 GLIBCXX_3.4.20 GLIBCXX_3.4 GLIBC_2.7 GLIBC_2.15 libmali.so
p 8 9 ; 4 D 4 $ , ( , $ u 9 u/ / u. * a* - - - - . m* - - ]- I I =J J J 9M O =O eO O Q 1Q YQ Q Q [ I[ [ [ [ \ ] ] ^ ^ ^ 9_ _ a a b e e e Mf f =g eg g h Ii i i j j ]k k k k n Ar au Iw Yz | -~ = Q Y = u !k R ] 5j j l o s L M !M T =a b 1d e i q 1y \ 8 P 6 H 6 0 0 0 0 0 0 0 0 0 0 0 x 0 d 0 P 0 < 0 ( 0 T 0 @ 0 , 0 0 0 0 0 0 0 0 0 0 0 0 | 0 h 0 0 0 l 0 X 0 D 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 p 0 \ 0 H 0 t 0 ` 0 L 0 8 0 $ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 x 0 d 0 P 0 < 0 ( 0 T 0 @ 0 , 0 0 0 0 0 0 0 0 0 0 0 0 | 0 h 0 0 0 l 0 X 0 D 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 p 0 \ 0 H 0 t 0 ` 0 L 0 8 0 $ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 x 0 d 0 P 0 < 0 ( 0 T 0 @ 0 , 0 0 0 0 0 0 0 0 0 0 0 0 | 0 h 0 0 0 l 0 X 0 D 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 p 0 \ 0 H 0 t 0 ` 0 L 0 8 0 $ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 x 0 d 0 P 0 < 0 ( 0 T 0 @ 0 , 0 0 0 0 0 0 g h 0 g | 0 g g 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 l 0 X 0 D 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 p 0 p 0 p 0 p 0 \ 0 \ 0 H 0 4 0 0 0 0 0 0 0 0 0 INFO WARN ERROR FAIL ALL A A A A A A A @| A T| EF h| || | | | 1 | } | !} } %} } )" ,} E <} + P} MW h} } mp } 0 } b } ! } ! } u } 1 ~ 9 $~ E 0~ iH D~ ): T~ 5 d~ 2 t~ G ~ d ~ } ~ @ ~ ~ ~ eW ~ X ~ Mg } a $ 0 ! aW T h m x 9 " }p " EGL_COLOR_BUFFER_FORMAT_sABGR8888 EGL_COLOR_BUFFER_FORMAT_sARGB8888 EGL_COLOR_BUFFER_FORMAT_sXBGR8888 EGL_COLOR_BUFFER_FORMAT_BGR565 EGL_COLOR_BUFFER_FORMAT_RGB565 EGL_COLOR_BUFFER_FORMAT_ABGR8888 EGL_COLOR_BUFFER_FORMAT_ARGB8888 EGL_COLOR_BUFFER_FORMAT_BGRA8888 S EGL_COLOR_BUFFER_FORMAT_RGBA8888 EGL_COLOR_BUFFER_FORMAT_XBGR8888 EGL_COLOR_BUFFER_FORMAT_XRGB8888 EGL_COLOR_BUFFER_FORMAT_BGRX8888 S EGL_COLOR_BUFFER_FORMAT_RGBX8888 : EGL_COLOR_BUFFER_FORMAT_BGR888 : EGL_COLOR_BUFFER_FORMAT_RGB888 EGL_COLOR_BUFFER_FORMAT_ABGR4444 EGL_COLOR_BUFFER_FORMAT_ARGB4444 EGL_COLOR_BUFFER_FORMAT_BGRA4444 S EGL_COLOR_BUFFER_FORMAT_RGBA4444 EGL_COLOR_BUFFER_FORMAT_ABGR1555 EGL_COLOR_BUFFER_FORMAT_ARGB1555 & EGL_COLOR_BUFFER_FORMAT_BGRA5551 & EGL_COLOR_BUFFER_FORMAT_RGBA5551 : EGL_COLOR_BUFFER_FORMAT_L8 z EGL_COLOR_BUFFER_FORMAT_YV12_BT601_NARROW z EGL_COLOR_BUFFER_FORMAT_YV12_BT601_WIDE z EGL_COLOR_BUFFER_FORMAT_YV12_BT709_NARROW z EGL_COLOR_BUFFER_FORMAT_YV12_BT709_WIDE j EGL_COLOR_BUFFER_FORMAT_NV12_BT601_NARROW j EGL_COLOR_BUFFER_FORMAT_NV12_BT601_WIDE j EGL_COLOR_BUFFER_FORMAT_NV12_BT709_NARROW j EGL_COLOR_BUFFER_FORMAT_NV12_BT709_WIDE * EGL_COLOR_BUFFER_FORMAT_NV16_BT601_NARROW * EGL_COLOR_BUFFER_FORMAT_NV16_BT601_WIDE * EGL_COLOR_BUFFER_FORMAT_NV16_BT709_NARROW * EGL_COLOR_BUFFER_FORMAT_NV16_BT709_WIDE * EGL_COLOR_BUFFER_FORMAT_YUYV_BT601_NARROW * EGL_COLOR_BUFFER_FORMAT_YUYV_BT601_WIDE * EGL_COLOR_BUFFER_FORMAT_YUYV_BT709_NARROW * EGL_COLOR_BUFFER_FORMAT_YUYV_BT709_WIDE Pj EGL_COLOR_BUFFER_FORMAT_NV21_BT601_NARROW Pj EGL_COLOR_BUFFER_FORMAT_NV21_BT601_WIDE Pj EGL_COLOR_BUFFER_FORMAT_NV21_BT709_NARROW Pj EGL_COLOR_BUFFER_FORMAT_NV21_BT709_WIDE 6 EGL_COLOR_BUFFER_FORMAT_ABGR8888_AFBC 6 EGL_COLOR_BUFFER_FORMAT_XBGR8888_AFBC : 6 EGL_COLOR_BUFFER_FORMAT_BGR888_AFBC 6 EGL_COLOR_BUFFER_FORMAT_BGR565_AFBC 6 EGL_COLOR_BUFFER_FORMAT_ABGR4444_AFBC 6 EGL_COLOR_BUFFER_FORMAT_ABGR1555_AFBC j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_NARROW_AFBC j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_WIDE_AFBC j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_NARROW_AFBC j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_WIDE_AFBC v EGL_COLOR_BUFFER_FORMAT_ABGR8888_AFBC_SPLITBLK v EGL_COLOR_BUFFER_FORMAT_XBGR8888_AFBC_SPLITBLK : v EGL_COLOR_BUFFER_FORMAT_BGR888_AFBC_SPLITBLK v EGL_COLOR_BUFFER_FORMAT_BGR565_AFBC_SPLITBLK EGL_COLOR_BUFFER_FORMAT_ABGR8888_AFBC_SPLITBLK_WIDEBLK EGL_COLOR_BUFFER_FORMAT_XBGR8888_AFBC_SPLITBLK_WIDEBLK : EGL_COLOR_BUFFER_FORMAT_BGR888_AFBC_SPLITBLK_WIDEBLK EGL_COLOR_BUFFER_FORMAT_BGR565_AFBC_WIDEBLK j V EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_NARROW_AFBC_SPLITBLK j V EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_WIDE_AFBC_SPLITBLK j V EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_NARROW_AFBC_SPLITBLK j V EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_WIDE_AFBC_SPLITBLK j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_NARROW_AFBC_WIDEBLK j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT601_WIDE_AFBC_WIDEBLK j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_NARROW_AFBC_WIDEBLK j EGL_COLOR_BUFFER_FORMAT_YUV420_8BIT_BT709_WIDE_AFBC_WIDEBLK * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT601_NARROW_AFBC * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT601_WIDE_AFBC * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT709_NARROW_AFBC * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT709_WIDE_AFBC * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT601_NARROW_AFBC_WIDEBLK * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT601_WIDE_AFBC_WIDEBLK * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT709_NARROW_AFBC_WIDEBLK * EGL_COLOR_BUFFER_FORMAT_YUV422_8BIT_BT709_WIDE_AFBC_WIDEBLK EGL_COLOR_BUFFER_FORMAT_Y0L2 f EGL_COLOR_BUFFER_FORMAT_P010 B EGL_COLOR_BUFFER_FORMAT_P210 " EGL_COLOR_BUFFER_FORMAT_Y210 EGL_COLOR_BUFFER_FORMAT_Y410 EGL_COLOR_BUFFER_FORMAT_A2Y10U10V10 EGL_COLOR_BUFFER_FORMAT_Y10U10Y10V10 EGL_COLOR_BUFFER_FORMAT_V10Y10U10Y10 EGL_COLOR_BUFFER_FORMAT_Y10_U10V10_422 EGL_COLOR_BUFFER_FORMAT_Y10_U10V10_420 v EGL_COLOR_BUFFER_FORMAT_Y16_U16V16_420 EGL_COLOR_BUFFER_FORMAT_YUV420_10BIT_AFBC EGL_COLOR_BUFFER_FORMAT_YUV420_10BIT_AFBC_WIDEBLK B EGL_COLOR_BUFFER_FORMAT_YUV422_10BIT_AFBC B EGL_COLOR_BUFFER_FORMAT_YUV422_10BIT_AFBC_WIDEBLK 6 EGL_COLOR_BUFFER_FORMAT_ABGR2101010 6 EGL_COLOR_BUFFER_FORMAT_ABGR2101010_AFBC 8[ t | \ $ X l x ! " # $ % & ' T P $ ` 0 a . $ ` H ( H $ < " H $ 8 4 < @ t d T o - l- u - 2 - + - + A - , - 2 - (, - 8, U - P, - D, - d- - `, - , - , - , - , - , - - - - - 0- - @- - T- - W W W W $W 4p ,W 8W @W LW P . t PD 0 ' D # . ' # T ' P Z h 4. 4. % L U Dm$ , `m$ 2 2 2 2 2 2 2 . # & " & " h [& 2 3 P 3 3 3 $3 ,3 43 <3 D3 L3 T3 \3 d3 l3 t3 |3 3 3 A tA 3 3 3 3 < ` 3 3 3 3 3 4 4 4 4 $4 (4 ,4 <4 H4 T4 X4 \4 d4 l4 t4 & 4 4 4 4 4 4 4 : ,: 4 4 4 5 $5 85 L5 d5 |5 5 5 5 5 5 6 6 46 D6 l6 6 6 6 6 6 7 ,7 <7 X7 h7 |7 7 7 7 7 7 9 7 7 7 8 8 8 ,8 88 L8 \8 t8 8 8 8 8 8 8 T < 8 8 8 9 9 ,9 @9 P9 X9 l9 9 9 d 9 9 9 9 9 : : : (: 8: H: \: l: x: : : : : : : : ; ; ,; 8; L; `; l; |; ; ; ; ; ; ; ; ; ; ; < < < ,< << H< T< `< l< x< < < < < < < < < < < XW TA = = = $= ,= 4= <= D= L= P= T= \A \= ;' d= h= p= |= = = = = = = = = = = = = > > > (> 0> <> D> H> T> d> x> > > > > > > > > > > > > > > ? ? ? $? ,? 4? <? D? n' P? \? h? t? ? ? ? ? ? ? ? ? ? ? ? ? ? ? @ @ @ @ @ $@ 0@ 8@ @@ D@ P@ X@ `@ d@ l@ t@ @ @ @ @ @ @ @ @ @ b @ @ @ @ <4 @ @ @ @ @ @ A A A A $A ,A 8A @A HA PA XA `A hA tA |A A A A A A A A A A A A A A B B B B (B 0B 4B @B LB TB \B hB pB |B B B B B B B B B B B B B PD B B B B B B C C C C $C (C 0C <C DC PC XC DB lC tC |C C C C C C C C C C C C C C D D D $D 4D <D HD h XD hD pD xD D D D D D D D D D D D E E E (E 4E @E HE PE XE dE lE xE E E E E E E E E E E E E E F F F 0F 8F @F HF PF \F dF pF xF F F F F F F F F F F G G G (G 4G @G HG TG `G lG xG G G G G G G G G G G G H H H $H 4H LH dH |H H H H H H H I I |W 8\ \ [ `[ 8\ [ [ [ `[ P\ [ [ `[ 8\ [ [ `[ 8\ [ [ \ [ [ 86 @6 yC6 ]=6 66 66 5;6 >6 -86 ?6 =6 76 =76 76 a76 $ 8 P | d | | { <| X| l| < X p p} | l | | } } @} \} } } { ~ ~ , ~ ~ D~ h~ l D ~ X { { { | | <| X| l| | | | l | | } } @} \} p} } } } } ~ ~ D~ h~ ~ ~ ~ ~ ~ , D l t 0 X l L t 8 h T ( @ 4 < X Q X V 3 b c W 4 @ < A E A C A ` ` H @ ` @ d t u x @ y ` v @ w ` p r q ! s " @ # @ $ @ % @ & @ ' @ ( @ ) @ * @ + @ , @ - @ . @ / @ 0 ` 1 ` 2 ` 3 ` 4 ` 5 ` 6 ` 7 ` 8 ` 9 ` : ` ; ` < ` = ` > H ? H @ H A H B H C H D H E H F H G H H h I h J h K h L h M h N h O h P h Q h R S @ T U @ V @ W X @ Y Z @ [ @ \ R h ] Y h ^ Y h _ ) ` + ' a A b c ' d e - f / ' g h Q i . j 0 ' k l W m : ; n A ! o C p ! q ' ! r = > s o h C t p C u q v < ( w 6 x v C y w z : ( { 4 | | C } } ~ 8 ( 2 C ; ( 5 C 9 ( 3 C 7 ( 1 K n Z K n Z K n X K n [ K n X K n W K n X K n Y K n HX K n X K n Y K n L K n M K n lW K n XW K n PZ K n Y K n `V K n 8V K n W K n W K n L K n X K n W K n LY K n @[ K n xZ K n K pX n Z pX n pX pX n Z pX n W pX n ,[ pX n W pX x n 8Y pX n Y pX n HX pX n Y pX n [ Y n W Y n W Y n tY Y n V Y n T[ Y x n tV Y n X Y n Y Y n `V Y n @[ Y n lW [ x n 0 <Z J hN [ n 0 Z J hN [ n 0 Z J N [ n 0 Z J PN [ x n 0 <Z J PN [ x n 0 <Z J N Y n Y Y n dZ Y n Z Y n W Y n Z Y n W Y x n <Z Y n V Y n \X Y n W Y n [ K x 0 0^ K \ K x @ 0^ K \ \ L x 0 ^ L \ L x @ ^ L \ \ L x 0 ^ L \ L x @ ^ L \ \ M x 0 ^ M \ M x @ ^ M \ \ K x 0 ] K \ K x @ ] K \ \ L x 0 ] L \ L x @ ] L \ \ L x 0 ] L \ L x @ ] L \ \ M x 0 x] M \ M x @ x] M \ \ K x 0 (] K \ K x @ (] K \ \ L x 0 ] L \ L x @ ] L \ \ L x 0 \ L \ L x @ \ L \ \ M x 0 \ M \ M x @ \ M \ \ K K L L dM dM L L J J ,L ,L M M $Y x n $Y [ n [ Y n Y \X n \X ,L x n ,L dM n dM X n X Z n Z V n V 8Y x n 8Y <Z x n <Z Z n Z V x n V X n X W n W `Y x n `Y J n J tV x n tV W n W V n V X n X K n R K n P Z x n `Y Z n X Z n Z Z n Z Z n Y Z n LV Z n LY Z n X Z n W Z n Y Z n Z @[ n V @[ n tY @[ n W @[ n lW @[ x n tV @[ n Y @[ n @[ @[ n X @[ n T[ @[ n W @[ n `V ,[ n W ,[ x n 8Y ,[ n pX ,[ n W ,[ n ,[ ,[ n Z ,[ n Z ,[ n HX ,[ n Y ,[ n Y ,[ n [ V n V V n ,W V n (Z V n X V n V V n X V x n V V n X V n V V n 4X V n xZ HX n ,[ HX n pX HX n HX HX n Y HX x n 8Y HX n Z HX n W HX n [ HX n W HX n Y HX n Z \X n V \X n \X \X n dZ \X n Z \X n Y \X n W \X n [ \X n W \X n <Z \X n W \X n Z xZ n X xZ x n V xZ n (Z xZ n V xZ n ,W xZ n V xZ n X xZ n X xZ n 4X xZ n V xZ n xZ L n ! L L V n ! V V Y n ! Y Y Z n ! Z Z X n ! X X Y n ! Y Y X n ! X X X n ! X X W n ! W W K n ! K K [ n ! [ [ V n ! V V 4X n ! 4X 4X `V n ! `V `V Y n ! Y Y tY n ! tY tY L n ! L L W n ! W W LY n ! LY LY W n ! W W ,[ n ! ,[ ,[ ,W n ! ,W ,W pX n ! pX pX DW n ! DW DW HX n ! HX HX M n ! M M Y n ! Y Y PZ n ! PZ PZ X n ! X X 8V n ! 8V 8V M n ! M M L n ! L L W n ! W W Y n ! Y Y W n ! W W W n ! W W X n ! X X LV n ! LV LV Z n ! Z Z K n ! K K Z n ! Z Z Z n ! Z Z Y n ! Y Y @[ n ! @[ @[ Z n ! Z Z V n ! V V W n ! W W xZ n ! xZ xZ Z n ! Z Z (Z n ! (Z (Z XW n ! XW XW T[ n ! T[ T[ xK n ! xK xK lW n ! lW lW X n ! X X dZ n ! dZ dZ <Z , / n K <Z , / n xK <Z x n Z <Z , / n M <Z , / n J <Z , / n ,L <Z x n <Z <Z , / n M <Z , / n L <Z , / n L <Z x n dZ <Z , / n L <Z , / n K <Z , / n dM [ x n 0 V J N [ n 0 V J PN [ n 0 V J hN [ x n 0 V J hN [ x n 0 V J PN [ n 0 V J N `V n Y `V n V `V n T[ `V n W `V n @[ `V n `V `V n X `V n lW `V x n tV `V n tY `V n W DW n 8V DW n X DW x n $Y DW n X DW n W DW n X DW n XW DW n PZ DW n Y DW n Z DW n DW Y n Y dM n dM Z n Z V n V X n X W n W X n X XW n ! DW DW X n ! LV LV X n ! Z Z X n ! X X X n ! X X W n ! Y Y 8V n ! W W LY n ! Z Z Z n ! Z Z X n ! V V `V n ! `V `V PZ n ! X X HX n ! W W LY n ! LY LY W n ! W W lW n ! tY tY 8V n ! 8V 8V Y n ! ,[ ,[ HX n ! HX HX Y n ! Y Y PZ n ! PZ PZ X n ! X X Y n ! pX pX Y n ! Y Y X n ! X X Y n ! Z Z X n ! ,W ,W Z n ! Z Z Y n ! Y Y @[ n ! @[ @[ @[ n ! Y Y W n ! W W xZ n ! xZ xZ W n ! V V xZ n ! (Z (Z `V n ! T[ T[ X n ! X X X n ! 4X 4X lW n ! lW lW XW n ! XW XW V n dZ V x n <Z V n Z V n W V n [ V n W V n \X V n W V n Z V n Y V n V xZ x n ! V V Y x n ! 8Y 8Y W n ! Z Z PZ n ! X X K x n ! ,L ,L `V x n ! tV tV W x n ! `Y `Y HX n ! [ [ lW n ! X X X n ! Y Y Z n ! W W Z x n ! <Z <Z W n ! W W 8V n ! X X X n ! V V XW x n ! $Y $Y K n ! J J LY n ! Z Z K n ! dM dM X n ! V V [ n ! \X \X [ x n 0 $Y J hN [ x n 0 $Y J N [ n 0 X J PN [ n 0 X J hN [ x n 0 $Y J PN [ n 0 X J N $Y x n $Y ,L x n ,L \X n \X Z n Z X n X dM n dM <Z x n <Z Z n Z Y n Y W n W X n X J n J tV x n tV `Y x n `Y X n X L n K L n xK L n M L n J L n L L n K L n M L n L L n L L x n ,L L n dM [ n 0 W J PN [ n 0 W J hN [ x n 0 8Y J N [ x n 0 8Y J PN [ x n 0 8Y J hN [ n 0 W J N V n " J J V n " J J V n " J J V n " J J V n ,W V n (Z V x n V V n xZ V n V V n X V n X V n X V n V V n 4X V n V X n xZ X n V X n X X x n V X n V X n X X n (Z X n 4X X n X X n V X n ,W X n Y X n Z X n Y X n X X n LY X x n `Y X n LV X n W X n Z X n Z X n X Y n pX Y n ,[ Y n Z Y n [ Y n HX Y n Y Y n Y Y x n 8Y Y n W Y n W Y n Z Z n X Z x n `Y Z n LV Z n Y Z n Y Z n W Z n Z Z n LY Z n X Z n Z Z n Z [ n W [ n [ [ n Y [ n Z [ n W [ n \X [ n V [ n W [ x n <Z [ n Z [ n dZ dZ n Y dZ n W dZ n dZ dZ n W dZ n [ dZ n Z dZ n \X dZ n V dZ x n <Z dZ n Z dZ n W [ x n 0 ,L J PN [ x n 0 ,L J hN [ n 0 dM J hN [ n 0 dM J N [ x n 0 ,L J N [ n 0 dM J PN XW x n $Y XW n DW XW n Z XW n W XW n X XW n Y XW n PZ XW n X XW n 8V XW n X XW n XW LY n Z LY n Z LY n X LY n W LY n Y LY n Z LY x n `Y LY n X LY n LV LY n Y LY n LY ,W n V ,W n DW ,W , / n dM ,W , / n J ,W , / n M ,W x n tV ,W , / n L ,W n XW ,W , / n K ,W n T[ ,W n Z ,W , / n K ,W n ,W ,W n W ,W n Z ,W x n $Y ,W , / n ,L ,W , / n L ,W n `V ,W , / n L ,W , / n xK ,W , / n M ,W n X X , / n L X , / n dM X n X X , / n M X n V X , / n M X n Y X n 4X X , / n L X , / n xK X , / n K X , / n ,L X , / n K X x n 8Y X , / n L X n pX X , / n J Y n ! Y Y V n ! V V Z n ! Z Z X n ! X X X n ! X X W n ! W W dM n ! dM dM L x ] L K x 0^ K L x ^ L M x x] M L x \ L M x \ M L x ] L L x ] L K x ] K K x (] K M x ^ M L x ^ L K n dM K n K K n xK K n K K n M K x n ,L K n L K n L K n M K n J K n L LV x n `Y LV n X LV n Y LV n LV LV n W LV n LY LV n Z LV n Z LV n Y LV n Z LV n X Z Z ,[ ,[ dZ dZ W W M M W W pX pX PZ PZ Z Z Z Z Y Y lW lW X X ,W ,W W W Y Y K K [ [ V V X X W W LY LY Z Z K K xZ xZ W W Y Y Y Y V V V V X X W W XW XW T[ T[ L L xK xK `V `V Z Z tY tY 8V 8V L L M M LV LV DW DW HX HX Y Y X X Y Y Z Z @[ @[ (Z (Z W W 4X 4X L L X X X X dM n K dM n M dM n dM dM n L dM n L dM n K dM n J dM n L dM n xK dM x n ,L dM n M L n [ K n \ L n [ K n \ L n 8\ L n [ M n [ M n [ T[ n W T[ n X T[ x n tV T[ n W T[ n @[ T[ n tY T[ n `V T[ n lW T[ n V T[ n T[ T[ n Y Z n Z Z n HX Z n Z Z x n 8Y Z n W Z n [ Z n W Z n ,[ Z n Y Z n Y Z n pX X n X X n xZ X x n V X n X X n V X n 4X X n V X n ,W X n V X n X X n (Z L n L L n J L n M L n dM L n xK L n L L x n ,L L n M L n K L n K L n L L n K L n K L n L L n J L n L L n M L x n ,L L n L L n xK L n dM L n M [ n ! [ [ tV x n ! tV ,L `Y x n ! `Y `Y W n ! W J V x n ! V V W n ! W W \X n ! \X J <Z x n ! <Z ,L Z n ! Z Z X n ! X X Y n ! Y Y X n ! X dM 8Y x n ! 8Y ,L tV x n ! tV tV <Z x n ! <Z <Z Z n ! Z J X n ! X dM V n ! V V 8Y x n ! 8Y 8Y Y n ! Y dM X n ! X X X n ! X X W n ! W W dM n ! dM dM W n ! W dM [ n ! [ J V n ! V V $Y x n ! $Y ,L V n ! V dM V x n ! V ,L Z n ! Z dM J n ! J J Z n ! Z Z \X n ! \X \X V n ! V J $Y x n ! $Y $Y ,L x n ! ,L ,L `Y x n ! `Y ,L X n ! X J [ n ! [ [ Y n ! Y Y V n ! V V V n ! V V W n ! W W J n ! J J ,L x n ! ,L ,L Z n ! Z Z \X n ! \X \X X n ! X X X n ! X X X n ! X X W n ! W W `Y x n ! `Y `Y $Y x n ! $Y $Y dM n ! dM dM 8Y x n ! 8Y 8Y tV x n ! tV tV Z n ! Z Z <Z x n ! <Z <Z V x n ! V V M n [ M K n \ K L n [ L L n 8\ L K n \ K M n [ M L n [ L L n [ L W n XW W x n $Y W n DW W n X W n 8V W n PZ W n Y W n W W n X W n Z W n X lW n Y lW x n tV lW n T[ lW n V lW n @[ lW n `V lW n tY lW n W lW n W lW n lW lW n X Z n dZ Z n [ Z n Z Z n Y Z n \X Z x n <Z Z n Z Z n W Z n V Z n W Z n W X x 2 R R K X x 2 R R dM X n 2 R R X X n 2 R R Y X n 2 R R 8V X n 2 R R X X x 2 tR R X X x 2 tR R Y X x 2 XR R 8V X x 2 XR R X X x " R K X x " R X X x " R 8V X x " tR X X x " XR 8V X x " <R K Z n Y Z n Z Z n @[ Z , / n J Z n Z Z , / n M Z n L Z n K Z n dM Z , / n L Z , / n xK Z , / n M Z , / n K Z n LY Z , / n L Z n Z Z , / n ,L Z n Y X n $Y X n W X n Z X n DW X n X X n 8V X n PZ X n X X n X X n XW X n Y Z n W Z n Y Z n Z Z n Z Z n X Z n X Z n LY Z n Y Z n Z Z n LV Z n `Y W n tV W n @[ W n W W n `V W n tY W n Y W n X W n lW W n W W n V W n T[ [ n W [ n ,[ [ n W [ n Y [ n Y [ n [ [ n Z [ n Z [ n 8Y [ n pX [ n HX `Y x n ! V Y LY n ! HX Z [ n ! [ W Z n ! Z dZ dZ n ! Y dZ X n ! W V Z n ! V Y Y n ! Y Y Z n ! X Z Z n ! Y dZ W n ! W W xZ n ! Z (Z W n ! W Y Y n ! Y LV W n ! V Z 8V n ! W W Z n ! W Y Y n ! Y Y X n ! X LV DW n ! (Z DW W n ! Z W `Y x n ! 8Y Y ,W n ! W ,W V n ! ,[ V W n ! XW Y Y n ! X Z pX n ! (Z pX Y n ! Y Z W n ! 8V Y XW n ! Z DW \X n ! X W W n ! Y Y X n ! ,W X Y n ! pX Y W n ! W Z 8Y x n ! <Z pX Z n ! Z Z ,W n ! ,W ,W LV n ! 4X LV \X n ! \X W Y n ! Z LV 4X n ! Y 4X X n ! X V $Y x n ! 8Y DW Z n ! X Y W n ! Y W Y n ! W Z LV n ! Z LV V n ! Z 4X X n ! \X X X n ! Y Z W n ! Z Z Z n ! 8V Z HX n ! HX W X n ! W Z PZ n ! X X V x n ! V (Z Y n ! 4X Y XW n ! XW DW dZ n ! dZ dZ Y n ! xZ pX Y n ! DW Y 8V n ! 8V W Z n ! X Z Z n ! xZ dZ V x n ! <Z (Z V n ! Y 4X \X n ! V W (Z n ! (Z (Z X n ! W X X n ! [ X X n ! Z LV V x n ! $Y (Z Z n ! X Z V n ! X ,W Z n ! \X Z W n ! xZ Y LY n ! PZ Z Y n ! X LV ,[ n ! Z ,[ [ n ! [ W pX n ! pX pX 4X n ! LV 4X Y n ! W ,[ W n ! Z W X n ! V W W n ! X W [ n ! X W 8Y x n ! 8Y pX Z n ! XW dZ X n ! HX ,W 4X n ! 4X 4X X n ! X Z X n ! X W Z n ! W Z X n ! 8V 4X Y n ! X ,[ X n ! V X V n ! \X ,W $Y x n ! <Z DW W n ! W Y \X n ! Z W PZ n ! PZ X PZ n ! [ X V n ! Z V [ n ! Z W Y n ! XW pX V n ! Z V xZ n ! W (Z LV n ! Y LV X n ! X X 8Y x n ! `Y pX W n ! 4X W W n ! W W V n ! V V Y n ! Z Y X n ! Y Z X n ! W X X n ! Z W 8Y x n ! V pX X n ! Z X W n ! X V $Y x n ! $Y DW Z n ! V Z PZ n ! HX X DW n ! Y DW <Z x n ! V dZ XW n ! xZ DW Y n ! Y pX Z n ! 4X Z X n ! Y V V n ! ,[ V V n ! W 4X xZ n ! XW (Z V n ! V V Z n ! Z Z V n ! V V Z n ! ,[ Z LY n ! LY Z X n ! Y W X n ! X 4X (Z n ! pX (Z 8V n ! Z W Y n ! dZ Y W n ! Z Y Y n ! (Z Y X n ! 8V LV Z n ! Z Z Z n ! V Z (Z n ! Y (Z xZ n ! Y (Z W n ! X Y dZ n ! (Z dZ [ n ! LY W Y n ! Y Z V x n ! `Y (Z X n ! [ ,W X n ! Z 4X Y n ! W pX V n ! Z V HX n ! [ W Z n ! W Z xZ n ! xZ (Z X n ! X LV ,[ n ! ,[ ,[ Y n ! W LV $Y x n ! `Y DW Z n ! Z Z HX n ! X W X n ! X ,W <Z x n ! `Y dZ V n ! [ ,W V n ! V 4X ,[ n ! V ,[ XW n ! W DW Z n ! W dZ W n ! W W Y n ! Y ,[ W n ! X Y ,W n ! W ,W W n ! Z W W n ! X Z X n ! X Z Y n ! Y ,[ Y n ! Z pX W n ! LV W Z n ! Z Z \X n ! [ W dZ n ! DW dZ $Y x n ! V DW ,W n ! X ,W V n ! V ,W DW n ! pX DW PZ n ! LY X <Z x n ! 8Y dZ ,W n ! Z ,W `Y x n ! $Y Y Z n ! V Z LV n ! W LV Y n ! X Z Y n ! X ,[ DW n ! dZ DW (Z n ! DW (Z Z n ! LV Z <Z x n ! $Y dZ X n ! W W X n ! PZ ,W ,[ n ! Z ,[ HX n ! PZ W Z n ! Z Z Z n ! ,[ Z pX n ! dZ pX ,[ n ! V ,[ X n ! X X [ n ! V W 4X n ! Z 4X Z n ! Y Y LY n ! X Z W n ! X W X n ! Y V pX n ! DW pX V n ! V V Z n ! Z Z X n ! X V Z n ! Z Z 8Y x n ! $Y pX Z n ! X Z Y n ! V LV V x n ! 8Y (Z LY n ! [ Z W n ! W W [ n ! PZ W X n ! X 4X Z n ! Y Z W n ! Y V V n ! Z ,W `Y x n ! <Z Y Z n ! Z Y W n ! ,W W X n ! LY ,W W n ! W W Z n ! V Z dZ n ! pX dZ pX n ! Y pX Z n ! V Z X n ! W 4X 4X n ! W 4X Z n ! ,W Z DW n ! DW DW (Z n ! dZ (Z W n ! Z Y Z n ! [ Z LV n ! LV LV HX n ! LY W Y n ! LV Y Y n ! W Y Z n ! W Z 8V n ! X W V n ! Z V [ n ! \X W [ n ! HX W W n ! X V W n ! ,W W 8V n ! X W X n ! Z X [ n ! X W V n ! X 4X `Y x n ! `Y Y X n ! W LV W n ! W V W n ! Y Z XW n ! Y DW W n ! Y V Z n ! W Z <Z x n ! <Z dZ V , / n K V , / n L V , / n ,L V n 4X V , / n M V , / n K V , / n L V n V V n X V n pX V , / n xK V , / n dM V , / n L V , / n J V , / n M V n Y V x n 8Y Z n 1 Z Z Z lW n 1 lW lW lW V n 1 V V W dM n 1 dM dM K Z n 1 Z Z Z X n 1 X X 8V W n 1 W W W L n 1 L L L 8Y x n 1 8Y 8Y pX Z n 1 Z Z Z Y n 1 Y Y Y <Z x n 1 <Z <Z dZ Z n 1 Z Z W X n 1 X X V W n 1 W W W W n 1 W W W Y n 1 Y Y W V n 1 V V X \X n 1 \X \X [ Y n 1 Y Y Y Y n 1 Y Y Z [ n 1 [ [ HX Z n 1 Z Z Y J n 1 J J L Y n 1 Y Y @[ L n 1 L L L Z n 1 Z Z Z ,L x n 1 ,L ,L L W n 1 W W HX XW n 1 XW XW DW LY n 1 LY LY LY dM n 1 dM dM L K n 1 K K K Y n 1 Y Y LV K n 1 K K L M n 1 M M M W n 1 W W Z W n 1 W W W `V n 1 `V `V `V X n 1 X X X W n 1 W W Y M n 1 M M M V n 1 V V ,W LV n 1 LV LV X HX n 1 HX HX HX `Y x n 1 `Y `Y W Z n 1 Z Z LY W n 1 W W [ W n 1 W W W W n 1 W W Y X n 1 X X X Z n 1 Z Z Y tV x n 1 tV tV `V X n 1 X X Z V n 1 V V X V n 1 V V W X n 1 X X tY Z n 1 Z Z LY X n 1 X X X (Z n 1 (Z (Z (Z V n 1 V V V Z n 1 Z Z Z <Z x n 1 <Z <Z Z @[ n 1 @[ @[ @[ Y n 1 Y Y Y Y n 1 Y Y ,[ xZ n 1 xZ xZ xZ L n 1 L L K xZ n 1 xZ xZ (Z Y n 1 Y Y Y $Y x n 1 $Y $Y XW X n 1 X X LV XW n 1 XW XW XW `Y x n 1 `Y `Y Y (Z n 1 (Z (Z xZ 4X n 1 4X 4X X X n 1 X X X V x n 1 V V (Z dZ n 1 dZ dZ dZ V n 1 V V 4X V n 1 V V V Y n 1 Y Y W [ n 1 [ [ W PZ n 1 PZ PZ X M n 1 M M xK V n 1 V V V X n 1 X X W X n 1 X X PZ [ n 1 [ [ W pX n 1 pX pX Y DW n 1 DW DW XW W n 1 W W Z ,W n 1 ,W ,W ,W 8Y x n 1 8Y 8Y Y 8V n 1 8V 8V W X n 1 X X X tV x n 1 tV tV T[ LV n 1 LV LV LV tY n 1 tY tY tY W n 1 W W V ,[ n 1 ,[ ,[ ,[ Z n 1 Z Z Z 8V n 1 8V 8V 8V K n 1 K K L Y n 1 Y Y Y X n 1 X X lW W n 1 W W V L n 1 L L K T[ n 1 T[ T[ `V Z n 1 Z Z Z L n 1 L L L J n 1 J J K 4X n 1 4X 4X 4X W n 1 W W W L n 1 L L M tY n 1 tY tY lW M n 1 M M L W n 1 W W V X n 1 X X X PZ n 1 PZ PZ PZ X n 1 X X PZ W n 1 W W W Y n 1 Y Y pX ,L x n 1 ,L ,L M Z n 1 Z Z X X n 1 X X 4X DW n 1 DW DW DW dZ n 1 dZ dZ Z V x n 1 V V xZ LY n 1 LY LY Z Z n 1 Z Z Z Z n 1 Z Z dZ W n 1 W W W W n 1 W W 8V @[ n 1 @[ @[ Y Z n 1 Z Z Z xK n 1 xK xK M V n 1 V V X Y n 1 Y Y X HX n 1 HX HX W Y n 1 Y Y Y K n 1 K K K `V n 1 `V `V T[ $Y x n 1 $Y $Y DW [ n 1 [ [ [ X n 1 X X ,W \X n 1 \X \X W T[ n 1 T[ T[ T[ X n 1 X X X ,[ n 1 ,[ ,[ Y xK n 1 xK xK xK lW n 1 lW lW tY ,W n 1 ,W ,W X pX n 1 pX pX pX V , / n L V , / n M V n W V , / n xK V , / n K V n V V , / n J V , / n L V , / n M V , / n L V , / n dM V , / n ,L V , / n K Z , / n J Z n L Z , / n K Z n dM Z , / n M Z n Z Z n Z Z , / n xK Z , / n L Z n LY Z n Z Z n @[ Z n Y Z n K Z , / n M Z n Y Z , / n L Z , / n ,L Y , / n M Y , / n K Y n K Y n dM Y n L Y , / n L Y n Z Y n Z Y n Y Y , / n M Y , / n ,L Y , / n J Y n Y Y , / n L Y n LY Y n Z Y , / n xK Y n @[ Z n L Z , / n M Z , / n ,L Z , / n xK Z , / n K Z n X Z n J Z n K Z , / n L Z , / n L Z n Z Z , / n M Z , / n dM dM x 0 ] dM \ dM x @ ] dM \ \ ,L x 0 ] ,L \ ,L x @ ] ,L \ \ dM x 0 \] dM \ dM x @ \] dM \ \ ,L x 0 @] ,L \ ,L x @ @] ,L \ \ dM x 0 \ dM \ dM x @ \ dM \ \ ,L x 0 \ ,L \ ,L x @ \ ,L \ \ J , / n M J , / n L J , / n xK J n K J n X J , / n dM J , / n L J , / n ,L J , / n K J , / n M J n J J n L J n Z K n R K n P K n P K x P K n R K x XR K n R K n R K x tR K x <R K n P K x P K x R K x Q K x XR K n P K x P K x P dM n X dM n Y dM n X dM n Z dM n dM Z n Z Z n 8V Z x n $Y Z n X Z n W Z n XW Z n PZ Z n X Z n Y Z n DW Z n X XW x n $Y Z n W `V x n tV HX n [ [ n \X X n Y K x n ,L K n dM W x n `Y xZ x n V Z x n <Z 8V n X Y x n 8Y PZ n X lW n X LY n Z W n W K n J W n Z X n V X n V W n " J J W n " J J W n " J J W n " J J V x n (Z V x n V V x n X V x n 4X V x n V V x n X V x n X V x n V V x n ,W V x n xZ V x n V Y n Z Y n X Y n W Y n PZ Y n X Y n XW Y x n $Y Y n Y Y n X Y n 8V Y n DW K n \ K L n 8\ L L n [ L K n \ K X n " J J X n " J J X n " J J X n " J J `Y x n `Y Q \X n \X lQ Z n Z \Q \X n \X \Q ,L x n ,L xP W n W |Q $Y x n $Y Q tV x n tV Q W n W Q [ n [ Q <Z x n <Z lQ X n X Q V x n V ,R X n X Q Y n Y Q V n V $R J n J xP $Y x n $Y Q W n W Q V n V $R Y n Y LQ \X n \X R 8Y x n 8Y Q `Y x n `Y R X n X Q Z n Z R X n X Q <Z x n <Z R X n X Q V n V Q X n X R Z n Z LQ X n X Q V n V Q `Y x n `Y LQ V x n V $R Z n Z lQ W n W Q 8Y x n 8Y |Q W n W Q Z n Z R dM n dM `O ,L x n ,L O $Y x n $Y R V n V ,R ,L x n ,L `O J n J O [ n [ |Q tV x n tV Q dM n dM xP Z n Z Q V x n V Q X n X R tV x n tV Q 8Y x n 8Y Q [ n [ Q W n W Q J n J `O V n V ,R Y n Y R X n X Q <Z x n <Z \Q dM n dM O W n Y W n \X W n W W x n <Z W n V W n Z W n Z W n [ W n W W n W W n dZ [ n ,Q [ x 0 ,Q \ \ X n W X n M X n L X n X X , / n K X n Y X n ,[ X n W X n X X , / n J X , / n M X , / n L X x n ,L X , / n dM X n Y X n LV X , / n xK X , / n K X n V X , / n L X n PZ X n X [ x n 0 tV J hN [ n 0 X J hN [ n 0 X J N [ x n 0 tV J PN [ x n 0 tV J N [ n 0 X J PN Z n @[ Z n Z Z , / n J Z n Z Z n L Z n dM Z , / n L Z , / n M Z n Y Z , / n ,L Z , / n K Z , / n M Z , / n L Z n Z Z n K Z , / n xK Z n Y Z n LY W x n ,L W n W W n X W , / n L W n ,[ W , / n K W n V W n PZ W n X W , / n J W , / n K W n M W n W W , / n M W , / n dM W n Y W n L W n LV W n Y W , / n L W n X W , / n xK [ , / n M [ x n `Y [ , / n M [ n V [ , / n dM [ , / n L [ , / n L [ , / n xK [ , / n J [ , / n K [ n W [ n W [ n [ [ , / n K [ n X [ n HX [ , / n L [ n W [ n lW [ n Y [ n X [ , / n ,L [ n 8V [ n X [ n tY tY n W tY n T[ tY n Y tY x n tV tY n `V tY n tY tY n lW tY n V tY n W tY n @[ tY n X xK n xK xK n L xK n K xK n dM xK n K xK n J xK n M xK n L xK n M xK x n ,L xK n L K n \ K dM n L\ dM L n [ L L n 8\ L K n \ K dM n h\ dM V n X V n ,W V n (Z V n 4X V n xZ V n V V n X V n X V n V V n V V n V dM n " J J dM n " J J dM n " J J dM n " J J X n `V X , / n L X n T[ X n W X n Z X n X X , / n M X , / n xK X , / n K X x n tV X n V X , / n J X , / n dM X , / n M X n DW X , / n L X n XW X , / n ,L X , / n K X , / n L X x n $Y X n Z X n ,W [ n ,V J [ n @V J [ n TV J [ n hV J [ n |V J [ n V J [ n K J [ n V J [ n V J [ n V J [ n V J [ n V J [ n W J [ n W J [ n M J [ n 8W J [ n LW J [ n L J [ n `W J [ n tW J [ n W J [ n XM J [ n W J [ n W J [ n W J [ n W J [ n W J [ n X J [ n X J [ n (X J [ n <X J [ n PX J [ n J J [ n dX J [ n xX J [ n X J [ n X J [ n X J [ n K J [ n lK J [ n X J [ n X J [ n X J [ n Y J [ n Y J [ n M J [ n ,Y J [ n @Y J [ n TY J [ n hY J [ n |Y J [ n Y J [ n Y J [ n Y J [ n Y J [ n Y J [ n Y J [ n L J [ n Z J [ n Z J [ n 0Z J [ n DZ J [ n XZ J [ n lZ J [ n Z J [ n Z J [ n Z J [ n Z J [ n Z J [ n Z J [ n L J [ n Z J [ n [ J [ n L J [ n [ J [ n 4[ J [ n H[ J Y n ,[ Y n pX Y n W Y n Y Y n [ Y x n 8Y Y n Z Y n Z Y n HX Y n Y Y n W X n LV X n Y X n LY X n X X n X X n W X n Z X n Z X n Y X n Z X x n `Y \X , / n J \X , / n ,L \X , / n L \X , / n xK \X , / n dM \X n W \X n \X \X , / n K \X , / n L \X , / n K \X , / n L \X n [ \X , / n M \X , / n M tV x n 1 tV tV tV 8Y x n 1 8Y 8Y 8Y \X n 1 \X \X \X W n 1 W W W <Z x n 1 <Z <Z <Z `Y x n 1 `Y `Y `Y V n 1 V V V Z n 1 Z Z Z [ n 1 [ [ [ ,L x n 1 ,L ,L ,L Z n 1 Z Z Z X n 1 X X X V n 1 V V V X n 1 X X X J n 1 J J J W n 1 W W W dM n 1 dM dM dM $Y x n 1 $Y $Y $Y V x n 1 V V V X n 1 X X X Y n 1 Y Y Y Y n 1 Y Y Y X n 1 X X X lW n 1 lW lW lW Z n 1 Z Z Z 8V n 1 8V 8V 8V W n 1 W W W W n 1 W W W LV n 1 LV LV LV L n 1 L L L 4X n 1 4X 4X 4X K n 1 K K K tY n 1 tY tY tY Z n 1 Z Z Z X n 1 X X X 8V , / n L 8V n X 8V n W 8V , / n L 8V , / n J 8V , / n ,L 8V n [ 8V , / n dM 8V , / n K 8V n Y 8V , / n K 8V x n `Y 8V n V 8V n X 8V n lW 8V n X 8V , / n M 8V n tY 8V n W 8V n 8V 8V , / n L 8V n W 8V , / n M 8V n HX 8V , / n xK `V n T[ `V , / n K `V , / n M `V n X `V , / n ,L `V x n tV `V x n $Y `V n ,W `V n `V `V , / n J `V , / n L `V , / n K `V , / n dM `V , / n L `V n V `V , / n L `V , / n xK `V , / n M `V n DW `V n XW `V n Z `V n W `V n Z W n Z W x n `Y W n X W n Y W n Z W n X W n LV W n Y W n W W n LY W n Z W , / n K W n W W n HX W n tY W , / n ,L W n lW W , / n J W n [ W , / n dM W , / n L W x n `Y W , / n L W n W W n V W , / n K W n X W , / n M W n 8V W n X W , / n M W n X W n Y W n W W , / n xK W , / n L Z n " J J Z n " J J Z n " J J Z n " J J W n Y W x n <Z W n W W n \X W n W W n Z W n [ W n V W n dZ W n W W n Z tV x n ! tV lW `Y x n ! `Y X X n ! X lW ,L x n ! ,L K X n ! X 8V dM n ! dM K 8Y x n ! 8Y Z [ n ! [ Z W n ! W Z Y n ! Y X X n ! X 8V W n ! W lW J n ! J K <Z x n ! <Z W V n ! V X Z n ! Z W V x n ! V X V n ! V X $Y x n ! $Y 8V Z n ! Z X \X n ! \X W (Z x n V (Z n V (Z n 4X (Z n V (Z n ,W (Z n X (Z n V (Z n X (Z n xZ (Z n X (Z n (Z [ x 0 P K 8V [ n 0 P X 8V [ ` n 0 P 8V 8V [ x 0 P 8V 8V [ x 0 P X 8V [ x 0 Q K 8V [ x 0 P 8V X [ n 0 P X X [ x 0 Q K X [ x 0 P X X [ n 0 P 8V X [ x 0 P K X XW n DW XW , / n J XW x n tV XW , / n K XW , / n L XW n `V XW x n $Y XW , / n L XW , / n xK XW n ,W XW n W XW , / n ,L XW , / n K XW , / n L XW n Z XW , / n M XW n X XW , / n M XW n XW XW , / n dM XW n V XW n T[ XW n Z X n 2 R R X X n 2 R R Y X x 2 XR R 8V X x 2 XR R X X x 2 tR R X X x 2 tR R Y X x 2 R R K X x 2 R R dM X x 2 R R 8V X x 2 R R X X x " R K X x " R X X x " R 8V X x " tR X X x " XR 8V X x " <R K PZ n Y PZ , / n K PZ , / n M PZ , / n dM PZ n X PZ n X PZ n V PZ n ,[ PZ n M PZ n Y PZ x n ,L PZ , / n J PZ n W PZ n LV PZ n PZ PZ , / n K PZ , / n xK PZ , / n L PZ n W PZ n L PZ n X PZ , / n L [ , / n L [ , / n J [ n \X [ , / n L [ , / n dM [ , / n ,L [ , / n M [ n [ [ , / n M [ , / n K [ , / n xK [ , / n K [ n W [ , / n L X n V X n X X x n V X n xZ X n V X n X X n V X n ,W X n 4X X n X X n (Z [ x n 0 `Y J N [ n 0 Y J PN [ x n 0 `Y J hN [ n 0 Y J hN [ x n 0 `Y J PN [ n 0 Y J N LY , / n xK LY n Z LY , / n M LY n Z LY , / n J LY n L LY n Y LY n Z LY n K LY , / n ,L LY , / n L LY , / n M LY n @[ LY , / n L LY n Y LY n LY LY , / n K LY n dM @^ x P 0^ xP K \ \ @^ x ` 0^ xP K \ \ \ @^ x P ^ O L \ \ @^ x ` ^ O L \ \ \ @^ x P ^ P L \ \ @^ x ` ^ P L \ \ \ @^ x P ^ 4P M \ \ @^ x ` ^ 4P M \ \ \ @^ x P ] <P dM \ \ @^ x ` ] <P dM \ \ \ @^ x P ] O ,L \ \ @^ x ` ] O ,L \ \ \ @^ x P ] xP K \ \ @^ x ` ] xP K \ \ \ @^ x P ] O L \ \ @^ x ` ] O L \ \ \ @^ x P ] P L \ \ @^ x ` ] P L \ \ \ @^ x P x] 4P M \ \ @^ x ` x] 4P M \ \ \ @^ x P \] <P dM \ \ @^ x ` \] <P dM \ \ \ @^ x P @] O ,L \ \ @^ x ` @] O ,L \ \ \ @^ x P (] xP K \ \ @^ x ` (] xP K \ \ \ @^ x P ] O L \ \ @^ x ` ] O L \ \ \ @^ x P \ P L \ \ @^ x ` \ P L \ \ \ @^ x P \ 4P M \ \ @^ x ` \ 4P M \ \ \ @^ x P \ <P dM \ \ @^ x ` \ <P dM \ \ \ @^ x P \ O ,L \ \ @^ x ` \ O ,L \ \ \ HX , / n K HX , / n K HX , / n M HX n X HX n HX HX n X HX n 8V HX n [ HX , / n L HX n V HX n W HX n X HX n W HX , / n ,L HX n tY HX , / n L HX , / n M HX , / n dM HX n lW HX , / n J HX n Y HX n W HX , / n L HX , / n xK HX x n `Y xK n xK [ n [ X n X X n X Y n Y XW n XW L n L Z n Z K n K Y n Y Z n Z W n W W n W X n X HX n HX Y n Y pX n pX 8V n 8V tY n tY W n W `V n `V (Z n (Z L n L lW n lW W n W M n M K n K ,W n ,W T[ n T[ W n W Y n Y xZ n xZ Z n Z X n X dZ n dZ Y n Y V n V Y n Y PZ n PZ Z n Z DW n DW V n V Z n Z W n W V n V 4X n 4X ,[ n ,[ X n X W n W L n L X n X LV n LV M n M @[ n @[ Z n Z LY n LY V n T[ V x n tV V n V V n `V V n Y V n @[ V n W V n tY V n X V n lW V n W <Z x n W <Z x n W <Z x n <Z <Z x n W <Z x n Y <Z x n V <Z x n [ <Z x n \X <Z x n dZ <Z x n Z <Z x n Z W n W W n Z W n V W n [ W n Y W n W W n \X W n dZ W x n <Z W n W W n Z Y n " J J Y n " J J Y n " J J Y n " J J Y n Z Y n X Y n Z Y x n `Y Y n LY Y n W Y n Y Y n LV Y n Y Y n Z Y n X K x 0^ \ K x 0 0^ \ \ L x ^ \ L x 0 ^ \ \ L x ^ \ L x 0 ^ \ \ M x ^ \ M x 0 ^ \ \ dM x ] \ dM x 0 ] \ \ ,L x ] \ ,L x 0 ] \ \ K x ] \ K x 0 ] \ \ L x ] \ L x 0 ] \ \ L x ] \ L x 0 ] \ \ M x x] \ M x 0 x] \ \ dM x \] \ dM x 0 \] \ \ ,L x @] \ ,L x 0 @] \ \ K x (] \ K x 0 (] \ \ L x ] \ L x 0 ] \ \ L x \ \ L x 0 \ \ \ M x \ \ M x 0 \ \ \ dM x \ \ dM x 0 \ \ \ ,L x \ \ ,L x 0 \ \ \ Z n 1 Z Z Z L n 1 L L L T[ n 1 T[ T[ T[ X n 1 X X X PZ n 1 PZ PZ PZ HX n 1 HX HX HX XW n 1 XW XW XW M n 1 M M M dZ n 1 dZ dZ dZ 4X n 1 4X 4X 4X M n 1 M M M `V n 1 `V `V `V W n 1 W W W Z n 1 Z Z Z tY n 1 tY tY tY Y n 1 Y Y Y DW n 1 DW DW DW V n 1 V V V pX n 1 pX pX pX W n 1 W W W W n 1 W W W X n 1 X X X lW n 1 lW lW lW W n 1 W W W xK n 1 xK xK xK Z n 1 Z Z Z W n 1 W W W @[ n 1 @[ @[ @[ Y n 1 Y Y Y ,W n 1 ,W ,W ,W X n 1 X X X Y n 1 Y Y Y X n 1 X X X K n 1 K K K Z n 1 Z Z Z (Z n 1 (Z (Z (Z L n 1 L L L V n 1 V V V ,[ n 1 ,[ ,[ ,[ 8V n 1 8V 8V 8V Z n 1 Z Z Z [ n 1 [ [ [ X n 1 X X X Y n 1 Y Y Y Y n 1 Y Y Y LV n 1 LV LV LV X n 1 X X X V n 1 V V V LY n 1 LY LY LY Z n 1 Z Z Z L n 1 L L L Y n 1 Y Y Y xZ n 1 xZ xZ xZ K n 1 K K K W n 1 W W W W n 1 W W W $Y x n X $Y x n X $Y x n DW $Y x n $Y $Y x n 8V $Y x n X $Y x n Y $Y x n W $Y x n XW $Y x n PZ $Y x n Z V n T[ V n Z V , / n L V , / n K V , / n K V n V V n ,W V , / n M V x n $Y V , / n L V , / n M V , / n J V n `V V n W V n Z V n DW V x n tV V n X V n XW V , / n xK V , / n dM V , / n ,L V , / n L `V n " J lL W n " J J X n " J XM tY n " J XL lW n " J K tY n " J K W n " J M `V n " J M W n " J <K V n " J K lW n " J tM V n " J K W n " J J X n " J <L W n " J N tV x n " J K W n " J J Y n " J lK @[ n " J $K @[ n " J HM V n " J M tY n " J ,M T[ n " J L @[ n " J M T[ n " J J V n " J L tV x n " J L Y n " J L tV x n " J M W n " J J T[ n " J M `V n " J M lW n " J K tY n " J L Y n " J L X n " J N W n " J L lW n " J K `V n " J L T[ n " J M Y n " J 4M @[ n " J 8N X n " J L tV x n " J XK W x 2 R R K W x 2 R R dM W n 2 R R X W n 2 R R Y W n 2 R R 8V W n 2 R R X W x 2 tR R X W x 2 tR R Y W x 2 XR R 8V W x 2 XR R X W x " R K W x " R X W x " R 8V W x " tR X W x " XR 8V W x " <R K tV x n 1 tV tV tV Z n 1 Z Z Z `V n 1 `V L L V n 1 V J J Z n 1 Z Z Z W n 1 W W W 4X n 1 4X 4X 4X W n 1 W W W Y n 1 Y dM dM Y n 1 Y Y Y Y n 1 Y M M PZ n 1 PZ L L W n 1 W W W X n 1 X M M \X n 1 \X J J W n 1 W L L Z n 1 Z J J Z n 1 Z Z Z Y n 1 Y Y Y 8V n 1 8V 8V 8V L n 1 L L L Z n 1 Z Z Z XW n 1 XW L L X n 1 X X X V n 1 V xK xK LV n 1 LV L L X n 1 X J J LY n 1 LY LY LY V n 1 V dM dM Z n 1 Z Z Z T[ n 1 T[ M M Y n 1 Y L L M n 1 M M M W n 1 W W W DW n 1 DW M M `V n 1 `V `V `V W n 1 W K K 8Y x n 1 8Y ,L ,L X n 1 X dM dM M n 1 M M M X n 1 X X X HX n 1 HX HX HX Z n 1 Z K K W n 1 W L L W n 1 W W W X n 1 X X X dZ n 1 dZ M M xK n 1 xK xK xK xZ n 1 xZ L L 4X n 1 4X L L 8V n 1 8V K K Z n 1 Z K K HX n 1 HX L L X n 1 X L L W n 1 W K K ,[ n 1 ,[ xK xK (Z n 1 (Z M M Y n 1 Y xK xK Y n 1 Y M M W n 1 W L L (Z n 1 (Z (Z (Z \X n 1 \X \X \X V n 1 V V V Z n 1 Z Z Z V x n 1 V ,L ,L @[ n 1 @[ @[ @[ Y n 1 Y Y Y W n 1 W W W xZ n 1 xZ xZ xZ LY n 1 LY L L V n 1 V K K Y n 1 Y Y Y T[ n 1 T[ T[ T[ XW n 1 XW XW XW L n 1 L L L pX n 1 pX M M X n 1 X X X V n 1 V V V tY n 1 tY L L V n 1 V V V pX n 1 pX pX pX lW n 1 lW K K Z n 1 Z xK xK dZ n 1 dZ dZ dZ X n 1 X K K Y n 1 Y L L dM n 1 dM dM dM V x n 1 V V V ,W n 1 ,W ,W ,W W n 1 W dM dM X n 1 X X X LV n 1 LV LV LV [ n 1 [ J J tY n 1 tY tY tY ,[ n 1 ,[ ,[ ,[ <Z x n 1 <Z ,L ,L Y n 1 Y Y Y Y n 1 Y Y Y L n 1 L L L V n 1 V V V K n 1 K K K W n 1 W W W ,W n 1 ,W K K [ n 1 [ [ [ X n 1 X X X PZ n 1 PZ PZ PZ tV x n 1 tV ,L ,L V n 1 V V V W n 1 W M M $Y x n 1 $Y ,L ,L @[ n 1 @[ M M ,L x n 1 ,L ,L ,L W n 1 W W W X n 1 X K K DW n 1 DW DW DW Z n 1 Z xK xK W n 1 W J J `Y x n 1 `Y ,L ,L Z n 1 Z Z Z W n 1 W W W `Y x n 1 `Y `Y `Y lW n 1 lW lW lW Z n 1 Z Z Z [ n 1 [ [ [ 8Y x n 1 8Y 8Y 8Y $Y x n 1 $Y $Y $Y <Z x n 1 <Z <Z <Z W n 1 W K K Z n 1 Z dM dM Y n 1 Y Y Y K n 1 K K K Z n 1 Z L L X n 1 X X X X n 1 X dM dM V n 1 V xK xK X n 1 X X X [ n 1 [ L L X n 1 X K K Y n 1 Y M M X n 1 X X X J n 1 J J J Z n 1 Z L L X n 1 X M M `Y x n Z `Y x n W `Y x n LV `Y x n Y `Y x n X `Y x n `Y `Y x n LY `Y x n X `Y x n Y `Y x n Z `Y x n Z L n W n Z W n HX W n Z W n ,[ W n pX W n Y W x n 8Y W n W W n [ W n W W n Y X n " J J X n " J J X n " J J X n " J J L n 0 [ L L K n 0 \ K K L n 0 [ L L M n 0 [ M M M n 0 [ M M L n 0 8\ L L K n 0 \ K K L n 0 [ L L X n W X n XW X n Z X n 8V X n DW X n Y X n X X n X X n X X n PZ X x n $Y [ x |^ \ [ x 0 |^ \ \ [ x d^ \ [ x 0 d^ \ \ [ x L^ \ [ x 0 L^ \ \ Z n Z Z n pX Z n Y Z n Y Z n W Z n W Z x n 8Y Z n Z Z n ,[ Z n HX Z n [ J n dM J n L J n xK J n M J n K J n ,L J n K J n L J n J J n L J n M V n M V , / n xK V n Y V , / n L V , / n K V n Y V , / n M V n W V , / n K V n X V n X V n LV V , / n L V n PZ V n L V x n ,L V n V V n ,[ V n X V n W V , / n dM V , / n J X n V X , / n K X x n ,L X , / n L X n W X , / n K X , / n xK X n W X , / n L X n X X n Y X n LV X n Y X n M X , / n dM X n ,[ X n X X n X X n L X n PZ X , / n J X , / n M W , / n J W , / n K W , / n K W , / n ,L W n \X W , / n M W , / n L W n W W , / n M W , / n L W , / n dM W , / n xK W , / n L W n [ W , / n L W n Y W n 8V W n V W , / n ,L W n W W n W W , / n L W , / n M W , / n M W , / n K W n lW W , / n K W n W W n X W , / n J W , / n xK W n X W , / n L W , / n dM W n [ W n HX W x n `Y W n X W n tY tV x n `V tV x n W tV x n @[ tV x n tY tV x n X tV x n W tV x n lW tV x n T[ tV x n Y tV x n V tV x n tV M n M M n dM M n L M x n ,L M n xK M n L M n K M n L M n K M n J M n M J n Z ,L x n ,L dM n X dM n dM ,L x n <Z ,L x n $Y dM n Z J n \X J n X J n J ,L x n `Y dM n X J n W ,L x n tV dM n Y ,Q x \[ ,Q x t[ ,Q x [ [ n 0 Y J O [ n 0 Y J O [ x n 0 <Z J O [ n 0 [ J O [ n 0 [ J N [ n 0 W J O [ n 0 W J N [ n 0 W J `O [ n 0 dZ J N [ n 0 W J dP [ n 0 \X J N [ n 0 V J N [ x n 0 <Z J HO [ n 0 V J O [ n 0 Z J P [ n 0 W J lJ [ n 0 \X J hN [ x n 0 <Z J xO [ n 0 Z J O [ n 0 W J P [ n 0 Z J <P [ n 0 W J LP [ n 0 \X J PN [ n 0 [ J P [ n 0 Z J O [ n 0 W J O [ n 0 Z J N [ n 0 Y J N [ n 0 W J xP [ n 0 dZ J P [ n 0 Z J 0O [ n 0 dZ J 4P [ n 0 V J O K n K `Y x n ! `Y X X n ! X lW [ n ! [ K \X n ! \X W X n ! X 8V J n ! J K <Z x n ! <Z W $Y x n ! $Y 8V Z n ! Z W V n ! V K ,L x n ! ,L K [ n ! [ Z W n ! W Z Y n ! Y X V n ! V K V n ! V X V n ! V X Y n ! Y K tV x n ! tV lW X n ! X K X n ! X K $Y x n ! $Y K `Y x n ! `Y K Z n ! Z K W n ! W K V x n ! V K V x n ! V X tV x n ! tV K W n ! W K X n ! X 8V dM n ! dM K 8Y x n ! 8Y Z 8Y x n ! 8Y K W n ! W lW X n ! X K Z n ! Z X W n \X Z n W X x n `Y X x n V Z n [ X n Y Z x n 8Y K n dM K x n ,L 8V x n $Y X n V 8V n X lW x n tV 8V n X lW n X lW n W W x n <Z W n Z X n V X n Z K n J K n M K x n ,L K n dM K n M K n xK K n J K n K K n K K n L K n L K n L [ x \ L [ x ^ M [ x ] L [ x ] dM [ x \ ,L [ x \] dM [ x (] K [ x ] ,L [ x \ dM [ x x] M [ x ^ L [ x ] L [ x \ M [ x @] ,L [ x ] L [ x 0^ K [ x ^ L [ x ] K K n Z K , / n M K n Z K , / n L K n Y K n LY K , / n xK K n Z K n dM K , / n K K n @[ K , / n J K , / n M K , / n ,L K , / n L K n K K n L K n Y ,L x n L ,L x n M ,L x n ,L ,L x n M ,L x n K ,L x n K ,L x n L ,L x n L ,L x n dM ,L x n xK ,L x n J M n L M n K M n L M n dM M n J M n M M n xK M n M M n K M n L M x n ,L W n X W n lW W n tY W n Y W n V W n W W n @[ W x n tV W n `V W n T[ W n W x n P R ^ J J n P S Y J J n P ^ W J J n P ^ ^ J J n P N L J J n P ^ ^ J J n P Q ^ J J n P tT V J J n P _ $_ J J n P Q 8_ J J n P Q L_ J J n P `_ t_ J J n P T _ J J n P HS _ J J n P _ _ J J x n P HO K J J x n P U _ J J n P \Q _ J J n P ` X J J x n P 8U ` J J n P (` 8` J J x n P V Y J J n P L` Y J J n P O tM J J n P \` H[ J J n P p` W J J n P LP M J J n P (U [ J J n P ` ` J J n P ` Y J J n P ` ` J J n P Q `W J J x n P T |V J J n P 0O lL J J n P ` ` J J n P `O K J J n P a V J J x n P `U 0Z J J n P a DZ J J n P 4a TV J J n P Da Ta J J n P ha <X J J n P |a a J J n P a a J J n P O XL J J n P U a J J n P a Z J J n P a @Y J J x n P LU TY J J n P b Y J J n P U Z J J n P b (b J J n P <b Y J J n P Lb V J J x n P T \b J J n P Q X J J n P U V J J n P tb W J J n P S b J J n P U xX J J n P N L J J n P b V J J n P b b J J n P b b J J n P b Z J J n P lQ W J J n P c c J J n P 4c Hc J J x n P 0T hV J J n P \c pc J J n P c XZ J J n P c @V J J n P c Z J J n P c 8W J J n P LQ c J J n P c c J J n P ,R d J J n P d Y J J n P 0d Dd J J n P S Z J J n P Q Z J J n P Xd Z J J n P Q X J J n P S PX J J n P ld W J J n P d d J J n P O <L J J n P S d J J n P d W J J x n P |S ,Y J J n P d d J J n P d e J J n P O XM J J n P T e J J n P (e <e J J n P Pe Z J J n P de xe J J n P lJ $K J J n P e (X J J n P O lK J J n P P J J J n P e 4[ J J n P hS e J J n P P K J J n P e e J J n P e e J J n P f $f J J n P U 8f J J n P S Lf J J n P `f pf J J n P T W J J n P f f J J n P S tW J J n P T X J J n P f f J J x n P U f J J n P f X J J n P f g J J n P g 4g J J n P T X J J n P V Hg J J n P \g LW J J n P lg [ J J n P g V J J n P g |Y J J n P N M J J n P hN J J J n P g g J J n P g Y J J n P g X J J n P Q ,V J J n P g h J J n P N L J J n P h X J J n P (h dX J J n P <h lZ J J n P Ph Z J J n P T dh J J n P xh h J J n P dP K J J n P h h J J n P h h J J n P R h J J x n P ,S i J J n P PN J J J n P i W J J n P N <K J J n P P L J J x n P xO L J J n P (i hY J J n P 8i Li J J n P `i ti J J n P i i J J n P i i J J Z n 1 Z Z Z XW n 1 XW XW DW LV n 1 W W LV LV n 1 Y Y LV Z n 1 Y Y dZ Z n 1 Z Z Y X n 1 ,W ,W X X n 1 Y Y Z XW n 1 Y Y DW Z n 1 W W Z V n 1 Z Z V Z n 1 Z Z Z Z n 1 [ [ Z <Z x n 1 <Z <Z dZ W n 1 Z Z W X n 1 X X V Y n 1 W W Y Y n 1 dZ dZ Y DW n 1 Y Y DW Z n 1 \X \X Z Z n 1 W W Z ,[ n 1 Z Z ,[ [ n 1 [ [ W Y n 1 W W ,[ X n 1 W W W V n 1 X X ,W PZ n 1 HX HX X X n 1 X X V W n 1 Z Z Y Y n 1 Y Y Z \X n 1 X X W W n 1 Y Y W X n 1 [ [ ,W 8V n 1 X X W Z n 1 X X Z xZ n 1 Z Z (Z HX n 1 PZ PZ W X n 1 Y Y W Z n 1 Z Z Z Z n 1 Z Z Z pX n 1 DW DW pX X n 1 V V X Z n 1 W W Z Y n 1 X X Z [ n 1 PZ PZ W V n 1 Z Z ,W Y n 1 W W Z X n 1 X X 4X X n 1 Y Y V W n 1 xZ xZ Y Y n 1 Y Y LV XW n 1 W W DW Z n 1 X X Z Y n 1 Y Y Y W n 1 Z Z W XW n 1 xZ xZ DW Z n 1 4X 4X Z 8V n 1 X X W W n 1 W W Z Z n 1 ,W ,W Z (Z n 1 pX pX (Z ,W n 1 ,W ,W ,W X n 1 W W X pX n 1 (Z (Z pX X n 1 X X X Z n 1 Y Y Z pX n 1 Y Y pX (Z n 1 dZ dZ (Z V n 1 V V ,W \X n 1 V V W W n 1 X X W Y n 1 Z Z pX 4X n 1 Z Z 4X V n 1 V V V W n 1 X X W Y n 1 W W pX 8Y x n 1 `Y `Y pX \X n 1 Z Z W W n 1 X X V W n 1 X X Y W n 1 V V Z 8V n 1 Z Z W V n 1 X X 4X Z n 1 X X Y Y n 1 xZ xZ pX 8Y x n 1 $Y $Y pX X n 1 X X Z PZ n 1 [ [ X Y n 1 4X 4X Y V n 1 \X \X ,W Z n 1 8V 8V Z 4X n 1 Y Y 4X 4X n 1 LV LV 4X xZ n 1 XW XW (Z Z n 1 xZ xZ dZ W n 1 8V 8V Y [ n 1 X X W [ n 1 X X W W n 1 Y Y Z Z n 1 V V Z <Z x n 1 V V dZ X n 1 X X Z V n 1 W W 4X W n 1 W W W (Z n 1 (Z (Z (Z V n 1 V V V Z n 1 Z Z Z XW n 1 Z Z DW W n 1 ,W ,W W `Y x n 1 8Y 8Y Y ,W n 1 W W ,W 8Y x n 1 <Z <Z pX Y n 1 Y Y Y V x n 1 `Y `Y (Z V x n 1 8Y 8Y (Z Y n 1 Y Y ,[ W n 1 W W W W n 1 4X 4X W `Y x n 1 $Y $Y Y Y n 1 LV LV Y Z n 1 Z Z Z X n 1 Z Z 4X Z n 1 V V Z xZ n 1 xZ xZ (Z Z n 1 ,[ ,[ Z HX n 1 [ [ W X n 1 Z Z W X n 1 X X LV LY n 1 PZ PZ Z xZ n 1 Y Y (Z W n 1 W W W 8Y x n 1 V V pX [ n 1 Z Z W <Z x n 1 $Y $Y dZ V n 1 Z Z 4X Y n 1 Y Y ,[ LY n 1 X X Z W n 1 X X Y X n 1 X X X LV n 1 4X 4X LV X n 1 8V 8V LV V x n 1 V V (Z W n 1 ,W ,W W ,W n 1 Z Z ,W W n 1 LV LV W ,[ n 1 V V ,[ PZ n 1 PZ PZ X V n 1 V V V X n 1 W W LV X n 1 W W Z X n 1 X X W V n 1 Z Z V X n 1 Z Z LV Y n 1 DW DW Y V n 1 Y Y 4X W n 1 W W Y [ n 1 V V W W n 1 W W Y [ n 1 [ [ W W n 1 Y Y V xZ n 1 W W (Z Z n 1 XW XW dZ (Z n 1 DW DW (Z dZ n 1 (Z (Z dZ V n 1 V V V X n 1 \X \X X X n 1 W W V 8V n 1 8V 8V W [ n 1 LY LY W V x n 1 <Z <Z (Z 8V n 1 W W W LY n 1 [ [ Z X n 1 X X ,W pX n 1 dZ dZ pX DW n 1 pX pX DW Y n 1 X X ,[ ,[ n 1 ,[ ,[ ,[ X n 1 X X LV X n 1 W W 4X $Y x n 1 8Y 8Y DW 8Y x n 1 8Y 8Y pX $Y x n 1 V V DW Y n 1 pX pX Y LY n 1 HX HX Z ,[ n 1 Z Z ,[ W n 1 W W V DW n 1 (Z (Z DW X n 1 V V W Z n 1 V V Z W n 1 Y Y Y X n 1 HX HX ,W Y n 1 (Z (Z Y ,W n 1 X X ,W [ n 1 \X \X W Z n 1 LV LV Z 4X n 1 4X 4X 4X V n 1 V V 4X W n 1 W W W ,W n 1 W W ,W Y n 1 Y Y Z `Y x n 1 V V Y Z n 1 W W Y <Z x n 1 `Y `Y dZ Z n 1 W W Z V n 1 [ [ ,W dZ n 1 dZ dZ dZ Y n 1 Y Y pX X n 1 LY LY ,W HX n 1 LY LY W Z n 1 ,[ ,[ Z DW n 1 dZ dZ DW Y n 1 X X Z Z n 1 Y Y Y HX n 1 X X W $Y x n 1 <Z <Z DW X n 1 X X 4X $Y x n 1 `Y `Y DW Y n 1 XW XW pX W n 1 Z Z W W n 1 Z Z Y DW n 1 DW DW DW dZ n 1 DW DW dZ LY n 1 LY LY Z Z n 1 Z Z Z `Y x n 1 <Z <Z Y dZ n 1 pX pX dZ Z n 1 V V Y Y n 1 X X LV dZ n 1 Y Y dZ Z n 1 Z Z dZ W n 1 W W W V n 1 ,[ ,[ V LV n 1 LV LV LV Z n 1 X X Z W n 1 X X Z V n 1 Z Z V Z n 1 Z Z Z Z n 1 V V Z ,[ n 1 V V ,[ Z n 1 W W dZ (Z n 1 Y Y (Z X n 1 [ [ X X n 1 Y Y Z X n 1 PZ PZ ,W V x n 1 $Y $Y (Z V n 1 Z Z V X n 1 8V 8V 4X Y n 1 Z Z LV W n 1 Y Y V Y n 1 W W LV Y n 1 Z Z Y [ n 1 HX HX W X n 1 W W X LV n 1 Z Z LV Y n 1 V V LV Z n 1 V V Z $Y x n 1 $Y $Y DW W n 1 XW XW Y W n 1 Z Z Z X n 1 Y Y V <Z x n 1 8Y 8Y dZ \X n 1 \X \X W W n 1 X X V 4X n 1 W W 4X X n 1 Z Z X X n 1 Z Z X V n 1 ,[ ,[ V \X n 1 [ [ W pX n 1 pX pX pX Z n 1 X X Z `Y x n 1 `Y `Y Y HX n 1 HX HX W PZ n 1 LY LY X Y n 1 X X ,[ PZ n 1 X X X xK , / n M xK n xK xK , / n L xK , / n K xK , / n K xK , / n L xK , / n J xK , / n ,L xK n M xK , / n L xK , / n dM W n Z W n W W n Z W x n 8Y W n Y W n Y W n [ W n pX W n W W n ,[ W n HX X n 8V X n W X n X X x n $Y X n Y X n XW X n X X n X X n DW X n PZ X n Z tV , / n J tV x n ,W tV x n `V tV , / n K tV , / n dM tV x n Z tV , / n L tV , / n xK tV x n T[ tV x n W tV x n Z tV , / n L tV x n X tV , / n ,L tV , / n M tV , / n K tV , / n M tV x n $Y tV x n tV tV x n DW tV x n V tV x n XW tV , / n L 4X n V 4X n xZ 4X n (Z 4X n X 4X n X 4X n 4X 4X n ,W 4X n X 4X n V 4X x n V 4X n V L n K xK n xK DW n XW Y n W V n W W n 8V Y n Y M n L M n M L n L W n [ Z n Y xK n M Z n LY 4X n 4X W n W pX n Y tY n lW V n W pX n pX tY n tY LV n X Z n X (Z n (Z T[ n `V Z n Z K n L ,[ n Y W n W Y n @[ Y n Y X n X T[ n T[ dZ n dZ Z n Z dZ n Z Y n W V n V (Z n xZ K n K Z n Z DW n DW V n V Y n Y V n V Z n Z ,[ n ,[ 4X n X LV n LV W n W V n X W n HX ,W n X X n PZ ,W n ,W Z n Z L n [ L M n [ M M n [ M L n [ L L n [ L K n \ K K n \ K L n 8\ L ,W n V ,W x n V ,W n V ,W n X ,W n V ,W n xZ ,W n 4X ,W n (Z ,W n X ,W n X ,W n ,W $Y x n X $Y , / n xK $Y x n Z $Y , / n L $Y x n tV $Y , / n L $Y , / n M $Y x n `V $Y x n Z $Y x n XW $Y , / n L $Y , / n J $Y x n V $Y , / n M $Y x n W $Y , / n K $Y x n ,W $Y x n $Y $Y , / n dM $Y x n T[ $Y , / n ,L $Y , / n K $Y x n DW dM n dM O $Y x n $Y R X n X R J n J PN Y n Y S W n W S X n X $S J n J hN <Z x n <Z ,S X n X @S W n W HS $Y x n $Y \S X n X hS ,L x n ,L HO 8Y x n 8Y |S V n V S \X n \X S [ n [ S V x n V S ,L x n ,L xO Z n Z S Z n Z S V n V S W n W S \X n \X S dM n dM <P V x n V T W n W T tV x n tV 0T tV x n tV DT W n W PT Y n Y XT Z n Z `T 8Y x n 8Y hT V n V tT X n X T V x n V T X n X T \X n \X T Y n Y T Z n Z T `Y x n `Y T V n V U dM n dM O X n X U `Y x n `Y U ,L x n ,L O [ n [ (U 8Y x n 8Y 8U `Y x n `Y LU <Z x n <Z `U <Z x n <Z tU W n W U J n J N tV x n tV U X n X U Z n Z U Z n Z U [ n [ U V n V U X n X U $Y x n $Y V V n V V [ n 0 PZ J O [ x n 0 $Y J HO [ n 0 X J hN [ n 0 DW J 4P [ n 0 X J PN [ n 0 X J O [ n 0 W J O [ n 0 8V J `O [ n 0 Z J O [ n 0 8V J O [ n 0 XW J P [ n 0 X J <P [ n 0 X J N [ n 0 W J O [ n 0 X J dP [ n 0 Y J N [ n 0 DW J N [ x n 0 $Y J xO [ n 0 PZ J N [ n 0 XW J N [ n 0 XW J 0O [ n 0 DW J P [ n 0 PZ J P [ n 0 X J O [ n 0 X J P [ n 0 Y J LP [ n 0 W J N [ n 0 Z J O [ n 0 Z J N [ x n 0 $Y J O [ n 0 Y J lJ [ n 0 X J O [ n 0 8V J xP Y n LV Y n Y Y n Y Y n Z Y n Z Y x n `Y Y n X Y n W Y n LY Y n Z Y n X [ n 0 W J 0O [ x n 0 `Y J HO [ n 0 LV J N [ n 0 Z J N [ n 0 W J P [ n 0 X J N [ n 0 Z J dP [ n 0 Y J <P [ n 0 Z J O [ n 0 X J lJ [ n 0 LV J O [ n 0 Z J P [ n 0 X J `O [ n 0 Y J 4P [ n 0 Y J N [ n 0 Y J P [ n 0 W J N [ n 0 Z J PN [ n 0 Z J hN [ n 0 Z J O [ x n 0 `Y J O [ n 0 X J LP [ n 0 X J xP [ n 0 Z J N [ n 0 X J O [ n 0 LV J O [ n 0 LY J O [ x n 0 `Y J xO [ n 0 LY J N [ n 0 Z J O [ n 0 Y J O [ n 0 LY J P [ n 0 Y J O [ n 0 Z J O [ n 0 [ J PN [ n 0 Z J `O [ n 0 [ J hN [ n 0 ,[ J O [ n 0 W J O [ n 0 Y J LP [ n 0 HX J P [ n 0 Z J xP [ n 0 W J <P [ n 0 W J O [ n 0 pX J 4P [ n 0 W J O [ n 0 Y J P [ n 0 HX J O [ n 0 ,[ J N [ n 0 [ J N [ n 0 Y J N [ n 0 Z J O [ x n 0 8Y J HO [ n 0 Y J N [ n 0 W J dP [ n 0 Z J N [ x n 0 8Y J O [ x n 0 8Y J xO [ n 0 Y J 0O [ n 0 ,[ J O [ n 0 pX J P [ n 0 W J P [ n 0 HX J N [ n 0 Z J O [ n 0 pX J N [ n 0 Y J lJ K , / n L K , / n M K , / n xK K , / n dM K n Z K n K K , / n L K , / n ,L K , / n K K n L K n X K n J K , / n M Y , / n K Y , / n L Y n M Y , / n K Y , / n dM Y , / n J Y n Y Y n Y Y n X Y n ,[ Y n X Y n X Y x n ,L Y n LV Y n W Y n L Y n PZ Y , / n L Y n V Y , / n M Y , / n xK Y n W V , / n M V x n (Z V , / n L V x n xZ V x n V V , / n xK V , / n K V , / n L V , / n L V , / n dM V , / n ,L V , / n K V , / n J V , / n M 8V n DW 8V n Z 8V n PZ 8V n W 8V n X 8V n X 8V n 8V 8V x n $Y 8V n Y 8V n XW 8V n X W , / n J W , / n dM W n Z W n Y W , / n ,L W , / n L W , / n xK W n W W , / n L W , / n L W , / n M W , / n K W , / n K W , / n M Z n 0 Z Z LQ <Z x n 0 <Z <Z \Q <Z x n 0 <Z <Z lQ W n 0 W W |Q X n 0 X X Q X n 0 X X Q J n 0 J J O Y n 0 Y Y Q tV x n 0 tV tV Q [ n 0 [ [ Q X n 0 X X Q V x n 0 V V Q X n 0 X X Q 8Y x n 0 8Y 8Y Q $Y x n 0 $Y $Y Q W n 0 W W Q `Y x n 0 `Y `Y Q <Z x n 0 <Z <Z R \X n 0 \X \X \Q Y n 0 Y Y R ,L x n 0 ,L ,L `O J n 0 J J `O $Y x n 0 $Y $Y R V n 0 V V Q ,L x n 0 ,L ,L O `Y x n 0 `Y `Y R X n 0 X X R dM n 0 dM dM O X n 0 X X Q Z n 0 Z Z R tV x n 0 tV tV Q Z n 0 Z Z \Q V n 0 V V $R W n 0 W W Q X n 0 X X Q dM n 0 dM dM `O `Y x n 0 `Y `Y LQ W n 0 W W Q V n 0 V V $R dM n 0 dM dM xP W n 0 W W Q 8Y x n 0 8Y 8Y Q $Y x n 0 $Y $Y Q tV x n 0 tV tV Q Z n 0 Z Z R [ n 0 [ [ |Q V x n 0 V V ,R V n 0 V V ,R V n 0 V V Q [ n 0 [ [ Q J n 0 J J xP X n 0 X X R \X n 0 \X \X lQ V x n 0 V V $R Z n 0 Z Z Q ,L x n 0 ,L ,L xP V n 0 V V ,R Y n 0 Y Y LQ Z n 0 Z Z lQ 8Y x n 0 8Y 8Y |Q X n 0 X X Q W n 0 W W Q \X n 0 \X \X R dZ , / n M dZ , / n J dZ n dZ dZ , / n dM dZ n Z dZ , / n xK dZ , / n L dZ , / n K dZ , / n L dZ , / n ,L dZ x n <Z dZ , / n L dZ , / n K dZ , / n M J n ! Z Z J n ! W W dM n ! Y Y ,L x n ! `Y `Y J n ! J J ,L x n ! ,L ,L J n ! \X \X dM n ! Z Z ,L x n ! <Z <Z dM n ! X X dM n ! dM dM dM n ! X X J n ! X X ,L x n ! tV tV ,L x n ! $Y $Y PZ n Z PZ n DW PZ n X PZ n 8V PZ n W PZ n X PZ n X PZ x n $Y PZ n Y PZ n PZ PZ n XW n @ N M J n @ S d J x n @ U _ J n @ U 8f J n @ c Z J n @ e 4[ J n @ h h J x n @ R ^ J n @ hS e J n @ f f J n @ L` Y J x n @ ,S i J n @ N L J n @ 0O lL J n @ P J J n @ U Z J n @ (i hY J n @ `_ t_ J n @ Ph Z J n @ b Y J n @ S Y J x n @ 8U ` J n @ lg [ J n @ N L J n @ tb W J n @ tT V J n @ (h dX J n @ S tW J n @ T e J n @ f X J n @ f $f J n @ h X J n @ xh h J n @ T X J n @ HS _ J n @ P L J n @ a V J n @ hN J J n @ T _ J n @ Q 8_ J n @ ` X J x n @ LU TY J n @ `f pf J n @ c 8W J n @ e e J n @ Q Z J n @ i i J n @ Q ,V J n @ h h J n @ Q ^ J n @ g 4g J n @ b b J n @ g g J n @ lJ $K J n @ b b J n @ g h J n @ _ $_ J n @ ^ ^ J n @ c c J n @ R h J x n @ V Y J n @ d d J x n @ HO K J n @ \` H[ J x n @ T \b J n @ d d J n @ Xd Z J n @ O XL J n @ |a a J n @ de xe J n @ O lK J n @ g V J n @ e (X J n @ Q X J n @ S Lf J n @ i W J n @ _ _ J n @ f f J n @ <h lZ J n @ a @Y J n @ ^ ^ J n @ O XM J x n @ 0T hV J n @ V Hg J n @ p` W J n @ PN J J n @ b Z J n @ O <L J n @ (e <e J n @ ` Y J x n @ xO L J n @ d W J n @ 0d Dd J n @ LQ c J n @ ` ` J n @ ` ` J n @ T dh J n @ 8i Li J n @ O tM J n @ a DZ J n @ `O K J n @ ^ W J n @ S PX J n @ U xX J n @ b (b J n @ Q `W J n @ S b J x n @ |S ,Y J n @ <b Y J n @ Pe Z J n @ \g LW J n @ U a J n @ N <K J n @ a Z J n @ U V J n @ dP K J x n @ T |V J n @ e e J n @ T W J n @ c c J n @ 4c Hc J n @ Q L_ J n @ (U [ J n @ d Y J n @ a a J n @ ld W J n @ g Y J n @ d e J x n @ `U 0Z J n @ (` 8` J n @ ` ` J n @ N L J n @ f g J n @ g X J n @ Q X J n @ ,R d J n @ g |Y J n @ \c pc J n @ i i J n @ LP M J n @ c @V J n @ Lb V J n @ c XZ J n @ ha <X J n @ Da Ta J n @ S Z J n @ `i ti J x n @ U f J n @ 4a TV J n @ \Q _ J n @ b V J n @ P K J n @ lQ W J n @ T X J L , / n M L n X L , / n xK L , / n K L , / n dM L n J L , / n M L n Z L n L L , / n L L n K L , / n ,L L , / n L [ x 0 P X W [ x 0 P K W [ n 0 P X W [ x 0 Q K W [ x 0 P 8V W [ ` n 0 P 8V W W n X W , / n J W n X W n X W n ,[ W , / n K W n M W n W W , / n dM W x n ,L W n PZ W , / n K W , / n L W n L W n LV W n Y W n V W , / n L W n Y W , / n M W , / n xK W n W Z , / n L Z n dZ Z , / n M Z x n <Z Z , / n ,L Z , / n K Z , / n dM Z , / n K Z n Z Z , / n L Z , / n xK Z , / n L Z , / n J Z , / n M Z n V Z n W Z n Z Z n dZ Z n Z Z n W Z n Y Z x n <Z Z n W Z n [ Z n \X L n 1 Z Z L Y , / n K Y n pX Y n V Y n X Y , / n L Y , / n M Y n Y Y , / n ,L Y , / n xK Y x n 8Y Y , / n dM Y , / n K Y , / n M Y , / n J Y n 4X Y , / n L Y , / n L pX , / n K pX , / n M pX n V pX , / n ,L pX , / n L pX , / n L pX , / n M pX , / n xK pX n pX pX x n 8Y pX , / n K pX , / n dM pX , / n L pX n 4X pX n X pX , / n J pX n Y DW , / n ,L DW n `V DW , / n dM DW x n $Y DW , / n M DW , / n xK DW , / n K DW n V DW , / n L DW n Z DW n X DW , / n L DW n W DW , / n K DW n DW DW , / n M DW n ,W DW x n tV DW , / n J DW n T[ DW , / n L DW n XW DW n Z T[ , / n M T[ x n tV T[ , / n L T[ , / n dM T[ n ,W T[ , / n M T[ n DW T[ n T[ T[ n Z T[ n X T[ n XW T[ , / n L T[ n `V T[ x n $Y T[ , / n xK T[ n V T[ n Z T[ , / n L T[ , / n K T[ , / n J T[ , / n ,L T[ , / n K T[ n W Y n X Y , / n dM Y , / n J Y , / n L Y x n `Y Y , / n ,L Y , / n xK Y n tY Y n W Y n lW Y , / n K Y n V Y , / n L Y n X Y , / n K Y n X Y n W Y n 8V Y n Y Y n [ Y n W Y , / n M Y , / n L Y , / n M Y n HX (Z n " J J ,W n " J K X n " J $K X n " J <K V x n " J XK V n " J lK X n " J K ,W n " J K X n " J K X n " J K 4X n " J K V x n " J K V n " J L V n " J L V x n " J L V n " J <L 4X n " J XL V n " J J V n " J J xZ n " J lL ,W n " J L xZ n " J L X n " J L 4X n " J L V n " J L (Z n " J L V n " J J (Z n " J M X n " J M 4X n " J ,M V n " J 4M X n " J HM V n " J XM X n " J tM ,W n " J M X n " J M V x n " J M xZ n " J M (Z n " J M xZ n " J M V n " J N V n " J J X n " J N X n " J 8N [ x |^ [ x d^ [ x L^ [ x 0 0^ K \ [ x @ 0^ K \ \ [ x 0 ^ L \ [ x @ ^ L \ \ [ x 0 ^ L \ [ x @ ^ L \ \ [ x 0 ^ M \ [ x @ ^ M \ \ [ x 0 ] dM \ [ x @ ] dM \ \ [ x 0 ] ,L \ [ x @ ] ,L \ \ [ x 0 ] K \ [ x @ ] K \ \ [ x 0 ] L \ [ x @ ] L \ \ [ x 0 ] L \ [ x @ ] L \ \ [ x 0 x] M \ [ x @ x] M \ \ [ x 0 \] dM \ [ x @ \] dM \ \ [ x 0 @] ,L \ [ x @ @] ,L \ \ [ x 0 (] K \ [ x @ (] K \ \ [ x 0 ] L \ [ x @ ] L \ \ [ x 0 \ L \ [ x @ \ L \ \ [ x 0 \ M \ [ x @ \ M \ \ [ x 0 \ dM \ [ x @ \ dM \ \ [ x 0 \ ,L \ [ x @ \ ,L \ \ 8Y x n 8Y 8Y x n [ 8Y x n Z 8Y x n W 8Y x n Z 8Y x n pX 8Y x n ,[ 8Y x n W 8Y x n Y 8Y x n HX 8Y x n Y @[ n dM @[ n Y @[ n Y @[ n Z @[ , / n J @[ , / n M @[ , / n L @[ n Z @[ n Z @[ , / n L @[ n @[ @[ n K @[ n L @[ , / n xK @[ n LY @[ , / n M @[ , / n ,L @[ , / n K Y , / n M Y n Y Y , / n J Y n Z Y n W Y , / n xK Y , / n K Y , / n K Y , / n ,L Y , / n L Y , / n L Y , / n L Y , / n dM Y , / n M @^ x L^ @^ x |^ @^ x d^ [ ` n 0 P 8V X [ x 0 Q K X [ x 0 P 8V X [ x 0 P K X [ x 0 P X X [ n 0 P X X [ n 0 W J P [ n 0 `V J P [ n 0 V J dP [ n 0 X J O [ n 0 Y J N [ n 0 Y J O [ x n 0 tV J HO [ n 0 W J N [ x n 0 tV J xO [ n 0 lW J O [ n 0 X J O [ n 0 lW J xP [ n 0 T[ J N [ n 0 lW J `O [ n 0 @[ J N [ x n 0 tV J O [ n 0 V J P [ n 0 W J O [ n 0 @[ J LP [ n 0 T[ J P [ n 0 @[ J lJ [ n 0 W J N [ n 0 T[ J 4P [ n 0 W J PN [ n 0 tY J O [ n 0 W J hN [ n 0 X J <P [ n 0 `V J 0O [ n 0 tY J N [ n 0 Y J O [ n 0 V J O [ n 0 tY J O [ n 0 `V J N dM n Z dM , / n L dM , / n J dM n dM dM n L dM n Z dM , / n ,L dM n Y dM , / n L dM n Y dM n K dM , / n K dM , / n M dM , / n M dM n Z dM n @[ dM , / n xK dM n LY X , / n xK X , / n K X x n `Y X n V X , / n L X n W X n 8V X n tY X , / n L X , / n L X n Y X , / n M X n W X n lW X , / n ,L X n [ X , / n K X n X X , / n dM X n HX X , / n M X n W X , / n J X n X X n X Z , / n K Z , / n L Z n Z Z n W Z , / n L Z n Y Z , / n M Z , / n K Z , / n xK Z , / n dM Z , / n ,L Z , / n M Z , / n J Z , / n L Y n Y Y , / n L Y n W Y n X Y , / n J Y n Y Y x n ,L Y n L Y , / n xK Y , / n K Y , / n L Y n X Y n W Y n M Y n LV Y , / n dM Y n V Y n PZ Y , / n K Y n ,[ Y , / n M Y n X X , / n L X n W X n HX X , / n J X n X X n Y X , / n K X , / n M X x n `Y X , / n L X n X X n X X , / n L X n tY X , / n xK X n 8V X n lW X , / n ,L X n V X n W X , / n M X , / n K X , / n dM X n W X n [ W n X W , / n J W , / n ,L W , / n L W x n $Y W , / n xK W n V W , / n M W , / n L W , / n dM W n Z W n XW W , / n K W n `V W n W W n Z W , / n L W x n tV W n ,W W , / n M W n DW W n T[ W , / n K 8V x 2 R R K 8V x 2 R R dM 8V n 2 R R X 8V n 2 R R Y 8V n 2 R R 8V 8V n 2 R R X 8V x 2 tR R X 8V x 2 tR R Y 8V x 2 XR R 8V 8V x 2 XR R X 8V x " R K 8V x " R X 8V x " R 8V 8V x " tR X 8V x " XR 8V 8V x " <R K L n ! L L 4X n ! 4X 4X X n ! X X K n ! K K Y n ! Y Y W n ! W W LV n ! LV LV tY n ! tY tY W n ! W W 8V n ! 8V 8V Z n ! Z Z Z n ! Z Z lW n ! lW lW X n ! X X tY , / n ,L tY , / n L tY , / n J tY n HX tY n X tY x n `Y tY , / n M tY n tY tY n X tY n W tY , / n K tY , / n M tY , / n K tY , / n xK tY n X tY n W tY , / n dM tY n V tY , / n L tY n W tY n 8V tY n [ tY n Y tY n lW tY , / n L LV n V LV n Y LV x n ,L LV n M LV , / n L LV n X LV n W LV , / n M LV , / n L LV n ,[ LV n L LV n X LV n X LV , / n dM LV n W LV n LV LV , / n xK LV , / n K LV n PZ LV , / n J LV n Y LV , / n K W , / n K W , / n L W n [ W n tY W , / n ,L W n 8V W , / n J W x n `Y W n W W n W W , / n K W , / n M W , / n dM W , / n L W n HX W n X W n Y W n X W n W W n lW W , / n L W , / n M W n X W n V W , / n xK Z , / n M Z n ,W Z n XW Z , / n L Z , / n K Z , / n xK Z n T[ Z n Z Z n `V Z , / n L Z , / n L Z , / n M Z , / n dM Z , / n J Z n W Z n V Z , / n K Z n Z Z , / n ,L Z x n $Y Z n DW Z n X Z x n tV X n @[ X x n tV X n `V X n T[ X n tY X n lW X n W X n Y X n V X n W X n X (Z x n V (Z , / n L (Z , / n ,L (Z , / n M (Z , / n dM (Z , / n xK (Z , / n L (Z , / n M (Z , / n K (Z n xZ (Z , / n K (Z , / n J (Z , / n L (Z n (Z xK n ! M M V n ! V V (Z n ! xZ xZ Z n ! LY LY Z n ! Y Y W n ! W W Y n ! Y Y W n ! [ [ X n ! X X K n ! K K V n ! V V Z n ! Z Z dZ n ! Z Z V n ! W W W n ! 8V 8V Y n ! Y Y L n ! K K tY n ! lW lW LV n ! X X V n ! X X W n ! W W tY n ! tY tY Y n ! Y Y T[ n ! T[ T[ K n ! L L ,W n ! ,W ,W pX n ! pX pX Y n ! @[ @[ M n ! M M 4X n ! 4X 4X ,[ n ! ,[ ,[ ,[ n ! Y Y Z n ! Z Z DW n ! DW DW W n ! W W X n ! PZ PZ 4X n ! X X V n ! V V LV n ! LV LV M n ! L L Z n ! Z Z Y n ! W W W n ! HX HX DW n ! XW XW Z n ! Z Z Z n ! X X ,W n ! X X pX n ! Y Y L n ! L L Z n ! Z Z V n ! W W (Z n ! (Z (Z T[ n ! `V `V xK n ! xK xK Y n ! W W dZ n ! dZ dZ lW n X lW , / n ,L lW , / n J lW , / n L lW x n `Y lW n X lW n W lW n W lW , / n xK lW n X lW , / n M lW , / n dM lW n tY lW , / n K lW n V lW n Y lW n HX lW n W lW n lW lW n [ lW , / n L lW , / n K lW , / n M lW , / n L lW n 8V X n W X x n ,L X n X X n X X , / n K X n M X , / n J X , / n dM X , / n L X n PZ X n V X n L X , / n L X , / n K X n X X n ,[ X n Y X n W X n LV X n Y X , / n M X , / n xK Z , / n L Z n T[ Z , / n J Z x n tV Z , / n M Z n `V Z n XW Z , / n K Z n X Z , / n L Z , / n L Z n V Z n Z Z , / n xK Z n W Z n DW Z n Z Z , / n M Z x n $Y Z , / n dM Z , / n K Z n ,W Z , / n ,L Z n 1 Z Z Z L n 1 L L L T[ n 1 T[ T[ T[ X n 1 X X X PZ n 1 PZ PZ PZ HX n 1 HX HX HX XW n 1 XW XW XW M n 1 M M M dZ n 1 dZ dZ dZ 4X n 1 4X 4X 4X M n 1 M M M `V n 1 `V `V `V W n 1 W W W X n 1 X X X Z n 1 Z Z Z `Y x n 1 `Y `Y `Y ,L x n 1 ,L ,L ,L tY n 1 tY tY tY Y n 1 Y Y Y $Y x n 1 $Y $Y $Y DW n 1 DW DW DW tV x n 1 tV tV tV <Z x n 1 <Z <Z <Z V n 1 V V V pX n 1 pX pX pX W n 1 W W W W n 1 W W W Y n 1 Y Y Y X n 1 X X X lW n 1 lW lW lW W n 1 W W W Z n 1 Z Z Z [ n 1 [ [ [ xK n 1 xK xK xK Z n 1 Z Z Z W n 1 W W W X n 1 X X X dM n 1 dM dM dM @[ n 1 @[ @[ @[ Y n 1 Y Y Y W n 1 W W W ,W n 1 ,W ,W ,W \X n 1 \X \X \X 8Y x n 1 8Y 8Y 8Y X n 1 X X X W n 1 W W W Y n 1 Y Y Y X n 1 X X X K n 1 K K K Z n 1 Z Z Z (Z n 1 (Z (Z (Z L n 1 L L L V n 1 V V V V x n 1 V V V ,[ n 1 ,[ ,[ ,[ 8V n 1 8V 8V 8V Z n 1 Z Z Z X n 1 X X X [ n 1 [ [ [ X n 1 X X X Y n 1 Y Y Y Y n 1 Y Y Y LV n 1 LV LV LV X n 1 X X X V n 1 V V V LY n 1 LY LY LY Z n 1 Z Z Z Z n 1 Z Z Z L n 1 L L L V n 1 V V V Y n 1 Y Y Y J n 1 J J J xZ n 1 xZ xZ xZ K n 1 K K K W n 1 W W W V n 1 V V V W n 1 W W W W n " J L Y n " J 8N Y n " J M Z n " J XL HX n " J L W n " J L Z n " J K 8Y x n " J XK Y n " J lL ,[ n " J L W n " J <L HX n " J M Y n " J $K W n " J K Y n " J HM pX n " J M Y n " J L W n " J K [ n " J J Y n " J M pX n " J M Z n " J K pX n " J L Z n " J tM Z n " J ,M ,[ n " J L Z n " J L W n " J M 8Y x n " J M [ n " J J Z n " J K [ n " J J ,[ n " J 4M 8Y x n " J L W n " J N Z n " J K 8Y x n " J K Y n " J M HX n " J <K W n " J XM HX n " J N ,[ n " J lK [ n " J J pX n " J J V , / n L V n W V , / n M V n W V n X V , / n M V n Y V n X V , / n dM V , / n K V n 8V V , / n J V , / n ,L V n W V , / n L V n V V n tY V n HX V , / n xK V , / n K V , / n L V n [ V n X V x n `Y V n lW Z n " J L Y n " J 8N Z n " J 4M X n " J N DW n " J L W n " J XL Z n " J lK 8V n " J tM X n " J K XW n " J M DW n " J M Z n " J L PZ n " J M DW n " J J X n " J J PZ n " J <K 8V n " J K W n " J ,M X n " J J X n " J L 8V n " J K X n " J <L Y n " J M X n " J J X n " J XM PZ n " J L DW n " J M Y n " J HM XW n " J M 8V n " J K X n " J M X n " J K $Y x n " J M $Y x n " J XK XW n " J L PZ n " J N W n " J K $Y x n " J L $Y x n " J K XW n " J lL X n " J J X n " J L W n " J L Y n " J $K Y n " J XL W n " J M W n " J L dZ n " J J Y n " J K Z n " J L W n " J K Z n " J M V n " J lK Z n " J L Z n " J XM W n " J M \X n " J J <Z x n " J XK dZ n " J M Z n " J lL W n " J HM [ n " J N V n " J L W n " J $K W n " J K \X n " J J W n " J K \X n " J J Z n " J M V n " J 4M \X n " J J W n " J tM W n " J K Z n " J N <Z x n " J K Z n " J <L W n " J 8N Y n " J ,M V n " J L <Z x n " J L [ n " J L dZ n " J L W n " J K Y n " J L [ n " J M dZ n " J M [ n " J <K <Z x n " J M W n ! W W X n ! X X X n ! X X $Y n ! $Y $Y X n ! X X tV x n ! tV tV 8Y x n 8Y 8Y x n X 8Y , / n K 8Y , / n L 8Y x n V 8Y , / n J 8Y x n Y 8Y x n 4X 8Y , / n M 8Y , / n dM 8Y , / n L 8Y , / n xK 8Y , / n M 8Y , / n K 8Y x n pX 8Y , / n L 8Y , / n ,L `Y , / n J `Y x n V `Y x n W `Y x n lW `Y , / n xK `Y x n W `Y x n Y `Y x n [ `Y , / n L `Y x n X `Y , / n dM `Y x n X `Y x n `Y `Y , / n L `Y x n W `Y , / n ,L `Y , / n L `Y x n 8V `Y x n HX `Y x n tY `Y x n X `Y , / n M `Y , / n M `Y , / n K `Y , / n K Y n ! Y Y `Y x n ! `Y `Y W n ! W J V x n ! V V Y n ! Y M X n ! X X X n ! X X W n ! W dM W n ! W W 8Y x n ! 8Y ,L Z n ! Z J W n ! W L `V n ! `V `V xZ n ! xZ L ,L x n ! ,L ,L X n ! X X (Z n ! (Z (Z LY n ! LY LY 8V n ! 8V 8V ,W n ! ,W ,W HX n ! HX HX M n ! M M X n ! X X M n ! M M W n ! W W V x n ! V ,L @[ n ! @[ @[ W n ! W M Z n ! Z Z Z n ! Z Z PZ n ! PZ L LY n ! LY L W n ! W W xZ n ! xZ xZ (Z n ! (Z M X n ! X K `Y x n ! `Y ,L X n ! X J XW n ! XW XW X n ! X M @[ n ! @[ M `V n ! `V L X n ! X X Z n ! Z K pX n ! pX pX [ n ! [ [ dZ n ! dZ dZ X n ! X dM 4X n ! 4X 4X V n ! V V T[ n ! T[ T[ Y n ! Y dM W n ! W K X n ! X X W n ! W W ,[ n ! ,[ xK Y n ! Y M [ n ! [ J W n ! W K V n ! V V DW n ! DW DW W n ! W W W n ! W W V n ! V V $Y x n ! $Y ,L pX n ! pX M Z n ! Z K Y n ! Y Y Z n ! Z L Z n ! Z xK \X n ! \X \X DW n ! DW M Z n ! Z Z V n ! V J X n ! X L W n ! W W V n ! V xK V n ! V K lW n ! lW lW L n ! L L Y n ! Y Y XW n ! XW L K n ! K K Y n ! Y M Z n ! Z dM Y n ! Y Y ,W n ! ,W K tV x n ! tV tV <Z x n ! <Z <Z HX n ! HX L X n ! X K L n ! L L tY n ! tY tY W n ! W W ,[ n ! ,[ ,[ dM n ! dM dM Z n ! Z Z Y n ! Y Y PZ n ! PZ PZ tY n ! tY L X n ! X M X n ! X X Y n ! Y Y Z n ! Z Z Z n ! Z Z Y n ! Y L J n ! J J Z n ! Z xK $Y x n ! $Y $Y LV n ! LV L W n ! W K X n ! X X V n ! V xK [ n ! [ [ tV x n ! tV ,L V n ! V V Y n ! Y L \X n ! \X J <Z x n ! <Z ,L Z n ! Z Z X n ! X X X n ! X dM K n ! K K V n ! V V dZ n ! dZ M 8V n ! 8V K 8Y x n ! 8Y 8Y 4X n ! 4X L W n ! W W X n ! X K W n ! W L L n ! L L Z n ! Z L Y n ! Y Y V n ! V dM Y n ! Y xK LV n ! LV LV W n ! W L lW n ! lW K xK n ! xK xK Z n ! Z Z [ n ! [ L T[ n ! T[ M ,L x n W ,L , / n xK ,L x n PZ ,L x n X ,L x n X ,L , / n K ,L x n LV ,L x n W ,L , / n M ,L x n L ,L x n ,L ,L , / n dM ,L x n ,[ ,L , / n J ,L , / n K ,L x n X ,L x n Y ,L , / n L ,L x n M ,L , / n L ,L x n Y ,L x n V W n Z X n W \X n W [ n W X n tY J n K Z n Z dM n L Z n Y $Y x n DW `Y x n Y Y n LV V n ,W tV x n T[ ,L x n M 8Y x n pX <Z x n dZ W n V X n X V n 4X V x n (Z <Z x n 1 <Z <Z <Z tV x n 1 tV tV tV \X n 1 \X \X J V n 1 V V V ,L x n 1 ,L ,L ,L <Z x n 1 <Z <Z ,L X n 1 X X X Y n 1 Y Y dM W n 1 W W W Z n 1 Z Z J `Y x n 1 `Y `Y `Y Z n 1 Z Z Z [ n 1 [ [ [ W n 1 W W W Z n 1 Z Z dM [ n 1 [ [ J tV x n 1 tV tV ,L dM n 1 dM dM dM V x n 1 V V V $Y x n 1 $Y $Y $Y X n 1 X X dM W n 1 W W J X n 1 X X dM 8Y x n 1 8Y 8Y ,L X n 1 X X J \X n 1 \X \X \X 8Y x n 1 8Y 8Y 8Y W n 1 W W dM X n 1 X X X V n 1 V V J `Y x n 1 `Y `Y ,L V n 1 V V dM $Y x n 1 $Y $Y ,L V x n 1 V V ,L Z n 1 Z Z Z V n 1 V V V X n 1 X X X J n 1 J J J Y n 1 Y Y Y X n tY X , / n xK X n 8V X n lW X , / n ,L X n V X n W X , / n L X , / n M X , / n K X , / n dM X n W X n [ X , / n L X n W X n HX X , / n J X n X X n Y X , / n K X , / n M X x n `Y X n X X n X X , / n L L n K L n Y L , / n L L n Z L n @[ L , / n xK L n Y L n Z L , / n K L n dM L n LY L , / n L L , / n M L , / n M L n L L , / n J L , / n ,L L n Z X x X W x W V x V W x W lW x lW L x L (Z x (Z X x X 8V x 8V pX x pX LV x LV K x K HX x HX M x M ,W x ,W @[ x @[ W x W W x W L x L V x V LY x LY DW x DW ,[ x ,[ `V x `V PZ x PZ 4X x 4X Y x Y [ x [ V x V X x X Z x Z X x X W x W L x L xZ x xZ K x K Z x Z xK x xK XW x XW Z x Z Y x Y tY x tY X x X Y x Y dZ x dZ Y x Y Y x Y Y x Y W x W Z x Z M x M Z x Z T[ x T[ W x W X x X Z x Z L n 0 8\ L L L n 0 [ L L K n 0 \ K K K n 0 \ K K K , n 8N [ n $ K @Q <Z x n 1 <Z <Z <Z X n 1 J J X tV x n 1 tV tV tV V n 1 V V V Z n 1 Z Z Z 8Y x n 1 ,L ,L 8Y X n 1 X X X V n 1 J J V ,L x n 1 ,L ,L ,L Z n 1 J J Z `Y x n 1 ,L ,L `Y \X n 1 J J \X `Y x n 1 `Y `Y `Y 8Y x n 1 8Y 8Y 8Y [ n 1 [ [ [ W n 1 W W W dM n 1 dM dM dM V x n 1 V V V W n 1 W W W V x n 1 ,L ,L V W n 1 J J W \X n 1 \X \X \X [ n 1 J J [ X n 1 X X X $Y x n 1 $Y $Y $Y <Z x n 1 ,L ,L <Z tV x n 1 ,L ,L tV Z n 1 Z Z Z V n 1 V V V X n 1 X X X J n 1 J J J $Y x n 1 ,L ,L $Y Y n 1 Y Y Y J x tR J x P J x P J x XR M n Y M n L M n M M n W M , / n J M n X M , / n M M n ,[ M , / n K M x n ,L M n X M n X M , / n K M , / n xK M n V M , / n dM M n Y M , / n L M n W M n LV M n PZ M , / n L L , / n J L n W L , / n L L n LV L n Y L , / n L L , / n K L n PZ L x n ,L L n V L n X L n ,[ L n W L n X L n L L n X L , / n xK L n Y L , / n K L n M L , / n dM L , / n M M , / n dM M , / n ,L M , / n M M , / n K M n xK M , / n J M , / n L M , / n L M , / n K M , / n L M n M W n ! J W [ n ! [ [ `Y x n ! `Y `Y V x n ! V V W n ! W W <Z x n ! ,L <Z Z n ! Z Z X n ! X X `Y x n ! ,L `Y Y n ! Y Y \X n ! J \X $Y x n ! ,L $Y tV x n ! tV tV <Z x n ! <Z <Z V n ! V V Z n ! dM Z X n ! X X X n ! X X W n ! W W dM n ! dM dM $Y x n ! $Y $Y Y n ! dM Y V n ! V V [ n ! J [ tV x n ! ,L tV X n ! J X V n ! dM V V x n ! ,L V V n ! J V Z n ! J Z X n ! dM X X n ! dM X J n ! J J Z n ! Z Z \X n ! \X \X 8Y x n ! ,L 8Y ,L x n ! ,L ,L W n ! dM W 8Y x n ! 8Y 8Y X n P 8V n R X x XR X n R 8V n P X x P ,[ n W ,[ n Y ,[ n M ,[ n PZ ,[ n X ,[ , / n M ,[ , / n J ,[ n Y ,[ , / n xK ,[ , / n dM ,[ x n ,L ,[ n X ,[ , / n L ,[ , / n K ,[ , / n K ,[ n LV ,[ n L ,[ n ,[ ,[ n V ,[ , / n L ,[ n W ,[ n X dM n ! X X dM n ! X X dM n ! Y Y dM n ! Z Z dM n ! dM dM L x ^ K x ] K x (] dM x \ L x ] K x 0^ L x ] L x ] L x ^ ,L x @] ,L x \ M x ^ M x \ dM x ] M x x] L x \ dM x \] ,L x ] W , / n K W , / n dM W , / n L W n W W , / n J W , / n K W , / n M W , / n L W , / n L W n V W , / n ,L W , / n M W , / n xK Y n Z Y n L Y , / n M Y , / n K Y , / n M Y , / n L Y , / n xK Y , / n J Y n K Y , / n L Y , / n ,L Y n Z Y n LY Y n dM Y n Z Y n Y Y n @[ Y n Y X n L X , / n L X , / n dM X n X X n J X , / n M X , / n M X , / n ,L X , / n xK X , / n K X n K X n Z X , / n L K n \ L n 8\ L n [ K n \ X n X Z n Z Y n Y X n X dM n dM K K J K 0 K J J K @ K J J J L L J L 0 L J J L @ L J J J L L J L 0 L J J L @ L J J J M M J M 0 M J J M @ M J J J dM dM J dM 0 dM J J dM @ dM J J J J J J J 0 J J J J @ J J J J ,L ,L J ,L 0 ,L J J ,L @ ,L J J J [ n 0 V J hN [ n 0 4X J N [ n 0 X J N [ n 0 X J N [ n 0 (Z J N [ n 0 xZ J N [ n 0 V J N [ n 0 V J O [ n 0 V J O [ n 0 V J PN [ n 0 4X J O [ n 0 xZ J 0O [ x n 0 V J HO [ n 0 X J `O [ x n 0 V J xO [ x n 0 V J O [ n 0 V J O [ n 0 V J O [ n 0 4X J O [ n 0 X J O [ n 0 X J O [ n 0 ,W J O [ n 0 V J N [ n 0 xZ J P [ n 0 (Z J P [ n 0 X J lJ [ n 0 ,W J P [ n 0 (Z J 4P [ n 0 V J <P [ n 0 X J LP [ n 0 ,W J dP [ n 0 X J xP [ n 0 X J P @^ x |^ \ @^ x 0 |^ \ \ @^ x d^ \ @^ x 0 d^ \ \ @^ x L^ \ @^ x 0 L^ \ \ 4X n V 4X , / n L 4X n pX 4X , / n K 4X , / n xK 4X n 4X 4X , / n dM 4X n X 4X , / n L 4X , / n ,L 4X , / n L 4X x n 8Y 4X , / n K 4X , / n J 4X , / n M 4X n Y 4X , / n M @^ x 0 ] O L @^ x 0 0^ xP K @^ x 0 (] xP K @^ x 0 \ <P dM @^ x 0 ^ P L @^ x 0 ] P L @^ x 0 ] <P dM @^ x 0 \ O ,L @^ x 0 ] xP K @^ x 0 @] O ,L @^ x 0 \ 4P M @^ x 0 ] O L @^ x 0 ^ O L @^ x 0 \] <P dM @^ x 0 ] O ,L @^ x 0 ^ 4P M @^ x 0 \ P L @^ x 0 x] 4P M xZ x n V xZ , / n K xZ , / n dM xZ , / n J xZ , / n M xZ , / n L xZ , / n L xZ , / n L xZ , / n K xZ , / n ,L xZ , / n M xZ n (Z xZ , / n xK xZ n xZ L n ! K L Z n ! W Y W n ! [ W X n ! X ,W Y n ! W W lW n ! W V Y n ! LV LV K n ! L K K n ! xK xK LV n ! Z Z LY n ! X Z Z n ! HX W XW n ! 8V W ,W n ! V V L n ! M xK L n ! K K (Z n ! 4X 4X Z n ! Z Z HX n ! Y ,[ Z n ! W W DW n ! W W PZ n ! Y Z dZ n ! Y Y X n ! Z Z X n ! X V W n ! V V Y n ! Z Z W n ! X X 4X n ! ,W ,W T[ n ! tY tY V n ! Y Y X n ! LY Z W n ! ,[ ,[ 8V n ! PZ X [ n ! W V M n ! L L W n ! X LV xZ n ! X 4X tY n ! V V `V n ! lW tY pX n ! Z Z W n ! @[ Y K n Z K n Z K n X K n Z K x n $Y K n Z K n M K n Y K n [ K n W K n V K n ,[ K n tY K n Z K n V K n X K n W K n V K n DW K n pX K n X K n Y K n dZ K n HX K x n tV K n Z K n W K x n 8Y K n X K n V K x n V K n Y K n K K n dM K n L K n J K n W K n M K n V K n \X K n Y K n Y K n lW K n XW K n PZ K n Z K n Y K n [ K n `V K n 8V K n W K n W K n LV K n L K n Y K n X K x n <Z K n T[ K n W K x n `Y K n LY K n X K n @[ K n xZ K x n ,L K n 4X K n Z K n (Z K n X K n X K n xK K n ,W K n W K n X K n K K n L K n W ,L x @] ,L L x ] L ,L x \ ,L dM x ] dM ,L x ] ,L K x 0^ K dM x \] dM L x ^ L M x x] M L x \ L dM x \ dM M x \ M L x ] L L x ] L K x ] K K x (] K M x ^ M L x ^ L Y n " J L X n " J K Y n " J L Z n " J L Y n " J XM LV n " J L Z n " J K Y n " J <L `Y x n " J M Y n " J M X n " J HM LV n " J K W n " J lL X n " J K Z n " J J Z n " J J `Y x n " J L Z n " J L Z n " J M LY n " J M W n " J M LV n " J ,M W n " J M Y n " J M Z n " J J X n " J $K LY n " J <K Z n " J lK `Y x n " J XK Z n " J K W n " J L X n " J tM LY n " J L X n " J M X n " J K LV n " J XL Z n " J 4M Z n " J L Y n " J J Z n " J J Y n " J N LY n " J N `Y x n " J K X n " J 8N n X n LV n X n ,[ , / n K n W n Y , / n L n W x n ,L , / n K n L , / n J n X n Y , / n L n M , / n xK , / n dM , / n M n V n PZ J n L lJ n J , / n xK J n Y J x n ,L J n X J n V J , / n L J n LV J n ,[ J , / n L J n W J , / n M J , / n K J n L J , / n K J n M J , / n dM J n X J n Y J , / n J J n W J n PZ J n X L n J , / n xK J n X J , / n K J x n ,L J n X J n V J , / n L J n M J , / n L J n W J n ,[ J , / n M J n L J , / n K J n LV J n X J , / n dM J n Y J , / n J J n W J n PZ J n Y J n Y J n LV J n W J n W J , / n M J n Y J n ,[ J x n ,L J , / n K J , / n J J n V J , / n L J , / n dM J , / n K J n X J n PZ J n L J , / n L J n M J n X J n X J , / n xK i g++ (Ubuntu 4.9.3-13ubuntu2) 4.9.3 allocator=drm_dumb cl=1 cycle_counter=1 drm_allocator=1 floatabi=hard gpu=t86x hwver=r2p0 kernel_modules=0 libs_install=bin opencl_platform_config=config_t6xx os=linux profile=tx011-release progs_install=bin simd=1 symbols=0 toolchain_prefix_target=/home/cz/workspace/mali_so_for_midgard_for_linux/driver/product/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf- ump=0 wayland_server=1 winsys=wayland,gbm winsys_dma_buf=1 6d22f2bd43cad3c2f8c156f039addb30fd6cf857 , 0 H X p | ( $ < L d t + 7 . t 0& & $ 0 < H & . 0 ' D # \ # , 8 D P " . t H " + l . ( d & D& & & & & & & ' ' ' ' D ' ' ' ' T ' ' ' $ ' ' ' ' ' ' ( ' ' $ 8 ' 4 @ ' H ' @ ' X ' ` ' X ' p ' x ' t ' ' \ ' ' ' ' ' ' ; + / / + X / ` / + / / + / / + P ' L / + Z / + 0 / 8 / + T / \ / + / / + l & / + X;% / + / / + + . $ . ( . , . 0 . 4 . 8 . < . @ . $S' H . T . tk T4' X . ` . d . 5' t . . . . > . . . . . . . . . . \A C . . . . . . . l & . ! . " . # . $ . % ( . & 4 . ' @ . ( T . ) h . * t . + x & , . - . - ,& . . . D . / T . / 8 0 t 1 & 2 . 3 . 4 . 5 . 6 . 7 P 8 . 9 . : . ; . < . = . > . ? . @ , . [ @ . \ L . \ \ . ] t . ^ . ^ . _ . _ . ` . { . { . | . } . } H ~ / 8 / D / d / p / / / / / / / / / , / 8 / T / ` / | / / / / / / / / / / 4 / @ / X / d / / / + / H / P / T / \ /
GCC: (Linaro GCC 4.9-2017.01) 4.9.4
.ARM.attributes .ARM.exidx .ARM.extab .bss .comment .data .data.rel.ro .dynamic .dynstr .dynsym .eh_frame .fini .fini_array .gnu.version .gnu.version_d .gnu.version_r .got .hash .init .init_array .jcr .note.gnu.build-id .rel.dyn .rel.plt .rodata .shstrtab .tbss .text
libmali.so.1 libpthread.so.0 libdl.so.2 librt.so.1 libdrm.so.2 libwayland-server.so.0 libm.so.6 libwayland-client.so.0 libstdc++.so.6 libgcc_s.so.1 libc.so.6 ld-linux-armhf.so.3 ConvertUTF16toUTF32 ConvertUTF16toUTF8 ConvertUTF32toUTF16 ConvertUTF32toUTF8 ConvertUTF8toUTF16 ConvertUTF8toUTF32 ConvertUTF8toUTF32Partial LIBMALI_1.0 PrintAfter PrintAfterAll PrintBefore PrintBeforeAll PrintFuncsList _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable _Jv_RegisterClasses _ZNKSs13find_first_ofEPKcjj _ZNKSs16find_last_not_ofEcj _ZNKSs17find_first_not_ofEPKcjj _ZNKSs17find_first_not_ofEcj _ZNKSs4findEPKcj _ZNKSs4findEPKcjj _ZNKSs4findEcj _ZNKSs5rfindEcj _ZNKSs6substrEjj _ZNKSs7compareEPKc _ZNKSs7compareERKSs _ZNKSs7compareEjjPKc _ZNKSs7compareEjjRKSs _ZNKSt14error_category10equivalentERKSt10error_codei _ZNKSt14error_category10equivalentEiRKSt15error_condition _ZNKSt14error_category23default_error_conditionEi _ZNKSt8__detail20_Prime_rehash_policy11_M_next_bktEj _ZNKSt8__detail20_Prime_rehash_policy14_M_need_rehashEjjj _ZNSdD2Ev _ZNSi10_M_extractIjEERSiRT_ _ZNSi3getEv _ZNSi4peekEv _ZNSirsERi _ZNSo5writeEPKci _ZNSo9_M_insertIbEERSoT_ _ZNSo9_M_insertIdEERSoT_ _ZNSo9_M_insertImEERSoT_ _ZNSo9_M_insertIxEERSoT_ _ZNSo9_M_insertIyEERSoT_ _ZNSolsEi _ZNSolsEs _ZNSs12_M_leak_hardEv _ZNSs14_M_replace_auxEjjjc _ZNSs3endEv _ZNSs4_Rep10_M_destroyERKSaIcE _ZNSs4_Rep20_S_empty_rep_storageE _ZNSs4_Rep9_S_createEjjRKSaIcE _ZNSs4swapERSs _ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2_ _ZNSs5eraseEjj _ZNSs6appendEPKc _ZNSs6appendEPKcj _ZNSs6appendERKSs _ZNSs6appendEjc _ZNSs6assignEPKc _ZNSs6assignEPKcj _ZNSs6assignERKSs _ZNSs6assignERKSsjj _ZNSs6insertEjPKc _ZNSs6insertEjPKcj _ZNSs6resizeEjc _ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKc _ZNSs7replaceEjjPKc _ZNSs7replaceEjjPKcj _ZNSs7reserveEj _ZNSs9_M_mutateEjjj _ZNSs9push_backEc _ZNSsC1EPKcRKSaIcE _ZNSsC1EPKcjRKSaIcE _ZNSsC1ERKSs _ZNSsC1ERKSsjj _ZNSsC1EjcRKSaIcE _ZNSt12__basic_fileIcED1Ev _ZNSt13basic_filebufIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode _ZNSt13basic_filebufIcSt11char_traitsIcEE5closeEv _ZNSt13basic_filebufIcSt11char_traitsIcEEC1Ev _ZNSt14error_categoryD2Ev _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7_M_syncEPcjj _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode _ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev _ZNSt6localeC1Ev _ZNSt6localeD1Ev _ZNSt8__detail15_List_node_base11_M_transferEPS0_S1_ _ZNSt8__detail15_List_node_base4swapERS0_S1_ _ZNSt8__detail15_List_node_base7_M_hookEPS0_ _ZNSt8__detail15_List_node_base9_M_unhookEv _ZNSt8ios_baseC2Ev _ZNSt8ios_baseD2Ev _ZNSt9bad_allocD1Ev _ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_E _ZNSt9basic_iosIcSt11char_traitsIcEE5clearESt12_Ios_Iostate _ZSt11_Hash_bytesPKvjj _ZSt15system_categoryv _ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_i _ZSt16generic_categoryv _ZSt17__throw_bad_allocv _ZSt18_Rb_tree_decrementPKSt18_Rb_tree_node_base _ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base _ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base _ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base _ZSt19__throw_logic_errorPKc _ZSt20__throw_length_errorPKc _ZSt20__throw_out_of_rangePKc _ZSt24__throw_out_of_range_fmtPKcz _ZSt25__throw_bad_function_callv _ZSt28_Rb_tree_rebalance_for_erasePSt18_Rb_tree_node_baseRS_ _ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_ _ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_ES4_ _ZSt7nothrow _ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc _ZStrsIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E _ZTTSt14basic_ifstreamIcSt11char_traitsIcEE _ZTTSt18basic_stringstreamIcSt11char_traitsIcESaIcEE _ZTVN10__cxxabiv117__class_type_infoE _ZTVN10__cxxabiv120__si_class_type_infoE _ZTVSt13basic_filebufIcSt11char_traitsIcEE _ZTVSt14basic_ifstreamIcSt11char_traitsIcEE _ZTVSt15basic_streambufIcSt11char_traitsIcEE _ZTVSt15basic_stringbufIcSt11char_traitsIcESaIcEE _ZTVSt18basic_stringstreamIcSt11char_traitsIcESaIcEE _ZTVSt9bad_alloc _ZTVSt9basic_iosIcSt11char_traitsIcEE _ZdaPv _ZdlPv _ZdlPvRKSt9nothrow_t _Znaj _Znwj _ZnwjRKSt9nothrow_t __aeabi_atexit __aeabi_unwind_cpp_pr0 __aeabi_unwind_cpp_pr1 __assert_fail __bss_end__ __bss_start __bss_start__ __ctype_b_loc __ctype_tolower_loc __ctype_toupper_loc __cxa_atexit __cxa_begin_catch __cxa_end_catch __cxa_end_cleanup __cxa_finalize __cxa_guard_acquire __cxa_guard_release __cxa_pure_virtual __cxa_rethrow __end__ __environ __errno_location __fxstat __gmon_start__ __gxx_personality_v0 __isnanf __lxstat __progname __pthread_key_create __register_atfork __strdup __tls_get_addr __xstat _edata _end _exit _fini abort accept access acos alarm asctime asin atan atan2 bind calloc ceil ceilf chdir clBuildProgram clCompileProgram clCreateBuffer clCreateCommandQueue clCreateContext clCreateContextFromType clCreateFromEGLImageKHR clCreateImage clCreateImage2D clCreateImage3D clCreateKernel clCreateKernelsInProgram clCreateProgramWithBinary clCreateProgramWithBuiltInKernels clCreateProgramWithSource clCreateSampler clCreateSubBuffer clCreateSubDevices clCreateUserEvent clEnqueueAcquireEGLObjectsKHR clEnqueueBarrier clEnqueueBarrierWithWaitList clEnqueueCopyBuffer clEnqueueCopyBufferRect clEnqueueCopyBufferToImage clEnqueueCopyImage clEnqueueCopyImageToBuffer clEnqueueFillBuffer clEnqueueFillImage clEnqueueMapBuffer clEnqueueMapImage clEnqueueMarker clEnqueueMarkerWithWaitList clEnqueueMigrateMemObjects clEnqueueNDRangeKernel clEnqueueNativeKernel clEnqueueReadBuffer clEnqueueReadBufferRect clEnqueueReadImage clEnqueueReleaseEGLObjectsKHR clEnqueueTask clEnqueueUnmapMemObject clEnqueueWaitForEvents clEnqueueWriteBuffer clEnqueueWriteBufferRect clEnqueueWriteImage clFinish clFlush clGetCommandQueueInfo clGetContextInfo clGetDeviceIDs clGetDeviceInfo clGetEventInfo clGetEventProfilingInfo clGetExtensionFunctionAddress clGetExtensionFunctionAddressForPlatform clGetImageInfo clGetKernelArgInfo clGetKernelInfo clGetKernelWorkGroupInfo clGetMemObjectInfo clGetPlatformIDs clGetPlatformInfo clGetProgramBuildInfo clGetProgramInfo clGetSamplerInfo clGetSupportedImageFormats clIcdGetPlatformIDsKHR clImportMemoryARM clLinkProgram clReleaseCommandQueue clReleaseContext clReleaseDevice clReleaseEvent clReleaseKernel clReleaseMemObject clReleaseProgram clReleaseSampler clRetainCommandQueue clRetainContext clRetainDevice clRetainEvent clRetainKernel clRetainMemObject clRetainProgram clRetainSampler clSetCommandQueueProperty clSetEventCallback clSetKernelArg clSetMemObjectDestructorCallback clSetUserEventStatus clUnloadCompiler clUnloadPlatformCompiler clWaitForEvents clock_gettime closedir config_compatible_with_format cosh dlerror drmAuthMagic drmFree drmGetBusid drmGetMagic drmOpen drmSetInterfaceVersion eglBindAPI eglBindTexImage eglChooseConfig eglClientWaitSyncKHR eglCopyBuffers eglCreateContext eglCreateImageKHR eglCreatePbufferFromClientBuffer eglCreatePbufferSurface eglCreatePixmapSurface eglCreateSyncKHR eglCreateWindowSurface eglDestroyContext eglDestroyImageKHR eglDestroySurface eglDestroySyncKHR eglGetConfigAttrib eglGetConfigs eglGetCurrentContext eglGetCurrentDisplay eglGetCurrentSurface eglGetDisplay eglGetError eglGetPlatformDisplayEXT eglGetProcAddress eglGetSyncAttribKHR eglInitialize eglMakeCurrent eglQueryAPI eglQueryContext eglQueryString eglQuerySurface eglReleaseTexImage eglReleaseThread eglSetDamageRegionKHR eglSurfaceAttrib eglSwapBuffers eglSwapInterval eglTerminate eglWaitClient eglWaitGL eglWaitNative eglWaitSyncKHR egl_check_display_valid_and_retain egl_check_surface_current egl_check_surface_valid_and_retain egl_color_buffer_flush_mapping_to_cpu egl_color_buffer_flush_mapping_to_gpu egl_color_buffer_force_cpu_sync egl_color_buffer_format_get_afbc_size egl_color_buffer_format_get_planes egl_color_buffer_format_is_afbc_split_mode egl_color_buffer_format_is_afbc_wideblk_mode egl_color_buffer_format_needs_y_inversion egl_color_buffer_get_age egl_color_buffer_get_crop_rectangle egl_color_buffer_get_early_display egl_color_buffer_get_fence egl_color_buffer_get_format egl_color_buffer_get_height egl_color_buffer_get_line_stride egl_color_buffer_get_mapped_address egl_color_buffer_get_non_thread_safe egl_color_buffer_get_num_planes egl_color_buffer_get_plane_dims egl_color_buffer_get_rotation egl_color_buffer_get_transaction_elimination_disabled egl_color_buffer_get_width egl_color_buffer_get_y_inversion egl_color_buffer_get_yuva_comp_sizes egl_color_buffer_increment_age egl_color_buffer_is_secure egl_color_buffer_lock egl_color_buffer_map egl_color_buffer_new egl_color_buffer_release egl_color_buffer_retain egl_color_buffer_rgb_format_get_bpp egl_color_buffer_set_age egl_color_buffer_set_crop_rectangle egl_color_buffer_set_early_display egl_color_buffer_set_fence egl_color_buffer_set_non_thread_safe egl_color_buffer_set_rotation egl_color_buffer_set_transaction_elimination_disabled egl_color_buffer_unlock egl_color_buffer_unmap egl_color_buffer_user_property_enabled egl_color_buffer_user_property_get egl_color_buffer_user_property_set egl_color_buffer_validate_format egl_color_buffer_validate_render_target egl_color_buffer_wrap_external egl_color_buffer_wrap_external_planar egl_display_release egl_env_set egl_export_platform_fence egl_get_winsys_display egl_get_winsys_surface egl_magic_surface_set_displayed_callback egl_magic_surface_set_winsys_surface egl_register_gles_blob_cache_callbacks egl_set_changed_region egl_set_error egl_surface_release egl_window_buffer_displayed egl_winsys_get_implementation egl_winsys_get_implementation_gbm eglp_call_color_buffer_wait_unlock eglp_call_config_get_color_buffer_format eglp_check_attribute_present eglp_color_buffer_format_to_string eglp_color_buffer_wait_unlock eglp_config_set_attributes eglp_display_create_default_configs eglp_find_unterminated_state eglp_get_attribute_value eglp_get_color_buffer_format_supported eglp_get_color_buffer_format_table eglp_has_display_terminated eglp_read_write_buffer eglp_string_to_color_buffer_format eglp_swap_buffers eglp_wait_buffer_displayed eventfd execv execve exp exp2 fabs fclose fcntl fegetround feof fesetround fflush fgets fileno floor floorf fmod fopen fprintf fputc fputs fread fseek ftell ftello fwrite gbm_bo_create gbm_bo_destroy gbm_bo_get_device gbm_bo_get_fd gbm_bo_get_format gbm_bo_get_handle gbm_bo_get_height gbm_bo_get_stride gbm_bo_get_user_data gbm_bo_get_width gbm_bo_import gbm_bo_map gbm_bo_ref gbm_bo_set_user_data gbm_bo_unmap gbm_bo_unref gbm_bo_write gbm_create_device gbm_device_destroy gbm_device_get_backend_name gbm_device_get_fd gbm_device_is_format_supported gbm_surface_create gbm_surface_destroy gbm_surface_has_free_buffers gbm_surface_lock_front_buffer gbm_surface_nolock_front_buffer gbm_surface_release_buffer getNumBytesForUTF8 getcwd getenv getpagesize getpid getrlimit getrusage gettimeofday getuid glActiveShaderProgram glActiveTexture glAlphaFunc glAlphaFuncx glAlphaFuncxOES glAttachShader glBeginQuery glBeginQueryEXT glBeginTransformFeedback glBindAttribLocation glBindBuffer glBindBufferBase glBindBufferRange glBindFramebuffer glBindFramebufferOES glBindImageTexture glBindProgramPipeline glBindRenderbuffer glBindRenderbufferOES glBindSampler glBindTexture glBindTransformFeedback glBindVertexArray glBindVertexArrayOES glBindVertexBuffer glBlendBarrier glBlendBarrierKHR glBlendColor glBlendEquation glBlendEquationOES glBlendEquationSeparate glBlendEquationSeparateOES glBlendEquationSeparatei glBlendEquationSeparateiEXT glBlendEquationSeparateiOES glBlendEquationi glBlendEquationiEXT glBlendEquationiOES glBlendFunc glBlendFuncSeparate glBlendFuncSeparateOES glBlendFuncSeparatei glBlendFuncSeparateiEXT glBlendFuncSeparateiOES glBlendFunci glBlendFunciEXT glBlendFunciOES glBlitFramebuffer glBufferData glBufferSubData glCheckFramebufferStatus glCheckFramebufferStatusOES glClear glClearBufferfi glClearBufferfv glClearBufferiv glClearBufferuiv glClearColor glClearColorx glClearColorxOES glClearDepthf glClearDepthfOES glClearDepthx glClearDepthxOES glClearStencil glClientActiveTexture glClientWaitSync glClipPlanef glClipPlanefOES glClipPlanex glClipPlanexOES glColor4f glColor4ub glColor4x glColor4xOES glColorMask glColorMaski glColorMaskiEXT glColorMaskiOES glColorPointer glCompileShader glCompressedTexImage2D glCompressedTexImage3D glCompressedTexImage3DOES glCompressedTexSubImage2D glCompressedTexSubImage3D glCompressedTexSubImage3DOES glCopyBufferSubData glCopyImageSubData glCopyImageSubDataEXT glCopyImageSubDataOES glCopyTexImage2D glCopyTexSubImage2D glCopyTexSubImage3D glCopyTexSubImage3DOES glCreateProgram glCreateShader glCreateShaderProgramv glCullFace glCurrentPaletteMatrixOES glDebugMessageCallback glDebugMessageCallbackKHR glDebugMessageControl glDebugMessageControlKHR glDebugMessageInsert glDebugMessageInsertKHR glDeleteBuffers glDeleteFramebuffers glDeleteFramebuffersOES glDeleteProgram glDeleteProgramPipelines glDeleteQueries glDeleteQueriesEXT glDeleteRenderbuffers glDeleteRenderbuffersOES glDeleteSamplers glDeleteShader glDeleteSync glDeleteTextures glDeleteTransformFeedbacks glDeleteVertexArrays glDeleteVertexArraysOES glDepthFunc glDepthMask glDepthRangef glDepthRangefOES glDepthRangex glDepthRangexOES glDetachShader glDisable glDisableClientState glDisableVertexAttribArray glDisablei glDisableiEXT glDisableiOES glDiscardFramebufferEXT glDispatchCompute glDispatchComputeIndirect glDrawArrays glDrawArraysIndirect glDrawArraysInstanced glDrawBuffers glDrawElements glDrawElementsBaseVertex glDrawElementsBaseVertexEXT glDrawElementsBaseVertexOES glDrawElementsIndirect glDrawElementsInstanced glDrawElementsInstancedBaseVertex glDrawElementsInstancedBaseVertexEXT glDrawElementsInstancedBaseVertexOES glDrawRangeElements glDrawRangeElementsBaseVertex glDrawRangeElementsBaseVertexEXT glDrawRangeElementsBaseVertexOES glDrawTexfOES glDrawTexfvOES glDrawTexiOES glDrawTexivOES glDrawTexsOES glDrawTexsvOES glDrawTexxOES glDrawTexxvOES glEGLImageTargetRenderbufferStorageOES glEGLImageTargetTexture2DOES glEnable glEnableClientState glEnableVertexAttribArray glEnablei glEnableiEXT glEnableiOES glEndQuery glEndQueryEXT glEndTransformFeedback glFenceSync glFinish glFlush glFlushMappedBufferRange glFogf glFogfv glFogx glFogxOES glFogxv glFogxvOES glFramebufferParameteri glFramebufferRenderbuffer glFramebufferRenderbufferOES glFramebufferTexture glFramebufferTexture2D glFramebufferTexture2DMultisampleEXT glFramebufferTexture2DOES glFramebufferTexture3DOES glFramebufferTextureEXT glFramebufferTextureLayer glFramebufferTextureMultisampleMultiviewOVR glFramebufferTextureMultiviewOVR glFramebufferTextureOES glFrontFace glFrustumf glFrustumfOES glFrustumx glFrustumxOES glGenBuffers glGenFramebuffers glGenFramebuffersOES glGenProgramPipelines glGenQueries glGenQueriesEXT glGenRenderbuffers glGenRenderbuffersOES glGenSamplers glGenTextures glGenTransformFeedbacks glGenVertexArrays glGenVertexArraysOES glGenerateMipmap glGenerateMipmapOES glGetActiveAttrib glGetActiveUniform glGetActiveUniformBlockName glGetActiveUniformBlockiv glGetActiveUniformsiv glGetAttachedShaders glGetAttribLocation glGetBooleani_v glGetBooleanv glGetBufferParameteri64v glGetBufferParameteriv glGetBufferPointerv glGetBufferPointervOES glGetClipPlanef glGetClipPlanefOES glGetClipPlanex glGetClipPlanexOES glGetDebugMessageLog glGetDebugMessageLogKHR glGetFixedv glGetFixedvOES glGetFloatv glGetFragDataLocation glGetFramebufferAttachmentParameteriv glGetFramebufferAttachmentParameterivOES glGetFramebufferParameteriv glGetGraphicsResetStatus glGetGraphicsResetStatusEXT glGetGraphicsResetStatusKHR glGetInteger64i_v glGetInteger64v glGetIntegeri_v glGetIntegerv glGetInternalformativ glGetLightfv glGetLightxv glGetLightxvOES glGetMaterialfv glGetMaterialxv glGetMaterialxvOES glGetMultisamplefv glGetObjectLabel glGetObjectLabelKHR glGetObjectPtrLabel glGetObjectPtrLabelKHR glGetPointerv glGetPointervKHR glGetProgramBinary glGetProgramBinaryOES glGetProgramInfoLog glGetProgramInterfaceiv glGetProgramPipelineInfoLog glGetProgramPipelineiv glGetProgramResourceIndex glGetProgramResourceLocation glGetProgramResourceName glGetProgramResourceiv glGetProgramiv glGetQueryObjecti64vEXT glGetQueryObjectivEXT glGetQueryObjectui64vEXT glGetQueryObjectuiv glGetQueryObjectuivEXT glGetQueryiv glGetQueryivEXT glGetRenderbufferParameteriv glGetRenderbufferParameterivOES glGetSamplerParameterIiv glGetSamplerParameterIivEXT glGetSamplerParameterIivOES glGetSamplerParameterIuiv glGetSamplerParameterIuivEXT glGetSamplerParameterIuivOES glGetSamplerParameterfv glGetSamplerParameteriv glGetShaderInfoLog glGetShaderPrecisionFormat glGetShaderSource glGetShaderiv glGetString glGetStringi glGetSynciv glGetTexEnvfv glGetTexEnviv glGetTexEnvxv glGetTexEnvxvOES glGetTexGenfvOES glGetTexGenivOES glGetTexGenxvOES glGetTexLevelParameterfv glGetTexLevelParameteriv glGetTexParameterIiv glGetTexParameterIivEXT glGetTexParameterIivOES glGetTexParameterIuiv glGetTexParameterIuivEXT glGetTexParameterIuivOES glGetTexParameterfv glGetTexParameteriv glGetTexParameterxv glGetTexParameterxvOES glGetTransformFeedbackVarying glGetUniformBlockIndex glGetUniformIndices glGetUniformLocation glGetUniformfv glGetUniformiv glGetUniformuiv glGetVertexAttribIiv glGetVertexAttribIuiv glGetVertexAttribPointerv glGetVertexAttribfv glGetVertexAttribiv glGetnUniformfv glGetnUniformfvEXT glGetnUniformfvKHR glGetnUniformiv glGetnUniformivEXT glGetnUniformivKHR glGetnUniformuiv glGetnUniformuivKHR glHint glInvalidateFramebuffer glInvalidateSubFramebuffer glIsBuffer glIsEnabled glIsEnabledi glIsEnablediEXT glIsEnablediOES glIsFramebuffer glIsFramebufferOES glIsProgram glIsProgramPipeline glIsQuery glIsQueryEXT glIsRenderbuffer glIsRenderbufferOES glIsSampler glIsShader glIsSync glIsTexture glIsTransformFeedback glIsVertexArray glIsVertexArrayOES glLightModelf glLightModelfv glLightModelx glLightModelxOES glLightModelxv glLightModelxvOES glLightf glLightfv glLightx glLightxOES glLightxv glLightxvOES glLineWidth glLineWidthx glLineWidthxOES glLinkProgram glLoadIdentity glLoadMatrixf glLoadMatrixx glLoadMatrixxOES glLoadPaletteFromModelViewMatrixOES glLogicOp glMapBufferOES glMapBufferRange glMaterialf glMaterialfv glMaterialx glMaterialxOES glMaterialxv glMaterialxvOES glMatrixIndexPointerOES glMatrixMode glMemoryBarrier glMemoryBarrierByRegion glMinSampleShading glMinSampleShadingOES glMultMatrixf glMultMatrixx glMultMatrixxOES glMultiTexCoord4b glMultiTexCoord4bOES glMultiTexCoord4f glMultiTexCoord4x glMultiTexCoord4xOES glNormal3f glNormal3x glNormal3xOES glNormalPointer glObjectLabel glObjectLabelKHR glObjectPtrLabel glObjectPtrLabelKHR glOrthof glOrthofOES glOrthox glOrthoxOES glPatchParameteri glPatchParameteriEXT glPatchParameteriOES glPauseTransformFeedback glPixelStorei glPointParameterf glPointParameterfv glPointParameterx glPointParameterxOES glPointParameterxv glPointParameterxvOES glPointSize glPointSizePointerOES glPointSizex glPointSizexOES glPolygonOffset glPolygonOffsetx glPolygonOffsetxOES glPopDebugGroup glPopDebugGroupKHR glPopMatrix glPrimitiveBoundingBox glPrimitiveBoundingBoxEXT glPrimitiveBoundingBoxOES glProgramBinary glProgramBinaryOES glProgramParameteri glProgramUniform1f glProgramUniform1fv glProgramUniform1i glProgramUniform1iv glProgramUniform1ui glProgramUniform1uiv glProgramUniform2f glProgramUniform2fv glProgramUniform2i glProgramUniform2iv glProgramUniform2ui glProgramUniform2uiv glProgramUniform3f glProgramUniform3fv glProgramUniform3i glProgramUniform3iv glProgramUniform3ui glProgramUniform3uiv glProgramUniform4f glProgramUniform4fv glProgramUniform4i glProgramUniform4iv glProgramUniform4ui glProgramUniform4uiv glProgramUniformMatrix2fv glProgramUniformMatrix2x3fv glProgramUniformMatrix2x4fv glProgramUniformMatrix3fv glProgramUniformMatrix3x2fv glProgramUniformMatrix3x4fv glProgramUniformMatrix4fv glProgramUniformMatrix4x2fv glProgramUniformMatrix4x3fv glPushDebugGroup glPushDebugGroupKHR glPushMatrix glQueryCounterEXT glQueryMatrixxOES glReadBuffer glReadPixels glReadnPixels glReadnPixelsEXT glReadnPixelsKHR glReleaseShaderCompiler glRenderbufferStorage glRenderbufferStorageMultisample glRenderbufferStorageMultisampleEXT glRenderbufferStorageOES glResumeTransformFeedback glRotatef glRotatex glRotatexOES glSampleCoverage glSampleCoveragex glSampleCoveragexOES glSampleMaski glSamplerParameterIiv glSamplerParameterIivEXT glSamplerParameterIivOES glSamplerParameterIuiv glSamplerParameterIuivEXT glSamplerParameterIuivOES glSamplerParameterf glSamplerParameterfv glSamplerParameteri glSamplerParameteriv glScalef glScalex glScalexOES glScissor glShadeModel glShaderBinary glShaderSource glStencilFunc glStencilFuncSeparate glStencilMask glStencilMaskSeparate glStencilOp glStencilOpSeparate glTexBuffer glTexBufferEXT glTexBufferOES glTexBufferRange glTexBufferRangeEXT glTexBufferRangeOES glTexCoordPointer glTexEnvf glTexEnvfv glTexEnvi glTexEnviv glTexEnvx glTexEnvxOES glTexEnvxv glTexEnvxvOES glTexGenfOES glTexGenfvOES glTexGeniOES glTexGenivOES glTexGenxOES glTexGenxvOES glTexImage2D glTexImage3D glTexImage3DOES glTexParameterIiv glTexParameterIivEXT glTexParameterIivOES glTexParameterIuiv glTexParameterIuivEXT glTexParameterIuivOES glTexParameterf glTexParameterfv glTexParameteri glTexParameteriv glTexParameterx glTexParameterxOES glTexParameterxv glTexParameterxvOES glTexStorage2D glTexStorage2DEXT glTexStorage2DMultisample glTexStorage3D glTexStorage3DEXT glTexStorage3DMultisample glTexStorage3DMultisampleOES glTexSubImage2D glTexSubImage3D glTexSubImage3DOES glTransformFeedbackVaryings glTranslatef glTranslatex glTranslatexOES glUniform1f glUniform1fv glUniform1i glUniform1iv glUniform1ui glUniform1uiv glUniform2f glUniform2fv glUniform2i glUniform2iv glUniform2ui glUniform2uiv glUniform3f glUniform3fv glUniform3i glUniform3iv glUniform3ui glUniform3uiv glUniform4f glUniform4fv glUniform4i glUniform4iv glUniform4ui glUniform4uiv glUniformBlockBinding glUniformMatrix2fv glUniformMatrix2x3fv glUniformMatrix2x4fv glUniformMatrix3fv glUniformMatrix3x2fv glUniformMatrix3x4fv glUniformMatrix4fv glUniformMatrix4x2fv glUniformMatrix4x3fv glUnmapBuffer glUnmapBufferOES glUseProgram glUseProgramStages glValidateProgram glValidateProgramPipeline glVertexAttrib1f glVertexAttrib1fv glVertexAttrib2f glVertexAttrib2fv glVertexAttrib3f glVertexAttrib3fv glVertexAttrib4f glVertexAttrib4fv glVertexAttribBinding glVertexAttribDivisor glVertexAttribFormat glVertexAttribI4i glVertexAttribI4iv glVertexAttribI4ui glVertexAttribI4uiv glVertexAttribIFormat glVertexAttribIPointer glVertexAttribPointer glVertexBindingDivisor glVertexPointer glViewport glWaitSync glWeightPointerOES gles_vertexp_bb_neon_transform_and_produce_clip_bits gles_vertexp_neon_indices_scan_4xu16 gles_vertexp_neon_indices_scan_4xu16_restart gles_vertexp_neon_indices_scan_4xu32 gles_vertexp_neon_indices_scan_4xu32_restart ioctl isLegalUTF8Sequence isLegalUTF8String isalnum isalpha isatty isprint isxdigit kill listen llvm_regcomp llvm_regerror llvm_regexec llvm_regfree llvm_strlcpy localtime localtime_r log log10 log2 logf longjmp lseek mali_buffer_sharing_interface mali_egl_image_get_buffer_ext_phandle mali_egl_image_get_buffer_ext_type mali_egl_image_get_buffer_size mali_egl_image_get_format malioc_compile malioc_get_api_version malioc_get_capabilities malioc_release_capabilities malioc_release_outputs mallinfo malloc memchr memcmp memcpy memmove memset mincore mkdir mlock mmap mmap64 munlock munmap nearbyintf newlocale opendir osup_d_mutex_term osup_deregister_unload_callback osup_dlclose osup_dlopen osup_dlsym osup_get_number_of_cpu_cores osup_mutex_lock osup_mutex_static_get osup_mutex_unlock osup_register_unload_callback osup_sem_init osup_sem_post osup_sem_term osup_sem_timedwait osup_sem_trywait osup_sem_wait osup_spinlock_lock osup_spinlock_term osup_spinlock_unlock osup_sync_object_clear osup_sync_object_init osup_sync_object_set_and_broadcast osup_sync_object_term osup_sync_object_timedwait osup_sync_object_wait osup_thread_callback_set osup_thread_callback_unset osup_thread_create osup_thread_data_get osup_thread_data_set osup_thread_getname osup_thread_setdeferrability osup_thread_setname perror pipe poll posix_spawn posix_spawn_file_actions_adddup2 posix_spawn_file_actions_addopen posix_spawn_file_actions_destroy posix_spawn_file_actions_init pow powf prctl pread pthread_cond_broadcast pthread_cond_destroy pthread_cond_init pthread_cond_timedwait pthread_cond_wait pthread_condattr_destroy pthread_condattr_init pthread_condattr_setclock pthread_create pthread_getspecific pthread_join pthread_key_delete pthread_mutex_destroy pthread_mutex_init pthread_mutex_lock pthread_mutex_unlock pthread_mutexattr_destroy pthread_mutexattr_init pthread_mutexattr_settype pthread_once pthread_rwlock_destroy pthread_rwlock_init pthread_rwlock_rdlock pthread_rwlock_unlock pthread_rwlock_wrlock pthread_self pthread_setschedparam pthread_setspecific pthread_sigmask putchar qsort raise readdir realloc realpath recv remove sched_get_priority_max sched_get_priority_min sem_destroy send setrlimit shutdown sigaction sigemptyset sigfillset sincosf sinh socket sqrt srand sscanf stderr stdout strchr strcmp strerror_r strftime strlen strncmp strncpy strnlen strpbrk strsignal strstr strtod strtol strtol_l strtoul strtoul_l strtoull sysconf tanh uname unlink usleep vsnprintf waitpid wl_buffer_interface wl_callback_interface wl_client_get_display wl_client_post_no_memory wl_display_cancel_read wl_display_connect wl_display_create_queue wl_display_disconnect wl_display_dispatch_queue wl_display_dispatch_queue_pending wl_display_flush wl_display_get_error wl_display_get_fd wl_display_prepare_read_queue wl_display_read_events wl_egl_window_create wl_egl_window_destroy wl_egl_window_get_attached_size wl_egl_window_release wl_egl_window_resize wl_egl_window_retain wl_event_queue_destroy wl_global_create wl_global_destroy wl_proxy_add_listener wl_proxy_create_wrapper wl_proxy_destroy wl_proxy_marshal wl_proxy_marshal_constructor wl_proxy_marshal_constructor_versioned wl_proxy_set_queue wl_proxy_wrapper_destroy wl_registry_interface wl_resource_create wl_resource_destroy wl_resource_get_client wl_resource_get_user_data wl_resource_instance_of wl_resource_post_error wl_resource_post_event wl_resource_set_implementation wl_resource_set_user_data GLIBC_2.4 GCC_3.5 CXXABI_1.3.5 GLIBCXX_3.4.14 CXXABI_ARM_1.3.3 GLIBCXX_3.4.18 GLIBCXX_3.4.11 GLIBCXX_3.4.9 GLIBCXX_3.4.15 CXXABI_1.3 GLIBCXX_3.4.20 GLIBCXX_3.4 GLIBC_2.7 GLIBC_2.15 libmali.so