Validation of Sort Sizes in an Oracle10g Database



Validation of Sort Sizes in an Oracle10g Database

Michael R. Ault

This test was constructed as a repeatable test case to show that the principles set forth in Don Burleson’s article Undocumented secrets for super-sizing your PGA are correct in most of the cases that I see as an Oracle tuning consultant.

.

Test Plan:

1. Establish test parameters:

This test is designed to show the affects of varying the settings of pga_aggregate_target, “_pga_max_size” and “_smm_px_max_size” on a users sort area size for both serial and parallel queries.

2. Methodology:

a. Establish a large enough table that will ensure all test sorts will spill to disk, thus ensuring the maximum sort area is utilized

b. Using the table from (a.) run repeated tests with varying set points for the parameters in a 10g database and utilize the v$workarea tables to view the changes in sort areas for both serial and parallel sorts.

c. Values to be checked:

a. Pga_aggregate_target of 1 gigabyte with default values for all undocumented parameters with a serial sort.

b. Pga_aggregate_target of 4 gigabytes with default values for all undocumented parameters with a serial sort.

c. Pga_aggregate_target of 4 gigabytes with “_pga_max_size” set to 200 megabytes and default for all other undocumented parameters with a serial sort.

d. Pga_aggregate_target of 4 gigabytes with “_pga_max_size” set to 200 megabytes and “_smm_px_max_size” set to 333, varying the degree of parallel for the test query from 2 to 7.

d. Correlate the values and generate test documentation with findings.

Test System

The test is being accomplished utilizing a 3.0 gigahertz hyper threading P4 based system running the RedHat 3 kernel and utilizing the 10.1.0.3 release of Oracle. The test system runs against an 8 disk Nstore disk array that is in a RAID1 configuration with 1 128K stripe width; all disks participate in the stripe. The total available capacity is 120 gigabytes of external storage with two additional internal drives each with 110 gigabytes of formatted capacity. The internal drives are used for the operating system and programs as well as swap area. The external drive array is utilized strictly for Oracle data. ASM is not being utilized.

Test Table

The test table consists of the columns shown in Figure 1 and contains simulated health record related data.

desc test_pga

Name Null? Type

----------------------------------------- -------- ----------------------------

NAME VARCHAR2(128)

CODE1 VARCHAR2(4)

CODE2 VARCHAR2(4)

DISTRICT_NAME VARCHAR2(30)

MONTH VARCHAR2(6)

CODE3 VARCHAR2(9)

CODE_3_DESC VARCHAR2(30)

FIRST_DATE DATE

SEC_DATE DATE

COUNT1 NUMBER

COUNT2 NUMBER

COUNT3 NUMBER

Figure 1: Test Table Columns

The table size and row count data are shown in Figure 2:

SQL> select table_name,num_rows,(blocks*8192)/(1024*1024) meg, avg_row_len from user_tables where table_name='TEST_PGA';

TABLE_NAME NUM_ROWS MEG AVG_ROW_LEN

------------------------------ ---------- ---------- -----------

TEST_PGA 4547752 624.78125 124

Figure 2: Test Table Size Data

With a size of over 624 megabytes this table should provide maximum sort segment sizing with the test SQL statement shown in Figure 3 for both serial and parallel sorts.

SQL for serial tests:

select * from test_pga

order by district_name,name

/

SQL for parallel tests:

select /*+ parallel(test_pga 7) */

* from test_pga

order by district_name,name

/

Figure 3: Test SQL Statements

The degree of parallel in the PARALLEL hint in the test SQL will be varied between 2 and 7 during the test.

Figure 4 shows the validation of the Oracle version and options used during the test.

SQL> select * from v$version;

BANNER

----------------------------------------------------------------

Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Prod

PL/SQL Release 10.1.0.3.0 - Production

CORE 10.1.0.3.0 Production

TNS for Linux: Version 10.1.0.3.0 - Production

NLSRTL Version 10.1.0.3.0 – Production

Figure 4: Test System Oracle Verification

Figure 5 shows the operating system version validate data.

[oracle@aultlinux3 test]$ uname -a

Linux aultlinux3 2.6.9-5.ELsmp #1 SMP Wed Jan 5 19:30:39 EST 2005 i686 i686 i386 GNU/Linux

Figure 5: OS Validation

Appendix A contains the full list of documented and undocumented parameters form the start of the test.

Figure 6 shows the baseline startup statistics from the test system.

SQL>

ORACLE instance started.

Total System Global Area 1073741824 bytes

Fixed Size 782568 bytes

Variable Size 355208984 bytes

Database Buffers 717225984 bytes

Redo Buffers 524288 bytes

Database mounted.

Database opened.

Figure 6: Startup Statistics

Figure 7 shows all non-default initialization parameters at the start of testing.

Mon Sep 05 page 1

Non-Default Initialization Parameters

NUM TYPE NAME VALUE

---- ----- ------------------------------------- ----------------------

317 6 __db_cache_size 717225984

96 6 __java_pool_size 8388608

94 6 __large_pool_size 4194304

92 6 __shared_pool_size 234881024

779 2 audit_trail TRUE

751 2 background_dump_dest /home/oracle/admin/test/bdump

389 2 compatible 10.1.0.2.0

296 2 control_files /home/oracle/oradata/test/con

trol01.ctl, /home/oracle/orada

ta/test/control02.ctl, /home/

oracle/oradata/test/control03

.ctl

754 2 core_dump_dest /home/oracle/admin/test/cdump

309 3 db_block_size 8192

668 2 db_domain

465 3 db_file_multiblock_read_count 32

787 2 db_name test

479 2 db_recovery_file_dest /home/oracle/flash_recovery_ar

ea

480 6 db_recovery_file_dest_size 2147483648

331 3 db_writer_processes 7

675 2 dispatchers (PROTOCOL=TCP) (SERVICE=testX

DB)

119 3 enqueue_resources 3000

706 3 job_queue_processes 10

790 3 open_cursors 300

939 6 pga_aggregate_target 1073741824

20 3 processes 600

662 2 remote_login_passwordfile EXCLUSIVE

52 6 sga_max_size 1073741824

285 6 sga_target 1073741824

807 2 star_transformation_enabled TRUE

98 6 streams_pool_size 104857600

608 2 undo_management AUTO

609 2 undo_tablespace UNDOTBSP2

752 2 user_dump_dest /home/oracle/admin/test/udump

30 rows selected.

Figure 7: Non-Default Initialization Parameters

The test results will be captured by procedure and placed into the test_results table:

desc test_results

Name Null? Type

----------------------------------------- -------- -------------------

SID NUMBER

WORK_AREA_SIZE NUMBER

EXPECTED_SIZE NUMBER

ACTUAL_MEM_USED NUMBER

MAX_MEM_USED NUMBER

TEMPSEG_SIZE NUMBER

NOW VARCHAR2(12)

The following procedure will be used to populate the test results table:

create or replace procedure get_results as

x boolean;

i integer;

begin

x:=true;

while x loop

insert into test_results

SELECT

sid,

work_area_size,

expected_size,

actual_mem_used,

max_mem_used,

tempseg_size,

to_char(sysdate,'ddmmyyhh24miss')

FROM

V$SQL_WORKAREA_ACTIVE

WHERE

operation_type='SORT';

commit;

select count(*) into i from V$SQL_WORKAREA_ACTIVE

WHERE

operation_type='SORT';

if i=0 then

x:=false;

end if;

dbms_lock.sleep(1);

end loop;

end;

/

The procedure selects results into the test results table every second while it still sees sorts occurring. This is a test environment dedicated to this test so no other users will be present on the system. In a busy system the procedure would have to be modified to allow for the proper SIDS to be captured. The TEST_RESULTS table will be truncated after each test run (the results will be moved to an excel spreadsheet for analysis).

This concludes the documentation of the test platform and start conditions for the test.

Results

The results show close agreement with the predicted behavior. The two sets of tests involved serial sort behavior and parallel sort behavior.

Serial Sort Behavior

For the serial sort test Chart 1 shows the results in graphic form.

[pic]

Chart 1: Predicted Verses Actual Sort Size (Serial Sorts)

The data used to compile chart one is shown in Table 1 and was derived by taking the maximum sort memory utilized from the results for a specific test. All serial test results are in Appendix B.

|PAT/PMS |Predicted |Actual |

|1g Default PMS |51.2 |45.5 |

|4g Default PMS |100 |97.578125 |

|4g 400M PMS |200 |172.890625 |

Table 1: Predicted Verses Actual Data Chart

While we didn’t achieve the full 200 megabytes expected, we still increased available sort size by a factor of 3.8, very close to the predicted factor of 4.

Parallel Sort Behavior

Parallel sort area size behavior under different settings of DOP and a constant 4 Gigabyte (actually 4g-1 byte) PGA_AGGREGATE_TARGET and 333 megabyte setting for “_smm_px_max_size” also tracked with predictions within expected overhead margins. Chart 2 shows the actual results verses predicted results for the parallel query testing.

[pic]

Chart 2: Actual Verses Predicted Sort Size for Various DOP Settings

Predicted sizes were calculated by dividing the “_smm_px_max_size” setting by the degree of parallel. Actual sizes were taken form the results data for the maximum sort memory size value for the parallel sessions.

Table 2 shows the numerical data for Chart 2.

|DOP |Predicted Sort Size |Actual Sort Size |

|DOP 2 |166.5 |142.8828125 |

|DOP 3 |111 |97.578125 |

|DOP 4 |83.25 |80.6328125 |

|DOP 5 |66.6 |55.0625 |

|DOP 6 |55.5 |55.0625 |

|DOP 7 |47.57143 |42.4140625 |

Table 2: Actual Verses Predicted Values for Various DOP Settings

Notice that a DOP of 5 or 6 resulted in the same memory setting for sorts. Also notice that the actual size of 80.63 is very close to the predicted setting of 83.25 (84 if a ceiling function is used) for a DOP of 4.

The complete results for all DOP tests are in Appendix C.

Appendix A: All Initialization Parameters

In this appendix I list all of the initialization parameters, both documented and undocumented for the TEST environment.

Documented Initialization Parameters

Mon Sep 05 page 1

INIT.ORA PARAMETER LISTING

NUM TYPE NAME VALUE

---- ----- ------------------------------------- ------------------------------

660 1 O7_DICTIONARY_ACCESSIBILITY FALSE

317 6 __db_cache_size 717225984

96 6 __java_pool_size 8388608

94 6 __large_pool_size 4194304

92 6 __shared_pool_size 234881024

208 3 active_instance_count

#### 3 aq_tm_processes 0

450 3 archive_lag_target 0

#### 2 asm_diskgroups

#### 2 asm_diskstring

#### 3 asm_power_limit 1

761 2 audit_file_dest /home/oracle/DBHome1/rdbms/aud

it

666 1 audit_sys_operations FALSE

779 2 audit_trail TRUE

750 2 background_core_dump partial

751 2 background_dump_dest /home/oracle/admin/test/bdump

167 1 backup_tape_io_slaves FALSE

712 3 bitmap_merge_area_size 1048576

802 1 blank_trimming FALSE

349 2 buffer_pool_keep

350 2 buffer_pool_recycle

679 3 circuits

469 1 cluster_database FALSE

472 3 cluster_database_instances 1

180 2 cluster_interconnects

672 3 commit_point_strength 1

389 2 compatible 10.1.0.2.0

303 3 control_file_record_keep_time 7

296 2 control_files /home/oracle/oradata/test/con

trol01.ctl, /home/oracle/orada

ta/test/control02.ctl, /home/

oracle/oradata/test/control03

.ctl

754 2 core_dump_dest /home/oracle/admin/test/cdump

42 3 cpu_count 2

711 3 create_bitmap_area_size 8388608

653 2 create_stored_outlines

714 2 cursor_sharing EXACT

690 1 cursor_space_for_time FALSE

323 6 db_16k_cache_size 0

320 6 db_2k_cache_size 0

324 6 db_32k_cache_size 0

321 6 db_4k_cache_size 0

322 6 db_8k_cache_size 0

304 3 db_block_buffers 0

630 1 db_block_checking FALSE

308 1 db_block_checksum TRUE

Mon Sep 05 page 2

INIT.ORA PARAMETER LISTING

NUM TYPE NAME VALUE

---- ----- ------------------------------------- ------------------------------

309 3 db_block_size 8192

378 2 db_cache_advice ON

318 6 db_cache_size 0

473 2 db_create_file_dest

474 2 db_create_online_log_dest_1

475 2 db_create_online_log_dest_2

476 2 db_create_online_log_dest_3

477 2 db_create_online_log_dest_4

478 2 db_create_online_log_dest_5

668 2 db_domain

465 3 db_file_multiblock_read_count 32

301 2 db_file_name_convert

464 3 db_files 200

557 3 db_flashback_retention_target 1440

325 6 db_keep_cache_size 0

787 2 db_name test

479 2 db_recovery_file_dest /home/oracle/flash_recovery_ar

ea

480 6 db_recovery_file_dest_size 2147483648

326 6 db_recycle_cache_size 0

789 2 db_unique_name test

331 3 db_writer_processes 7

163 3 dbwr_io_slaves 0

576 1 ddl_wait_for_locks FALSE

#### 2 dg_broker_config_file1 /home/oracle/DBHome1/dbs/dr1hf

dwh.dat

#### 2 dg_broker_config_file2 /home/oracle/DBHome1/dbs/dr2hf

dwh.dat

#### 1 dg_broker_start FALSE

160 1 disk_asynch_io TRUE

675 2 dispatchers (PROTOCOL=TCP) (SERVICE=testX

DB)

670 3 distributed_lock_timeout 60

575 3 dml_locks 2924

#### 1 drs_start FALSE

119 3 enqueue_resources 3000

45 2 event

440 2 fal_client

441 2 fal_server

522 3 fast_start_io_target 0

523 3 fast_start_mttr_target 0

625 2 fast_start_parallel_rollback LOW

185 1 file_mapping FALSE

152 2 fileio_network_adapters

154 2 filesystemio_options none

778 2 fixed_date

Mon Sep 05 page 3

INIT.ORA PARAMETER LISTING

NUM TYPE NAME VALUE

---- ----- ------------------------------------- ------------------------------

486 2 gc_files_to_locks

197 3 gcs_server_processes 0

667 2 global_context_pool_size

669 1 global_names FALSE

739 3 hash_area_size 131072

58 3 hi_shared_memory_address 0

#### 1 hs_autoregister TRUE

791 4 ifile

44 2 instance_groups

673 2 instance_name test

585 3 instance_number 0

113 2 instance_type RDBMS

104 3 java_max_sessionspace_size 0

97 6 java_pool_size 0

103 3 java_soft_sessionspace_limit 0

706 3 job_queue_processes 10

95 6 large_pool_size 0

654 2 ldap_directory_access NONE

25 3 license_max_sessions 0

663 3 license_max_users 0

26 3 license_sessions_warning 0

681 2 local_listener

19 2 lock_name_space

61 1 lock_sga FALSE

397 2 log_archive_config

405 2 log_archive_dest

407 2 log_archive_dest_1

416 2 log_archive_dest_10

408 2 log_archive_dest_2

409 2 log_archive_dest_3

410 2 log_archive_dest_4

411 2 log_archive_dest_5

412 2 log_archive_dest_6

413 2 log_archive_dest_7

414 2 log_archive_dest_8

415 2 log_archive_dest_9

417 2 log_archive_dest_state_1 enable

426 2 log_archive_dest_state_10 enable

418 2 log_archive_dest_state_2 enable

419 2 log_archive_dest_state_3 enable

420 2 log_archive_dest_state_4 enable

421 2 log_archive_dest_state_5 enable

422 2 log_archive_dest_state_6 enable

423 2 log_archive_dest_state_7 enable

424 2 log_archive_dest_state_8 enable

425 2 log_archive_dest_state_9 enable

406 2 log_archive_duplex_dest

434 2 log_archive_format %t_%s_%r.dbf

433 1 log_archive_local_first TRUE

427 3 log_archive_max_processes 2

Mon Sep 05 page 4

INIT.ORA PARAMETER LISTING

NUM TYPE NAME VALUE

---- ----- ------------------------------------- ------------------------------

430 3 log_archive_min_succeed_dest 1

399 1 log_archive_start FALSE

432 3 log_archive_trace 0

445 3 log_buffer 524288

447 3 log_checkpoint_interval 0

448 3 log_checkpoint_timeout 1800

528 1 log_checkpoints_to_alert FALSE

302 2 log_file_name_convert

538 3 logmnr_max_persistent_sessions 1

387 3 max_commit_propagation_delay 700

678 3 max_dispatchers

753 2 max_dump_file_size UNLIMITED

657 3 max_enabled_roles 150

677 3 max_shared_servers

140 2 nls_calendar

146 2 nls_comp

137 2 nls_currency

136 2 nls_date_format

135 2 nls_date_language

145 2 nls_dual_currency

139 2 nls_iso_currency

132 2 nls_language AMERICAN

147 2 nls_length_semantics BYTE

148 2 nls_nchar_conv_excp FALSE

138 2 nls_numeric_characters

134 2 nls_sort

133 2 nls_territory AMERICA

141 2 nls_time_format

143 2 nls_time_tz_format

142 2 nls_timestamp_format

144 2 nls_timestamp_tz_format

764 3 object_cache_max_size_percent 10

763 3 object_cache_optimal_size 102400

#### 6 olap_page_pool_size 0

790 3 open_cursors 300

771 3 open_links 4

772 3 open_links_per_instance 4

960 3 optimizer_dynamic_sampling 2

777 2 optimizer_features_enable 10.1.0.3

872 3 optimizer_index_caching 0

871 3 optimizer_index_cost_adj 100

795 2 optimizer_mode ALL_ROWS

793 2 os_authent_prefix ops$

655 1 os_roles FALSE

847 1 parallel_adaptive_multi_user TRUE

849 1 parallel_automatic_tuning FALSE

729 3 parallel_execution_message_size 2148

726 2 parallel_instance_group

721 3 parallel_max_servers 40

708 3 parallel_min_percent 0

Mon Sep 05 page 5

INIT.ORA PARAMETER LISTING

NUM TYPE NAME VALUE

---- ----- ------------------------------------- ------------------------------

720 3 parallel_min_servers 0

470 1 parallel_server FALSE

471 3 parallel_server_instances 1

848 3 parallel_threads_per_cpu 2

939 6 pga_aggregate_target 1073741824

702 2 plsql_code_type INTERPRETED

698 2 plsql_compiler_flags INTERPRETED, NON_DEBUG

704 1 plsql_debug FALSE

699 2 plsql_native_library_dir

700 3 plsql_native_library_subdir_count 0

705 3 plsql_optimize_level 2

697 1 plsql_v2_compatibility FALSE

701 2 plsql_warnings DISABLE:ALL

56 1 pre_page_sga FALSE

20 3 processes 600

881 2 query_rewrite_enabled TRUE

882 2 query_rewrite_integrity enforced

656 2 rdbms_server_dn

467 1 read_only_open_delayed FALSE

529 3 recovery_parallelism 0

396 2 remote_archive_enable true

693 2 remote_dependencies_mode TIMESTAMP

682 2 remote_listener

662 2 remote_login_passwordfile EXCLUSIVE

658 1 remote_os_authent FALSE

659 1 remote_os_roles FALSE

579 1 replication_dependency_tracking TRUE

24 1 resource_limit FALSE

171 2 resource_manager_plan

627 3 resumable_timeout 0

600 2 rollback_segments

689 2 serial_reuse disable

674 2 service_names test

691 3 session_cached_cursors 0

766 3 session_max_open_files 10

21 3 sessions 665

52 6 sga_max_size 1073741824

285 6 sga_target 1073741824

749 2 shadow_core_dump partial

57 3 shared_memory_address 0

100 6 shared_pool_reserved_size 11744051

93 6 shared_pool_size 0

680 3 shared_server_sessions

676 3 shared_servers 1

#### 1 skip_unusable_indexes TRUE

695 2 smtp_out_server

781 3 sort_area_retained_size 0

780 3 sort_area_size 65536

788 2 sp_name test

112 2 spfile /home/oracle/DBHome1/dbs/spfil

Mon Sep 05 page 6

INIT.ORA PARAMETER LISTING

NUM TYPE NAME VALUE

---- ----- ------------------------------------- ----------------------

etest.ora

800 1 sql92_security FALSE

792 1 sql_trace FALSE

913 2 sql_version NATIVE

#### 2 sqltune_category DEFAULT

431 2 standby_archive_dest ?/dbs/arch

482 2 standby_file_management MANUAL

807 2 star_transformation_enabled TRUE

981 2 statistics_level TYPICAL

98 6 streams_pool_size 104857600

161 1 tape_asynch_io TRUE

517 3 thread 0

23 3 timed_os_statistics 0

22 1 timed_statistics TRUE

124 1 trace_enabled TRUE

2 2 tracefile_identifier

597 3 transactions 731

598 3 transactions_per_rollback_segment 5

608 2 undo_management AUTO

621 3 undo_retention 900

609 2 undo_tablespace UNDOTBSP2

59 1 use_indirect_data_buffers FALSE

752 2 user_dump_dest /home/oracle/admin/test/udump

694 2 utl_file_dir

941 2 workarea_size_policy AUTO

259 rows selected.

Undocumented Initialization Parameters

In the interest of full disclosure, here is the complete list of undocumented parameters at the start of the test.

Mon Sep 05 page 1

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_4031_dump_bitvec bitvec to specify 20479 20479

dumps prior to 4031

error

_4031_dump_interval Dump 4031 error once 300 300

for each n-second

interval

_4031_max_dumps Maximum number of 100 100

4031 dumps for this

process

_4031_sga_dump_interval Dump 4031 SGA 3600 3600

heapdump error once

for each n-second

interval

_4031_sga_max_dumps Maximum number of 10 10

SGA heapdumps

_NUMA_instance_mapping Set of nodes that Not specified Not specified

this instance should

run on

_NUMA_pool_size aggregate size in Not specified Not specified

bytes of NUMA pool

_PX_use_large_pool Use Large Pool as FALSE FALSE

source of PX buffers

__db_cache_size Actual size of 717225984 717225984

DEFAULT buffer pool

for standard block

size buffers

__java_pool_size Actual size in bytes 8388608 8388608

of java pool

__large_pool_size Actual size in bytes 4194304 4194304

of large pool

__shared_pool_size Actual size in bytes 234881024 234881024

of shared pool

_abort_recovery_on_join if TRUE, abort FALSE FALSE

recovery on join

reconfigurations

_active_standby_fast_reconfiguration if TRUE optimize dlm TRUE TRUE

reconfiguration for

Mon Sep 05 page 2

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

active/standby OPS

_adaptive_direct_read Adaptive Direct Read TRUE TRUE

_adaptive_fetch_enabled enable/disable TRUE TRUE

adaptive fetch in

parallel group by

_add_stale_mv_to_dependency_list add stale mv to TRUE TRUE

dependency list

_addm_auto_enable governs whether ADDM TRUE TRUE

gets run

automatically after

every AWR snapshot

_addm_skiprules comma-separated list

of ADDM nodes to

skip

_affinity_on enable/disable TRUE TRUE

affinity at run time

_aiowait_timeouts Number of aiowait 100 100

timeouts before

error is reported

_alert_expiration seconds before an 604800 604800

alert message is

moved to exception

queue

_all_shared_dblinks treat all dblinks as

shared

_allocate_creation_order should files be FALSE FALSE

examined in creation

order during

allocation

_allocation_update_interval interval at which 3 3

successful search in

L1 should be updated

_allow_commutativity allow for TRUE TRUE

commutativity of +,

* when comparing

expressions

_allow_error_simulation Allow error FALSE FALSE

simulation for

Mon Sep 05 page 3

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

testing

_allow_level_without_connect_by allow level without FALSE FALSE

connect by

_allow_read_only_corruption allow read-only open FALSE FALSE

even if database is

corrupt

_allow_resetlogs_corruption allow resetlogs even FALSE FALSE

if it will cause

corruption

_allow_terminal_recovery_corruption Finish terminal FALSE FALSE

recovery even if it

may cause corruption

_always_anti_join always use this CHOOSE CHOOSE

method for anti-join

when possible

_always_semi_join always use this CHOOSE CHOOSE

method for semi-join

when possible

_always_star_transformation always favor use of FALSE FALSE

star transformation

_app_ctx_vers enable app ctx FALSE FALSE

versioning

_aq_tm_scanlimit scan limit for Time 0 0

Managers to clean up

IOT

_arch_io_slaves ARCH I/O slaves 0 0

_array_update_vector_read_enabled Enable array update FALSE FALSE

vector read

_ash_disk_filter_ratio Ratio of the number 10 10

of in-memory samples

to the number of

samples actually

written to disk

_ash_disk_write_enable To enable or disable TRUE TRUE

Active Session

History flushing

_ash_dummy_test_param Oracle internal 0 0

Mon Sep 05 page 4

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

dummy ASH parameter

used ONLY for

testing!

_ash_eflush_trigger The percentage above 66 66

which if the

in-memory ASH is

full the emergency

flusher will be

triggered

_ash_enable To enable or disable TRUE TRUE

Active Session

sampling and

flushing

_ash_sample_all To enable or disable FALSE FALSE

sampling every

connected session

including ones

waiting for idle

waits

_ash_sampling_interval Time interval 1000 1000

between two

successive Active

Session samples in

millisecs

_ash_size To set the size of 1048618 1048618

the in-memory Active

Session History

buffers

_asm_acd_chunks initial ACD chunks 1 1

created

_asm_allow_only_raw_disks Discovery only raw TRUE TRUE

devices

_asm_ausize allocation unit size 1048576 1048576

_asm_blksize metadata block size 4096 4096

_asm_disk_repair_time seconds to wait 14400 14400

before dropping a

failing disk

_asm_libraries library search order ufs ufs

for discovery

_asm_maxio Maximum size of 1048576 1048576

Mon Sep 05 page 5

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

individual I/O

request

_asm_stripesize ASM file stripe size 131072 131072

_asm_stripewidth ASM file stripe 8 8

width

_asm_wait_time Max/imum time to 18 18

wait before asmb

exits

_asmlib_test Osmlib test event 0 0

_asmsid ASM instance id asm asm

_async_recovery_claims if TRUE, issue TRUE TRUE

recovery claims

asynchronously (DFS)

_async_recovery_reads if TRUE, issue TRUE TRUE

recovery reads

asynchronously (DFS)

_avoid_prepare if TRUE, do not TRUE TRUE

prepare a buffer

when the master is

local (DFS)

_awr_corrupt_mode AWR Corrupt Mode FALSE FALSE

_awr_restrict_mode AWR Restrict Mode FALSE FALSE

_b_tree_bitmap_plans enable the use of TRUE TRUE

bitmap plans for

tables w. only

B-tree indexes

_backup_disk_io_slaves BACKUP Disk I/O 0 0

slaves

_backup_io_pool_size memory to reserve 1048576 1048576

from the large pool

_backup_kgc_bufsz specifies buffer 0 0

size to be used for

kgc compression

_backup_kgc_niters specifies number of 0 0

iterations used for

kgc compression

_backup_kgc_type specifies 0 0

compression type

used for kgc

Mon Sep 05 page 6

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

compression

_backup_ksfq_bufcnt number of the ksfq 0 0

buffers used for

backup/restore

_backup_ksfq_bufsz size of the ksfq 0 0

buffer used for

backup/restore

_bct_bitmaps_per_file number of bitmaps to 8 8

store for each

datafile

_bct_buffer_allocation_max maximum size of all 104857600 104857600

change tracking

buffer allocations,

in bytes

_bct_buffer_allocation_min_extents mininum number of 1 1

extents to allocate

per buffer

allocation

_bct_buffer_allocation_size size of one change 2097152 2097152

tracking buffer

allocation, in bytes

_bct_chunk_size change tracking 0 0

datafile chunk size,

in bytes

_bct_crash_reserve_size change tracking 262144 262144

reserved crash

recovery SGA space,

in bytes

_bct_file_block_size block size of change 0 0

tracking file, in

bytes

_bct_file_extent_size extent size of 0 0

change tracking

file, in bytes

_bct_initial_private_dba_buffer_size initial number of 0 0

entries in the

private change

tracking dba buffers

Mon Sep 05 page 7

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_bct_public_dba_buffer_size total size of all 0 0

public change

tracking dba

buffers, in bytes

_bitmap_or_improvement_enabled controls extensions TRUE TRUE

to partition pruning

for general

predicates

_block_change_tracking change tracking TRUE TRUE

possible

_blocks_per_cache_server number of 128 128

consecutive blocks

per global cache

server

_bt_mmv_query_rewrite_enabled allow rewrites with TRUE TRUE

multiple MVs and

base tables

_buffer_busy_wait_timeout buffer busy wait 100 100

time in centiseconds

_bufq_stop_flow_control Stop enforcing flow FALSE FALSE

control for buffered

queues

_bump_highwater_mark_count how many blocks 0 0

should we allocate

per free list on

advancing HWM

_bwr_for_flushed_pi if TRUE, generate a TRUE TRUE

BWR for a flushed PI

(DFS)

_cache_stats_monitor if TRUE, enable TRUE TRUE

cache stats

monitoring

_cgs_send_timeout CGS send timeout 300 300

value

_check_block_after_checksum perform block check TRUE TRUE

after checksum if

both are turned on

_check_ts_threshold check tablespace 0 0

Mon Sep 05 page 8

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

thresholds

_cleanup_rollback_entries no. of undo entries 100 100

to apply per

transaction cleanup

_close_cached_open_cursors close cursors cached FALSE FALSE

by PL/SQL at each

commit

_cluster_library cluster library clss clss

selection

_collapse_wait_history collapse wait FALSE FALSE

history

_collect_undo_stats Collect Statistics TRUE TRUE

v$undostat

_column_compression_factor Column compression 0 0

ratio

_column_elimination_off turn off FALSE FALSE

predicate-only

column elimination

_column_tracking_level column usage 1 1

tracking

_complex_view_merging enable complex view TRUE TRUE

merging

_controlfile_block_size control file block 0 0

size in bytes

_controlfile_enqueue_dump dump the system FALSE FALSE

states after

controlfile enqueue

timeout

_controlfile_enqueue_timeout control file enqueue 900 900

timeout in seconds

_controlfile_update_check controlfile update OFF OFF

sanity check

_convert_set_to_join enables conversion FALSE FALSE

of set operator to

join

Mon Sep 05 page 9

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_coord_message_buffer parallel recovery 0 0

coordinator side

extra message buffer

size

_corrupted_rollback_segments corrupted undo

segment list

_cost_equality_semi_join enables costing of TRUE TRUE

equality semi-join

_cpu_to_io divisor for 0 0

converting CPU cost

to I/O cost

_cr_grant_global_role if TRUE, grant lock TRUE TRUE

for CR requests when

block is in global

role

_cr_grant_local_role if TRUE, grant lock FALSE FALSE

for CR using 3way

ping when block in

local role

_cr_server_log_flush if TRUE, flush redo TRUE TRUE

log before serving a

CR buffer (DFS)

_cursor_bind_capture_area_size maximum size of the 400 400

cursor bind capture

area

_cursor_bind_capture_interval interval (in 900 900

seconds) between two

bind capture for a

cursor

_cursor_cache_frame_bind_memory frame & bind buffer FALSE FALSE

caching

_cursor_db_buffers_pinned additional number of 140 140

buffers a cursor can

pin at once

_cursor_plan_enabled enable collection TRUE TRUE

and display of

cursor plans

_cursor_plan_hash_version version of cursor 1 1

Mon Sep 05 page 10

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

plan hash value

_cursor_plan_unparse_enabled enables/disables TRUE TRUE

using unparse to

build

projection/predicate

s

_db_aging_cool_count Touch count set when 1 1

buffer cooled

_db_aging_freeze_cr Make CR buffers FALSE FALSE

always be too cold

to keep in cache

_db_aging_hot_criteria Touch count which 2 2

sends a buffer to

head of replacement

list

_db_aging_stay_count Touch count set when 0 0

buffer moved to head

of replacement list

_db_aging_touch_time Touch count which 3 3

sends a buffer to

head of replacement

list

_db_always_check_system_ts Always perform block TRUE TRUE

check and checksum

for System

tablespace

_db_block_buffers Number of database 85671 85671

blocks cached in

memory: hidden

parameter

_db_block_cache_clone Always clone data FALSE FALSE

blocks on get (for

debugging)

_db_block_cache_history buffer header 0 0

tracing (non-zero

only when debugging)

_db_block_cache_num_umap number of unmapped 0 0

buffers (for

tracking swap calls

Mon Sep 05 page 11

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

on blocks)

_db_block_cache_protect protect database FALSE FALSE

blocks (true only

when debugging)

_db_block_check_for_debug Check more and dump FALSE FALSE

block before image

for debugging

_db_block_granule_interval number of granules 10 10

to process

_db_block_hash_buckets Number of database 262144 262144

block hash buckets

_db_block_hash_latches Number of database 1024 1024

block hash latches

_db_block_hi_priority_batch_size Fraction of writes 0 0

for high priority

reasons

_db_block_known_clean_pct Initial Percentage 2 2

of buffers to

maintain known clean

_db_block_lru_latches number of lru 56 56

latches

_db_block_max_cr_dba Maximum Allowed 6 6

Number of CR buffers

per dba

_db_block_max_scan_pct Percentage of 40 40

buffers to inspect

when looking for

free

_db_block_med_priority_batch_size Fraction of writes 0 0

for medium priority

reasons

_db_block_numa Number of NUMA nodes 1 1

_db_block_prefetch_limit Prefetch limit in 0 0

blocks

_db_block_prefetch_quota Prefetch quota as a 10 10

percent of cache

size

Mon Sep 05 page 12

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_db_block_trace_protect trace buffer protect FALSE FALSE

calls

_db_cache_advice_batch_size cache advisory 128 128

simulation batch

size

_db_cache_advice_sample_factor cache advisory 4 4

sampling factor

_db_cache_crx_check check for costly crx FALSE FALSE

examination

functions

_db_cache_pre_warm Buffer Cache TRUE TRUE

Pre-Warm Enabled :

hidden parameter

_db_fast_obj_check enable fast object FALSE FALSE

drop sanity check

_db_fast_obj_truncate enable fast object TRUE TRUE

truncate

_db_file_direct_io_count Sequential I/O buf 1048576 1048576

size

_db_file_format_io_buffers Block formatting I/O 4 4

buf count

_db_file_noncontig_mblock_read_count number of 11 11

noncontiguous db

blocks to be

prefetched

_db_handles System-wide 3000 3000

simultaneous buffer

operations

_db_handles_cached Buffer handles 5 5

cached each process

_db_large_dirty_queue Number of buffers 25 25

which force dirty

queue to be written

_db_mttr_advice MTTR advisory ON ON

_db_mttr_partitions number of partitions 0 0

for MTTR advisory

Mon Sep 05 page 13

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_db_mttr_sample_factor MTTR simulation 64 64

sampling factor

_db_mttr_sim_target MTTR simulation

targets

_db_mttr_sim_trace_size MTTR simulation 256 256

trace size

_db_mttr_trace_to_alert dump trace entries FALSE FALSE

to alert file

_db_percent_hot_default Percent of default 50 50

buffer pool

considered hot

_db_percent_hot_keep Percent of keep 0 0

buffer pool

considered hot

_db_percent_hot_recycle Percent of recycle 0 0

buffer pool

considered hot

_db_percpu_create_cachesize size of cache 2 2

created per cpu in

deferred cache

create

_db_recovery_temporal_file_dest default database

recovery temporal

file location

_db_todefer_cache_create buffer cache FALSE FALSE

deferred create

_db_writer_chunk_writes Number of writes 0 0

DBWR should wait for

_db_writer_coalesce_area_size Size of memory 1048576 1048576

allocated to

dbwriter for

coalescing writes

_db_writer_coalesce_write_limit Limit on size of 131072 131072

coalesced write

_db_writer_flush_imu If FALSE, DBWR will TRUE TRUE

not downgrade IMU

Mon Sep 05 page 14

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

txns for AGING

_db_writer_histogram_statistics maintain dbwr FALSE FALSE

histogram statistics

in x$kcbbhs

_db_writer_max_writes Max number of 0 0

outstanding DB

Writer IOs

_db_writer_scan_depth_pct Percentage of LRU 25 25

buffers for dbwr to

scan when looking

for dirty

_dbg_proc_startup debug process FALSE FALSE

startup

_dbwr_async_io Enable dbwriter TRUE TRUE

asynchronous writes

_dbwr_scan_interval dbwriter scan 300 300

interval

_dbwr_tracing Enable dbwriter 0 0

tracing

_dedicated_server_post_wait dedicated server FALSE FALSE

post/wait

_dedicated_server_post_wait_call dedicated server FALSE FALSE

post/wait call

_default_non_equality_sel_check sanity check on TRUE TRUE

default selectivity

for like/range

predicate

_delay_index_maintain delays index TRUE TRUE

maintenance until

after MV is

refreshed

_diag_daemon start DIAG daemon TRUE TRUE

_disable_datalayer_sampling disable datalayer FALSE FALSE

sampling

_disable_file_locks disable file locks FALSE FALSE

for control, data,

redo log files

Mon Sep 05 page 15

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_disable_function_based_index disable FALSE FALSE

function-based index

matching

_disable_health_check Disable Health Check FALSE FALSE

_disable_image_check Disable Oracle FALSE FALSE

executable image

checking

_disable_incremental_checkpoints Disable incremental FALSE FALSE

checkpoints for

thread recovery

_disable_kcbhxor_osd disable kcbh(c)xor FALSE FALSE

OSD functionality

_disable_latch_free_SCN_writes_via_32 disable latch-free FALSE FALSE

cas SCN writes using

32-bit compare &

swap

_disable_latch_free_SCN_writes_via_64 disable latch-free FALSE FALSE

cas SCN writes using

64-bit compare &

swap

_disable_logging Disable logging FALSE FALSE

_disable_multiple_block_sizes disable multiple FALSE FALSE

block size support

(for debugging)

_disable_odm disable odm feature FALSE FALSE

_disable_recoverable_recovery Disable the new FALSE FALSE

recoverable recovery

mechanism

_disable_sample_io_optim disable row sampling FALSE FALSE

IO optimization

_disable_savepoint_reset disable the fix for FALSE FALSE

bug 1402161

_disable_selftune_checkpointing Disable self-tune FALSE FALSE

checkpointing

_disable_sun_rsm Disable IPC OSD TRUE TRUE

support for Sun

RSMAPI

Mon Sep 05 page 16

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_disable_system_state disable system state FALSE FALSE

dump

_disable_txn_alert disable txn layer 0 0

alert

_discrete_transactions_enabled enable OLTP mode FALSE FALSE

_dispatcher_rate_scale scale to display

rate statistic

(100ths of a second)

_dispatcher_rate_ttl time-to-live for

rate statistic

(100ths of a second)

_distinct_view_unnesting enables unnesting of FALSE FALSE

in subquery into

distinct view

_distributed_recovery_connection_hold number of seconds 200 200

_time RECO holds outbound

connections open

_dlm_send_timeout DLM send timeout 30000 30000

value

_dlmtrace Trace string of

global enqueue

type(s)

_dml_monitoring_enabled enable modification TRUE TRUE

monitoring

_domain_index_batch_size maximum number of 2000 2000

rows from one call

to domain index

fetch routine

_domain_index_dml_batch_size maximum number of 200 200

rows for one call to

domain index dml

routines

_ds_iocount_iosize Dynamic Sampling 6553664 6553664

Service defaults:

#IOs and IO Size

_dss_cache_flush enable full cache FALSE FALSE

flush for parallel

execution

Mon Sep 05 page 17

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_dump_common_subexpressions dump common FALSE FALSE

subexpressions

_dump_connect_by_loop_data dump connect by loop FALSE FALSE

error message into

trc file

_dump_cursor_heap_sizes dump comp/exec heap FALSE FALSE

sizes to tryace file

_dump_interval_limit trace dump time 120 120

interval limit (in

seconds)

_dump_max_limit max number of dump 5 5

within dump interval

_dump_system_state_scope scope of sysstate local local

dump during instance

termination

_dump_trace_scope scope of trace dump global global

during a process

crash

_dynamic_rls_policies rls policies are TRUE TRUE

dynamic

_dynamic_stats_threshold delay threshold (in 30 30

seconds) between

sending statistics

messages

_eliminate_common_subexpr enables elimination TRUE TRUE

of common

sub-expressions

_enable_NUMA_optimization Enable NUMA specific TRUE TRUE

optimizations

_enable_block_level_transaction_recov enable block level TRUE TRUE

ery recovery

_enable_cscn_caching enable commit SCN FALSE FALSE

caching for all

transactions

_enable_default_affinity to enable default 0 0

implementation of

Mon Sep 05 page 18

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

affinity osds

_enable_fast_ref_after_mv_tbs enable fast refresh FALSE FALSE

after move

tablespace

_enable_hash_overflow TRUE - enable hash FALSE FALSE

cluster overflow

based on SIZE

_enable_kgh_policy temporary to FALSE FALSE

disable/enable kgh

policy

_enable_list_io Enable List I/O FALSE FALSE

_enable_nativenet_tcpip Enable skgxp driver FALSE FALSE

usage for native net

_enable_refresh_schedule enable or disable MV TRUE TRUE

refresh scheduling

(revert to 9.2

behavior)

_enable_tablespace_alerts enable tablespace TRUE TRUE

alerts

_enable_type_dep_selectivity enable type TRUE TRUE

dependent

selectivity

estimates

_enqueue_debug_multi_instance debug enqueue multi FALSE FALSE

instance

_enqueue_hash enqueue hash table 1365 1365

length

_enqueue_hash_chain_latches enqueue hash chain 2 2

latches

_enqueue_locks locks for managed 8150 8150

enqueues

_expand_aggregates expand aggregates TRUE TRUE

_explain_rewrite_mode allow additional FALSE FALSE

messages to be

generated during

explain rewrite

_fair_remote_cvt if TRUE enables fair FALSE FALSE

Mon Sep 05 page 19

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

remote convert

_fairness_threshold number of times to 4 4

CR serve before

downgrading lock

(DFS)

_fast_dual_enabled enable/disable fast TRUE TRUE

dual

_fast_full_scan_enabled enable/disable index TRUE TRUE

fast full scan

_fast_start_instance_recovery_target cluster availability 0 0

target time in RAC

environment

_fic_algorithm_set Set Frequent Itemset automatic automatic

Counting Algorithm

_fic_area_size size of Frequent 131072 131072

Itemset Counting

work area

_fic_max_length Frequent Itemset 20 20

Counting Maximum

Itemset Length

_fic_outofmem_candidates Frequent Itemset FALSE FALSE

Counting Out Of

Memory Candidates

Generation

_fifth_spare_parameter fifth spare

parameter - string

_first_spare_parameter first spare

parameter - integer

_flashback_allow_noarchivelog Allow enabling FALSE FALSE

flashback on

noarchivelog

database

_flashback_barrier_interval Flashback barrier 1800 1800

interval in seconds

_flashback_copy_latches Number of flashback 10 10

copy latches

Mon Sep 05 page 20

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_flashback_fuzzy_barrier Use flashback fuzzy TRUE TRUE

barrier

_flashback_generation_buffer_size flashback generation 2097152 2097152

buffer size

_flashback_hint_barrier_percent Flashback hint 20 20

barrier percent

_flashback_log_min_size Minimum flashback 100 100

log size

_flashback_log_size Flashback log size 1000 1000

_flashback_logfile_enqueue_timeout flashback logfile 600 600

enqueue timeout for

opens

_flashback_max_log_size Maximum flashback 0 0

log size in bytes

(OS limit)

_flashback_n_log_per_thread Desired number of 128 128

flashback logs per

flashback thread

_flashback_standby_barrier_interval Flashback standby 1800 1800

barrier interval in

seconds

_flashback_verbose_info Print verbose FALSE FALSE

information about

flashback database

_flashback_write_size_qm Desired flashback 4 4

write size in

quarter MB

_force_datefold_trunc force use of trunc FALSE FALSE

for datefolding

rewrite

_force_temptables_for_gsets executes FALSE FALSE

concatenation of

rollups using temp

tables

_fourth_spare_parameter fourth spare

parameter - string

_full_pwise_join_enabled enable full TRUE TRUE

Mon Sep 05 page 21

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

partition-wise join

when TRUE

_gby_onekey_enabled enable use of one TRUE TRUE

comparison of all

group by keys

_gc_affinity_limit dynamic affinity 50 50

limit (DFS)

_gc_affinity_minimum dynamic affinity 1200 1200

minimum activity per

minute (DFS)

_gc_affinity_time how often in minutes 10 10

to check affinity

(DFS)

_gc_check_bscn if TRUE, check for TRUE TRUE

stale blocks (DFS)

_gc_defer_time how long to defer 3 3

down converts for

hot buffers (DFS)

_gc_element_percent global cache element 103 103

percent (DFS)

_gc_global_lru if TRUE, enable FALSE FALSE

global lru (DFS)

_gc_integrity_checks if TRUE, enable TRUE TRUE

expensive integrity

checks (DFS)

_gc_keep_recovery_buffers if TRUE, make FALSE FALSE

recovery buffers

current (DFS)

_gc_latches number of latches 5 5

per LMS process

(DFS)

_gc_statistics if TRUE, kcl TRUE TRUE

statistics are

maintained (DFS)

_gc_use_cr if TRUE, allow CR TRUE TRUE

pins on PI and

WRITING buffers

Mon Sep 05 page 22

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

(DFS)

_gc_vector_read if TRUE, vector read TRUE TRUE

current buffers

(DFS)

_gcs_fast_reconfig if TRUE, enable fast TRUE TRUE

reconfiguration for

gcs locks

_gcs_latches number of gcs 0 0

resource hash

latches to be

allocated per LMS

process

_gcs_process_in_recovery if TRUE, process gcs TRUE TRUE

requests during

instance recovery

_gcs_resources number of gcs

resources to be

allocated

_gcs_shadow_locks number of pcm shadow

locks to be

allocated

_generalized_pruning_enabled controls extensions TRUE TRUE

to partition pruning

for general

predicates

_ges_dd_debug if TRUE enables GES FALSE FALSE

deadlock detection

debug diagnostics

_ges_diagnostics if TRUE enables GES TRUE TRUE

diagnostics

_ges_trace if TRUE enables TRUE TRUE

GES/GCS debug traces

_groupby_nopushdown_cut_ratio groupby nopushdown 3 3

cut ratio

_groupby_orderby_combine groupby/orderby 5000 5000

don't combine

threshold

Mon Sep 05 page 23

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_gs_anti_semi_join_allowed enable anti/semi TRUE TRUE

join for the GS

query

_hang_detection Hang Management 0 0

detection interval

_hard_protection if TRUE enable FALSE FALSE

H.A.R.D specific

format changes

_hash_join_enabled enable/disable hash TRUE TRUE

join

_hash_multiblock_io_count number of blocks 0 0

hash join will

read/write at once

_high_server_threshold high server 0 0

thresholds

_hj_bit_filter_threshold hash-join bit 50 50

filtering threshold

(0 always enabled)

_idl_conventional_index_maintenance enable conventional TRUE TRUE

index maintenance

for insert direct

load

_idxrb_rowincr proportionality 100000000 100000000

constant for dop vs.

rows in index

rebuild

_ignore_desc_in_index ignore DESC in FALSE FALSE

indexes, sort those

columns ascending

anyhow

_improved_outerjoin_card improved outer-join TRUE TRUE

cardinality

calculation

_improved_row_length_enabled enable the TRUE TRUE

improvements for

computing the

average row length

_imr_active Activate Instance TRUE TRUE

Mon Sep 05 page 24

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

Membership Recovery

feature

_imr_max_reconfig_delay Maximum 300 300

Reconfiguration

delay (seconds)

_imr_splitbrain_res_wait Maximum wait for 600 600

split-brain

resolution (seconds)

_imu_pools in memory undo pools 3 3

_in_memory_undo Make in memory undo TRUE TRUE

for top level

transactions

_index_join_enabled enable the use of TRUE TRUE

index joins

_index_prefetch_factor index prefetching 100 100

factor

_init_sql_file File containing SQL ?/rdbms/admin ?/rdbms/admin/s

statements to /sql.bsq ql.bsq

execute upon

database creation

_init_tempfile_on_open if TRUE re-init FALSE FALSE

tempfile bitmaps on

db open whenever

possible

_insert_enable_hwm_brokered during parallel TRUE TRUE

inserts high water

marks are brokered

_inst_locking_period period an instance 5 5

can retain a newly

acquired level1

bitmap

_interconnect_checksum if TRUE, checksum TRUE TRUE

interconnect blocks

(DFS)

_intrapart_pdml_enabled Enable TRUE TRUE

intra-partition

updates/deletes

_intrapart_pdml_randomlocal_enabled Enable TRUE TRUE

Mon Sep 05 page 25

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

intra-partition

updates/deletes with

random local dist

_io_slaves_disabled Do not use I/O FALSE FALSE

slaves

_ioslave_batch_count Per attempt IOs 1 1

picked

_ioslave_issue_count IOs issued before 500 500

completion check

_ipc_fail_network Simulate cluster 0 0

network failer

_ipc_test_failover Test transparent 0 0

cluster network

failover

_ipc_test_mult_nets simulate multiple 0 0

cluster networks

_job_queue_interval Wakeup interval in 5 5

seconds for job

queue co-ordinator

_kcl_commit if TRUE, call TRUE TRUE

kjbcommit (DFS)

_kcl_conservative_log_flush if TRUE, FALSE FALSE

conservatively log

flush before CR

serving (DFS)

_kcl_debug if TRUE, record le TRUE TRUE

history (DFS)

_kcl_index_split if TRUE, reject TRUE TRUE

pings on blocks in

middle of a split

(DFS)

_kcl_undo_grouping grouping for undo 32 32

block locks (DFS)

_kcl_undo_locks number of locks per 128 128

undo segment (DFS)

_kdbl_enable_post_allocation allocate dbas after FALSE FALSE

Mon Sep 05 page 26

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

populating data

buffers

_keep_remote_column_size remote column size FALSE FALSE

does not get

modified

_kernel_message_network_driver kernel message FALSE FALSE

network driver

_kffmap_hash_size size of kffmap_hash 1024 1024

table

_kffmop_hash_size size of kffmop_hash 2048 2048

table

_kghdsidx_count max kghdsidx count 1 1

_kgl_bucket_count index to the bucket 9 9

count array

_kgl_hash_collision whether KGL hash FALSE FALSE

collision is

possible

_kgl_keep_cache_pct KGL keep cache 30 30

minimum threshold

_kgl_keep_cache_retain_pct KGL keep cache 20 20

retain threshold

_kgl_latch_count number of library 0 0

cache latches

_kgl_multi_instance_invalidation whether KGL to TRUE TRUE

support

multi-instance

invalidations

_kgl_multi_instance_lock whether KGL to TRUE TRUE

support

multi-instance locks

_kgl_multi_instance_pin whether KGL to TRUE TRUE

support

multi-instance pins

_kgl_session_cached_objects maximum length of 10 10

the KGL object cache

lru

Mon Sep 05 page 27

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_kgl_time_to_wait_for_locks time to wait for 15 15

locks and pins

before timing out

_kglsim_maxmem_percent max percentage of 5 5

shared pool size to

be used for KGL

advice

_kill_java_threads_on_eoc Kill Java threads FALSE FALSE

and do sessionspace

migration at end of

call

_kkfi_trace trace expression FALSE FALSE

substitution

_kolfuseslf allow kolf to use FALSE FALSE

slffopen

_ksdxw_cini_flg ksdxw context 0 0

initialization flag

_ksdxw_nbufs ksdxw number of 1000 1000

buffers in buffered

mode

_ksdxw_num_pgw number of 10 10

watchpoints on a

per-process basis

_ksdxw_num_sgw number of 10 10

watchpoints to be

shared by all

processes

_ksdxw_stack_depth number of PCs to 4 4

collect in the stack

when watchpoint is

hit

_kse_die_timeout amount of time a 60000 60000

dying process is

spared by PMON (in

centi-secs)

_ksi_trace KSI trace string of

lock type(s)

_ksmg_granule_locking_status granule locking 1 1

Mon Sep 05 page 28

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

status

_ksmg_granule_size granule size in 4194304 4194304

bytes

_ksmg_lock_check_interval timeout action

interval in minutes

_ksmg_lock_reacquire_count repeat count for 5 5

acquisition of locks

_kspptbl_mem_usage amount of memory 1556016 1556016

used for unused

session parameter

tables

_ksu_diag_kill_time number of seconds 5 5

ksuitm waits before

killing diag

_ktc_debug for ktc debug 0 0

_ktc_latches number of ktc 0 0

latches

_ktu_latches number of KTU 0 0

latches

_ku_trace datapump trace none none

parameter

_large_pool_min_alloc minimum allocation 3 3

size in bytes for

the large allocation

pool

_last_allocation_period period over which an 5 5

instance can retain

an active level1

bitmap

_latch_class_0 latch class 0

_latch_class_1 latch class 1

_latch_class_2 latch class 2

_latch_class_3 latch class 3

_latch_class_4 latch class 4

_latch_class_5 latch class 5

_latch_class_6 latch class 6

_latch_class_7 latch class 7

_latch_classes latch classes

override

Mon Sep 05 page 29

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_latch_miss_stat_sid Sid of process for 0 0

which to collect

latch stats

_latch_recovery_alignment align latch recovery 998 998

structures

_ldr_io_size size of write IOs 262144 262144

used during a load

operation

_left_nested_loops_random enable random TRUE TRUE

distribution method

for left of

nestedloops

_lgwr_async_broadcasts LGWR Asynchronous TRUE TRUE

Broadcasts enabling

boolean flag

_lgwr_async_io LGWR Asynchronous IO FALSE FALSE

enabling boolean

flag

_lgwr_delay_write LGWR write delay for FALSE FALSE

debugging

_lgwr_io_slaves LGWR I/O slaves 0 0

_lgwr_max_ns_wt Maximum wait time 1 1

for lgwr to allow

NetServer to

progress

_lgwr_ns_nl_max Variable to simulate 1000 1000

network latency or

buffer threshold

_lgwr_ns_nl_min Variable to simulate 500 500

network latency or

buffer threshold

_lgwr_ns_sim_err Variable to simulate 0 0

errors lgwrns

_library_cache_advice whether KGL advice TRUE TRUE

should be turned on

_lightweight_hdrs Lightweight headers TRUE TRUE

for redo

Mon Sep 05 page 30

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_like_with_bind_as_equality treat LIKE predicate FALSE FALSE

with bind as an

equality predicate

_lm_activate_lms_threshold threshold value to 100 100

activate an

additional lms

_lm_cache_lvl0_cleanup how often to cleanup 0 0

level 0 cache res

(in sec)

_lm_cache_res_cleanup percentage of cached 25 25

resources should be

cleanup

_lm_cache_res_type cache resource: TMHW TMHW

string of lock

types(s)

_lm_dd_interval dd time interval in 60 60

seconds

_lm_drm_max_requests dynamic remastering 100 100

maximum affinity

requests processed

together

_lm_drm_window dynamic remastering 0 0

bucket window size

_lm_dynamic_lms dynamic lms FALSE FALSE

invocation

_lm_dynamic_load dynamic load TRUE TRUE

adjustment

_lm_dynamic_remastering if TRUE enables FALSE FALSE

dynamic remastering

_lm_enq_lock_freelist Number of ges

enqueue element

freelist

_lm_enq_rcfg if TRUE enables TRUE TRUE

enqueue

reconfiguration

_lm_enqueue_freelist Number of enqueue 3 3

Mon Sep 05 page 31

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

freelist

_lm_file_affinity mapping between file

id and master

instance number

_lm_global_posts if TRUE deliver TRUE TRUE

global posts to

remote nodes

_lm_lmd_waittime default wait time 8 8

for lmd in

centiseconds

_lm_lms number of background 0 0

gcs server processes

to start

_lm_lms_waittime default wait time 8 8

for lms in

centiseconds

_lm_locks number of enqueues 12000 12000

configured for

cluster database

_lm_master_weight master resource 1 1

weight for this

instance

_lm_max_lms max. number of 0 0

background global

cache server

processes

_lm_min_lms min. number of 0 0

background global

cache server

processes

_lm_msg_batch_size GES batch message 0 0

size

_lm_msg_cache_thresholds GES message buffer

caching threshold

_lm_msg_cleanup_interval GES message buffer 3000 3000

cleanup interval

time

Mon Sep 05 page 32

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_lm_node_join_opt cluster database FALSE FALSE

node join

optimization in

reconfig

_lm_non_fault_tolerant disable cluster FALSE FALSE

database

fault-tolerance mode

_lm_num_pcmhv_latches number of latches 0 0

covering the PCM HV

buckets in cgs

_lm_proc_freeze_timeout reconfiguration: 300 300

process freeze

timeout

_lm_process_batching GES implicit process TRUE TRUE

batching for IPC

messages

_lm_procs number of client 127 127

processes configured

for cluster database

_lm_rcfg_timeout Reconfiguration 180000 180000

timeout

_lm_rcv_buffer_size the size of receive 32768 32768

buffer

_lm_res_hash_bucket number of resource 0 0

hash buckets

_lm_res_part number of resource 1289 1289

partition configured

for gcs

_lm_ress number of resources 6000 6000

configured for

cluster database

_lm_send_buffers number of cluster 10000 10000

database send

buffers

_lm_send_mode GES send mode auto auto

_lm_send_queue_batching GES send queue TRUE TRUE

message batching

Mon Sep 05 page 33

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_lm_send_queue_length GES send queue 5000 5000

maximum length

_lm_sendproxy_reserve GES percentage of 25 25

send proxy reserve

of send tickets

_lm_share_lock_opt if TRUE enables FALSE FALSE

share lock

optimization

_lm_sq_batch_factor GES send queue 2 2

minimum batching

factor

_lm_sq_batch_type GES send queue auto auto

batching mechanism

_lm_sq_batch_waittick GES send queue 3 3

batching waittime in

tick

_lm_sync_timeout Synchronization

timeout for DLM

reconfiguration

steps

_lm_ticket_active_sendback Flow control ticket

active sendback

threshold

_lm_tickets GES messaging 1000 1000

tickets

_lm_tx_delta TX lock localization 16 16

delta

_lm_validate_resource_type if TRUE enables FALSE FALSE

resource name

validation

_lm_xids number of 139 139

transaction IDs

configured for

cluster database

_load_without_compile Load PL/SQL or none none

Database objects

without compilation

Mon Sep 05 page 34

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_local_communication_costing_enabled enable local TRUE TRUE

communication

costing when TRUE

_local_communication_ratio set the ratio 50 50

between global and

local communication

(0..100)

_lock_sga_areas Lock specified areas 0 0

of the SGA in

physical memory

_log_archive_buffer_size Size of each 2048 2048

archival buffer in

log file blocks

_log_archive_buffers Number of buffers to 10 10

allocate for

archiving

_log_archive_callout archival callout

_log_archive_compress_enable Bypass database FALSE FALSE

rules for enabling

archivelog

compression

_log_archive_delta_sync_wait iterative sleep time 0 0

in centiseconds

seconds when

SYNC=PARALLEL

_log_archive_net_timeout maximum network wait 0 0

time in seconds when

SYNC=PARALLEL

_log_archive_prot_auto_demote log archive FALSE FALSE

protection auto

demotion

_log_archive_security_enabled log archive security TRUE TRUE

enabled

_log_blocks_during_backup log block images TRUE TRUE

when changed during

backup

_log_buffers_corrupt corrupt redo buffers FALSE FALSE

before write

Mon Sep 05 page 35

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_log_buffers_debug debug redo buffers FALSE FALSE

(slows things down)

_log_checkpoint_recovery_check # redo blocks to 0 0

verify after

checkpoint

_log_committime_block_cleanout Log commit-time FALSE FALSE

block cleanout

_log_debug_multi_instance debug redo multi FALSE FALSE

instance code

_log_deletion_policy archivelog deletion mandatory mandatory

policy for

mandatory/all

destination

_log_io_size automatically 0 0

initiate log write

if this many redo

blocks in buffer

_log_parallelism Number of log buffer 1 1

strands

_log_parallelism_dynamic Enable dynamic TRUE TRUE

strands

_log_parallelism_max Maximum number of 2 2

log buffer strands

_log_private_mul Private strand 5 5

multiplier for log

space preallocation

_log_private_parallelism Number of private FALSE FALSE

log buffer strands

for zero-copy redo

_log_private_parallelism_mul Active sessions 10 10

multiplier to deduce

number of private

strands

_log_simultaneous_copies number of 4 4

simultaneous copies

into redo buffer(#

of copy latches)

Mon Sep 05 page 36

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_log_space_errors should we report TRUE TRUE

space errors to

alert log

_log_switch_timeout Maximum number of 0 0

seconds redos in the

current log could

span

_longops_enabled longops stats TRUE TRUE

enabled

_low_server_threshold low server 0 0

thresholds

_master_direct_sends direct sends for 31 31

messages from master

(DFS)

_mav_refresh_consistent_read refresh materialized TRUE TRUE

views using

consistent read

snapshot

_mav_refresh_double_count_prevented materialized view FALSE FALSE

MAV refreshes avoid

double counting

_mav_refresh_opt optimizations during 0 0

refresh of

materialized views

_mav_refresh_unionall_tables # tables for union 3 3

all expansion during

materialized view

refresh

_max_exponential_sleep max sleep during 0 0

exponential backoff

_max_protocol_support Max occurrence 10000 10000

protocols supported

in a process

_max_shrink_obj_stats number of segments 0 0

for which shrink

stats will be

maintained

_max_sleep_holding_latch max time to sleep 4 4

Mon Sep 05 page 37

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

while holding a

latch

_media_recovery_read_batch media recovery block 128 128

read batch

_mem_annotation_pr_lev private memory 0 0

annotation

collection level

_mem_annotation_scale memory annotation 1 1

pre-allocation

scaling

_mem_annotation_sh_lev shared memory 0 0

annotation

collection level

_mem_annotation_store memory annotation FALSE FALSE

in-memory store

_memory_broker_log_stat_entries memory broker num 9 9

stat entries

_memory_broker_shrink_heaps memory broker allow 0 0

policy to shrink

shared pool

_memory_broker_shrink_java_heaps memory broker allow 900 900

policy to shrink

java pool

_memory_broker_shrink_timeout memory broker allow 60000000 60000000

policy to shrink

shared/java pool

_memory_broker_stat_interval memory broker 300 300

statistics gathering

interval

_memory_management_tracing trace memory 0 0

management activity

_messages message queue 1200 1200

resources -

dependent on #

processes & #

buffers

_minimal_stats_aggregation prohibit stats TRUE TRUE

Mon Sep 05 page 38

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

aggregation at

compile/partition

maintenance time

_minimum_blocks_to_shrink minimum number 0 0

freeable blocks for

shrink to be present

_minimum_extents_to_shrink minimum number 1 1

freeable extents for

shrink to be present

_minimum_giga_scn Minimum SCN to start 0 0

with in 2^30 units

_mirror_redo_buffers Save buffers for FALSE FALSE

debugging redo

corruptions

_mmv_query_rewrite_enabled allow rewrites with FALSE FALSE

multiple MVs and/or

base tables

_multi_join_key_table_lookup TRUE iff TRUE TRUE

multi-join-key table

lookup prefetch is

enabled

_multiple_instance_recovery use multiple FALSE FALSE

instances for media

recovery

_mv_refresh_ana what percent to 0 0

analyze after

complete/PCT refresh

_mv_refresh_costing refresh decision rule rule

based on cost or on

rules

_mv_refresh_delta_fraction delta mv as 10 10

fractional

percentage of size

of mv

_mv_refresh_eut refresh materialized TRUE TRUE

views using

EUT(partition)-based

algorithm

Mon Sep 05 page 39

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_mv_refresh_force_parallel_query force materialized 0 0

view refreshes to

use parallel query

_mv_refresh_new_setup_disabled materialized view MV FALSE FALSE

refresh new setup

disabling

_mv_refresh_rebuild_percentage minimum percentage 10 10

change required in

MV to force an index

rebuild

_mv_refresh_selections create materialized TRUE TRUE

views with

selections and fast

refresh

_mv_refresh_use_stats pass cardinality TRUE TRUE

hints to refresh

queries

_mv_refsched_timeincr proportionality 300000 300000

constant for dop vs.

time in MV refresh

_mwin_schedule Enable/disable TRUE TRUE

Maintenance Window

Schedules

_nchar_imp_cnv NLS allow Implicit TRUE TRUE

Conversion between

CHAR and NCHAR

_nchar_imp_conv should implicit TRUE TRUE

conversion bewteen

clob and nclob be

allowed

_ncmb_readahead_enabled enable multi-block 0 0

readahead for an

index scan

_ncmb_readahead_tracing turn on multi-block 0 0

readahead tracing

_nested_loop_fudge nested loop fudge 100 100

_nested_mav_fast_oncommit_enabled nested MAV refresh TRUE TRUE

fast on commit

allowed

Mon Sep 05 page 40

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_new_initial_join_orders enable initial join TRUE TRUE

orders based on new

ordering heuristics

_new_sort_cost_estimate enables the use of TRUE TRUE

new cost estimate

for sort

_no_objects no object features FALSE FALSE

are used

_no_or_expansion OR expansion during FALSE FALSE

optimization

disabled

_notify_crs notify cluster ready FALSE FALSE

services of startup

and shutdown

_ns_max_flush_wt Flush wait time for 1 1

NetServer to flush

oustanding writes

_num_longop_child_latches number of child 2 2

latches for long op

array

_number_cached_attributes maximum number of 10 10

cached attributes

per instance

_object_statistics enable the object TRUE TRUE

level statistics

collection

_offline_rollback_segments offline undo segment

list

_ogms_home GMS home directory

_olap_aggregate_buffer_size OLAP Aggregate max 1048576 1048576

buffer size

_olap_aggregate_flags OLAP Aggregate debug 0 0

flags

_olap_aggregate_function_cache_enable OLAP Aggregate TRUE TRUE

d function cache

enabler

Mon Sep 05 page 41

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_olap_aggregate_function_merge_thresh OLAP Aggregate 32768 32768

old function merge

threshold

_olap_aggregate_max_thread_tuples OLAP Aggregate max 5000 5000

thread tuples

creation

_olap_aggregate_min_buffer_size OLAP Aggregate min 1024 1024

buffer size

_olap_aggregate_min_thread_status OLAP Aggregate 64 64

minimum cardinality

of dimensions for

thread

_olap_aggregate_multipath_hier OLAP Aggregate FALSE FALSE

Multi-path

Hierarhies enabled

_olap_aggregate_statlen_thresh OLAP Aggregate 1024 1024

status array usage

threshold

_olap_aggregate_store_probability OLAP Aggregate 100 100

function storeback

probability

_olap_aggregate_work_per_thread OLAP Aggregate max 1024 1024

work parents

_olap_aggregate_worklist_max OLAP Aggregate max 5000 5000

worklists generated

at once

_olap_allocate_errorlog_format OLAP Allocate %8p %8y %8z % %8p %8y %8z %e

Errorlog Format e (%n) (%n)

_olap_allocate_errorlog_header OLAP Allocate Dim Sour Dim Source

Errorlog Header ce Basis Basis

format %-8d %-8s %-8 %-8d %-8s %-8b

b Description Description

-------- ------

-------- ---- -- -------- ---

---- -------- --------

-----------

_olap_continuous_trace_file Specify TRUE to FALSE FALSE

enable continuous

OLAP tracing -

Mon Sep 05 page 42

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

otherwise only

exceptional events

will be logged

_olap_dbgoutfile_echo_to_eventlog OLAP DbgOutfile copy FALSE FALSE

output to event log

(tracefile)

_olap_dimension_corehash_class OLAP Dimension 1 1

In-Core Hash Table

Class

_olap_dimension_corehash_max OLAP Dimension 10000 10000

In-Core Hash Table

Maximum Size

_olap_dimsave_restore_cache_values OLAP Dimsave TRUE TRUE

restores cached

dimension values

_olap_eif_export_lob_size OLAP EIF Export BLOB 2147483647 2147483647

size

_olap_object_hash_class OLAP Object Hash 2 2

Table Class

_olap_page_pool_expand_rate OLAP Page Pool 20 20

Expand Rate

_olap_page_pool_hi OLAP Page Pool High 50 50

Watermark

_olap_page_pool_hit_target OLAP Page Pool Hit 100 100

Target

_olap_page_pool_low OLAP Page Pool Low 262144 262144

Watermark

_olap_page_pool_pressure OLAP Page Pool 90 90

Pressure Threshold

_olap_page_pool_shrink_rate OLAP Page Pool 50 50

Shrink Rate

_olap_parallel_update_threshold OLAP parallel update 1000 1000

threshold in pages

_olap_poutlog_echo_to_eventlog OLAP POutLog copy FALSE FALSE

output to event log

(tracefile)

Mon Sep 05 page 43

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_olap_sesscache_enabled OLAP Session Cache TRUE TRUE

knob

_olap_sort_buffer_size OLAP Sort Buffer 262144 262144

Size

_olap_statbool_corebits OLAP Status Boolean 20000000 20000000

max incore bits

_olap_statbool_threshold OLAP Status Boolean 8100 8100

CBM threshold

_olap_table_function_statistics Specify TRUE to FALSE FALSE

output OLAP table

function timed

statistics trace

_olapi_history_retention enable olapi history FALSE FALSE

retention

_olapi_iface_object_history enable olapi 1000 1000

interface object

history collection

_olapi_iface_object_history_retention enable olapi FALSE FALSE

interface object

history retention

_olapi_iface_operation_history_retent enable olapi FALSE FALSE

ion interface operation

history retention

_olapi_interface_operation_history enable olapi 1000 1000

interface operation

history collection

_olapi_memory_operation_history enable olapi memory 1000 1000

alloc/free history

collection

_olapi_memory_operation_history_pause enable olapi memory 0 0

_at_seqno alloc/free history

collection pausing

_olapi_memory_operation_history_reten enable olapi memory FALSE FALSE

tion operation history

retention

_olapi_session_history enable olapi session 300 300

Mon Sep 05 page 44

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

history collection

_olapi_session_history_retention enable olapi session FALSE FALSE

history retention

_old_connect_by_enabled enable/disable old FALSE FALSE

connect by

_omf enable/disable OMF enabled enabled

_oneside_colstat_for_equijoins sanity check on TRUE TRUE

default selectivity

for like/range

predicate

_optim_adjust_for_part_skews adjust stats for TRUE TRUE

skews across

partitions

_optim_dict_stats_at_db_cr_upg enable/disable TRUE TRUE

dictionary stats

gathering at db

create/upgrade

_optim_enhance_nnull_detection TRUE to enable index TRUE TRUE

[fast] full scan

more often

_optim_new_default_join_sel improves the way TRUE TRUE

default equijoin

selectivity are

computed

_optim_peek_user_binds enable peeking of TRUE TRUE

user binds

_optimizer_adjust_for_nulls adjust selectivity TRUE TRUE

for null values

_optimizer_autostats_job enable/disable auto TRUE TRUE

stats collection job

_optimizer_block_size standard block size 8192 8192

used by optimizer

_optimizer_cache_stats cost with cache FALSE FALSE

statistics

_optimizer_cbqt_factor cost factor for 50 50

cost-based query

transformation

Mon Sep 05 page 45

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_optimizer_ceil_cost CEIL cost in CBO TRUE TRUE

_optimizer_choose_permutation force the optimizer 0 0

to use the specified

permutation

_optimizer_compute_index_stats force index stats TRUE TRUE

collection on index

creation/rebuild

_optimizer_correct_sq_selectivity force correct TRUE TRUE

computation of

subquery selectivity

_optimizer_cost_based_transformation enables cost-based LINEAR LINEAR

query transformation

_optimizer_cost_filter_pred enables costing of FALSE FALSE

filter predicates in

IO cost model

_optimizer_cost_model optimizer cost model CHOOSE CHOOSE

_optimizer_degree force the optimizer 0 0

to use the same

degree of

parallelism

_optimizer_dim_subq_join_sel use join selectivity TRUE TRUE

in choosing star

transformation

dimensions

_optimizer_disable_strans_sanity_chec disable star 0 0

ks transformation

sanity checks

_optimizer_dyn_smp_blks number of blocks for 32 32

optimizer dynamic

sampling

_optimizer_ignore_hints enables the embedded FALSE FALSE

hints to be ignored

_optimizer_invalidation_period time window for 18000 18000

invalidation of

cursors of analyzed

objects

_optimizer_join_order_control controls the 3 3

optimizer join order

Mon Sep 05 page 46

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

search algorithm

_optimizer_join_sel_sanity_check enable/disable TRUE TRUE

sanity check for

multi-column join

selectivity

_optimizer_max_permutations optimizer maximum 2000 2000

join permutations

per query block

_optimizer_mjc_enabled enable merge join TRUE TRUE

cartesian

_optimizer_mode_force force setting of TRUE TRUE

optimizer mode for

user recursive SQL

also

_optimizer_new_join_card_computation compute join TRUE TRUE

cardinality using

non-rounded input

values

_optimizer_percent_parallel optimizer percent 101 101

parallel

_optimizer_push_down_distinct push down distinct 0 0

from query block to

table

_optimizer_push_pred_cost_based use cost-based query TRUE TRUE

transformation for

push pred

optimization

_optimizer_random_plan optimizer seed value 0 0

for random plans

_optimizer_save_stats enable/disable TRUE TRUE

saving old versions

of optimizer stats

_optimizer_search_limit optimizer search 5 5

limit

_optimizer_skip_scan_enabled enable/disable index TRUE TRUE

skip scan

_optimizer_sortmerge_join_enabled enable/disable TRUE TRUE

Mon Sep 05 page 47

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

sort-merge join

method

_optimizer_squ_bottomup enables unnesting of TRUE TRUE

subquery in a

bottom-up manner

_optimizer_system_stats_usage system statistics TRUE TRUE

usage

_optimizer_undo_changes undo changes to FALSE FALSE

query optimizer

_optimizer_undo_cost_change optimizer undo cost 10.1.0.3 10.1.0.3

change

_or_expand_nvl_predicate enable OR expanded TRUE TRUE

plan for NVL/DECODE

predicate

_oradbg_pathname path of oradbg

script

_ordered_nested_loop enable ordered TRUE TRUE

nested loop costing

_ordered_semijoin enable ordered TRUE TRUE

semi-join subquery

_parallel_adaptive_max_users maximum number of 2 2

users running with

default DOP

_parallel_broadcast_enabled enable broadcasting TRUE TRUE

of small inputs to

hash and sort merge

joins

_parallel_default_max_instances default maximum 1 1

number of instances

for parallel query

_parallel_execution_message_align Alignment of PX FALSE FALSE

buffers to OS page

boundary

_parallel_fake_class_pct fake db-scheduler 0 0

percent used for

testing

Mon Sep 05 page 48

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_parallel_fixwrite_bucket Number of buckets 1000 1000

for each round of

fix write

_parallel_load_bal_unit number of threads to 0 0

allocate per

instance

_parallel_load_balancing parallel execution TRUE TRUE

load balanced slave

allocation

_parallel_min_message_pool minimum size of 902160 902160

shared pool memory

to reserve for pq

servers

_parallel_recovery_stopat stop at -position- 32767 32767

to step through SMON

_parallel_replay_bucket Number of buckets 1000 1000

for each round of

parallel replay

_parallel_server_idle_time idle time before 30000 30000

parallel query

server dies (in

1/100 sec)

_parallel_server_sleep_time sleep time between 10 10

dequeue timeouts (in

1/100ths)

_parallel_slave_acquisition_wait time(in seconds) to 1 1

wait before retrying

slave acquisition

_parallel_txn_global enable parallel_txn FALSE FALSE

hint with updates

and deletes

_parallelism_cost_fudge_factor set the parallelism 350 350

cost fudge factor

_partial_pwise_join_enabled enable partial TRUE TRUE

partition-wise join

when TRUE

_partition_view_enabled enable/disable TRUE TRUE

partitioned views

Mon Sep 05 page 49

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_passwordfile_enqueue_timeout password file 900 900

enqueue timeout in

seconds

_pct_refresh_double_count_prevented materialized view TRUE TRUE

PCT refreshes avoid

double counting

_pdml_gim_sampling control separation 5000 5000

of global index

maintenance for PDML

_pdml_gim_staggered slaves start on FALSE FALSE

different index when

doing index maint

_pdml_slaves_diff_part slaves start on TRUE TRUE

different partition

when doing index

maint

_percent_flashback_buf_partial_full Percent of flashback 50 50

buffer filled to be

considered partial

full

_pga_large_extent_size PGA large extent 1048576 1048576

size

_pga_max_size Maximum size of the 209715200 209715200

PGA memory for one

process

_ping_level fusion ping level 3 3

(DFS)

_pkt_enable enable progressive FALSE FALSE

kill test

_pkt_pmon_interval PMON process 50 50

clean-up interval

(cs)

_pkt_start start progressive FALSE FALSE

kill test

instrumention

_plsql_anon_block_code_type PL/SQL anonymous INTERPRETED INTERPRETED

block code-type

Mon Sep 05 page 50

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_plsql_dump_buffer_events conditions upon

which the PL/SQL

circular buffer is

dumped

_pmon_load_constants server load 300,192,64,3, 300,192,64,3,10

balancing constants 10,10,0 ,10,0

(S,P,D,I,L,C,M)

_pre_rewrite_push_pred push predicates into TRUE TRUE

views before rewrite

_precompute_gid_values precompute gid TRUE TRUE

values and copy them

before returning a

row

_pred_move_around enables predicate TRUE TRUE

move-around

_predicate_elimination_enabled allow predicate TRUE TRUE

elimination if set

to TRUE

_prescomm presume commit of FALSE FALSE

IMU transactions

_print_refresh_schedule enable dbms_output false false

of materialized view

refresh schedule

_private_memory_address Start address of

large extent memory

segment

_project_view_columns enable projecting TRUE TRUE

out unreferenced

columns of a view

_projection_pushdown projection pushdown TRUE TRUE

_projection_pushdown_debug level for projection 0 0

pushdown debugging

_push_join_predicate enable pushing join TRUE TRUE

predicate inside a

view

_push_join_union_view enable pushing join TRUE TRUE

predicate inside a

Mon Sep 05 page 51

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

union all view

_push_join_union_view2 enable pushing join TRUE TRUE

predicate inside a

union view

_px_async_getgranule asynchronous get FALSE FALSE

granule in the slave

_px_broadcast_fudge_factor set the tq 100 100

broadcasting fudge

factor percentage

_px_buffer_ttl ttl for px mesg 30 30

buffers in seconds

_px_compilation_debug debug level for 0 0

parallel compilation

_px_compilation_trace tracing level for 0 0

parallel compilation

_px_dynamic_opt turn off/on TRUE TRUE

restartable qerpx

dynamic optimization

_px_dynamic_sample_size num of samples for 50 50

restartable qerpx

dynamic optimization

_px_granule_size default size of a 100000 100000

rowid range granule

(in KB)

_px_index_sampling parallel query 200 200

sampling for index

create (100000 =

100%)

_px_kxib_tracing turn on kxib tracing 0 0

_px_load_publish_interval interval at which 200 200

LMON will check

whether to publish

PX load

_px_loc_msg_cost CPU cost to send a 1000 1000

PX message via

shared memory

_px_max_granules_per_slave maximum number of 100 100

Mon Sep 05 page 52

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

rowid range granules

to generate per

slave

_px_min_granules_per_slave minimum number of 13 13

rowid range granules

to generate per

slave

_px_net_msg_cost CPU cost to send a 10000 10000

PX message over the

internconnect

_px_no_granule_sort prevent parallel FALSE FALSE

partition granules

to be sorted on size

_px_no_stealing prevent parallel FALSE FALSE

granule stealing in

shared nothing

environment

_px_proc_constrain reduce TRUE TRUE

parallel_max_servers

if greater than

(processes - fudge)

_px_send_timeout IPC message send 300 300

timeout value in

seconds

_px_slaves_share_cursors slaves share cursors 0 0

with QC

_px_trace px trace parameter none none

_px_xtgranule_size default size of a 10000 10000

external table

granule (in KB)

_qa_control Oracle internal 0 0

parameter to control

QA

_qa_lrg_type Oracle internal 0 0

parameter to specify

QA lrg type

_query_cost_rewrite perform the cost TRUE TRUE

based rewrite with

materialized views

Mon Sep 05 page 53

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_query_execution_cache_max_size max size of query 65536 65536

execution cache

_query_rewrite_1 perform query TRUE TRUE

rewrite before&after

or only before view

merging

_query_rewrite_2 perform query TRUE TRUE

rewrite before&after

or only after view

merging

_query_rewrite_drj mv rewrite and drop TRUE TRUE

redundant joins

_query_rewrite_expression rewrite with TRUE TRUE

cannonical form for

expressions

_query_rewrite_fpc mv rewrite fresh TRUE TRUE

partition

containment

_query_rewrite_fudge cost based query 90 90

rewrite with MVs

fudge factor

_query_rewrite_jgmigrate mv rewrite with jg TRUE TRUE

migration

_query_rewrite_maxdisjunct query rewrite max 257 257

disjuncts

_query_rewrite_or_error allow query rewrite, FALSE FALSE

if referenced tables

are not dataless

_query_rewrite_setopgrw_enable perform general TRUE TRUE

rewrite using set

operator summaries

_query_rewrite_vop_cleanup prune frocol chain TRUE TRUE

before rewrite after

view-merging

_rcfg_parallel_cleanup if TRUE enables TRUE TRUE

parallel cleanup at

reconfiguration

Mon Sep 05 page 54

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_rcfg_parallel_fixwrite if TRUE enables TRUE TRUE

parallel fixwrite at

reconfiguration

_rcfg_parallel_replay if TRUE enables TRUE TRUE

parallel replay at

reconfiguration

_rcfg_parallel_verify if TRUE enables TRUE TRUE

parallel verify at

reconfiguration

_real_time_apply_arch_delay Archival delay with 0 0

real time apply

_real_time_apply_sim Simulation value 0 0

with real time apply

_realfree_heap_max_size minimum max total 32768 32768

heap size, in Kbytes

_realfree_heap_mode mode flags for 0 0

real-free heap

_realfree_heap_pagesize_hint hint for real-free 65536 65536

page size in bytes

_recoverable_recovery_batch_percent Recoverable recovery 50 50

batch size

(percentage of

buffer cache)

_recovery_asserts if TRUE, enable FALSE FALSE

expensive recovery

sanity checks (DFS)

_recovery_percentage recovery buffer 50 50

cache percentage

_recursive_imu_transactions recursive FALSE FALSE

transactions may be

IMU

_recyclebin recyclebin TRUE TRUE

processing

_release_insert_threshold maximum number of 5 5

unusable blocks to

unlink from freelist

Mon Sep 05 page 55

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_reliable_block_sends if TRUE, block sends FALSE FALSE

across interconnect

are reliable

_remove_aggr_subquery enables removal of TRUE TRUE

subsumed aggregated

subquery

_reuse_index_loop number of blocks 5 5

being examine for

index block reuse

_right_outer_hash_enable Right TRUE TRUE

Outer/Semi/Anti Hash

Enabled

_rollback_segment_count number of undo 0 0

segments

_rollback_segment_initial starting undo 1 1

segment number

_rollback_stopat stop at -position to 0 0

step rollback

_row_cache_cursors number of cached 10 10

cursors for row

cache management

_row_cr enable row cr for FALSE FALSE

all sql

_row_locking row-locking always always

_rowsource_execution_statistics if TRUE, Oracle will FALSE FALSE

collect rowsource

statistics

_rowsource_statistics_sampfreq frequency of 128 128

rowsource statistic

sampling (must be a

power of 2)

_sample_rows_per_block number of rows per 4 4

block used for

sampling IO

optimization

_scn_scheme SCN scheme

_second_spare_parameter second spare

Mon Sep 05 page 56

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

parameter - integer

_selftune_checkpoint_write_pct Percentage of total 3 3

physical i/os for

self-tune ckpt

_selftune_checkpointing_lag Self-tune 300 300

checkpointing lag

the tail of the redo

log

_send_ast_to_foreground if TRUE, send ast TRUE TRUE

message to

foreground

_send_close_with_block if TRUE, send close TRUE TRUE

with block even with

direct sends

_send_requests_to_pi if TRUE, try to send TRUE TRUE

CR requests to PI

buffers (DFS)

_serial_direct_read enable direct read FALSE FALSE

in serial

_serial_recovery force serial FALSE FALSE

recovery or parallel

recovery

_serializable serializable FALSE FALSE

_session_idle_bit_latches one latch per 0 0

session or a latch

per group of

sessions

_session_idle_check_interval Resource Manager 60 60

session idle limit

check interval in

seconds

_session_wait_history enable session wait 10 10

history collection

_seventh_spare_parameter seventh spare

parameter - string

list

_shared_pool_max_size shared pool maximum 0 0

size when auto SGA

Mon Sep 05 page 57

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

enabled

_shared_pool_reserved_min_alloc minimum allocation 4400 4400

size in bytes for

reserved area of

shared pool

_shared_pool_reserved_pct percentage memory of 5 5

the shared pool

allocated for the

reserved area

_shrunk_aggs_disable_threshold percentage of 60 60

exceptions at which

to switch to full

length aggs

_shrunk_aggs_enabled enable use of TRUE TRUE

variable sized

buffers for

non-distinct

aggregates

_side_channel_batch_size number of messages 200 200

to batch in a side

channel message

(DFS)

_side_channel_batch_timeout timeout before 5 5

shipping out all the

batched side

channelmessages

_simulator_bucket_mindelta LRU bucket minimum 8192 8192

delta

_simulator_internal_bound simulator internal 10 10

bound percent

_simulator_lru_rebalance_sizthr LRU list rebalance 2 2

threshold (size)

_simulator_lru_rebalance_thresh LRU list rebalance 10240 10240

threshold (count)

_simulator_lru_scan_count LRU scan count 8 8

_simulator_pin_inval_maxcnt maximum count of 16 16

invalid chunks on

pin list

Mon Sep 05 page 58

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_simulator_reserved_heap_count simulator reserved 4096 4096

heap count

_simulator_reserved_obj_count simulator reserved 1024 1024

object count

_simulator_sampling_factor sampling factor for 2 2

the simulator

_simulator_upper_bound_multiple upper bound multiple 2 2

of pool size

_single_process run without detached FALSE FALSE

processes

_sixth_spare_parameter sixth spare

parameter - string

list

_skip_assume_msg if TRUE, skip assume TRUE TRUE

message for consigns

at the master

_slave_mapping_enabled enable slave mapping TRUE TRUE

when TRUE

_slave_mapping_group_size force the number of 0 0

slave group in a

slave mapper

_small_table_threshold threshold level of 1713 1713

table size for

direct reads

_smm_advice_enabled if TRUE, enable TRUE TRUE

v$pga_advice

_smm_advice_log_size overwrites default 0 0

size of the PGA

advice workarea

history log

_smm_auto_cost_enabled if TRUE, use the TRUE TRUE

AUTO size policy

cost functions

_smm_auto_max_io_size Maximum IO size (in 248 248

KB) used by

sort/hash-join in

auto mode

Mon Sep 05 page 59

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_smm_auto_min_io_size Minimum IO size (in 56 56

KB) used by

sort/hash-join in

auto mode

_smm_bound overwrites memory 0 0

manager

automatically

computed bound

_smm_control provides controls on 0 0

the memory manager

_smm_freeable_retain value in KB of the 5120 5120

instance freeable

PGA memory to retain

_smm_max_size maximum work area 52428 52428

size in auto mode

(serial)

_smm_min_size minimum work area 1024 1024

size in auto mode

_smm_px_max_size maximum work area 314571 314571

size in auto mode

(global)

_smm_retain_size work area retain 0 0

size in SGA for

shared server

sessions (0 for

AUTO)

_smm_trace Turn on/off tracing 0 0

for SQL memory

manager

_smon_internal_errlimit limit of SMON 100 100

internal errors

_smu_debug_mode - set 0 0

debug event for

testing SMU

operations

_smu_error_simulation_site site ID of error 0 0

simulation in KTU

code

Mon Sep 05 page 60

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_smu_error_simulation_type error type for error 0 0

simulation in KTU

code

_smu_timeouts comma-separated *AND

double-quoted* list

of AUM timeouts:

mql, tur,

sess_exprn,

qry_exprn,

slot_intvl

_sort_elimination_cost_ratio cost ratio for sort 0 0

eimination under

first_rows mode

_sort_multiblock_read_count multi-block read 2 2

count for sort

_sort_space_for_write_buffers tenths of 1 1

sort_area_size

devoted to direct

write buffers

_spin_count Amount to spin 2000 2000

waiting for a latch

_spr_max_rules maximum number of 10000 10000

rules in sql

spreadsheet

_spr_push_pred_refspr push predicates TRUE TRUE

through reference

spreadsheet

_spr_use_AW_AS enable AW for hash TRUE TRUE

table in spreadsheet

_spr_use_hash_table use hash table for FALSE FALSE

spreadsheet

_sql_connect_capability_override SQL Connect 0 0

Capability Table

Override

_sql_connect_capability_table SQL Connect

Capability Table

(testing only)

Mon Sep 05 page 61

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_sqlexec_progression_cost sql execution 1000 1000

progression

monitoring cost

threshold

_sqltune_category_parsed Parsed category DEFAULT DEFAULT

qualifier for

applying hintsets

_sta_control SQL Tuning Advisory 0 0

control parameter

_stn_trace SQL tracing 0 0

parameter

_subquery_pruning_cost_factor subquery pruning 20 20

cost factor

_subquery_pruning_enabled enable the use of TRUE TRUE

subquery predicates

to perform pruning

_subquery_pruning_mv_enabled enable the use of FALSE FALSE

subquery predicates

with MVs to perform

pruning

_subquery_pruning_reduction subquery pruning 50 50

reduction factor

_swrf_metric_frequent_mode Enable/disable SWRF TRUE TRUE

Metric Frequent Mode

Collection

_swrf_mmon_dbfus Enable/disable SWRF TRUE TRUE

MMON DB Feature

Usage

_swrf_mmon_flush Enable/disable SWRF TRUE TRUE

MMON FLushing

_swrf_mmon_metrics Enable/disable SWRF TRUE TRUE

MMON Metrics

Collection

_swrf_on_disk_enabled Parameter to TRUE TRUE

enable/disable SWRF

_swrf_test_action test action 0 0

parameter for SWRF

Mon Sep 05 page 62

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_swrf_test_dbfus Enable/disable DB FALSE FALSE

Feature Usage

Testing

_sysaux_test_param test parameter for 1 1

SYSAUX

_system_index_caching optimizer percent 0 0

system index caching

_system_trig_enabled are system triggers TRUE TRUE

enabled

_table_lookup_prefetch_size table lookup 40 40

prefetch vector size

_table_lookup_prefetch_thresh table lookup 2 2

prefetch threshold

_table_scan_cost_plus_one bump estimated full TRUE TRUE

table scan and index

ffs cost by one

_temp_tran_block_threshold number of blocks for 100 100

a dimension before

we temp transform

_temp_tran_cache determines if temp TRUE TRUE

table is created

with cache option

_test_ksusigskip test the function 5 5

ksusigskip

_test_param_1 test parmeter 1 - 25 25

integer

_test_param_2 test parameter 2 -

string

_test_param_3 test parameter 3 -

string

_test_param_4 test parameter 4 -

string list

_test_param_5 test parmeter 5 - 25 25

deprecated integer

Mon Sep 05 page 63

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_test_param_6 test parmeter 6 - 0 0

size (ub8)

_third_spare_parameter third spare

parameter - integer

_threshold_alerts_enable if 1, issue 1 1

threshold-based

alerts

_total_large_extent_memory Total memory for 0 0

allocating large

extents

_tq_dump_period time period for 0 0

duping of TQ

statistics (s)

_trace_archive start DIAG process FALSE FALSE

_trace_buffer_flushes trace buffer flushes FALSE FALSE

if otrace cacheIO

event is set

_trace_buffer_gets trace kcb buffer FALSE FALSE

gets if otrace

cacheIO event is set

_trace_buffer_wait_timeouts trace buffer busy 0 0

wait timeouts

_trace_buffers trace buffer sizes ALL:256 ALL:256

per process

_trace_cr_buffer_creates trace cr buffer FALSE FALSE

creates if otrace

cacheIO event is set

_trace_events trace events enabled

at startup

_trace_file_size maximum size of 65536 65536

trace file (in

bytes)

_trace_files_public Create publicly FALSE FALSE

accessible trace

files

_trace_flush_processes trace data archived ALL ALL

by DIAG for these

Mon Sep 05 page 64

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

processes

_trace_instance_termination trace instance FALSE FALSE

termination actions

_trace_multi_block_reads trace multi_block FALSE FALSE

reads if otrace

cacheIO event is set

_trace_navigation_scope enabling trace global global

navigation linking

_trace_options trace data flush text,multiple text,multiple

options

_trace_pin_time trace how long a 0 0

current pin is held

_trace_processes enable KST tracing ALL ALL

in process

_transaction_auditing transaction auditing TRUE TRUE

records generated in

the redo log

_transaction_recovery_servers max number of 0 0

parallel recovery

slaves that may be

used

_tts_allow_charset_mismatch allow plugging in a FALSE FALSE

tablespace with an

incompatible

character set

_two_pass enable two-pass TRUE TRUE

thread recovery

_two_pass_reverse_polish_enabled uses two-pass TRUE TRUE

reverse polish alg.

to generate

canonical forms

_uga_cga_large_extent_size UGA/CGA large extent 262144 262144

size

_ultrafast_latch_statistics maintain fast-path TRUE TRUE

statistics for

ultrafast latches

Mon Sep 05 page 65

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_undo_autotune enable auto tuning TRUE TRUE

of undo_retention

_undo_debug_usage invoke undo usage 0 0

functions for

testing

_union_rewrite_for_gs expand queries with YES_GSET_MVS YES_GSET_MVS

GSets into UNIONs

for rewrite

_unnest_subquery enables unnesting of TRUE TRUE

correlated

subqueries

_use_column_stats_for_function enable the use of TRUE TRUE

column statistics

for DDP functions

_use_ism Enable Shared Page TRUE TRUE

Tables - ISM

_use_ism_for_pga Use ISM for TRUE TRUE

allocating large

extents

_use_new_explain_plan if TRUE, use the FALSE FALSE

AUTO size policy

cost functions

_use_nosegment_indexes use nosegment FALSE FALSE

indexes in explain

plan

_use_realfree_heap use real-free based TRUE TRUE

allocator for PGA

memory

_use_seq_process_cache whether to use TRUE TRUE

process local seq

cache

_use_vector_post use vector post TRUE TRUE

_validate_flashback_database Scan database to FALSE FALSE

validate result of

flashback database

_vendor_lib_loc Vendor library

search root

directory

Mon Sep 05 page 66

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_verify_flashback_redo Verify that the redo TRUE TRUE

logs needed for

flashback are

available

_verify_undo_quota TRUE - verify FALSE FALSE

consistency of undo

quota statistics

_wait_for_sync wait for sync on TRUE TRUE

commit MUST BE

ALWAYS TRUE

_walk_insert_threshold maximum number of 0 0

unusable blocks to

walk across freelist

_watchpoint_on is the watchpointing FALSE FALSE

feature turned on?

_write_clones write clones flag 3 3

_xsolapi_auto_materialization_bound OLAP API lower bound 20 20

for auto

materialization.

_xsolapi_auto_materialization_type OLAP API behavior PRED_ONLY PRED_ONLY

for auto

materialization

_xsolapi_cursor_max_rows_to_cache_per OLAP API max rows to 15000 15000

_req cache per request

_xsolapi_cursor_max_time_for_partial_ OLAP API cursor max 5000 5000

cache execute time for

partial cache

_xsolapi_cursor_use_row_cache OLAP API enable TRUE TRUE

cursor caching

_xsolapi_debug_output OLAP API debug

output disposition

_xsolapi_densify_cubes OLAP API cube TABULAR TABULAR

densification

_xsolapi_dimension_group_creation OLAP API symmetric OVERFETCH OVERFETCH

overfetch

_xsolapi_fetch_type OLAP API fetch type PARTIAL PARTIAL

Mon Sep 05 page 67

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_xsolapi_load_at_process_start When to load OLAP NEVER NEVER

API library at

server process start

_xsolapi_materialization_rowcache_min OLAP API min number 1 1

_rows_for_use of rows required to

use rowcache in

query

materialization

_xsolapi_materialize_sources OLAP API Enable TRUE TRUE

source

materialization

_xsolapi_sql_all_multi_join_non_base_ OLAP API multi-join

hints non-base hints

_xsolapi_sql_all_non_base_hints OLAP API non-base

hints

_xsolapi_sql_auto_dimension_hints OLAP API enable FALSE FALSE

automatic dimension

hints

_xsolapi_sql_auto_measure_hints OLAP API enable TRUE TRUE

automatic measure

hints

_xsolapi_sql_dimension_hints OLAP API dimension

hints

_xsolapi_sql_hints OLAP API generic

hints

_xsolapi_sql_measure_hints OLAP API measure

hints

_xsolapi_sql_optimize OLAP API enable TRUE TRUE

optimization

_xsolapi_sql_prepare_stmt_cache_size OLAP API prepare 16 16

statement cache size

_xsolapi_sql_remove_columns OLAP API enable TRUE TRUE

remove unused

columns

optimizations

_xsolapi_sql_result_set_cache_size OLAP API result set 32 32

cache size

Mon Sep 05 page 68

Undocumented Oracle Parameters TEST Database

Parameter Description Session Value Instance Value

------------------------------------- -------------------- ------------- ---------------

_xsolapi_sql_symmetric_predicate OLAP API enable TRUE TRUE

symmetric predicate

for dimension groups

_xsolapi_sql_top_dimension_hints OLAP API top

dimension hints

_xsolapi_sql_top_measure_hints OLAP API top measure

hints

_xsolapi_sql_use_bind_variables OLAP API enable bind TRUE TRUE

variables

optimization

_xt_coverage external tables code none none

coverage parameter

_xt_trace external tables none none

trace parameter

_xtbuffer_size buffer size in KB 0 0

needed for

populate/query

operation

_xtts_allow_pre10 allow cross platform FALSE FALSE

for pre10 compatible

tablespace

_xtts_set_platform_info set cross platform FALSE FALSE

info during file

header read

_yield_check_interval interval to check 100000 100000

whether actses

should yield

918 rows selected.

Appendix B: Test Results form Serial Sort Tests

1 Gigabyte PGA_AGGREGATE_TARGET, Default _pga_max_size

SQL> show parameter sga

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

lock_sga boolean FALSE

pre_page_sga boolean FALSE

sga_max_size big integer 1G

sga_target big integer 1G

SQL> show parameter pga

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

pga_aggregate_target big integer 1G

SQL> @get_undocs

Parameter Description Value

---------------------------------------- ------------------------- ----------

_pga_large_extent_size PGA large extent size 1048576

_pga_max_size Maximum size of the PGA 209715200

memory for one process

_smm_advice_enabled if TRUE, enable TRUE

v$pga_advice

_smm_advice_log_size overwrites default size 0

of the PGA advice

workarea history log

_smm_auto_cost_enabled if TRUE, use the AUTO TRUE

size policy cost

functions

_smm_auto_max_io_size Maximum IO size (in KB) 248

used by sort/hash-join in

auto mode

_smm_auto_min_io_size Minimum IO size (in KB) 56

used by sort/hash-join in

auto mode

_smm_bound overwrites memory manager 0

automatically computed

bound

_smm_control provides controls on the 0

memory manager

_smm_freeable_retain value in KB of the 5120

instance freeable PGA

memory to retain

_smm_max_size maximum work area size in 52428

auto mode (serial)

_smm_min_size minimum work area size in 1024

auto mode

_smm_px_max_size maximum work area size in 314571

auto mode (global)

_smm_retain_size work area retain size in 0

SGA for shared server

sessions (0 for AUTO)

_smm_trace Turn on/off tracing for 0

SQL memory manager

15 rows selected.

SQL> set autotrace traceonly

SQL> set timing on

SQL> get test_serial

1 select * from test_pga

2* order by district_name,name

SQL> /

4547752 rows selected.

Elapsed: 00:03:29.54

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=133048 Card=454775

2 Bytes=513895976)

1 0 SORT (ORDER BY) (Cost=133048 Card=4547752 Bytes=513895976)

2 1 TABLE ACCESS (FULL) OF 'TEST_PGA' (TABLE) (Cost=15683 Ca

rd=4547752 Bytes=513895976)

Statistics

----------------------------------------------------------

609 recursive calls

49 db block gets

79730 consistent gets

89546 physical reads

0 redo size

253974127 bytes sent via SQL*Net to client

3335525 bytes received via SQL*Net from client

303185 SQL*Net roundtrips to/from client

0 sorts (memory)

1 sorts (disk)

4547752 rows processed

SQL> spool off

SQL> select * from test_results;

SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW

----- -------------- ------------- --------------- ------------ ------------ ------------

623 47708160 6602752 47710208 47710208 4194304 050905105926

623 47708160 6602752 47710208 47710208 10485760 050905105927

623 47708160 6602752 47710208 47710208 16777216 050905105928

623 47708160 6602752 47710208 47710208 23068672 050905105930

623 47708160 6602752 47710208 47710208 28311552 050905105931

623 47708160 6602752 47710208 47710208 34603008 050905105932

623 47708160 6602752 47710208 47710208 40894464 050905105933

623 6602752 6602752 5587968 47710208 46137344 050905105934

623 6602752 4571136 4645888 47710208 51380224 050905105935

623 6602752 4571136 4047872 47710208 56623104 050905105936

623 6602752 4571136 4301824 47710208 62914560 050905105937

623 6094848 6094848 3064832 47710208 68157440 050905105938

623 6094848 6094848 5047296 47710208 73400320 050905105939

623 7618560 7618560 7316480 47710208 78643200 050905105940

623 7618560 7618560 7316480 47710208 84934656 050905105941

623 8634368 8634368 7382016 47710208 89128960 050905105942

623 8634368 8634368 8365056 47710208 95420416 050905105943

623 8634368 8634368 8111104 47710208 101711872 050905105944

623 8634368 8634368 8111104 47710208 106954752 050905105945

623 10158080 10158080 9364480 47710208 112197632 050905105946

623 10158080 10158080 9364480 47710208 118489088 050905105947

623 10158080 10158080 9618432 47710208 123731968 050905105948

623 10158080 10158080 9110528 47710208 128974848 050905105949

623 10158080 10158080 9110528 47710208 135266304 050905105950

623 11681792 11681792 10871808 47710208 140509184 050905105951

623 11681792 11681792 11379712 47710208 145752064 050905105952

623 11681792 11681792 11379712 47710208 152043520 050905105953

623 11681792 11681792 11125760 47710208 157286400 050905105954

623 11681792 11681792 11125760 47710208 163577856 050905105955

623 13205504 13205504 12444672 47710208 168820736 050905105956

623 13205504 13205504 12444672 47710208 175112192 050905105957

623 13205504 13205504 12444672 47710208 180355072 050905105958

623 13205504 13205504 12444672 47710208 186646528 050905105959

623 13205504 13205504 12444672 47710208 190840832 050905110000

623 13205504 13205504 12444672 47710208 197132288 050905110001

623 14729216 14729216 13952000 47710208 202375168 050905110002

623 14729216 14729216 13952000 47710208 208666624 050905110003

623 14729216 14729216 14459904 47710208 212860928 050905110005

623 14729216 14729216 14459904 47710208 219152384 050905110006

623 14729216 14729216 13698048 47710208 224395264 050905110007

623 14729216 14729216 13698048 47710208 230686720 050905110008

623 14729216 14729216 13698048 47710208 236978176 050905110009

623 16760832 16760832 16237568 47710208 241172480 050905110010

623 16760832 16760832 16237568 47710208 247463936 050905110011

623 16760832 16760832 16491520 47710208 252706816 050905110012

623 16760832 16760832 16491520 47710208 258998272 050905110013

623 16760832 16760832 16491520 47710208 265289728 050905110014

623 16760832 16760832 16491520 47710208 269484032 050905110015

623 16760832 16760832 16491520 47710208 275775488 050905110016

623 16760832 16760832 15729664 47710208 281018368 050905110017

623 16760832 16760832 15729664 47710208 286261248 050905110018

623 16760832 16760832 15729664 47710208 292552704 050905110019

623 18284544 18284544 17490944 47710208 296747008 050905110020

623 18284544 18284544 17490944 47710208 303038464 050905110021

623 18284544 18284544 17490944 47710208 309329920 050905110022

623 18284544 18284544 17490944 47710208 313524224 050905110023

623 18284544 18284544 17490944 47710208 319815680 050905110024

623 18284544 18284544 17490944 47710208 326107136 050905110025

623 18284544 18284544 17490944 47710208 330301440 050905110026

623 18284544 18284544 17490944 47710208 336592896 050905110027

623 18284544 18284544 17490944 47710208 341835776 050905110028

623 20824064 20824064 19792896 47710208 346030080 050905110029

623 20824064 20824064 19792896 47710208 352321536 050905110030

623 20824064 20824064 19792896 47710208 357564416 050905110031

623 20824064 20824064 17826816 47710208 360710144 050905110032

623 20824064 20824064 19792896 47710208 365953024 050905110033

623 20824064 20824064 19792896 47710208 372244480 050905110034

623 20824064 20824064 19792896 47710208 378535936 050905110035

623 20824064 20824064 20300800 47710208 382730240 050905110036

623 20824064 20824064 20300800 47710208 387973120 050905110037

623 20824064 20824064 20300800 47710208 394264576 050905110038

623 20824064 20824064 20300800 47710208 398458880 050905110039

623 20824064 20824064 20300800 47710208 404750336 050905110040

623 20824064 20824064 20300800 47710208 411041792 050905110041

623 22855680 22855680 20972544 47710208 415236096 050905110042

623 22855680 22855680 21824512 47710208 421527552 050905110044

623 22855680 22855680 21824512 47710208 426770432 050905110045

623 22855680 22855680 21824512 47710208 433061888 050905110046

623 22855680 22855680 21824512 47710208 437256192 050905110047

623 22855680 22855680 21824512 47710208 443547648 050905110048

623 22855680 22855680 21824512 47710208 449839104 050905110049

623 22855680 22855680 5964800 47710208 455081984 050905110050

623 22855680 22855680 21824512 47710208 460324864 050905110051

623 22855680 22855680 21824512 47710208 466616320 050905110052

623 22855680 22855680 21824512 47710208 471859200 050905110053

623 22855680 22855680 22586368 47710208 476053504 050905110054

623 22855680 22855680 22586368 47710208 482344960 050905110055

623 22855680 22855680 22586368 47710208 488636416 050905110056

623 22855680 22855680 22586368 47710208 494927872 050905110057

623 22855680 22855680 21824512 47710208 498073600 050905110058

623 22855680 22855680 21824512 47710208 504365056 050905110059

623 22855680 22855680 21824512 47710208 509607936 050905110100

623 22855680 22855680 21824512 47710208 514850816 050905110101

623 25395200 25395200 25142272 47710208 519045120 050905110102

623 25395200 25395200 25142272 47710208 525336576 050905110103

623 25395200 25395200 25142272 47710208 530579456 050905110104

623 25395200 25395200 25142272 47710208 536870912 050905110105

623 25395200 25395200 19055616 47710208 537919488 050905110106

623 25395200 25395200 24888320 47710208 542113792 050905110107

623 25395200 25395200 24888320 47710208 548405248 050905110108

623 25395200 25395200 24888320 47710208 554696704 050905110109

623 25395200 25395200 3605504 47710208 559939584 050905110110

623 25395200 25395200 24380416 47710208 562036736 050905110111

623 25395200 25395200 24380416 47710208 568328192 050905110112

623 25395200 25395200 24380416 47710208 573571072 050905110113

623 25395200 25395200 24380416 47710208 579862528 050905110114

623 25395200 25395200 11994112 47710208 583008256 050905110115

623 25395200 25395200 24380416 47710208 586153984 050905110116

623 25395200 25395200 24380416 47710208 592445440 050905110117

623 25395200 25395200 24380416 47710208 597688320 050905110118

623 25395200 25395200 24380416 47710208 603979776 050905110119

623 25395200 25395200 24888320 47710208 606076928 050905110120

623 25395200 25395200 24888320 47710208 611319808 050905110121

623 25395200 25395200 24888320 47710208 617611264 050905110123

623 25395200 25395200 24888320 47710208 623902720 050905110124

623 27934720 27934720 11584512 47710208 628097024 050905110125

623 27934720 27934720 12305408 47710208 633339904 050905110126

623 24379392 24379392 24641536 47710208 638582784 050905110127

623 24379392 24379392 24641536 47710208 638582784 050905110128

623 24379392 24379392 24641536 47710208 638582784 050905110129

623 24379392 24379392 24641536 47710208 638582784 050905110130

623 24379392 24379392 24641536 47710208 638582784 050905110131

623 24379392 24379392 24641536 47710208 638582784 050905110132

623 24379392 24379392 24641536 47710208 638582784 050905110133

623 24379392 24379392 24641536 47710208 638582784 050905110134

623 24379392 24379392 24641536 47710208 638582784 050905110135

623 24379392 24379392 24641536 47710208 638582784 050905110136

623 24379392 24379392 24641536 47710208 638582784 050905110137

623 24379392 24379392 24641536 47710208 638582784 050905110138

623 24379392 24379392 24641536 47710208 638582784 050905110139

623 24379392 24379392 24641536 47710208 638582784 050905110140

623 24379392 24379392 24641536 47710208 638582784 050905110141

623 24379392 24379392 24641536 47710208 638582784 050905110142

623 24379392 24379392 24641536 47710208 638582784 050905110143

623 24379392 24379392 24641536 47710208 638582784 050905110144

623 24379392 24379392 24641536 47710208 638582784 050905110145

623 24379392 24379392 24641536 47710208 638582784 050905110146

623 24379392 24379392 24641536 47710208 638582784 050905110147

623 24379392 24379392 24641536 47710208 638582784 050905110148

623 24379392 24379392 24641536 47710208 638582784 050905110149

623 24379392 24379392 24641536 47710208 638582784 050905110150

623 24379392 24379392 24641536 47710208 638582784 050905110151

623 24379392 24379392 24641536 47710208 638582784 050905110152

623 24379392 24379392 24641536 47710208 638582784 050905110153

623 24379392 24379392 24641536 47710208 638582784 050905110154

623 24379392 24379392 24641536 47710208 638582784 050905110155

623 24379392 24379392 24641536 47710208 638582784 050905110156

623 24379392 24379392 24641536 47710208 638582784 050905110157

623 24379392 24379392 24641536 47710208 638582784 050905110159

623 24379392 24379392 24641536 47710208 638582784 050905110200

623 24379392 24379392 24641536 47710208 638582784 050905110201

623 24379392 24379392 24641536 47710208 638582784 050905110202

623 24379392 24379392 24641536 47710208 638582784 050905110203

623 24379392 24379392 24641536 47710208 638582784 050905110204

623 24379392 24379392 24641536 47710208 638582784 050905110205

623 24379392 24379392 24641536 47710208 638582784 050905110206

623 24379392 24379392 24641536 47710208 638582784 050905110207

623 24379392 24379392 24641536 47710208 638582784 050905110208

623 24379392 24379392 24641536 47710208 638582784 050905110209

623 24379392 24379392 24641536 47710208 638582784 050905110210

623 24379392 24379392 24641536 47710208 638582784 050905110211

623 24379392 24379392 24641536 47710208 638582784 050905110212

623 24379392 24379392 24641536 47710208 638582784 050905110213

623 24379392 24379392 24641536 47710208 638582784 050905110214

623 24379392 24379392 24641536 47710208 638582784 050905110215

623 24379392 24379392 24641536 47710208 638582784 050905110216

623 24379392 24379392 24641536 47710208 638582784 050905110217

623 24379392 24379392 24641536 47710208 638582784 050905110218

623 24379392 24379392 24641536 47710208 638582784 050905110219

623 24379392 24379392 24641536 47710208 638582784 050905110220

623 24379392 24379392 24641536 47710208 638582784 050905110221

623 24379392 24379392 24641536 47710208 638582784 050905110222

623 24379392 24379392 24641536 47710208 638582784 050905110223

623 24379392 24379392 24641536 47710208 638582784 050905110224

623 24379392 24379392 24641536 47710208 638582784 050905110225

623 24379392 24379392 24641536 47710208 638582784 050905110226

623 24379392 24379392 24641536 47710208 638582784 050905110227

623 24379392 24379392 24641536 47710208 638582784 050905110228

623 24379392 24379392 24641536 47710208 638582784 050905110229

623 24379392 24379392 24641536 47710208 638582784 050905110230

623 24379392 24379392 24641536 47710208 638582784 050905110231

623 24379392 24379392 24641536 47710208 638582784 050905110232

623 24379392 24379392 24641536 47710208 638582784 050905110233

623 24379392 24379392 24641536 47710208 638582784 050905110234

623 24379392 24379392 24641536 47710208 638582784 050905110235

623 24379392 24379392 24641536 47710208 638582784 050905110236

623 24379392 24379392 24641536 47710208 638582784 050905110237

623 24379392 24379392 24641536 47710208 638582784 050905110239

623 24379392 24379392 24641536 47710208 638582784 050905110240

623 24379392 24379392 24641536 47710208 638582784 050905110241

623 24379392 24379392 24641536 47710208 638582784 050905110242

623 24379392 24379392 24641536 47710208 638582784 050905110243

623 24379392 24379392 24641536 47710208 638582784 050905110244

623 24379392 24379392 24641536 47710208 638582784 050905110245

623 24379392 24379392 24641536 47710208 638582784 050905110246

623 24379392 24379392 24641536 47710208 638582784 050905110247

623 24379392 24379392 24641536 47710208 638582784 050905110248

623 24379392 24379392 24641536 47710208 638582784 050905110249

623 24379392 24379392 24641536 47710208 638582784 050905110250

623 24379392 24379392 24641536 47710208 638582784 050905110251

623 24379392 24379392 24641536 47710208 638582784 050905110252

623 24379392 24379392 24641536 47710208 638582784 050905110253

623 24379392 24379392 24641536 47710208 638582784 050905110254

203 rows selected.

SQL> spool off

4 Gigabyte PGA_AGGREGATE_TARGET, Default _pga_max_size

SQL> show parameter pga

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

pga_aggregate_target big integer 4G

SQL> set autotrace traceonly

SQL> /

2273876 rows selected.

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=108710 Card=259414

8 Bytes=456570048)

1 0 SORT (ORDER BY) (Cost=108710 Card=2594148 Bytes=456570048)

2 1 TABLE ACCESS (FULL) OF 'TEST_PGA' (TABLE) (Cost=7873 Car

d=2594148 Bytes=456570048)

Statistics

----------------------------------------------------------

305 recursive calls

29 db block gets

39850 consistent gets

77988 physical reads

0 redo size

128100029 bytes sent via SQL*Net to client

1668013 bytes received via SQL*Net from client

151593 SQL*Net roundtrips to/from client

0 sorts (memory)

1 sorts (disk)

2273876 rows processed

SQL> spool off

SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW

----- -------------- ------------- --------------- ------------ ------------ ------------

623 102313984 9142272 102318080 102318080 66060288 050905111327

623 102313984 9142272 102318080 102318080 72351744 050905111328

623 102313984 9142272 102318080 102318080 78643200 050905111329

623 102313984 9142272 102318080 102318080 84934656 050905111330

623 102313984 9142272 102318080 102318080 90177536 050905111331

623 9142272 9142272 8635392 102318080 95420416 050905111332

623 9142272 9142272 8635392 102318080 101711872 050905111333

623 9142272 9142272 8127488 102318080 106954752 050905111334

623 9142272 6094848 5497856 102318080 112197632 050905111335

623 9142272 6094848 5047296 102318080 118489088 050905111336

623 9142272 6094848 5809152 102318080 123731968 050905111337

623 9142272 6094848 3802112 102318080 127926272 050905111338

623 9142272 6094848 5555200 102318080 134217728 050905111339

623 8126464 8126464 7078912 102318080 139460608 050905111340

623 8126464 8126464 7586816 102318080 144703488 050905111341

623 8126464 8126464 7586816 102318080 150994944 050905111342

623 8126464 8126464 7078912 102318080 156237824 050905111343

623 8126464 8126464 7586816 102318080 160432128 050905111344

623 10158080 10158080 9872384 102318080 166723584 050905111345

623 10158080 10158080 1024 102318080 171966464 050905111346

623 10158080 10158080 9110528 102318080 177209344 050905111347

623 10158080 10158080 9618432 102318080 182452224 050905111348

623 10158080 10158080 9618432 102318080 188743680 050905111349

623 10158080 10158080 9872384 102318080 193986560 050905111350

623 12189696 12189696 11142144 102318080 199229440 050905111351

623 12189696 12189696 11142144 102318080 205520896 050905111352

623 12189696 12189696 11142144 102318080 210763776 050905111354

623 12189696 12189696 11142144 102318080 217055232 050905111355

623 12189696 12189696 11396096 102318080 222298112 050905111356

623 12189696 12189696 11396096 102318080 228589568 050905111357

623 12189696 12189696 11396096 102318080 232783872 050905111358

623 14221312 14221312 9946112 102318080 239075328 050905111359

623 14221312 14221312 13681664 102318080 244318208 050905111400

623 14221312 14221312 13681664 102318080 249561088 050905111401

623 14221312 14221312 13427712 102318080 254803968 050905111402

623 14221312 14221312 13427712 102318080 261095424 050905111403

623 14221312 14221312 13427712 102318080 265289728 050905111404

623 14221312 14221312 13427712 102318080 272629760 050905111405

623 14221312 14221312 13427712 102318080 276824064 050905111406

623 14221312 14221312 13427712 102318080 283115520 050905111407

623 16760832 16760832 15983616 102318080 287309824 050905111408

623 16760832 16760832 15983616 102318080 293601280 050905111409

623 16760832 16760832 15983616 102318080 299892736 050905111410

623 16760832 16760832 16237568 102318080 305135616 050905111411

623 16760832 16760832 16237568 102318080 310378496 050905111412

623 16760832 16760832 7578624 102318080 315621376 050905111413

623 16760832 16760832 16491520 102318080 320864256 050905111414

623 16760832 16760832 16491520 102318080 327155712 050905111415

623 16760832 16760832 15729664 102318080 331350016 050905111416

623 16760832 16760832 15729664 102318080 337641472 050905111417

623 16760832 16760832 15729664 102318080 343932928 050905111418

623 18792448 18792448 18015232 102318080 348127232 050905111419

623 18792448 18792448 18015232 102318080 353370112 050905111420

623 18792448 18792448 18015232 102318080 359661568 050905111421

623 18792448 18792448 18015232 102318080 364904448 050905111422

623 18792448 18792448 18015232 102318080 370147328 050905111423

623 18792448 18792448 18015232 102318080 376438784 050905111424

623 18792448 18792448 18269184 102318080 381681664 050905111425

623 18792448 18792448 18269184 102318080 387973120 050905111426

623 18792448 18792448 18269184 102318080 393216000 050905111427

623 18792448 18792448 18269184 102318080 398458880 050905111428

623 18792448 18792448 18269184 102318080 403701760 050905111429

623 18792448 18792448 18269184 102318080 409993216 050905111430

623 18792448 18792448 18523136 102318080 415236096 050905111432

623 18792448 18792448 18523136 102318080 421527552 050905111433

623 18792448 18792448 5030912 102318080 426770432 050905111434

623 21331968 21331968 20825088 102318080 432013312 050905111435

623 21331968 21331968 20825088 102318080 437256192 050905111436

623 21331968 21331968 20825088 102318080 443547648 050905111437

623 21331968 21331968 21079040 102318080 447741952 050905111438

623 21331968 21331968 21079040 102318080 454033408 050905111439

623 21331968 21331968 21079040 102318080 460324864 050905111440

623 21331968 21331968 20317184 102318080 464519168 050905111441

623 21331968 21331968 20317184 102318080 470810624 050905111442

623 21331968 21331968 20317184 102318080 477102080 050905111443

623 21331968 21331968 508928 102318080 483393536 050905111444

623 21331968 21331968 20825088 102318080 487587840 050905111445

623 21331968 21331968 20825088 102318080 493879296 050905111446

623 21331968 21331968 20825088 102318080 499122176 050905111447

623 21331968 21331968 20825088 102318080 504365056 050905111448

623 21331968 21331968 20825088 102318080 509607936 050905111449

623 21331968 21331968 20825088 102318080 515899392 050905111450

623 23871488 23871488 21210112 102318080 520093696 050905111451

623 23871488 23871488 23569408 102318080 525336576 050905111452

623 23871488 23871488 23569408 102318080 531628032 050905111453

623 23871488 23871488 23569408 102318080 537919488 050905111454

623 23871488 23871488 14656512 102318080 541065216 050905111455

623 23871488 23871488 23569408 102318080 545259520 050905111456

623 23871488 23871488 23569408 102318080 551550976 050905111457

623 23871488 23871488 23569408 102318080 557842432 050905111458

623 23871488 23871488 11469824 102318080 562036736 050905111459

623 23871488 23871488 22807552 102318080 566231040 050905111500

623 23871488 23871488 22807552 102318080 572522496 050905111501

623 23871488 23871488 22807552 102318080 577765376 050905111502

623 23871488 23871488 6882304 102318080 583008256 050905111503

623 23871488 23871488 22807552 102318080 587202560 050905111504

623 23871488 23871488 22807552 102318080 592445440 050905111505

623 23871488 23871488 22807552 102318080 598736896 050905111506

623 23871488 23871488 1442816 102318080 603979776 050905111507

623 23871488 23871488 22807552 102318080 607125504 050905111508

623 23871488 23871488 22807552 102318080 613416960 050905111510

623 23871488 23871488 22807552 102318080 619708416 050905111511

623 23871488 23871488 4391936 102318080 624951296 050905111512

623 26918912 26918912 14287872 102318080 629145600 050905111513

623 26918912 26918912 14287872 102318080 635437056 050905111514

623 22855680 22855680 23624704 102318080 638582784 050905111515

623 22855680 22855680 23624704 102318080 638582784 050905111516

623 22855680 22855680 23624704 102318080 638582784 050905111517

623 22855680 22855680 23624704 102318080 638582784 050905111518

623 22855680 22855680 23624704 102318080 638582784 050905111519

623 22855680 22855680 23624704 102318080 638582784 050905111520

623 22855680 22855680 23624704 102318080 638582784 050905111521

623 22855680 22855680 23624704 102318080 638582784 050905111522

623 22855680 22855680 23624704 102318080 638582784 050905111523

623 22855680 22855680 23624704 102318080 638582784 050905111524

623 22855680 22855680 23624704 102318080 638582784 050905111525

623 22855680 22855680 23624704 102318080 638582784 050905111526

623 22855680 22855680 23624704 102318080 638582784 050905111527

623 22855680 22855680 23624704 102318080 638582784 050905111528

623 22855680 22855680 23624704 102318080 638582784 050905111529

623 22855680 22855680 23624704 102318080 638582784 050905111530

623 22855680 22855680 23624704 102318080 638582784 050905111531

623 22855680 22855680 23624704 102318080 638582784 050905111532

623 22855680 22855680 23624704 102318080 638582784 050905111533

623 22855680 22855680 23624704 102318080 638582784 050905111534

623 22855680 22855680 23624704 102318080 638582784 050905111535

623 22855680 22855680 23624704 102318080 638582784 050905111536

623 22855680 22855680 23624704 102318080 638582784 050905111537

623 22855680 22855680 23624704 102318080 638582784 050905111538

623 22855680 22855680 23624704 102318080 638582784 050905111539

623 22855680 22855680 23624704 102318080 638582784 050905111540

623 22855680 22855680 23624704 102318080 638582784 050905111541

623 22855680 22855680 23624704 102318080 638582784 050905111542

623 22855680 22855680 23624704 102318080 638582784 050905111543

623 22855680 22855680 23624704 102318080 638582784 050905111544

623 22855680 22855680 23624704 102318080 638582784 050905111545

623 22855680 22855680 23624704 102318080 638582784 050905111546

623 22855680 22855680 23624704 102318080 638582784 050905111547

623 22855680 22855680 23624704 102318080 638582784 050905111549

623 22855680 22855680 23624704 102318080 638582784 050905111550

623 22855680 22855680 23624704 102318080 638582784 050905111551

623 22855680 22855680 23624704 102318080 638582784 050905111552

623 22855680 22855680 23624704 102318080 638582784 050905111553

623 22855680 22855680 23624704 102318080 638582784 050905111554

623 22855680 22855680 23624704 102318080 638582784 050905111555

623 22855680 22855680 23624704 102318080 638582784 050905111556

623 22855680 22855680 23624704 102318080 638582784 050905111557

623 22855680 22855680 23624704 102318080 638582784 050905111558

623 22855680 22855680 23624704 102318080 638582784 050905111559

623 22855680 22855680 23624704 102318080 638582784 050905111600

623 22855680 22855680 23624704 102318080 638582784 050905111601

623 22855680 22855680 23624704 102318080 638582784 050905111602

623 22855680 22855680 23624704 102318080 638582784 050905111603

623 22855680 22855680 23624704 102318080 638582784 050905111604

623 22855680 22855680 23624704 102318080 638582784 050905111605

623 22855680 22855680 23624704 102318080 638582784 050905111606

623 22855680 22855680 23624704 102318080 638582784 050905111607

623 22855680 22855680 23624704 102318080 638582784 050905111608

623 22855680 22855680 23624704 102318080 638582784 050905111609

623 22855680 22855680 23624704 102318080 638582784 050905111610

623 22855680 22855680 23624704 102318080 638582784 050905111611

623 22855680 22855680 23624704 102318080 638582784 050905111612

623 22855680 22855680 23624704 102318080 638582784 050905111613

623 22855680 22855680 23624704 102318080 638582784 050905111614

623 22855680 22855680 23624704 102318080 638582784 050905111615

623 22855680 22855680 23624704 102318080 638582784 050905111616

623 22855680 22855680 23624704 102318080 638582784 050905111617

623 22855680 22855680 23624704 102318080 638582784 050905111618

623 22855680 22855680 23624704 102318080 638582784 050905111619

623 22855680 22855680 23624704 102318080 638582784 050905111620

623 22855680 22855680 23624704 102318080 638582784 050905111621

623 22855680 22855680 23624704 102318080 638582784 050905111622

623 22855680 22855680 23624704 102318080 638582784 050905111623

623 22855680 22855680 23624704 102318080 638582784 050905111624

623 22855680 22855680 23624704 102318080 638582784 050905111625

623 22855680 22855680 23624704 102318080 638582784 050905111626

623 22855680 22855680 23624704 102318080 638582784 050905111627

623 22855680 22855680 23624704 102318080 638582784 050905111629

623 22855680 22855680 23624704 102318080 638582784 050905111630

623 22855680 22855680 23624704 102318080 638582784 050905111631

623 22855680 22855680 23624704 102318080 638582784 050905111632

623 22855680 22855680 23624704 102318080 638582784 050905111633

623 22855680 22855680 23624704 102318080 638582784 050905111634

623 22855680 22855680 23624704 102318080 638582784 050905111635

623 22855680 22855680 23624704 102318080 638582784 050905111636

623 22855680 22855680 23624704 102318080 638582784 050905111637

186 rows selected.

SQL> spool off

4 Gigabyte PGA_AGGREGATE_TARGET, 400M _pga_max_size

SQL> show parameter pga

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

_pga_max_size big integer 400M

pga_aggregate_target big integer 4G

SQL> show parameter sga

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

lock_sga boolean FALSE

pre_page_sga boolean FALSE

sga_max_size big integer 1G

sga_target big integer 1G

SQL> @get_undocs

Parameter Description Value

---------------------------------------- ------------------------- ----------

_pga_large_extent_size PGA large extent size 1048576

_pga_max_size Maximum size of the PGA 419430400

memory for one process

_smm_advice_enabled if TRUE, enable TRUE

v$pga_advice

_smm_advice_log_size overwrites default size 0

of the PGA advice

workarea history log

_smm_auto_cost_enabled if TRUE, use the AUTO TRUE

size policy cost

functions

_smm_auto_max_io_size Maximum IO size (in KB) 248

used by sort/hash-join in

auto mode

_smm_auto_min_io_size Minimum IO size (in KB) 56

used by sort/hash-join in

auto mode

_smm_bound overwrites memory manager 0

automatically computed

bound

_smm_control provides controls on the 0

memory manager

_smm_freeable_retain value in KB of the 5120

instance freeable PGA

memory to retain

_smm_max_size maximum work area size in 204800

auto mode (serial)

_smm_min_size minimum work area size in 1024

auto mode

_smm_px_max_size maximum work area size in 1258290

auto mode (global)

_smm_retain_size work area retain size in 0

SGA for shared server

sessions (0 for AUTO)

_smm_trace Turn on/off tracing for 0

SQL memory manager

15 rows selected.

Elapsed: 00:00:00.00

SQL> set autotrace traceonly

SQL> get test_serial

1 select * from test_pga

2* order by district_name,name

SQL> /

4547752 rows selected.

Elapsed: 00:04:09.13

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=133048 Card=454775

2 Bytes=513895976)

1 0 SORT (ORDER BY) (Cost=133048 Card=4547752 Bytes=513895976)

2 1 TABLE ACCESS (FULL) OF 'TEST_PGA' (TABLE) (Cost=15683 Ca

rd=4547752 Bytes=513895976)

Statistics

----------------------------------------------------------

609 recursive calls

42 db block gets

79730 consistent gets

135536 physical reads

0 redo size

253978577 bytes sent via SQL*Net to client

3335525 bytes received via SQL*Net from client

303185 SQL*Net roundtrips to/from client

0 sorts (memory)

1 sorts (disk)

4547752 rows processed

SQL> spool off

SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW

----- -------------- ------------- --------------- ------------ ------------ ------------

651 123808768 123808768 117547008 117547008 050905113553

651 181287936 181287936 168861696 168861696 050905113554

651 181287936 11681792 181288960 181288960 5242880 050905113555

651 181287936 11681792 181288960 181288960 11534336 050905113556

651 181287936 11681792 181288960 181288960 17825792 050905113557

651 181287936 11681792 181288960 181288960 23068672 050905113558

651 181287936 11681792 181288960 181288960 29360128 050905113559

651 181287936 11681792 181288960 181288960 35651584 050905113600

651 181287936 11681792 181288960 181288960 41943040 050905113601

651 181287936 11681792 181288960 181288960 48234496 050905113602

651 181287936 11681792 181288960 181288960 54525952 050905113603

651 181287936 11681792 181288960 181288960 59768832 050905113604

651 181287936 11681792 181288960 181288960 66060288 050905113605

651 181287936 11681792 181288960 181288960 72351744 050905113606

651 181287936 11681792 181288960 181288960 78643200 050905113607

651 181287936 11681792 181288960 181288960 84934656 050905113608

651 181287936 11681792 181288960 181288960 90177536 050905113609

651 181287936 11681792 181288960 181288960 96468992 050905113610

651 181287936 11681792 181288960 181288960 102760448 050905113611

651 181287936 11681792 181288960 181288960 108003328 050905113612

651 181287936 11681792 181288960 181288960 114294784 050905113613

651 181287936 11681792 181288960 181288960 119537664 050905113614

651 181287936 11681792 181288960 181288960 124780544 050905113615

651 181287936 11681792 181288960 181288960 131072000 050905113616

651 181287936 11681792 181288960 181288960 136314880 050905113617

651 181287936 11681792 181288960 181288960 142606336 050905113619

651 181287936 11681792 181288960 181288960 148897792 050905113620

651 181287936 11681792 181288960 181288960 154140672 050905113621

651 181287936 11681792 181288960 181288960 160432128 050905113622

651 181287936 11681792 181288960 181288960 166723584 050905113623

651 11681792 11681792 10920960 181288960 171966464 050905113624

651 11681792 11681792 7529472 181288960 177209344 050905113625

651 11681792 11681792 10871808 181288960 182452224 050905113626

651 11681792 11681792 11379712 181288960 187695104 050905113627

651 11681792 11681792 11379712 181288960 192937984 050905113628

651 11681792 7618560 7316480 181288960 198180864 050905113629

651 11681792 7618560 7316480 181288960 203423744 050905113630

651 11681792 7618560 6292480 181288960 208666624 050905113631

651 11681792 7618560 6554624 181288960 214958080 050905113632

651 11681792 7618560 6808576 181288960 220200960 050905113633

651 11681792 7618560 7062528 181288960 225443840 050905113634

651 11681792 7618560 7062528 181288960 229638144 050905113635

651 11681792 7618560 6554624 181288960 234881024 050905113636

651 10158080 10158080 9364480 181288960 240123904 050905113637

651 10158080 10158080 9364480 181288960 246415360 050905113638

651 10158080 10158080 9364480 181288960 250609664 050905113639

651 10158080 10158080 6153216 181288960 255852544 050905113640

651 10158080 10158080 9364480 181288960 261095424 050905113641

651 10158080 10158080 9364480 181288960 266338304 050905113642

651 10158080 10158080 9364480 181288960 272629760 050905113643

651 10158080 10158080 9364480 181288960 276824064 050905113644

651 10158080 10158080 9364480 181288960 281018368 050905113645

651 10158080 10158080 9364480 181288960 287309824 050905113646

651 13205504 13205504 12444672 181288960 291504128 050905113647

651 13205504 13205504 12444672 181288960 297795584 050905113648

651 13205504 13205504 12952576 181288960 301989888 050905113649

651 13205504 13205504 12952576 181288960 308281344 050905113650

651 13205504 13205504 4252672 181288960 312475648 050905113651

651 13205504 13205504 12444672 181288960 314572800 050905113652

651 13205504 13205504 12444672 181288960 320864256 050905113653

651 13205504 13205504 12444672 181288960 325058560 050905113655

651 13205504 13205504 12444672 181288960 330301440 050905113656

651 13205504 13205504 12952576 181288960 334495744 050905113657

651 13205504 13205504 12952576 181288960 340787200 050905113658

651 13205504 13205504 8905728 181288960 346030080 050905113659

651 13205504 13205504 12444672 181288960 350224384 050905113700

651 13205504 13205504 12444672 181288960 356515840 050905113701

651 15745024 15745024 11781120 181288960 356515840 050905113702

651 15745024 15745024 15188992 181288960 360710144 050905113703

651 15745024 15745024 15188992 181288960 364904448 050905113704

651 15745024 15745024 4113408 181288960 370147328 050905113705

651 15745024 15745024 15188992 181288960 371195904 050905113706

651 15745024 15745024 15188992 181288960 377487360 050905113707

651 15745024 15745024 15188992 181288960 383778816 050905113708

651 15745024 15745024 15442944 181288960 383778816 050905113709

651 15745024 15745024 15442944 181288960 390070272 050905113710

651 15745024 15745024 15442944 181288960 395313152 050905113711

651 15745024 15745024 9110528 181288960 397410304 050905113712

651 15745024 15745024 14681088 181288960 401604608 050905113713

651 15745024 15745024 14681088 181288960 406847488 050905113714

651 15745024 15745024 4645888 181288960 411041792 050905113715

651 15745024 15745024 14935040 181288960 413138944 050905113716

651 15745024 15745024 14935040 181288960 418381824 050905113717

651 15745024 15745024 254976 181288960 424673280 050905113718

651 18792448 18792448 10806272 181288960 424673280 050905113719

651 18792448 18792448 18015232 181288960 426770432 050905113720

651 18792448 18792448 18015232 181288960 432013312 050905113721

651 18792448 18792448 18015232 181288960 437256192 050905113722

651 18792448 18792448 6161408 181288960 441450496 050905113723

651 18792448 18792448 17761280 181288960 442499072 050905113724

651 18792448 18792448 17761280 181288960 446693376 050905113725

651 18792448 18792448 17761280 181288960 451936256 050905113727

651 18792448 18792448 17761280 181288960 455081984 050905113728

651 18792448 18792448 18015232 181288960 457179136 050905113729

651 18792448 18792448 18015232 181288960 463470592 050905113730

651 18792448 18792448 18015232 181288960 469762048 050905113731

651 18792448 18792448 9806848 181288960 473956352 050905113732

651 18792448 18792448 18523136 181288960 478150656 050905113733

651 18792448 18792448 18523136 181288960 484442112 050905113734

651 18792448 18792448 18523136 181288960 489684992 050905113735

651 18792448 18792448 18015232 181288960 491782144 050905113736

651 18792448 18792448 18015232 181288960 497025024 050905113737

651 18792448 18792448 18015232 181288960 503316480 050905113738

651 18792448 18792448 15574016 181288960 506462208 050905113739

651 18792448 18792448 18523136 181288960 511705088 050905113740

651 18792448 18792448 18523136 181288960 516947968 050905113741

651 21331968 21331968 3924992 181288960 522190848 050905113742

651 21331968 21331968 20571136 181288960 525336576 050905113743

651 21331968 21331968 20571136 181288960 531628032 050905113744

651 21331968 21331968 20571136 181288960 537919488 050905113745

651 21331968 21331968 12502016 181288960 541065216 050905113746

651 21331968 21331968 20825088 181288960 546308096 050905113747

651 21331968 21331968 20825088 181288960 551550976 050905113748

651 21331968 21331968 20825088 181288960 557842432 050905113749

651 21331968 21331968 21079040 181288960 560988160 050905113750

651 21331968 21331968 21079040 181288960 566231040 050905113751

651 21331968 21331968 21079040 181288960 572522496 050905113752

651 21331968 21331968 21079040 181288960 578813952 050905113753

651 21331968 21331968 20317184 181288960 580911104 050905113754

651 21331968 21331968 20317184 181288960 587202560 050905113755

651 21331968 21331968 20317184 181288960 593494016 050905113756

651 21331968 21331968 10470400 181288960 597688320 050905113757

651 21331968 21331968 20825088 181288960 600834048 050905113758

651 21331968 21331968 20825088 181288960 607125504 050905113759

651 21331968 21331968 20825088 181288960 613416960 050905113800

651 21331968 21331968 14263296 181288960 616562688 050905113801

651 24887296 24887296 24617984 181288960 619708416 050905113803

651 24887296 24887296 24617984 181288960 624951296 050905113804

651 24887296 24887296 24617984 181288960 631242752 050905113805

651 24887296 24887296 24617984 181288960 637534208 050905113806

651 20824064 20824064 254976 181288960 638582784 050905113807

651 20824064 20824064 21085184 181288960 638582784 050905113808

651 20824064 20824064 21085184 181288960 638582784 050905113809

651 20824064 20824064 21085184 181288960 638582784 050905113810

651 20824064 20824064 21085184 181288960 638582784 050905113811

651 20824064 20824064 21085184 181288960 638582784 050905113812

651 20824064 20824064 21085184 181288960 638582784 050905113813

651 20824064 20824064 21085184 181288960 638582784 050905113814

651 20824064 20824064 21085184 181288960 638582784 050905113815

651 20824064 20824064 21085184 181288960 638582784 050905113816

651 20824064 20824064 21085184 181288960 638582784 050905113817

651 20824064 20824064 21085184 181288960 638582784 050905113818

651 20824064 20824064 21085184 181288960 638582784 050905113819

651 20824064 20824064 21085184 181288960 638582784 050905113820

651 20824064 20824064 21085184 181288960 638582784 050905113821

651 20824064 20824064 21085184 181288960 638582784 050905113822

651 20824064 20824064 21085184 181288960 638582784 050905113823

651 20824064 20824064 21085184 181288960 638582784 050905113824

651 20824064 20824064 21085184 181288960 638582784 050905113825

651 20824064 20824064 21085184 181288960 638582784 050905113826

651 20824064 20824064 21085184 181288960 638582784 050905113827

651 20824064 20824064 21085184 181288960 638582784 050905113828

651 20824064 20824064 21085184 181288960 638582784 050905113829

651 20824064 20824064 21085184 181288960 638582784 050905113830

651 20824064 20824064 21085184 181288960 638582784 050905113831

651 20824064 20824064 21085184 181288960 638582784 050905113832

651 20824064 20824064 21085184 181288960 638582784 050905113833

651 20824064 20824064 21085184 181288960 638582784 050905113834

651 20824064 20824064 21085184 181288960 638582784 050905113835

651 20824064 20824064 21085184 181288960 638582784 050905113836

651 20824064 20824064 21085184 181288960 638582784 050905113837

651 20824064 20824064 21085184 181288960 638582784 050905113838

651 20824064 20824064 21085184 181288960 638582784 050905113840

651 20824064 20824064 21085184 181288960 638582784 050905113841

651 20824064 20824064 21085184 181288960 638582784 050905113842

651 20824064 20824064 21085184 181288960 638582784 050905113843

651 20824064 20824064 21085184 181288960 638582784 050905113844

651 20824064 20824064 21085184 181288960 638582784 050905113845

651 20824064 20824064 21085184 181288960 638582784 050905113846

651 20824064 20824064 21085184 181288960 638582784 050905113847

651 20824064 20824064 21085184 181288960 638582784 050905113848

651 20824064 20824064 21085184 181288960 638582784 050905113849

651 20824064 20824064 21085184 181288960 638582784 050905113850

651 20824064 20824064 21085184 181288960 638582784 050905113851

651 20824064 20824064 21085184 181288960 638582784 050905113852

651 20824064 20824064 21085184 181288960 638582784 050905113853

651 20824064 20824064 21085184 181288960 638582784 050905113854

651 20824064 20824064 21085184 181288960 638582784 050905113855

651 20824064 20824064 21085184 181288960 638582784 050905113856

651 20824064 20824064 21085184 181288960 638582784 050905113857

651 20824064 20824064 21085184 181288960 638582784 050905113858

651 20824064 20824064 21085184 181288960 638582784 050905113859

651 20824064 20824064 21085184 181288960 638582784 050905113900

651 20824064 20824064 21085184 181288960 638582784 050905113901

651 20824064 20824064 21085184 181288960 638582784 050905113902

651 20824064 20824064 21085184 181288960 638582784 050905113903

651 20824064 20824064 21085184 181288960 638582784 050905113904

651 20824064 20824064 21085184 181288960 638582784 050905113905

651 20824064 20824064 21085184 181288960 638582784 050905113906

651 20824064 20824064 21085184 181288960 638582784 050905113907

651 20824064 20824064 21085184 181288960 638582784 050905113908

651 20824064 20824064 21085184 181288960 638582784 050905113909

651 20824064 20824064 21085184 181288960 638582784 050905113910

651 20824064 20824064 21085184 181288960 638582784 050905113911

651 20824064 20824064 21085184 181288960 638582784 050905113912

651 20824064 20824064 21085184 181288960 638582784 050905113913

651 20824064 20824064 21085184 181288960 638582784 050905113914

651 20824064 20824064 21085184 181288960 638582784 050905113915

651 20824064 20824064 21085184 181288960 638582784 050905113916

651 20824064 20824064 21085184 181288960 638582784 050905113917

651 20824064 20824064 21085184 181288960 638582784 050905113919

651 20824064 20824064 21085184 181288960 638582784 050905113920

651 20824064 20824064 21085184 181288960 638582784 050905113921

651 20824064 20824064 21085184 181288960 638582784 050905113922

651 20824064 20824064 21085184 181288960 638582784 050905113923

651 20824064 20824064 21085184 181288960 638582784 050905113924

651 20824064 20824064 21085184 181288960 638582784 050905113925

651 20824064 20824064 21085184 181288960 638582784 050905113926

651 20824064 20824064 21085184 181288960 638582784 050905113927

651 20824064 20824064 21085184 181288960 638582784 050905113928

651 20824064 20824064 21085184 181288960 638582784 050905113929

651 20824064 20824064 21085184 181288960 638582784 050905113930

651 20824064 20824064 21085184 181288960 638582784 050905113931

651 20824064 20824064 21085184 181288960 638582784 050905113932

651 20824064 20824064 21085184 181288960 638582784 050905113933

651 20824064 20824064 21085184 181288960 638582784 050905113934

651 20824064 20824064 21085184 181288960 638582784 050905113935

651 20824064 20824064 21085184 181288960 638582784 050905113936

651 20824064 20824064 21085184 181288960 638582784 050905113937

651 20824064 20824064 21085184 181288960 638582784 050905113938

651 20824064 20824064 21085184 181288960 638582784 050905113939

651 20824064 20824064 21085184 181288960 638582784 050905113940

651 20824064 20824064 21085184 181288960 638582784 050905113941

651 20824064 20824064 21085184 181288960 638582784 050905113942

651 20824064 20824064 21085184 181288960 638582784 050905113943

651 20824064 20824064 21085184 181288960 638582784 050905113944

651 20824064 20824064 21085184 181288960 638582784 050905113945

651 20824064 20824064 21085184 181288960 638582784 050905113946

651 20824064 20824064 21085184 181288960 638582784 050905113947

651 20824064 20824064 21085184 181288960 638582784 050905113948

651 20824064 20824064 21085184 181288960 638582784 050905113949

651 20824064 20824064 21085184 181288960 638582784 050905113950

651 20824064 20824064 21085184 181288960 638582784 050905113951

651 20824064 20824064 21085184 181288960 638582784 050905113952

651 20824064 20824064 21085184 181288960 638582784 050905113953

651 20824064 20824064 21085184 181288960 638582784 050905113954

651 20824064 20824064 21085184 181288960 638582784 050905113955

651 20824064 20824064 21085184 181288960 638582784 050905113957

651 20824064 20824064 21085184 181288960 638582784 050905113958

651 20824064 20824064 21085184 181288960 638582784 050905113959

651 20824064 20824064 21085184 181288960 638582784 050905114000

241 rows selected.

SQL> spool off

Appendix C: Test Results for Various DOP Settings

PGA_AGGREGATE_TARGET 4G, 400M _pga_max_size, 333M _smm_px_max_size, DOP 2

SQL> show parameter

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

O7_DICTIONARY_ACCESSIBILITY boolean FALSE

__db_cache_size big integer 684M

__java_pool_size big integer 8M

__large_pool_size big integer 4M

__shared_pool_size big integer 224M

_pga_max_size big integer 400M

_smm_px_max_size integer 340992

active_instance_count integer

aq_tm_processes integer 0

archive_lag_target integer 0

asm_diskgroups string

asm_diskstring string

asm_power_limit integer 1

audit_file_dest string /home/oracle/DBHome1/rdbms/aud

it

audit_sys_operations boolean FALSE

audit_trail string TRUE

background_core_dump string partial

background_dump_dest string /home/oracle/admin/test/bdump

backup_tape_io_slaves boolean FALSE

bitmap_merge_area_size integer 1048576

blank_trimming boolean FALSE

buffer_pool_keep string

buffer_pool_recycle string

circuits integer

cluster_database boolean FALSE

cluster_database_instances integer 1

cluster_interconnects string

commit_point_strength integer 1

compatible string 10.1.0.2.0

control_file_record_keep_time integer 7

control_files string /home/oracle/oradata/test/con

trol01.ctl, /home/oracle/orada

ta/test/control02.ctl, /home/

oracle/oradata/test/control03

.ctl

core_dump_dest string /home/oracle/admin/test/cdump

cpu_count integer 2

create_bitmap_area_size integer 8388608

create_stored_outlines string

cursor_sharing string EXACT

cursor_space_for_time boolean FALSE

db_16k_cache_size big integer 0

db_2k_cache_size big integer 0

db_32k_cache_size big integer 0

db_4k_cache_size big integer 0

db_8k_cache_size big integer 0

db_block_buffers integer 0

db_block_checking boolean FALSE

db_block_checksum boolean TRUE

db_block_size integer 8192

db_cache_advice string ON

db_cache_size big integer 0

db_create_file_dest string

db_create_online_log_dest_1 string

db_create_online_log_dest_2 string

db_create_online_log_dest_3 string

db_create_online_log_dest_4 string

db_create_online_log_dest_5 string

db_domain string

db_file_multiblock_read_count integer 32

db_file_name_convert string

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

db_files integer 200

db_flashback_retention_target integer 1440

db_keep_cache_size big integer 0

db_name string test

db_recovery_file_dest string /home/oracle/flash_recovery_ar

ea

db_recovery_file_dest_size big integer 2G

db_recycle_cache_size big integer 0

db_unique_name string test

db_writer_processes integer 7

dbwr_io_slaves integer 0

ddl_wait_for_locks boolean FALSE

dg_broker_config_file1 string /home/oracle/DBHome1/dbs/dr1hf

dwh.dat

dg_broker_config_file2 string /home/oracle/DBHome1/dbs/dr2hf

dwh.dat

dg_broker_start boolean FALSE

disk_asynch_io boolean TRUE

dispatchers string (PROTOCOL=TCP) (SERVICE=testX

DB)

distributed_lock_timeout integer 60

dml_locks integer 2924

drs_start boolean FALSE

enqueue_resources integer 3000

event string

fal_client string

fal_server string

fast_start_io_target integer 0

fast_start_mttr_target integer 0

fast_start_parallel_rollback string LOW

file_mapping boolean FALSE

fileio_network_adapters string

filesystemio_options string none

fixed_date string

gc_files_to_locks string

gcs_server_processes integer 0

global_context_pool_size string

global_names boolean FALSE

hash_area_size integer 131072

hi_shared_memory_address integer 0

hs_autoregister boolean TRUE

ifile file

instance_groups string

instance_name string test

instance_number integer 0

instance_type string RDBMS

java_max_sessionspace_size integer 0

java_pool_size big integer 0

java_soft_sessionspace_limit integer 0

job_queue_processes integer 10

large_pool_size big integer 0

ldap_directory_access string NONE

license_max_sessions integer 0

license_max_users integer 0

license_sessions_warning integer 0

local_listener string

lock_name_space string

lock_sga boolean FALSE

log_archive_config string

log_archive_dest string

log_archive_dest_1 string

log_archive_dest_10 string

log_archive_dest_2 string

log_archive_dest_3 string

log_archive_dest_4 string

log_archive_dest_5 string

log_archive_dest_6 string

log_archive_dest_7 string

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

log_archive_dest_8 string

log_archive_dest_9 string

log_archive_dest_state_1 string enable

log_archive_dest_state_10 string enable

log_archive_dest_state_2 string enable

log_archive_dest_state_3 string enable

log_archive_dest_state_4 string enable

log_archive_dest_state_5 string enable

log_archive_dest_state_6 string enable

log_archive_dest_state_7 string enable

log_archive_dest_state_8 string enable

log_archive_dest_state_9 string enable

log_archive_duplex_dest string

log_archive_format string %t_%s_%r.dbf

log_archive_local_first boolean TRUE

log_archive_max_processes integer 2

log_archive_min_succeed_dest integer 1

log_archive_start boolean FALSE

log_archive_trace integer 0

log_buffer integer 524288

log_checkpoint_interval integer 0

log_checkpoint_timeout integer 1800

log_checkpoints_to_alert boolean FALSE

log_file_name_convert string

logmnr_max_persistent_sessions integer 1

max_commit_propagation_delay integer 700

max_dispatchers integer

max_dump_file_size string UNLIMITED

max_enabled_roles integer 150

max_shared_servers integer

nls_calendar string

nls_comp string

nls_currency string

nls_date_format string

nls_date_language string

nls_dual_currency string

nls_iso_currency string

nls_language string AMERICAN

nls_length_semantics string BYTE

nls_nchar_conv_excp string FALSE

nls_numeric_characters string

nls_sort string

nls_territory string AMERICA

nls_time_format string

nls_time_tz_format string

nls_timestamp_format string

nls_timestamp_tz_format string

object_cache_max_size_percent integer 10

object_cache_optimal_size integer 102400

olap_page_pool_size big integer 0

open_cursors integer 300

open_links integer 4

open_links_per_instance integer 4

optimizer_dynamic_sampling integer 2

optimizer_features_enable string 10.1.0.3

optimizer_index_caching integer 0

optimizer_index_cost_adj integer 100

optimizer_mode string ALL_ROWS

os_authent_prefix string ops$

os_roles boolean FALSE

parallel_adaptive_multi_user boolean TRUE

parallel_automatic_tuning boolean FALSE

parallel_execution_message_size integer 2148

parallel_instance_group string

parallel_max_servers integer 40

parallel_min_percent integer 0

parallel_min_servers integer 0

parallel_server boolean FALSE

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

parallel_server_instances integer 1

parallel_threads_per_cpu integer 2

pga_aggregate_target big integer 4G

plsql_code_type string INTERPRETED

plsql_compiler_flags string INTERPRETED, NON_DEBUG

plsql_debug boolean FALSE

plsql_native_library_dir string

plsql_native_library_subdir_count integer 0

plsql_optimize_level integer 2

plsql_v2_compatibility boolean FALSE

plsql_warnings string DISABLE:ALL

pre_page_sga boolean FALSE

processes integer 600

query_rewrite_enabled string TRUE

query_rewrite_integrity string enforced

rdbms_server_dn string

read_only_open_delayed boolean FALSE

recovery_parallelism integer 0

remote_archive_enable string true

remote_dependencies_mode string TIMESTAMP

remote_listener string

remote_login_passwordfile string EXCLUSIVE

remote_os_authent boolean FALSE

remote_os_roles boolean FALSE

replication_dependency_tracking boolean TRUE

resource_limit boolean FALSE

resource_manager_plan string

resumable_timeout integer 0

rollback_segments string

serial_reuse string disable

service_names string test

session_cached_cursors integer 0

session_max_open_files integer 10

sessions integer 665

sga_max_size big integer 1G

sga_target big integer 1G

shadow_core_dump string partial

shared_memory_address integer 0

shared_pool_reserved_size big integer 11744051

shared_pool_size big integer 0

shared_server_sessions integer

shared_servers integer 1

skip_unusable_indexes boolean TRUE

smtp_out_server string

sort_area_retained_size integer 0

sort_area_size integer 65536

sp_name string test

spfile string /home/oracle/DBHome1/dbs/spfil

etest.ora

sql92_security boolean FALSE

sql_trace boolean FALSE

sql_version string NATIVE

sqltune_category string DEFAULT

standby_archive_dest string ?/dbs/arch

standby_file_management string MANUAL

star_transformation_enabled string TRUE

statistics_level string TYPICAL

streams_pool_size big integer 100M

tape_asynch_io boolean TRUE

thread integer 0

timed_os_statistics integer 0

timed_statistics boolean TRUE

trace_enabled boolean TRUE

tracefile_identifier string

transactions integer 731

transactions_per_rollback_segment integer 5

undo_management string AUTO

undo_retention integer 900

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

undo_tablespace string UNDOTBSP2

use_indirect_data_buffers boolean FALSE

user_dump_dest string /home/oracle/admin/test/udump

utl_file_dir string

workarea_size_policy string AUTO

SQL> @get_undocs

Parameter Description Value

---------------------------------------- ------------------------- ----------

_pga_large_extent_size PGA large extent size 1048576

_pga_max_size Maximum size of the PGA 419430400

memory for one process

_smm_advice_enabled if TRUE, enable TRUE

v$pga_advice

_smm_advice_log_size overwrites default size 0

of the PGA advice

workarea history log

_smm_auto_cost_enabled if TRUE, use the AUTO TRUE

size policy cost

functions

_smm_auto_max_io_size Maximum IO size (in KB) 248

used by sort/hash-join in

auto mode

_smm_auto_min_io_size Minimum IO size (in KB) 56

used by sort/hash-join in

auto mode

_smm_bound overwrites memory manager 0

automatically computed

bound

_smm_control provides controls on the 0

memory manager

_smm_freeable_retain value in KB of the 5120

instance freeable PGA

memory to retain

_smm_max_size maximum work area size in 204800

auto mode (serial)

_smm_min_size minimum work area size in 1024

auto mode

_smm_px_max_size maximum work area size in 340992

auto mode (global)

_smm_retain_size work area retain size in 0

SGA for shared server

sessions (0 for AUTO)

Parameter Description Value

---------------------------------------- ------------------------- ----------

_smm_trace Turn on/off tracing for 0

SQL memory manager

15 rows selected.

Elapsed: 00:00:00.03

SQL> set timing on

SQL> set autotrace traceonly

SQL> get test_parallel

1 select /*+ parallel(test_pga 2) */

2 * from test_pga

3* order by district_name,name

SQL> /

4547752 rows selected.

Elapsed: 00:04:24.80

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=73817 Card=4547752

Bytes=513895976)

1 0 PX COORDINATOR

2 1 PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=73817 Card=454 :Q1001

7752 Bytes=513895976)

3 2 SORT* (ORDER BY) (Cost=73817 Card=4547752 Bytes=513895 :Q1001

976)

4 3 PX RECEIVE* (Cost=8639 Card=4547752 Bytes=513895976) :Q1001

5 4 PX SEND* (RANGE) OF ':TQ10000' (Cost=8639 Card=454 :Q1000

7752 Bytes=513895976)

6 5 PX BLOCK* (ITERATOR) (Cost=8639 Card=4547752 Byt :Q1000

es=513895976)

7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000

st=8639 Card=4547752 Bytes=513895976)

2 PARALLEL_TO_SERIAL

3 PARALLEL_COMBINED_WITH_PARENT

4 PARALLEL_COMBINED_WITH_PARENT

5 PARALLEL_TO_PARALLEL

6 PARALLEL_COMBINED_WITH_CHILD

7 PARALLEL_COMBINED_WITH_PARENT

Statistics

----------------------------------------------------------

1160 recursive calls

45 db block gets

79928 consistent gets

157591 physical reads

680 redo size

253686216 bytes sent via SQL*Net to client

3335525 bytes received via SQL*Net from client

303185 SQL*Net roundtrips to/from client

6 sorts (memory)

2 sorts (disk)

4547752 rows processed

SQL> spool off

SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW

----- -------------- ------------- --------------- ------------ ------------ ------------

633 26911744 26911744 26656768 26656768 050905115554

632 10350592 10350592 10272768 10272768 050905115554

633 47708160 47708160 44384256 44384256 050905115555

632 18368512 18368512 16785408 16785408 050905115555

633 69868544 69868544 58703872 58703872 050905115556

632 26911744 26911744 22904832 22904832 050905115556

633 84549632 84549632 75988992 75988992 050905115557

632 32572416 32572416 30048256 30048256 050905115557

633 102313984 102313984 93290496 93290496 050905115558

632 39420928 39420928 37052416 37052416 050905115558

633 123808768 123808768 110862336 110862336 050905115559

632 47708160 47708160 43515904 43515904 050905115559

633 149817344 149817344 126967808 126967808 050905115600

632 57735168 57735168 49160192 49160192 050905115600

633 149817344 149817344 143376384 143376384 050905115601

632 57735168 57735168 55549952 55549952 050905115601

633 149817344 10665984 149823488 149823488 4194304 050905115602

632 69868544 69868544 58417152 58417152 050905115602

633 149817344 10665984 149823488 149823488 10485760 050905115603

632 69868544 69868544 58417152 58417152 050905115603

633 149817344 10665984 149823488 149823488 16777216 050905115604

632 69868544 69868544 58417152 58417152 050905115604

633 149817344 10665984 149823488 149823488 22020096 050905115605

632 69868544 69868544 58417152 58417152 050905115605

633 149817344 10665984 149823488 149823488 28311552 050905115606

632 69868544 69868544 58417152 58417152 050905115606

633 149817344 10665984 149823488 149823488 34603008 050905115607

632 69868544 69868544 58417152 58417152 050905115607

633 149817344 10665984 149823488 149823488 40894464 050905115608

632 69868544 69868544 58417152 58417152 050905115608

633 149817344 10665984 149823488 149823488 47185920 050905115609

632 69868544 69868544 58417152 58417152 050905115609

633 149817344 10665984 149823488 149823488 53477376 050905115610

632 69868544 69868544 58417152 58417152 050905115610

633 149817344 10665984 149823488 149823488 59768832 050905115611

632 69868544 69868544 58417152 58417152 050905115611

633 149817344 10665984 149823488 149823488 66060288 050905115612

632 69868544 69868544 58417152 58417152 050905115612

633 149817344 10665984 149823488 149823488 71303168 050905115613

632 69868544 69868544 58417152 58417152 050905115613

633 149817344 10665984 149823488 149823488 77594624 050905115614

632 69868544 69868544 58417152 58417152 050905115614

633 149817344 10665984 149823488 149823488 83886080 050905115615

632 69868544 69868544 58417152 58417152 050905115615

633 149817344 10665984 149823488 149823488 90177536 050905115616

632 69868544 69868544 58417152 58417152 050905115616

633 149817344 10665984 149823488 149823488 96468992 050905115617

632 69868544 69868544 58417152 58417152 050905115617

633 149817344 10665984 149823488 149823488 102760448 050905115618

632 69868544 69868544 58417152 58417152 050905115618

633 149817344 10665984 149823488 149823488 109051904 050905115620

632 69868544 69868544 58417152 58417152 050905115620

633 149817344 10665984 149823488 149823488 114294784 050905115621

632 69868544 69868544 58417152 58417152 050905115621

633 149817344 10665984 149823488 149823488 120586240 050905115622

632 69868544 69868544 58417152 58417152 050905115622

633 149817344 10665984 149823488 149823488 126877696 050905115623

632 69868544 69868544 58417152 58417152 050905115623

633 149817344 10665984 149823488 149823488 133169152 050905115624

632 69868544 69868544 58417152 58417152 050905115624

633 10665984 10665984 2606080 149823488 138412032 050905115625

632 69868544 69868544 59211776 59211776 050905115625

633 10665984 10665984 9905152 149823488 141557760 050905115626

632 69868544 69868544 62259200 62259200 050905115626

633 10665984 10665984 2491392 149823488 147849216 050905115627

632 69868544 69868544 63348736 63348736 050905115627

633 10665984 10665984 9634816 149823488 150994944 050905115628

632 69868544 69868544 66125824 66125824 050905115628

633 10665984 10665984 4047872 149823488 156237824 050905115629

632 69868544 69868544 67289088 67289088 050905115629

633 10665984 10665984 10142720 149823488 160432128 050905115630

632 69868544 69868544 69337088 69337088 050905115630

633 10665984 7110656 6333440 149823488 164626432 050905115631

632 84549632 84549632 71671808 71671808 050905115631

633 10665984 7110656 1549312 149823488 170917888 050905115632

632 84549632 84549632 72114176 72114176 050905115632

633 10665984 7110656 6857728 149823488 175112192 050905115633

632 84549632 84549632 74506240 74506240 050905115633

633 10665984 7110656 6349824 149823488 179306496 050905115634

632 84549632 84549632 77430784 77430784 050905115634

633 10665984 7110656 6349824 149823488 183500800 050905115635

632 84549632 84549632 79945728 79945728 050905115635

633 10665984 7110656 6857728 149823488 187695104 050905115636

632 84549632 84549632 82182144 82182144 050905115636

633 10665984 7110656 2933760 149823488 192937984 050905115637

632 84549632 84549632 83075072 83075072 050905115637

633 10665984 7110656 6603776 149823488 198180864 050905115638

632 84549632 84549632 84484096 84484096 050905115638

633 9650176 9650176 8840192 149823488 201326592 050905115639

632 102313984 102313984 88170496 88170496 050905115639

633 9650176 9650176 4047872 149823488 206569472 050905115640

632 102313984 102313984 89604096 89604096 050905115640

633 9650176 9650176 9094144 149823488 210763776 050905115641

632 102313984 102313984 91250688 91250688 050905115641

633 9650176 9650176 7857152 149823488 214958080 050905115642

632 102313984 102313984 94027776 94027776 050905115642

633 9650176 9650176 8840192 149823488 220200960 050905115643

632 102313984 102313984 94306304 94306304 050905115643

633 9650176 9650176 9094144 149823488 224395264 050905115644

632 102313984 102313984 97894400 97894400 050905115644

633 9650176 9650176 9094144 149823488 229638144 050905115645

632 102313984 102313984 97894400 97894400 050905115645

633 9650176 9650176 8586240 149823488 233832448 050905115646

632 102313984 102313984 101163008 101163008 050905115646

633 9650176 9650176 2532352 149823488 239075328 050905115647

632 102313984 102313984 101834752 101834752 050905115647

633 11681792 11681792 11379712 149823488 240123904 050905115648

632 123808768 123808768 105201664 105201664 050905115648

633 11681792 11681792 11379712 149823488 246415360 050905115649

632 123808768 123808768 105201664 105201664 050905115649

633 11681792 11681792 8840192 149823488 248512512 050905115650

632 123808768 123808768 108462080 108462080 050905115650

633 11681792 11681792 10871808 149823488 252706816 050905115651

632 123808768 123808768 109092864 109092864 050905115651

633 11681792 11681792 1508352 149823488 257949696 050905115652

632 123808768 123808768 109617152 109617152 050905115652

633 11681792 11681792 10617856 149823488 260046848 050905115653

632 123808768 123808768 112812032 112812032 050905115653

633 11681792 11681792 10617856 149823488 266338304 050905115655

632 123808768 123808768 112812032 112812032 050905115655

633 11681792 11681792 8365056 149823488 268435456 050905115656

632 123808768 123808768 115867648 115867648 050905115656

633 11681792 11681792 11379712 149823488 272629760 050905115657

632 123808768 123808768 117170176 117170176 050905115657

633 11681792 11681792 508928 149823488 277872640 050905115658

632 123808768 123808768 117407744 117407744 050905115658

633 11681792 11681792 9749504 149823488 277872640 050905115659

632 123808768 123808768 121184256 121184256 050905115659

633 11681792 11681792 11125760 149823488 283115520 050905115700

632 123808768 123808768 121880576 121880576 050905115700

633 11681792 11681792 2491392 149823488 287309824 050905115701

632 123808768 123808768 123346944 123346944 050905115701

633 14221312 14221312 12977152 149823488 287309824 050905115702

632 149817344 149817344 127721472 127721472 050905115702

633 14221312 14221312 13173760 149823488 292552704 050905115703

632 149817344 149817344 127803392 127803392 050905115703

633 14221312 14221312 13173760 149823488 298844160 050905115704

632 149817344 149817344 127803392 127803392 050905115704

633 14221312 14221312 13083648 149823488 299892736 050905115705

632 149817344 149817344 132710400 132710400 050905115705

633 14221312 14221312 13935616 149823488 305135616 050905115706

632 149817344 149817344 132980736 132980736 050905115706

633 14221312 14221312 13935616 149823488 311427072 050905115707

632 149817344 149817344 132980736 132980736 050905115707

633 14221312 14221312 13427712 149823488 313524224 050905115708

632 149817344 149817344 138313728 138313728 050905115708

633 14221312 14221312 13427712 149823488 318767104 050905115709

632 149817344 149817344 138313728 138313728 050905115709

633 14221312 14221312 2728960 149823488 324009984 050905115710

632 149817344 149817344 138977280 138977280 050905115710

633 14221312 14221312 13935616 149823488 327155712 050905115711

632 149817344 149817344 142811136 142811136 050905115711

633 14221312 14221312 13935616 149823488 333447168 050905115712

632 149817344 149817344 142811136 142811136 050905115712

633 14221312 14221312 9888768 149823488 336592896 050905115713

632 149817344 149817344 145948672 145948672 050905115713

633 14221312 14221312 13427712 149823488 340787200 050905115714

632 149817344 149817344 147595264 147595264 050905115714

633 14221312 14221312 13427712 149823488 347078656 050905115715

632 149817344 149817344 147595264 147595264 050905115715

633 14221312 14221312 6407168 149823488 348127232 050905115716

632 149817344 10665984 149823488 149823488 3145728 050905115716

633 14221312 14221312 6407168 149823488 348127232 050905115717

632 149817344 10665984 149823488 149823488 9437184 050905115717

633 14221312 14221312 6407168 149823488 348127232 050905115718

632 149817344 10665984 149823488 149823488 15728640 050905115718

633 14221312 14221312 6407168 149823488 348127232 050905115719

632 149817344 10665984 149823488 149823488 20971520 050905115719

633 14221312 14221312 6407168 149823488 348127232 050905115720

632 149817344 10665984 149823488 149823488 27262976 050905115720

633 14221312 14221312 6407168 149823488 348127232 050905115721

632 149817344 10665984 149823488 149823488 33554432 050905115721

633 14221312 14221312 6407168 149823488 348127232 050905115722

632 149817344 10665984 149823488 149823488 39845888 050905115722

633 14221312 14221312 6407168 149823488 348127232 050905115723

632 149817344 10665984 149823488 149823488 45088768 050905115723

633 14221312 14221312 6407168 149823488 348127232 050905115724

632 149817344 10665984 149823488 149823488 51380224 050905115724

633 14221312 14221312 6407168 149823488 348127232 050905115725

632 149817344 10665984 149823488 149823488 56623104 050905115725

633 14221312 14221312 6407168 149823488 348127232 050905115726

632 149817344 10665984 149823488 149823488 62914560 050905115726

633 14221312 14221312 6407168 149823488 348127232 050905115727

632 149817344 10665984 149823488 149823488 69206016 050905115727

633 14221312 14221312 6407168 149823488 348127232 050905115728

632 149817344 10665984 149823488 149823488 74448896 050905115728

633 14221312 14221312 6407168 149823488 348127232 050905115729

632 149817344 10665984 149823488 149823488 80740352 050905115729

633 14221312 14221312 6407168 149823488 348127232 050905115731

632 149817344 10665984 149823488 149823488 87031808 050905115731

633 14221312 14221312 6407168 149823488 348127232 050905115732

632 149817344 10665984 149823488 149823488 92274688 050905115732

633 14221312 14221312 6407168 149823488 348127232 050905115733

632 149817344 10665984 149823488 149823488 98566144 050905115733

633 14221312 14221312 6407168 149823488 348127232 050905115734

632 149817344 10665984 149823488 149823488 104857600 050905115734

633 14221312 14221312 6407168 149823488 348127232 050905115735

632 149817344 10665984 149823488 149823488 111149056 050905115735

633 14221312 14221312 6407168 149823488 348127232 050905115736

632 149817344 10665984 149823488 149823488 117440512 050905115736

633 14221312 14221312 6407168 149823488 348127232 050905115737

632 149817344 10665984 149823488 149823488 122683392 050905115737

633 14221312 14221312 6407168 149823488 348127232 050905115738

632 149817344 10665984 149823488 149823488 128974848 050905115738

633 14221312 14221312 6407168 149823488 348127232 050905115739

632 149817344 10665984 149823488 149823488 135266304 050905115739

633 16760832 16760832 16237568 149823488 348127232 050905115740

632 10665984 10665984 3884032 149823488 137363456 050905115740

633 16760832 16760832 16237568 149823488 354418688 050905115741

632 10665984 10665984 3924992 149823488 137363456 050905115741

633 16760832 16760832 16237568 149823488 360710144 050905115742

632 10665984 10665984 3924992 149823488 137363456 050905115742

633 16760832 16760832 11273216 149823488 362807296 050905115743

632 10665984 10665984 8545280 149823488 137363456 050905115743

633 16760832 16760832 14746624 149823488 362807296 050905115744

632 10665984 10665984 9905152 149823488 142606336 050905115744

633 16760832 16760832 15729664 149823488 364904448 050905115745

632 10665984 10665984 762880 149823488 146800640 050905115745

633 16760832 16760832 15729664 149823488 371195904 050905115746

632 10665984 10665984 762880 149823488 146800640 050905115746

633 16760832 16760832 15729664 149823488 376438784 050905115747

632 10665984 10665984 762880 149823488 146800640 050905115747

633 16760832 16760832 8053760 149823488 377487360 050905115748

632 10665984 10665984 4563968 149823488 146800640 050905115748

633 16760832 16760832 15983616 149823488 379584512 050905115749

632 10665984 10665984 7185408 149823488 146800640 050905115749

633 16760832 16760832 15983616 149823488 384827392 050905115750

632 10665984 10665984 7185408 149823488 146800640 050905115750

633 16760832 16760832 15983616 149823488 391118848 050905115751

632 10665984 10665984 7185408 149823488 146800640 050905115751

633 16760832 16760832 7521280 149823488 392167424 050905115752

632 10665984 10665984 9806848 149823488 146800640 050905115752

633 16760832 16760832 9094144 149823488 392167424 050905115753

632 10665984 10665984 10396672 149823488 149946368 050905115753

633 16760832 16760832 10929152 149823488 392167424 050905115754

632 10665984 10665984 1106944 149823488 155189248 050905115754

633 16760832 16760832 16237568 149823488 393216000 050905115755

632 10665984 10665984 3400704 149823488 155189248 050905115755

633 16760832 16760832 16237568 149823488 399507456 050905115756

632 10665984 10665984 3400704 149823488 155189248 050905115756

633 16760832 16760832 16237568 149823488 405798912 050905115757

632 10665984 10665984 3400704 149823488 155189248 050905115757

633 16760832 16760832 7537664 149823488 406847488 050905115758

632 10665984 10665984 6939648 149823488 155189248 050905115758

633 16760832 16760832 14943232 149823488 406847488 050905115759

632 10665984 10665984 9888768 149823488 156237824 050905115759

633 16760832 16760832 14943232 149823488 406847488 050905115800

632 10665984 10665984 9888768 149823488 162529280 050905115800

633 16760832 16760832 15729664 149823488 409993216 050905115801

632 10665984 10665984 1024 149823488 164626432 050905115801

633 16760832 16760832 15729664 149823488 416284672 050905115802

632 10665984 10665984 1024 149823488 164626432 050905115802

633 16760832 16760832 254976 149823488 421527552 050905115803

632 10665984 10665984 1024 149823488 164626432 050905115803

633 16760832 16760832 12116992 149823488 421527552 050905115804

632 10665984 7110656 4719616 149823488 164626432 050905115804

633 19808256 19808256 15262720 149823488 421527552 050905115805

632 10665984 7110656 6095872 149823488 167772160 050905115805

633 19808256 19808256 18998272 149823488 423624704 050905115807

632 10665984 7110656 2147328 149823488 169869312 050905115807

633 19808256 19808256 18998272 149823488 428867584 050905115808

632 10665984 7110656 2147328 149823488 169869312 050905115808

633 19808256 19808256 18998272 149823488 435159040 050905115809

632 10665984 7110656 2147328 149823488 169869312 050905115809

633 19808256 19808256 5678080 149823488 438304768 050905115810

632 10665984 7110656 3982336 149823488 169869312 050905115810

633 19808256 19808256 11248640 149823488 438304768 050905115811

632 10665984 7110656 5817344 149823488 169869312 050905115811

633 19808256 19808256 13083648 149823488 438304768 050905115812

632 10665984 7110656 6603776 149823488 174063616 050905115812

633 19808256 19808256 19506176 149823488 439353344 050905115813

632 10665984 7110656 2548736 149823488 175112192 050905115813

633 19808256 19808256 19506176 149823488 444596224 050905115814

632 10665984 7110656 2548736 149823488 175112192 050905115814

633 19808256 19808256 19506176 149823488 450887680 050905115815

632 10665984 7110656 2548736 149823488 175112192 050905115815

633 19808256 19808256 4178944 149823488 456130560 050905115816

632 10665984 7110656 4056064 149823488 175112192 050905115816

633 19808256 19808256 5030912 149823488 458227712 050905115817

632 10665984 7110656 4318208 149823488 178257920 050905115817

633 16760832 16760832 17273856 149823488 460324864 050905115818

632 3555328 3555328 4319232 149823488 179306496 050905115818

633 16760832 16760832 17273856 149823488 460324864 050905115819

632 3555328 3555328 4319232 149823488 179306496 050905115819

633 16760832 16760832 17273856 149823488 460324864 050905115820

632 3555328 3555328 4319232 149823488 179306496 050905115820

633 16760832 16760832 17273856 149823488 460324864 050905115821

632 3555328 3555328 4319232 149823488 179306496 050905115821

633 16760832 16760832 17273856 149823488 460324864 050905115822

632 3555328 3555328 4319232 149823488 179306496 050905115822

633 16760832 16760832 17273856 149823488 460324864 050905115823

632 3555328 3555328 4319232 149823488 179306496 050905115823

633 16760832 16760832 17273856 149823488 460324864 050905115824

632 3555328 3555328 4319232 149823488 179306496 050905115824

633 16760832 16760832 17273856 149823488 460324864 050905115825

632 3555328 3555328 4319232 149823488 179306496 050905115825

633 16760832 16760832 17273856 149823488 460324864 050905115826

632 3555328 3555328 4319232 149823488 179306496 050905115826

633 16760832 16760832 17273856 149823488 460324864 050905115827

632 3555328 3555328 4319232 149823488 179306496 050905115827

633 16760832 16760832 17273856 149823488 460324864 050905115828

632 3555328 3555328 4319232 149823488 179306496 050905115828

633 16760832 16760832 17273856 149823488 460324864 050905115829

632 3555328 3555328 4319232 149823488 179306496 050905115829

633 16760832 16760832 17273856 149823488 460324864 050905115830

632 3555328 3555328 4319232 149823488 179306496 050905115830

633 16760832 16760832 17273856 149823488 460324864 050905115831

632 3555328 3555328 4319232 149823488 179306496 050905115831

633 16760832 16760832 17273856 149823488 460324864 050905115832

632 3555328 3555328 4319232 149823488 179306496 050905115832

633 16760832 16760832 17273856 149823488 460324864 050905115833

632 3555328 3555328 4319232 149823488 179306496 050905115833

633 16760832 16760832 17273856 149823488 460324864 050905115834

632 3555328 3555328 4319232 149823488 179306496 050905115834

633 16760832 16760832 17273856 149823488 460324864 050905115835

632 3555328 3555328 4319232 149823488 179306496 050905115835

633 16760832 16760832 17273856 149823488 460324864 050905115836

632 3555328 3555328 4319232 149823488 179306496 050905115836

633 16760832 16760832 17273856 149823488 460324864 050905115837

632 3555328 3555328 4319232 149823488 179306496 050905115837

633 16760832 16760832 17273856 149823488 460324864 050905115838

632 3555328 3555328 4319232 149823488 179306496 050905115838

633 16760832 16760832 17273856 149823488 460324864 050905115840

632 3555328 3555328 4319232 149823488 179306496 050905115840

633 16760832 16760832 17273856 149823488 460324864 050905115841

632 3555328 3555328 4319232 149823488 179306496 050905115841

633 16760832 16760832 17273856 149823488 460324864 050905115842

632 3555328 3555328 4319232 149823488 179306496 050905115842

633 16760832 16760832 17273856 149823488 460324864 050905115843

632 3555328 3555328 4319232 149823488 179306496 050905115843

633 16760832 16760832 17273856 149823488 460324864 050905115844

632 3555328 3555328 4319232 149823488 179306496 050905115844

633 16760832 16760832 17273856 149823488 460324864 050905115845

632 3555328 3555328 4319232 149823488 179306496 050905115845

633 16760832 16760832 17273856 149823488 460324864 050905115846

632 3555328 3555328 4319232 149823488 179306496 050905115846

633 16760832 16760832 17273856 149823488 460324864 050905115847

632 3555328 3555328 4319232 149823488 179306496 050905115847

633 16760832 16760832 17273856 149823488 460324864 050905115848

632 3555328 3555328 4319232 149823488 179306496 050905115848

633 16760832 16760832 17273856 149823488 460324864 050905115849

632 3555328 3555328 4319232 149823488 179306496 050905115849

633 16760832 16760832 17273856 149823488 460324864 050905115850

632 3555328 3555328 4319232 149823488 179306496 050905115850

633 16760832 16760832 17273856 149823488 460324864 050905115851

632 3555328 3555328 4319232 149823488 179306496 050905115851

633 16760832 16760832 17273856 149823488 460324864 050905115852

632 3555328 3555328 4319232 149823488 179306496 050905115852

633 16760832 16760832 17273856 149823488 460324864 050905115853

632 3555328 3555328 4319232 149823488 179306496 050905115853

633 16760832 16760832 17273856 149823488 460324864 050905115854

633 16760832 16760832 17273856 149823488 460324864 050905115855

633 16760832 16760832 17273856 149823488 460324864 050905115856

633 16760832 16760832 17273856 149823488 460324864 050905115857

633 16760832 16760832 17273856 149823488 460324864 050905115858

633 16760832 16760832 17273856 149823488 460324864 050905115859

633 16760832 16760832 17273856 149823488 460324864 050905115900

633 16760832 16760832 17273856 149823488 460324864 050905115901

633 16760832 16760832 17273856 149823488 460324864 050905115902

633 16760832 16760832 17273856 149823488 460324864 050905115903

633 16760832 16760832 17273856 149823488 460324864 050905115904

633 16760832 16760832 17273856 149823488 460324864 050905115905

633 16760832 16760832 17273856 149823488 460324864 050905115906

633 16760832 16760832 17273856 149823488 460324864 050905115907

633 16760832 16760832 17273856 149823488 460324864 050905115908

633 16760832 16760832 17273856 149823488 460324864 050905115909

633 16760832 16760832 17273856 149823488 460324864 050905115910

633 16760832 16760832 17273856 149823488 460324864 050905115911

633 16760832 16760832 17273856 149823488 460324864 050905115912

633 16760832 16760832 17273856 149823488 460324864 050905115913

633 16760832 16760832 17273856 149823488 460324864 050905115914

633 16760832 16760832 17273856 149823488 460324864 050905115915

633 16760832 16760832 17273856 149823488 460324864 050905115916

633 16760832 16760832 17273856 149823488 460324864 050905115918

633 16760832 16760832 17273856 149823488 460324864 050905115919

633 16760832 16760832 17273856 149823488 460324864 050905115920

633 16760832 16760832 17273856 149823488 460324864 050905115921

633 16760832 16760832 17273856 149823488 460324864 050905115922

633 16760832 16760832 17273856 149823488 460324864 050905115923

633 16760832 16760832 17273856 149823488 460324864 050905115924

633 16760832 16760832 17273856 149823488 460324864 050905115925

633 16760832 16760832 17273856 149823488 460324864 050905115926

633 16760832 16760832 17273856 149823488 460324864 050905115927

633 16760832 16760832 17273856 149823488 460324864 050905115928

633 16760832 16760832 17273856 149823488 460324864 050905115929

633 16760832 16760832 17273856 149823488 460324864 050905115930

633 16760832 16760832 17273856 149823488 460324864 050905115931

633 16760832 16760832 17273856 149823488 460324864 050905115932

633 16760832 16760832 17273856 149823488 460324864 050905115933

633 16760832 16760832 17273856 149823488 460324864 050905115934

633 16760832 16760832 17273856 149823488 460324864 050905115935

633 16760832 16760832 17273856 149823488 460324864 050905115936

633 16760832 16760832 17273856 149823488 460324864 050905115937

633 16760832 16760832 17273856 149823488 460324864 050905115938

633 16760832 16760832 17273856 149823488 460324864 050905115939

633 16760832 16760832 17273856 149823488 460324864 050905115940

633 16760832 16760832 17273856 149823488 460324864 050905115941

633 16760832 16760832 17273856 149823488 460324864 050905115942

633 16760832 16760832 17273856 149823488 460324864 050905115943

633 16760832 16760832 17273856 149823488 460324864 050905115944

633 16760832 16760832 17273856 149823488 460324864 050905115945

633 16760832 16760832 17273856 149823488 460324864 050905115946

633 16760832 16760832 17273856 149823488 460324864 050905115947

633 16760832 16760832 17273856 149823488 460324864 050905115948

633 16760832 16760832 17273856 149823488 460324864 050905115949

633 16760832 16760832 17273856 149823488 460324864 050905115950

633 16760832 16760832 17273856 149823488 460324864 050905115951

633 16760832 16760832 17273856 149823488 460324864 050905115952

633 16760832 16760832 17273856 149823488 460324864 050905115953

633 16760832 16760832 17273856 149823488 460324864 050905115954

633 16760832 16760832 17273856 149823488 460324864 050905115955

633 16760832 16760832 17273856 149823488 460324864 050905115956

633 16760832 16760832 17273856 149823488 460324864 050905115958

633 16760832 16760832 17273856 149823488 460324864 050905115959

633 16760832 16760832 17273856 149823488 460324864 050905120000

633 16760832 16760832 17273856 149823488 460324864 050905120001

633 16760832 16760832 17273856 149823488 460324864 050905120002

633 16760832 16760832 17273856 149823488 460324864 050905120003

633 16760832 16760832 17273856 149823488 460324864 050905120004

633 16760832 16760832 17273856 149823488 460324864 050905120005

633 16760832 16760832 17273856 149823488 460324864 050905120006

633 16760832 16760832 17273856 149823488 460324864 050905120007

633 16760832 16760832 17273856 149823488 460324864 050905120008

633 16760832 16760832 17273856 149823488 460324864 050905120009

633 16760832 16760832 17273856 149823488 460324864 050905120010

633 16760832 16760832 17273856 149823488 460324864 050905120011

633 16760832 16760832 17273856 149823488 460324864 050905120012

633 16760832 16760832 17273856 149823488 460324864 050905120013

633 16760832 16760832 17273856 149823488 460324864 050905120014

633 16760832 16760832 17273856 149823488 460324864 050905120015

633 16760832 16760832 17273856 149823488 460324864 050905120016

431 rows selected.

SQL> spool off

[pic]

|Predicted |Actual |

|166.5 |142.8828125 |

PGA_AGGREGATE_TARGET 4g, 400M _pga_max_size, 333M _smm_px_max_size, DOP 3

SQL> show parameter

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

O7_DICTIONARY_ACCESSIBILITY boolean FALSE

__db_cache_size big integer 684M

__java_pool_size big integer 8M

__large_pool_size big integer 4M

__shared_pool_size big integer 224M

_pga_max_size big integer 400M

_smm_px_max_size integer 340992

active_instance_count integer

aq_tm_processes integer 0

archive_lag_target integer 0

asm_diskgroups string

asm_diskstring string

asm_power_limit integer 1

audit_file_dest string /home/oracle/DBHome1/rdbms/aud

it

audit_sys_operations boolean FALSE

audit_trail string TRUE

background_core_dump string partial

background_dump_dest string /home/oracle/admin/test/bdump

backup_tape_io_slaves boolean FALSE

bitmap_merge_area_size integer 1048576

blank_trimming boolean FALSE

buffer_pool_keep string

buffer_pool_recycle string

circuits integer

cluster_database boolean FALSE

cluster_database_instances integer 1

cluster_interconnects string

commit_point_strength integer 1

compatible string 10.1.0.2.0

control_file_record_keep_time integer 7

control_files string /home/oracle/oradata/test/con

trol01.ctl, /home/oracle/orada

ta/test/control02.ctl, /home/

oracle/oradata/test/control03

.ctl

core_dump_dest string /home/oracle/admin/test/cdump

cpu_count integer 2

create_bitmap_area_size integer 8388608

create_stored_outlines string

cursor_sharing string EXACT

cursor_space_for_time boolean FALSE

db_16k_cache_size big integer 0

db_2k_cache_size big integer 0

db_32k_cache_size big integer 0

db_4k_cache_size big integer 0

db_8k_cache_size big integer 0

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

db_block_buffers integer 0

db_block_checking boolean FALSE

db_block_checksum boolean TRUE

db_block_size integer 8192

db_cache_advice string ON

db_cache_size big integer 0

db_create_file_dest string

db_create_online_log_dest_1 string

db_create_online_log_dest_2 string

db_create_online_log_dest_3 string

db_create_online_log_dest_4 string

db_create_online_log_dest_5 string

db_domain string

db_file_multiblock_read_count integer 32

db_file_name_convert string

db_files integer 200

db_flashback_retention_target integer 1440

db_keep_cache_size big integer 0

db_name string test

db_recovery_file_dest string /home/oracle/flash_recovery_ar

ea

db_recovery_file_dest_size big integer 2G

db_recycle_cache_size big integer 0

db_unique_name string test

db_writer_processes integer 7

dbwr_io_slaves integer 0

ddl_wait_for_locks boolean FALSE

dg_broker_config_file1 string /home/oracle/DBHome1/dbs/dr1hf

dwh.dat

dg_broker_config_file2 string /home/oracle/DBHome1/dbs/dr2hf

dwh.dat

dg_broker_start boolean FALSE

disk_asynch_io boolean TRUE

dispatchers string (PROTOCOL=TCP) (SERVICE=testX

DB)

distributed_lock_timeout integer 60

dml_locks integer 2924

drs_start boolean FALSE

enqueue_resources integer 3000

event string

fal_client string

fal_server string

fast_start_io_target integer 0

fast_start_mttr_target integer 0

fast_start_parallel_rollback string LOW

file_mapping boolean FALSE

fileio_network_adapters string

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

filesystemio_options string none

fixed_date string

gc_files_to_locks string

gcs_server_processes integer 0

global_context_pool_size string

global_names boolean FALSE

hash_area_size integer 131072

hi_shared_memory_address integer 0

hs_autoregister boolean TRUE

ifile file

instance_groups string

instance_name string test

instance_number integer 0

instance_type string RDBMS

java_max_sessionspace_size integer 0

java_pool_size big integer 0

java_soft_sessionspace_limit integer 0

job_queue_processes integer 10

large_pool_size big integer 0

ldap_directory_access string NONE

license_max_sessions integer 0

license_max_users integer 0

license_sessions_warning integer 0

local_listener string

lock_name_space string

lock_sga boolean FALSE

log_archive_config string

log_archive_dest string

log_archive_dest_1 string

log_archive_dest_10 string

log_archive_dest_2 string

log_archive_dest_3 string

log_archive_dest_4 string

log_archive_dest_5 string

log_archive_dest_6 string

log_archive_dest_7 string

log_archive_dest_8 string

log_archive_dest_9 string

log_archive_dest_state_1 string enable

log_archive_dest_state_10 string enable

log_archive_dest_state_2 string enable

log_archive_dest_state_3 string enable

log_archive_dest_state_4 string enable

log_archive_dest_state_5 string enable

log_archive_dest_state_6 string enable

log_archive_dest_state_7 string enable

log_archive_dest_state_8 string enable

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

log_archive_dest_state_9 string enable

log_archive_duplex_dest string

log_archive_format string %t_%s_%r.dbf

log_archive_local_first boolean TRUE

log_archive_max_processes integer 2

log_archive_min_succeed_dest integer 1

log_archive_start boolean FALSE

log_archive_trace integer 0

log_buffer integer 524288

log_checkpoint_interval integer 0

log_checkpoint_timeout integer 1800

log_checkpoints_to_alert boolean FALSE

log_file_name_convert string

logmnr_max_persistent_sessions integer 1

max_commit_propagation_delay integer 700

max_dispatchers integer

max_dump_file_size string UNLIMITED

max_enabled_roles integer 150

max_shared_servers integer

nls_calendar string

nls_comp string

nls_currency string

nls_date_format string

nls_date_language string

nls_dual_currency string

nls_iso_currency string

nls_language string AMERICAN

nls_length_semantics string BYTE

nls_nchar_conv_excp string FALSE

nls_numeric_characters string

nls_sort string

nls_territory string AMERICA

nls_time_format string

nls_time_tz_format string

nls_timestamp_format string

nls_timestamp_tz_format string

object_cache_max_size_percent integer 10

object_cache_optimal_size integer 102400

olap_page_pool_size big integer 0

open_cursors integer 300

open_links integer 4

open_links_per_instance integer 4

optimizer_dynamic_sampling integer 2

optimizer_features_enable string 10.1.0.3

optimizer_index_caching integer 0

optimizer_index_cost_adj integer 100

optimizer_mode string ALL_ROWS

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

os_authent_prefix string ops$

os_roles boolean FALSE

parallel_adaptive_multi_user boolean TRUE

parallel_automatic_tuning boolean FALSE

parallel_execution_message_size integer 2148

parallel_instance_group string

parallel_max_servers integer 40

parallel_min_percent integer 0

parallel_min_servers integer 0

parallel_server boolean FALSE

parallel_server_instances integer 1

parallel_threads_per_cpu integer 2

pga_aggregate_target big integer 4G

plsql_code_type string INTERPRETED

plsql_compiler_flags string INTERPRETED, NON_DEBUG

plsql_debug boolean FALSE

plsql_native_library_dir string

plsql_native_library_subdir_count integer 0

plsql_optimize_level integer 2

plsql_v2_compatibility boolean FALSE

plsql_warnings string DISABLE:ALL

pre_page_sga boolean FALSE

processes integer 600

query_rewrite_enabled string TRUE

query_rewrite_integrity string enforced

rdbms_server_dn string

read_only_open_delayed boolean FALSE

recovery_parallelism integer 0

remote_archive_enable string true

remote_dependencies_mode string TIMESTAMP

remote_listener string

remote_login_passwordfile string EXCLUSIVE

remote_os_authent boolean FALSE

remote_os_roles boolean FALSE

replication_dependency_tracking boolean TRUE

resource_limit boolean FALSE

resource_manager_plan string

resumable_timeout integer 0

rollback_segments string

serial_reuse string disable

service_names string test

session_cached_cursors integer 0

session_max_open_files integer 10

sessions integer 665

sga_max_size big integer 1G

sga_target big integer 1G

shadow_core_dump string partial

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

shared_memory_address integer 0

shared_pool_reserved_size big integer 11744051

shared_pool_size big integer 0

shared_server_sessions integer

shared_servers integer 1

skip_unusable_indexes boolean TRUE

smtp_out_server string

sort_area_retained_size integer 0

sort_area_size integer 65536

sp_name string test

spfile string /home/oracle/DBHome1/dbs/spfil

etest.ora

sql92_security boolean FALSE

sql_trace boolean FALSE

sql_version string NATIVE

sqltune_category string DEFAULT

standby_archive_dest string ?/dbs/arch

standby_file_management string MANUAL

star_transformation_enabled string TRUE

statistics_level string TYPICAL

streams_pool_size big integer 100M

tape_asynch_io boolean TRUE

thread integer 0

timed_os_statistics integer 0

timed_statistics boolean TRUE

trace_enabled boolean TRUE

tracefile_identifier string

transactions integer 731

transactions_per_rollback_segment integer 5

undo_management string AUTO

undo_retention integer 900

undo_tablespace string UNDOTBSP2

use_indirect_data_buffers boolean FALSE

user_dump_dest string /home/oracle/admin/test/udump

utl_file_dir string

workarea_size_policy string AUTO

SQL> @get_undocs

Parameter Description Value

---------------------------------------- ------------------------- ----------

_pga_large_extent_size PGA large extent size 1048576

_pga_max_size Maximum size of the PGA 419430400

memory for one process

_smm_advice_enabled if TRUE, enable TRUE

v$pga_advice

_smm_advice_log_size overwrites default size 0

of the PGA advice

workarea history log

_smm_auto_cost_enabled if TRUE, use the AUTO TRUE

size policy cost

functions

_smm_auto_max_io_size Maximum IO size (in KB) 248

used by sort/hash-join in

auto mode

_smm_auto_min_io_size Minimum IO size (in KB) 56

used by sort/hash-join in

auto mode

_smm_bound overwrites memory manager 0

automatically computed

bound

_smm_control provides controls on the 0

memory manager

_smm_freeable_retain value in KB of the 5120

instance freeable PGA

memory to retain

_smm_max_size maximum work area size in 204800

auto mode (serial)

_smm_min_size minimum work area size in 1024

auto mode

_smm_px_max_size maximum work area size in 340992

auto mode (global)

_smm_retain_size work area retain size in 0

SGA for shared server

sessions (0 for AUTO)

Parameter Description Value

---------------------------------------- ------------------------- ----------

_smm_trace Turn on/off tracing for 0

SQL memory manager

15 rows selected.

Elapsed: 00:00:00.01

SQL> set autotrace traceonly

SQL> get test_parallel

1 select /*+ parallel(test_pga 3) */

2 * from test_pga

3* order by district_name,name

SQL> /

4547752 rows selected.

Elapsed: 00:04:07.17

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=49201 Card=4547752

Bytes=513895976)

1 0 PX COORDINATOR

2 1 PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=49201 Card=454 :Q1001

7752 Bytes=513895976)

3 2 SORT* (ORDER BY) (Cost=49201 Card=4547752 Bytes=513895 :Q1001

976)

4 3 PX RECEIVE* (Cost=5759 Card=4547752 Bytes=513895976) :Q1001

5 4 PX SEND* (RANGE) OF ':TQ10000' (Cost=5759 Card=454 :Q1000

7752 Bytes=513895976)

6 5 PX BLOCK* (ITERATOR) (Cost=5759 Card=4547752 Byt :Q1000

es=513895976)

7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000

st=5759 Card=4547752 Bytes=513895976)

2 PARALLEL_TO_SERIAL

3 PARALLEL_COMBINED_WITH_PARENT

4 PARALLEL_COMBINED_WITH_PARENT

5 PARALLEL_TO_PARALLEL

6 PARALLEL_COMBINED_WITH_CHILD

7 PARALLEL_COMBINED_WITH_PARENT

Statistics

----------------------------------------------------------

572 recursive calls

44 db block gets

79860 consistent gets

150420 physical reads

0 redo size

253646986 bytes sent via SQL*Net to client

3335525 bytes received via SQL*Net from client

303185 SQL*Net roundtrips to/from client

3 sorts (memory)

2 sorts (disk)

4547752 rows processed

SQL> spool off

SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW

----- -------------- ------------- --------------- ------------ ------------ ------------

632 5824512 5824512 5537792 5537792 050905120841

629 12532736 12532736 10723328 10723328 050905120841

633 47708160 47708160 43155456 43155456 050905120841

632 8547328 8547328 7921664 7921664 050905120842

629 15173632 15173632 15065088 15065088 050905120842

633 69868544 69868544 59252736 59252736 050905120842

632 10350592 10350592 9879552 9879552 050905120843

629 22234112 22234112 18587648 18587648 050905120843

633 84549632 84549632 72146944 72146944 050905120843

632 12532736 12532736 11812864 11812864 050905120844

629 26911744 26911744 22757376 22757376 050905120844

633 102313984 102313984 86941696 86941696 050905120844

632 15173632 15173632 13680640 13680640 050905120845

629 26911744 26911744 26345472 26345472 050905120845

633 102313984 102313984 101163008 101163008 050905120845

632 15173632 15173632 13803520 13803520 050905120846

629 26911744 26911744 26640384 26640384 050905120846

633 102313984 9142272 102318080 102318080 6291456 050905120846

632 15173632 15173632 13803520 13803520 050905120847

629 26911744 26911744 26640384 26640384 050905120847

633 102313984 9142272 102318080 102318080 12582912 050905120847

632 15173632 15173632 13803520 13803520 050905120848

629 26911744 26911744 26640384 26640384 050905120848

633 102313984 9142272 102318080 102318080 17825792 050905120848

632 15173632 15173632 13803520 13803520 050905120849

629 26911744 26911744 26640384 26640384 050905120849

633 102313984 9142272 102318080 102318080 24117248 050905120849

632 15173632 15173632 13803520 13803520 050905120850

629 26911744 26911744 26640384 26640384 050905120850

633 102313984 9142272 102318080 102318080 30408704 050905120850

632 15173632 15173632 13803520 13803520 050905120851

629 26911744 26911744 26640384 26640384 050905120851

633 102313984 9142272 102318080 102318080 36700160 050905120851

632 15173632 15173632 13803520 13803520 050905120852

629 26911744 26911744 26640384 26640384 050905120852

633 102313984 9142272 102318080 102318080 41943040 050905120852

632 15173632 15173632 13803520 13803520 050905120853

629 26911744 26911744 26640384 26640384 050905120853

633 102313984 9142272 102318080 102318080 48234496 050905120853

632 15173632 15173632 13803520 13803520 050905120854

629 26911744 26911744 26640384 26640384 050905120854

633 102313984 9142272 102318080 102318080 53477376 050905120854

632 15173632 15173632 13803520 13803520 050905120855

629 26911744 26911744 26640384 26640384 050905120855

633 102313984 9142272 102318080 102318080 59768832 050905120855

632 15173632 15173632 13803520 13803520 050905120856

629 26911744 26911744 26640384 26640384 050905120856

633 102313984 9142272 102318080 102318080 66060288 050905120856

632 15173632 15173632 13803520 13803520 050905120857

629 26911744 26911744 26640384 26640384 050905120857

633 102313984 9142272 102318080 102318080 71303168 050905120857

632 15173632 15173632 13803520 13803520 050905120858

629 26911744 26911744 26640384 26640384 050905120858

633 102313984 9142272 102318080 102318080 77594624 050905120858

632 15173632 15173632 13803520 13803520 050905120859

629 26911744 26911744 26640384 26640384 050905120859

633 102313984 9142272 102318080 102318080 83886080 050905120859

632 15173632 15173632 13803520 13803520 050905120900

629 26911744 26911744 26640384 26640384 050905120900

633 102313984 9142272 102318080 102318080 90177536 050905120900

632 15173632 15173632 14368768 14368768 050905120901

629 32572416 32572416 27557888 27557888 050905120901

633 9142272 9142272 4121600 102318080 94371840 050905120901

632 15173632 15173632 14811136 14811136 050905120902

629 32572416 32572416 28704768 28704768 050905120902

633 9142272 9142272 8127488 102318080 99614720 050905120902

632 18368512 18368512 15581184 15581184 050905120903

629 32572416 32572416 30572544 30572544 050905120903

633 9142272 9142272 8635392 102318080 102760448 050905120903

632 18368512 18368512 15581184 15581184 050905120905

629 32572416 32572416 30572544 30572544 050905120905

633 9142272 9142272 8635392 102318080 109051904 050905120905

632 18368512 18368512 16146432 16146432 050905120906

629 32572416 32572416 31916032 31916032 050905120906

633 9142272 6094848 5243904 102318080 113246208 050905120906

632 18368512 18368512 16801792 16801792 050905120907

629 39420928 39420928 33398784 33398784 050905120907

633 9142272 6094848 5809152 102318080 117440512 050905120907

632 18368512 18368512 17440768 17440768 050905120908

629 39420928 39420928 34824192 34824192 050905120908

633 9142272 6094848 5301248 102318080 122683392 050905120908

632 18368512 18368512 18161664 18161664 050905120909

629 39420928 39420928 35954688 35954688 050905120909

633 9142272 6094848 5047296 102318080 126877696 050905120909

632 22234112 22234112 18907136 18907136 050905120910

629 39420928 39420928 37011456 37011456 050905120910

633 9142272 6094848 5555200 102318080 131072000 050905120910

632 22234112 22234112 19562496 19562496 050905120911

629 39420928 39420928 38658048 38658048 050905120911

633 9142272 6094848 5047296 102318080 135266304 050905120911

632 22234112 22234112 20488192 20488192 050905120912

629 47708160 47708160 40321024 40321024 050905120912

633 8126464 8126464 7840768 102318080 139460608 050905120912

632 22234112 22234112 20971520 20971520 050905120913

629 47708160 47708160 40845312 40845312 050905120913

633 8126464 8126464 2286592 102318080 144703488 050905120913

632 22234112 22234112 21725184 21725184 050905120914

629 47708160 47708160 42156032 42156032 050905120914

633 8126464 8126464 7332864 102318080 148897792 050905120914

632 26911744 26911744 22806528 22806528 050905120915

629 47708160 47708160 43892736 43892736 050905120915

633 8126464 8126464 7586816 102318080 153092096 050905120915

632 26911744 26911744 23027712 23027712 050905120916

629 47708160 47708160 44449792 44449792 050905120916

633 8126464 8126464 2360320 102318080 157286400 050905120916

632 26911744 26911744 23609344 23609344 050905120917

629 47708160 47708160 45670400 45670400 050905120917

633 8126464 8126464 7078912 102318080 162529280 050905120917

632 26911744 26911744 24485888 24485888 050905120918

629 57735168 57735168 48381952 48381952 050905120918

633 10158080 10158080 9618432 102318080 164626432 050905120918

632 26911744 26911744 24485888 24485888 050905120919

629 57735168 57735168 48381952 48381952 050905120919

633 10158080 10158080 9618432 102318080 170917888 050905120919

632 26911744 26911744 25853952 25853952 050905120920

629 57735168 57735168 50864128 50864128 050905120920

633 10158080 10158080 9872384 102318080 174063616 050905120920

632 26911744 26911744 25853952 25853952 050905120921

629 57735168 57735168 50864128 50864128 050905120921

633 10158080 10158080 9872384 102318080 179306496 050905120921

632 32572416 32572416 27312128 27312128 050905120922

629 57735168 57735168 53329920 53329920 050905120922

633 10158080 10158080 9110528 102318080 182452224 050905120922

632 32572416 32572416 27312128 27312128 050905120923

629 57735168 57735168 53329920 53329920 050905120923

633 10158080 10158080 9110528 102318080 188743680 050905120923

632 32572416 32572416 28385280 28385280 050905120924

629 57735168 57735168 56016896 56016896 050905120924

633 10158080 10158080 9364480 102318080 190840832 050905120924

632 32572416 32572416 28385280 28385280 050905120925

629 57735168 57735168 56016896 56016896 050905120925

633 10158080 10158080 9364480 102318080 197132288 050905120925

632 32572416 32572416 29655040 29655040 050905120926

629 69868544 69868544 59105280 59105280 050905120926

633 12189696 12189696 11904000 102318080 199229440 050905120926

632 32572416 32572416 29655040 29655040 050905120927

629 69868544 69868544 59105280 59105280 050905120927

633 12189696 12189696 11904000 102318080 205520896 050905120927

632 32572416 32572416 30769152 30769152 050905120928

629 69868544 69868544 62070784 62070784 050905120928

633 12189696 12189696 11576320 102318080 207618048 050905120928

632 32572416 32572416 30818304 30818304 050905120929

629 69868544 69868544 62119936 62119936 050905120929

633 12189696 12189696 11904000 102318080 213909504 050905120929

632 32572416 32572416 31252480 31252480 050905120930

629 69868544 69868544 63053824 63053824 050905120930

633 12189696 12189696 4981760 102318080 218103808 050905120930

632 32572416 32572416 32063488 32063488 050905120931

629 69868544 69868544 64888832 64888832 050905120931

633 12189696 12189696 11142144 102318080 222298112 050905120931

632 32572416 32572416 32063488 32063488 050905120932

629 69868544 69868544 64888832 64888832 050905120932

633 12189696 12189696 11142144 102318080 228589568 050905120932

632 39420928 39420928 33480704 33480704 050905120933

629 69868544 69868544 67862528 67862528 050905120933

633 12189696 12189696 11142144 102318080 230686720 050905120933

632 39420928 39420928 33480704 33480704 050905120934

629 69868544 69868544 67862528 67862528 050905120934

633 12189696 12189696 11142144 102318080 236978176 050905120934

632 39420928 39420928 35127296 35127296 050905120935

629 84549632 84549632 71270400 71270400 050905120935

633 14221312 14221312 12379136 102318080 239075328 050905120935

632 39420928 39420928 35274752 35274752 050905120936

629 84549632 84549632 71516160 71516160 050905120936

633 14221312 14221312 13427712 102318080 244318208 050905120936

632 39420928 39420928 35274752 35274752 050905120937

629 84549632 84549632 71516160 71516160 050905120937

633 14221312 14221312 13427712 102318080 250609664 050905120937

632 39420928 39420928 36667392 36667392 050905120938

629 84549632 84549632 74424320 74424320 050905120938

633 14221312 14221312 13427712 102318080 252706816 050905120938

632 39420928 39420928 36667392 36667392 050905120939

629 84549632 84549632 74424320 74424320 050905120939

633 14221312 14221312 13427712 102318080 257949696 050905120939

632 39420928 39420928 37232640 37232640 050905120940

629 84549632 84549632 75276288 75276288 050905120940

633 14221312 14221312 4187136 102318080 263192576 050905120940

632 39420928 39420928 38584320 38584320 050905120941

629 84549632 84549632 77561856 77561856 050905120941

633 14221312 14221312 13427712 102318080 266338304 050905120941

632 39420928 39420928 38584320 38584320 050905120942

629 84549632 84549632 77561856 77561856 050905120942

633 14221312 14221312 13427712 102318080 272629760 050905120942

632 47708160 47708160 39698432 39698432 050905120944

629 84549632 84549632 79691776 79691776 050905120944

633 14221312 14221312 7988224 102318080 275775488 050905120944

632 47708160 47708160 40615936 40615936 050905120945

629 84549632 84549632 81428480 81428480 050905120945

633 14221312 14221312 13427712 102318080 279969792 050905120945

632 47708160 47708160 40615936 40615936 050905120946

629 84549632 84549632 81428480 81428480 050905120946

633 14221312 14221312 13427712 102318080 285212672 050905120946

632 47708160 47708160 42483712 42483712 050905120947

629 102313984 102313984 84721664 84721664 050905120947

633 16760832 16760832 12182528 102318080 287309824 050905120947

632 47708160 47708160 43016192 43016192 050905120948

629 102313984 102313984 85770240 85770240 050905120948

633 16760832 16760832 15983616 102318080 292552704 050905120948

632 47708160 47708160 43016192 43016192 050905120949

629 102313984 102313984 85770240 85770240 050905120949

633 16760832 16760832 15983616 102318080 298844160 050905120949

632 47708160 47708160 43966464 43966464 050905120950

629 102313984 102313984 87875584 87875584 050905120950

633 16760832 16760832 8438784 102318080 301989888 050905120950

632 47708160 47708160 45211648 45211648 050905120951

629 102313984 102313984 89849856 89849856 050905120951

633 16760832 16760832 16237568 102318080 305135616 050905120951

632 47708160 47708160 45211648 45211648 050905120952

629 102313984 102313984 89849856 89849856 050905120952

633 16760832 16760832 16237568 102318080 311427072 050905120952

632 47708160 47708160 45744128 45744128 050905120953

629 102313984 102313984 90570752 90570752 050905120953

633 16760832 16760832 3843072 102318080 316669952 050905120953

632 47708160 47708160 46891008 46891008 050905120954

629 102313984 102313984 93954048 93954048 050905120954

633 16760832 16760832 16491520 102318080 317718528 050905120954

632 47708160 47708160 46891008 46891008 050905120955

629 102313984 102313984 93954048 93954048 050905120955

633 16760832 16760832 16491520 102318080 322961408 050905120955

632 47708160 47708160 46891008 46891008 050905120956

629 102313984 102313984 93954048 93954048 050905120956

633 16760832 16760832 16491520 102318080 329252864 050905120956

632 57735168 57735168 48054272 48054272 050905120957

629 102313984 102313984 96673792 96673792 050905120957

633 16760832 16760832 11666432 102318080 331350016 050905120957

632 57735168 57735168 48439296 48439296 050905120958

629 102313984 102313984 97640448 97640448 050905120958

633 16760832 16760832 15729664 102318080 335544320 050905120958

632 57735168 57735168 48439296 48439296 050905120959

629 102313984 102313984 97640448 97640448 050905120959

633 16760832 16760832 15729664 102318080 341835776 050905120959

632 57735168 57735168 49373184 49373184 050905121000

629 102313984 102313984 99524608 99524608 050905121000

633 16760832 16760832 6743040 102318080 346030080 050905121000

632 57735168 57735168 50708480 50708480 050905121001

629 102313984 9142272 102318080 102318080 3145728 050905121001

633 18792448 18792448 18015232 102318080 346030080 050905121001

632 57735168 57735168 50708480 50708480 050905121002

629 102313984 9142272 102318080 102318080 9437184 050905121002

633 18792448 18792448 18015232 102318080 346030080 050905121002

632 57735168 57735168 50708480 50708480 050905121003

629 102313984 9142272 102318080 102318080 14680064 050905121003

633 18792448 18792448 18015232 102318080 346030080 050905121003

632 57735168 57735168 50708480 50708480 050905121004

629 102313984 9142272 102318080 102318080 20971520 050905121004

633 18792448 18792448 18015232 102318080 346030080 050905121004

632 57735168 57735168 50708480 50708480 050905121005

629 102313984 9142272 102318080 102318080 27262976 050905121005

633 18792448 18792448 18015232 102318080 346030080 050905121005

632 57735168 57735168 50708480 50708480 050905121006

629 102313984 9142272 102318080 102318080 33554432 050905121006

633 18792448 18792448 18015232 102318080 346030080 050905121006

632 57735168 57735168 50708480 50708480 050905121007

629 102313984 9142272 102318080 102318080 39845888 050905121007

633 18792448 18792448 18015232 102318080 346030080 050905121007

632 57735168 57735168 50708480 50708480 050905121008

629 102313984 9142272 102318080 102318080 45088768 050905121008

633 18792448 18792448 18015232 102318080 346030080 050905121008

632 57735168 57735168 50708480 50708480 050905121009

629 102313984 9142272 102318080 102318080 51380224 050905121009

633 18792448 18792448 18015232 102318080 346030080 050905121009

632 57735168 57735168 50708480 50708480 050905121010

629 102313984 9142272 102318080 102318080 57671680 050905121010

633 18792448 18792448 18015232 102318080 346030080 050905121010

632 57735168 57735168 50708480 50708480 050905121011

629 102313984 9142272 102318080 102318080 63963136 050905121011

633 18792448 18792448 18015232 102318080 346030080 050905121011

632 57735168 57735168 50708480 50708480 050905121012

629 102313984 9142272 102318080 102318080 70254592 050905121012

633 18792448 18792448 18015232 102318080 346030080 050905121012

632 57735168 57735168 50708480 50708480 050905121013

629 102313984 9142272 102318080 102318080 75497472 050905121013

633 18792448 18792448 18015232 102318080 346030080 050905121013

632 57735168 57735168 50708480 50708480 050905121014

629 102313984 9142272 102318080 102318080 82837504 050905121014

633 18792448 18792448 18015232 102318080 346030080 050905121014

632 57735168 57735168 50708480 50708480 050905121015

629 102313984 9142272 102318080 102318080 89128960 050905121015

633 18792448 18792448 18015232 102318080 346030080 050905121015

632 57735168 57735168 50708480 50708480 050905121016

629 9142272 9142272 295936 102318080 94371840 050905121016

633 18792448 18792448 18015232 102318080 346030080 050905121016

632 57735168 57735168 50708480 50708480 050905121017

629 9142272 9142272 295936 102318080 94371840 050905121017

633 18792448 18792448 18015232 102318080 352321536 050905121017

632 57735168 57735168 50708480 50708480 050905121018

629 9142272 9142272 295936 102318080 94371840 050905121018

633 18792448 18792448 18015232 102318080 357564416 050905121018

632 57735168 57735168 51486720 51486720 050905121019

629 9142272 9142272 1483776 102318080 94371840 050905121019

633 18792448 18792448 5620736 102318080 361758720 050905121019

632 57735168 57735168 53723136 53723136 050905121021

629 9142272 9142272 4842496 102318080 94371840 050905121021

633 18792448 18792448 18269184 102318080 363855872 050905121021

632 57735168 57735168 53723136 53723136 050905121022

629 9142272 9142272 4842496 102318080 94371840 050905121022

633 18792448 18792448 18269184 102318080 370147328 050905121022

632 57735168 57735168 53723136 53723136 050905121023

629 9142272 9142272 4842496 102318080 94371840 050905121023

633 18792448 18792448 18269184 102318080 376438784 050905121023

632 57735168 57735168 55001088 55001088 050905121024

629 9142272 9142272 7414784 102318080 94371840 050905121024

633 18792448 18792448 11781120 102318080 378535936 050905121024

632 57735168 57735168 55304192 55304192 050905121025

629 9142272 9142272 8381440 102318080 99614720 050905121025

633 18792448 18792448 15451136 102318080 378535936 050905121025

632 57735168 57735168 55697408 55697408 050905121026

629 9142272 9142272 1549312 102318080 101711872 050905121026

633 18792448 18792448 18269184 102318080 380633088 050905121026

632 57735168 57735168 55697408 55697408 050905121027

629 9142272 9142272 1549312 102318080 101711872 050905121027

633 18792448 18792448 18269184 102318080 386924544 050905121027

632 57735168 57735168 55697408 55697408 050905121028

629 9142272 9142272 1549312 102318080 101711872 050905121028

633 18792448 18792448 18269184 102318080 393216000 050905121028

632 57735168 57735168 57425920 57425920 050905121029

629 9142272 9142272 4957184 102318080 101711872 050905121029

633 18792448 18792448 13083648 102318080 395313152 050905121029

632 69868544 69868544 58220544 58220544 050905121030

629 9142272 9142272 6595584 102318080 101711872 050905121030

633 18792448 18792448 18523136 102318080 399507456 050905121030

632 69868544 69868544 58220544 58220544 050905121031

629 9142272 9142272 6595584 102318080 101711872 050905121031

633 18792448 18792448 18523136 102318080 404750336 050905121031

632 69868544 69868544 58228736 58228736 050905121032

629 9142272 9142272 6595584 102318080 101711872 050905121032

633 18792448 18792448 762880 102318080 411041792 050905121032

632 69868544 69868544 59375616 59375616 050905121033

629 9142272 9142272 8889344 102318080 104857600 050905121033

633 18792448 18792448 8692736 102318080 411041792 050905121033

632 69868544 69868544 59777024 59777024 050905121034

629 9142272 9142272 1311744 102318080 109051904 050905121034

633 18792448 18792448 13214720 102318080 411041792 050905121034

632 69868544 69868544 60530688 60530688 050905121035

629 9142272 9142272 2753536 102318080 109051904 050905121035

633 18792448 18792448 18523136 102318080 415236096 050905121035

632 69868544 69868544 60530688 60530688 050905121036

629 9142272 9142272 2753536 102318080 109051904 050905121036

633 18792448 18792448 18523136 102318080 421527552 050905121036

632 69868544 69868544 60530688 60530688 050905121037

629 9142272 9142272 2753536 102318080 109051904 050905121037

633 18792448 18792448 18523136 102318080 427819008 050905121037

632 69868544 69868544 61759488 61759488 050905121038

629 9142272 6094848 5243904 102318080 112197632 050905121038

633 21331968 21331968 9896960 102318080 427819008 050905121038

632 69868544 69868544 62849024 62849024 050905121039

629 9142272 6094848 3515392 102318080 114294784 050905121039

633 21331968 21331968 20317184 102318080 428867584 050905121039

632 69868544 69868544 62849024 62849024 050905121040

629 9142272 6094848 3515392 102318080 114294784 050905121040

633 21331968 21331968 20317184 102318080 434110464 050905121040

632 69868544 69868544 62849024 62849024 050905121041

629 9142272 6094848 3515392 102318080 114294784 050905121041

633 21331968 21331968 20317184 102318080 440401920 050905121041

632 69868544 69868544 62849024 62849024 050905121042

629 9142272 6094848 3515392 102318080 114294784 050905121042

633 21331968 21331968 20317184 102318080 445644800 050905121042

632 69868544 69868544 63610880 63610880 050905121043

629 9142272 6094848 5809152 102318080 117440512 050905121043

633 21331968 21331968 7595008 102318080 446693376 050905121043

632 64430080 64430080 64430080 64430080 050905121044

629 9142272 6094848 2278400 102318080 120586240 050905121044

633 21331968 21331968 14935040 102318080 447741952 050905121044

632 64430080 64430080 64430080 64430080 050905121045

629 3047424 3047424 3049472 102318080 120586240 050905121045

633 21331968 21331968 14935040 102318080 452984832 050905121045

632 64430080 64430080 64430080 64430080 050905121046

629 3047424 3047424 3049472 102318080 120586240 050905121046

633 21331968 21331968 14935040 102318080 459276288 050905121046

632 64430080 64430080 64430080 64430080 050905121047

629 3047424 3047424 3049472 102318080 120586240 050905121047

633 18284544 18284544 19052544 102318080 460324864 050905121047

632 64430080 64430080 64430080 64430080 050905121048

629 3047424 3047424 3049472 102318080 120586240 050905121048

633 18284544 18284544 19052544 102318080 460324864 050905121048

632 64430080 64430080 64430080 64430080 050905121049

629 3047424 3047424 3049472 102318080 120586240 050905121049

633 18284544 18284544 19052544 102318080 460324864 050905121049

632 64430080 64430080 64430080 64430080 050905121050

629 3047424 3047424 3049472 102318080 120586240 050905121050

633 18284544 18284544 19052544 102318080 460324864 050905121050

632 64430080 64430080 64430080 64430080 050905121051

629 3047424 3047424 3049472 102318080 120586240 050905121051

633 18284544 18284544 19052544 102318080 460324864 050905121051

632 64430080 64430080 64430080 64430080 050905121052

629 3047424 3047424 3049472 102318080 120586240 050905121052

633 18284544 18284544 19052544 102318080 460324864 050905121052

632 64430080 64430080 64430080 64430080 050905121053

629 3047424 3047424 3049472 102318080 120586240 050905121053

633 18284544 18284544 19052544 102318080 460324864 050905121053

632 64430080 64430080 64430080 64430080 050905121054

629 3047424 3047424 3049472 102318080 120586240 050905121054

633 18284544 18284544 19052544 102318080 460324864 050905121054

632 64430080 64430080 64430080 64430080 050905121055

629 3047424 3047424 3049472 102318080 120586240 050905121055

633 18284544 18284544 19052544 102318080 460324864 050905121055

632 64430080 64430080 64430080 64430080 050905121056

629 3047424 3047424 3049472 102318080 120586240 050905121056

633 18284544 18284544 19052544 102318080 460324864 050905121056

632 64430080 64430080 64430080 64430080 050905121057

629 3047424 3047424 3049472 102318080 120586240 050905121057

633 18284544 18284544 19052544 102318080 460324864 050905121057

632 64430080 64430080 64430080 64430080 050905121059

629 3047424 3047424 3049472 102318080 120586240 050905121059

633 18284544 18284544 19052544 102318080 460324864 050905121059

632 64430080 64430080 64430080 64430080 050905121100

629 3047424 3047424 3049472 102318080 120586240 050905121100

633 18284544 18284544 19052544 102318080 460324864 050905121100

632 64430080 64430080 64430080 64430080 050905121101

629 3047424 3047424 3049472 102318080 120586240 050905121101

633 18284544 18284544 19052544 102318080 460324864 050905121101

632 64430080 64430080 64430080 64430080 050905121102

629 3047424 3047424 3049472 102318080 120586240 050905121102

633 18284544 18284544 19052544 102318080 460324864 050905121102

632 64430080 64430080 64430080 64430080 050905121103

629 3047424 3047424 3049472 102318080 120586240 050905121103

633 18284544 18284544 19052544 102318080 460324864 050905121103

632 64430080 64430080 64430080 64430080 050905121104

629 3047424 3047424 3049472 102318080 120586240 050905121104

633 18284544 18284544 19052544 102318080 460324864 050905121104

632 64430080 64430080 64430080 64430080 050905121105

629 3047424 3047424 3049472 102318080 120586240 050905121105

633 18284544 18284544 19052544 102318080 460324864 050905121105

632 64430080 64430080 64430080 64430080 050905121106

629 3047424 3047424 3049472 102318080 120586240 050905121106

633 18284544 18284544 19052544 102318080 460324864 050905121106

632 64430080 64430080 64430080 64430080 050905121107

629 3047424 3047424 3049472 102318080 120586240 050905121107

633 18284544 18284544 19052544 102318080 460324864 050905121107

632 64430080 64430080 64430080 64430080 050905121108

629 3047424 3047424 3049472 102318080 120586240 050905121108

633 18284544 18284544 19052544 102318080 460324864 050905121108

632 64430080 64430080 64430080 64430080 050905121109

629 3047424 3047424 3049472 102318080 120586240 050905121109

633 18284544 18284544 19052544 102318080 460324864 050905121109

632 64430080 64430080 64430080 64430080 050905121110

629 3047424 3047424 3049472 102318080 120586240 050905121110

633 18284544 18284544 19052544 102318080 460324864 050905121110

632 64430080 64430080 64430080 64430080 050905121111

629 3047424 3047424 3049472 102318080 120586240 050905121111

633 18284544 18284544 19052544 102318080 460324864 050905121111

632 64430080 64430080 64430080 64430080 050905121112

629 3047424 3047424 3049472 102318080 120586240 050905121112

633 18284544 18284544 19052544 102318080 460324864 050905121112

632 64430080 64430080 64430080 64430080 050905121113

629 3047424 3047424 3049472 102318080 120586240 050905121113

633 18284544 18284544 19052544 102318080 460324864 050905121113

632 64430080 64430080 64430080 64430080 050905121114

633 18284544 18284544 19052544 102318080 460324864 050905121114

632 64430080 64430080 64430080 64430080 050905121115

633 18284544 18284544 19052544 102318080 460324864 050905121115

632 64430080 64430080 64430080 64430080 050905121116

633 18284544 18284544 19052544 102318080 460324864 050905121116

632 64430080 64430080 64430080 64430080 050905121117

633 18284544 18284544 19052544 102318080 460324864 050905121117

632 64430080 64430080 64430080 64430080 050905121118

633 18284544 18284544 19052544 102318080 460324864 050905121118

632 64430080 64430080 64430080 64430080 050905121119

633 18284544 18284544 19052544 102318080 460324864 050905121119

632 64430080 64430080 64430080 64430080 050905121120

633 18284544 18284544 19052544 102318080 460324864 050905121120

632 64430080 64430080 64430080 64430080 050905121121

633 18284544 18284544 19052544 102318080 460324864 050905121121

632 64430080 64430080 64430080 64430080 050905121122

633 18284544 18284544 19052544 102318080 460324864 050905121122

632 64430080 64430080 64430080 64430080 050905121123

633 18284544 18284544 19052544 102318080 460324864 050905121123

633 18284544 18284544 19052544 102318080 460324864 050905121124

633 18284544 18284544 19052544 102318080 460324864 050905121125

633 18284544 18284544 19052544 102318080 460324864 050905121126

633 18284544 18284544 19052544 102318080 460324864 050905121127

633 18284544 18284544 19052544 102318080 460324864 050905121128

633 18284544 18284544 19052544 102318080 460324864 050905121129

633 18284544 18284544 19052544 102318080 460324864 050905121130

633 18284544 18284544 19052544 102318080 460324864 050905121131

633 18284544 18284544 19052544 102318080 460324864 050905121132

633 18284544 18284544 19052544 102318080 460324864 050905121133

633 18284544 18284544 19052544 102318080 460324864 050905121135

633 18284544 18284544 19052544 102318080 460324864 050905121136

633 18284544 18284544 19052544 102318080 460324864 050905121137

633 18284544 18284544 19052544 102318080 460324864 050905121138

633 18284544 18284544 19052544 102318080 460324864 050905121139

633 18284544 18284544 19052544 102318080 460324864 050905121140

633 18284544 18284544 19052544 102318080 460324864 050905121141

633 18284544 18284544 19052544 102318080 460324864 050905121142

633 18284544 18284544 19052544 102318080 460324864 050905121143

633 18284544 18284544 19052544 102318080 460324864 050905121144

633 18284544 18284544 19052544 102318080 460324864 050905121145

633 18284544 18284544 19052544 102318080 460324864 050905121146

633 18284544 18284544 19052544 102318080 460324864 050905121147

633 18284544 18284544 19052544 102318080 460324864 050905121148

633 18284544 18284544 19052544 102318080 460324864 050905121149

633 18284544 18284544 19052544 102318080 460324864 050905121150

633 18284544 18284544 19052544 102318080 460324864 050905121151

633 18284544 18284544 19052544 102318080 460324864 050905121152

633 18284544 18284544 19052544 102318080 460324864 050905121153

633 18284544 18284544 19052544 102318080 460324864 050905121154

633 18284544 18284544 19052544 102318080 460324864 050905121155

633 18284544 18284544 19052544 102318080 460324864 050905121156

633 18284544 18284544 19052544 102318080 460324864 050905121157

633 18284544 18284544 19052544 102318080 460324864 050905121158

633 18284544 18284544 19052544 102318080 460324864 050905121159

633 18284544 18284544 19052544 102318080 460324864 050905121200

633 18284544 18284544 19052544 102318080 460324864 050905121201

633 18284544 18284544 19052544 102318080 460324864 050905121202

633 18284544 18284544 19052544 102318080 460324864 050905121203

633 18284544 18284544 19052544 102318080 460324864 050905121204

633 18284544 18284544 19052544 102318080 460324864 050905121205

633 18284544 18284544 19052544 102318080 460324864 050905121206

633 18284544 18284544 19052544 102318080 460324864 050905121207

633 18284544 18284544 19052544 102318080 460324864 050905121208

633 18284544 18284544 19052544 102318080 460324864 050905121209

633 18284544 18284544 19052544 102318080 460324864 050905121210

633 18284544 18284544 19052544 102318080 460324864 050905121211

633 18284544 18284544 19052544 102318080 460324864 050905121212

633 18284544 18284544 19052544 102318080 460324864 050905121214

633 18284544 18284544 19052544 102318080 460324864 050905121215

633 18284544 18284544 19052544 102318080 460324864 050905121216

633 18284544 18284544 19052544 102318080 460324864 050905121217

633 18284544 18284544 19052544 102318080 460324864 050905121218

633 18284544 18284544 19052544 102318080 460324864 050905121219

633 18284544 18284544 19052544 102318080 460324864 050905121220

633 18284544 18284544 19052544 102318080 460324864 050905121221

633 18284544 18284544 19052544 102318080 460324864 050905121222

633 18284544 18284544 19052544 102318080 460324864 050905121223

633 18284544 18284544 19052544 102318080 460324864 050905121224

633 18284544 18284544 19052544 102318080 460324864 050905121225

633 18284544 18284544 19052544 102318080 460324864 050905121226

633 18284544 18284544 19052544 102318080 460324864 050905121227

633 18284544 18284544 19052544 102318080 460324864 050905121228

633 18284544 18284544 19052544 102318080 460324864 050905121229

633 18284544 18284544 19052544 102318080 460324864 050905121230

633 18284544 18284544 19052544 102318080 460324864 050905121231

633 18284544 18284544 19052544 102318080 460324864 050905121232

633 18284544 18284544 19052544 102318080 460324864 050905121233

633 18284544 18284544 19052544 102318080 460324864 050905121234

633 18284544 18284544 19052544 102318080 460324864 050905121235

633 18284544 18284544 19052544 102318080 460324864 050905121236

633 18284544 18284544 19052544 102318080 460324864 050905121237

633 18284544 18284544 19052544 102318080 460324864 050905121238

633 18284544 18284544 19052544 102318080 460324864 050905121239

633 18284544 18284544 19052544 102318080 460324864 050905121240

633 18284544 18284544 19052544 102318080 460324864 050905121241

633 18284544 18284544 19052544 102318080 460324864 050905121242

633 18284544 18284544 19052544 102318080 460324864 050905121243

633 18284544 18284544 19052544 102318080 460324864 050905121244

633 18284544 18284544 19052544 102318080 460324864 050905121245

547 rows selected.

SQL> spool off;

[pic]

|Predicted |Actual |

|111 |97.57813 |

PGA_AGGREGATE_TARGET 4g, 400M _pga_max_size, 333M _smm_px_max_size, 4 DOP

SQL> show parameters

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

O7_DICTIONARY_ACCESSIBILITY boolean FALSE

__db_cache_size big integer 684M

__java_pool_size big integer 8M

__large_pool_size big integer 4M

__shared_pool_size big integer 224M

_pga_max_size big integer 400M

_smm_px_max_size integer 340992

active_instance_count integer

aq_tm_processes integer 0

archive_lag_target integer 0

asm_diskgroups string

asm_diskstring string

asm_power_limit integer 1

audit_file_dest string /home/oracle/DBHome1/rdbms/aud

it

audit_sys_operations boolean FALSE

audit_trail string TRUE

background_core_dump string partial

background_dump_dest string /home/oracle/admin/test/bdump

backup_tape_io_slaves boolean FALSE

bitmap_merge_area_size integer 1048576

blank_trimming boolean FALSE

buffer_pool_keep string

buffer_pool_recycle string

circuits integer

cluster_database boolean FALSE

cluster_database_instances integer 1

cluster_interconnects string

commit_point_strength integer 1

compatible string 10.1.0.2.0

control_file_record_keep_time integer 7

control_files string /home/oracle/oradata/test/con

trol01.ctl, /home/oracle/orada

ta/test/control02.ctl, /home/

oracle/oradata/test/control03

.ctl

core_dump_dest string /home/oracle/admin/test/cdump

cpu_count integer 2

create_bitmap_area_size integer 8388608

create_stored_outlines string

cursor_sharing string EXACT

cursor_space_for_time boolean FALSE

db_16k_cache_size big integer 0

db_2k_cache_size big integer 0

db_32k_cache_size big integer 0

db_4k_cache_size big integer 0

db_8k_cache_size big integer 0

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

db_block_buffers integer 0

db_block_checking boolean FALSE

db_block_checksum boolean TRUE

db_block_size integer 8192

db_cache_advice string ON

db_cache_size big integer 0

db_create_file_dest string

db_create_online_log_dest_1 string

db_create_online_log_dest_2 string

db_create_online_log_dest_3 string

db_create_online_log_dest_4 string

db_create_online_log_dest_5 string

db_domain string

db_file_multiblock_read_count integer 32

db_file_name_convert string

db_files integer 200

db_flashback_retention_target integer 1440

db_keep_cache_size big integer 0

db_name string test

db_recovery_file_dest string /home/oracle/flash_recovery_ar

ea

db_recovery_file_dest_size big integer 2G

db_recycle_cache_size big integer 0

db_unique_name string test

db_writer_processes integer 7

dbwr_io_slaves integer 0

ddl_wait_for_locks boolean FALSE

dg_broker_config_file1 string /home/oracle/DBHome1/dbs/dr1hf

dwh.dat

dg_broker_config_file2 string /home/oracle/DBHome1/dbs/dr2hf

dwh.dat

dg_broker_start boolean FALSE

disk_asynch_io boolean TRUE

dispatchers string (PROTOCOL=TCP) (SERVICE=testX

DB)

distributed_lock_timeout integer 60

dml_locks integer 2924

drs_start boolean FALSE

enqueue_resources integer 3000

event string

fal_client string

fal_server string

fast_start_io_target integer 0

fast_start_mttr_target integer 0

fast_start_parallel_rollback string LOW

file_mapping boolean FALSE

fileio_network_adapters string

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

filesystemio_options string none

fixed_date string

gc_files_to_locks string

gcs_server_processes integer 0

global_context_pool_size string

global_names boolean FALSE

hash_area_size integer 131072

hi_shared_memory_address integer 0

hs_autoregister boolean TRUE

ifile file

instance_groups string

instance_name string test

instance_number integer 0

instance_type string RDBMS

java_max_sessionspace_size integer 0

java_pool_size big integer 0

java_soft_sessionspace_limit integer 0

job_queue_processes integer 10

large_pool_size big integer 0

ldap_directory_access string NONE

license_max_sessions integer 0

license_max_users integer 0

license_sessions_warning integer 0

local_listener string

lock_name_space string

lock_sga boolean FALSE

log_archive_config string

log_archive_dest string

log_archive_dest_1 string

log_archive_dest_10 string

log_archive_dest_2 string

log_archive_dest_3 string

log_archive_dest_4 string

log_archive_dest_5 string

log_archive_dest_6 string

log_archive_dest_7 string

log_archive_dest_8 string

log_archive_dest_9 string

log_archive_dest_state_1 string enable

log_archive_dest_state_10 string enable

log_archive_dest_state_2 string enable

log_archive_dest_state_3 string enable

log_archive_dest_state_4 string enable

log_archive_dest_state_5 string enable

log_archive_dest_state_6 string enable

log_archive_dest_state_7 string enable

log_archive_dest_state_8 string enable

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

log_archive_dest_state_9 string enable

log_archive_duplex_dest string

log_archive_format string %t_%s_%r.dbf

log_archive_local_first boolean TRUE

log_archive_max_processes integer 2

log_archive_min_succeed_dest integer 1

log_archive_start boolean FALSE

log_archive_trace integer 0

log_buffer integer 524288

log_checkpoint_interval integer 0

log_checkpoint_timeout integer 1800

log_checkpoints_to_alert boolean FALSE

log_file_name_convert string

logmnr_max_persistent_sessions integer 1

max_commit_propagation_delay integer 700

max_dispatchers integer

max_dump_file_size string UNLIMITED

max_enabled_roles integer 150

max_shared_servers integer

nls_calendar string

nls_comp string

nls_currency string

nls_date_format string

nls_date_language string

nls_dual_currency string

nls_iso_currency string

nls_language string AMERICAN

nls_length_semantics string BYTE

nls_nchar_conv_excp string FALSE

nls_numeric_characters string

nls_sort string

nls_territory string AMERICA

nls_time_format string

nls_time_tz_format string

nls_timestamp_format string

nls_timestamp_tz_format string

object_cache_max_size_percent integer 10

object_cache_optimal_size integer 102400

olap_page_pool_size big integer 0

open_cursors integer 300

open_links integer 4

open_links_per_instance integer 4

optimizer_dynamic_sampling integer 2

optimizer_features_enable string 10.1.0.3

optimizer_index_caching integer 0

optimizer_index_cost_adj integer 100

optimizer_mode string ALL_ROWS

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

os_authent_prefix string ops$

os_roles boolean FALSE

parallel_adaptive_multi_user boolean TRUE

parallel_automatic_tuning boolean FALSE

parallel_execution_message_size integer 2148

parallel_instance_group string

parallel_max_servers integer 40

parallel_min_percent integer 0

parallel_min_servers integer 0

parallel_server boolean FALSE

parallel_server_instances integer 1

parallel_threads_per_cpu integer 2

pga_aggregate_target big integer 4G

plsql_code_type string INTERPRETED

plsql_compiler_flags string INTERPRETED, NON_DEBUG

plsql_debug boolean FALSE

plsql_native_library_dir string

plsql_native_library_subdir_count integer 0

plsql_optimize_level integer 2

plsql_v2_compatibility boolean FALSE

plsql_warnings string DISABLE:ALL

pre_page_sga boolean FALSE

processes integer 600

query_rewrite_enabled string TRUE

query_rewrite_integrity string enforced

rdbms_server_dn string

read_only_open_delayed boolean FALSE

recovery_parallelism integer 0

remote_archive_enable string true

remote_dependencies_mode string TIMESTAMP

remote_listener string

remote_login_passwordfile string EXCLUSIVE

remote_os_authent boolean FALSE

remote_os_roles boolean FALSE

replication_dependency_tracking boolean TRUE

resource_limit boolean FALSE

resource_manager_plan string

resumable_timeout integer 0

rollback_segments string

serial_reuse string disable

service_names string test

session_cached_cursors integer 0

session_max_open_files integer 10

sessions integer 665

sga_max_size big integer 1G

sga_target big integer 1G

shadow_core_dump string partial

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

shared_memory_address integer 0

shared_pool_reserved_size big integer 11744051

shared_pool_size big integer 0

shared_server_sessions integer

shared_servers integer 1

skip_unusable_indexes boolean TRUE

smtp_out_server string

sort_area_retained_size integer 0

sort_area_size integer 65536

sp_name string test

spfile string /home/oracle/DBHome1/dbs/spfil

etest.ora

sql92_security boolean FALSE

sql_trace boolean FALSE

sql_version string NATIVE

sqltune_category string DEFAULT

standby_archive_dest string ?/dbs/arch

standby_file_management string MANUAL

star_transformation_enabled string TRUE

statistics_level string TYPICAL

streams_pool_size big integer 100M

tape_asynch_io boolean TRUE

thread integer 0

timed_os_statistics integer 0

timed_statistics boolean TRUE

trace_enabled boolean TRUE

tracefile_identifier string

transactions integer 731

transactions_per_rollback_segment integer 5

undo_management string AUTO

undo_retention integer 900

undo_tablespace string UNDOTBSP2

use_indirect_data_buffers boolean FALSE

user_dump_dest string /home/oracle/admin/test/udump

utl_file_dir string

workarea_size_policy string AUTO

SQL> @get_undocs

Parameter Description Value

---------------------------------------- ------------------------- ----------

_pga_large_extent_size PGA large extent size 1048576

_pga_max_size Maximum size of the PGA 419430400

memory for one process

_smm_advice_enabled if TRUE, enable TRUE

v$pga_advice

_smm_advice_log_size overwrites default size 0

of the PGA advice

workarea history log

_smm_auto_cost_enabled if TRUE, use the AUTO TRUE

size policy cost

functions

_smm_auto_max_io_size Maximum IO size (in KB) 248

used by sort/hash-join in

auto mode

_smm_auto_min_io_size Minimum IO size (in KB) 56

used by sort/hash-join in

auto mode

_smm_bound overwrites memory manager 0

automatically computed

bound

_smm_control provides controls on the 0

memory manager

_smm_freeable_retain value in KB of the 5120

instance freeable PGA

memory to retain

_smm_max_size maximum work area size in 204800

auto mode (serial)

_smm_min_size minimum work area size in 1024

auto mode

_smm_px_max_size maximum work area size in 340992

auto mode (global)

_smm_retain_size work area retain size in 0

SGA for shared server

sessions (0 for AUTO)

Parameter Description Value

---------------------------------------- ------------------------- ----------

_smm_trace Turn on/off tracing for 0

SQL memory manager

15 rows selected.

Elapsed: 00:00:00.01

SQL> set autotrace traceonly

SQL> get test_parallel

1 select /*+ parallel(test_pga 4) */

2 * from test_pga

3* order by district_name,name

SQL> /

4547752 rows selected.

Elapsed: 00:04:03.77

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=36897 Card=4547752

Bytes=513895976)

1 0 PX COORDINATOR

2 1 PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=36897 Card=454 :Q1001

7752 Bytes=513895976)

3 2 SORT* (ORDER BY) (Cost=36897 Card=4547752 Bytes=513895 :Q1001

976)

4 3 PX RECEIVE* (Cost=4320 Card=4547752 Bytes=513895976) :Q1001

5 4 PX SEND* (RANGE) OF ':TQ10000' (Cost=4320 Card=454 :Q1000

7752 Bytes=513895976)

6 5 PX BLOCK* (ITERATOR) (Cost=4320 Card=4547752 Byt :Q1000

es=513895976)

7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000

st=4320 Card=4547752 Bytes=513895976)

2 PARALLEL_TO_SERIAL

3 PARALLEL_COMBINED_WITH_PARENT

4 PARALLEL_COMBINED_WITH_PARENT

5 PARALLEL_TO_PARALLEL

6 PARALLEL_COMBINED_WITH_CHILD

7 PARALLEL_COMBINED_WITH_PARENT

Statistics

----------------------------------------------------------

615 recursive calls

58 db block gets

79861 consistent gets

150428 physical reads

672 redo size

253736283 bytes sent via SQL*Net to client

3335525 bytes received via SQL*Net from client

303185 SQL*Net roundtrips to/from client

3 sorts (memory)

3 sorts (disk)

4547752 rows processed

SQL> spool off

SQL> select * from test_results;

SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW

----- -------------- ------------- --------------- ------------ ------------ ------------

632 84549632 8634368 84549632 84549632 8388608 050905122048

631 32572416 32572416 31662080 31662080 050905122048

629 39420928 39420928 38477824 38477824 050905122048

634 18368512 18368512 16121856 16121856 050905122048

632 84549632 8634368 84549632 84549632 14680064 050905122049

631 32572416 32572416 31662080 31662080 050905122049

629 39420928 39420928 38477824 38477824 050905122049

634 18368512 18368512 16121856 16121856 050905122049

632 84549632 8634368 84549632 84549632 20971520 050905122050

631 32572416 32572416 31662080 31662080 050905122050

629 39420928 39420928 38477824 38477824 050905122050

634 18368512 18368512 16121856 16121856 050905122050

632 84549632 8634368 84549632 84549632 27262976 050905122051

631 32572416 32572416 31662080 31662080 050905122051

629 39420928 39420928 38477824 38477824 050905122051

634 18368512 18368512 16121856 16121856 050905122051

632 84549632 8634368 84549632 84549632 33554432 050905122052

631 32572416 32572416 31662080 31662080 050905122052

629 39420928 39420928 38477824 38477824 050905122052

634 18368512 18368512 16121856 16121856 050905122052

632 84549632 8634368 84549632 84549632 39845888 050905122053

631 32572416 32572416 31662080 31662080 050905122053

629 39420928 39420928 38477824 38477824 050905122053

634 18368512 18368512 16121856 16121856 050905122053

632 84549632 8634368 84549632 84549632 45088768 050905122054

631 32572416 32572416 31662080 31662080 050905122054

629 39420928 39420928 38477824 38477824 050905122054

634 18368512 18368512 16121856 16121856 050905122054

632 84549632 8634368 84549632 84549632 51380224 050905122055

631 32572416 32572416 31662080 31662080 050905122055

629 39420928 39420928 38477824 38477824 050905122055

634 18368512 18368512 16121856 16121856 050905122055

632 84549632 8634368 84549632 84549632 57671680 050905122056

631 32572416 32572416 31662080 31662080 050905122056

629 39420928 39420928 38477824 38477824 050905122056

634 18368512 18368512 16121856 16121856 050905122056

632 84549632 8634368 84549632 84549632 63963136 050905122057

631 32572416 32572416 31662080 31662080 050905122057

629 39420928 39420928 38477824 38477824 050905122057

634 18368512 18368512 16121856 16121856 050905122057

632 84549632 8634368 84549632 84549632 70254592 050905122058

631 32572416 32572416 31662080 31662080 050905122058

629 39420928 39420928 38477824 38477824 050905122058

634 18368512 18368512 16121856 16121856 050905122058

632 84549632 8634368 84549632 84549632 76546048 050905122059

631 32572416 32572416 31662080 31662080 050905122059

629 39420928 39420928 38477824 38477824 050905122059

634 18368512 18368512 16121856 16121856 050905122059

632 8634368 8634368 8127488 84549632 78643200 050905122100

631 39420928 39420928 34668544 34668544 050905122100

629 47708160 47708160 41443328 41443328 050905122100

634 18368512 18368512 17457152 17457152 050905122100

632 8634368 8634368 8127488 84549632 84934656 050905122101

631 39420928 39420928 34668544 34668544 050905122101

629 47708160 47708160 41443328 41443328 050905122101

634 18368512 18368512 17457152 17457152 050905122101

632 8634368 8634368 8365056 84549632 87031808 050905122102

631 39420928 39420928 37101568 37101568 050905122102

629 47708160 47708160 44793856 44793856 050905122102

634 22234112 22234112 18800640 18800640 050905122102

632 8634368 5586944 2941952 84549632 92274688 050905122103

631 39420928 39420928 37961728 37961728 050905122103

629 47708160 47708160 45694976 45694976 050905122103

634 22234112 22234112 19202048 19202048 050905122103

632 8634368 5586944 1106944 84549632 96468992 050905122104

631 39420928 39420928 39084032 39084032 050905122104

629 47708160 47708160 46645248 46645248 050905122104

634 22234112 22234112 19988480 19988480 050905122104

632 8634368 5586944 4776960 84549632 100663296 050905122105

631 47708160 47708160 40763392 40763392 050905122105

629 57735168 57735168 49102848 49102848 050905122105

634 22234112 22234112 20971520 20971520 050905122105

632 8634368 5586944 4776960 84549632 103809024 050905122107

631 47708160 47708160 42221568 42221568 050905122107

629 57735168 57735168 51011584 51011584 050905122107

634 22234112 22234112 21872640 21872640 050905122107

632 8634368 5586944 4776960 84549632 106954752 050905122108

631 47708160 47708160 44015616 44015616 050905122108

629 57735168 57735168 53125120 53125120 050905122108

634 26911744 26911744 22962176 22962176 050905122108

632 8634368 5586944 4776960 84549632 111149056 050905122109

631 47708160 47708160 45703168 45703168 050905122109

629 57735168 57735168 55353344 55353344 050905122109

634 26911744 26911744 23707648 23707648 050905122109

632 7618560 7618560 6808576 84549632 113246208 050905122110

631 57735168 57735168 48160768 48160768 050905122110

629 69868544 69868544 57737216 57737216 050905122110

634 26911744 26911744 24600576 24600576 050905122110

632 7618560 7618560 508928 84549632 119537664 050905122111

631 57735168 57735168 48537600 48537600 050905122111

629 69868544 69868544 57958400 57958400 050905122111

634 26911744 26911744 24813568 24813568 050905122111

632 7618560 7618560 5293056 84549632 119537664 050905122112

631 57735168 57735168 50405376 50405376 050905122112

629 69868544 69868544 59858944 59858944 050905122112

634 26911744 26911744 25534464 25534464 050905122112

632 7618560 7618560 7062528 84549632 124780544 050905122113

631 57735168 57735168 51265536 51265536 050905122113

629 69868544 69868544 60891136 60891136 050905122113

634 26911744 26911744 25853952 25853952 050905122113

632 7618560 7618560 6554624 84549632 126877696 050905122114

631 57735168 57735168 53444608 53444608 050905122114

629 69868544 69868544 63758336 63758336 050905122114

634 32572416 32572416 27181056 27181056 050905122114

632 7618560 7618560 3400704 84549632 132120576 050905122115

631 57735168 57735168 54788096 54788096 050905122115

629 69868544 69868544 65200128 65200128 050905122115

634 32572416 32572416 27934720 27934720 050905122115

632 7618560 7618560 6808576 84549632 136314880 050905122116

631 57735168 57735168 56254464 56254464 050905122116

629 69868544 69868544 66592768 66592768 050905122116

634 32572416 32572416 28549120 28549120 050905122116

632 9142272 9142272 8381440 84549632 138412032 050905122117

631 69868544 69868544 59670528 59670528 050905122117

629 84549632 84549632 70025216 70025216 050905122117

634 32572416 32572416 29900800 29900800 050905122117

632 9142272 9142272 8381440 84549632 143654912 050905122118

631 69868544 69868544 59670528 59670528 050905122118

629 84549632 84549632 70025216 70025216 050905122118

634 32572416 32572416 29900800 29900800 050905122118

632 9142272 9142272 8381440 84549632 145752064 050905122119

631 69868544 69868544 62611456 62611456 050905122119

629 84549632 84549632 73572352 73572352 050905122119

634 32572416 32572416 31014912 31014912 050905122119

632 9142272 9142272 8381440 84549632 152043520 050905122120

631 69868544 69868544 62611456 62611456 050905122120

629 84549632 84549632 73572352 73572352 050905122120

634 32572416 32572416 31014912 31014912 050905122120

632 9142272 9142272 8381440 84549632 154140672 050905122121

631 69868544 69868544 65773568 65773568 050905122121

629 84549632 84549632 76922880 76922880 050905122121

634 32572416 32572416 32309248 32309248 050905122121

632 9142272 9142272 254976 84549632 160432128 050905122122

631 69868544 69868544 65839104 65839104 050905122122

629 84549632 84549632 77062144 77062144 050905122122

634 32572416 32572416 32342016 32342016 050905122122

632 11173888 11173888 9167872 84549632 160432128 050905122123

631 69868544 69868544 68796416 68796416 050905122123

629 84549632 84549632 80445440 80445440 050905122123

634 39420928 39420928 34070528 34070528 050905122123

632 11173888 11173888 10413056 84549632 164626432 050905122124

631 69868544 69868544 69386240 69386240 050905122124

629 84549632 84549632 80986112 80986112 050905122124

634 39420928 39420928 34340864 34340864 050905122124

632 11173888 11173888 3204096 84549632 169869312 050905122125

631 84549632 84549632 70664192 70664192 050905122125

629 84549632 84549632 82403328 82403328 050905122125

634 39420928 39420928 34897920 34897920 050905122125

632 11173888 11173888 7463936 84549632 169869312 050905122126

631 84549632 84549632 72163328 72163328 050905122126

629 84549632 8634368 84549632 84549632 4194304 050905122126

634 39420928 39420928 35536896 35536896 050905122126

632 11173888 11173888 7463936 84549632 169869312 050905122127

631 84549632 84549632 72163328 72163328 050905122127

629 84549632 8634368 84549632 84549632 10485760 050905122127

634 39420928 39420928 35536896 35536896 050905122127

632 11173888 11173888 7463936 84549632 169869312 050905122128

631 84549632 84549632 72163328 72163328 050905122128

629 84549632 8634368 84549632 84549632 15728640 050905122128

634 39420928 39420928 35536896 35536896 050905122128

632 11173888 11173888 7463936 84549632 169869312 050905122129

631 84549632 84549632 72163328 72163328 050905122129

629 84549632 8634368 84549632 84549632 22020096 050905122129

634 39420928 39420928 35536896 35536896 050905122129

632 11173888 11173888 7463936 84549632 169869312 050905122130

631 84549632 84549632 72163328 72163328 050905122130

629 84549632 8634368 84549632 84549632 28311552 050905122130

634 39420928 39420928 35536896 35536896 050905122130

632 11173888 11173888 7463936 84549632 169869312 050905122131

631 84549632 84549632 72163328 72163328 050905122131

629 84549632 8634368 84549632 84549632 34603008 050905122131

634 39420928 39420928 35536896 35536896 050905122131

632 11173888 11173888 7463936 84549632 169869312 050905122132

631 84549632 84549632 72163328 72163328 050905122132

629 84549632 8634368 84549632 84549632 39845888 050905122132

634 39420928 39420928 35536896 35536896 050905122132

632 11173888 11173888 7463936 84549632 169869312 050905122133

631 84549632 84549632 72163328 72163328 050905122133

629 84549632 8634368 84549632 84549632 46137344 050905122133

634 39420928 39420928 35536896 35536896 050905122133

632 11173888 11173888 7463936 84549632 169869312 050905122134

631 84549632 84549632 72163328 72163328 050905122134

629 84549632 8634368 84549632 84549632 52428800 050905122134

634 39420928 39420928 35536896 35536896 050905122134

632 11173888 11173888 7463936 84549632 169869312 050905122135

631 84549632 84549632 72163328 72163328 050905122135

629 84549632 8634368 84549632 84549632 58720256 050905122135

634 39420928 39420928 35536896 35536896 050905122135

632 11173888 11173888 7463936 84549632 169869312 050905122136

631 84549632 84549632 72163328 72163328 050905122136

629 84549632 8634368 84549632 84549632 65011712 050905122136

634 39420928 39420928 35536896 35536896 050905122136

632 11173888 11173888 7463936 84549632 169869312 050905122137

631 84549632 84549632 72163328 72163328 050905122137

629 84549632 8634368 84549632 84549632 71303168 050905122137

634 39420928 39420928 35536896 35536896 050905122137

632 11173888 11173888 7463936 84549632 169869312 050905122138

631 84549632 84549632 72163328 72163328 050905122138

629 84549632 8634368 84549632 84549632 77594624 050905122138

634 39420928 39420928 35536896 35536896 050905122138

632 11173888 11173888 10413056 84549632 173015040 050905122139

631 84549632 84549632 73072640 73072640 050905122139

629 8634368 8634368 2581504 84549632 78643200 050905122139

634 39420928 39420928 36085760 36085760 050905122139

632 11173888 11173888 10413056 84549632 178257920 050905122140

631 84549632 84549632 73072640 73072640 050905122140

629 8634368 8634368 2581504 84549632 78643200 050905122140

634 39420928 39420928 36085760 36085760 050905122140

632 11173888 11173888 9356288 84549632 179306496 050905122141

631 84549632 84549632 76185600 76185600 050905122141

629 8634368 8634368 6890496 84549632 78643200 050905122141

634 39420928 39420928 37675008 37675008 050905122141

632 11173888 11173888 10667008 84549632 184549376 050905122142

631 84549632 84549632 76693504 76693504 050905122142

629 8634368 8634368 7554048 84549632 78643200 050905122142

634 39420928 39420928 37912576 37912576 050905122142

632 11173888 11173888 2991104 84549632 188743680 050905122144

631 84549632 84549632 77471744 77471744 050905122144

629 8634368 8634368 8381440 84549632 79691776 050905122144

634 39420928 39420928 38453248 38453248 050905122144

632 11173888 11173888 3515392 84549632 188743680 050905122145

631 84549632 84549632 77602816 77602816 050905122145

629 8634368 8634368 254976 84549632 85983232 050905122145

634 39420928 39420928 38518784 38518784 050905122145

632 11173888 11173888 10920960 84549632 189792256 050905122146

631 84549632 84549632 80748544 80748544 050905122146

629 8634368 8634368 3793920 84549632 85983232 050905122146

634 47708160 47708160 40263680 40263680 050905122146

632 11173888 11173888 10920960 84549632 196083712 050905122147

631 84549632 84549632 80748544 80748544 050905122147

629 8634368 8634368 3793920 84549632 85983232 050905122147

634 47708160 47708160 40263680 40263680 050905122147

632 13205504 13205504 8373248 84549632 197132288 050905122148

631 84549632 84549632 84148224 84148224 050905122148

629 8634368 8634368 7398400 84549632 85983232 050905122148

634 47708160 47708160 42131456 42131456 050905122148

632 13205504 13205504 9552896 84549632 197132288 050905122149

631 84549632 8634368 84549632 84549632 6291456 050905122149

629 8634368 8634368 7791616 84549632 85983232 050905122149

634 47708160 47708160 42352640 42352640 050905122149

632 13205504 13205504 9552896 84549632 197132288 050905122150

631 84549632 8634368 84549632 84549632 11534336 050905122150

629 8634368 8634368 7791616 84549632 85983232 050905122150

634 47708160 47708160 42352640 42352640 050905122150

632 13205504 13205504 9552896 84549632 197132288 050905122151

631 84549632 8634368 84549632 84549632 17825792 050905122151

629 8634368 8634368 7791616 84549632 85983232 050905122151

634 47708160 47708160 42352640 42352640 050905122151

632 13205504 13205504 9552896 84549632 197132288 050905122152

631 84549632 8634368 84549632 84549632 24117248 050905122152

629 8634368 8634368 7791616 84549632 85983232 050905122152

634 47708160 47708160 42352640 42352640 050905122152

632 13205504 13205504 9552896 84549632 197132288 050905122153

631 84549632 8634368 84549632 84549632 30408704 050905122153

629 8634368 8634368 7791616 84549632 85983232 050905122153

634 47708160 47708160 42352640 42352640 050905122153

632 13205504 13205504 9552896 84549632 197132288 050905122154

631 84549632 8634368 84549632 84549632 36700160 050905122154

629 8634368 8634368 7791616 84549632 85983232 050905122154

634 47708160 47708160 42352640 42352640 050905122154

632 13205504 13205504 9552896 84549632 197132288 050905122155

631 84549632 8634368 84549632 84549632 42991616 050905122155

629 8634368 8634368 7791616 84549632 85983232 050905122155

634 47708160 47708160 42352640 42352640 050905122155

632 13205504 13205504 9552896 84549632 197132288 050905122156

631 84549632 8634368 84549632 84549632 49283072 050905122156

629 8634368 8634368 7791616 84549632 85983232 050905122156

634 47708160 47708160 42352640 42352640 050905122156

632 13205504 13205504 9552896 84549632 197132288 050905122157

631 84549632 8634368 84549632 84549632 55574528 050905122157

629 8634368 8634368 7791616 84549632 85983232 050905122157

634 47708160 47708160 42352640 42352640 050905122157

632 13205504 13205504 9552896 84549632 197132288 050905122158

631 84549632 8634368 84549632 84549632 61865984 050905122158

629 8634368 8634368 7791616 84549632 85983232 050905122158

634 47708160 47708160 42352640 42352640 050905122158

632 13205504 13205504 9552896 84549632 197132288 050905122159

631 84549632 8634368 84549632 84549632 67108864 050905122159

629 8634368 8634368 7791616 84549632 85983232 050905122159

634 47708160 47708160 42352640 42352640 050905122159

632 13205504 13205504 9552896 84549632 197132288 050905122200

631 84549632 8634368 84549632 84549632 73400320 050905122200

629 8634368 8634368 7791616 84549632 85983232 050905122200

634 47708160 47708160 42352640 42352640 050905122200

632 13205504 13205504 9749504 84549632 197132288 050905122201

631 8634368 8634368 66560 84549632 77594624 050905122201

629 8634368 8634368 7857152 84549632 87031808 050905122201

634 47708160 47708160 42385408 42385408 050905122201

632 13205504 13205504 10404864 84549632 197132288 050905122202

631 8634368 8634368 312320 84549632 77594624 050905122202

629 8634368 8634368 508928 84549632 92274688 050905122202

634 47708160 47708160 42508288 42508288 050905122202

632 13205504 13205504 12698624 84549632 202375168 050905122203

631 8634368 8634368 1115136 84549632 77594624 050905122203

629 8634368 8634368 1950720 84549632 92274688 050905122203

634 47708160 47708160 42983424 42983424 050905122203

632 13205504 13205504 12698624 84549632 208666624 050905122204

631 8634368 8634368 1115136 84549632 77594624 050905122204

629 8634368 8634368 1950720 84549632 92274688 050905122204

634 47708160 47708160 42983424 42983424 050905122204

632 13205504 13205504 6489088 84549632 208666624 050905122205

631 8634368 8634368 3867648 84549632 77594624 050905122205

629 8634368 5586944 5030912 84549632 94371840 050905122205

634 47708160 47708160 44351488 44351488 050905122205

632 13205504 13205504 12190720 84549632 209715200 050905122206

631 8634368 8634368 5940224 84549632 77594624 050905122206

629 8634368 5586944 3195904 84549632 96468992 050905122206

634 47708160 47708160 45531136 45531136 050905122206

632 13205504 13205504 12190720 84549632 214958080 050905122207

631 8634368 8634368 5940224 84549632 77594624 050905122207

629 8634368 5586944 3195904 84549632 96468992 050905122207

634 47708160 47708160 45531136 45531136 050905122207

632 13205504 13205504 3916800 84549632 220200960 050905122208

631 8634368 8634368 7037952 84549632 77594624 050905122208

629 8634368 5586944 4572160 84549632 96468992 050905122208

634 47708160 47708160 46039040 46039040 050905122208

632 13205504 13205504 5751808 84549632 220200960 050905122209

631 8634368 8634368 7619584 84549632 78643200 050905122209

629 8634368 5586944 508928 84549632 100663296 050905122209

634 47708160 47708160 46317568 46317568 050905122209

632 13205504 13205504 5751808 84549632 220200960 050905122210

631 8634368 8634368 7619584 84549632 84934656 050905122210

629 8634368 5586944 508928 84549632 100663296 050905122210

634 47708160 47708160 46317568 46317568 050905122210

632 13205504 13205504 12698624 84549632 222298112 050905122211

631 8634368 8634368 3130368 84549632 84934656 050905122211

629 8634368 5586944 3589120 84549632 100663296 050905122211

634 47708160 47708160 47349760 47349760 050905122211

632 13205504 13205504 12698624 84549632 228589568 050905122212

631 8634368 8634368 3130368 84549632 84934656 050905122212

629 8634368 5586944 3589120 84549632 100663296 050905122212

634 47708160 47708160 47349760 47349760 050905122212

632 13205504 13205504 2884608 84549632 231735296 050905122213

631 8634368 8634368 4047872 84549632 84934656 050905122213

629 8634368 5586944 5030912 84549632 102760448 050905122213

634 57735168 57735168 47792128 47792128 050905122213

632 13205504 13205504 10159104 84549632 231735296 050905122214

631 8634368 8634368 6603776 84549632 84934656 050905122214

629 8634368 5586944 2933760 84549632 104857600 050905122214

634 57735168 57735168 48889856 48889856 050905122214

632 13205504 13205504 12190720 84549632 235929600 050905122216

631 8634368 8634368 7324672 84549632 84934656 050905122216

629 8634368 5586944 3523584 84549632 104857600 050905122216

634 57735168 57735168 49143808 49143808 050905122216

632 13205504 13205504 12190720 84549632 242221056 050905122217

631 8634368 8634368 7324672 84549632 84934656 050905122217

629 8634368 5586944 3523584 84549632 104857600 050905122217

634 57735168 57735168 49143808 49143808 050905122217

632 13205504 13205504 2679808 84549632 242221056 050905122218

631 8634368 8634368 8111104 84549632 90177536 050905122218

629 8634368 5586944 4506624 84549632 104857600 050905122218

634 57735168 57735168 49496064 49496064 050905122218

632 15237120 15237120 3597312 84549632 242221056 050905122219

631 8634368 8634368 1024 84549632 92274688 050905122219

629 8634368 5586944 5030912 84549632 108003328 050905122219

634 57735168 57735168 49676288 49676288 050905122219

632 15237120 15237120 10675200 84549632 242221056 050905122220

631 8634368 5586944 2950144 84549632 92274688 050905122220

629 8634368 5586944 4047872 84549632 109051904 050905122220

634 57735168 57735168 51208192 51208192 050905122220

632 15237120 15237120 13231104 84549632 242221056 050905122221

631 8634368 5586944 3802112 84549632 92274688 050905122221

629 8634368 5586944 508928 84549632 113246208 050905122221

634 57735168 57735168 51765248 51765248 050905122221

632 15237120 15237120 14476288 84549632 247463936 050905122222

631 8634368 5586944 4195328 84549632 92274688 050905122222

629 8634368 5586944 508928 84549632 113246208 050905122222

634 57735168 57735168 52011008 52011008 050905122222

632 15237120 15237120 14476288 84549632 253755392 050905122223

631 8634368 5586944 4195328 84549632 92274688 050905122223

629 8634368 5586944 508928 84549632 113246208 050905122223

634 57735168 57735168 52011008 52011008 050905122223

632 15237120 15237120 1049600 84549632 255852544 050905122224

631 8634368 5586944 4523008 84549632 95420416 050905122224

629 8634368 5586944 1098752 84549632 113246208 050905122224

634 57735168 57735168 52207616 52207616 050905122224

632 15237120 15237120 10355712 84549632 255852544 050905122225

631 8634368 5586944 3671040 84549632 96468992 050905122225

629 7618560 7618560 5686272 84549632 113246208 050905122225

634 57735168 57735168 54353920 54353920 050905122225

632 15237120 15237120 13566976 84549632 255852544 050905122226

631 8634368 5586944 1024 84549632 100663296 050905122226

629 7618560 7618560 7062528 84549632 114294784 050905122226

634 57735168 57735168 54796288 54796288 050905122226

632 15237120 15237120 14222336 84549632 255852544 050905122227

631 8634368 5586944 1024 84549632 100663296 050905122227

629 7618560 7618560 762880 84549632 119537664 050905122227

634 57735168 57735168 54861824 54861824 050905122227

632 15237120 15237120 14222336 84549632 262144000 050905122228

631 8634368 5586944 1024 84549632 100663296 050905122228

629 7618560 7618560 762880 84549632 119537664 050905122228

634 57735168 57735168 54861824 54861824 050905122228

632 15237120 15237120 14222336 84549632 268435456 050905122229

631 8634368 5586944 1024 84549632 100663296 050905122229

629 7618560 7618560 762880 84549632 119537664 050905122229

634 57735168 57735168 54861824 54861824 050905122229

632 15237120 15237120 8913920 84549632 268435456 050905122230

631 8634368 5586944 3671040 84549632 100663296 050905122230

629 7618560 7618560 4432896 84549632 119537664 050905122230

634 57735168 57735168 56377344 56377344 050905122230

632 15237120 15237120 12321792 84549632 268435456 050905122231

631 8634368 5586944 254976 84549632 104857600 050905122231

629 7618560 7618560 6202368 84549632 119537664 050905122231

634 57735168 57735168 57114624 57114624 050905122231

632 15237120 15237120 14222336 84549632 273678336 050905122232

631 8634368 5586944 1696768 84549632 104857600 050905122232

629 7618560 7618560 7185408 84549632 119537664 050905122232

634 57735168 57735168 57540608 57540608 050905122232

632 15237120 15237120 14222336 84549632 278921216 050905122233

631 8634368 5586944 1696768 84549632 104857600 050905122233

629 7618560 7618560 7185408 84549632 119537664 050905122233

634 57735168 57735168 57540608 57540608 050905122233

632 15237120 15237120 1024 84549632 282066944 050905122234

631 8634368 5586944 1827840 84549632 104857600 050905122234

629 7618560 7618560 7316480 84549632 122683392 050905122234

634 57735168 57735168 57573376 57573376 050905122234

632 15237120 15237120 5243904 84549632 282066944 050905122235

631 8634368 5586944 3990528 84549632 104857600 050905122235

629 7618560 7618560 2221056 84549632 125829120 050905122235

634 69868544 69868544 58580992 58580992 050905122235

632 15237120 15237120 7930880 84549632 282066944 050905122236

631 8634368 5586944 508928 84549632 109051904 050905122236

629 7618560 7618560 3466240 84549632 125829120 050905122236

634 69868544 69868544 59080704 59080704 050905122236

632 15237120 15237120 14222336 84549632 284164096 050905122237

631 8634368 5586944 2933760 84549632 109051904 050905122237

629 7618560 7618560 6153216 84549632 125829120 050905122237

634 69868544 69868544 60358656 60358656 050905122237

632 15237120 15237120 14222336 84549632 290455552 050905122238

631 8634368 5586944 2933760 84549632 109051904 050905122238

629 7618560 7618560 6153216 84549632 125829120 050905122238

634 69868544 69868544 60358656 60358656 050905122238

632 17268736 17268736 1836032 84549632 294649856 050905122239

631 8634368 5586944 3523584 84549632 109051904 050905122239

629 7618560 7618560 6808576 84549632 125829120 050905122239

634 69868544 69868544 60645376 60645376 050905122239

632 17268736 17268736 2032640 84549632 294649856 050905122240

631 8634368 5586944 3720192 84549632 109051904 050905122240

629 7618560 7618560 254976 84549632 132120576 050905122240

634 69868544 69868544 60702720 60702720 050905122240

632 17268736 17268736 5571584 84549632 294649856 050905122241

631 8634368 5586944 762880 84549632 113246208 050905122241

629 7618560 7618560 2024448 84549632 132120576 050905122241

634 69868544 69868544 61325312 61325312 050905122241

632 17268736 17268736 16253952 84549632 295698432 050905122242

631 7618560 7618560 4891648 84549632 113246208 050905122242

629 7618560 7618560 6480896 84549632 132120576 050905122242

634 69868544 69868544 62922752 62922752 050905122242

632 17268736 17268736 16253952 84549632 301989888 050905122243

631 7618560 7618560 4891648 84549632 113246208 050905122243

629 7618560 7618560 6480896 84549632 132120576 050905122243

634 69868544 69868544 62922752 62922752 050905122243

632 17268736 17268736 16253952 84549632 307232768 050905122244

631 7618560 7618560 4891648 84549632 113246208 050905122244

629 7618560 7618560 6480896 84549632 132120576 050905122244

634 69868544 69868544 62922752 62922752 050905122244

632 17268736 17268736 1745920 84549632 310378496 050905122245

631 7618560 7618560 5350400 84549632 113246208 050905122245

629 7618560 7618560 6808576 84549632 135266304 050905122245

634 69868544 69868544 63094784 63094784 050905122245

632 17268736 17268736 6202368 84549632 310378496 050905122246

631 7618560 7618560 7316480 84549632 114294784 050905122246

629 9142272 9142272 2352128 84549632 138412032 050905122246

634 69868544 69868544 63791104 63791104 050905122246

632 17268736 17268736 6857728 84549632 310378496 050905122247

631 7618560 7618560 1024 84549632 119537664 050905122247

629 9142272 9142272 2548736 84549632 138412032 050905122247

634 69868544 69868544 63889408 63889408 050905122247

632 17268736 17268736 10724352 84549632 311427072 050905122248

631 5079040 5079040 5335040 84549632 120586240 050905122248

629 9142272 9142272 3924992 84549632 139460608 050905122248

634 64430080 64430080 64430080 64430080 050905122248

632 17268736 17268736 10724352 84549632 314572800 050905122249

631 5079040 5079040 5335040 84549632 120586240 050905122249

629 6602752 6602752 7113728 84549632 141557760 050905122249

634 64430080 64430080 64430080 64430080 050905122249

632 14729216 14729216 14734336 84549632 318767104 050905122250

631 5079040 5079040 5335040 84549632 120586240 050905122250

629 6602752 6602752 7113728 84549632 141557760 050905122250

634 64430080 64430080 64430080 64430080 050905122250

632 14729216 14729216 14734336 84549632 318767104 050905122252

631 5079040 5079040 5335040 84549632 120586240 050905122252

629 6602752 6602752 7113728 84549632 141557760 050905122252

634 64430080 64430080 64430080 64430080 050905122252

632 14729216 14729216 14734336 84549632 318767104 050905122253

631 5079040 5079040 5335040 84549632 120586240 050905122253

629 6602752 6602752 7113728 84549632 141557760 050905122253

634 64430080 64430080 64430080 64430080 050905122253

632 14729216 14729216 14734336 84549632 318767104 050905122254

631 5079040 5079040 5335040 84549632 120586240 050905122254

629 6602752 6602752 7113728 84549632 141557760 050905122254

634 64430080 64430080 64430080 64430080 050905122254

632 14729216 14729216 14734336 84549632 318767104 050905122255

631 5079040 5079040 5335040 84549632 120586240 050905122255

629 6602752 6602752 7113728 84549632 141557760 050905122255

634 64430080 64430080 64430080 64430080 050905122255

632 14729216 14729216 14734336 84549632 318767104 050905122256

631 5079040 5079040 5335040 84549632 120586240 050905122256

629 6602752 6602752 7113728 84549632 141557760 050905122256

634 64430080 64430080 64430080 64430080 050905122256

632 14729216 14729216 14734336 84549632 318767104 050905122257

631 5079040 5079040 5335040 84549632 120586240 050905122257

629 6602752 6602752 7113728 84549632 141557760 050905122257

634 64430080 64430080 64430080 64430080 050905122257

632 14729216 14729216 14734336 84549632 318767104 050905122258

631 5079040 5079040 5335040 84549632 120586240 050905122258

629 6602752 6602752 7113728 84549632 141557760 050905122258

634 64430080 64430080 64430080 64430080 050905122258

632 14729216 14729216 14734336 84549632 318767104 050905122259

631 5079040 5079040 5335040 84549632 120586240 050905122259

629 6602752 6602752 7113728 84549632 141557760 050905122259

634 64430080 64430080 64430080 64430080 050905122259

632 14729216 14729216 14734336 84549632 318767104 050905122300

631 5079040 5079040 5335040 84549632 120586240 050905122300

629 6602752 6602752 7113728 84549632 141557760 050905122300

634 64430080 64430080 64430080 64430080 050905122300

632 14729216 14729216 14734336 84549632 318767104 050905122301

631 5079040 5079040 5335040 84549632 120586240 050905122301

629 6602752 6602752 7113728 84549632 141557760 050905122301

634 64430080 64430080 64430080 64430080 050905122301

632 14729216 14729216 14734336 84549632 318767104 050905122302

631 5079040 5079040 5335040 84549632 120586240 050905122302

629 6602752 6602752 7113728 84549632 141557760 050905122302

634 64430080 64430080 64430080 64430080 050905122302

632 14729216 14729216 14734336 84549632 318767104 050905122303

631 5079040 5079040 5335040 84549632 120586240 050905122303

629 6602752 6602752 7113728 84549632 141557760 050905122303

634 64430080 64430080 64430080 64430080 050905122303

632 14729216 14729216 14734336 84549632 318767104 050905122304

631 5079040 5079040 5335040 84549632 120586240 050905122304

629 6602752 6602752 7113728 84549632 141557760 050905122304

634 64430080 64430080 64430080 64430080 050905122304

632 14729216 14729216 14734336 84549632 318767104 050905122305

631 5079040 5079040 5335040 84549632 120586240 050905122305

629 6602752 6602752 7113728 84549632 141557760 050905122305

634 64430080 64430080 64430080 64430080 050905122305

632 14729216 14729216 14734336 84549632 318767104 050905122306

631 5079040 5079040 5335040 84549632 120586240 050905122306

629 6602752 6602752 7113728 84549632 141557760 050905122306

634 64430080 64430080 64430080 64430080 050905122306

632 14729216 14729216 14734336 84549632 318767104 050905122307

631 5079040 5079040 5335040 84549632 120586240 050905122307

629 6602752 6602752 7113728 84549632 141557760 050905122307

634 64430080 64430080 64430080 64430080 050905122307

632 14729216 14729216 14734336 84549632 318767104 050905122308

631 5079040 5079040 5335040 84549632 120586240 050905122308

629 6602752 6602752 7113728 84549632 141557760 050905122308

634 64430080 64430080 64430080 64430080 050905122308

632 14729216 14729216 14734336 84549632 318767104 050905122309

631 5079040 5079040 5335040 84549632 120586240 050905122309

629 6602752 6602752 7113728 84549632 141557760 050905122309

634 64430080 64430080 64430080 64430080 050905122309

632 14729216 14729216 14734336 84549632 318767104 050905122310

631 5079040 5079040 5335040 84549632 120586240 050905122310

629 6602752 6602752 7113728 84549632 141557760 050905122310

634 64430080 64430080 64430080 64430080 050905122310

632 14729216 14729216 14734336 84549632 318767104 050905122311

631 5079040 5079040 5335040 84549632 120586240 050905122311

629 6602752 6602752 7113728 84549632 141557760 050905122311

634 64430080 64430080 64430080 64430080 050905122311

632 14729216 14729216 14734336 84549632 318767104 050905122312

629 6602752 6602752 7113728 84549632 141557760 050905122312

634 64430080 64430080 64430080 64430080 050905122312

632 14729216 14729216 14734336 84549632 318767104 050905122313

629 6602752 6602752 7113728 84549632 141557760 050905122313

634 64430080 64430080 64430080 64430080 050905122313

632 14729216 14729216 14734336 84549632 318767104 050905122314

629 6602752 6602752 7113728 84549632 141557760 050905122314

634 64430080 64430080 64430080 64430080 050905122314

632 14729216 14729216 14734336 84549632 318767104 050905122315

629 6602752 6602752 7113728 84549632 141557760 050905122315

634 64430080 64430080 64430080 64430080 050905122315

632 14729216 14729216 14734336 84549632 318767104 050905122316

629 6602752 6602752 7113728 84549632 141557760 050905122316

634 64430080 64430080 64430080 64430080 050905122316

632 14729216 14729216 14734336 84549632 318767104 050905122317

629 6602752 6602752 7113728 84549632 141557760 050905122317

634 64430080 64430080 64430080 64430080 050905122317

632 14729216 14729216 14734336 84549632 318767104 050905122318

629 6602752 6602752 7113728 84549632 141557760 050905122318

634 64430080 64430080 64430080 64430080 050905122318

632 14729216 14729216 14734336 84549632 318767104 050905122319

629 6602752 6602752 7113728 84549632 141557760 050905122319

634 64430080 64430080 64430080 64430080 050905122319

632 14729216 14729216 14734336 84549632 318767104 050905122320

629 6602752 6602752 7113728 84549632 141557760 050905122320

634 64430080 64430080 64430080 64430080 050905122320

632 14729216 14729216 14734336 84549632 318767104 050905122321

629 6602752 6602752 7113728 84549632 141557760 050905122321

634 64430080 64430080 64430080 64430080 050905122321

632 14729216 14729216 14734336 84549632 318767104 050905122322

629 6602752 6602752 7113728 84549632 141557760 050905122322

634 64430080 64430080 64430080 64430080 050905122322

632 14729216 14729216 14734336 84549632 318767104 050905122323

629 6602752 6602752 7113728 84549632 141557760 050905122323

632 14729216 14729216 14734336 84549632 318767104 050905122324

629 6602752 6602752 7113728 84549632 141557760 050905122324

632 14729216 14729216 14734336 84549632 318767104 050905122325

629 6602752 6602752 7113728 84549632 141557760 050905122325

632 14729216 14729216 14734336 84549632 318767104 050905122326

629 6602752 6602752 7113728 84549632 141557760 050905122326

632 14729216 14729216 14734336 84549632 318767104 050905122327

629 6602752 6602752 7113728 84549632 141557760 050905122327

632 14729216 14729216 14734336 84549632 318767104 050905122328

629 6602752 6602752 7113728 84549632 141557760 050905122328

632 14729216 14729216 14734336 84549632 318767104 050905122329

629 6602752 6602752 7113728 84549632 141557760 050905122329

632 14729216 14729216 14734336 84549632 318767104 050905122331

629 6602752 6602752 7113728 84549632 141557760 050905122331

632 14729216 14729216 14734336 84549632 318767104 050905122332

629 6602752 6602752 7113728 84549632 141557760 050905122332

632 14729216 14729216 14734336 84549632 318767104 050905122333

629 6602752 6602752 7113728 84549632 141557760 050905122333

632 14729216 14729216 14734336 84549632 318767104 050905122334

629 6602752 6602752 7113728 84549632 141557760 050905122334

632 14729216 14729216 14734336 84549632 318767104 050905122335

629 6602752 6602752 7113728 84549632 141557760 050905122335

632 14729216 14729216 14734336 84549632 318767104 050905122336

629 6602752 6602752 7113728 84549632 141557760 050905122336

632 14729216 14729216 14734336 84549632 318767104 050905122337

629 6602752 6602752 7113728 84549632 141557760 050905122337

632 14729216 14729216 14734336 84549632 318767104 050905122338

629 6602752 6602752 7113728 84549632 141557760 050905122338

632 14729216 14729216 14734336 84549632 318767104 050905122339

629 6602752 6602752 7113728 84549632 141557760 050905122339

632 14729216 14729216 14734336 84549632 318767104 050905122340

629 6602752 6602752 7113728 84549632 141557760 050905122340

632 14729216 14729216 14734336 84549632 318767104 050905122341

629 6602752 6602752 7113728 84549632 141557760 050905122341

632 14729216 14729216 14734336 84549632 318767104 050905122342

629 6602752 6602752 7113728 84549632 141557760 050905122342

632 14729216 14729216 14734336 84549632 318767104 050905122343

629 6602752 6602752 7113728 84549632 141557760 050905122343

632 14729216 14729216 14734336 84549632 318767104 050905122344

629 6602752 6602752 7113728 84549632 141557760 050905122344

632 14729216 14729216 14734336 84549632 318767104 050905122345

629 6602752 6602752 7113728 84549632 141557760 050905122345

632 14729216 14729216 14734336 84549632 318767104 050905122346

629 6602752 6602752 7113728 84549632 141557760 050905122346

632 14729216 14729216 14734336 84549632 318767104 050905122347

629 6602752 6602752 7113728 84549632 141557760 050905122347

632 14729216 14729216 14734336 84549632 318767104 050905122348

629 6602752 6602752 7113728 84549632 141557760 050905122348

632 14729216 14729216 14734336 84549632 318767104 050905122349

629 6602752 6602752 7113728 84549632 141557760 050905122349

632 14729216 14729216 14734336 84549632 318767104 050905122350

629 6602752 6602752 7113728 84549632 141557760 050905122350

632 14729216 14729216 14734336 84549632 318767104 050905122351

629 6602752 6602752 7113728 84549632 141557760 050905122351

632 14729216 14729216 14734336 84549632 318767104 050905122352

629 6602752 6602752 7113728 84549632 141557760 050905122352

632 14729216 14729216 14734336 84549632 318767104 050905122353

629 6602752 6602752 7113728 84549632 141557760 050905122353

632 14729216 14729216 14734336 84549632 318767104 050905122354

629 6602752 6602752 7113728 84549632 141557760 050905122354

632 14729216 14729216 14734336 84549632 318767104 050905122355

629 6602752 6602752 7113728 84549632 141557760 050905122355

632 14729216 14729216 14734336 84549632 318767104 050905122356

629 6602752 6602752 7113728 84549632 141557760 050905122356

632 14729216 14729216 14734336 84549632 318767104 050905122357

629 6602752 6602752 7113728 84549632 141557760 050905122357

632 14729216 14729216 14734336 84549632 318767104 050905122358

629 6602752 6602752 7113728 84549632 141557760 050905122358

632 14729216 14729216 14734336 84549632 318767104 050905122359

629 6602752 6602752 7113728 84549632 141557760 050905122359

632 14729216 14729216 14734336 84549632 318767104 050905122400

629 6602752 6602752 7113728 84549632 141557760 050905122400

632 14729216 14729216 14734336 84549632 318767104 050905122401

629 6602752 6602752 7113728 84549632 141557760 050905122401

632 14729216 14729216 14734336 84549632 318767104 050905122402

629 6602752 6602752 7113728 84549632 141557760 050905122402

632 14729216 14729216 14734336 84549632 318767104 050905122403

629 6602752 6602752 7113728 84549632 141557760 050905122403

632 14729216 14729216 14734336 84549632 318767104 050905122404

629 6602752 6602752 7113728 84549632 141557760 050905122404

632 14729216 14729216 14734336 84549632 318767104 050905122405

629 6602752 6602752 7113728 84549632 141557760 050905122405

632 14729216 14729216 14734336 84549632 318767104 050905122406

629 6602752 6602752 7113728 84549632 141557760 050905122406

632 14729216 14729216 14734336 84549632 318767104 050905122407

629 6602752 6602752 7113728 84549632 141557760 050905122407

632 14729216 14729216 14734336 84549632 318767104 050905122409

629 6602752 6602752 7113728 84549632 141557760 050905122409

632 14729216 14729216 14734336 84549632 318767104 050905122410

629 6602752 6602752 7113728 84549632 141557760 050905122410

632 14729216 14729216 14734336 84549632 318767104 050905122411

629 6602752 6602752 7113728 84549632 141557760 050905122411

632 14729216 14729216 14734336 84549632 318767104 050905122412

629 6602752 6602752 7113728 84549632 141557760 050905122412

632 14729216 14729216 14734336 84549632 318767104 050905122413

629 6602752 6602752 7113728 84549632 141557760 050905122413

632 14729216 14729216 14734336 84549632 318767104 050905122414

629 6602752 6602752 7113728 84549632 141557760 050905122414

632 14729216 14729216 14734336 84549632 318767104 050905122415

629 6602752 6602752 7113728 84549632 141557760 050905122415

632 14729216 14729216 14734336 84549632 318767104 050905122416

629 6602752 6602752 7113728 84549632 141557760 050905122416

632 14729216 14729216 14734336 84549632 318767104 050905122417

629 6602752 6602752 7113728 84549632 141557760 050905122417

632 14729216 14729216 14734336 84549632 318767104 050905122418

629 6602752 6602752 7113728 84549632 141557760 050905122418

632 14729216 14729216 14734336 84549632 318767104 050905122419

629 6602752 6602752 7113728 84549632 141557760 050905122419

629 6602752 6602752 7113728 84549632 141557760 050905122420

629 6602752 6602752 7113728 84549632 141557760 050905122421

629 6602752 6602752 7113728 84549632 141557760 050905122422

629 6602752 6602752 7113728 84549632 141557760 050905122423

629 6602752 6602752 7113728 84549632 141557760 050905122424

629 6602752 6602752 7113728 84549632 141557760 050905122425

629 6602752 6602752 7113728 84549632 141557760 050905122426

629 6602752 6602752 7113728 84549632 141557760 050905122427

629 6602752 6602752 7113728 84549632 141557760 050905122428

629 6602752 6602752 7113728 84549632 141557760 050905122429

629 6602752 6602752 7113728 84549632 141557760 050905122430

629 6602752 6602752 7113728 84549632 141557760 050905122431

629 6602752 6602752 7113728 84549632 141557760 050905122432

629 6602752 6602752 7113728 84549632 141557760 050905122433

629 6602752 6602752 7113728 84549632 141557760 050905122434

629 6602752 6602752 7113728 84549632 141557760 050905122435

629 6602752 6602752 7113728 84549632 141557760 050905122436

629 6602752 6602752 7113728 84549632 141557760 050905122437

629 6602752 6602752 7113728 84549632 141557760 050905122438

629 6602752 6602752 7113728 84549632 141557760 050905122439

629 6602752 6602752 7113728 84549632 141557760 050905122440

629 6602752 6602752 7113728 84549632 141557760 050905122441

629 6602752 6602752 7113728 84549632 141557760 050905122442

726 rows selected.

SQL> spool off

[pic]

|Predicted |Actual |

|83.25 |80.63281 |

PGA_AGGREGATE_TARGET 4g, 400M _pga_max_size, 333M _smm_px_max_size, 5 DOP

SQL> show parameters

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

O7_DICTIONARY_ACCESSIBILITY boolean FALSE

__db_cache_size big integer 684M

__java_pool_size big integer 8M

__large_pool_size big integer 4M

__shared_pool_size big integer 224M

_pga_max_size big integer 400M

_smm_px_max_size integer 340992

active_instance_count integer

aq_tm_processes integer 0

archive_lag_target integer 0

asm_diskgroups string

asm_diskstring string

asm_power_limit integer 1

audit_file_dest string /home/oracle/DBHome1/rdbms/aud

it

audit_sys_operations boolean FALSE

audit_trail string TRUE

background_core_dump string partial

background_dump_dest string /home/oracle/admin/test/bdump

backup_tape_io_slaves boolean FALSE

bitmap_merge_area_size integer 1048576

blank_trimming boolean FALSE

buffer_pool_keep string

buffer_pool_recycle string

circuits integer

cluster_database boolean FALSE

cluster_database_instances integer 1

cluster_interconnects string

commit_point_strength integer 1

compatible string 10.1.0.2.0

control_file_record_keep_time integer 7

control_files string /home/oracle/oradata/test/con

trol01.ctl, /home/oracle/orada

ta/test/control02.ctl, /home/

oracle/oradata/test/control03

.ctl

core_dump_dest string /home/oracle/admin/test/cdump

cpu_count integer 2

create_bitmap_area_size integer 8388608

create_stored_outlines string

cursor_sharing string EXACT

cursor_space_for_time boolean FALSE

db_16k_cache_size big integer 0

db_2k_cache_size big integer 0

db_32k_cache_size big integer 0

db_4k_cache_size big integer 0

db_8k_cache_size big integer 0

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

db_block_buffers integer 0

db_block_checking boolean FALSE

db_block_checksum boolean TRUE

db_block_size integer 8192

db_cache_advice string ON

db_cache_size big integer 0

db_create_file_dest string

db_create_online_log_dest_1 string

db_create_online_log_dest_2 string

db_create_online_log_dest_3 string

db_create_online_log_dest_4 string

db_create_online_log_dest_5 string

db_domain string

db_file_multiblock_read_count integer 32

db_file_name_convert string

db_files integer 200

db_flashback_retention_target integer 1440

db_keep_cache_size big integer 0

db_name string test

db_recovery_file_dest string /home/oracle/flash_recovery_ar

ea

db_recovery_file_dest_size big integer 2G

db_recycle_cache_size big integer 0

db_unique_name string test

db_writer_processes integer 7

dbwr_io_slaves integer 0

ddl_wait_for_locks boolean FALSE

dg_broker_config_file1 string /home/oracle/DBHome1/dbs/dr1hf

dwh.dat

dg_broker_config_file2 string /home/oracle/DBHome1/dbs/dr2hf

dwh.dat

dg_broker_start boolean FALSE

disk_asynch_io boolean TRUE

dispatchers string (PROTOCOL=TCP) (SERVICE=testX

DB)

distributed_lock_timeout integer 60

dml_locks integer 2924

drs_start boolean FALSE

enqueue_resources integer 3000

event string

fal_client string

fal_server string

fast_start_io_target integer 0

fast_start_mttr_target integer 0

fast_start_parallel_rollback string LOW

file_mapping boolean FALSE

fileio_network_adapters string

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

filesystemio_options string none

fixed_date string

gc_files_to_locks string

gcs_server_processes integer 0

global_context_pool_size string

global_names boolean FALSE

hash_area_size integer 131072

hi_shared_memory_address integer 0

hs_autoregister boolean TRUE

ifile file

instance_groups string

instance_name string test

instance_number integer 0

instance_type string RDBMS

java_max_sessionspace_size integer 0

java_pool_size big integer 0

java_soft_sessionspace_limit integer 0

job_queue_processes integer 10

large_pool_size big integer 0

ldap_directory_access string NONE

license_max_sessions integer 0

license_max_users integer 0

license_sessions_warning integer 0

local_listener string

lock_name_space string

lock_sga boolean FALSE

log_archive_config string

log_archive_dest string

log_archive_dest_1 string

log_archive_dest_10 string

log_archive_dest_2 string

log_archive_dest_3 string

log_archive_dest_4 string

log_archive_dest_5 string

log_archive_dest_6 string

log_archive_dest_7 string

log_archive_dest_8 string

log_archive_dest_9 string

log_archive_dest_state_1 string enable

log_archive_dest_state_10 string enable

log_archive_dest_state_2 string enable

log_archive_dest_state_3 string enable

log_archive_dest_state_4 string enable

log_archive_dest_state_5 string enable

log_archive_dest_state_6 string enable

log_archive_dest_state_7 string enable

log_archive_dest_state_8 string enable

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

log_archive_dest_state_9 string enable

log_archive_duplex_dest string

log_archive_format string %t_%s_%r.dbf

log_archive_local_first boolean TRUE

log_archive_max_processes integer 2

log_archive_min_succeed_dest integer 1

log_archive_start boolean FALSE

log_archive_trace integer 0

log_buffer integer 524288

log_checkpoint_interval integer 0

log_checkpoint_timeout integer 1800

log_checkpoints_to_alert boolean FALSE

log_file_name_convert string

logmnr_max_persistent_sessions integer 1

max_commit_propagation_delay integer 700

max_dispatchers integer

max_dump_file_size string UNLIMITED

max_enabled_roles integer 150

max_shared_servers integer

nls_calendar string

nls_comp string

nls_currency string

nls_date_format string

nls_date_language string

nls_dual_currency string

nls_iso_currency string

nls_language string AMERICAN

nls_length_semantics string BYTE

nls_nchar_conv_excp string FALSE

nls_numeric_characters string

nls_sort string

nls_territory string AMERICA

nls_time_format string

nls_time_tz_format string

nls_timestamp_format string

nls_timestamp_tz_format string

object_cache_max_size_percent integer 10

object_cache_optimal_size integer 102400

olap_page_pool_size big integer 0

open_cursors integer 300

open_links integer 4

open_links_per_instance integer 4

optimizer_dynamic_sampling integer 2

optimizer_features_enable string 10.1.0.3

optimizer_index_caching integer 0

optimizer_index_cost_adj integer 100

optimizer_mode string ALL_ROWS

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

os_authent_prefix string ops$

os_roles boolean FALSE

parallel_adaptive_multi_user boolean TRUE

parallel_automatic_tuning boolean FALSE

parallel_execution_message_size integer 2148

parallel_instance_group string

parallel_max_servers integer 40

parallel_min_percent integer 0

parallel_min_servers integer 0

parallel_server boolean FALSE

parallel_server_instances integer 1

parallel_threads_per_cpu integer 2

pga_aggregate_target big integer 4G

plsql_code_type string INTERPRETED

plsql_compiler_flags string INTERPRETED, NON_DEBUG

plsql_debug boolean FALSE

plsql_native_library_dir string

plsql_native_library_subdir_count integer 0

plsql_optimize_level integer 2

plsql_v2_compatibility boolean FALSE

plsql_warnings string DISABLE:ALL

pre_page_sga boolean FALSE

processes integer 600

query_rewrite_enabled string TRUE

query_rewrite_integrity string enforced

rdbms_server_dn string

read_only_open_delayed boolean FALSE

recovery_parallelism integer 0

remote_archive_enable string true

remote_dependencies_mode string TIMESTAMP

remote_listener string

remote_login_passwordfile string EXCLUSIVE

remote_os_authent boolean FALSE

remote_os_roles boolean FALSE

replication_dependency_tracking boolean TRUE

resource_limit boolean FALSE

resource_manager_plan string

resumable_timeout integer 0

rollback_segments string

serial_reuse string disable

service_names string test

session_cached_cursors integer 0

session_max_open_files integer 10

sessions integer 665

sga_max_size big integer 1G

sga_target big integer 1G

shadow_core_dump string partial

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

shared_memory_address integer 0

shared_pool_reserved_size big integer 11744051

shared_pool_size big integer 0

shared_server_sessions integer

shared_servers integer 1

skip_unusable_indexes boolean TRUE

smtp_out_server string

sort_area_retained_size integer 0

sort_area_size integer 65536

sp_name string test

spfile string /home/oracle/DBHome1/dbs/spfil

etest.ora

sql92_security boolean FALSE

sql_trace boolean FALSE

sql_version string NATIVE

sqltune_category string DEFAULT

standby_archive_dest string ?/dbs/arch

standby_file_management string MANUAL

star_transformation_enabled string TRUE

statistics_level string TYPICAL

streams_pool_size big integer 100M

tape_asynch_io boolean TRUE

thread integer 0

timed_os_statistics integer 0

timed_statistics boolean TRUE

trace_enabled boolean TRUE

tracefile_identifier string

transactions integer 731

transactions_per_rollback_segment integer 5

undo_management string AUTO

undo_retention integer 900

undo_tablespace string UNDOTBSP2

use_indirect_data_buffers boolean FALSE

user_dump_dest string /home/oracle/admin/test/udump

utl_file_dir string

workarea_size_policy string AUTO

SQL> @get_undocs

Parameter Description Value

---------------------------------------- ------------------------- ----------

_pga_large_extent_size PGA large extent size 1048576

_pga_max_size Maximum size of the PGA 419430400

memory for one process

_smm_advice_enabled if TRUE, enable TRUE

v$pga_advice

_smm_advice_log_size overwrites default size 0

of the PGA advice

workarea history log

_smm_auto_cost_enabled if TRUE, use the AUTO TRUE

size policy cost

functions

_smm_auto_max_io_size Maximum IO size (in KB) 248

used by sort/hash-join in

auto mode

_smm_auto_min_io_size Minimum IO size (in KB) 56

used by sort/hash-join in

auto mode

_smm_bound overwrites memory manager 0

automatically computed

bound

_smm_control provides controls on the 0

memory manager

_smm_freeable_retain value in KB of the 5120

instance freeable PGA

memory to retain

_smm_max_size maximum work area size in 204800

auto mode (serial)

_smm_min_size minimum work area size in 1024

auto mode

_smm_px_max_size maximum work area size in 340992

auto mode (global)

_smm_retain_size work area retain size in 0

SGA for shared server

sessions (0 for AUTO)

Parameter Description Value

---------------------------------------- ------------------------- ----------

_smm_trace Turn on/off tracing for 0

SQL memory manager

15 rows selected.

Elapsed: 00:00:00.00

SQL> set autotrace traceonly

SQL> get test_parallel

1 select /*+ parallel(test_pga 5) */

2 * from test_pga

3* order by district_name,name

SQL> /

4547752 rows selected.

Elapsed: 00:04:19.20

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=29514 Card=4547752

Bytes=513895976)

1 0 PX COORDINATOR

2 1 PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=29514 Card=454 :Q1001

7752 Bytes=513895976)

3 2 SORT* (ORDER BY) (Cost=29514 Card=4547752 Bytes=513895 :Q1001

976)

4 3 PX RECEIVE* (Cost=3456 Card=4547752 Bytes=513895976) :Q1001

5 4 PX SEND* (RANGE) OF ':TQ10000' (Cost=3456 Card=454 :Q1000

7752 Bytes=513895976)

6 5 PX BLOCK* (ITERATOR) (Cost=3456 Card=4547752 Byt :Q1000

es=513895976)

7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000

st=3456 Card=4547752 Bytes=513895976)

2 PARALLEL_TO_SERIAL

3 PARALLEL_COMBINED_WITH_PARENT

4 PARALLEL_COMBINED_WITH_PARENT

5 PARALLEL_TO_PARALLEL

6 PARALLEL_COMBINED_WITH_CHILD

7 PARALLEL_COMBINED_WITH_PARENT

Statistics

----------------------------------------------------------

667 recursive calls

66 db block gets

79861 consistent gets

157598 physical reads

628 redo size

253806663 bytes sent via SQL*Net to client

3335525 bytes received via SQL*Net from client

303185 SQL*Net roundtrips to/from client

2 sorts (memory)

5 sorts (disk)

4547752 rows processed

SQL> spool off

SQL> select * from test_results;

SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW

----- -------------- ------------- --------------- ------------ ------------ ------------

618 3269632 3269632 2777088 2777088 050905122757

638 7056384 7056384 5857280 5857280 050905122757

634 18368512 18368512 15343616 15343616 050905122757

629 3269632 3269632 2875392 2875392 050905122757

632 4806656 4806656 4046848 4046848 050905122757

618 4806656 4806656 4481024 4481024 050905122758

638 10350592 10350592 8781824 8781824 050905122758

634 26911744 26911744 24248320 24248320 050905122758

629 4806656 4806656 4562944 4562944 050905122758

632 8547328 8547328 7061504 7061504 050905122758

618 7056384 7056384 5971968 5971968 050905122759

638 12532736 12532736 12165120 12165120 050905122759

634 39420928 39420928 33341440 33341440 050905122759

629 7056384 7056384 6397952 6397952 050905122759

632 10350592 10350592 9478144 9478144 050905122759

618 8547328 8547328 7979008 7979008 050905122800

638 18368512 18368512 16162816 16162816 050905122800

634 47708160 47708160 42303488 42303488 050905122800

629 10350592 10350592 8577024 8577024 050905122800

632 15173632 15173632 12582912 12582912 050905122800

618 10350592 10350592 9715712 9715712 050905122801

638 22234112 22234112 19546112 19546112 050905122801

634 57735168 57735168 50970624 50970624 050905122801

629 12532736 12532736 10387456 10387456 050905122801

632 15173632 15173632 14573568 14573568 050905122801

618 12532736 12532736 10895360 10895360 050905122802

638 26911744 26911744 22265856 22265856 050905122802

634 57735168 7110656 57737216 57737216 2097152 050905122802

629 12532736 12532736 11714560 11714560 050905122802

632 18368512 18368512 16621568 16621568 050905122802

618 12532736 12532736 10895360 10895360 050905122803

638 26911744 26911744 22265856 22265856 050905122803

634 57735168 7110656 57737216 57737216 8388608 050905122803

629 12532736 12532736 11714560 11714560 050905122803

632 18368512 18368512 16621568 16621568 050905122803

618 12532736 12532736 10895360 10895360 050905122804

638 26911744 26911744 22265856 22265856 050905122804

634 57735168 7110656 57737216 57737216 13631488 050905122804

629 12532736 12532736 11714560 11714560 050905122804

632 18368512 18368512 16621568 16621568 050905122804

618 12532736 12532736 10895360 10895360 050905122805

638 26911744 26911744 22265856 22265856 050905122805

634 57735168 7110656 57737216 57737216 19922944 050905122805

629 12532736 12532736 11714560 11714560 050905122805

632 18368512 18368512 16621568 16621568 050905122805

618 12532736 12532736 10895360 10895360 050905122806

638 26911744 26911744 22265856 22265856 050905122806

634 57735168 7110656 57737216 57737216 26214400 050905122806

629 12532736 12532736 11714560 11714560 050905122806

632 18368512 18368512 16621568 16621568 050905122806

618 12532736 12532736 10895360 10895360 050905122807

638 26911744 26911744 22265856 22265856 050905122807

634 57735168 7110656 57737216 57737216 32505856 050905122807

629 12532736 12532736 11714560 11714560 050905122807

632 18368512 18368512 16621568 16621568 050905122807

618 12532736 12532736 10895360 10895360 050905122808

638 26911744 26911744 22265856 22265856 050905122808

634 57735168 7110656 57737216 57737216 38797312 050905122808

629 12532736 12532736 11714560 11714560 050905122808

632 18368512 18368512 16621568 16621568 050905122808

618 12532736 12532736 10895360 10895360 050905122809

638 26911744 26911744 22265856 22265856 050905122809

634 57735168 7110656 57737216 57737216 44040192 050905122809

629 12532736 12532736 11714560 11714560 050905122809

632 18368512 18368512 16621568 16621568 050905122809

618 12532736 12532736 10895360 10895360 050905122810

638 26911744 26911744 22265856 22265856 050905122810

634 57735168 7110656 57737216 57737216 50331648 050905122810

629 12532736 12532736 11714560 11714560 050905122810

632 18368512 18368512 16621568 16621568 050905122810

618 12532736 12532736 11665408 11665408 050905122811

638 26911744 26911744 23625728 23625728 050905122811

634 7110656 7110656 4285440 57737216 53477376 050905122811

629 15173632 15173632 12550144 12550144 050905122811

632 18368512 18368512 17743872 17743872 050905122811

618 12532736 12532736 11935744 11935744 050905122812

638 26911744 26911744 24313856 24313856 050905122812

634 7110656 7110656 6095872 57737216 58720256 050905122812

629 15173632 15173632 12836864 12836864 050905122812

632 18368512 18368512 18178048 18178048 050905122812

618 15173632 15173632 13238272 13238272 050905122813

638 26911744 26911744 26411008 26411008 050905122813

634 7110656 5079040 6792192 57737216 61865984 050905122813

629 15173632 15173632 13680640 13680640 050905122813

632 22234112 22234112 19349504 19349504 050905122813

618 15173632 15173632 14311424 14311424 050905122814

638 32572416 32572416 27869184 27869184 050905122814

634 7110656 5079040 4572160 57737216 66060288 050905122814

629 15173632 15173632 14221312 14221312 050905122814

632 22234112 22234112 20234240 20234240 050905122814

618 15173632 15173632 14860288 14860288 050905122815

638 32572416 32572416 29433856 29433856 050905122815

634 7110656 5079040 4318208 57737216 69206016 050905122815

629 18368512 18368512 15196160 15196160 050905122815

632 22234112 22234112 21159936 21159936 050905122815

618 18368512 18368512 15482880 15482880 050905122816

638 32572416 32572416 31031296 31031296 050905122816

634 7110656 5079040 4826112 57737216 72351744 050905122816

629 18368512 18368512 15802368 15802368 050905122816

632 26911744 26911744 22306816 22306816 050905122816

618 18368512 18368512 16326656 16326656 050905122817

638 39420928 39420928 32817152 32817152 050905122817

634 6094848 6094848 5555200 57737216 76546048 050905122817

629 18368512 18368512 16867328 16867328 050905122817

632 26911744 26911744 23732224 23732224 050905122817

618 18368512 18368512 16678912 16678912 050905122818

638 39420928 39420928 33832960 33832960 050905122818

634 6094848 6094848 3400704 57737216 80740352 050905122818

629 18368512 18368512 17301504 17301504 050905122818

632 26911744 26911744 24256512 24256512 050905122818

618 18368512 18368512 17096704 17096704 050905122819

638 39420928 39420928 34938880 34938880 050905122819

634 6094848 6094848 1811456 57737216 84934656 050905122819

629 18368512 18368512 17678336 17678336 050905122819

632 26911744 26911744 24887296 24887296 050905122819

618 18368512 18368512 17907712 17907712 050905122820

638 39420928 39420928 36765696 36765696 050905122820

634 6094848 6094848 5809152 57737216 89128960 050905122820

629 22234112 22234112 18464768 18464768 050905122820

632 26911744 26911744 25935872 25935872 050905122820

618 22234112 22234112 19169280 19169280 050905122821

638 39420928 39420928 38846464 38846464 050905122821

634 8126464 8126464 7586816 57737216 91226112 050905122821

629 22234112 22234112 19742720 19742720 050905122821

632 32572416 32572416 27590656 27590656 050905122821

618 22234112 22234112 19505152 19505152 050905122822

638 47708160 47708160 39673856 39673856 050905122822

634 8126464 8126464 2532352 57737216 96468992 050905122822

629 22234112 22234112 20299776 20299776 050905122822

632 32572416 32572416 27951104 27951104 050905122822

618 22234112 22234112 20430848 20430848 050905122823

638 47708160 47708160 41598976 41598976 050905122823

634 8126464 8126464 7840768 57737216 99614720 050905122823

629 22234112 22234112 21291008 21291008 050905122823

632 32572416 32572416 29630464 29630464 050905122823

618 22234112 22234112 20955136 20955136 050905122824

638 47708160 47708160 42868736 42868736 050905122824

634 8126464 8126464 3785728 57737216 102760448 050905122824

629 22234112 22234112 21872640 21872640 050905122824

632 32572416 32572416 30523392 30523392 050905122824

618 22234112 22234112 21618688 21618688 050905122825

638 47708160 47708160 44343296 44343296 050905122825

634 8126464 8126464 7586816 57737216 106954752 050905122825

629 26911744 26911744 22552576 22552576 050905122825

632 32572416 32572416 31408128 31408128 050905122825

618 26911744 26911744 22642688 22642688 050905122826

638 47708160 47708160 46440448 46440448 050905122826

634 9142272 9142272 6923264 57737216 110100480 050905122826

629 26911744 26911744 24027136 24027136 050905122826

632 39420928 39420928 32940032 32940032 050905122826

618 26911744 26911744 23060480 23060480 050905122827

638 47708160 47708160 47300608 47300608 050905122827

634 9142272 9142272 8889344 57737216 114294784 050905122827

629 26911744 26911744 24403968 24403968 050905122827

632 39420928 39420928 33701888 33701888 050905122827

618 26911744 26911744 23953408 23953408 050905122829

638 57735168 57735168 49192960 49192960 050905122829

634 9142272 9142272 5235712 57737216 117440512 050905122829

629 26911744 26911744 25264128 25264128 050905122829

632 39420928 39420928 34856960 34856960 050905122829

618 26911744 26911744 24608768 24608768 050905122830

638 57735168 57735168 50241536 50241536 050905122830

634 9142272 9142272 8381440 57737216 121634816 050905122830

629 26911744 26911744 25788416 25788416 050905122830

632 39420928 39420928 35618816 35618816 050905122830

618 26911744 26911744 25264128 25264128 050905122831

638 57735168 57735168 52027392 52027392 050905122831

634 9142272 9142272 5161984 57737216 124780544 050905122831

629 26911744 26911744 26796032 26796032 050905122831

632 39420928 39420928 37126144 37126144 050905122831

618 26911744 26911744 25976832 25976832 050905122832

638 57735168 57735168 53673984 53673984 050905122832

634 9142272 9142272 8635392 57737216 127926272 050905122832

629 32572416 32572416 27631616 27631616 050905122832

632 39420928 39420928 38043648 38043648 050905122832

618 26911744 26911744 26337280 26337280 050905122833

638 57735168 57735168 55549952 55549952 050905122833

634 9142272 9142272 4064256 57737216 132120576 050905122833

629 32572416 32572416 28188672 28188672 050905122833

632 39420928 39420928 39051264 39051264 050905122833

618 32572416 32572416 27303936 27303936 050905122834

638 57735168 7110656 57737216 57737216 4194304 050905122834

634 10665984 10665984 8848384 57737216 132120576 050905122834

629 32572416 32572416 29130752 29130752 050905122834

632 47708160 47708160 40501248 40501248 050905122834

618 32572416 32572416 27303936 27303936 050905122835

638 57735168 7110656 57737216 57737216 9437184 050905122835

634 10665984 10665984 8848384 57737216 132120576 050905122835

629 32572416 32572416 29130752 29130752 050905122835

632 47708160 47708160 40501248 40501248 050905122835

618 32572416 32572416 27303936 27303936 050905122836

638 57735168 7110656 57737216 57737216 15728640 050905122836

634 10665984 10665984 8848384 57737216 132120576 050905122836

629 32572416 32572416 29130752 29130752 050905122836

632 47708160 47708160 40501248 40501248 050905122836

618 32572416 32572416 27303936 27303936 050905122837

638 57735168 7110656 57737216 57737216 22020096 050905122837

634 10665984 10665984 8848384 57737216 132120576 050905122837

629 32572416 32572416 29130752 29130752 050905122837

632 47708160 47708160 40501248 40501248 050905122837

618 32572416 32572416 27303936 27303936 050905122838

638 57735168 7110656 57737216 57737216 28311552 050905122838

634 10665984 10665984 8848384 57737216 132120576 050905122838

629 32572416 32572416 29130752 29130752 050905122838

632 47708160 47708160 40501248 40501248 050905122838

618 32572416 32572416 27303936 27303936 050905122839

638 57735168 7110656 57737216 57737216 34603008 050905122839

634 10665984 10665984 8848384 57737216 132120576 050905122839

629 32572416 32572416 29130752 29130752 050905122839

632 47708160 47708160 40501248 40501248 050905122839

618 32572416 32572416 27303936 27303936 050905122840

638 57735168 7110656 57737216 57737216 40894464 050905122840

634 10665984 10665984 8848384 57737216 132120576 050905122840

629 32572416 32572416 29130752 29130752 050905122840

632 47708160 47708160 40501248 40501248 050905122840

618 32572416 32572416 27303936 27303936 050905122841

638 57735168 7110656 57737216 57737216 47185920 050905122841

634 10665984 10665984 8848384 57737216 132120576 050905122841

629 32572416 32572416 29130752 29130752 050905122841

632 47708160 47708160 40501248 40501248 050905122841

618 32572416 32572416 27303936 27303936 050905122842

638 57735168 7110656 57737216 57737216 52428800 050905122842

634 10665984 10665984 8848384 57737216 132120576 050905122842

629 32572416 32572416 29130752 29130752 050905122842

632 47708160 47708160 40501248 40501248 050905122842

618 32572416 32572416 27426816 27426816 050905122843

638 7110656 7110656 295936 57737216 53477376 050905122843

634 10665984 10665984 9634816 57737216 137363456 050905122843

629 32572416 32572416 29261824 29261824 050905122843

632 47708160 47708160 40796160 40796160 050905122843

618 32572416 32572416 28106752 28106752 050905122844

638 7110656 7110656 1901568 57737216 53477376 050905122844

634 10665984 10665984 5112832 57737216 141557760 050905122844

629 32572416 32572416 29827072 29827072 050905122844

632 47708160 47708160 42041344 42041344 050905122844

618 32572416 32572416 29016064 29016064 050905122845

638 7110656 7110656 3556352 57737216 53477376 050905122845

634 10665984 10665984 9634816 57737216 144703488 050905122845

629 32572416 32572416 30597120 30597120 050905122845

632 47708160 47708160 43057152 43057152 050905122845

618 32572416 32572416 29671424 29671424 050905122846

638 7110656 7110656 4383744 57737216 53477376 050905122846

634 10665984 10665984 3318784 57737216 149946368 050905122846

629 32572416 32572416 30949376 30949376 050905122846

632 47708160 47708160 43810816 43810816 050905122846

618 32572416 32572416 30113792 30113792 050905122847

638 7110656 7110656 6095872 57737216 56623104 050905122847

634 10665984 10665984 6530048 57737216 149946368 050905122847

629 32572416 32572416 31571968 31571968 050905122847

632 47708160 47708160 44826624 44826624 050905122847

618 32572416 32572416 30728192 30728192 050905122848

638 7110656 7110656 2139136 57737216 58720256 050905122848

634 10665984 10665984 10396672 57737216 152043520 050905122848

629 32572416 32572416 32358400 32358400 050905122848

632 47708160 47708160 45826048 45826048 050905122848

618 32572416 32572416 30728192 30728192 050905122849

638 7110656 7110656 2139136 57737216 58720256 050905122849

634 10665984 10665984 10396672 57737216 158334976 050905122849

629 32572416 32572416 32358400 32358400 050905122849

632 47708160 47708160 45826048 45826048 050905122849

618 32572416 32572416 32448512 32448512 050905122850

638 7110656 7110656 6005760 57737216 58720256 050905122850

634 12697600 12697600 11715584 57737216 158334976 050905122850

629 39420928 39420928 34209792 34209792 050905122850

632 57735168 57735168 48168960 48168960 050905122850

618 32572416 32572416 32538624 32538624 050905122851

638 7110656 7110656 6267904 57737216 58720256 050905122851

634 12697600 12697600 12174336 57737216 164626432 050905122851

629 39420928 39420928 34349056 34349056 050905122851

632 57735168 57735168 48316416 48316416 050905122851

618 39420928 39420928 32776192 32776192 050905122852

638 7110656 5079040 6792192 57737216 59768832 050905122852

634 12697600 12697600 1631232 57737216 169869312 050905122852

629 39420928 39420928 34619392 34619392 050905122852

632 57735168 57735168 48758784 48758784 050905122852

618 39420928 39420928 33030144 33030144 050905122853

638 7110656 5079040 508928 57737216 65011712 050905122853

634 12697600 12697600 3073024 57737216 169869312 050905122853

629 39420928 39420928 34865152 34865152 050905122853

632 57735168 57735168 49324032 49324032 050905122853

618 39420928 39420928 34635776 34635776 050905122854

638 7110656 5079040 3785728 57737216 65011712 050905122854

634 12697600 12697600 10281984 57737216 169869312 050905122854

629 39420928 39420928 36085760 36085760 050905122854

632 57735168 57735168 51060736 51060736 050905122854

618 39420928 39420928 35020800 35020800 050905122855

638 7110656 5079040 4310016 57737216 65011712 050905122855

634 12697600 12697600 11920384 57737216 175112192 050905122855

629 39420928 39420928 36339712 36339712 050905122855

632 57735168 57735168 51707904 51707904 050905122855

618 39420928 39420928 35151872 35151872 050905122856

638 7110656 5079040 4441088 57737216 65011712 050905122856

634 12697600 12697600 1024 57737216 180355072 050905122856

629 39420928 39420928 36438016 36438016 050905122856

632 57735168 57735168 51863552 51863552 050905122856

618 39420928 39420928 35725312 35725312 050905122857

638 7110656 5079040 1172480 57737216 68157440 050905122857

634 12697600 12697600 3539968 57737216 180355072 050905122857

629 39420928 39420928 37003264 37003264 050905122857

632 57735168 57735168 52871168 52871168 050905122857

618 39420928 39420928 36962304 36962304 050905122858

638 7110656 5079040 3400704 57737216 68157440 050905122858

634 12697600 12697600 9634816 57737216 180355072 050905122858

629 39420928 39420928 38141952 38141952 050905122858

632 57735168 57735168 54755328 54755328 050905122858

618 39420928 39420928 37412864 37412864 050905122859

638 7110656 5079040 4318208 57737216 68157440 050905122859

634 12697600 12697600 11666432 57737216 184549376 050905122859

629 39420928 39420928 38764544 38764544 050905122859

632 57735168 57735168 55459840 55459840 050905122859

618 39420928 39420928 37412864 37412864 050905122900

638 7110656 5079040 4318208 57737216 68157440 050905122900

634 12697600 12697600 11666432 57737216 190840832 050905122900

629 39420928 39420928 38764544 38764544 050905122900

632 57735168 57735168 55459840 55459840 050905122900

618 39420928 39420928 37724160 37724160 050905122901

638 7110656 5079040 1049600 57737216 72351744 050905122901

634 12697600 12697600 3515392 57737216 190840832 050905122901

629 39420928 39420928 39346176 39346176 050905122901

632 57735168 57735168 56287232 56287232 050905122901

618 39420928 39420928 38780928 38780928 050905122903

638 7110656 5079040 3212288 57737216 72351744 050905122903

634 12697600 12697600 8627200 57737216 190840832 050905122903

629 47708160 47708160 40452096 40452096 050905122903

632 57735168 7110656 57737216 57737216 3145728 050905122903

618 39420928 39420928 38780928 38780928 050905122904

638 7110656 5079040 3212288 57737216 72351744 050905122904

634 12697600 12697600 8627200 57737216 190840832 050905122904

629 47708160 47708160 40452096 40452096 050905122904

632 57735168 7110656 57737216 57737216 9437184 050905122904

618 39420928 39420928 38780928 38780928 050905122905

638 7110656 5079040 3212288 57737216 72351744 050905122905

634 12697600 12697600 8627200 57737216 190840832 050905122905

629 47708160 47708160 40452096 40452096 050905122905

632 57735168 7110656 57737216 57737216 15728640 050905122905

618 39420928 39420928 38780928 38780928 050905122906

638 7110656 5079040 3212288 57737216 72351744 050905122906

634 12697600 12697600 8627200 57737216 190840832 050905122906

629 47708160 47708160 40452096 40452096 050905122906

632 57735168 7110656 57737216 57737216 22020096 050905122906

618 39420928 39420928 38780928 38780928 050905122907

638 7110656 5079040 3212288 57737216 72351744 050905122907

634 12697600 12697600 8627200 57737216 190840832 050905122907

629 47708160 47708160 40452096 40452096 050905122907

632 57735168 7110656 57737216 57737216 28311552 050905122907

618 39420928 39420928 38780928 38780928 050905122908

638 7110656 5079040 3212288 57737216 72351744 050905122908

634 12697600 12697600 8627200 57737216 190840832 050905122908

629 47708160 47708160 40452096 40452096 050905122908

632 57735168 7110656 57737216 57737216 33554432 050905122908

618 39420928 39420928 38780928 38780928 050905122909

638 7110656 5079040 3212288 57737216 72351744 050905122909

634 12697600 12697600 8627200 57737216 190840832 050905122909

629 47708160 47708160 40452096 40452096 050905122909

632 57735168 7110656 57737216 57737216 39845888 050905122909

618 39420928 39420928 38780928 38780928 050905122910

638 7110656 5079040 3212288 57737216 72351744 050905122910

634 12697600 12697600 8627200 57737216 190840832 050905122910

629 47708160 47708160 40452096 40452096 050905122910

632 57735168 7110656 57737216 57737216 46137344 050905122910

618 39420928 39420928 38780928 38780928 050905122911

638 7110656 5079040 3212288 57737216 72351744 050905122911

634 12697600 12697600 8627200 57737216 190840832 050905122911

629 47708160 47708160 40452096 40452096 050905122911

632 57735168 7110656 57737216 57737216 52428800 050905122911

618 39420928 39420928 39059456 39059456 050905122912

638 7110656 5079040 4064256 57737216 74448896 050905122912

634 12697600 12697600 10527744 57737216 190840832 050905122912

629 47708160 47708160 41041920 41041920 050905122912

632 7110656 7110656 1131520 57737216 53477376 050905122912

618 39420928 39420928 39297024 39297024 050905122913

638 7110656 5079040 1614848 57737216 75497472 050905122913

634 12697600 12697600 12428288 57737216 195035136 050905122913

629 47708160 47708160 41426944 41426944 050905122913

632 7110656 7110656 1467392 57737216 53477376 050905122913

618 39420928 39420928 39297024 39297024 050905122914

638 7110656 5079040 1614848 57737216 75497472 050905122914

634 12697600 12697600 12428288 57737216 200278016 050905122914

629 47708160 47708160 41426944 41426944 050905122914

632 7110656 7110656 1467392 57737216 53477376 050905122914

618 47708160 47708160 40747008 40747008 050905122915

638 6094848 6094848 4301824 57737216 75497472 050905122915

634 14221312 14221312 7652352 57737216 202375168 050905122915

629 47708160 47708160 42860544 42860544 050905122915

632 7110656 7110656 2950144 57737216 53477376 050905122915

618 47708160 47708160 41508864 41508864 050905122916

638 6094848 6094848 5809152 57737216 78643200 050905122916

634 14221312 14221312 12108800 57737216 202375168 050905122916

629 47708160 47708160 43753472 43753472 050905122916

632 7110656 7110656 4219904 57737216 53477376 050905122916

618 47708160 47708160 41910272 41910272 050905122917

638 6094848 6094848 254976 57737216 80740352 050905122917

634 14221312 14221312 13681664 57737216 204472320 050905122917

629 47708160 47708160 44146688 44146688 050905122917

632 7110656 7110656 4580352 57737216 53477376 050905122917

618 47708160 47708160 41910272 41910272 050905122918

638 6094848 6094848 254976 57737216 80740352 050905122918

634 14221312 14221312 13681664 57737216 211812352 050905122918

629 47708160 47708160 44146688 44146688 050905122918

632 7110656 7110656 4580352 57737216 53477376 050905122918

618 47708160 47708160 43147264 43147264 050905122919

638 6094848 6094848 3138560 57737216 80740352 050905122919

634 14221312 14221312 6407168 57737216 213909504 050905122919

629 47708160 47708160 45457408 45457408 050905122919

632 7110656 7110656 6341632 57737216 53477376 050905122919

618 47708160 47708160 43376640 43376640 050905122920

638 6094848 6094848 3531776 57737216 80740352 050905122920

634 14221312 14221312 7455744 57737216 213909504 050905122920

629 47708160 47708160 45629440 45629440 050905122920

632 7110656 7110656 6603776 57737216 58720256 050905122920

618 47708160 47708160 44474368 44474368 050905122921

638 6094848 6094848 5301248 57737216 82837504 050905122921

634 14221312 14221312 12895232 57737216 213909504 050905122921

629 47708160 47708160 46440448 46440448 050905122921

632 7110656 7110656 1434624 57737216 59768832 050905122921

618 47708160 47708160 44638208 44638208 050905122922

638 6094848 6094848 1024 57737216 84934656 050905122922

634 14221312 14221312 13681664 57737216 218103808 050905122922

629 47708160 47708160 46571520 46571520 050905122922

632 7110656 7110656 1631232 57737216 59768832 050905122922

618 47708160 47708160 44638208 44638208 050905122923

638 6094848 6094848 1024 57737216 84934656 050905122923

634 14221312 14221312 13681664 57737216 223346688 050905122923

629 47708160 47708160 46571520 46571520 050905122923

632 7110656 7110656 1631232 57737216 59768832 050905122923

618 47708160 47708160 45629440 45629440 050905122924

638 6094848 6094848 2753536 57737216 84934656 050905122924

634 14221312 14221312 7644160 57737216 226492416 050905122924

629 47708160 47708160 47521792 47521792 050905122924

632 7110656 7110656 3073024 57737216 59768832 050905122924

618 47708160 47708160 46784512 46784512 050905122925

638 6094848 6094848 5047296 57737216 85983232 050905122925

634 14221312 14221312 13935616 57737216 226492416 050905122925

629 57735168 57735168 48422912 48422912 050905122925

632 7110656 7110656 4842496 57737216 59768832 050905122925

618 47708160 47708160 46784512 46784512 050905122926

638 6094848 6094848 5047296 57737216 89128960 050905122926

634 14221312 14221312 13935616 57737216 229638144 050905122926

629 57735168 57735168 48422912 48422912 050905122926

632 7110656 7110656 4842496 57737216 59768832 050905122926

618 47708160 47708160 46800896 46800896 050905122927

638 6094848 6094848 508928 57737216 90177536 050905122927

634 14221312 14221312 13935616 57737216 234881024 050905122927

629 57735168 57735168 48422912 48422912 050905122927

632 7110656 7110656 4842496 57737216 59768832 050905122927

618 47708160 47708160 47366144 47366144 050905122928

638 6094848 6094848 1885184 57737216 90177536 050905122928

634 14221312 14221312 3474432 57737216 238026752 050905122928

629 57735168 57735168 49037312 49037312 050905122928

632 7110656 7110656 5825536 57737216 59768832 050905122928

618 47708160 47708160 47661056 47661056 050905122929

638 6094848 6094848 2802688 57737216 90177536 050905122929

634 14221312 14221312 5833728 57737216 238026752 050905122929

629 57735168 57735168 49528832 49528832 050905122929

632 7110656 5079040 6284288 57737216 63963136 050905122929

618 57735168 57735168 49233920 49233920 050905122930

638 8126464 8126464 5686272 57737216 90177536 050905122930

634 16252928 16252928 14418944 57737216 238026752 050905122930

629 57735168 57735168 51118080 51118080 050905122930

632 7110656 5079040 2860032 57737216 65011712 050905122930

618 57735168 57735168 49315840 49315840 050905122931

638 8126464 8126464 6013952 57737216 90177536 050905122931

634 16252928 16252928 15205376 57737216 243269632 050905122931

629 57735168 57735168 51273728 51273728 050905122931

632 7110656 5079040 3122176 57737216 65011712 050905122931

618 57735168 57735168 49315840 49315840 050905122932

638 8126464 8126464 6013952 57737216 90177536 050905122932

634 16252928 16252928 15205376 57737216 249561088 050905122932

629 57735168 57735168 51273728 51273728 050905122932

632 7110656 5079040 3122176 57737216 65011712 050905122932

618 57735168 57735168 50003968 50003968 050905122933

638 8126464 8126464 7586816 57737216 90177536 050905122933

634 16252928 16252928 4711424 57737216 252706816 050905122933

629 57735168 57735168 52174848 52174848 050905122933

632 7110656 5079040 4105216 57737216 65011712 050905122933

618 57735168 57735168 50028544 50028544 050905122934

638 8126464 8126464 254976 57737216 96468992 050905122934

634 16252928 16252928 4842496 57737216 252706816 050905122934

629 57735168 57735168 52215808 52215808 050905122934

632 7110656 5079040 4170752 57737216 65011712 050905122934

618 57735168 57735168 51306496 51306496 050905122935

638 8126464 8126464 2286592 57737216 96468992 050905122935

634 16252928 16252928 10281984 57737216 252706816 050905122935

629 57735168 57735168 53346304 53346304 050905122935

632 7110656 5079040 254976 57737216 69206016 050905122935

618 57735168 57735168 52158464 52158464 050905122936

638 8126464 8126464 4121600 57737216 96468992 050905122936

634 16252928 16252928 15459328 57737216 254803968 050905122936

629 57735168 57735168 54255616 54255616 050905122936

632 7110656 5079040 2089984 57737216 69206016 050905122936

618 57735168 57735168 52158464 52158464 050905122937

638 8126464 8126464 4121600 57737216 96468992 050905122937

634 16252928 16252928 15459328 57737216 261095424 050905122937

629 57735168 57735168 54255616 54255616 050905122937

632 7110656 5079040 2089984 57737216 69206016 050905122937

618 57735168 57735168 52379648 52379648 050905122939

638 8126464 8126464 4449280 57737216 96468992 050905122939

634 16252928 16252928 1500160 57737216 266338304 050905122939

629 57735168 57735168 54419456 54419456 050905122939

632 7110656 5079040 2417664 57737216 69206016 050905122939

618 57735168 57735168 53436416 53436416 050905122940

638 8126464 8126464 6939648 57737216 96468992 050905122940

634 16252928 16252928 7595008 57737216 266338304 050905122940

629 57735168 57735168 55599104 55599104 050905122940

632 7110656 5079040 4318208 57737216 71303168 050905122940

618 57735168 57735168 53608448 53608448 050905122941

638 8126464 8126464 7332864 57737216 100663296 050905122941

634 16252928 16252928 9036800 57737216 266338304 050905122941

629 57735168 57735168 55902208 55902208 050905122941

632 7110656 5079040 1024 57737216 72351744 050905122941

618 57735168 57735168 54353920 54353920 050905122942

638 8126464 8126464 1967104 57737216 102760448 050905122942

634 16252928 16252928 14083072 57737216 266338304 050905122942

629 57735168 57735168 56868864 56868864 050905122942

632 7110656 5079040 1639424 57737216 72351744 050905122942

618 57735168 57735168 54583296 54583296 050905122943

638 8126464 8126464 2425856 57737216 102760448 050905122943

634 16252928 16252928 15459328 57737216 271581184 050905122943

629 57735168 57735168 57163776 57163776 050905122943

632 7110656 5079040 1967104 57737216 72351744 050905122943

618 57735168 57735168 54583296 54583296 050905122944

638 8126464 8126464 2425856 57737216 102760448 050905122944

634 16252928 16252928 15459328 57737216 277872640 050905122944

629 57735168 57735168 57163776 57163776 050905122944

632 7110656 5079040 1967104 57737216 72351744 050905122944

618 57735168 57735168 55132160 55132160 050905122945

638 8126464 8126464 3736576 57737216 102760448 050905122945

634 16252928 16252928 3662848 57737216 279969792 050905122945

629 57735168 7110656 57737216 57737216 2097152 050905122945

632 7110656 5079040 2819072 57737216 72351744 050905122945

618 57735168 57735168 55132160 55132160 050905122946

638 8126464 8126464 3736576 57737216 102760448 050905122946

634 16252928 16252928 3662848 57737216 279969792 050905122946

629 57735168 7110656 57737216 57737216 8388608 050905122946

632 7110656 5079040 2819072 57737216 72351744 050905122946

618 57735168 57735168 55132160 55132160 050905122947

638 8126464 8126464 3736576 57737216 102760448 050905122947

634 16252928 16252928 3662848 57737216 279969792 050905122947

629 57735168 7110656 57737216 57737216 14680064 050905122947

632 7110656 5079040 2819072 57737216 72351744 050905122947

618 57735168 57735168 55132160 55132160 050905122948

638 8126464 8126464 3736576 57737216 102760448 050905122948

634 16252928 16252928 3662848 57737216 279969792 050905122948

629 57735168 7110656 57737216 57737216 20971520 050905122948

632 7110656 5079040 2819072 57737216 72351744 050905122948

618 57735168 57735168 55132160 55132160 050905122949

638 8126464 8126464 3736576 57737216 102760448 050905122949

634 16252928 16252928 3662848 57737216 279969792 050905122949

629 57735168 7110656 57737216 57737216 26214400 050905122949

632 7110656 5079040 2819072 57737216 72351744 050905122949

618 57735168 57735168 55132160 55132160 050905122950

638 8126464 8126464 3736576 57737216 102760448 050905122950

634 16252928 16252928 3662848 57737216 279969792 050905122950

629 57735168 7110656 57737216 57737216 32505856 050905122950

632 7110656 5079040 2819072 57737216 72351744 050905122950

618 57735168 57735168 55132160 55132160 050905122951

638 8126464 8126464 3736576 57737216 102760448 050905122951

634 16252928 16252928 3662848 57737216 279969792 050905122951

629 57735168 7110656 57737216 57737216 38797312 050905122951

632 7110656 5079040 2819072 57737216 72351744 050905122951

618 57735168 57735168 55132160 55132160 050905122952

638 8126464 8126464 3736576 57737216 102760448 050905122952

634 16252928 16252928 3662848 57737216 279969792 050905122952

629 57735168 7110656 57737216 57737216 44040192 050905122952

632 7110656 5079040 2819072 57737216 72351744 050905122952

618 57735168 57735168 55132160 55132160 050905122953

638 8126464 8126464 3736576 57737216 102760448 050905122953

634 16252928 16252928 3662848 57737216 279969792 050905122953

629 57735168 7110656 57737216 57737216 50331648 050905122953

632 7110656 5079040 2819072 57737216 72351744 050905122953

618 57735168 57735168 56147968 56147968 050905122954

638 8126464 8126464 5768192 57737216 102760448 050905122954

634 16252928 16252928 7988224 57737216 279969792 050905122954

629 7110656 7110656 1745920 57737216 53477376 050905122954

632 7110656 5079040 4064256 57737216 72351744 050905122954

618 57735168 57735168 56475648 56475648 050905122955

638 8126464 8126464 6882304 57737216 102760448 050905122955

634 16252928 16252928 10478592 57737216 279969792 050905122955

629 7110656 7110656 2163712 57737216 53477376 050905122955

632 7110656 5079040 787456 57737216 76546048 050905122955

618 57735168 57735168 56565760 56565760 050905122956

638 8126464 8126464 7078912 57737216 109051904 050905122956

634 16252928 16252928 11002880 57737216 279969792 050905122956

629 7110656 7110656 2278400 57737216 53477376 050905122956

632 7110656 5079040 984064 57737216 76546048 050905122956

618 57735168 57735168 57393152 57393152 050905122957

638 8126464 8126464 2212864 57737216 109051904 050905122957

634 16252928 16252928 15459328 57737216 283115520 050905122957

629 7110656 7110656 3220480 57737216 53477376 050905122957

632 7110656 5079040 2425856 57737216 76546048 050905122957

618 57735168 57735168 57393152 57393152 050905122958

638 8126464 8126464 2212864 57737216 109051904 050905122958

634 16252928 16252928 15459328 57737216 289406976 050905122958

629 7110656 7110656 3220480 57737216 53477376 050905122958

632 7110656 5079040 2425856 57737216 76546048 050905122958

618 57735168 57735168 57393152 57393152 050905122959

638 8126464 8126464 2212864 57737216 109051904 050905122959

634 16252928 16252928 254976 57737216 294649856 050905122959

629 7110656 7110656 3220480 57737216 53477376 050905122959

632 7110656 5079040 2425856 57737216 76546048 050905122959

618 57735168 7110656 57737216 57737216 5242880 050905123000

638 8126464 8126464 3458048 57737216 109051904 050905123000

634 18284544 18284544 3400704 57737216 294649856 050905123000

629 7110656 7110656 3777536 57737216 53477376 050905123000

632 6094848 6094848 3212288 57737216 76546048 050905123000

618 57735168 7110656 57737216 57737216 11534336 050905123001

638 8126464 8126464 3458048 57737216 109051904 050905123001

634 18284544 18284544 3400704 57737216 294649856 050905123001

629 7110656 7110656 3777536 57737216 53477376 050905123001

632 6094848 6094848 3212288 57737216 76546048 050905123001

618 57735168 7110656 57737216 57737216 16777216 050905123002

638 8126464 8126464 3458048 57737216 109051904 050905123002

634 18284544 18284544 3400704 57737216 294649856 050905123002

629 7110656 7110656 3777536 57737216 53477376 050905123002

632 6094848 6094848 3212288 57737216 76546048 050905123002

618 57735168 7110656 57737216 57737216 23068672 050905123003

638 8126464 8126464 3458048 57737216 109051904 050905123003

634 18284544 18284544 3400704 57737216 294649856 050905123003

629 7110656 7110656 3777536 57737216 53477376 050905123003

632 6094848 6094848 3212288 57737216 76546048 050905123003

618 57735168 7110656 57737216 57737216 29360128 050905123004

638 8126464 8126464 3458048 57737216 109051904 050905123004

634 18284544 18284544 3400704 57737216 294649856 050905123004

629 7110656 7110656 3777536 57737216 53477376 050905123004

632 6094848 6094848 3212288 57737216 76546048 050905123004

618 57735168 7110656 57737216 57737216 35651584 050905123005

638 8126464 8126464 3458048 57737216 109051904 050905123005

634 18284544 18284544 3400704 57737216 294649856 050905123005

629 7110656 7110656 3777536 57737216 53477376 050905123005

632 6094848 6094848 3212288 57737216 76546048 050905123005

618 57735168 7110656 57737216 57737216 41943040 050905123006

638 8126464 8126464 3458048 57737216 109051904 050905123006

634 18284544 18284544 3400704 57737216 294649856 050905123006

629 7110656 7110656 3777536 57737216 53477376 050905123006

632 6094848 6094848 3212288 57737216 76546048 050905123006

618 57735168 7110656 57737216 57737216 47185920 050905123007

638 8126464 8126464 3458048 57737216 109051904 050905123007

634 18284544 18284544 3400704 57737216 294649856 050905123007

629 7110656 7110656 3777536 57737216 53477376 050905123007

632 6094848 6094848 3212288 57737216 76546048 050905123007

618 57735168 7110656 57737216 57737216 53477376 050905123008

638 8126464 8126464 3458048 57737216 109051904 050905123008

634 18284544 18284544 3400704 57737216 294649856 050905123008

629 7110656 7110656 3777536 57737216 53477376 050905123008

632 6094848 6094848 3212288 57737216 76546048 050905123008

618 7110656 7110656 1926144 57737216 53477376 050905123009

638 9142272 9142272 6538240 57737216 109051904 050905123009

634 18284544 18284544 10871808 57737216 294649856 050905123009

629 7110656 7110656 5080064 57737216 53477376 050905123009

632 6094848 6094848 5047296 57737216 77594624 050905123009

618 7110656 7110656 2606080 57737216 53477376 050905123010

638 9142272 9142272 7980032 57737216 109051904 050905123010

634 18284544 18284544 15000576 57737216 294649856 050905123010

629 7110656 7110656 5579776 57737216 53477376 050905123010

632 6094848 6094848 1557504 57737216 80740352 050905123010

618 7110656 7110656 2868224 57737216 53477376 050905123011

638 9142272 9142272 8635392 57737216 114294784 050905123011

634 18284544 18284544 16507904 57737216 294649856 050905123011

629 7110656 7110656 5874688 57737216 53477376 050905123011

632 6094848 6094848 1950720 57737216 80740352 050905123011

618 7110656 7110656 3032064 57737216 53477376 050905123012

638 9142272 9142272 254976 57737216 116391936 050905123012

634 18284544 18284544 17490944 57737216 297795584 050905123012

629 7110656 7110656 6046720 57737216 53477376 050905123012

632 6094848 6094848 2278400 57737216 80740352 050905123012

618 7110656 7110656 3032064 57737216 53477376 050905123013

638 9142272 9142272 254976 57737216 116391936 050905123013

634 18284544 18284544 17490944 57737216 304087040 050905123013

629 7110656 7110656 6046720 57737216 53477376 050905123013

632 6094848 6094848 2278400 57737216 80740352 050905123013

618 7110656 7110656 3032064 57737216 53477376 050905123015

638 9142272 9142272 254976 57737216 116391936 050905123015

634 18284544 18284544 17490944 57737216 310378496 050905123015

629 7110656 7110656 6046720 57737216 53477376 050905123015

632 6094848 6094848 2278400 57737216 80740352 050905123015

618 7110656 7110656 3810304 57737216 53477376 050905123016

638 9142272 9142272 2810880 57737216 116391936 050905123016

634 18284544 18284544 5571584 57737216 310378496 050905123016

629 7110656 7110656 6857728 57737216 56623104 050905123016

632 6094848 6094848 3589120 57737216 80740352 050905123016

618 7110656 7110656 4572160 57737216 53477376 050905123017

638 9142272 9142272 4056064 57737216 117440512 050905123017

634 18284544 18284544 9372672 57737216 310378496 050905123017

629 7110656 7110656 1033216 57737216 59768832 050905123017

632 6094848 6094848 4375552 57737216 81788928 050905123017

618 7110656 7110656 4572160 57737216 54525952 050905123018

638 9142272 9142272 4056064 57737216 118489088 050905123018

634 18284544 18284544 9372672 57737216 312475648 050905123018

629 1245184 1245184 600064 57737216 59768832 050905123018

632 6094848 6094848 4375552 57737216 83886080 050905123018

618 7110656 7110656 4572160 57737216 56623104 050905123019

638 9142272 9142272 4056064 57737216 120586240 050905123019

634 18284544 18284544 9372672 57737216 313524224 050905123019

629 1245184 1245184 600064 57737216 59768832 050905123019

632 4063232 4063232 4573184 57737216 84934656 050905123019

618 1245184 1245184 485376 57737216 57671680 050905123020

638 7110656 7110656 7875584 57737216 120586240 050905123020

634 18284544 18284544 9372672 57737216 317718528 050905123020

629 1245184 1245184 600064 57737216 59768832 050905123020

632 4063232 4063232 4573184 57737216 84934656 050905123020

618 1245184 1245184 485376 57737216 57671680 050905123021

638 7110656 7110656 7875584 57737216 120586240 050905123021

634 15745024 15745024 16004096 57737216 318767104 050905123021

629 1245184 1245184 600064 57737216 59768832 050905123021

632 4063232 4063232 4573184 57737216 84934656 050905123021

618 1245184 1245184 485376 57737216 57671680 050905123022

638 7110656 7110656 7875584 57737216 120586240 050905123022

634 15745024 15745024 16004096 57737216 318767104 050905123022

629 1245184 1245184 600064 57737216 59768832 050905123022

632 4063232 4063232 4573184 57737216 84934656 050905123022

618 1245184 1245184 485376 57737216 57671680 050905123023

638 7110656 7110656 7875584 57737216 120586240 050905123023

634 15745024 15745024 16004096 57737216 318767104 050905123023

629 1245184 1245184 600064 57737216 59768832 050905123023

632 4063232 4063232 4573184 57737216 84934656 050905123023

618 1245184 1245184 485376 57737216 57671680 050905123024

638 7110656 7110656 7875584 57737216 120586240 050905123024

634 15745024 15745024 16004096 57737216 318767104 050905123024

629 1245184 1245184 600064 57737216 59768832 050905123024

632 4063232 4063232 4573184 57737216 84934656 050905123024

618 1245184 1245184 485376 57737216 57671680 050905123025

638 7110656 7110656 7875584 57737216 120586240 050905123025

634 15745024 15745024 16004096 57737216 318767104 050905123025

629 1245184 1245184 600064 57737216 59768832 050905123025

632 4063232 4063232 4573184 57737216 84934656 050905123025

618 1245184 1245184 485376 57737216 57671680 050905123026

638 7110656 7110656 7875584 57737216 120586240 050905123026

634 15745024 15745024 16004096 57737216 318767104 050905123026

629 1245184 1245184 600064 57737216 59768832 050905123026

632 4063232 4063232 4573184 57737216 84934656 050905123026

618 1245184 1245184 485376 57737216 57671680 050905123027

638 7110656 7110656 7875584 57737216 120586240 050905123027

634 15745024 15745024 16004096 57737216 318767104 050905123027

629 1245184 1245184 600064 57737216 59768832 050905123027

632 4063232 4063232 4573184 57737216 84934656 050905123027

618 1245184 1245184 485376 57737216 57671680 050905123028

638 7110656 7110656 7875584 57737216 120586240 050905123028

634 15745024 15745024 16004096 57737216 318767104 050905123028

629 1245184 1245184 600064 57737216 59768832 050905123028

632 4063232 4063232 4573184 57737216 84934656 050905123028

618 1245184 1245184 485376 57737216 57671680 050905123029

638 7110656 7110656 7875584 57737216 120586240 050905123029

634 15745024 15745024 16004096 57737216 318767104 050905123029

629 1245184 1245184 600064 57737216 59768832 050905123029

632 4063232 4063232 4573184 57737216 84934656 050905123029

618 1245184 1245184 485376 57737216 57671680 050905123030

638 7110656 7110656 7875584 57737216 120586240 050905123030

634 15745024 15745024 16004096 57737216 318767104 050905123030

629 1245184 1245184 600064 57737216 59768832 050905123030

632 4063232 4063232 4573184 57737216 84934656 050905123030

618 1245184 1245184 485376 57737216 57671680 050905123031

638 7110656 7110656 7875584 57737216 120586240 050905123031

634 15745024 15745024 16004096 57737216 318767104 050905123031

629 1245184 1245184 600064 57737216 59768832 050905123031

632 4063232 4063232 4573184 57737216 84934656 050905123031

618 1245184 1245184 485376 57737216 57671680 050905123032

638 7110656 7110656 7875584 57737216 120586240 050905123032

634 15745024 15745024 16004096 57737216 318767104 050905123032

629 1245184 1245184 600064 57737216 59768832 050905123032

632 4063232 4063232 4573184 57737216 84934656 050905123032

618 1245184 1245184 485376 57737216 57671680 050905123033

638 7110656 7110656 7875584 57737216 120586240 050905123033

634 15745024 15745024 16004096 57737216 318767104 050905123033

629 1245184 1245184 600064 57737216 59768832 050905123033

632 4063232 4063232 4573184 57737216 84934656 050905123033

618 1245184 1245184 485376 57737216 57671680 050905123034

638 7110656 7110656 7875584 57737216 120586240 050905123034

634 15745024 15745024 16004096 57737216 318767104 050905123034

629 1245184 1245184 600064 57737216 59768832 050905123034

632 4063232 4063232 4573184 57737216 84934656 050905123034

618 1245184 1245184 485376 57737216 57671680 050905123035

638 7110656 7110656 7875584 57737216 120586240 050905123035

634 15745024 15745024 16004096 57737216 318767104 050905123035

629 1245184 1245184 600064 57737216 59768832 050905123035

632 4063232 4063232 4573184 57737216 84934656 050905123035

618 1245184 1245184 485376 57737216 57671680 050905123036

638 7110656 7110656 7875584 57737216 120586240 050905123036

634 15745024 15745024 16004096 57737216 318767104 050905123036

629 1245184 1245184 600064 57737216 59768832 050905123036

632 4063232 4063232 4573184 57737216 84934656 050905123036

618 1245184 1245184 485376 57737216 57671680 050905123037

638 7110656 7110656 7875584 57737216 120586240 050905123037

634 15745024 15745024 16004096 57737216 318767104 050905123037

629 1245184 1245184 600064 57737216 59768832 050905123037

632 4063232 4063232 4573184 57737216 84934656 050905123037

618 1245184 1245184 485376 57737216 57671680 050905123038

638 7110656 7110656 7875584 57737216 120586240 050905123038

634 15745024 15745024 16004096 57737216 318767104 050905123038

629 1245184 1245184 600064 57737216 59768832 050905123038

632 4063232 4063232 4573184 57737216 84934656 050905123038

618 1245184 1245184 485376 57737216 57671680 050905123039

638 7110656 7110656 7875584 57737216 120586240 050905123039

634 15745024 15745024 16004096 57737216 318767104 050905123039

629 1245184 1245184 600064 57737216 59768832 050905123039

632 4063232 4063232 4573184 57737216 84934656 050905123039

618 1245184 1245184 485376 57737216 57671680 050905123040

638 7110656 7110656 7875584 57737216 120586240 050905123040

634 15745024 15745024 16004096 57737216 318767104 050905123040

629 1245184 1245184 600064 57737216 59768832 050905123040

632 4063232 4063232 4573184 57737216 84934656 050905123040

618 1245184 1245184 485376 57737216 57671680 050905123041

638 7110656 7110656 7875584 57737216 120586240 050905123041

634 15745024 15745024 16004096 57737216 318767104 050905123041

629 1245184 1245184 600064 57737216 59768832 050905123041

632 4063232 4063232 4573184 57737216 84934656 050905123041

618 1245184 1245184 485376 57737216 57671680 050905123042

634 15745024 15745024 16004096 57737216 318767104 050905123042

629 1245184 1245184 600064 57737216 59768832 050905123042

632 4063232 4063232 4573184 57737216 84934656 050905123042

618 1245184 1245184 485376 57737216 57671680 050905123043

634 15745024 15745024 16004096 57737216 318767104 050905123043

629 1245184 1245184 600064 57737216 59768832 050905123043

632 4063232 4063232 4573184 57737216 84934656 050905123043

618 1245184 1245184 485376 57737216 57671680 050905123044

634 15745024 15745024 16004096 57737216 318767104 050905123044

629 1245184 1245184 600064 57737216 59768832 050905123044

632 4063232 4063232 4573184 57737216 84934656 050905123044

618 1245184 1245184 485376 57737216 57671680 050905123045

634 15745024 15745024 16004096 57737216 318767104 050905123045

629 1245184 1245184 600064 57737216 59768832 050905123045

632 4063232 4063232 4573184 57737216 84934656 050905123045

618 1245184 1245184 485376 57737216 57671680 050905123046

634 15745024 15745024 16004096 57737216 318767104 050905123046

629 1245184 1245184 600064 57737216 59768832 050905123046

632 4063232 4063232 4573184 57737216 84934656 050905123046

618 1245184 1245184 485376 57737216 57671680 050905123047

634 15745024 15745024 16004096 57737216 318767104 050905123047

629 1245184 1245184 600064 57737216 59768832 050905123047

632 4063232 4063232 4573184 57737216 84934656 050905123047

618 1245184 1245184 485376 57737216 57671680 050905123048

634 15745024 15745024 16004096 57737216 318767104 050905123048

629 1245184 1245184 600064 57737216 59768832 050905123048

632 4063232 4063232 4573184 57737216 84934656 050905123048

618 1245184 1245184 485376 57737216 57671680 050905123049

634 15745024 15745024 16004096 57737216 318767104 050905123049

629 1245184 1245184 600064 57737216 59768832 050905123049

632 4063232 4063232 4573184 57737216 84934656 050905123049

618 1245184 1245184 485376 57737216 57671680 050905123050

634 15745024 15745024 16004096 57737216 318767104 050905123050

629 1245184 1245184 600064 57737216 59768832 050905123050

632 4063232 4063232 4573184 57737216 84934656 050905123050

618 1245184 1245184 485376 57737216 57671680 050905123051

634 15745024 15745024 16004096 57737216 318767104 050905123051

629 1245184 1245184 600064 57737216 59768832 050905123051

632 4063232 4063232 4573184 57737216 84934656 050905123051

618 1245184 1245184 485376 57737216 57671680 050905123052

634 15745024 15745024 16004096 57737216 318767104 050905123052

632 4063232 4063232 4573184 57737216 84934656 050905123052

618 1245184 1245184 485376 57737216 57671680 050905123054

634 15745024 15745024 16004096 57737216 318767104 050905123054

632 4063232 4063232 4573184 57737216 84934656 050905123054

618 1245184 1245184 485376 57737216 57671680 050905123055

634 15745024 15745024 16004096 57737216 318767104 050905123055

632 4063232 4063232 4573184 57737216 84934656 050905123055

618 1245184 1245184 485376 57737216 57671680 050905123056

634 15745024 15745024 16004096 57737216 318767104 050905123056

632 4063232 4063232 4573184 57737216 84934656 050905123056

618 1245184 1245184 485376 57737216 57671680 050905123057

634 15745024 15745024 16004096 57737216 318767104 050905123057

632 4063232 4063232 4573184 57737216 84934656 050905123057

618 1245184 1245184 485376 57737216 57671680 050905123058

634 15745024 15745024 16004096 57737216 318767104 050905123058

632 4063232 4063232 4573184 57737216 84934656 050905123058

618 1245184 1245184 485376 57737216 57671680 050905123059

634 15745024 15745024 16004096 57737216 318767104 050905123059

632 4063232 4063232 4573184 57737216 84934656 050905123059

618 1245184 1245184 485376 57737216 57671680 050905123100

634 15745024 15745024 16004096 57737216 318767104 050905123100

632 4063232 4063232 4573184 57737216 84934656 050905123100

618 1245184 1245184 485376 57737216 57671680 050905123101

634 15745024 15745024 16004096 57737216 318767104 050905123101

632 4063232 4063232 4573184 57737216 84934656 050905123101

618 1245184 1245184 485376 57737216 57671680 050905123102

634 15745024 15745024 16004096 57737216 318767104 050905123102

632 4063232 4063232 4573184 57737216 84934656 050905123102

618 1245184 1245184 485376 57737216 57671680 050905123103

634 15745024 15745024 16004096 57737216 318767104 050905123103

632 4063232 4063232 4573184 57737216 84934656 050905123103

618 1245184 1245184 485376 57737216 57671680 050905123104

634 15745024 15745024 16004096 57737216 318767104 050905123104

632 4063232 4063232 4573184 57737216 84934656 050905123104

618 1245184 1245184 485376 57737216 57671680 050905123105

634 15745024 15745024 16004096 57737216 318767104 050905123105

632 4063232 4063232 4573184 57737216 84934656 050905123105

618 1245184 1245184 485376 57737216 57671680 050905123106

634 15745024 15745024 16004096 57737216 318767104 050905123106

632 4063232 4063232 4573184 57737216 84934656 050905123106

618 1245184 1245184 485376 57737216 57671680 050905123107

634 15745024 15745024 16004096 57737216 318767104 050905123107

632 4063232 4063232 4573184 57737216 84934656 050905123107

618 1245184 1245184 485376 57737216 57671680 050905123108

634 15745024 15745024 16004096 57737216 318767104 050905123108

632 4063232 4063232 4573184 57737216 84934656 050905123108

618 1245184 1245184 485376 57737216 57671680 050905123109

634 15745024 15745024 16004096 57737216 318767104 050905123109

632 4063232 4063232 4573184 57737216 84934656 050905123109

618 1245184 1245184 485376 57737216 57671680 050905123110

634 15745024 15745024 16004096 57737216 318767104 050905123110

632 4063232 4063232 4573184 57737216 84934656 050905123110

618 1245184 1245184 485376 57737216 57671680 050905123111

634 15745024 15745024 16004096 57737216 318767104 050905123111

632 4063232 4063232 4573184 57737216 84934656 050905123111

618 1245184 1245184 485376 57737216 57671680 050905123112

634 15745024 15745024 16004096 57737216 318767104 050905123112

632 4063232 4063232 4573184 57737216 84934656 050905123112

618 1245184 1245184 485376 57737216 57671680 050905123113

634 15745024 15745024 16004096 57737216 318767104 050905123113

632 4063232 4063232 4573184 57737216 84934656 050905123113

618 1245184 1245184 485376 57737216 57671680 050905123114

634 15745024 15745024 16004096 57737216 318767104 050905123114

632 4063232 4063232 4573184 57737216 84934656 050905123114

618 1245184 1245184 485376 57737216 57671680 050905123115

634 15745024 15745024 16004096 57737216 318767104 050905123115

632 4063232 4063232 4573184 57737216 84934656 050905123115

618 1245184 1245184 485376 57737216 57671680 050905123116

634 15745024 15745024 16004096 57737216 318767104 050905123116

632 4063232 4063232 4573184 57737216 84934656 050905123116

618 1245184 1245184 485376 57737216 57671680 050905123117

634 15745024 15745024 16004096 57737216 318767104 050905123117

632 4063232 4063232 4573184 57737216 84934656 050905123117

618 1245184 1245184 485376 57737216 57671680 050905123118

634 15745024 15745024 16004096 57737216 318767104 050905123118

632 4063232 4063232 4573184 57737216 84934656 050905123118

618 1245184 1245184 485376 57737216 57671680 050905123119

634 15745024 15745024 16004096 57737216 318767104 050905123119

632 4063232 4063232 4573184 57737216 84934656 050905123119

618 1245184 1245184 485376 57737216 57671680 050905123120

634 15745024 15745024 16004096 57737216 318767104 050905123120

632 4063232 4063232 4573184 57737216 84934656 050905123120

618 1245184 1245184 485376 57737216 57671680 050905123121

634 15745024 15745024 16004096 57737216 318767104 050905123121

632 4063232 4063232 4573184 57737216 84934656 050905123121

618 1245184 1245184 485376 57737216 57671680 050905123122

634 15745024 15745024 16004096 57737216 318767104 050905123122

632 4063232 4063232 4573184 57737216 84934656 050905123122

618 1245184 1245184 485376 57737216 57671680 050905123123

634 15745024 15745024 16004096 57737216 318767104 050905123123

632 4063232 4063232 4573184 57737216 84934656 050905123123

618 1245184 1245184 485376 57737216 57671680 050905123124

634 15745024 15745024 16004096 57737216 318767104 050905123124

632 4063232 4063232 4573184 57737216 84934656 050905123124

618 1245184 1245184 485376 57737216 57671680 050905123125

634 15745024 15745024 16004096 57737216 318767104 050905123125

632 4063232 4063232 4573184 57737216 84934656 050905123125

618 1245184 1245184 485376 57737216 57671680 050905123126

634 15745024 15745024 16004096 57737216 318767104 050905123126

632 4063232 4063232 4573184 57737216 84934656 050905123126

618 1245184 1245184 485376 57737216 57671680 050905123127

634 15745024 15745024 16004096 57737216 318767104 050905123127

632 4063232 4063232 4573184 57737216 84934656 050905123127

618 1245184 1245184 485376 57737216 57671680 050905123128

634 15745024 15745024 16004096 57737216 318767104 050905123128

632 4063232 4063232 4573184 57737216 84934656 050905123128

618 1245184 1245184 485376 57737216 57671680 050905123129

634 15745024 15745024 16004096 57737216 318767104 050905123129

632 4063232 4063232 4573184 57737216 84934656 050905123129

618 1245184 1245184 485376 57737216 57671680 050905123130

634 15745024 15745024 16004096 57737216 318767104 050905123130

632 4063232 4063232 4573184 57737216 84934656 050905123130

618 1245184 1245184 485376 57737216 57671680 050905123131

634 15745024 15745024 16004096 57737216 318767104 050905123131

632 4063232 4063232 4573184 57737216 84934656 050905123131

618 1245184 1245184 485376 57737216 57671680 050905123133

634 15745024 15745024 16004096 57737216 318767104 050905123133

632 4063232 4063232 4573184 57737216 84934656 050905123133

618 1245184 1245184 485376 57737216 57671680 050905123134

634 15745024 15745024 16004096 57737216 318767104 050905123134

632 4063232 4063232 4573184 57737216 84934656 050905123134

618 1245184 1245184 485376 57737216 57671680 050905123135

634 15745024 15745024 16004096 57737216 318767104 050905123135

632 4063232 4063232 4573184 57737216 84934656 050905123135

618 1245184 1245184 485376 57737216 57671680 050905123136

634 15745024 15745024 16004096 57737216 318767104 050905123136

632 4063232 4063232 4573184 57737216 84934656 050905123136

618 1245184 1245184 485376 57737216 57671680 050905123137

634 15745024 15745024 16004096 57737216 318767104 050905123137

632 4063232 4063232 4573184 57737216 84934656 050905123137

618 1245184 1245184 485376 57737216 57671680 050905123138

634 15745024 15745024 16004096 57737216 318767104 050905123138

632 4063232 4063232 4573184 57737216 84934656 050905123138

618 1245184 1245184 485376 57737216 57671680 050905123139

634 15745024 15745024 16004096 57737216 318767104 050905123139

632 4063232 4063232 4573184 57737216 84934656 050905123139

618 1245184 1245184 485376 57737216 57671680 050905123140

634 15745024 15745024 16004096 57737216 318767104 050905123140

632 4063232 4063232 4573184 57737216 84934656 050905123140

618 1245184 1245184 485376 57737216 57671680 050905123141

634 15745024 15745024 16004096 57737216 318767104 050905123141

632 4063232 4063232 4573184 57737216 84934656 050905123141

618 1245184 1245184 485376 57737216 57671680 050905123142

634 15745024 15745024 16004096 57737216 318767104 050905123142

632 4063232 4063232 4573184 57737216 84934656 050905123142

618 1245184 1245184 485376 57737216 57671680 050905123143

634 15745024 15745024 16004096 57737216 318767104 050905123143

632 4063232 4063232 4573184 57737216 84934656 050905123143

618 1245184 1245184 485376 57737216 57671680 050905123144

634 15745024 15745024 16004096 57737216 318767104 050905123144

632 4063232 4063232 4573184 57737216 84934656 050905123144

618 1245184 1245184 485376 57737216 57671680 050905123145

634 15745024 15745024 16004096 57737216 318767104 050905123145

632 4063232 4063232 4573184 57737216 84934656 050905123145

618 1245184 1245184 485376 57737216 57671680 050905123146

634 15745024 15745024 16004096 57737216 318767104 050905123146

632 4063232 4063232 4573184 57737216 84934656 050905123146

618 1245184 1245184 485376 57737216 57671680 050905123147

634 15745024 15745024 16004096 57737216 318767104 050905123147

632 4063232 4063232 4573184 57737216 84934656 050905123147

618 1245184 1245184 485376 57737216 57671680 050905123148

634 15745024 15745024 16004096 57737216 318767104 050905123148

632 4063232 4063232 4573184 57737216 84934656 050905123148

618 1245184 1245184 485376 57737216 57671680 050905123149

634 15745024 15745024 16004096 57737216 318767104 050905123149

632 4063232 4063232 4573184 57737216 84934656 050905123149

618 1245184 1245184 485376 57737216 57671680 050905123150

632 4063232 4063232 4573184 57737216 84934656 050905123150

618 1245184 1245184 485376 57737216 57671680 050905123151

632 4063232 4063232 4573184 57737216 84934656 050905123151

618 1245184 1245184 485376 57737216 57671680 050905123152

632 4063232 4063232 4573184 57737216 84934656 050905123152

618 1245184 1245184 485376 57737216 57671680 050905123153

632 4063232 4063232 4573184 57737216 84934656 050905123153

618 1245184 1245184 485376 57737216 57671680 050905123154

632 4063232 4063232 4573184 57737216 84934656 050905123154

618 1245184 1245184 485376 57737216 57671680 050905123155

632 4063232 4063232 4573184 57737216 84934656 050905123155

618 1245184 1245184 485376 57737216 57671680 050905123156

632 4063232 4063232 4573184 57737216 84934656 050905123156

618 1245184 1245184 485376 57737216 57671680 050905123157

632 4063232 4063232 4573184 57737216 84934656 050905123157

618 1245184 1245184 485376 57737216 57671680 050905123158

632 4063232 4063232 4573184 57737216 84934656 050905123158

618 1245184 1245184 485376 57737216 57671680 050905123159

632 4063232 4063232 4573184 57737216 84934656 050905123159

618 1245184 1245184 485376 57737216 57671680 050905123200

632 4063232 4063232 4573184 57737216 84934656 050905123200

618 1245184 1245184 485376 57737216 57671680 050905123201

632 4063232 4063232 4573184 57737216 84934656 050905123201

618 1245184 1245184 485376 57737216 57671680 050905123202

632 4063232 4063232 4573184 57737216 84934656 050905123202

618 1245184 1245184 485376 57737216 57671680 050905123203

632 4063232 4063232 4573184 57737216 84934656 050905123203

618 1245184 1245184 485376 57737216 57671680 050905123204

618 1245184 1245184 485376 57737216 57671680 050905123205

618 1245184 1245184 485376 57737216 57671680 050905123206

618 1245184 1245184 485376 57737216 57671680 050905123207

618 1245184 1245184 485376 57737216 57671680 050905123209

618 1245184 1245184 485376 57737216 57671680 050905123210

618 1245184 1245184 485376 57737216 57671680 050905123211

618 1245184 1245184 485376 57737216 57671680 050905123212

618 1245184 1245184 485376 57737216 57671680 050905123213

1050 rows selected.

SQL> spool off

[pic]

|Predicted |Actual |

|66.6 |55.0625 |

PGA_AGGREGATE_TARGET 4G, 400M _pga_max_size, 333M _smm_px_max_size, 6 DOP

SQL> show parameter

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

O7_DICTIONARY_ACCESSIBILITY boolean FALSE

__db_cache_size big integer 684M

__java_pool_size big integer 8M

__large_pool_size big integer 4M

__shared_pool_size big integer 224M

_pga_max_size big integer 400M

_smm_px_max_size integer 340992

active_instance_count integer

aq_tm_processes integer 0

archive_lag_target integer 0

asm_diskgroups string

asm_diskstring string

asm_power_limit integer 1

audit_file_dest string /home/oracle/DBHome1/rdbms/aud

it

audit_sys_operations boolean FALSE

audit_trail string TRUE

background_core_dump string partial

background_dump_dest string /home/oracle/admin/test/bdump

backup_tape_io_slaves boolean FALSE

bitmap_merge_area_size integer 1048576

blank_trimming boolean FALSE

buffer_pool_keep string

buffer_pool_recycle string

circuits integer

cluster_database boolean FALSE

cluster_database_instances integer 1

cluster_interconnects string

commit_point_strength integer 1

compatible string 10.1.0.2.0

control_file_record_keep_time integer 7

control_files string /home/oracle/oradata/test/con

trol01.ctl, /home/oracle/orada

ta/test/control02.ctl, /home/

oracle/oradata/test/control03

.ctl

core_dump_dest string /home/oracle/admin/test/cdump

cpu_count integer 2

create_bitmap_area_size integer 8388608

create_stored_outlines string

cursor_sharing string EXACT

cursor_space_for_time boolean FALSE

db_16k_cache_size big integer 0

db_2k_cache_size big integer 0

db_32k_cache_size big integer 0

db_4k_cache_size big integer 0

db_8k_cache_size big integer 0

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

db_block_buffers integer 0

db_block_checking boolean FALSE

db_block_checksum boolean TRUE

db_block_size integer 8192

db_cache_advice string ON

db_cache_size big integer 0

db_create_file_dest string

db_create_online_log_dest_1 string

db_create_online_log_dest_2 string

db_create_online_log_dest_3 string

db_create_online_log_dest_4 string

db_create_online_log_dest_5 string

db_domain string

db_file_multiblock_read_count integer 32

db_file_name_convert string

db_files integer 200

db_flashback_retention_target integer 1440

db_keep_cache_size big integer 0

db_name string test

db_recovery_file_dest string /home/oracle/flash_recovery_ar

ea

db_recovery_file_dest_size big integer 2G

db_recycle_cache_size big integer 0

db_unique_name string test

db_writer_processes integer 7

dbwr_io_slaves integer 0

ddl_wait_for_locks boolean FALSE

dg_broker_config_file1 string /home/oracle/DBHome1/dbs/dr1hf

dwh.dat

dg_broker_config_file2 string /home/oracle/DBHome1/dbs/dr2hf

dwh.dat

dg_broker_start boolean FALSE

disk_asynch_io boolean TRUE

dispatchers string (PROTOCOL=TCP) (SERVICE=testX

DB)

distributed_lock_timeout integer 60

dml_locks integer 2924

drs_start boolean FALSE

enqueue_resources integer 3000

event string

fal_client string

fal_server string

fast_start_io_target integer 0

fast_start_mttr_target integer 0

fast_start_parallel_rollback string LOW

file_mapping boolean FALSE

fileio_network_adapters string

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

filesystemio_options string none

fixed_date string

gc_files_to_locks string

gcs_server_processes integer 0

global_context_pool_size string

global_names boolean FALSE

hash_area_size integer 131072

hi_shared_memory_address integer 0

hs_autoregister boolean TRUE

ifile file

instance_groups string

instance_name string test

instance_number integer 0

instance_type string RDBMS

java_max_sessionspace_size integer 0

java_pool_size big integer 0

java_soft_sessionspace_limit integer 0

job_queue_processes integer 10

large_pool_size big integer 0

ldap_directory_access string NONE

license_max_sessions integer 0

license_max_users integer 0

license_sessions_warning integer 0

local_listener string

lock_name_space string

lock_sga boolean FALSE

log_archive_config string

log_archive_dest string

log_archive_dest_1 string

log_archive_dest_10 string

log_archive_dest_2 string

log_archive_dest_3 string

log_archive_dest_4 string

log_archive_dest_5 string

log_archive_dest_6 string

log_archive_dest_7 string

log_archive_dest_8 string

log_archive_dest_9 string

log_archive_dest_state_1 string enable

log_archive_dest_state_10 string enable

log_archive_dest_state_2 string enable

log_archive_dest_state_3 string enable

log_archive_dest_state_4 string enable

log_archive_dest_state_5 string enable

log_archive_dest_state_6 string enable

log_archive_dest_state_7 string enable

log_archive_dest_state_8 string enable

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

log_archive_dest_state_9 string enable

log_archive_duplex_dest string

log_archive_format string %t_%s_%r.dbf

log_archive_local_first boolean TRUE

log_archive_max_processes integer 2

log_archive_min_succeed_dest integer 1

log_archive_start boolean FALSE

log_archive_trace integer 0

log_buffer integer 524288

log_checkpoint_interval integer 0

log_checkpoint_timeout integer 1800

log_checkpoints_to_alert boolean FALSE

log_file_name_convert string

logmnr_max_persistent_sessions integer 1

max_commit_propagation_delay integer 700

max_dispatchers integer

max_dump_file_size string UNLIMITED

max_enabled_roles integer 150

max_shared_servers integer

nls_calendar string

nls_comp string

nls_currency string

nls_date_format string

nls_date_language string

nls_dual_currency string

nls_iso_currency string

nls_language string AMERICAN

nls_length_semantics string BYTE

nls_nchar_conv_excp string FALSE

nls_numeric_characters string

nls_sort string

nls_territory string AMERICA

nls_time_format string

nls_time_tz_format string

nls_timestamp_format string

nls_timestamp_tz_format string

object_cache_max_size_percent integer 10

object_cache_optimal_size integer 102400

olap_page_pool_size big integer 0

open_cursors integer 300

open_links integer 4

open_links_per_instance integer 4

optimizer_dynamic_sampling integer 2

optimizer_features_enable string 10.1.0.3

optimizer_index_caching integer 0

optimizer_index_cost_adj integer 100

optimizer_mode string ALL_ROWS

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

os_authent_prefix string ops$

os_roles boolean FALSE

parallel_adaptive_multi_user boolean TRUE

parallel_automatic_tuning boolean FALSE

parallel_execution_message_size integer 2148

parallel_instance_group string

parallel_max_servers integer 40

parallel_min_percent integer 0

parallel_min_servers integer 0

parallel_server boolean FALSE

parallel_server_instances integer 1

parallel_threads_per_cpu integer 2

pga_aggregate_target big integer 4G

plsql_code_type string INTERPRETED

plsql_compiler_flags string INTERPRETED, NON_DEBUG

plsql_debug boolean FALSE

plsql_native_library_dir string

plsql_native_library_subdir_count integer 0

plsql_optimize_level integer 2

plsql_v2_compatibility boolean FALSE

plsql_warnings string DISABLE:ALL

pre_page_sga boolean FALSE

processes integer 600

query_rewrite_enabled string TRUE

query_rewrite_integrity string enforced

rdbms_server_dn string

read_only_open_delayed boolean FALSE

recovery_parallelism integer 0

remote_archive_enable string true

remote_dependencies_mode string TIMESTAMP

remote_listener string

remote_login_passwordfile string EXCLUSIVE

remote_os_authent boolean FALSE

remote_os_roles boolean FALSE

replication_dependency_tracking boolean TRUE

resource_limit boolean FALSE

resource_manager_plan string

resumable_timeout integer 0

rollback_segments string

serial_reuse string disable

service_names string test

session_cached_cursors integer 0

session_max_open_files integer 10

sessions integer 665

sga_max_size big integer 1G

sga_target big integer 1G

shadow_core_dump string partial

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

shared_memory_address integer 0

shared_pool_reserved_size big integer 11744051

shared_pool_size big integer 0

shared_server_sessions integer

shared_servers integer 1

skip_unusable_indexes boolean TRUE

smtp_out_server string

sort_area_retained_size integer 0

sort_area_size integer 65536

sp_name string test

spfile string /home/oracle/DBHome1/dbs/spfil

etest.ora

sql92_security boolean FALSE

sql_trace boolean FALSE

sql_version string NATIVE

sqltune_category string DEFAULT

standby_archive_dest string ?/dbs/arch

standby_file_management string MANUAL

star_transformation_enabled string TRUE

statistics_level string TYPICAL

streams_pool_size big integer 100M

tape_asynch_io boolean TRUE

thread integer 0

timed_os_statistics integer 0

timed_statistics boolean TRUE

trace_enabled boolean TRUE

tracefile_identifier string

transactions integer 731

transactions_per_rollback_segment integer 5

undo_management string AUTO

undo_retention integer 900

undo_tablespace string UNDOTBSP2

use_indirect_data_buffers boolean FALSE

user_dump_dest string /home/oracle/admin/test/udump

utl_file_dir string

workarea_size_policy string AUTO

SQL> @get_undocs

Parameter Description Value

---------------------------------------- ------------------------- ----------

_pga_large_extent_size PGA large extent size 1048576

_pga_max_size Maximum size of the PGA 419430400

memory for one process

_smm_advice_enabled if TRUE, enable TRUE

v$pga_advice

_smm_advice_log_size overwrites default size 0

of the PGA advice

workarea history log

_smm_auto_cost_enabled if TRUE, use the AUTO TRUE

size policy cost

functions

_smm_auto_max_io_size Maximum IO size (in KB) 248

used by sort/hash-join in

auto mode

_smm_auto_min_io_size Minimum IO size (in KB) 56

used by sort/hash-join in

auto mode

_smm_bound overwrites memory manager 0

automatically computed

bound

_smm_control provides controls on the 0

memory manager

_smm_freeable_retain value in KB of the 5120

instance freeable PGA

memory to retain

_smm_max_size maximum work area size in 204800

auto mode (serial)

_smm_min_size minimum work area size in 1024

auto mode

_smm_px_max_size maximum work area size in 340992

auto mode (global)

_smm_retain_size work area retain size in 0

SGA for shared server

sessions (0 for AUTO)

Parameter Description Value

---------------------------------------- ------------------------- ----------

_smm_trace Turn on/off tracing for 0

SQL memory manager

15 rows selected.

Elapsed: 00:00:00.01

SQL> set autotrace traceonly

SQL> get test_parallel

1 select /*+ parallel(test_pga 6) */

2 * from test_pga

3* order by district_name,name

SQL> /

4547752 rows selected.

Elapsed: 00:04:45.62

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=24593 Card=4547752

Bytes=513895976)

1 0 PX COORDINATOR

2 1 PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=24593 Card=454 :Q1001

7752 Bytes=513895976)

3 2 SORT* (ORDER BY) (Cost=24593 Card=4547752 Bytes=513895 :Q1001

976)

4 3 PX RECEIVE* (Cost=2880 Card=4547752 Bytes=513895976) :Q1001

5 4 PX SEND* (RANGE) OF ':TQ10000' (Cost=2880 Card=454 :Q1000

7752 Bytes=513895976)

6 5 PX BLOCK* (ITERATOR) (Cost=2880 Card=4547752 Byt :Q1000

es=513895976)

7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000

st=2880 Card=4547752 Bytes=513895976)

2 PARALLEL_TO_SERIAL

3 PARALLEL_COMBINED_WITH_PARENT

4 PARALLEL_COMBINED_WITH_PARENT

5 PARALLEL_TO_PARALLEL

6 PARALLEL_COMBINED_WITH_CHILD

7 PARALLEL_COMBINED_WITH_PARENT

Statistics

----------------------------------------------------------

660 recursive calls

64 db block gets

79861 consistent gets

155978 physical reads

680 redo size

253759906 bytes sent via SQL*Net to client

3335525 bytes received via SQL*Net from client

303185 SQL*Net roundtrips to/from client

3 sorts (memory)

5 sorts (disk)

4547752 rows processed

SQL> spool of

SQL> select * from test_results;

SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW

----- -------------- ------------- --------------- ------------ ------------ ------------

616 1013760 1013760 868352 868352 050905123536

631 7056384 7056384 6414336 6414336 050905123536

628 8547328 8547328 7176192 7176192 050905123536

617 22234112 22234112 21561344 21561344 050905123536

632 3964928 3964928 3833856 3833856 050905123536

615 4806656 4806656 4136960 4136960 050905123536

616 1234944 1234944 1196032 1196032 050905123537

631 8547328 8547328 8519680 8519680 050905123537

628 10350592 10350592 9961472 9961472 050905123537

617 32572416 32572416 30621696 30621696 050905123537

632 5824512 5824512 5570560 5570560 050905123537

615 7056384 7056384 5849088 5849088 050905123537

616 1503232 1503232 1425408 1425408 050905123538

631 12532736 12532736 10608640 10608640 050905123538

628 12532736 12532736 12369920 12369920 050905123538

617 39420928 39420928 36487168 36487168 050905123538

632 7056384 7056384 6930432 6930432 050905123538

615 8547328 8547328 7151616 7151616 050905123538

616 1827840 1827840 1556480 1556480 050905123539

631 12532736 12532736 12288000 12288000 050905123539

628 15173632 15173632 14049280 14049280 050905123539

617 47708160 47708160 40943616 40943616 050905123539

632 8547328 8547328 7708672 7708672 050905123539

615 8547328 8547328 8011776 8011776 050905123539

616 2220032 2220032 1851392 1851392 050905123540

631 15173632 15173632 13164544 13164544 050905123540

628 18368512 18368512 15261696 15261696 050905123540

617 47708160 47708160 45031424 45031424 050905123540

632 8547328 8547328 8462336 8462336 050905123540

615 10350592 10350592 8953856 8953856 050905123540

616 2220032 2220032 2105344 2105344 050905123541

631 15173632 15173632 14065664 14065664 050905123541

628 18368512 18368512 16629760 16629760 050905123541

617 57735168 57735168 48709632 48709632 050905123541

632 10350592 10350592 9183232 9183232 050905123541

615 10350592 10350592 9773056 9773056 050905123541

616 2695168 2695168 2236416 2236416 050905123542

631 15173632 15173632 14630912 14630912 050905123542

628 18368512 18368512 17973248 17973248 050905123542

617 57735168 57735168 52404224 52404224 050905123542

632 10350592 10350592 10084352 10084352 050905123542

615 12532736 12532736 10567680 10567680 050905123542

616 2695168 2695168 2383872 2383872 050905123543

631 18368512 18368512 15917056 15917056 050905123543

628 22234112 22234112 19185664 19185664 050905123543

617 57735168 57735168 56336384 56336384 050905123543

632 12532736 12532736 10747904 10747904 050905123543

615 12532736 12532736 11444224 11444224 050905123543

616 2695168 2695168 2498560 2498560 050905123544

631 18368512 18368512 16244736 16244736 050905123544

628 22234112 22234112 19554304 19554304 050905123544

617 57735168 7110656 57737216 57737216 5242880 050905123544

632 12532736 12532736 10952704 10952704 050905123544

615 12532736 12532736 11698176 11698176 050905123544

616 2695168 2695168 2498560 2498560 050905123546

631 18368512 18368512 16244736 16244736 050905123546

628 22234112 22234112 19554304 19554304 050905123546

617 57735168 7110656 57737216 57737216 10485760 050905123546

632 12532736 12532736 10952704 10952704 050905123546

615 12532736 12532736 11698176 11698176 050905123546

616 2695168 2695168 2498560 2498560 050905123547

631 18368512 18368512 16244736 16244736 050905123547

628 22234112 22234112 19554304 19554304 050905123547

617 57735168 7110656 57737216 57737216 16777216 050905123547

632 12532736 12532736 10952704 10952704 050905123547

615 12532736 12532736 11698176 11698176 050905123547

616 2695168 2695168 2498560 2498560 050905123548

631 18368512 18368512 16244736 16244736 050905123548

628 22234112 22234112 19554304 19554304 050905123548

617 57735168 7110656 57737216 57737216 23068672 050905123548

632 12532736 12532736 10952704 10952704 050905123548

615 12532736 12532736 11698176 11698176 050905123548

616 2695168 2695168 2498560 2498560 050905123549

631 18368512 18368512 16244736 16244736 050905123549

628 22234112 22234112 19554304 19554304 050905123549

617 57735168 7110656 57737216 57737216 29360128 050905123549

632 12532736 12532736 10952704 10952704 050905123549

615 12532736 12532736 11698176 11698176 050905123549

616 2695168 2695168 2498560 2498560 050905123550

631 18368512 18368512 16244736 16244736 050905123550

628 22234112 22234112 19554304 19554304 050905123550

617 57735168 7110656 57737216 57737216 35651584 050905123550

632 12532736 12532736 10952704 10952704 050905123550

615 12532736 12532736 11698176 11698176 050905123550

616 2695168 2695168 2498560 2498560 050905123551

631 18368512 18368512 16244736 16244736 050905123551

628 22234112 22234112 19554304 19554304 050905123551

617 57735168 7110656 57737216 57737216 40894464 050905123551

632 12532736 12532736 10952704 10952704 050905123551

615 12532736 12532736 11698176 11698176 050905123551

616 2695168 2695168 2498560 2498560 050905123552

631 18368512 18368512 16244736 16244736 050905123552

628 22234112 22234112 19554304 19554304 050905123552

617 57735168 7110656 57737216 57737216 47185920 050905123552

632 12532736 12532736 10952704 10952704 050905123552

615 12532736 12532736 11698176 11698176 050905123552

616 2695168 2695168 2498560 2498560 050905123553

631 18368512 18368512 16244736 16244736 050905123553

628 22234112 22234112 19562496 19562496 050905123553

617 7110656 7110656 74752 57737216 53477376 050905123553

632 12532736 12532736 10952704 10952704 050905123553

615 12532736 12532736 11698176 11698176 050905123553

616 3269632 3269632 2727936 2727936 050905123554

631 18368512 18368512 17711104 17711104 050905123554

628 22234112 22234112 21569536 21569536 050905123554

617 7110656 7110656 6095872 57737216 55574528 050905123554

632 12532736 12532736 12230656 12230656 050905123554

615 15173632 15173632 12713984 12713984 050905123554

616 3269632 3269632 2883584 2883584 050905123555

631 22234112 22234112 18718720 18718720 050905123555

628 26911744 26911744 22896640 22896640 050905123555

617 7110656 7110656 4326400 57737216 59768832 050905123555

632 15173632 15173632 12771328 12771328 050905123555

615 15173632 15173632 13459456 13459456 050905123555

616 3269632 3269632 2965504 2965504 050905123556

631 22234112 22234112 19226624 19226624 050905123556

628 26911744 26911744 23478272 23478272 050905123556

617 7110656 5079040 6030336 57737216 65011712 050905123556

632 15173632 15173632 13066240 13066240 050905123556

615 15173632 15173632 13631488 13631488 050905123556

616 3269632 3269632 3080192 3080192 050905123557

631 22234112 22234112 19955712 19955712 050905123557

628 26911744 26911744 24928256 24928256 050905123557

617 7110656 5079040 254976 57737216 68157440 050905123557

632 15173632 15173632 13844480 13844480 050905123557

615 15173632 15173632 14295040 14295040 050905123557

616 3269632 3269632 3162112 3162112 050905123558

631 22234112 22234112 20692992 20692992 050905123558

628 26911744 26911744 25886720 25886720 050905123558

617 7110656 5079040 4318208 57737216 72351744 050905123558

632 15173632 15173632 14639104 14639104 050905123558

615 15173632 15173632 14802944 14802944 050905123558

616 3964928 3964928 3276800 3276800 050905123559

631 22234112 22234112 21692416 21692416 050905123559

628 32572416 32572416 27205632 27205632 050905123559

617 7110656 5079040 4826112 57737216 75497472 050905123559

632 18368512 18368512 15409152 15409152 050905123559

615 18368512 18368512 15548416 15548416 050905123559

616 3964928 3964928 3596288 3596288 050905123600

631 26911744 26911744 22937600 22937600 050905123600

628 32572416 32572416 28811264 28811264 050905123600

617 6094848 6094848 5293056 57737216 76546048 050905123600

632 18368512 18368512 15958016 15958016 050905123600

615 18368512 18368512 16285696 16285696 050905123600

616 3964928 3964928 3653632 3653632 050905123601

631 26911744 26911744 23683072 23683072 050905123601

628 32572416 32572416 29786112 29786112 050905123601

617 6094848 6094848 2548736 57737216 80740352 050905123601

632 18368512 18368512 16572416 16572416 050905123601

615 18368512 18368512 16924672 16924672 050905123601

616 3964928 3964928 3776512 3776512 050905123602

631 26911744 26911744 24535040 24535040 050905123602

628 32572416 32572416 30728192 30728192 050905123602

617 6094848 6094848 762880 57737216 84934656 050905123602

632 18368512 18368512 17031168 17031168 050905123602

615 18368512 18368512 17547264 17547264 050905123602

616 3964928 3964928 3940352 3940352 050905123603

631 26911744 26911744 25567232 25567232 050905123603

628 32572416 32572416 32342016 32342016 050905123603

617 6094848 6094848 5809152 57737216 88080384 050905123603

632 18368512 18368512 17653760 17653760 050905123603

615 22234112 22234112 18587648 18587648 050905123603

616 4806656 4806656 4210688 4210688 050905123604

631 26911744 26911744 26435584 26435584 050905123604

628 39420928 39420928 33865728 33865728 050905123604

617 6094848 6094848 5235712 57737216 90177536 050905123604

632 22234112 22234112 18538496 18538496 050905123604

615 22234112 22234112 19677184 19677184 050905123604

616 4806656 4806656 4259840 4259840 050905123605

631 32572416 32572416 27262976 27262976 050905123605

628 39420928 39420928 34594816 34594816 050905123605

617 8126464 8126464 7332864 57737216 94371840 050905123605

632 22234112 22234112 19120128 19120128 050905123605

615 22234112 22234112 20013056 20013056 050905123605

616 4806656 4806656 4595712 4595712 050905123606

631 32572416 32572416 29614080 29614080 050905123606

628 39420928 39420928 37052416 37052416 050905123606

617 8126464 8126464 7078912 57737216 96468992 050905123606

632 22234112 22234112 20676608 20676608 050905123606

615 22234112 22234112 21446656 21446656 050905123606

616 4806656 4806656 4595712 4595712 050905123607

631 32572416 32572416 29630464 29630464 050905123607

628 39420928 39420928 37060608 37060608 050905123607

617 8126464 8126464 7078912 57737216 102760448 050905123607

632 22234112 22234112 20676608 20676608 050905123607

615 22234112 22234112 21446656 21446656 050905123607

616 5824512 5824512 4866048 4866048 050905123608

631 32572416 32572416 31473664 31473664 050905123608

628 39420928 39420928 39247872 39247872 050905123608

617 8126464 8126464 7840768 57737216 102760448 050905123608

632 22234112 22234112 21790720 21790720 050905123608

615 26911744 26911744 22781952 22781952 050905123608

616 5824512 5824512 4866048 4866048 050905123609

631 32572416 32572416 31498240 31498240 050905123609

628 39420928 39420928 39264256 39264256 050905123609

617 8126464 8126464 7840768 57737216 109051904 050905123609

632 22234112 22234112 21815296 21815296 050905123609

615 26911744 26911744 22806528 22806528 050905123609

616 5824512 5824512 5144576 5144576 050905123610

631 39420928 39420928 33439744 33439744 050905123610

628 47708160 47708160 42033152 42033152 050905123610

617 9142272 9142272 8889344 57737216 111149056 050905123610

632 26911744 26911744 23027712 23027712 050905123610

615 26911744 26911744 24371200 24371200 050905123610

616 5824512 5824512 5144576 5144576 050905123611

631 39420928 39420928 33439744 33439744 050905123611

628 47708160 47708160 42033152 42033152 050905123611

617 9142272 9142272 8889344 57737216 117440512 050905123611

632 26911744 26911744 23027712 23027712 050905123611

615 26911744 26911744 24371200 24371200 050905123611

616 5824512 5824512 5554176 5554176 050905123612

631 39420928 39420928 35463168 35463168 050905123612

628 47708160 47708160 44679168 44679168 050905123612

617 9142272 9142272 8889344 57737216 118489088 050905123612

632 26911744 26911744 24526848 24526848 050905123612

615 26911744 26911744 25600000 25600000 050905123612

616 5824512 5824512 5611520 5611520 050905123613

631 39420928 39420928 35561472 35561472 050905123613

628 47708160 47708160 44892160 44892160 050905123613

617 9142272 9142272 508928 57737216 124780544 050905123613

632 26911744 26911744 24559616 24559616 050905123613

615 26911744 26911744 25673728 25673728 050905123613

616 7056384 7056384 5931008 5931008 050905123614

631 39420928 39420928 38043648 38043648 050905123614

628 57735168 57735168 48242688 48242688 050905123614

617 9142272 9142272 8635392 57737216 124780544 050905123614

632 26911744 26911744 25788416 25788416 050905123614

615 32572416 32572416 27271168 27271168 050905123614

616 7056384 7056384 5931008 5931008 050905123615

631 39420928 39420928 38043648 38043648 050905123615

628 57735168 57735168 48242688 48242688 050905123615

617 9142272 9142272 8635392 57737216 131072000 050905123615

632 26911744 26911744 25788416 25788416 050905123615

615 32572416 32572416 27271168 27271168 050905123615

616 7056384 7056384 6266880 6266880 050905123616

631 47708160 47708160 40247296 40247296 050905123616

628 57735168 57735168 50913280 50913280 050905123616

617 10665984 10665984 8438784 57737216 132120576 050905123616

632 32572416 32572416 27090944 27090944 050905123616

615 32572416 32572416 28876800 28876800 050905123616

616 7056384 7056384 6307840 6307840 050905123617

631 47708160 47708160 40534016 40534016 050905123617

628 57735168 57735168 51470336 51470336 050905123617

617 10665984 10665984 10142720 57737216 137363456 050905123617

632 32572416 32572416 27369472 27369472 050905123617

615 32572416 32572416 29155328 29155328 050905123617

616 7056384 7056384 6488064 6488064 050905123618

631 47708160 47708160 41205760 41205760 050905123618

628 57735168 57735168 52183040 52183040 050905123618

617 10665984 10665984 2614272 57737216 141557760 050905123618

632 32572416 32572416 27959296 27959296 050905123618

615 32572416 32572416 29433856 29433856 050905123618

616 7056384 7056384 6725632 6725632 050905123619

631 47708160 47708160 43032576 43032576 050905123619

628 57735168 57735168 54427648 54427648 050905123619

617 10665984 10665984 9364480 57737216 141557760 050905123619

632 32572416 32572416 29155328 29155328 050905123619

615 32572416 32572416 30564352 30564352 050905123619

616 7056384 7056384 6782976 6782976 050905123620

631 47708160 47708160 43139072 43139072 050905123620

628 57735168 57735168 54771712 54771712 050905123620

617 10665984 10665984 9888768 57737216 145752064 050905123620

632 32572416 32572416 29188096 29188096 050905123620

615 32572416 32572416 30687232 30687232 050905123620

616 7056384 7056384 7012352 7012352 050905123621

631 47708160 47708160 44097536 44097536 050905123621

628 57735168 57735168 55828480 55828480 050905123621

617 10665984 10665984 4105216 57737216 149946368 050905123621

632 32572416 32572416 29720576 29720576 050905123621

615 32572416 32572416 31227904 31227904 050905123621

616 8547328 8547328 7290880 7290880 050905123623

631 47708160 47708160 45596672 45596672 050905123623

628 57735168 7110656 57737216 57737216 2097152 050905123623

617 10665984 10665984 10396672 57737216 149946368 050905123623

632 32572416 32572416 30711808 30711808 050905123623

615 32572416 32572416 32227328 32227328 050905123623

616 8547328 8547328 7290880 7290880 050905123624

631 47708160 47708160 45596672 45596672 050905123624

628 57735168 7110656 57737216 57737216 7340032 050905123624

617 10665984 10665984 10396672 57737216 149946368 050905123624

632 32572416 32572416 30711808 30711808 050905123624

615 32572416 32572416 32227328 32227328 050905123624

616 8547328 8547328 7290880 7290880 050905123625

631 47708160 47708160 45596672 45596672 050905123625

628 57735168 7110656 57737216 57737216 13631488 050905123625

617 10665984 10665984 10396672 57737216 149946368 050905123625

632 32572416 32572416 30711808 30711808 050905123625

615 32572416 32572416 32227328 32227328 050905123625

616 8547328 8547328 7290880 7290880 050905123626

631 47708160 47708160 45596672 45596672 050905123626

628 57735168 7110656 57737216 57737216 19922944 050905123626

617 10665984 10665984 10396672 57737216 149946368 050905123626

632 32572416 32572416 30711808 30711808 050905123626

615 32572416 32572416 32227328 32227328 050905123626

616 8547328 8547328 7290880 7290880 050905123627

631 47708160 47708160 45596672 45596672 050905123627

628 57735168 7110656 57737216 57737216 25165824 050905123627

617 10665984 10665984 10396672 57737216 149946368 050905123627

632 32572416 32572416 30711808 30711808 050905123627

615 32572416 32572416 32227328 32227328 050905123627

616 8547328 8547328 7290880 7290880 050905123628

631 47708160 47708160 45596672 45596672 050905123628

628 57735168 7110656 57737216 57737216 31457280 050905123628

617 10665984 10665984 10396672 57737216 149946368 050905123628

632 32572416 32572416 30711808 30711808 050905123628

615 32572416 32572416 32227328 32227328 050905123628

616 8547328 8547328 7290880 7290880 050905123629

631 47708160 47708160 45596672 45596672 050905123629

628 57735168 7110656 57737216 57737216 37748736 050905123629

617 10665984 10665984 10396672 57737216 149946368 050905123629

632 32572416 32572416 30711808 30711808 050905123629

615 32572416 32572416 32227328 32227328 050905123629

616 8547328 8547328 7290880 7290880 050905123630

631 47708160 47708160 45596672 45596672 050905123630

628 57735168 7110656 57737216 57737216 42991616 050905123630

617 10665984 10665984 10396672 57737216 149946368 050905123630

632 32572416 32572416 30711808 30711808 050905123630

615 32572416 32572416 32227328 32227328 050905123630

616 8547328 8547328 7290880 7290880 050905123631

631 47708160 47708160 45596672 45596672 050905123631

628 57735168 7110656 57737216 57737216 49283072 050905123631

617 10665984 10665984 10396672 57737216 149946368 050905123631

632 32572416 32572416 30711808 30711808 050905123631

615 32572416 32572416 32227328 32227328 050905123631

616 8547328 8547328 7290880 7290880 050905123632

631 47708160 47708160 45613056 45613056 050905123632

628 7110656 7110656 66560 57737216 53477376 050905123632

617 10665984 10665984 10396672 57737216 152043520 050905123632

632 32572416 32572416 30720000 30720000 050905123632

615 32572416 32572416 32227328 32227328 050905123632

616 8547328 8547328 7290880 7290880 050905123633

631 47708160 47708160 45613056 45613056 050905123633

628 7110656 7110656 66560 57737216 53477376 050905123633

617 10665984 10665984 10396672 57737216 158334976 050905123633

632 32572416 32572416 30720000 30720000 050905123633

615 32572416 32572416 32227328 32227328 050905123633

616 8547328 8547328 7585792 7585792 050905123634

631 47708160 47708160 47251456 47251456 050905123634

628 7110656 7110656 2434048 57737216 53477376 050905123634

617 10665984 10665984 7980032 57737216 159383552 050905123634

632 32572416 32572416 31956992 31956992 050905123634

615 39420928 39420928 33546240 33546240 050905123634

616 8547328 8547328 7798784 7798784 050905123635

631 57735168 57735168 48455680 48455680 050905123635

628 7110656 7110656 4006912 57737216 53477376 050905123635

617 12697600 12697600 12174336 57737216 161480704 050905123635

632 32572416 32572416 32563200 32563200 050905123635

615 39420928 39420928 34357248 34357248 050905123635

616 8547328 8547328 7798784 7798784 050905123636

631 57735168 57735168 48455680 48455680 050905123636

628 7110656 7110656 4006912 57737216 53477376 050905123636

617 12697600 12697600 12174336 57737216 167772160 050905123636

632 32572416 32572416 32563200 32563200 050905123636

615 39420928 39420928 34357248 34357248 050905123636

616 8547328 8547328 8028160 8028160 050905123637

631 57735168 57735168 50356224 50356224 050905123637

628 7110656 7110656 6095872 57737216 54525952 050905123637

617 12697600 12697600 6022144 57737216 169869312 050905123637

632 39420928 39420928 33759232 33759232 050905123637

615 39420928 39420928 35430400 35430400 050905123637

616 8547328 8547328 8118272 8118272 050905123638

631 57735168 57735168 51077120 51077120 050905123638

628 7110656 7110656 1295360 57737216 58720256 050905123638

617 12697600 12697600 8840192 57737216 169869312 050905123638

632 39420928 39420928 34308096 34308096 050905123638

615 39420928 39420928 35782656 35782656 050905123638

616 8547328 8547328 8192000 8192000 050905123639

631 57735168 57735168 52076544 52076544 050905123639

628 7110656 7110656 2212864 57737216 58720256 050905123639

617 12697600 12697600 11920384 57737216 171966464 050905123639

632 39420928 39420928 35012608 35012608 050905123639

615 39420928 39420928 36298752 36298752 050905123639

616 8547328 8547328 8192000 8192000 050905123640

631 57735168 57735168 52076544 52076544 050905123640

628 7110656 7110656 2212864 57737216 58720256 050905123640

617 12697600 12697600 11920384 57737216 178257920 050905123640

632 39420928 39420928 35012608 35012608 050905123640

615 39420928 39420928 36298752 36298752 050905123640

616 8547328 8547328 8355840 8355840 050905123641

631 57735168 57735168 53706752 53706752 050905123641

628 7110656 7110656 3982336 57737216 58720256 050905123641

617 12697600 12697600 6030336 57737216 180355072 050905123641

632 39420928 39420928 36265984 36265984 050905123641

615 39420928 39420928 37412864 37412864 050905123641

616 10350592 10350592 8560640 8560640 050905123642

631 57735168 57735168 55558144 55558144 050905123642

628 7110656 7110656 6145024 57737216 58720256 050905123642

617 12697600 12697600 11666432 57737216 180355072 050905123642

632 39420928 39420928 37437440 37437440 050905123642

615 39420928 39420928 38658048 38658048 050905123642

616 10350592 10350592 8560640 8560640 050905123643

631 57735168 57735168 55558144 55558144 050905123643

628 7110656 7110656 6145024 57737216 58720256 050905123643

617 12697600 12697600 11666432 57737216 185597952 050905123643

632 39420928 39420928 37437440 37437440 050905123643

615 39420928 39420928 38666240 38666240 050905123643

616 10350592 10350592 8609792 8609792 050905123644

631 57735168 57735168 55803904 55803904 050905123644

628 7110656 5079040 6538240 57737216 59768832 050905123644

617 12697600 12697600 1745920 57737216 190840832 050905123644

632 39420928 39420928 37560320 37560320 050905123644

615 39420928 39420928 38871040 38871040 050905123644

616 10350592 10350592 8716288 8716288 050905123645

631 57735168 57735168 56516608 56516608 050905123645

628 7110656 5079040 1164288 57737216 65011712 050905123645

617 12697600 12697600 3974144 57737216 190840832 050905123645

632 39420928 39420928 37879808 37879808 050905123645

615 39420928 39420928 39247872 39247872 050905123645

616 10350592 10350592 8953856 8953856 050905123646

631 57735168 7110656 57737216 57737216 2097152 050905123646

628 7110656 5079040 2737152 57737216 65011712 050905123646

617 12697600 12697600 8299520 57737216 190840832 050905123646

632 39420928 39420928 38797312 38797312 050905123646

615 47708160 47708160 40402944 40402944 050905123646

616 10350592 10350592 8953856 8953856 050905123647

631 57735168 7110656 57737216 57737216 8388608 050905123647

628 7110656 5079040 2737152 57737216 65011712 050905123647

617 12697600 12697600 8299520 57737216 190840832 050905123647

632 39420928 39420928 38797312 38797312 050905123647

615 47708160 47708160 40402944 40402944 050905123647

616 10350592 10350592 8953856 8953856 050905123648

631 57735168 7110656 57737216 57737216 14680064 050905123648

628 7110656 5079040 2737152 57737216 65011712 050905123648

617 12697600 12697600 8299520 57737216 190840832 050905123648

632 39420928 39420928 38797312 38797312 050905123648

615 47708160 47708160 40402944 40402944 050905123648

616 10350592 10350592 8953856 8953856 050905123649

631 57735168 7110656 57737216 57737216 20971520 050905123649

628 7110656 5079040 2737152 57737216 65011712 050905123649

617 12697600 12697600 8299520 57737216 190840832 050905123649

632 39420928 39420928 38797312 38797312 050905123649

615 47708160 47708160 40402944 40402944 050905123649

616 10350592 10350592 8953856 8953856 050905123650

631 57735168 7110656 57737216 57737216 27262976 050905123650

628 7110656 5079040 2737152 57737216 65011712 050905123650

617 12697600 12697600 8299520 57737216 190840832 050905123650

632 39420928 39420928 38797312 38797312 050905123650

615 47708160 47708160 40402944 40402944 050905123650

616 10350592 10350592 8953856 8953856 050905123651

631 57735168 7110656 57737216 57737216 32505856 050905123651

628 7110656 5079040 2737152 57737216 65011712 050905123651

617 12697600 12697600 8299520 57737216 190840832 050905123651

632 39420928 39420928 38797312 38797312 050905123651

615 47708160 47708160 40402944 40402944 050905123651

616 10350592 10350592 8953856 8953856 050905123652

631 57735168 7110656 57737216 57737216 38797312 050905123652

628 7110656 5079040 2737152 57737216 65011712 050905123652

617 12697600 12697600 8299520 57737216 190840832 050905123652

632 39420928 39420928 38797312 38797312 050905123652

615 47708160 47708160 40402944 40402944 050905123652

616 10350592 10350592 8953856 8953856 050905123653

631 57735168 7110656 57737216 57737216 45088768 050905123653

628 7110656 5079040 2737152 57737216 65011712 050905123653

617 12697600 12697600 8299520 57737216 190840832 050905123653

632 39420928 39420928 38797312 38797312 050905123653

615 47708160 47708160 40402944 40402944 050905123653

616 10350592 10350592 8953856 8953856 050905123654

631 57735168 7110656 57737216 57737216 51380224 050905123654

628 7110656 5079040 2737152 57737216 65011712 050905123654

617 12697600 12697600 8299520 57737216 190840832 050905123654

632 39420928 39420928 38797312 38797312 050905123654

615 47708160 47708160 40402944 40402944 050905123654

616 10350592 10350592 9109504 9109504 050905123655

631 7110656 7110656 844800 57737216 53477376 050905123655

628 7110656 5079040 3982336 57737216 65011712 050905123655

617 12697600 12697600 11248640 57737216 190840832 050905123655

632 39420928 39420928 39100416 39100416 050905123655

615 47708160 47708160 41132032 41132032 050905123655

616 10350592 10350592 9191424 9191424 050905123656

631 7110656 7110656 1090560 57737216 53477376 050905123656

628 7110656 5079040 4375552 57737216 65011712 050905123656

617 12697600 12697600 12428288 57737216 196083712 050905123656

632 39420928 39420928 39305216 39305216 050905123656

615 47708160 47708160 41459712 41459712 050905123656

616 10350592 10350592 9191424 9191424 050905123658

631 7110656 7110656 1090560 57737216 53477376 050905123658

628 7110656 5079040 4375552 57737216 65011712 050905123658

617 12697600 12697600 12428288 57737216 201326592 050905123658

632 39420928 39420928 39305216 39305216 050905123658

615 47708160 47708160 41459712 41459712 050905123658

616 10350592 10350592 9306112 9306112 050905123659

631 7110656 7110656 1541120 57737216 53477376 050905123659

628 7110656 5079040 656384 57737216 68157440 050905123659

617 14221312 14221312 3384320 57737216 202375168 050905123659

632 47708160 47708160 39837696 39837696 050905123659

615 47708160 47708160 42008576 42008576 050905123659

616 10350592 10350592 9805824 9805824 050905123700

631 7110656 7110656 3564544 57737216 53477376 050905123700

628 7110656 5079040 3671040 57737216 68157440 050905123700

617 14221312 14221312 12690432 57737216 202375168 050905123700

632 47708160 47708160 41508864 41508864 050905123700

615 47708160 47708160 43941888 43941888 050905123700

616 10350592 10350592 9854976 9854976 050905123701

631 7110656 7110656 3957760 57737216 53477376 050905123701

628 7110656 5079040 508928 57737216 72351744 050905123701

617 14221312 14221312 13935616 57737216 203423744 050905123701

632 47708160 47708160 41910272 41910272 050905123701

615 47708160 47708160 44154880 44154880 050905123701

616 10350592 10350592 9854976 9854976 050905123702

631 7110656 7110656 3957760 57737216 53477376 050905123702

628 7110656 5079040 508928 57737216 72351744 050905123702

617 14221312 14221312 13935616 57737216 209715200 050905123702

632 47708160 47708160 41910272 41910272 050905123702

615 47708160 47708160 44154880 44154880 050905123702

616 10350592 10350592 9912320 9912320 050905123703

631 7110656 7110656 4637696 57737216 53477376 050905123703

628 7110656 5079040 1033216 57737216 72351744 050905123703

617 14221312 14221312 1770496 57737216 213909504 050905123703

632 47708160 47708160 42393600 42393600 050905123703

615 47708160 47708160 44449792 44449792 050905123703

616 10350592 10350592 10215424 10215424 050905123704

631 7110656 7110656 6095872 57737216 54525952 050905123704

628 7110656 5079040 2868224 57737216 72351744 050905123704

617 14221312 14221312 7144448 57737216 213909504 050905123704

632 47708160 47708160 43335680 43335680 050905123704

615 47708160 47708160 45596672 45596672 050905123704

616 10350592 10350592 10272768 10272768 050905123705

631 7110656 7110656 779264 57737216 59768832 050905123705

628 7110656 5079040 3654656 57737216 72351744 050905123705

617 14221312 14221312 9634816 57737216 213909504 050905123705

632 47708160 47708160 43786240 43786240 050905123705

615 47708160 47708160 46014464 46014464 050905123705

616 12532736 12532736 10371072 10371072 050905123706

631 7110656 7110656 1696768 57737216 59768832 050905123706

628 7110656 5079040 4572160 57737216 74448896 050905123706

617 14221312 14221312 13042688 57737216 213909504 050905123706

632 47708160 47708160 44228608 44228608 050905123706

615 47708160 47708160 46424064 46424064 050905123706

616 12532736 12532736 10395648 10395648 050905123707

631 7110656 7110656 1696768 57737216 59768832 050905123707

628 7110656 5079040 254976 57737216 75497472 050905123707

617 14221312 14221312 13173760 57737216 219152384 050905123707

632 47708160 47708160 44261376 44261376 050905123707

615 47708160 47708160 46481408 46481408 050905123707

616 12532736 12532736 10395648 10395648 050905123708

631 7110656 7110656 1696768 57737216 59768832 050905123708

628 7110656 5079040 254976 57737216 75497472 050905123708

617 14221312 14221312 13173760 57737216 225443840 050905123708

632 47708160 47708160 44261376 44261376 050905123708

615 47708160 47708160 46481408 46481408 050905123708

616 12532736 12532736 10641408 10641408 050905123709

631 7110656 7110656 3073024 57737216 59768832 050905123709

628 7110656 5079040 2614272 57737216 75497472 050905123709

617 14221312 14221312 8037376 57737216 226492416 050905123709

632 47708160 47708160 45670400 45670400 050905123709

615 47708160 47708160 47513600 47513600 050905123709

616 12532736 12532736 10846208 10846208 050905123710

631 7110656 7110656 4645888 57737216 59768832 050905123710

628 6094848 6094848 4580352 57737216 75497472 050905123710

617 14221312 14221312 13935616 57737216 227540992 050905123710

632 47708160 47708160 46694400 46694400 050905123710

615 57735168 57735168 48365568 48365568 050905123710

616 12532736 12532736 10846208 10846208 050905123711

631 7110656 7110656 4645888 57737216 59768832 050905123711

628 6094848 6094848 4580352 57737216 75497472 050905123711

617 14221312 14221312 13935616 57737216 233832448 050905123711

632 47708160 47708160 46694400 46694400 050905123711

615 57735168 57735168 48365568 48365568 050905123711

616 12532736 12532736 10960896 10960896 050905123712

631 7110656 7110656 5104640 57737216 59768832 050905123712

628 6094848 6094848 5301248 57737216 76546048 050905123712

617 14221312 14221312 1967104 57737216 238026752 050905123712

632 47708160 47708160 46997504 46997504 050905123712

615 57735168 57735168 48685056 48685056 050905123712

616 12532736 12532736 11083776 11083776 050905123713

631 7110656 7110656 5694464 57737216 59768832 050905123713

628 6094848 6094848 721920 57737216 80740352 050905123713

617 14221312 14221312 3605504 57737216 238026752 050905123713

632 47708160 47708160 47464448 47464448 050905123713

615 57735168 57735168 49061888 49061888 050905123713

616 12532736 12532736 11247616 11247616 050905123714

631 7110656 5079040 6284288 57737216 62914560 050905123714

628 6094848 6094848 1639424 57737216 80740352 050905123714

617 14221312 14221312 6882304 57737216 238026752 050905123714

632 57735168 57735168 47988736 47988736 050905123714

615 57735168 57735168 49741824 49741824 050905123714

616 12532736 12532736 11378688 11378688 050905123715

631 7110656 5079040 1180672 57737216 65011712 050905123715

628 6094848 6094848 3015680 57737216 80740352 050905123715

617 16252928 16252928 11273216 57737216 238026752 050905123715

632 57735168 57735168 48726016 48726016 050905123715

615 57735168 57735168 50642944 50642944 050905123715

616 12532736 12532736 11460608 11460608 050905123716

631 7110656 5079040 2229248 57737216 65011712 050905123716

628 6094848 6094848 4064256 57737216 80740352 050905123716

617 16252928 16252928 15205376 57737216 241172480 050905123716

632 57735168 57735168 49291264 49291264 050905123716

615 57735168 57735168 51412992 51412992 050905123716

616 12532736 12532736 11460608 11460608 050905123717

631 7110656 5079040 2229248 57737216 65011712 050905123717

628 6094848 6094848 4064256 57737216 80740352 050905123717

617 16252928 16252928 15205376 57737216 247463936 050905123717

632 57735168 57735168 49291264 49291264 050905123717

615 57735168 57735168 51412992 51412992 050905123717

616 12532736 12532736 11517952 11517952 050905123718

631 7110656 5079040 2622464 57737216 65011712 050905123718

628 6094848 6094848 4523008 57737216 80740352 050905123718

617 16252928 16252928 1639424 57737216 252706816 050905123718

632 57735168 57735168 49512448 49512448 050905123718

615 57735168 57735168 51748864 51748864 050905123718

616 12532736 12532736 11689984 11689984 050905123719

631 7110656 5079040 3081216 57737216 65011712 050905123719

628 6094848 6094848 508928 57737216 84934656 050905123719

617 16252928 16252928 3539968 57737216 252706816 050905123719

632 57735168 57735168 49848320 49848320 050905123719

615 57735168 57735168 52051968 52051968 050905123719

616 12532736 12532736 11780096 11780096 050905123720

631 7110656 5079040 3998720 57737216 65011712 050905123720

628 6094848 6094848 2147328 57737216 84934656 050905123720

617 16252928 16252928 7734272 57737216 252706816 050905123720

632 57735168 57735168 50610176 50610176 050905123720

615 57735168 57735168 53002240 53002240 050905123720

616 12532736 12532736 11935744 11935744 050905123721

631 7110656 5079040 1426432 57737216 69206016 050905123721

628 6094848 6094848 3458048 57737216 84934656 050905123721

617 16252928 16252928 11731968 57737216 252706816 050905123721

632 57735168 57735168 51740672 51740672 050905123721

615 57735168 57735168 53878784 53878784 050905123721

616 12532736 12532736 12115968 12115968 050905123722

631 7110656 5079040 2606080 57737216 69206016 050905123722

628 6094848 6094848 4572160 57737216 84934656 050905123722

617 16252928 16252928 15205376 57737216 253755392 050905123722

632 57735168 57735168 52576256 52576256 050905123722

615 57735168 57735168 54452224 54452224 050905123722

616 12532736 12532736 12115968 12115968 050905123723

631 7110656 5079040 2606080 57737216 69206016 050905123723

628 6094848 6094848 4572160 57737216 84934656 050905123723

617 16252928 16252928 15205376 57737216 260046848 050905123723

632 57735168 57735168 52576256 52576256 050905123723

615 57735168 57735168 54452224 54452224 050905123723

616 12532736 12532736 12115968 12115968 050905123724

631 7110656 5079040 2606080 57737216 69206016 050905123724

628 6094848 6094848 4572160 57737216 84934656 050905123724

617 16252928 16252928 15205376 57737216 265289728 050905123724

632 57735168 57735168 52576256 52576256 050905123724

615 57735168 57735168 54452224 54452224 050905123724

616 12532736 12532736 12304384 12304384 050905123725

631 7110656 5079040 3720192 57737216 69206016 050905123725

628 6094848 6094848 5555200 57737216 88080384 050905123725

617 16252928 16252928 3851264 57737216 266338304 050905123725

632 57735168 57735168 52871168 52871168 050905123725

615 57735168 57735168 55189504 55189504 050905123725

616 12532736 12532736 12345344 12345344 050905123726

631 7110656 5079040 4310016 57737216 69206016 050905123726

628 6094848 6094848 1238016 57737216 90177536 050905123726

617 16252928 16252928 6865920 57737216 266338304 050905123726

632 57735168 57735168 53264384 53264384 050905123726

615 57735168 57735168 55590912 55590912 050905123726

616 12532736 12532736 12369920 12369920 050905123727

631 7110656 5079040 762880 57737216 72351744 050905123727

628 6094848 6094848 1958912 57737216 90177536 050905123727

617 16252928 16252928 8700928 57737216 266338304 050905123727

632 57735168 57735168 53510144 53510144 050905123727

615 57735168 57735168 55869440 55869440 050905123727

616 15173632 15173632 12681216 12681216 050905123728

631 7110656 5079040 2663424 57737216 72351744 050905123728

628 6094848 6094848 4187136 57737216 90177536 050905123728

617 16252928 16252928 14664704 57737216 266338304 050905123728

632 57735168 57735168 54607872 54607872 050905123728

615 57735168 57735168 57049088 57049088 050905123728

616 15173632 15173632 12787712 12787712 050905123729

631 7110656 5079040 2925568 57737216 72351744 050905123729

628 6094848 6094848 4449280 57737216 90177536 050905123729

617 16252928 16252928 15713280 57737216 271581184 050905123729

632 57735168 57735168 54755328 54755328 050905123729

615 57735168 57735168 57303040 57303040 050905123729

616 15173632 15173632 12787712 12787712 050905123731

631 7110656 5079040 2925568 57737216 72351744 050905123731

628 6094848 6094848 4449280 57737216 90177536 050905123731

617 16252928 16252928 15713280 57737216 276824064 050905123731

632 57735168 57735168 54755328 54755328 050905123731

615 57735168 57735168 57303040 57303040 050905123731

616 15173632 15173632 12926976 12926976 050905123732

631 7110656 5079040 3777536 57737216 72351744 050905123732

628 8126464 8126464 5760000 57737216 90177536 050905123732

617 16252928 16252928 4047872 57737216 281018368 050905123732

632 57735168 57735168 55164928 55164928 050905123732

615 57735168 5972992 57737216 57737216 050905123732

616 15173632 15173632 12926976 12926976 050905123733

631 7110656 5079040 3843072 57737216 72351744 050905123733

628 8126464 8126464 5891072 57737216 90177536 050905123733

617 16252928 16252928 4244480 57737216 281018368 050905123733

632 57735168 57735168 55197696 55197696 050905123733

615 57735168 7110656 57737216 57737216 6291456 050905123733

616 15173632 15173632 12926976 12926976 050905123734

631 7110656 5079040 3843072 57737216 72351744 050905123734

628 8126464 8126464 5891072 57737216 90177536 050905123734

617 16252928 16252928 4244480 57737216 281018368 050905123734

632 57735168 57735168 55197696 55197696 050905123734

615 57735168 7110656 57737216 57737216 12582912 050905123734

616 15173632 15173632 12926976 12926976 050905123735

631 7110656 5079040 3843072 57737216 72351744 050905123735

628 8126464 8126464 5891072 57737216 90177536 050905123735

617 16252928 16252928 4244480 57737216 281018368 050905123735

632 57735168 57735168 55197696 55197696 050905123735

615 57735168 7110656 57737216 57737216 17825792 050905123735

616 15173632 15173632 12926976 12926976 050905123736

631 7110656 5079040 3843072 57737216 72351744 050905123736

628 8126464 8126464 5891072 57737216 90177536 050905123736

617 16252928 16252928 4244480 57737216 281018368 050905123736

632 57735168 57735168 55197696 55197696 050905123736

615 57735168 7110656 57737216 57737216 24117248 050905123736

616 15173632 15173632 12926976 12926976 050905123737

631 7110656 5079040 3843072 57737216 72351744 050905123737

628 8126464 8126464 5891072 57737216 90177536 050905123737

617 16252928 16252928 4244480 57737216 281018368 050905123737

632 57735168 57735168 55197696 55197696 050905123737

615 57735168 7110656 57737216 57737216 30408704 050905123737

616 15173632 15173632 12926976 12926976 050905123738

631 7110656 5079040 3843072 57737216 72351744 050905123738

628 8126464 8126464 5891072 57737216 90177536 050905123738

617 16252928 16252928 4244480 57737216 281018368 050905123738

632 57735168 57735168 55197696 55197696 050905123738

615 57735168 7110656 57737216 57737216 36700160 050905123738

616 15173632 15173632 12926976 12926976 050905123739

631 7110656 5079040 3843072 57737216 72351744 050905123739

628 8126464 8126464 5891072 57737216 90177536 050905123739

617 16252928 16252928 4244480 57737216 281018368 050905123739

632 57735168 57735168 55197696 55197696 050905123739

615 57735168 7110656 57737216 57737216 41943040 050905123739

616 15173632 15173632 12926976 12926976 050905123740

631 7110656 5079040 3843072 57737216 72351744 050905123740

628 8126464 8126464 5891072 57737216 90177536 050905123740

617 16252928 16252928 4244480 57737216 281018368 050905123740

632 57735168 57735168 55197696 55197696 050905123740

615 57735168 7110656 57737216 57737216 48234496 050905123740

616 15173632 15173632 12959744 12959744 050905123741

631 7110656 5079040 4236288 57737216 72351744 050905123741

628 8126464 8126464 6349824 57737216 90177536 050905123741

617 16252928 16252928 5424128 57737216 281018368 050905123741

632 57735168 57735168 55435264 55435264 050905123741

615 7110656 7110656 836608 57737216 53477376 050905123741

616 15173632 15173632 13033472 13033472 050905123742

631 7110656 5079040 4826112 57737216 74448896 050905123742

628 8126464 8126464 7332864 57737216 92274688 050905123742

617 16252928 16252928 8569856 57737216 281018368 050905123742

632 57735168 57735168 56123392 56123392 050905123742

615 7110656 7110656 1532928 57737216 53477376 050905123742

616 15173632 15173632 13066240 13066240 050905123743

631 7110656 5079040 254976 57737216 76546048 050905123743

628 8126464 8126464 762880 57737216 96468992 050905123743

617 16252928 16252928 9159680 57737216 281018368 050905123743

632 57735168 57735168 56336384 56336384 050905123743

615 7110656 7110656 1655808 57737216 53477376 050905123743

616 15173632 15173632 13385728 13385728 050905123744

631 7110656 5079040 2483200 57737216 76546048 050905123744

628 8126464 8126464 3646464 57737216 96468992 050905123744

617 16252928 16252928 15713280 57737216 282066944 050905123744

632 57735168 57735168 57344000 57344000 050905123744

615 7110656 7110656 2851840 57737216 53477376 050905123744

616 15173632 15173632 13385728 13385728 050905123745

631 7110656 5079040 2483200 57737216 76546048 050905123745

628 8126464 8126464 3646464 57737216 96468992 050905123745

617 16252928 16252928 15713280 57737216 288358400 050905123745

632 57735168 57735168 57344000 57344000 050905123745

615 7110656 7110656 2851840 57737216 53477376 050905123745

616 15173632 15173632 13402112 13402112 050905123746

631 7110656 5079040 2548736 57737216 76546048 050905123746

628 8126464 8126464 3712000 57737216 96468992 050905123746

617 16252928 16252928 1024 57737216 294649856 050905123746

632 57735168 57735168 57384960 57384960 050905123746

615 7110656 7110656 2917376 57737216 53477376 050905123746

616 15173632 15173632 13631488 13631488 050905123747

631 6094848 6094848 3728384 57737216 76546048 050905123747

628 8126464 8126464 5088256 57737216 96468992 050905123747

617 18284544 18284544 4326400 57737216 294649856 050905123747

632 57735168 7110656 57737216 57737216 4194304 050905123747

615 7110656 7110656 3802112 57737216 53477376 050905123747

616 15173632 15173632 13631488 13631488 050905123748

631 6094848 6094848 3728384 57737216 76546048 050905123748

628 8126464 8126464 5088256 57737216 96468992 050905123748

617 18284544 18284544 4326400 57737216 294649856 050905123748

632 57735168 7110656 57737216 57737216 10485760 050905123748

615 7110656 7110656 3802112 57737216 53477376 050905123748

616 15173632 15173632 13631488 13631488 050905123749

631 6094848 6094848 3728384 57737216 76546048 050905123749

628 8126464 8126464 5088256 57737216 96468992 050905123749

617 18284544 18284544 4326400 57737216 294649856 050905123749

632 57735168 7110656 57737216 57737216 15728640 050905123749

615 7110656 7110656 3802112 57737216 53477376 050905123749

616 15173632 15173632 13631488 13631488 050905123750

631 6094848 6094848 3728384 57737216 76546048 050905123750

628 8126464 8126464 5088256 57737216 96468992 050905123750

617 18284544 18284544 4326400 57737216 294649856 050905123750

632 57735168 7110656 57737216 57737216 22020096 050905123750

615 7110656 7110656 3802112 57737216 53477376 050905123750

616 15173632 15173632 13631488 13631488 050905123751

631 6094848 6094848 3728384 57737216 76546048 050905123751

628 8126464 8126464 5088256 57737216 96468992 050905123751

617 18284544 18284544 4326400 57737216 294649856 050905123751

632 57735168 7110656 57737216 57737216 28311552 050905123751

615 7110656 7110656 3802112 57737216 53477376 050905123751

616 15173632 15173632 13631488 13631488 050905123752

631 6094848 6094848 3728384 57737216 76546048 050905123752

628 8126464 8126464 5088256 57737216 96468992 050905123752

617 18284544 18284544 4326400 57737216 294649856 050905123752

632 57735168 7110656 57737216 57737216 33554432 050905123752

615 7110656 7110656 3802112 57737216 53477376 050905123752

616 15173632 15173632 13631488 13631488 050905123753

631 6094848 6094848 3728384 57737216 76546048 050905123753

628 8126464 8126464 5088256 57737216 96468992 050905123753

617 18284544 18284544 4326400 57737216 294649856 050905123753

632 57735168 7110656 57737216 57737216 39845888 050905123753

615 7110656 7110656 3802112 57737216 53477376 050905123753

616 15173632 15173632 13631488 13631488 050905123754

631 6094848 6094848 3728384 57737216 76546048 050905123754

628 8126464 8126464 5088256 57737216 96468992 050905123754

617 18284544 18284544 4326400 57737216 294649856 050905123754

632 57735168 7110656 57737216 57737216 46137344 050905123754

615 7110656 7110656 3802112 57737216 53477376 050905123754

616 15173632 15173632 13631488 13631488 050905123755

631 6094848 6094848 3728384 57737216 76546048 050905123755

628 8126464 8126464 5088256 57737216 96468992 050905123755

617 18284544 18284544 4326400 57737216 294649856 050905123755

632 57735168 7110656 57737216 57737216 52428800 050905123755

615 7110656 7110656 3802112 57737216 53477376 050905123755

616 15173632 15173632 13852672 13852672 050905123756

631 6094848 6094848 5301248 57737216 76546048 050905123756

628 8126464 8126464 7250944 57737216 96468992 050905123756

617 18284544 18284544 10552320 57737216 294649856 050905123756

632 7110656 7110656 1401856 57737216 53477376 050905123756

615 7110656 7110656 4826112 57737216 53477376 050905123756

616 15173632 15173632 13975552 13975552 050905123757

631 6094848 6094848 762880 57737216 80740352 050905123757

628 8126464 8126464 7840768 57737216 97517568 050905123757

617 18284544 18284544 12780544 57737216 294649856 050905123757

632 7110656 7110656 1664000 57737216 53477376 050905123757

615 7110656 7110656 5088256 57737216 53477376 050905123757

616 15173632 15173632 14032896 14032896 050905123758

631 6094848 6094848 762880 57737216 80740352 050905123758

628 8126464 8126464 508928 57737216 102760448 050905123758

617 18284544 18284544 13239296 57737216 294649856 050905123758

632 7110656 7110656 1737728 57737216 53477376 050905123758

615 7110656 7110656 5145600 57737216 53477376 050905123758

616 15173632 15173632 14188544 14188544 050905123759

631 6094848 6094848 2532352 57737216 80740352 050905123759

628 8126464 8126464 2147328 57737216 102760448 050905123759

617 18284544 18284544 17236992 57737216 297795584 050905123759

632 7110656 7110656 2458624 57737216 53477376 050905123759

615 7110656 7110656 5661696 57737216 53477376 050905123759

616 15173632 15173632 14188544 14188544 050905123800

631 6094848 6094848 2532352 57737216 80740352 050905123800

628 8126464 8126464 2147328 57737216 102760448 050905123800

617 18284544 18284544 17236992 57737216 304087040 050905123800

632 7110656 7110656 2458624 57737216 53477376 050905123800

615 7110656 7110656 5661696 57737216 53477376 050905123800

616 15173632 15173632 14188544 14188544 050905123801

631 6094848 6094848 2532352 57737216 80740352 050905123801

628 8126464 8126464 2147328 57737216 102760448 050905123801

617 18284544 18284544 17236992 57737216 310378496 050905123801

632 7110656 7110656 2458624 57737216 53477376 050905123801

615 7110656 7110656 5661696 57737216 53477376 050905123801

616 15173632 15173632 14499840 14499840 050905123802

631 6094848 6094848 3908608 57737216 80740352 050905123802

628 8126464 8126464 3851264 57737216 102760448 050905123802

617 18284544 18284544 5702656 57737216 310378496 050905123802

632 7110656 7110656 3269632 57737216 53477376 050905123802

615 7110656 7110656 6603776 57737216 53477376 050905123802

616 15173632 15173632 14639104 14639104 050905123803

631 6094848 6094848 4563968 57737216 80740352 050905123803

628 8126464 8126464 4834304 57737216 102760448 050905123803

617 18284544 18284544 8913920 57737216 310378496 050905123803

632 7110656 7110656 3965952 57737216 53477376 050905123803

615 7110656 7110656 713728 57737216 58720256 050905123803

616 14647296 14647296 14647296 14647296 050905123804

631 6094848 6094848 4629504 57737216 81788928 050905123804

628 8126464 8126464 4965376 57737216 103809024 050905123804

617 18284544 18284544 9372672 57737216 311427072 050905123804

632 7110656 7110656 4064256 57737216 55574528 050905123804

615 1245184 1245184 346112 57737216 59768832 050905123804

616 14647296 14647296 14647296 14647296 050905123805

631 6094848 6094848 4629504 57737216 83886080 050905123805

628 8126464 8126464 4965376 57737216 105906176 050905123805

617 18284544 18284544 9372672 57737216 313524224 050905123805

632 7110656 7110656 4064256 57737216 56623104 050905123805

615 1245184 1245184 346112 57737216 59768832 050905123805

616 14647296 14647296 14647296 14647296 050905123806

631 4063232 4063232 4319232 57737216 84934656 050905123806

628 6094848 6094848 508928 57737216 106954752 050905123806

617 18284544 18284544 9372672 57737216 315621376 050905123806

632 1245184 1245184 993280 57737216 57671680 050905123806

615 1245184 1245184 346112 57737216 59768832 050905123806

616 14647296 14647296 14647296 14647296 050905123808

631 4063232 4063232 4319232 57737216 84934656 050905123808

628 6094848 6094848 6604800 57737216 106954752 050905123808

617 15745024 15745024 254976 57737216 318767104 050905123808

632 1245184 1245184 993280 57737216 57671680 050905123808

615 1245184 1245184 346112 57737216 59768832 050905123808

616 14647296 14647296 14647296 14647296 050905123809

631 4063232 4063232 4319232 57737216 84934656 050905123809

628 6094848 6094848 6604800 57737216 106954752 050905123809

617 15745024 15745024 16004096 57737216 318767104 050905123809

632 1245184 1245184 993280 57737216 57671680 050905123809

615 1245184 1245184 346112 57737216 59768832 050905123809

616 14647296 14647296 14647296 14647296 050905123810

631 4063232 4063232 4319232 57737216 84934656 050905123810

628 6094848 6094848 6604800 57737216 106954752 050905123810

617 15745024 15745024 16004096 57737216 318767104 050905123810

632 1245184 1245184 993280 57737216 57671680 050905123810

615 1245184 1245184 346112 57737216 59768832 050905123810

616 14647296 14647296 14647296 14647296 050905123811

631 4063232 4063232 4319232 57737216 84934656 050905123811

628 6094848 6094848 6604800 57737216 106954752 050905123811

617 15745024 15745024 16004096 57737216 318767104 050905123811

632 1245184 1245184 993280 57737216 57671680 050905123811

615 1245184 1245184 346112 57737216 59768832 050905123811

616 14647296 14647296 14647296 14647296 050905123812

631 4063232 4063232 4319232 57737216 84934656 050905123812

628 6094848 6094848 6604800 57737216 106954752 050905123812

617 15745024 15745024 16004096 57737216 318767104 050905123812

632 1245184 1245184 993280 57737216 57671680 050905123812

615 1245184 1245184 346112 57737216 59768832 050905123812

616 14647296 14647296 14647296 14647296 050905123813

631 4063232 4063232 4319232 57737216 84934656 050905123813

628 6094848 6094848 6604800 57737216 106954752 050905123813

617 15745024 15745024 16004096 57737216 318767104 050905123813

632 1245184 1245184 993280 57737216 57671680 050905123813

615 1245184 1245184 346112 57737216 59768832 050905123813

616 14647296 14647296 14647296 14647296 050905123814

631 4063232 4063232 4319232 57737216 84934656 050905123814

628 6094848 6094848 6604800 57737216 106954752 050905123814

617 15745024 15745024 16004096 57737216 318767104 050905123814

632 1245184 1245184 993280 57737216 57671680 050905123814

615 1245184 1245184 346112 57737216 59768832 050905123814

616 14647296 14647296 14647296 14647296 050905123815

631 4063232 4063232 4319232 57737216 84934656 050905123815

628 6094848 6094848 6604800 57737216 106954752 050905123815

617 15745024 15745024 16004096 57737216 318767104 050905123815

632 1245184 1245184 993280 57737216 57671680 050905123815

615 1245184 1245184 346112 57737216 59768832 050905123815

616 14647296 14647296 14647296 14647296 050905123816

631 4063232 4063232 4319232 57737216 84934656 050905123816

628 6094848 6094848 6604800 57737216 106954752 050905123816

617 15745024 15745024 16004096 57737216 318767104 050905123816

632 1245184 1245184 993280 57737216 57671680 050905123816

615 1245184 1245184 346112 57737216 59768832 050905123816

616 14647296 14647296 14647296 14647296 050905123817

631 4063232 4063232 4319232 57737216 84934656 050905123817

628 6094848 6094848 6604800 57737216 106954752 050905123817

617 15745024 15745024 16004096 57737216 318767104 050905123817

632 1245184 1245184 993280 57737216 57671680 050905123817

615 1245184 1245184 346112 57737216 59768832 050905123817

616 14647296 14647296 14647296 14647296 050905123818

631 4063232 4063232 4319232 57737216 84934656 050905123818

628 6094848 6094848 6604800 57737216 106954752 050905123818

617 15745024 15745024 16004096 57737216 318767104 050905123818

632 1245184 1245184 993280 57737216 57671680 050905123818

615 1245184 1245184 346112 57737216 59768832 050905123818

616 14647296 14647296 14647296 14647296 050905123819

631 4063232 4063232 4319232 57737216 84934656 050905123819

628 6094848 6094848 6604800 57737216 106954752 050905123819

617 15745024 15745024 16004096 57737216 318767104 050905123819

632 1245184 1245184 993280 57737216 57671680 050905123819

615 1245184 1245184 346112 57737216 59768832 050905123819

616 14647296 14647296 14647296 14647296 050905123820

631 4063232 4063232 4319232 57737216 84934656 050905123820

628 6094848 6094848 6604800 57737216 106954752 050905123820

617 15745024 15745024 16004096 57737216 318767104 050905123820

632 1245184 1245184 993280 57737216 57671680 050905123820

615 1245184 1245184 346112 57737216 59768832 050905123820

616 14647296 14647296 14647296 14647296 050905123821

631 4063232 4063232 4319232 57737216 84934656 050905123821

628 6094848 6094848 6604800 57737216 106954752 050905123821

617 15745024 15745024 16004096 57737216 318767104 050905123821

632 1245184 1245184 993280 57737216 57671680 050905123821

615 1245184 1245184 346112 57737216 59768832 050905123821

616 14647296 14647296 14647296 14647296 050905123822

631 4063232 4063232 4319232 57737216 84934656 050905123822

628 6094848 6094848 6604800 57737216 106954752 050905123822

617 15745024 15745024 16004096 57737216 318767104 050905123822

632 1245184 1245184 993280 57737216 57671680 050905123822

615 1245184 1245184 346112 57737216 59768832 050905123822

616 14647296 14647296 14647296 14647296 050905123823

631 4063232 4063232 4319232 57737216 84934656 050905123823

628 6094848 6094848 6604800 57737216 106954752 050905123823

617 15745024 15745024 16004096 57737216 318767104 050905123823

632 1245184 1245184 993280 57737216 57671680 050905123823

615 1245184 1245184 346112 57737216 59768832 050905123823

616 14647296 14647296 14647296 14647296 050905123824

631 4063232 4063232 4319232 57737216 84934656 050905123824

628 6094848 6094848 6604800 57737216 106954752 050905123824

617 15745024 15745024 16004096 57737216 318767104 050905123824

632 1245184 1245184 993280 57737216 57671680 050905123824

615 1245184 1245184 346112 57737216 59768832 050905123824

616 14647296 14647296 14647296 14647296 050905123825

631 4063232 4063232 4319232 57737216 84934656 050905123825

628 6094848 6094848 6604800 57737216 106954752 050905123825

617 15745024 15745024 16004096 57737216 318767104 050905123825

632 1245184 1245184 993280 57737216 57671680 050905123825

615 1245184 1245184 346112 57737216 59768832 050905123825

616 14647296 14647296 14647296 14647296 050905123826

631 4063232 4063232 4319232 57737216 84934656 050905123826

628 6094848 6094848 6604800 57737216 106954752 050905123826

617 15745024 15745024 16004096 57737216 318767104 050905123826

632 1245184 1245184 993280 57737216 57671680 050905123826

615 1245184 1245184 346112 57737216 59768832 050905123826

616 14647296 14647296 14647296 14647296 050905123827

631 4063232 4063232 4319232 57737216 84934656 050905123827

628 6094848 6094848 6604800 57737216 106954752 050905123827

617 15745024 15745024 16004096 57737216 318767104 050905123827

632 1245184 1245184 993280 57737216 57671680 050905123827

615 1245184 1245184 346112 57737216 59768832 050905123827

616 14647296 14647296 14647296 14647296 050905123828

631 4063232 4063232 4319232 57737216 84934656 050905123828

628 6094848 6094848 6604800 57737216 106954752 050905123828

617 15745024 15745024 16004096 57737216 318767104 050905123828

632 1245184 1245184 993280 57737216 57671680 050905123828

615 1245184 1245184 346112 57737216 59768832 050905123828

616 14647296 14647296 14647296 14647296 050905123829

631 4063232 4063232 4319232 57737216 84934656 050905123829

617 15745024 15745024 16004096 57737216 318767104 050905123829

632 1245184 1245184 993280 57737216 57671680 050905123829

615 1245184 1245184 346112 57737216 59768832 050905123829

616 14647296 14647296 14647296 14647296 050905123830

631 4063232 4063232 4319232 57737216 84934656 050905123830

617 15745024 15745024 16004096 57737216 318767104 050905123830

632 1245184 1245184 993280 57737216 57671680 050905123830

615 1245184 1245184 346112 57737216 59768832 050905123830

631 4063232 4063232 4319232 57737216 84934656 050905123831

617 15745024 15745024 16004096 57737216 318767104 050905123831

632 1245184 1245184 993280 57737216 57671680 050905123831

615 1245184 1245184 346112 57737216 59768832 050905123831

631 4063232 4063232 4319232 57737216 84934656 050905123832

617 15745024 15745024 16004096 57737216 318767104 050905123832

632 1245184 1245184 993280 57737216 57671680 050905123832

615 1245184 1245184 346112 57737216 59768832 050905123832

631 4063232 4063232 4319232 57737216 84934656 050905123833

617 15745024 15745024 16004096 57737216 318767104 050905123833

632 1245184 1245184 993280 57737216 57671680 050905123833

615 1245184 1245184 346112 57737216 59768832 050905123833

631 4063232 4063232 4319232 57737216 84934656 050905123834

617 15745024 15745024 16004096 57737216 318767104 050905123834

632 1245184 1245184 993280 57737216 57671680 050905123834

615 1245184 1245184 346112 57737216 59768832 050905123834

631 4063232 4063232 4319232 57737216 84934656 050905123835

617 15745024 15745024 16004096 57737216 318767104 050905123835

632 1245184 1245184 993280 57737216 57671680 050905123835

615 1245184 1245184 346112 57737216 59768832 050905123835

631 4063232 4063232 4319232 57737216 84934656 050905123836

617 15745024 15745024 16004096 57737216 318767104 050905123836

632 1245184 1245184 993280 57737216 57671680 050905123836

615 1245184 1245184 346112 57737216 59768832 050905123836

631 4063232 4063232 4319232 57737216 84934656 050905123837

617 15745024 15745024 16004096 57737216 318767104 050905123837

632 1245184 1245184 993280 57737216 57671680 050905123837

615 1245184 1245184 346112 57737216 59768832 050905123837

631 4063232 4063232 4319232 57737216 84934656 050905123838

617 15745024 15745024 16004096 57737216 318767104 050905123838

632 1245184 1245184 993280 57737216 57671680 050905123838

615 1245184 1245184 346112 57737216 59768832 050905123838

631 4063232 4063232 4319232 57737216 84934656 050905123839

617 15745024 15745024 16004096 57737216 318767104 050905123839

632 1245184 1245184 993280 57737216 57671680 050905123839

615 1245184 1245184 346112 57737216 59768832 050905123839

631 4063232 4063232 4319232 57737216 84934656 050905123840

617 15745024 15745024 16004096 57737216 318767104 050905123840

632 1245184 1245184 993280 57737216 57671680 050905123840

615 1245184 1245184 346112 57737216 59768832 050905123840

631 4063232 4063232 4319232 57737216 84934656 050905123841

617 15745024 15745024 16004096 57737216 318767104 050905123841

632 1245184 1245184 993280 57737216 57671680 050905123841

615 1245184 1245184 346112 57737216 59768832 050905123841

631 4063232 4063232 4319232 57737216 84934656 050905123842

617 15745024 15745024 16004096 57737216 318767104 050905123842

632 1245184 1245184 993280 57737216 57671680 050905123842

631 4063232 4063232 4319232 57737216 84934656 050905123843

617 15745024 15745024 16004096 57737216 318767104 050905123843

632 1245184 1245184 993280 57737216 57671680 050905123843

631 4063232 4063232 4319232 57737216 84934656 050905123844

617 15745024 15745024 16004096 57737216 318767104 050905123844

632 1245184 1245184 993280 57737216 57671680 050905123844

631 4063232 4063232 4319232 57737216 84934656 050905123845

617 15745024 15745024 16004096 57737216 318767104 050905123845

632 1245184 1245184 993280 57737216 57671680 050905123845

631 4063232 4063232 4319232 57737216 84934656 050905123847

617 15745024 15745024 16004096 57737216 318767104 050905123847

632 1245184 1245184 993280 57737216 57671680 050905123847

631 4063232 4063232 4319232 57737216 84934656 050905123848

617 15745024 15745024 16004096 57737216 318767104 050905123848

632 1245184 1245184 993280 57737216 57671680 050905123848

631 4063232 4063232 4319232 57737216 84934656 050905123849

617 15745024 15745024 16004096 57737216 318767104 050905123849

632 1245184 1245184 993280 57737216 57671680 050905123849

631 4063232 4063232 4319232 57737216 84934656 050905123850

617 15745024 15745024 16004096 57737216 318767104 050905123850

632 1245184 1245184 993280 57737216 57671680 050905123850

631 4063232 4063232 4319232 57737216 84934656 050905123851

617 15745024 15745024 16004096 57737216 318767104 050905123851

632 1245184 1245184 993280 57737216 57671680 050905123851

631 4063232 4063232 4319232 57737216 84934656 050905123852

617 15745024 15745024 16004096 57737216 318767104 050905123852

632 1245184 1245184 993280 57737216 57671680 050905123852

631 4063232 4063232 4319232 57737216 84934656 050905123853

617 15745024 15745024 16004096 57737216 318767104 050905123853

632 1245184 1245184 993280 57737216 57671680 050905123853

631 4063232 4063232 4319232 57737216 84934656 050905123854

617 15745024 15745024 16004096 57737216 318767104 050905123854

632 1245184 1245184 993280 57737216 57671680 050905123854

631 4063232 4063232 4319232 57737216 84934656 050905123855

617 15745024 15745024 16004096 57737216 318767104 050905123855

632 1245184 1245184 993280 57737216 57671680 050905123855

631 4063232 4063232 4319232 57737216 84934656 050905123856

617 15745024 15745024 16004096 57737216 318767104 050905123856

632 1245184 1245184 993280 57737216 57671680 050905123856

631 4063232 4063232 4319232 57737216 84934656 050905123857

617 15745024 15745024 16004096 57737216 318767104 050905123857

632 1245184 1245184 993280 57737216 57671680 050905123857

631 4063232 4063232 4319232 57737216 84934656 050905123858

617 15745024 15745024 16004096 57737216 318767104 050905123858

632 1245184 1245184 993280 57737216 57671680 050905123858

631 4063232 4063232 4319232 57737216 84934656 050905123859

617 15745024 15745024 16004096 57737216 318767104 050905123859

632 1245184 1245184 993280 57737216 57671680 050905123859

631 4063232 4063232 4319232 57737216 84934656 050905123900

617 15745024 15745024 16004096 57737216 318767104 050905123900

632 1245184 1245184 993280 57737216 57671680 050905123900

631 4063232 4063232 4319232 57737216 84934656 050905123901

617 15745024 15745024 16004096 57737216 318767104 050905123901

632 1245184 1245184 993280 57737216 57671680 050905123901

631 4063232 4063232 4319232 57737216 84934656 050905123902

617 15745024 15745024 16004096 57737216 318767104 050905123902

632 1245184 1245184 993280 57737216 57671680 050905123902

631 4063232 4063232 4319232 57737216 84934656 050905123903

617 15745024 15745024 16004096 57737216 318767104 050905123903

632 1245184 1245184 993280 57737216 57671680 050905123903

631 4063232 4063232 4319232 57737216 84934656 050905123904

617 15745024 15745024 16004096 57737216 318767104 050905123904

632 1245184 1245184 993280 57737216 57671680 050905123904

631 4063232 4063232 4319232 57737216 84934656 050905123905

617 15745024 15745024 16004096 57737216 318767104 050905123905

632 1245184 1245184 993280 57737216 57671680 050905123905

631 4063232 4063232 4319232 57737216 84934656 050905123906

617 15745024 15745024 16004096 57737216 318767104 050905123906

632 1245184 1245184 993280 57737216 57671680 050905123906

631 4063232 4063232 4319232 57737216 84934656 050905123907

617 15745024 15745024 16004096 57737216 318767104 050905123907

632 1245184 1245184 993280 57737216 57671680 050905123907

631 4063232 4063232 4319232 57737216 84934656 050905123908

617 15745024 15745024 16004096 57737216 318767104 050905123908

632 1245184 1245184 993280 57737216 57671680 050905123908

631 4063232 4063232 4319232 57737216 84934656 050905123909

617 15745024 15745024 16004096 57737216 318767104 050905123909

632 1245184 1245184 993280 57737216 57671680 050905123909

631 4063232 4063232 4319232 57737216 84934656 050905123910

617 15745024 15745024 16004096 57737216 318767104 050905123910

632 1245184 1245184 993280 57737216 57671680 050905123910

631 4063232 4063232 4319232 57737216 84934656 050905123911

617 15745024 15745024 16004096 57737216 318767104 050905123911

632 1245184 1245184 993280 57737216 57671680 050905123911

631 4063232 4063232 4319232 57737216 84934656 050905123912

617 15745024 15745024 16004096 57737216 318767104 050905123912

632 1245184 1245184 993280 57737216 57671680 050905123912

631 4063232 4063232 4319232 57737216 84934656 050905123913

617 15745024 15745024 16004096 57737216 318767104 050905123913

632 1245184 1245184 993280 57737216 57671680 050905123913

631 4063232 4063232 4319232 57737216 84934656 050905123914

617 15745024 15745024 16004096 57737216 318767104 050905123914

632 1245184 1245184 993280 57737216 57671680 050905123914

631 4063232 4063232 4319232 57737216 84934656 050905123915

617 15745024 15745024 16004096 57737216 318767104 050905123915

632 1245184 1245184 993280 57737216 57671680 050905123915

631 4063232 4063232 4319232 57737216 84934656 050905123916

617 15745024 15745024 16004096 57737216 318767104 050905123916

632 1245184 1245184 993280 57737216 57671680 050905123916

631 4063232 4063232 4319232 57737216 84934656 050905123917

617 15745024 15745024 16004096 57737216 318767104 050905123917

632 1245184 1245184 993280 57737216 57671680 050905123917

631 4063232 4063232 4319232 57737216 84934656 050905123918

617 15745024 15745024 16004096 57737216 318767104 050905123918

632 1245184 1245184 993280 57737216 57671680 050905123918

631 4063232 4063232 4319232 57737216 84934656 050905123919

617 15745024 15745024 16004096 57737216 318767104 050905123919

632 1245184 1245184 993280 57737216 57671680 050905123919

631 4063232 4063232 4319232 57737216 84934656 050905123920

617 15745024 15745024 16004096 57737216 318767104 050905123920

632 1245184 1245184 993280 57737216 57671680 050905123920

631 4063232 4063232 4319232 57737216 84934656 050905123921

617 15745024 15745024 16004096 57737216 318767104 050905123921

632 1245184 1245184 993280 57737216 57671680 050905123921

631 4063232 4063232 4319232 57737216 84934656 050905123923

617 15745024 15745024 16004096 57737216 318767104 050905123923

632 1245184 1245184 993280 57737216 57671680 050905123923

631 4063232 4063232 4319232 57737216 84934656 050905123924

617 15745024 15745024 16004096 57737216 318767104 050905123924

632 1245184 1245184 993280 57737216 57671680 050905123924

631 4063232 4063232 4319232 57737216 84934656 050905123925

617 15745024 15745024 16004096 57737216 318767104 050905123925

632 1245184 1245184 993280 57737216 57671680 050905123925

631 4063232 4063232 4319232 57737216 84934656 050905123926

617 15745024 15745024 16004096 57737216 318767104 050905123926

632 1245184 1245184 993280 57737216 57671680 050905123926

631 4063232 4063232 4319232 57737216 84934656 050905123927

617 15745024 15745024 16004096 57737216 318767104 050905123927

632 1245184 1245184 993280 57737216 57671680 050905123927

631 4063232 4063232 4319232 57737216 84934656 050905123928

617 15745024 15745024 16004096 57737216 318767104 050905123928

632 1245184 1245184 993280 57737216 57671680 050905123928

631 4063232 4063232 4319232 57737216 84934656 050905123929

617 15745024 15745024 16004096 57737216 318767104 050905123929

632 1245184 1245184 993280 57737216 57671680 050905123929

631 4063232 4063232 4319232 57737216 84934656 050905123930

617 15745024 15745024 16004096 57737216 318767104 050905123930

632 1245184 1245184 993280 57737216 57671680 050905123930

631 4063232 4063232 4319232 57737216 84934656 050905123931

617 15745024 15745024 16004096 57737216 318767104 050905123931

632 1245184 1245184 993280 57737216 57671680 050905123931

631 4063232 4063232 4319232 57737216 84934656 050905123932

617 15745024 15745024 16004096 57737216 318767104 050905123932

632 1245184 1245184 993280 57737216 57671680 050905123932

631 4063232 4063232 4319232 57737216 84934656 050905123933

617 15745024 15745024 16004096 57737216 318767104 050905123933

632 1245184 1245184 993280 57737216 57671680 050905123933

631 4063232 4063232 4319232 57737216 84934656 050905123934

617 15745024 15745024 16004096 57737216 318767104 050905123934

632 1245184 1245184 993280 57737216 57671680 050905123934

631 4063232 4063232 4319232 57737216 84934656 050905123935

617 15745024 15745024 16004096 57737216 318767104 050905123935

632 1245184 1245184 993280 57737216 57671680 050905123935

631 4063232 4063232 4319232 57737216 84934656 050905123936

617 15745024 15745024 16004096 57737216 318767104 050905123936

632 1245184 1245184 993280 57737216 57671680 050905123936

631 4063232 4063232 4319232 57737216 84934656 050905123937

617 15745024 15745024 16004096 57737216 318767104 050905123937

632 1245184 1245184 993280 57737216 57671680 050905123937

631 4063232 4063232 4319232 57737216 84934656 050905123938

617 15745024 15745024 16004096 57737216 318767104 050905123938

632 1245184 1245184 993280 57737216 57671680 050905123938

631 4063232 4063232 4319232 57737216 84934656 050905123939

617 15745024 15745024 16004096 57737216 318767104 050905123939

632 1245184 1245184 993280 57737216 57671680 050905123939

631 4063232 4063232 4319232 57737216 84934656 050905123940

617 15745024 15745024 16004096 57737216 318767104 050905123940

632 1245184 1245184 993280 57737216 57671680 050905123940

631 4063232 4063232 4319232 57737216 84934656 050905123941

617 15745024 15745024 16004096 57737216 318767104 050905123941

632 1245184 1245184 993280 57737216 57671680 050905123941

631 4063232 4063232 4319232 57737216 84934656 050905123942

617 15745024 15745024 16004096 57737216 318767104 050905123942

632 1245184 1245184 993280 57737216 57671680 050905123942

631 4063232 4063232 4319232 57737216 84934656 050905123943

617 15745024 15745024 16004096 57737216 318767104 050905123943

632 1245184 1245184 993280 57737216 57671680 050905123943

631 4063232 4063232 4319232 57737216 84934656 050905123944

617 15745024 15745024 16004096 57737216 318767104 050905123944

632 1245184 1245184 993280 57737216 57671680 050905123944

631 4063232 4063232 4319232 57737216 84934656 050905123945

617 15745024 15745024 16004096 57737216 318767104 050905123945

632 1245184 1245184 993280 57737216 57671680 050905123945

631 4063232 4063232 4319232 57737216 84934656 050905123946

617 15745024 15745024 16004096 57737216 318767104 050905123946

632 1245184 1245184 993280 57737216 57671680 050905123946

631 4063232 4063232 4319232 57737216 84934656 050905123947

617 15745024 15745024 16004096 57737216 318767104 050905123947

632 1245184 1245184 993280 57737216 57671680 050905123947

631 4063232 4063232 4319232 57737216 84934656 050905123948

617 15745024 15745024 16004096 57737216 318767104 050905123948

632 1245184 1245184 993280 57737216 57671680 050905123948

631 4063232 4063232 4319232 57737216 84934656 050905123949

617 15745024 15745024 16004096 57737216 318767104 050905123949

632 1245184 1245184 993280 57737216 57671680 050905123949

631 4063232 4063232 4319232 57737216 84934656 050905123950

617 15745024 15745024 16004096 57737216 318767104 050905123950

632 1245184 1245184 993280 57737216 57671680 050905123950

631 4063232 4063232 4319232 57737216 84934656 050905123951

617 15745024 15745024 16004096 57737216 318767104 050905123951

632 1245184 1245184 993280 57737216 57671680 050905123951

631 4063232 4063232 4319232 57737216 84934656 050905123952

617 15745024 15745024 16004096 57737216 318767104 050905123952

632 1245184 1245184 993280 57737216 57671680 050905123952

631 4063232 4063232 4319232 57737216 84934656 050905123953

617 15745024 15745024 16004096 57737216 318767104 050905123953

632 1245184 1245184 993280 57737216 57671680 050905123953

631 4063232 4063232 4319232 57737216 84934656 050905123954

617 15745024 15745024 16004096 57737216 318767104 050905123954

632 1245184 1245184 993280 57737216 57671680 050905123954

631 4063232 4063232 4319232 57737216 84934656 050905123955

632 1245184 1245184 993280 57737216 57671680 050905123955

631 4063232 4063232 4319232 57737216 84934656 050905123956

632 1245184 1245184 993280 57737216 57671680 050905123956

631 4063232 4063232 4319232 57737216 84934656 050905123957

632 1245184 1245184 993280 57737216 57671680 050905123957

631 4063232 4063232 4319232 57737216 84934656 050905123958

632 1245184 1245184 993280 57737216 57671680 050905123958

631 4063232 4063232 4319232 57737216 84934656 050905123959

632 1245184 1245184 993280 57737216 57671680 050905123959

631 4063232 4063232 4319232 57737216 84934656 050905124000

632 1245184 1245184 993280 57737216 57671680 050905124000

631 4063232 4063232 4319232 57737216 84934656 050905124001

632 1245184 1245184 993280 57737216 57671680 050905124001

631 4063232 4063232 4319232 57737216 84934656 050905124003

632 1245184 1245184 993280 57737216 57671680 050905124003

631 4063232 4063232 4319232 57737216 84934656 050905124004

632 1245184 1245184 993280 57737216 57671680 050905124004

631 4063232 4063232 4319232 57737216 84934656 050905124005

632 1245184 1245184 993280 57737216 57671680 050905124005

631 4063232 4063232 4319232 57737216 84934656 050905124006

632 1245184 1245184 993280 57737216 57671680 050905124006

631 4063232 4063232 4319232 57737216 84934656 050905124007

632 1245184 1245184 993280 57737216 57671680 050905124007

631 4063232 4063232 4319232 57737216 84934656 050905124008

632 1245184 1245184 993280 57737216 57671680 050905124008

631 4063232 4063232 4319232 57737216 84934656 050905124009

632 1245184 1245184 993280 57737216 57671680 050905124009

632 1245184 1245184 993280 57737216 57671680 050905124010

632 1245184 1245184 993280 57737216 57671680 050905124011

632 1245184 1245184 993280 57737216 57671680 050905124012

632 1245184 1245184 993280 57737216 57671680 050905124013

632 1245184 1245184 993280 57737216 57671680 050905124014

632 1245184 1245184 993280 57737216 57671680 050905124015

632 1245184 1245184 993280 57737216 57671680 050905124016

632 1245184 1245184 993280 57737216 57671680 050905124017

632 1245184 1245184 993280 57737216 57671680 050905124018

632 1245184 1245184 993280 57737216 57671680 050905124019

1313 rows selected.

SQL> spool off

[pic]

|Predicted |Actual |

|55.5 |55.0625 |

PGA_AGGREGATE_TARGET 4G, 400M _pga_max_size, 333M _smm_px_max_size, 7 DOP

SQL> show parameter

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

O7_DICTIONARY_ACCESSIBILITY boolean FALSE

__db_cache_size big integer 684M

__java_pool_size big integer 8M

__large_pool_size big integer 4M

__shared_pool_size big integer 224M

_pga_max_size big integer 400M

_smm_px_max_size integer 340992

active_instance_count integer

aq_tm_processes integer 0

archive_lag_target integer 0

asm_diskgroups string

asm_diskstring string

asm_power_limit integer 1

audit_file_dest string /home/oracle/DBHome1/rdbms/aud

it

audit_sys_operations boolean FALSE

audit_trail string TRUE

background_core_dump string partial

background_dump_dest string /home/oracle/admin/test/bdump

backup_tape_io_slaves boolean FALSE

bitmap_merge_area_size integer 1048576

blank_trimming boolean FALSE

buffer_pool_keep string

buffer_pool_recycle string

circuits integer

cluster_database boolean FALSE

cluster_database_instances integer 1

cluster_interconnects string

commit_point_strength integer 1

compatible string 10.1.0.2.0

control_file_record_keep_time integer 7

control_files string /home/oracle/oradata/test/con

trol01.ctl, /home/oracle/orada

ta/test/control02.ctl, /home/

oracle/oradata/test/control03

.ctl

core_dump_dest string /home/oracle/admin/test/cdump

cpu_count integer 2

create_bitmap_area_size integer 8388608

create_stored_outlines string

cursor_sharing string EXACT

cursor_space_for_time boolean FALSE

db_16k_cache_size big integer 0

db_2k_cache_size big integer 0

db_32k_cache_size big integer 0

db_4k_cache_size big integer 0

db_8k_cache_size big integer 0

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

db_block_buffers integer 0

db_block_checking boolean FALSE

db_block_checksum boolean TRUE

db_block_size integer 8192

db_cache_advice string ON

db_cache_size big integer 0

db_create_file_dest string

db_create_online_log_dest_1 string

db_create_online_log_dest_2 string

db_create_online_log_dest_3 string

db_create_online_log_dest_4 string

db_create_online_log_dest_5 string

db_domain string

db_file_multiblock_read_count integer 32

db_file_name_convert string

db_files integer 200

db_flashback_retention_target integer 1440

db_keep_cache_size big integer 0

db_name string test

db_recovery_file_dest string /home/oracle/flash_recovery_ar

ea

db_recovery_file_dest_size big integer 2G

db_recycle_cache_size big integer 0

db_unique_name string test

db_writer_processes integer 7

dbwr_io_slaves integer 0

ddl_wait_for_locks boolean FALSE

dg_broker_config_file1 string /home/oracle/DBHome1/dbs/dr1hf

dwh.dat

dg_broker_config_file2 string /home/oracle/DBHome1/dbs/dr2hf

dwh.dat

dg_broker_start boolean FALSE

disk_asynch_io boolean TRUE

dispatchers string (PROTOCOL=TCP) (SERVICE=testX

DB)

distributed_lock_timeout integer 60

dml_locks integer 2924

drs_start boolean FALSE

enqueue_resources integer 3000

event string

fal_client string

fal_server string

fast_start_io_target integer 0

fast_start_mttr_target integer 0

fast_start_parallel_rollback string LOW

file_mapping boolean FALSE

fileio_network_adapters string

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

filesystemio_options string none

fixed_date string

gc_files_to_locks string

gcs_server_processes integer 0

global_context_pool_size string

global_names boolean FALSE

hash_area_size integer 131072

hi_shared_memory_address integer 0

hs_autoregister boolean TRUE

ifile file

instance_groups string

instance_name string test

instance_number integer 0

instance_type string RDBMS

java_max_sessionspace_size integer 0

java_pool_size big integer 0

java_soft_sessionspace_limit integer 0

job_queue_processes integer 10

large_pool_size big integer 0

ldap_directory_access string NONE

license_max_sessions integer 0

license_max_users integer 0

license_sessions_warning integer 0

local_listener string

lock_name_space string

lock_sga boolean FALSE

log_archive_config string

log_archive_dest string

log_archive_dest_1 string

log_archive_dest_10 string

log_archive_dest_2 string

log_archive_dest_3 string

log_archive_dest_4 string

log_archive_dest_5 string

log_archive_dest_6 string

log_archive_dest_7 string

log_archive_dest_8 string

log_archive_dest_9 string

log_archive_dest_state_1 string enable

log_archive_dest_state_10 string enable

log_archive_dest_state_2 string enable

log_archive_dest_state_3 string enable

log_archive_dest_state_4 string enable

log_archive_dest_state_5 string enable

log_archive_dest_state_6 string enable

log_archive_dest_state_7 string enable

log_archive_dest_state_8 string enable

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

log_archive_dest_state_9 string enable

log_archive_duplex_dest string

log_archive_format string %t_%s_%r.dbf

log_archive_local_first boolean TRUE

log_archive_max_processes integer 2

log_archive_min_succeed_dest integer 1

log_archive_start boolean FALSE

log_archive_trace integer 0

log_buffer integer 524288

log_checkpoint_interval integer 0

log_checkpoint_timeout integer 1800

log_checkpoints_to_alert boolean FALSE

log_file_name_convert string

logmnr_max_persistent_sessions integer 1

max_commit_propagation_delay integer 700

max_dispatchers integer

max_dump_file_size string UNLIMITED

max_enabled_roles integer 150

max_shared_servers integer

nls_calendar string

nls_comp string

nls_currency string

nls_date_format string

nls_date_language string

nls_dual_currency string

nls_iso_currency string

nls_language string AMERICAN

nls_length_semantics string BYTE

nls_nchar_conv_excp string FALSE

nls_numeric_characters string

nls_sort string

nls_territory string AMERICA

nls_time_format string

nls_time_tz_format string

nls_timestamp_format string

nls_timestamp_tz_format string

object_cache_max_size_percent integer 10

object_cache_optimal_size integer 102400

olap_page_pool_size big integer 0

open_cursors integer 300

open_links integer 4

open_links_per_instance integer 4

optimizer_dynamic_sampling integer 2

optimizer_features_enable string 10.1.0.3

optimizer_index_caching integer 0

optimizer_index_cost_adj integer 100

optimizer_mode string ALL_ROWS

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

os_authent_prefix string ops$

os_roles boolean FALSE

parallel_adaptive_multi_user boolean TRUE

parallel_automatic_tuning boolean FALSE

parallel_execution_message_size integer 2148

parallel_instance_group string

parallel_max_servers integer 80

parallel_min_percent integer 0

parallel_min_servers integer 0

parallel_server boolean FALSE

parallel_server_instances integer 1

parallel_threads_per_cpu integer 4

pga_aggregate_target big integer 4G

plsql_code_type string INTERPRETED

plsql_compiler_flags string INTERPRETED, NON_DEBUG

plsql_debug boolean FALSE

plsql_native_library_dir string

plsql_native_library_subdir_count integer 0

plsql_optimize_level integer 2

plsql_v2_compatibility boolean FALSE

plsql_warnings string DISABLE:ALL

pre_page_sga boolean FALSE

processes integer 600

query_rewrite_enabled string TRUE

query_rewrite_integrity string enforced

rdbms_server_dn string

read_only_open_delayed boolean FALSE

recovery_parallelism integer 0

remote_archive_enable string true

remote_dependencies_mode string TIMESTAMP

remote_listener string

remote_login_passwordfile string EXCLUSIVE

remote_os_authent boolean FALSE

remote_os_roles boolean FALSE

replication_dependency_tracking boolean TRUE

resource_limit boolean FALSE

resource_manager_plan string

resumable_timeout integer 0

rollback_segments string

serial_reuse string disable

service_names string test

session_cached_cursors integer 0

session_max_open_files integer 10

sessions integer 665

sga_max_size big integer 1G

sga_target big integer 1G

shadow_core_dump string partial

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------

shared_memory_address integer 0

shared_pool_reserved_size big integer 11744051

shared_pool_size big integer 0

shared_server_sessions integer

shared_servers integer 1

skip_unusable_indexes boolean TRUE

smtp_out_server string

sort_area_retained_size integer 0

sort_area_size integer 65536

sp_name string test

spfile string /home/oracle/DBHome1/dbs/spfil

etest.ora

sql92_security boolean FALSE

sql_trace boolean FALSE

sql_version string NATIVE

sqltune_category string DEFAULT

standby_archive_dest string ?/dbs/arch

standby_file_management string MANUAL

star_transformation_enabled string TRUE

statistics_level string TYPICAL

streams_pool_size big integer 100M

tape_asynch_io boolean TRUE

thread integer 0

timed_os_statistics integer 0

timed_statistics boolean TRUE

trace_enabled boolean TRUE

tracefile_identifier string

transactions integer 731

transactions_per_rollback_segment integer 5

undo_management string AUTO

undo_retention integer 900

undo_tablespace string UNDOTBSP2

use_indirect_data_buffers boolean FALSE

user_dump_dest string /home/oracle/admin/test/udump

utl_file_dir string

workarea_size_policy string AUTO

SQL> @get_undoc

SP2-0310: unable to open file "get_undoc.sql"

SQL> @get_undocs

Parameter Description Value

---------------------------------------- ------------------------- ----------

_pga_large_extent_size PGA large extent size 1048576

_pga_max_size Maximum size of the PGA 419430400

memory for one process

_smm_advice_enabled if TRUE, enable TRUE

v$pga_advice

_smm_advice_log_size overwrites default size 0

of the PGA advice

workarea history log

_smm_auto_cost_enabled if TRUE, use the AUTO TRUE

size policy cost

functions

_smm_auto_max_io_size Maximum IO size (in KB) 248

used by sort/hash-join in

auto mode

_smm_auto_min_io_size Minimum IO size (in KB) 56

used by sort/hash-join in

auto mode

_smm_bound overwrites memory manager 0

automatically computed

bound

_smm_control provides controls on the 0

memory manager

_smm_freeable_retain value in KB of the 5120

instance freeable PGA

memory to retain

_smm_max_size maximum work area size in 204800

auto mode (serial)

_smm_min_size minimum work area size in 1024

auto mode

_smm_px_max_size maximum work area size in 340992

auto mode (global)

_smm_retain_size work area retain size in 0

SGA for shared server

sessions (0 for AUTO)

Parameter Description Value

---------------------------------------- ------------------------- ----------

_smm_trace Turn on/off tracing for 0

SQL memory manager

15 rows selected.

note change to parallel threads per cpu

Elapsed: 00:00:00.00

SQL> set autotrace traceonly

SQL> get test_parallel

1 select /*+ parallel(test_pga 7) */

2 * from test_pga

3* order by district_name,name

SQL> /

4547752 rows selected.

Elapsed: 00:05:41.19

Execution Plan

----------------------------------------------------------

0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=21079 Card=4547752

Bytes=513895976)

1 0 PX COORDINATOR

2 1 PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=21079 Card=454 :Q1001

7752 Bytes=513895976)

3 2 SORT* (ORDER BY) (Cost=21079 Card=4547752 Bytes=513895 :Q1001

976)

4 3 PX RECEIVE* (Cost=2468 Card=4547752 Bytes=513895976) :Q1001

5 4 PX SEND* (RANGE) OF ':TQ10000' (Cost=2468 Card=454 :Q1000

7752 Bytes=513895976)

6 5 PX BLOCK* (ITERATOR) (Cost=2468 Card=4547752 Byt :Q1000

es=513895976)

7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000

st=2468 Card=4547752 Bytes=513895976)

2 PARALLEL_TO_SERIAL

3 PARALLEL_COMBINED_WITH_PARENT

4 PARALLEL_COMBINED_WITH_PARENT

5 PARALLEL_TO_PARALLEL

6 PARALLEL_COMBINED_WITH_CHILD

7 PARALLEL_COMBINED_WITH_PARENT

Statistics

----------------------------------------------------------

1133 recursive calls

67 db block gets

79993 consistent gets

147701 physical reads

680 redo size

253863141 bytes sent via SQL*Net to client

3335525 bytes received via SQL*Net from client

303185 SQL*Net roundtrips to/from client

9 sorts (memory)

4 sorts (disk)

4547752 rows processed

SQL> spool off

SQL> set lines 100

SQL> set pages 10000

SQL> select * from test_results;

SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW

----- -------------- ------------- --------------- ------------ ------------ ------------

630 2220032 2220032 1851392 1851392 050905124831

626 1234944 1234944 1089536 1089536 050905124831

629 10350592 10350592 8650752 8650752 050905124831

627 830464 830464 688128 688128 050905124831

632 3269632 3269632 2957312 2957312 050905124831

628 2695168 2695168 2236416 2236416 050905124831

631 553984 553984 458752 458752 050905124831

630 2695168 2695168 2506752 2506752 050905124832

626 1503232 1503232 1417216 1417216 050905124832

629 15173632 15173632 12697600 12697600 050905124832

627 1013760 1013760 901120 901120 050905124832

632 4806656 4806656 4063232 4063232 050905124832

628 3269632 3269632 2809856 2809856 050905124832

631 553984 553984 548864 548864 050905124832

630 3269632 3269632 3080192 3080192 050905124833

626 2695168 2695168 2293760 2293760 050905124833

629 18368512 18368512 16908288 16908288 050905124833

627 1234944 1234944 1204224 1204224 050905124833

632 5824512 5824512 5677056 5677056 050905124833

628 4806656 4806656 4194304 4194304 050905124833

631 830464 830464 745472 745472 050905124833

630 3964928 3964928 3883008 3883008 050905124834

626 3269632 3269632 2949120 2949120 050905124834

629 22234112 22234112 20455424 20455424 050905124834

627 1827840 1827840 1531904 1531904 050905124834

632 7056384 7056384 6823936 6823936 050905124834

628 5824512 5824512 5341184 5341184 050905124834

631 1013760 1013760 851968 851968 050905124834

630 4806656 4806656 4612096 4612096 050905124835

626 3964928 3964928 3530752 3530752 050905124835

629 26911744 26911744 24469504 24469504 050905124835

627 2220032 2220032 1900544 1900544 050905124835

632 8547328 8547328 8003584 8003584 050905124835

628 7056384 7056384 6086656 6086656 050905124835

631 1013760 1013760 983040 983040 050905124835

630 5824512 5824512 5283840 5283840 050905124836

626 3964928 3964928 3866624 3866624 050905124836

629 32572416 32572416 28393472 28393472 050905124836

627 2220032 2220032 2138112 2138112 050905124836

632 10350592 10350592 9158656 9158656 050905124836

628 7056384 7056384 6856704 6856704 050905124836

631 1234944 1234944 1097728 1097728 050905124836

630 7056384 7056384 6086656 6086656 050905124837

626 4806656 4806656 4448256 4448256 050905124837

629 32572416 32572416 31834112 31834112 050905124837

627 2695168 2695168 2457600 2457600 050905124837

632 12532736 12532736 10420224 10420224 050905124837

628 8547328 8547328 7921664 7921664 050905124837

631 1234944 1234944 1212416 1212416 050905124837

630 7056384 7056384 6660096 6660096 050905124838

626 4806656 4806656 4702208 4702208 050905124838

629 39420928 39420928 34758656 34758656 050905124838

627 2695168 2695168 2686976 2686976 050905124838

632 12532736 12532736 11395072 11395072 050905124838

628 10350592 10350592 8765440 8765440 050905124838

631 1503232 1503232 1302528 1302528 050905124838

630 8547328 8547328 7528448 7528448 050905124839

626 5824512 5824512 5341184 5341184 050905124839

629 39420928 39420928 38150144 38150144 050905124839

627 3269632 3269632 3260416 3260416 050905124839

632 15173632 15173632 12845056 12845056 050905124839

628 10350592 10350592 9715712 9715712 050905124839

631 1503232 1503232 1458176 1458176 050905124839

630 8547328 8547328 8069120 8069120 050905124840

626 5824512 5824512 5701632 5701632 050905124840

629 47708160 47708160 41623552 41623552 050905124840

627 3964928 3964928 3563520 3563520 050905124840

632 15173632 15173632 13934592 13934592 050905124840

628 12532736 12532736 10829824 10829824 050905124840

631 1827840 1827840 1622016 1622016 050905124840

630 10350592 10350592 8912896 8912896 050905124841

626 7056384 7056384 6266880 6266880 050905124841

629 47708160 47708160 45088768 45088768 050905124841

627 3964928 3964928 3842048 3842048 050905124841

632 18368512 18368512 15515648 15515648 050905124841

628 12532736 12532736 11886592 11886592 050905124841

631 2220032 2220032 1843200 1843200 050905124841

630 10350592 10350592 9584640 9584640 050905124842

626 7056384 7056384 6651904 6651904 050905124842

629 47708160 6602752 47710208 47710208 2097152 050905124842

627 4806656 4806656 4005888 4005888 050905124842

632 18368512 18368512 16334848 16334848 050905124842

628 12532736 12532736 12296192 12296192 050905124842

631 2220032 2220032 1990656 1990656 050905124842

630 10350592 10350592 9584640 9584640 050905124843

626 7056384 7056384 6651904 6651904 050905124843

629 47708160 6602752 47710208 47710208 8388608 050905124843

627 4806656 4806656 4005888 4005888 050905124843

632 18368512 18368512 16334848 16334848 050905124843

628 12532736 12532736 12296192 12296192 050905124843

631 2220032 2220032 1990656 1990656 050905124843

630 10350592 10350592 9584640 9584640 050905124844

626 7056384 7056384 6651904 6651904 050905124844

629 47708160 6602752 47710208 47710208 14680064 050905124844

627 4806656 4806656 4005888 4005888 050905124844

632 18368512 18368512 16334848 16334848 050905124844

628 12532736 12532736 12296192 12296192 050905124844

631 2220032 2220032 1990656 1990656 050905124844

630 10350592 10350592 9584640 9584640 050905124845

626 7056384 7056384 6651904 6651904 050905124845

629 47708160 6602752 47710208 47710208 19922944 050905124845

627 4806656 4806656 4005888 4005888 050905124845

632 18368512 18368512 16334848 16334848 050905124845

628 12532736 12532736 12296192 12296192 050905124845

631 2220032 2220032 1990656 1990656 050905124845

630 10350592 10350592 9584640 9584640 050905124846

626 7056384 7056384 6651904 6651904 050905124846

629 47708160 6602752 47710208 47710208 26214400 050905124846

627 4806656 4806656 4005888 4005888 050905124846

632 18368512 18368512 16334848 16334848 050905124846

628 12532736 12532736 12296192 12296192 050905124846

631 2220032 2220032 1990656 1990656 050905124846

630 10350592 10350592 9584640 9584640 050905124847

626 7056384 7056384 6651904 6651904 050905124847

629 47708160 6602752 47710208 47710208 32505856 050905124847

627 4806656 4806656 4005888 4005888 050905124847

632 18368512 18368512 16334848 16334848 050905124847

628 12532736 12532736 12296192 12296192 050905124847

631 2220032 2220032 1990656 1990656 050905124847

630 10350592 10350592 9584640 9584640 050905124848

626 7056384 7056384 6651904 6651904 050905124848

629 47708160 6602752 47710208 47710208 38797312 050905124848

627 4806656 4806656 4005888 4005888 050905124848

632 18368512 18368512 16334848 16334848 050905124848

628 12532736 12532736 12296192 12296192 050905124848

631 2220032 2220032 1990656 1990656 050905124848

630 10350592 10350592 9584640 9584640 050905124850

626 7056384 7056384 6651904 6651904 050905124850

629 6602752 6602752 132096 47710208 44040192 050905124850

627 4806656 4806656 4038656 4038656 050905124850

632 18368512 18368512 16359424 16359424 050905124850

628 12532736 12532736 12296192 12296192 050905124850

631 2220032 2220032 1990656 1990656 050905124850

630 12532736 12532736 10428416 10428416 050905124851

626 7056384 7056384 6889472 6889472 050905124851

629 6602752 6602752 3302400 47710208 44040192 050905124851

627 4806656 4806656 4325376 4325376 050905124851

632 18368512 18368512 17440768 17440768 050905124851

628 15173632 15173632 13033472 13033472 050905124851

631 2220032 2220032 2129920 2129920 050905124851

630 12532736 12532736 10813440 10813440 050905124852

626 8547328 8547328 7217152 7217152 050905124852

629 6602752 6602752 5587968 47710208 47185920 050905124852

627 4806656 4806656 4431872 4431872 050905124852

632 18368512 18368512 18194432 18194432 050905124852

628 15173632 15173632 13508608 13508608 050905124852

631 2695168 2695168 2260992 2260992 050905124852

630 12532736 12532736 11173888 11173888 050905124853

626 8547328 8547328 7421952 7421952 050905124853

629 6602752 6602752 1958912 47710208 49283072 050905124853

627 4806656 4806656 4562944 4562944 050905124853

632 22234112 22234112 18776064 18776064 050905124853

628 15173632 15173632 13631488 13631488 050905124853

631 2695168 2695168 2359296 2359296 050905124853

630 12532736 12532736 11640832 11640832 050905124854

626 8547328 8547328 7815168 7815168 050905124854

629 6602752 4571136 4645888 47710208 50331648 050905124854

627 4806656 4806656 4784128 4784128 050905124854

632 22234112 22234112 19660800 19660800 050905124854

628 15173632 15173632 14262272 14262272 050905124854

631 2695168 2695168 2465792 2465792 050905124854

630 12532736 12532736 11935744 11935744 050905124855

626 8547328 8547328 8003584 8003584 050905124855

629 6602752 4571136 1639424 47710208 53477376 050905124855

627 5824512 5824512 4980736 4980736 050905124855

632 22234112 22234112 20201472 20201472 050905124855

628 15173632 15173632 14630912 14630912 050905124855

631 2695168 2695168 2539520 2539520 050905124855

630 12532736 12532736 12288000 12288000 050905124856

626 8547328 8547328 8323072 8323072 050905124856

629 6602752 4571136 3539968 47710208 56623104 050905124856

627 5824512 5824512 5079040 5079040 050905124856

632 22234112 22234112 20733952 20733952 050905124856

628 18368512 18368512 15212544 15212544 050905124856

631 2695168 2695168 2613248 2613248 050905124856

630 15173632 15173632 12926976 12926976 050905124857

626 10350592 10350592 8757248 8757248 050905124857

629 6602752 4571136 2950144 47710208 56623104 050905124857

627 5824512 5824512 5251072 5251072 050905124857

632 22234112 22234112 21766144 21766144 050905124857

628 18368512 18368512 15958016 15958016 050905124857

631 3269632 3269632 2727936 2727936 050905124857

630 15173632 15173632 13197312 13197312 050905124858

626 10350592 10350592 9019392 9019392 050905124858

629 6602752 4571136 1680384 47710208 59768832 050905124858

627 5824512 5824512 5349376 5349376 050905124858

632 26911744 26911744 22274048 22274048 050905124858

628 18368512 18368512 16203776 16203776 050905124858

631 3269632 3269632 2801664 2801664 050905124858

630 15173632 15173632 13795328 13795328 050905124859

626 10350592 10350592 9461760 9461760 050905124859

629 6602752 4571136 4301824 47710208 61865984 050905124859

627 5824512 5824512 5627904 5627904 050905124859

632 26911744 26911744 23085056 23085056 050905124859

628 18368512 18368512 16719872 16719872 050905124859

631 3269632 3269632 2932736 2932736 050905124859

630 15173632 15173632 14139392 14139392 050905124900

626 10350592 10350592 9748480 9748480 050905124900

629 6094848 6094848 2229248 47710208 63963136 050905124900

627 5824512 5824512 5816320 5816320 050905124900

632 26911744 26911744 23846912 23846912 050905124900

628 18368512 18368512 16982016 16982016 050905124900

631 3269632 3269632 2949120 2949120 050905124900

630 15173632 15173632 14467072 14467072 050905124901

626 10350592 10350592 10272768 10272768 050905124901

629 6094848 6094848 5047296 47710208 65011712 050905124901

627 7056384 7056384 5939200 5939200 050905124901

632 26911744 26911744 24657920 24657920 050905124901

628 18368512 18368512 17580032 17580032 050905124901

631 3269632 3269632 3112960 3112960 050905124901

630 15173632 15173632 14639104 14639104 050905124902

626 12532736 12532736 10420224 10420224 050905124902

629 6094848 6094848 1819648 47710208 68157440 050905124902

627 7056384 7056384 6021120 6021120 050905124902

632 26911744 26911744 25165824 25165824 050905124902

628 18368512 18368512 17817600 17817600 050905124902

631 3269632 3269632 3178496 3178496 050905124902

630 18368512 18368512 15343616 15343616 050905124903

626 12532736 12532736 10878976 10878976 050905124903

629 6094848 6094848 5293056 47710208 68157440 050905124903

627 7056384 7056384 6397952 6397952 050905124903

632 26911744 26911744 26451968 26451968 050905124903

628 22234112 22234112 18776064 18776064 050905124903

631 3964928 3964928 3309568 3309568 050905124903

630 18368512 18368512 15433728 15433728 050905124904

626 12532736 12532736 10960896 10960896 050905124904

629 6094848 6094848 1024 47710208 73400320 050905124904

627 7056384 7056384 6471680 6471680 050905124904

632 26911744 26911744 26746880 26746880 050905124904

628 22234112 22234112 18857984 18857984 050905124904

631 3964928 3964928 3342336 3342336 050905124904

630 18368512 18368512 16031744 16031744 050905124905

626 12532736 12532736 11550720 11550720 050905124905

629 6094848 6094848 4064256 47710208 73400320 050905124905

627 7056384 7056384 6692864 6692864 050905124905

632 32572416 32572416 27713536 27713536 050905124905

628 22234112 22234112 19472384 19472384 050905124905

631 3964928 3964928 3473408 3473408 050905124905

630 18368512 18368512 16211968 16211968 050905124906

626 12532736 12532736 11608064 11608064 050905124906

629 6094848 6094848 508928 47710208 77594624 050905124906

627 7056384 7056384 6848512 6848512 050905124906

632 32572416 32572416 28057600 28057600 050905124906

628 22234112 22234112 19652608 19652608 050905124906

631 3964928 3964928 3497984 3497984 050905124906

630 18368512 18368512 16695296 16695296 050905124907

626 12532736 12532736 11943936 11943936 050905124907

629 7618560 7618560 3851264 47710208 77594624 050905124907

627 7056384 7056384 7053312 7053312 050905124907

632 32572416 32572416 29073408 29073408 050905124907

628 22234112 22234112 20701184 20701184 050905124907

631 3964928 3964928 3571712 3571712 050905124907

630 18368512 18368512 17227776 17227776 050905124908

626 12532736 12532736 12247040 12247040 050905124908

629 7618560 7618560 7062528 47710208 77594624 050905124908

627 8547328 8547328 7258112 7258112 050905124908

632 32572416 32572416 30031872 30031872 050905124908

628 22234112 22234112 21225472 21225472 050905124908

631 3964928 3964928 3833856 3833856 050905124908

630 18368512 18368512 17252352 17252352 050905124909

626 12532736 12532736 12263424 12263424 050905124909

629 7618560 7618560 1024 47710208 83886080 050905124909

627 8547328 8547328 7315456 7315456 050905124909

632 32572416 32572416 30121984 30121984 050905124909

628 22234112 22234112 21381120 21381120 050905124909

631 3964928 3964928 3866624 3866624 050905124909

630 18368512 18368512 17924096 17924096 050905124910

626 12532736 12532736 12492800 12492800 050905124910

629 7618560 7618560 3343360 47710208 83886080 050905124910

627 8547328 8547328 7716864 7716864 050905124910

632 32572416 32572416 31367168 31367168 050905124910

628 22234112 22234112 21962752 21962752 050905124910

631 3964928 3964928 3956736 3956736 050905124910

630 22234112 22234112 18522112 18522112 050905124911

626 15173632 15173632 12861440 12861440 050905124911

629 7618560 7618560 6554624 47710208 84934656 050905124911

627 8547328 8547328 7897088 7897088 050905124911

632 32572416 32572416 32235520 32235520 050905124911

628 26911744 26911744 22798336 22798336 050905124911

631 4806656 4806656 4071424 4071424 050905124911

630 22234112 22234112 18546688 18546688 050905124912

626 15173632 15173632 12886016 12886016 050905124912

629 7618560 7618560 1041408 47710208 90177536 050905124912

627 8547328 8547328 7913472 7913472 050905124912

632 32572416 32572416 32497664 32497664 050905124912

628 26911744 26911744 22855680 22855680 050905124912

631 4806656 4806656 4071424 4071424 050905124912

630 22234112 22234112 19226624 19226624 050905124913

626 15173632 15173632 13344768 13344768 050905124913

629 7618560 7618560 4383744 47710208 90177536 050905124913

627 8547328 8547328 8101888 8101888 050905124913

632 39420928 39420928 33374208 33374208 050905124913

628 26911744 26911744 23625728 23625728 050905124913

631 4806656 4806656 4112384 4112384 050905124913

630 22234112 22234112 20283392 20283392 050905124914

626 15173632 15173632 13811712 13811712 050905124914

629 8634368 8634368 7857152 47710208 90177536 050905124914

627 8547328 8547328 8454144 8454144 050905124914

632 39420928 39420928 34488320 34488320 050905124914

628 26911744 26911744 24240128 24240128 050905124914

631 4806656 4806656 4169728 4169728 050905124914

630 22234112 22234112 20283392 20283392 050905124915

626 15173632 15173632 13811712 13811712 050905124915

629 8634368 8634368 7857152 47710208 96468992 050905124915

627 8547328 8547328 8454144 8454144 050905124915

632 39420928 39420928 34496512 34496512 050905124915

628 26911744 26911744 24240128 24240128 050905124915

631 4806656 4806656 4169728 4169728 050905124915

630 22234112 22234112 20914176 20914176 050905124916

626 15173632 15173632 14213120 14213120 050905124916

629 8634368 8634368 3326976 47710208 96468992 050905124916

627 10350592 10350592 8765440 8765440 050905124916

632 39420928 39420928 35373056 35373056 050905124916

628 26911744 26911744 25018368 25018368 050905124916

631 4806656 4806656 4374528 4374528 050905124916

630 22234112 22234112 21250048 21250048 050905124917

626 15173632 15173632 14868480 14868480 050905124917

629 8634368 8634368 6538240 47710208 96468992 050905124917

627 10350592 10350592 9076736 9076736 050905124917

632 39420928 39420928 36503552 36503552 050905124917

628 26911744 26911744 25591808 25591808 050905124917

631 4806656 4806656 4571136 4571136 050905124917

630 22234112 22234112 21553152 21553152 050905124918

626 15173632 15173632 15138816 15138816 050905124918

629 8634368 8634368 8111104 47710208 99614720 050905124918

627 10350592 10350592 9388032 9388032 050905124918

632 39420928 39420928 37167104 37167104 050905124918

628 26911744 26911744 26058752 26058752 050905124918

631 4806656 4806656 4677632 4677632 050905124918

630 22234112 22234112 21766144 21766144 050905124919

626 18368512 18368512 15179776 15179776 050905124919

629 8634368 8634368 1942528 47710208 103809024 050905124919

627 10350592 10350592 9412608 9412608 050905124919

632 39420928 39420928 37748736 37748736 050905124919

628 26911744 26911744 26263552 26263552 050905124919

631 4806656 4806656 4702208 4702208 050905124919

630 26911744 26911744 22462464 22462464 050905124920

626 18368512 18368512 15450112 15450112 050905124920

629 8634368 8634368 4957184 47710208 103809024 050905124920

627 10350592 10350592 9715712 9715712 050905124920

632 39420928 39420928 38772736 38772736 050905124920

628 32572416 32572416 27189248 27189248 050905124920

631 4806656 4806656 4775936 4775936 050905124920

630 26911744 26911744 23027712 23027712 050905124921

626 18368512 18368512 15802368 15802368 050905124921

629 8634368 8634368 8365056 47710208 103809024 050905124921

627 10350592 10350592 10010624 10010624 050905124921

632 47708160 47708160 39755776 39755776 050905124921

628 32572416 32572416 27967488 27967488 050905124921

631 5824512 5824512 4841472 4841472 050905124921

630 26911744 26911744 23027712 23027712 050905124922

626 18368512 18368512 15802368 15802368 050905124922

629 8634368 8634368 8365056 47710208 110100480 050905124922

627 10350592 10350592 10010624 10010624 050905124922

632 47708160 47708160 39755776 39755776 050905124922

628 32572416 32572416 27967488 27967488 050905124922

631 5824512 5824512 4841472 4841472 050905124922

630 26911744 26911744 23699456 23699456 050905124923

626 18368512 18368512 16048128 16048128 050905124923

629 8634368 8634368 3007488 47710208 111149056 050905124923

627 10350592 10350592 10264576 10264576 050905124923

632 47708160 47708160 40747008 40747008 050905124923

628 32572416 32572416 28909568 28909568 050905124923

631 5824512 5824512 5013504 5013504 050905124923

630 26911744 26911744 24567808 24567808 050905124924

626 18368512 18368512 16359424 16359424 050905124924

629 10158080 10158080 6939648 47710208 111149056 050905124924

627 12532736 12532736 10493952 10493952 050905124924

632 47708160 47708160 42147840 42147840 050905124924

628 32572416 32572416 29687808 29687808 050905124924

631 5824512 5824512 5169152 5169152 050905124924

630 26911744 26911744 24961024 24961024 050905124925

626 18368512 18368512 16506880 16506880 050905124925

629 10158080 10158080 9364480 47710208 113246208 050905124925

627 12532736 12532736 10633216 10633216 050905124925

632 47708160 47708160 43040768 43040768 050905124925

628 32572416 32572416 30154752 30154752 050905124925

631 5824512 5824512 5210112 5210112 050905124925

630 26911744 26911744 24961024 24961024 050905124926

626 18368512 18368512 16506880 16506880 050905124926

629 10158080 10158080 9364480 47710208 119537664 050905124926

627 12532736 12532736 10633216 10633216 050905124926

632 47708160 47708160 43040768 43040768 050905124926

628 32572416 32572416 30154752 30154752 050905124926

631 5824512 5824512 5210112 5210112 050905124926

630 26911744 26911744 25468928 25468928 050905124928

626 18368512 18368512 17170432 17170432 050905124928

629 10158080 10158080 3466240 47710208 119537664 050905124928

627 12532736 12532736 10805248 10805248 050905124928

632 47708160 47708160 44081152 44081152 050905124928

628 32572416 32572416 30564352 30564352 050905124928

631 5824512 5824512 5300224 5300224 050905124928

630 26911744 26911744 26083328 26083328 050905124929

626 18368512 18368512 17678336 17678336 050905124929

629 10158080 10158080 7070720 47710208 119537664 050905124929

627 12532736 12532736 11075584 11075584 050905124929

632 47708160 47708160 45129728 45129728 050905124929

628 32572416 32572416 31236096 31236096 050905124929

631 5824512 5824512 5529600 5529600 050905124929

630 26911744 26911744 26419200 26419200 050905124930

626 18368512 18368512 17866752 17866752 050905124930

629 10158080 10158080 9364480 47710208 121634816 050905124930

627 12532736 12532736 11378688 11378688 050905124930

632 47708160 47708160 45924352 45924352 050905124930

628 32572416 32572416 31686656 31686656 050905124930

631 5824512 5824512 5611520 5611520 050905124930

630 26911744 26911744 26435584 26435584 050905124931

626 18368512 18368512 17940480 17940480 050905124931

629 10158080 10158080 254976 47710208 127926272 050905124931

627 12532736 12532736 11378688 11378688 050905124931

632 47708160 47708160 45957120 45957120 050905124931

628 32572416 32572416 31703040 31703040 050905124931

631 5824512 5824512 5611520 5611520 050905124931

630 32572416 32572416 27082752 27082752 050905124932

626 22234112 22234112 18481152 18481152 050905124932

629 10158080 10158080 3662848 47710208 127926272 050905124932

627 12532736 12532736 11649024 11649024 050905124932

632 47708160 47708160 47136768 47136768 050905124932

628 39420928 39420928 32874496 32874496 050905124932

631 5824512 5824512 5701632 5701632 050905124932

630 32572416 32572416 27369472 27369472 050905124933

626 22234112 22234112 18735104 18735104 050905124933

629 10158080 10158080 5366784 47710208 127926272 050905124933

627 12532736 12532736 11771904 11771904 050905124933

632 47708160 6602752 47710208 47710208 4194304 050905124933

628 39420928 39420928 33153024 33153024 050905124933

631 7056384 7056384 5857280 5857280 050905124933

630 32572416 32572416 27369472 27369472 050905124934

626 22234112 22234112 18735104 18735104 050905124934

629 10158080 10158080 5366784 47710208 127926272 050905124934

627 12532736 12532736 11771904 11771904 050905124934

632 47708160 6602752 47710208 47710208 10485760 050905124934

628 39420928 39420928 33153024 33153024 050905124934

631 7056384 7056384 5857280 5857280 050905124934

630 32572416 32572416 27369472 27369472 050905124935

626 22234112 22234112 18735104 18735104 050905124935

629 10158080 10158080 5366784 47710208 127926272 050905124935

627 12532736 12532736 11771904 11771904 050905124935

632 47708160 6602752 47710208 47710208 15728640 050905124935

628 39420928 39420928 33153024 33153024 050905124935

631 7056384 7056384 5857280 5857280 050905124935

630 32572416 32572416 27369472 27369472 050905124936

626 22234112 22234112 18735104 18735104 050905124936

629 10158080 10158080 5366784 47710208 127926272 050905124936

627 12532736 12532736 11771904 11771904 050905124936

632 47708160 6602752 47710208 47710208 22020096 050905124936

628 39420928 39420928 33153024 33153024 050905124936

631 7056384 7056384 5857280 5857280 050905124936

630 32572416 32572416 27369472 27369472 050905124937

626 22234112 22234112 18735104 18735104 050905124937

629 10158080 10158080 5366784 47710208 127926272 050905124937

627 12532736 12532736 11771904 11771904 050905124937

632 47708160 6602752 47710208 47710208 28311552 050905124937

628 39420928 39420928 33153024 33153024 050905124937

631 7056384 7056384 5857280 5857280 050905124937

630 32572416 32572416 27369472 27369472 050905124938

626 22234112 22234112 18735104 18735104 050905124938

629 10158080 10158080 5366784 47710208 127926272 050905124938

627 12532736 12532736 11771904 11771904 050905124938

632 47708160 6602752 47710208 47710208 34603008 050905124938

628 39420928 39420928 33153024 33153024 050905124938

631 7056384 7056384 5857280 5857280 050905124938

630 32572416 32572416 27369472 27369472 050905124939

626 22234112 22234112 18735104 18735104 050905124939

629 10158080 10158080 5366784 47710208 127926272 050905124939

627 12532736 12532736 11771904 11771904 050905124939

632 47708160 6602752 47710208 47710208 40894464 050905124939

628 39420928 39420928 33153024 33153024 050905124939

631 7056384 7056384 5857280 5857280 050905124939

630 32572416 32572416 27648000 27648000 050905124940

626 22234112 22234112 18931712 18931712 050905124940

629 10158080 10158080 6611968 47710208 127926272 050905124940

627 12532736 12532736 11993088 11993088 050905124940

632 6602752 6602752 705536 47710208 44040192 050905124940

628 39420928 39420928 33415168 33415168 050905124940

631 7056384 7056384 5914624 5914624 050905124940

630 32572416 32572416 28106752 28106752 050905124941

626 22234112 22234112 19226624 19226624 050905124941

629 10158080 10158080 9364480 47710208 130023424 050905124941

627 12532736 12532736 12124160 12124160 050905124941

632 6602752 6602752 1786880 47710208 44040192 050905124941

628 39420928 39420928 34054144 34054144 050905124941

631 7056384 7056384 6053888 6053888 050905124941

630 32572416 32572416 28106752 28106752 050905124942

626 22234112 22234112 19226624 19226624 050905124942

629 10158080 10158080 9364480 47710208 135266304 050905124942

627 12532736 12532736 12124160 12124160 050905124942

632 6602752 6602752 1786880 47710208 44040192 050905124942

628 39420928 39420928 34054144 34054144 050905124942

631 7056384 7056384 6053888 6053888 050905124942

630 32572416 32572416 28786688 28786688 050905124943

626 22234112 22234112 19439616 19439616 050905124943

629 11681792 11681792 3662848 47710208 136314880 050905124943

627 12532736 12532736 12476416 12476416 050905124943

632 6602752 6602752 3015680 47710208 44040192 050905124943

628 39420928 39420928 34725888 34725888 050905124943

631 7056384 7056384 6258688 6258688 050905124943

630 32572416 32572416 29442048 29442048 050905124944

626 22234112 22234112 20086784 20086784 050905124944

629 11681792 11681792 7201792 47710208 136314880 050905124944

627 15173632 15173632 13107200 13107200 050905124944

632 6602752 6602752 4334592 47710208 44040192 050905124944

628 39420928 39420928 35561472 35561472 050905124944

631 7056384 7056384 6479872 6479872 050905124944

630 32572416 32572416 30081024 30081024 050905124945

626 22234112 22234112 20684800 20684800 050905124945

629 11681792 11681792 10871808 47710208 136314880 050905124945

627 15173632 15173632 13303808 13303808 050905124945

632 6602752 6602752 5497856 47710208 44040192 050905124945

628 39420928 39420928 36487168 36487168 050905124945

631 7056384 7056384 6578176 6578176 050905124945

630 32572416 32572416 30081024 30081024 050905124946

626 22234112 22234112 20684800 20684800 050905124946

629 11681792 11681792 10871808 47710208 141557760 050905124946

627 15173632 15173632 13303808 13303808 050905124946

632 6602752 6602752 5497856 47710208 44040192 050905124946

628 39420928 39420928 36487168 36487168 050905124946

631 7056384 7056384 6578176 6578176 050905124946

630 32572416 32572416 30187520 30187520 050905124947

626 22234112 22234112 20799488 20799488 050905124947

629 11681792 11681792 1024 47710208 145752064 050905124947

627 15173632 15173632 13352960 13352960 050905124947

632 6602752 6602752 5587968 47710208 46137344 050905124947

628 39420928 39420928 36577280 36577280 050905124947

631 7056384 7056384 6610944 6610944 050905124947

630 32572416 32572416 30326784 30326784 050905124948

626 22234112 22234112 20865024 20865024 050905124948

629 11681792 11681792 2294784 47710208 145752064 050905124948

627 15173632 15173632 13410304 13410304 050905124948

632 6602752 6602752 656384 47710208 49283072 050905124948

628 39420928 39420928 37076992 37076992 050905124948

631 7056384 7056384 6676480 6676480 050905124948

630 32572416 32572416 30842880 30842880 050905124949

626 22234112 22234112 21356544 21356544 050905124949

629 11681792 11681792 5702656 47710208 145752064 050905124949

627 15173632 15173632 13697024 13697024 050905124949

632 6602752 6602752 1639424 47710208 49283072 050905124949

628 39420928 39420928 37773312 37773312 050905124949

631 7056384 7056384 6873088 6873088 050905124949

630 32572416 32572416 31358976 31358976 050905124950

626 22234112 22234112 21676032 21676032 050905124950

629 11681792 11681792 9307136 47710208 145752064 050905124950

627 15173632 15173632 14114816 14114816 050905124950

632 6602752 6602752 2950144 47710208 49283072 050905124950

628 39420928 39420928 38690816 38690816 050905124950

631 8547328 8547328 7086080 7086080 050905124950

630 32572416 32572416 31498240 31498240 050905124951

626 22234112 22234112 21757952 21757952 050905124951

629 11681792 11681792 10617856 47710208 149946368 050905124951

627 15173632 15173632 14229504 14229504 050905124951

632 6602752 6602752 3277824 47710208 49283072 050905124951

628 39420928 39420928 39010304 39010304 050905124951

631 8547328 8547328 7184384 7184384 050905124951

630 32572416 32572416 31498240 31498240 050905124952

626 22234112 22234112 21757952 21757952 050905124952

629 11681792 11681792 508928 47710208 155189248 050905124952

627 15173632 15173632 14229504 14229504 050905124952

632 6602752 6602752 3277824 47710208 49283072 050905124952

628 39420928 39420928 39018496 39018496 050905124952

631 8547328 8547328 7184384 7184384 050905124952

630 32572416 32572416 32088064 32088064 050905124953

626 22234112 22234112 22093824 22093824 050905124953

629 11681792 11681792 3720192 47710208 155189248 050905124953

627 15173632 15173632 14499840 14499840 050905124953

632 6602752 4571136 4391936 47710208 49283072 050905124953

628 47708160 47708160 39763968 39763968 050905124953

631 8547328 8547328 7299072 7299072 050905124953

630 32572416 32572416 32514048 32514048 050905124954

626 26911744 26911744 22306816 22306816 050905124954

629 11681792 11681792 5686272 47710208 155189248 050905124954

627 15173632 15173632 14647296 14647296 050905124954

632 6602752 4571136 525312 47710208 53477376 050905124954

628 47708160 47708160 40148992 40148992 050905124954

631 8547328 8547328 7331840 7331840 050905124954

630 39420928 39420928 33128448 33128448 050905124955

626 26911744 26911744 22822912 22822912 050905124955

629 11681792 11681792 9815040 47710208 155189248 050905124955

627 15173632 15173632 14999552 14999552 050905124955

632 6602752 4571136 1704960 47710208 53477376 050905124955

628 47708160 47708160 41041920 41041920 050905124955

631 8547328 8547328 7553024 7553024 050905124955

630 39420928 39420928 33333248 33333248 050905124956

626 26911744 26911744 22970368 22970368 050905124956

629 11681792 11681792 11125760 47710208 159383552 050905124956

627 15173632 15173632 15138816 15138816 050905124956

632 6602752 4571136 2163712 47710208 53477376 050905124956

628 47708160 47708160 41279488 41279488 050905124956

631 8547328 8547328 7585792 7585792 050905124956

630 39420928 39420928 33333248 33333248 050905124957

626 26911744 26911744 22970368 22970368 050905124957

629 11681792 11681792 11125760 47710208 164626432 050905124957

627 15173632 15173632 15138816 15138816 050905124957

632 6602752 4571136 2163712 47710208 53477376 050905124957

628 47708160 47708160 41279488 41279488 050905124957

631 8547328 8547328 7585792 7585792 050905124957

630 39420928 39420928 34103296 34103296 050905124958

626 26911744 26911744 23330816 23330816 050905124958

629 13205504 13205504 3589120 47710208 165675008 050905124958

627 18368512 18368512 15376384 15376384 050905124958

632 6602752 4571136 3343360 47710208 53477376 050905124958

628 47708160 47708160 42033152 42033152 050905124958

631 8547328 8547328 7790592 7790592 050905124958

630 39420928 39420928 34553856 34553856 050905124959

626 26911744 26911744 23797760 23797760 050905124959

629 13205504 13205504 6210560 47710208 165675008 050905124959

627 18368512 18368512 15671296 15671296 050905124959

632 6602752 4571136 1680384 47710208 56623104 050905124959

628 47708160 47708160 42631168 42631168 050905124959

631 8547328 8547328 7856128 7856128 050905124959

630 39420928 39420928 35225600 35225600 050905125000

626 26911744 26911744 24297472 24297472 050905125000

629 13205504 13205504 9356288 47710208 165675008 050905125000

627 18368512 18368512 15876096 15876096 050905125000

632 6602752 4571136 2794496 47710208 56623104 050905125000

628 47708160 47708160 43335680 43335680 050905125000

631 8547328 8547328 7938048 7938048 050905125000

630 39420928 39420928 35774464 35774464 050905125001

626 26911744 26911744 24772608 24772608 050905125001

629 13205504 13205504 12698624 47710208 165675008 050905125001

627 18368512 18368512 16064512 16064512 050905125001

632 6602752 4571136 3908608 47710208 56623104 050905125001

628 47708160 47708160 44220416 44220416 050905125001

631 8547328 8547328 8085504 8085504 050905125001

630 39420928 39420928 35774464 35774464 050905125002

626 26911744 26911744 24772608 24772608 050905125002

629 13205504 13205504 12698624 47710208 171966464 050905125002

627 18368512 18368512 16064512 16064512 050905125002

632 6602752 4571136 3908608 47710208 56623104 050905125002

628 47708160 47708160 44220416 44220416 050905125002

631 8547328 8547328 8085504 8085504 050905125002

630 39420928 39420928 35938304 35938304 050905125004

626 26911744 26911744 24870912 24870912 050905125004

629 13205504 13205504 1024 47710208 177209344 050905125004

627 18368512 18368512 16121856 16121856 050905125004

632 6602752 4571136 4039680 47710208 56623104 050905125004

628 47708160 47708160 44376064 44376064 050905125004

631 8547328 8547328 8110080 8110080 050905125004

630 39420928 39420928 36388864 36388864 050905125005

626 26911744 26911744 25165824 25165824 050905125005

629 13205504 13205504 3015680 47710208 177209344 050905125005

627 18368512 18368512 16310272 16310272 050905125005

632 6602752 4571136 762880 47710208 59768832 050905125005

628 47708160 47708160 45056000 45056000 050905125005

631 8547328 8547328 8208384 8208384 050905125005

630 39420928 39420928 36970496 36970496 050905125006

626 26911744 26911744 25886720 25886720 050905125006

629 13205504 13205504 7341056 47710208 177209344 050905125006

627 18368512 18368512 16629760 16629760 050905125006

632 6602752 4571136 2466816 47710208 59768832 050905125006

628 47708160 47708160 46112768 46112768 050905125006

631 8547328 8547328 8355840 8355840 050905125006

630 39420928 39420928 37634048 37634048 050905125007

626 26911744 26911744 26402816 26402816 050905125007

629 13205504 13205504 10748928 47710208 177209344 050905125007

627 18368512 18368512 16957440 16957440 050905125007

632 6602752 4571136 3580928 47710208 59768832 050905125007

628 47708160 47708160 46899200 46899200 050905125007

631 8547328 8547328 8478720 8478720 050905125007

630 39420928 39420928 37953536 37953536 050905125008

626 26911744 26911744 26484736 26484736 050905125008

629 13205504 13205504 12190720 47710208 180355072 050905125008

627 18368512 18368512 17154048 17154048 050905125008

632 6602752 4571136 4105216 47710208 59768832 050905125008

628 47708160 47708160 47333376 47333376 050905125008

631 8547328 8547328 8503296 8503296 050905125008

630 39420928 39420928 37953536 37953536 050905125009

626 26911744 26911744 26484736 26484736 050905125009

629 13205504 13205504 12190720 47710208 186646528 050905125009

627 18368512 18368512 17154048 17154048 050905125009

632 6602752 4571136 4105216 47710208 59768832 050905125009

628 47708160 47708160 47333376 47333376 050905125009

631 8547328 8547328 8503296 8503296 050905125009

630 39420928 39420928 38199296 38199296 050905125010

626 26911744 26911744 26566656 26566656 050905125010

629 13205504 13205504 1041408 47710208 187695104 050905125010

627 18368512 18368512 17244160 17244160 050905125010

632 6602752 4571136 4301824 47710208 62914560 050905125010

628 47708160 47708160 47505408 47505408 050905125010

631 8547328 8547328 8536064 8536064 050905125010

630 39420928 39420928 38412288 38412288 050905125011

626 26911744 26911744 26648576 26648576 050905125011

629 13205504 13205504 2221056 47710208 187695104 050905125011

627 18368512 18368512 17367040 17367040 050905125011

632 6602752 4571136 508928 47710208 62914560 050905125011

628 47708160 6602752 47710208 47710208 5242880 050905125011

631 10350592 10350592 8593408 8593408 050905125011

630 39420928 39420928 38412288 38412288 050905125012

626 26911744 26911744 26648576 26648576 050905125012

629 13205504 13205504 2221056 47710208 187695104 050905125012

627 18368512 18368512 17367040 17367040 050905125012

632 6602752 4571136 508928 47710208 62914560 050905125012

628 47708160 6602752 47710208 47710208 10485760 050905125012

631 10350592 10350592 8593408 8593408 050905125012

630 39420928 39420928 38412288 38412288 050905125013

626 26911744 26911744 26648576 26648576 050905125013

629 13205504 13205504 2221056 47710208 187695104 050905125013

627 18368512 18368512 17367040 17367040 050905125013

632 6602752 4571136 508928 47710208 62914560 050905125013

628 47708160 6602752 47710208 47710208 16777216 050905125013

631 10350592 10350592 8593408 8593408 050905125013

630 39420928 39420928 38412288 38412288 050905125014

626 26911744 26911744 26648576 26648576 050905125014

629 13205504 13205504 2221056 47710208 187695104 050905125014

627 18368512 18368512 17367040 17367040 050905125014

632 6602752 4571136 508928 47710208 62914560 050905125014

628 47708160 6602752 47710208 47710208 22020096 050905125014

631 10350592 10350592 8593408 8593408 050905125014

630 39420928 39420928 38412288 38412288 050905125015

626 26911744 26911744 26648576 26648576 050905125015

629 13205504 13205504 2221056 47710208 187695104 050905125015

627 18368512 18368512 17367040 17367040 050905125015

632 6602752 4571136 508928 47710208 62914560 050905125015

628 47708160 6602752 47710208 47710208 28311552 050905125015

631 10350592 10350592 8593408 8593408 050905125015

630 39420928 39420928 38412288 38412288 050905125016

626 26911744 26911744 26648576 26648576 050905125016

629 13205504 13205504 2221056 47710208 187695104 050905125016

627 18368512 18368512 17367040 17367040 050905125016

632 6602752 4571136 508928 47710208 62914560 050905125016

628 47708160 6602752 47710208 47710208 33554432 050905125016

631 10350592 10350592 8593408 8593408 050905125016

630 39420928 39420928 38412288 38412288 050905125017

626 26911744 26911744 26648576 26648576 050905125017

629 13205504 13205504 2221056 47710208 187695104 050905125017

627 18368512 18368512 17367040 17367040 050905125017

632 6602752 4571136 508928 47710208 62914560 050905125017

628 47708160 6602752 47710208 47710208 39845888 050905125017

631 10350592 10350592 8593408 8593408 050905125017

630 39420928 39420928 38608896 38608896 050905125018

626 26911744 26911744 26804224 26804224 050905125018

629 13205504 13205504 3269632 47710208 187695104 050905125018

627 18368512 18368512 17481728 17481728 050905125018

632 6602752 4571136 508928 47710208 62914560 050905125018

628 6602752 6602752 435200 47710208 44040192 050905125018

631 10350592 10350592 8642560 8642560 050905125018

630 39420928 39420928 39247872 39247872 050905125019

626 32572416 32572416 27262976 27262976 050905125019

629 13205504 13205504 6611968 47710208 187695104 050905125019

627 18368512 18368512 17702912 17702912 050905125019

632 6094848 6094848 2475008 47710208 62914560 050905125019

628 6602752 6602752 1336320 47710208 44040192 050905125019

631 10350592 10350592 8732672 8732672 050905125019

630 47708160 47708160 39919616 39919616 050905125020

626 32572416 32572416 27746304 27746304 050905125020

629 13205504 13205504 9954304 47710208 187695104 050905125020

627 18368512 18368512 17997824 17997824 050905125020

632 6094848 6094848 3523584 47710208 62914560 050905125020

628 6602752 6602752 2384896 47710208 44040192 050905125020

631 10350592 10350592 8830976 8830976 050905125020

630 47708160 47708160 40534016 40534016 050905125021

626 32572416 32572416 28024832 28024832 050905125021

629 13205504 13205504 12444672 47710208 188743680 050905125021

627 18368512 18368512 18186240 18186240 050905125021

632 6094848 6094848 4572160 47710208 62914560 050905125021

628 6602752 6602752 3286016 47710208 44040192 050905125021

631 10350592 10350592 8888320 8888320 050905125021

630 47708160 47708160 40534016 40534016 050905125022

626 32572416 32572416 28024832 28024832 050905125022

629 13205504 13205504 12444672 47710208 195035136 050905125022

627 18368512 18368512 18186240 18186240 050905125022

632 6094848 6094848 4572160 47710208 62914560 050905125022

628 6602752 6602752 3286016 47710208 44040192 050905125022

631 10350592 10350592 8888320 8888320 050905125022

630 47708160 47708160 40869888 40869888 050905125023

626 32572416 32572416 28155904 28155904 050905125023

629 13205504 13205504 1557504 47710208 199229440 050905125023

627 18368512 18368512 18259968 18259968 050905125023

632 6094848 6094848 5096448 47710208 62914560 050905125023

628 6602752 6602752 3556352 47710208 44040192 050905125023

631 10350592 10350592 8970240 8970240 050905125023

630 47708160 47708160 41189376 41189376 050905125024

626 32572416 32572416 28295168 28295168 050905125024

629 13205504 13205504 2999296 47710208 199229440 050905125024

627 22234112 22234112 18391040 18391040 050905125024

632 6094848 6094848 5555200 47710208 67108864 050905125024

628 6602752 6602752 3834880 47710208 44040192 050905125024

631 10350592 10350592 9035776 9035776 050905125024

630 47708160 47708160 41902080 41902080 050905125025

626 32572416 32572416 28606464 28606464 050905125025

629 14729216 14729216 5948416 47710208 199229440 050905125025

627 22234112 22234112 18595840 18595840 050905125025

632 6094848 6094848 1303552 47710208 68157440 050905125025

628 6602752 6602752 4383744 47710208 44040192 050905125025

631 10350592 10350592 9224192 9224192 050905125025

630 47708160 47708160 42582016 42582016 050905125026

626 32572416 32572416 29204480 29204480 050905125026

629 14729216 14729216 9290752 47710208 199229440 050905125026

627 22234112 22234112 18833408 18833408 050905125026

632 6094848 6094848 2417664 47710208 68157440 050905125026

628 6602752 6602752 5022720 47710208 44040192 050905125026

631 10350592 10350592 9453568 9453568 050905125026

630 47708160 47708160 43008000 43008000 050905125027

626 32572416 32572416 29532160 29532160 050905125027

629 14729216 14729216 11387904 47710208 199229440 050905125027

627 22234112 22234112 18997248 18997248 050905125027

632 6094848 6094848 3138560 47710208 68157440 050905125027

628 6602752 6602752 5358592 47710208 44040192 050905125027

631 10350592 10350592 9584640 9584640 050905125027

630 47708160 47708160 43229184 43229184 050905125028

626 32572416 32572416 29712384 29712384 050905125028

629 14729216 14729216 12567552 47710208 199229440 050905125028

627 22234112 22234112 19111936 19111936 050905125028

632 6094848 6094848 3597312 47710208 68157440 050905125028

628 6602752 6602752 5571584 47710208 44040192 050905125028

631 10350592 10350592 9682944 9682944 050905125028

630 47708160 47708160 43393024 43393024 050905125029

626 32572416 32572416 29786112 29786112 050905125029

629 14729216 14729216 13353984 47710208 199229440 050905125029

627 22234112 22234112 19185664 19185664 050905125029

632 6094848 6094848 3793920 47710208 68157440 050905125029

628 6602752 6602752 5587968 47710208 49283072 050905125029

631 10350592 10350592 9715712 9715712 050905125029

630 47708160 47708160 43606016 43606016 050905125030

626 32572416 32572416 29884416 29884416 050905125030

629 14729216 14729216 14205952 47710208 200278016 050905125030

627 22234112 22234112 19234816 19234816 050905125030

632 6094848 6094848 3990528 47710208 68157440 050905125030

628 6602752 6602752 254976 47710208 49283072 050905125030

631 10350592 10350592 9773056 9773056 050905125030

630 47708160 47708160 43606016 43606016 050905125031

626 32572416 32572416 29884416 29884416 050905125031

629 14729216 14729216 14205952 47710208 205520896 050905125031

627 22234112 22234112 19234816 19234816 050905125031

632 6094848 6094848 3990528 47710208 68157440 050905125031

628 6602752 6602752 254976 47710208 49283072 050905125031

631 10350592 10350592 9773056 9773056 050905125031

630 47708160 47708160 43606016 43606016 050905125032

626 32572416 32572416 29884416 29884416 050905125032

629 14729216 14729216 14205952 47710208 210763776 050905125032

627 22234112 22234112 19234816 19234816 050905125032

632 6094848 6094848 3990528 47710208 68157440 050905125032

628 6602752 6602752 254976 47710208 49283072 050905125032

631 10350592 10350592 9773056 9773056 050905125032

630 47708160 47708160 43868160 43868160 050905125033

626 32572416 32572416 30007296 30007296 050905125033

629 14729216 14729216 1745920 47710208 211812352 050905125033

627 22234112 22234112 19349504 19349504 050905125033

632 6094848 6094848 4252672 47710208 68157440 050905125033

628 6602752 6602752 582656 47710208 49283072 050905125033

631 10350592 10350592 9814016 9814016 050905125033

630 47708160 47708160 44089344 44089344 050905125034

626 32572416 32572416 30121984 30121984 050905125034

629 14729216 14729216 2925568 47710208 211812352 050905125034

627 22234112 22234112 19464192 19464192 050905125034

632 6094848 6094848 4645888 47710208 68157440 050905125034

628 6602752 6602752 779264 47710208 49283072 050905125034

631 10350592 10350592 9871360 9871360 050905125034

630 47708160 47708160 44433408 44433408 050905125035

626 32572416 32572416 30294016 30294016 050905125035

629 14729216 14729216 4760576 47710208 211812352 050905125035

627 22234112 22234112 19595264 19595264 050905125035

632 6094848 6094848 5301248 47710208 68157440 050905125035

628 6602752 6602752 1238016 47710208 49283072 050905125035

631 10350592 10350592 9969664 9969664 050905125035

630 47708160 47708160 44589056 44589056 050905125036

626 32572416 32572416 30416896 30416896 050905125036

629 14729216 14729216 5678080 47710208 211812352 050905125036

627 22234112 22234112 19636224 19636224 050905125036

632 6094848 6094848 762880 47710208 72351744 050905125036

628 6602752 6602752 1565696 47710208 49283072 050905125036

631 10350592 10350592 10002432 10002432 050905125036

630 47708160 47708160 45228032 45228032 050905125037

626 32572416 32572416 30883840 30883840 050905125037

629 14729216 14729216 8299520 47710208 211812352 050905125037

627 22234112 22234112 19800064 19800064 050905125037

632 6094848 6094848 1942528 47710208 72351744 050905125037

628 6602752 6602752 2352128 47710208 49283072 050905125037

631 10350592 10350592 10108928 10108928 050905125037

630 47708160 47708160 45899776 45899776 050905125038

626 32572416 32572416 31424512 31424512 050905125038

629 14729216 14729216 11707392 47710208 211812352 050905125038

627 22234112 22234112 20135936 20135936 050905125038

632 6094848 6094848 3187712 47710208 72351744 050905125038

628 6602752 6602752 3204096 47710208 49283072 050905125038

631 10350592 10350592 10215424 10215424 050905125038

630 47708160 47708160 46047232 46047232 050905125039

626 32572416 32572416 31604736 31604736 050905125039

629 14729216 14729216 12755968 47710208 211812352 050905125039

627 22234112 22234112 20258816 20258816 050905125039

632 6094848 6094848 3580928 47710208 72351744 050905125039

628 6602752 6602752 3400704 47710208 49283072 050905125039

631 10350592 10350592 10248192 10248192 050905125039

630 47708160 47708160 46145536 46145536 050905125040

626 32572416 32572416 31727616 31727616 050905125040

629 14729216 14729216 13542400 47710208 211812352 050905125040

627 22234112 22234112 20348928 20348928 050905125040

632 6094848 6094848 3777536 47710208 72351744 050905125040

628 6602752 6602752 3662848 47710208 49283072 050905125040

631 10350592 10350592 10272768 10272768 050905125040

630 47708160 47708160 46292992 46292992 050905125042

626 32572416 32572416 31858688 31858688 050905125042

629 14729216 14729216 14459904 47710208 212860928 050905125042

627 22234112 22234112 20422656 20422656 050905125042

632 6094848 6094848 4039680 47710208 72351744 050905125042

628 6602752 6602752 3793920 47710208 49283072 050905125042

631 10350592 10350592 10313728 10313728 050905125042

630 47708160 47708160 46292992 46292992 050905125043

626 32572416 32572416 31858688 31858688 050905125043

629 14729216 14729216 14459904 47710208 218103808 050905125043

627 22234112 22234112 20422656 20422656 050905125043

632 6094848 6094848 4039680 47710208 72351744 050905125043

628 6602752 6602752 3793920 47710208 49283072 050905125043

631 10350592 10350592 10313728 10313728 050905125043

630 47708160 47708160 46292992 46292992 050905125044

626 32572416 32572416 31858688 31858688 050905125044

629 14729216 14729216 14459904 47710208 224395264 050905125044

627 22234112 22234112 20422656 20422656 050905125044

632 6094848 6094848 4039680 47710208 72351744 050905125044

628 6602752 6602752 3793920 47710208 49283072 050905125044

631 10350592 10350592 10313728 10313728 050905125044

630 47708160 47708160 46374912 46374912 050905125045

626 32572416 32572416 31924224 31924224 050905125045

629 14729216 14729216 762880 47710208 224395264 050905125045

627 22234112 22234112 20496384 20496384 050905125045

632 6094848 6094848 4170752 47710208 72351744 050905125045

628 6602752 6602752 3924992 47710208 49283072 050905125045

631 10350592 10350592 10338304 10338304 050905125045

630 47708160 47708160 46440448 46440448 050905125046

626 32572416 32572416 31989760 31989760 050905125046

629 14729216 14729216 2270208 47710208 224395264 050905125046

627 22234112 22234112 20553728 20553728 050905125046

632 6094848 6094848 4367360 47710208 72351744 050905125046

628 6602752 6602752 4056064 47710208 49283072 050905125046

631 12532736 12532736 10371072 10371072 050905125046

630 47708160 47708160 46538752 46538752 050905125047

626 32572416 32572416 32096256 32096256 050905125047

629 14729216 14729216 2991104 47710208 224395264 050905125047

627 22234112 22234112 20594688 20594688 050905125047

632 6094848 6094848 4629504 47710208 72351744 050905125047

628 6602752 6602752 4252672 47710208 49283072 050905125047

631 12532736 12532736 10403840 10403840 050905125047

630 47708160 47708160 46563328 46563328 050905125048

626 32572416 32572416 32104448 32104448 050905125048

629 14729216 14729216 3253248 47710208 224395264 050905125048

627 22234112 22234112 20611072 20611072 050905125048

632 6094848 6094848 4695040 47710208 72351744 050905125048

628 6602752 6602752 4318208 47710208 49283072 050905125048

631 12532736 12532736 10412032 10412032 050905125048

630 47708160 47708160 46940160 46940160 050905125049

626 32572416 32572416 32391168 32391168 050905125049

629 14729216 14729216 5219328 47710208 224395264 050905125049

627 22234112 22234112 20709376 20709376 050905125049

632 6094848 6094848 5219328 47710208 72351744 050905125049

628 6602752 4571136 4645888 47710208 52428800 050905125049

631 12532736 12532736 10436608 10436608 050905125049

630 47708160 47708160 47218688 47218688 050905125050

626 39420928 39420928 32768000 32768000 050905125050

629 14729216 14729216 7316480 47710208 224395264 050905125050

627 22234112 22234112 20840448 20840448 050905125050

632 6094848 6094848 5809152 47710208 74448896 050905125050

628 6602752 4571136 582656 47710208 53477376 050905125050

631 12532736 12532736 10493952 10493952 050905125050

630 47708160 47708160 47480832 47480832 050905125051

626 39420928 39420928 33038336 33038336 050905125051

629 14729216 14729216 9020416 47710208 224395264 050905125051

627 22234112 22234112 20971520 20971520 050905125051

632 6094848 6094848 508928 47710208 77594624 050905125051

628 6602752 4571136 910336 47710208 53477376 050905125051

631 12532736 12532736 10559488 10559488 050905125051

630 47708160 47708160 47521792 47521792 050905125052

626 39420928 39420928 33087488 33087488 050905125052

629 14729216 14729216 9217024 47710208 224395264 050905125052

627 22234112 22234112 20987904 20987904 050905125052

632 6094848 6094848 508928 47710208 77594624 050905125052

628 6602752 4571136 1041408 47710208 53477376 050905125052

631 12532736 12532736 10584064 10584064 050905125052

630 47708160 6602752 47710208 47710208 3145728 050905125053

626 39420928 39420928 33292288 33292288 050905125053

629 14729216 14729216 10593280 47710208 224395264 050905125053

627 22234112 22234112 21118976 21118976 050905125053

632 7618560 7618560 1557504 47710208 77594624 050905125053

628 6602752 4571136 1303552 47710208 53477376 050905125053

631 12532736 12532736 10649600 10649600 050905125053

630 47708160 6602752 47710208 47710208 8388608 050905125054

626 39420928 39420928 33325056 33325056 050905125054

629 14729216 14729216 10986496 47710208 224395264 050905125054

627 22234112 22234112 21151744 21151744 050905125054

632 7618560 7618560 1623040 47710208 77594624 050905125054

628 6602752 4571136 1369088 47710208 53477376 050905125054

631 12532736 12532736 10665984 10665984 050905125054

630 47708160 6602752 47710208 47710208 14680064 050905125055

626 39420928 39420928 33357824 33357824 050905125055

629 14729216 14729216 11117568 47710208 224395264 050905125055

627 22234112 22234112 21151744 21151744 050905125055

632 7618560 7618560 1688576 47710208 77594624 050905125055

628 6602752 4571136 1369088 47710208 53477376 050905125055

631 12532736 12532736 10674176 10674176 050905125055

630 47708160 6602752 47710208 47710208 20971520 050905125056

626 39420928 39420928 33357824 33357824 050905125056

629 14729216 14729216 11117568 47710208 224395264 050905125056

627 22234112 22234112 21151744 21151744 050905125056

632 7618560 7618560 1688576 47710208 77594624 050905125056

628 6602752 4571136 1369088 47710208 53477376 050905125056

631 12532736 12532736 10674176 10674176 050905125056

630 47708160 6602752 47710208 47710208 27262976 050905125057

626 39420928 39420928 33357824 33357824 050905125057

629 14729216 14729216 11117568 47710208 224395264 050905125057

627 22234112 22234112 21151744 21151744 050905125057

632 7618560 7618560 1688576 47710208 77594624 050905125057

628 6602752 4571136 1369088 47710208 53477376 050905125057

631 12532736 12532736 10674176 10674176 050905125057

630 47708160 6602752 47710208 47710208 32505856 050905125058

626 39420928 39420928 33357824 33357824 050905125058

629 14729216 14729216 11117568 47710208 224395264 050905125058

627 22234112 22234112 21151744 21151744 050905125058

632 7618560 7618560 1688576 47710208 77594624 050905125058

628 6602752 4571136 1369088 47710208 53477376 050905125058

631 12532736 12532736 10674176 10674176 050905125058

630 47708160 6602752 47710208 47710208 38797312 050905125059

626 39420928 39420928 33357824 33357824 050905125059

629 14729216 14729216 11117568 47710208 224395264 050905125059

627 22234112 22234112 21151744 21151744 050905125059

632 7618560 7618560 1688576 47710208 77594624 050905125059

628 6602752 4571136 1369088 47710208 53477376 050905125059

631 12532736 12532736 10674176 10674176 050905125059

630 6602752 6602752 885760 47710208 44040192 050905125100

626 39420928 39420928 33423360 33423360 050905125100

629 14729216 14729216 11576320 47710208 224395264 050905125100

627 22234112 22234112 21200896 21200896 050905125100

632 7618560 7618560 1885184 47710208 77594624 050905125100

628 6602752 4571136 1500160 47710208 53477376 050905125100

631 12532736 12532736 10706944 10706944 050905125100

630 6602752 6602752 1172480 47710208 44040192 050905125101

626 39420928 39420928 33628160 33628160 050905125101

629 14729216 14729216 13214720 47710208 224395264 050905125101

627 22234112 22234112 21315584 21315584 050905125101

632 7618560 7618560 2409472 47710208 77594624 050905125101

628 6602752 4571136 1958912 47710208 53477376 050905125101

631 12532736 12532736 10747904 10747904 050905125101

630 6602752 6602752 1360896 47710208 44040192 050905125102

626 39420928 39420928 33824768 33824768 050905125102

629 14729216 14729216 14459904 47710208 226492416 050905125102

627 22234112 22234112 21372928 21372928 050905125102

632 7618560 7618560 2868224 47710208 77594624 050905125102

628 6602752 4571136 2221056 47710208 53477376 050905125102

631 12532736 12532736 10772480 10772480 050905125102

630 6602752 6602752 1360896 47710208 44040192 050905125103

626 39420928 39420928 33824768 33824768 050905125103

629 14729216 14729216 14459904 47710208 232783872 050905125103

627 22234112 22234112 21372928 21372928 050905125103

632 7618560 7618560 2868224 47710208 77594624 050905125103

628 6602752 4571136 2221056 47710208 53477376 050905125103

631 12532736 12532736 10772480 10772480 050905125103

630 6602752 6602752 1598464 47710208 44040192 050905125104

626 39420928 39420928 33964032 33964032 050905125104

629 14729216 14729216 1745920 47710208 236978176 050905125104

627 22234112 22234112 21471232 21471232 050905125104

632 7618560 7618560 3326976 47710208 77594624 050905125104

628 6602752 4571136 2417664 47710208 53477376 050905125104

631 12532736 12532736 10805248 10805248 050905125104

630 6602752 6602752 1819648 47710208 44040192 050905125105

626 39420928 39420928 34144256 34144256 050905125105

629 14729216 14729216 2991104 47710208 236978176 050905125105

627 22234112 22234112 21569536 21569536 050905125105

632 7618560 7618560 3785728 47710208 77594624 050905125105

628 6602752 4571136 2745344 47710208 53477376 050905125105

631 12532736 12532736 10903552 10903552 050905125105

630 6602752 6602752 2352128 47710208 44040192 050905125106

626 39420928 39420928 34390016 34390016 050905125106

629 14729216 14729216 5678080 47710208 236978176 050905125106

627 22234112 22234112 21889024 21889024 050905125106

632 7618560 7618560 4572160 47710208 77594624 050905125106

628 6602752 4571136 3269632 47710208 53477376 050905125106

631 12532736 12532736 11001856 11001856 050905125106

630 6602752 6602752 2810880 47710208 44040192 050905125107

626 39420928 39420928 34627584 34627584 050905125107

629 14729216 14729216 7906304 47710208 236978176 050905125107

627 22234112 22234112 22126592 22126592 050905125107

632 7618560 7618560 5358592 47710208 77594624 050905125107

628 6602752 4571136 3793920 47710208 55574528 050905125107

631 12532736 12532736 11116544 11116544 050905125107

630 6602752 6602752 2933760 47710208 44040192 050905125108

626 39420928 39420928 34668544 34668544 050905125108

629 14729216 14729216 8430592 47710208 236978176 050905125108

627 22234112 22234112 22200320 22200320 050905125108

632 7618560 7618560 5555200 47710208 77594624 050905125108

628 6602752 4571136 1024 47710208 56623104 050905125108

631 12532736 12532736 11165696 11165696 050905125108

630 6602752 6602752 3474432 47710208 44040192 050905125109

626 39420928 39420928 35028992 35028992 050905125109

629 16760832 16760832 11969536 47710208 236978176 050905125109

627 26911744 26911744 22536192 22536192 050905125109

632 7618560 7618560 6603776 47710208 77594624 050905125109

628 6602752 4571136 918528 47710208 56623104 050905125109

631 12532736 12532736 11329536 11329536 050905125109

630 6602752 6602752 3703808 47710208 44040192 050905125111

626 39420928 39420928 35209216 35209216 050905125111

629 16760832 16760832 13673472 47710208 236978176 050905125111

627 26911744 26911744 22650880 22650880 050905125111

632 7618560 7618560 7062528 47710208 80740352 050905125111

628 6602752 4571136 1246208 47710208 56623104 050905125111

631 12532736 12532736 11378688 11378688 050905125111

630 6602752 6602752 4113408 47710208 44040192 050905125112

626 39420928 39420928 35536896 35536896 050905125112

629 16760832 16760832 16491520 47710208 239075328 050905125112

627 26911744 26911744 22757376 22757376 050905125112

632 7618560 7618560 1680384 47710208 83886080 050905125112

628 6602752 4571136 1639424 47710208 56623104 050905125112

631 12532736 12532736 11452416 11452416 050905125112

630 6602752 6602752 4113408 47710208 44040192 050905125113

626 39420928 39420928 35536896 35536896 050905125113

629 16760832 16760832 16491520 47710208 245366784 050905125113

627 26911744 26911744 22757376 22757376 050905125113

632 7618560 7618560 1680384 47710208 83886080 050905125113

628 6602752 4571136 1639424 47710208 56623104 050905125113

631 12532736 12532736 11452416 11452416 050905125113

630 6602752 6602752 4113408 47710208 44040192 050905125114

626 39420928 39420928 35536896 35536896 050905125114

629 16760832 16760832 16491520 47710208 250609664 050905125114

627 26911744 26911744 22757376 22757376 050905125114

632 7618560 7618560 1680384 47710208 83886080 050905125114

628 6602752 4571136 1639424 47710208 56623104 050905125114

631 12532736 12532736 11452416 11452416 050905125114

630 6602752 6602752 4670464 47710208 44040192 050905125115

626 39420928 39420928 35889152 35889152 050905125115

629 16760832 16760832 3015680 47710208 251658240 050905125115

627 26911744 26911744 22986752 22986752 050905125115

632 7618560 7618560 2401280 47710208 83886080 050905125115

628 6602752 4571136 2294784 47710208 56623104 050905125115

631 12532736 12532736 11583488 11583488 050905125115

630 6602752 6602752 5366784 47710208 44040192 050905125116

626 39420928 39420928 36241408 36241408 050905125116

629 16760832 16760832 6423552 47710208 251658240 050905125116

627 26911744 26911744 23175168 23175168 050905125116

632 7618560 7618560 3515392 47710208 83886080 050905125116

628 6602752 4571136 3081216 47710208 56623104 050905125116

631 12532736 12532736 11673600 11673600 050905125116

630 6602752 6602752 5874688 47710208 44040192 050905125117

626 39420928 39420928 36511744 36511744 050905125117

629 16760832 16760832 8389632 47710208 251658240 050905125117

627 26911744 26911744 23298048 23298048 050905125117

632 7618560 7618560 4170752 47710208 83886080 050905125117

628 6602752 4571136 3539968 47710208 59768832 050905125117

631 12532736 12532736 11722752 11722752 050905125117

630 6602752 6602752 6349824 47710208 47185920 050905125118

626 39420928 39420928 36823040 36823040 050905125118

629 16760832 16760832 11404288 47710208 251658240 050905125118

627 26911744 26911744 23609344 23609344 050905125118

632 7618560 7618560 5153792 47710208 83886080 050905125118

628 6602752 4571136 975872 47710208 60817408 050905125118

631 12532736 12532736 11821056 11821056 050905125118

630 6602752 6602752 1549312 47710208 49283072 050905125119

626 39420928 39420928 37388288 37388288 050905125119

629 16760832 16760832 15139840 47710208 251658240 050905125119

627 26911744 26911744 24018944 24018944 050905125119

632 7618560 7618560 6398976 47710208 83886080 050905125119

628 6602752 4571136 1762304 47710208 60817408 050905125119

631 12532736 12532736 11984896 11984896 050905125119

630 6602752 6602752 1680384 47710208 49283072 050905125120

626 39420928 39420928 37470208 37470208 050905125120

629 16760832 16760832 15729664 47710208 256901120 050905125120

627 26911744 26911744 24068096 24068096 050905125120

632 7618560 7618560 6661120 47710208 83886080 050905125120

628 6602752 4571136 1958912 47710208 60817408 050905125120

631 12532736 12532736 12001280 12001280 050905125120

630 6602752 6602752 1680384 47710208 49283072 050905125121

626 39420928 39420928 37470208 37470208 050905125121

629 16760832 16760832 15729664 47710208 262144000 050905125121

627 26911744 26911744 24068096 24068096 050905125121

632 7618560 7618560 6661120 47710208 83886080 050905125121

628 6602752 4571136 1958912 47710208 60817408 050905125121

631 12532736 12532736 12001280 12001280 050905125121

630 6602752 6602752 1942528 47710208 49283072 050905125122

626 39420928 39420928 37584896 37584896 050905125122

629 16760832 16760832 1557504 47710208 266338304 050905125122

627 26911744 26911744 24141824 24141824 050905125122

632 7618560 7618560 6988800 47710208 83886080 050905125122

628 6602752 4571136 2221056 47710208 60817408 050905125122

631 12532736 12532736 12017664 12017664 050905125122

630 6602752 6602752 2204672 47710208 49283072 050905125123

626 39420928 39420928 37715968 37715968 050905125123

629 16760832 16760832 2933760 47710208 266338304 050905125123

627 26911744 26911744 24297472 24297472 050905125123

632 7618560 7618560 7316480 47710208 87031808 050905125123

628 6602752 4571136 2483200 47710208 60817408 050905125123

631 12532736 12532736 12148736 12148736 050905125123

630 6602752 6602752 3187712 47710208 49283072 050905125124

626 39420928 39420928 38379520 38379520 050905125124

629 16760832 16760832 7455744 47710208 266338304 050905125124

627 26911744 26911744 24715264 24715264 050905125124

632 7618560 7618560 2532352 47710208 89128960 050905125124

628 6602752 4571136 3793920 47710208 61865984 050905125124

631 12532736 12532736 12435456 12435456 050905125124

630 6602752 6602752 3843072 47710208 49283072 050905125125

626 39420928 39420928 38690816 38690816 050905125125

629 16760832 16760832 10667008 47710208 266338304 050905125125

627 26911744 26911744 24887296 24887296 050905125125

632 7618560 7618560 3515392 47710208 89128960 050905125125

628 6602752 4571136 656384 47710208 63963136 050905125125

631 12532736 12532736 12484608 12484608 050905125125

630 6602752 6602752 4498432 47710208 49283072 050905125126

626 39420928 39420928 39034880 39034880 050905125126

629 16760832 16760832 14205952 47710208 266338304 050905125126

627 26911744 26911744 25214976 25214976 050905125126

632 7618560 7618560 4891648 47710208 89128960 050905125126

628 6602752 4571136 1311744 47710208 63963136 050905125126

631 15173632 15173632 12615680 12615680 050905125126

630 6602752 6602752 4826112 47710208 49283072 050905125127

626 39420928 39420928 39362560 39362560 050905125127

629 16760832 16760832 16237568 47710208 269484032 050905125127

627 26911744 26911744 25337856 25337856 050905125127

632 7618560 7618560 5547008 47710208 89128960 050905125127

628 6094848 6094848 1639424 47710208 63963136 050905125127

631 15173632 15173632 12681216 12681216 050905125127

630 6602752 6602752 4826112 47710208 49283072 050905125128

626 39420928 39420928 39362560 39362560 050905125128

629 16760832 16760832 16237568 47710208 274726912 050905125128

627 26911744 26911744 25337856 25337856 050905125128

632 7618560 7618560 5547008 47710208 89128960 050905125128

628 6094848 6094848 1639424 47710208 63963136 050905125128

631 15173632 15173632 12681216 12681216 050905125128

630 6602752 6602752 4891648 47710208 49283072 050905125129

626 39420928 39420928 39395328 39395328 050905125129

629 16760832 16760832 762880 47710208 281018368 050905125129

627 26911744 26911744 25346048 25346048 050905125129

632 7618560 7618560 5612544 47710208 89128960 050905125129

628 6094848 6094848 1704960 47710208 63963136 050905125129

631 15173632 15173632 12705792 12705792 050905125129

630 6602752 4571136 5153792 47710208 52428800 050905125130

626 47708160 47708160 39559168 39559168 050905125130

629 16760832 16760832 2794496 47710208 281018368 050905125130

627 26911744 26911744 25501696 25501696 050905125130

632 8634368 8634368 6202368 47710208 89128960 050905125130

628 6094848 6094848 2032640 47710208 63963136 050905125130

631 15173632 15173632 12771328 12771328 050905125130

630 6602752 4571136 762880 47710208 53477376 050905125131

626 47708160 47708160 40091648 40091648 050905125131

629 16760832 16760832 6595584 47710208 281018368 050905125131

627 26911744 26911744 25821184 25821184 050905125131

632 8634368 8634368 7513088 47710208 89128960 050905125131

628 6094848 6094848 3015680 47710208 63963136 050905125131

631 15173632 15173632 12976128 12976128 050905125131

630 6602752 4571136 1811456 47710208 53477376 050905125132

626 47708160 47708160 40435712 40435712 050905125132

629 16760832 16760832 8889344 47710208 281018368 050905125132

627 26911744 26911744 26034176 26034176 050905125132

632 8634368 8634368 8365056 47710208 91226112 050905125132

628 6094848 6094848 3671040 47710208 63963136 050905125132

631 15173632 15173632 13017088 13017088 050905125132

630 6602752 4571136 2204672 47710208 53477376 050905125133

626 47708160 47708160 40656896 40656896 050905125133

629 16760832 16760832 10789888 47710208 281018368 050905125133

627 26911744 26911744 26320896 26320896 050905125133

632 8634368 8634368 254976 47710208 96468992 050905125133

628 6094848 6094848 4064256 47710208 63963136 050905125133

631 15173632 15173632 13115392 13115392 050905125133

630 6602752 4571136 2991104 47710208 53477376 050905125134

626 47708160 47708160 41287680 41287680 050905125134

629 16760832 16760832 14984192 47710208 281018368 050905125134

627 26911744 26911744 26771456 26771456 050905125134

632 8634368 8634368 2483200 47710208 96468992 050905125134

628 6094848 6094848 4850688 47710208 63963136 050905125134

631 15173632 15173632 13254656 13254656 050905125134

630 6602752 4571136 3253248 47710208 53477376 050905125135

626 47708160 47708160 41394176 41394176 050905125135

629 16760832 16760832 16425984 47710208 281018368 050905125135

627 26911744 26911744 26894336 26894336 050905125135

632 8634368 8634368 3007488 47710208 96468992 050905125135

628 6094848 6094848 5047296 47710208 67108864 050905125135

631 15173632 15173632 13320192 13320192 050905125135

630 6602752 4571136 3253248 47710208 53477376 050905125136

626 47708160 47708160 41410560 41410560 050905125136

629 16760832 16760832 16491520 47710208 286261248 050905125136

627 26911744 26911744 26902528 26902528 050905125136

632 8634368 8634368 3007488 47710208 96468992 050905125136

628 6094848 6094848 508928 47710208 68157440 050905125136

631 15173632 15173632 13336576 13336576 050905125136

630 6602752 4571136 3253248 47710208 53477376 050905125137

626 47708160 47708160 41410560 41410560 050905125137

629 16760832 16760832 16491520 47710208 291504128 050905125137

627 26911744 26911744 26902528 26902528 050905125137

632 8634368 8634368 3007488 47710208 96468992 050905125137

628 6094848 6094848 508928 47710208 68157440 050905125137

631 15173632 15173632 13336576 13336576 050905125137

630 6602752 4571136 3580928 47710208 53477376 050905125138

626 47708160 47708160 41558016 41558016 050905125138

629 18284544 18284544 2270208 47710208 294649856 050905125138

627 32572416 32572416 27000832 27000832 050905125138

632 8634368 8634368 3597312 47710208 96468992 050905125138

628 6094848 6094848 1033216 47710208 68157440 050905125138

631 15173632 15173632 13385728 13385728 050905125138

630 6602752 4571136 4236288 47710208 53477376 050905125139

626 47708160 47708160 41844736 41844736 050905125139

629 18284544 18284544 5809152 47710208 294649856 050905125139

627 32572416 32572416 27230208 27230208 050905125139

632 8634368 8634368 4842496 47710208 96468992 050905125139

628 6094848 6094848 1688576 47710208 68157440 050905125139

631 15173632 15173632 13688832 13688832 050905125139

630 6602752 4571136 508928 47710208 56623104 050905125140

626 47708160 47708160 42205184 42205184 050905125140

629 18284544 18284544 8299520 47710208 294649856 050905125140

627 32572416 32572416 27394048 27394048 050905125140

632 8634368 8634368 5628928 47710208 96468992 050905125140

628 6094848 6094848 2212864 47710208 68157440 050905125140

631 15173632 15173632 13803520 13803520 050905125140

630 6602752 4571136 1295360 47710208 56623104 050905125141

626 47708160 47708160 42762240 42762240 050905125141

629 18284544 18284544 11183104 47710208 294649856 050905125141

627 32572416 32572416 27680768 27680768 050905125141

632 8634368 8634368 6677504 47710208 96468992 050905125141

628 6094848 6094848 2868224 47710208 68157440 050905125141

631 15173632 15173632 13860864 13860864 050905125141

630 6602752 4571136 1491968 47710208 56623104 050905125142

626 47708160 47708160 43024384 43024384 050905125142

629 18284544 18284544 13804544 47710208 294649856 050905125142

627 32572416 32572416 27910144 27910144 050905125142

632 8634368 8634368 7398400 47710208 96468992 050905125142

628 6094848 6094848 3261440 47710208 68157440 050905125142

631 15173632 15173632 13975552 13975552 050905125142

630 6602752 4571136 1819648 47710208 56623104 050905125143

626 47708160 47708160 43245568 43245568 050905125143

629 18284544 18284544 15246336 47710208 294649856 050905125143

627 32572416 32572416 28073984 28073984 050905125143

632 8634368 8634368 7857152 47710208 99614720 050905125143

628 6094848 6094848 3654656 47710208 68157440 050905125143

631 15173632 15173632 14041088 14041088 050905125143

630 6602752 4571136 1819648 47710208 56623104 050905125144

626 47708160 47708160 43245568 43245568 050905125144

629 18284544 18284544 15246336 47710208 294649856 050905125144

627 32572416 32572416 28073984 28073984 050905125144

632 8634368 8634368 508928 47710208 103809024 050905125144

628 6094848 6094848 3654656 47710208 68157440 050905125144

631 15173632 15173632 14041088 14041088 050905125144

630 6602752 4571136 2016256 47710208 56623104 050905125145

626 47708160 47708160 43368448 43368448 050905125145

629 18284544 18284544 16425984 47710208 294649856 050905125145

627 32572416 32572416 28131328 28131328 050905125145

632 8634368 8634368 508928 47710208 103809024 050905125145

628 6094848 6094848 3982336 47710208 68157440 050905125145

631 15173632 15173632 14131200 14131200 050905125145

630 6602752 4571136 2212864 47710208 56623104 050905125146

626 47708160 47708160 43474944 43474944 050905125146

629 18284544 18284544 17474560 47710208 294649856 050905125146

627 32572416 32572416 28213248 28213248 050905125146

632 8634368 8634368 508928 47710208 103809024 050905125146

628 6094848 6094848 4244480 47710208 68157440 050905125146

631 15173632 15173632 14221312 14221312 050905125146

630 6602752 4571136 2278400 47710208 56623104 050905125148

626 47708160 47708160 43548672 43548672 050905125148

629 18284544 18284544 17998848 47710208 298844160 050905125148

627 32572416 32572416 28278784 28278784 050905125148

632 8634368 8634368 1491968 47710208 103809024 050905125148

628 6094848 6094848 4375552 47710208 68157440 050905125148

631 15173632 15173632 14245888 14245888 050905125148

630 6602752 4571136 2278400 47710208 56623104 050905125149

626 47708160 47708160 43548672 43548672 050905125149

629 18284544 18284544 17998848 47710208 303038464 050905125149

627 32572416 32572416 28278784 28278784 050905125149

632 8634368 8634368 1491968 47710208 103809024 050905125149

628 6094848 6094848 4375552 47710208 68157440 050905125149

631 15173632 15173632 14245888 14245888 050905125149

630 6602752 4571136 2278400 47710208 56623104 050905125150

626 47708160 47708160 43548672 43548672 050905125150

629 18284544 18284544 17998848 47710208 307232768 050905125150

627 32572416 32572416 28278784 28278784 050905125150

632 8634368 8634368 1491968 47710208 103809024 050905125150

628 6094848 6094848 4375552 47710208 68157440 050905125150

631 15173632 15173632 14245888 14245888 050905125150

630 6602752 4571136 2343936 47710208 56623104 050905125151

626 47708160 47708160 43589632 43589632 050905125151

629 18284544 18284544 1024 47710208 311427072 050905125151

627 32572416 32572416 28303360 28303360 050905125151

632 8634368 8634368 1623040 47710208 103809024 050905125151

628 6094848 6094848 4506624 47710208 68157440 050905125151

631 15173632 15173632 14254080 14254080 050905125151

630 6602752 4571136 2999296 47710208 56623104 050905125152

626 47708160 47708160 43966464 43966464 050905125152

629 18284544 18284544 5178368 47710208 311427072 050905125152

627 32572416 32572416 28893184 28893184 050905125152

632 8634368 8634368 3326976 47710208 103809024 050905125152

628 6094848 6094848 5555200 47710208 70254592 050905125152

631 15173632 15173632 14458880 14458880 050905125152

630 6602752 4571136 3589120 47710208 56623104 050905125153

626 44474368 44474368 44474368 44474368 050905125153

629 18284544 18284544 8717312 47710208 311427072 050905125153

627 29122560 29122560 29122560 29122560 050905125153

632 8634368 8634368 4375552 47710208 103809024 050905125153

628 6094848 6094848 910336 47710208 73400320 050905125153

631 14647296 14647296 14647296 14647296 050905125153

630 6602752 4571136 3589120 47710208 57671680 050905125154

626 44474368 44474368 44474368 44474368 050905125154

629 18284544 18284544 8717312 47710208 312475648 050905125154

627 29122560 29122560 29122560 29122560 050905125154

632 8634368 8634368 4375552 47710208 104857600 050905125154

628 4571136 4571136 5335040 47710208 73400320 050905125154

631 14647296 14647296 14647296 14647296 050905125154

630 2539520 2539520 1024 47710208 59768832 050905125155

626 44474368 44474368 44474368 44474368 050905125155

629 18284544 18284544 8717312 47710208 314572800 050905125155

627 29122560 29122560 29122560 29122560 050905125155

632 7110656 7110656 7875584 47710208 106954752 050905125155

628 4571136 4571136 5335040 47710208 73400320 050905125155

631 14647296 14647296 14647296 14647296 050905125155

630 2539520 2539520 2540544 47710208 59768832 050905125156

626 44474368 44474368 44474368 44474368 050905125156

629 16252928 16252928 508928 47710208 318767104 050905125156

627 29122560 29122560 29122560 29122560 050905125156

632 7110656 7110656 7875584 47710208 106954752 050905125156

628 4571136 4571136 5335040 47710208 73400320 050905125156

631 14647296 14647296 14647296 14647296 050905125156

630 2539520 2539520 2540544 47710208 59768832 050905125157

626 44474368 44474368 44474368 44474368 050905125157

629 16252928 16252928 16765952 47710208 318767104 050905125157

627 29122560 29122560 29122560 29122560 050905125157

632 7110656 7110656 7875584 47710208 106954752 050905125157

628 4571136 4571136 5335040 47710208 73400320 050905125157

631 14647296 14647296 14647296 14647296 050905125157

630 2539520 2539520 2540544 47710208 59768832 050905125158

626 44474368 44474368 44474368 44474368 050905125158

629 16252928 16252928 16765952 47710208 318767104 050905125158

627 29122560 29122560 29122560 29122560 050905125158

632 7110656 7110656 7875584 47710208 106954752 050905125158

628 4571136 4571136 5335040 47710208 73400320 050905125158

631 14647296 14647296 14647296 14647296 050905125158

630 2539520 2539520 2540544 47710208 59768832 050905125159

626 44474368 44474368 44474368 44474368 050905125159

629 16252928 16252928 16765952 47710208 318767104 050905125159

627 29122560 29122560 29122560 29122560 050905125159

632 7110656 7110656 7875584 47710208 106954752 050905125159

628 4571136 4571136 5335040 47710208 73400320 050905125159

631 14647296 14647296 14647296 14647296 050905125159

630 2539520 2539520 2540544 47710208 59768832 050905125200

626 44474368 44474368 44474368 44474368 050905125200

629 16252928 16252928 16765952 47710208 318767104 050905125200

627 29122560 29122560 29122560 29122560 050905125200

632 7110656 7110656 7875584 47710208 106954752 050905125200

628 4571136 4571136 5335040 47710208 73400320 050905125200

631 14647296 14647296 14647296 14647296 050905125200

630 2539520 2539520 2540544 47710208 59768832 050905125201

626 44474368 44474368 44474368 44474368 050905125201

629 16252928 16252928 16765952 47710208 318767104 050905125201

627 29122560 29122560 29122560 29122560 050905125201

632 7110656 7110656 7875584 47710208 106954752 050905125201

628 4571136 4571136 5335040 47710208 73400320 050905125201

631 14647296 14647296 14647296 14647296 050905125201

630 2539520 2539520 2540544 47710208 59768832 050905125202

626 44474368 44474368 44474368 44474368 050905125202

629 16252928 16252928 16765952 47710208 318767104 050905125202

627 29122560 29122560 29122560 29122560 050905125202

632 7110656 7110656 7875584 47710208 106954752 050905125202

628 4571136 4571136 5335040 47710208 73400320 050905125202

631 14647296 14647296 14647296 14647296 050905125202

630 2539520 2539520 2540544 47710208 59768832 050905125203

626 44474368 44474368 44474368 44474368 050905125203

629 16252928 16252928 16765952 47710208 318767104 050905125203

627 29122560 29122560 29122560 29122560 050905125203

632 7110656 7110656 7875584 47710208 106954752 050905125203

628 4571136 4571136 5335040 47710208 73400320 050905125203

631 14647296 14647296 14647296 14647296 050905125203

630 2539520 2539520 2540544 47710208 59768832 050905125204

626 44474368 44474368 44474368 44474368 050905125204

629 16252928 16252928 16765952 47710208 318767104 050905125204

627 29122560 29122560 29122560 29122560 050905125204

632 7110656 7110656 7875584 47710208 106954752 050905125204

628 4571136 4571136 5335040 47710208 73400320 050905125204

631 14647296 14647296 14647296 14647296 050905125204

630 2539520 2539520 2540544 47710208 59768832 050905125205

626 44474368 44474368 44474368 44474368 050905125205

629 16252928 16252928 16765952 47710208 318767104 050905125205

627 29122560 29122560 29122560 29122560 050905125205

632 7110656 7110656 7875584 47710208 106954752 050905125205

628 4571136 4571136 5335040 47710208 73400320 050905125205

631 14647296 14647296 14647296 14647296 050905125205

630 2539520 2539520 2540544 47710208 59768832 050905125206

626 44474368 44474368 44474368 44474368 050905125206

629 16252928 16252928 16765952 47710208 318767104 050905125206

627 29122560 29122560 29122560 29122560 050905125206

632 7110656 7110656 7875584 47710208 106954752 050905125206

628 4571136 4571136 5335040 47710208 73400320 050905125206

631 14647296 14647296 14647296 14647296 050905125206

630 2539520 2539520 2540544 47710208 59768832 050905125207

626 44474368 44474368 44474368 44474368 050905125207

629 16252928 16252928 16765952 47710208 318767104 050905125207

627 29122560 29122560 29122560 29122560 050905125207

632 7110656 7110656 7875584 47710208 106954752 050905125207

628 4571136 4571136 5335040 47710208 73400320 050905125207

631 14647296 14647296 14647296 14647296 050905125207

630 2539520 2539520 2540544 47710208 59768832 050905125208

626 44474368 44474368 44474368 44474368 050905125208

629 16252928 16252928 16765952 47710208 318767104 050905125208

627 29122560 29122560 29122560 29122560 050905125208

632 7110656 7110656 7875584 47710208 106954752 050905125208

628 4571136 4571136 5335040 47710208 73400320 050905125208

631 14647296 14647296 14647296 14647296 050905125208

630 2539520 2539520 2540544 47710208 59768832 050905125209

626 44474368 44474368 44474368 44474368 050905125209

629 16252928 16252928 16765952 47710208 318767104 050905125209

627 29122560 29122560 29122560 29122560 050905125209

632 7110656 7110656 7875584 47710208 106954752 050905125209

628 4571136 4571136 5335040 47710208 73400320 050905125209

631 14647296 14647296 14647296 14647296 050905125209

630 2539520 2539520 2540544 47710208 59768832 050905125210

626 44474368 44474368 44474368 44474368 050905125210

629 16252928 16252928 16765952 47710208 318767104 050905125210

627 29122560 29122560 29122560 29122560 050905125210

632 7110656 7110656 7875584 47710208 106954752 050905125210

628 4571136 4571136 5335040 47710208 73400320 050905125210

631 14647296 14647296 14647296 14647296 050905125210

630 2539520 2539520 2540544 47710208 59768832 050905125211

626 44474368 44474368 44474368 44474368 050905125211

629 16252928 16252928 16765952 47710208 318767104 050905125211

627 29122560 29122560 29122560 29122560 050905125211

632 7110656 7110656 7875584 47710208 106954752 050905125211

628 4571136 4571136 5335040 47710208 73400320 050905125211

631 14647296 14647296 14647296 14647296 050905125211

630 2539520 2539520 2540544 47710208 59768832 050905125212

626 44474368 44474368 44474368 44474368 050905125212

629 16252928 16252928 16765952 47710208 318767104 050905125212

627 29122560 29122560 29122560 29122560 050905125212

632 7110656 7110656 7875584 47710208 106954752 050905125212

628 4571136 4571136 5335040 47710208 73400320 050905125212

631 14647296 14647296 14647296 14647296 050905125212

630 2539520 2539520 2540544 47710208 59768832 050905125213

626 44474368 44474368 44474368 44474368 050905125213

629 16252928 16252928 16765952 47710208 318767104 050905125213

627 29122560 29122560 29122560 29122560 050905125213

632 7110656 7110656 7875584 47710208 106954752 050905125213

628 4571136 4571136 5335040 47710208 73400320 050905125213

631 14647296 14647296 14647296 14647296 050905125213

630 2539520 2539520 2540544 47710208 59768832 050905125214

626 44474368 44474368 44474368 44474368 050905125214

629 16252928 16252928 16765952 47710208 318767104 050905125214

627 29122560 29122560 29122560 29122560 050905125214

632 7110656 7110656 7875584 47710208 106954752 050905125214

628 4571136 4571136 5335040 47710208 73400320 050905125214

631 14647296 14647296 14647296 14647296 050905125214

630 2539520 2539520 2540544 47710208 59768832 050905125215

626 44474368 44474368 44474368 44474368 050905125215

629 16252928 16252928 16765952 47710208 318767104 050905125215

627 29122560 29122560 29122560 29122560 050905125215

632 7110656 7110656 7875584 47710208 106954752 050905125215

628 4571136 4571136 5335040 47710208 73400320 050905125215

631 14647296 14647296 14647296 14647296 050905125215

630 2539520 2539520 2540544 47710208 59768832 050905125216

626 44474368 44474368 44474368 44474368 050905125216

629 16252928 16252928 16765952 47710208 318767104 050905125216

627 29122560 29122560 29122560 29122560 050905125216

632 7110656 7110656 7875584 47710208 106954752 050905125216

628 4571136 4571136 5335040 47710208 73400320 050905125216

631 14647296 14647296 14647296 14647296 050905125216

630 2539520 2539520 2540544 47710208 59768832 050905125217

626 44474368 44474368 44474368 44474368 050905125217

629 16252928 16252928 16765952 47710208 318767104 050905125217

627 29122560 29122560 29122560 29122560 050905125217

632 7110656 7110656 7875584 47710208 106954752 050905125217

628 4571136 4571136 5335040 47710208 73400320 050905125217

631 14647296 14647296 14647296 14647296 050905125217

630 2539520 2539520 2540544 47710208 59768832 050905125218

626 44474368 44474368 44474368 44474368 050905125218

629 16252928 16252928 16765952 47710208 318767104 050905125218

627 29122560 29122560 29122560 29122560 050905125218

632 7110656 7110656 7875584 47710208 106954752 050905125218

628 4571136 4571136 5335040 47710208 73400320 050905125218

631 14647296 14647296 14647296 14647296 050905125218

630 2539520 2539520 2540544 47710208 59768832 050905125219

626 44474368 44474368 44474368 44474368 050905125219

629 16252928 16252928 16765952 47710208 318767104 050905125219

627 29122560 29122560 29122560 29122560 050905125219

628 4571136 4571136 5335040 47710208 73400320 050905125219

631 14647296 14647296 14647296 14647296 050905125219

630 2539520 2539520 2540544 47710208 59768832 050905125220

626 44474368 44474368 44474368 44474368 050905125220

629 16252928 16252928 16765952 47710208 318767104 050905125220

627 29122560 29122560 29122560 29122560 050905125220

628 4571136 4571136 5335040 47710208 73400320 050905125220

631 14647296 14647296 14647296 14647296 050905125220

630 2539520 2539520 2540544 47710208 59768832 050905125222

626 44474368 44474368 44474368 44474368 050905125222

629 16252928 16252928 16765952 47710208 318767104 050905125222

627 29122560 29122560 29122560 29122560 050905125222

628 4571136 4571136 5335040 47710208 73400320 050905125222

631 14647296 14647296 14647296 14647296 050905125222

630 2539520 2539520 2540544 47710208 59768832 050905125223

626 44474368 44474368 44474368 44474368 050905125223

629 16252928 16252928 16765952 47710208 318767104 050905125223

627 29122560 29122560 29122560 29122560 050905125223

628 4571136 4571136 5335040 47710208 73400320 050905125223

630 2539520 2539520 2540544 47710208 59768832 050905125224

626 44474368 44474368 44474368 44474368 050905125224

629 16252928 16252928 16765952 47710208 318767104 050905125224

627 29122560 29122560 29122560 29122560 050905125224

628 4571136 4571136 5335040 47710208 73400320 050905125224

630 2539520 2539520 2540544 47710208 59768832 050905125225

626 44474368 44474368 44474368 44474368 050905125225

629 16252928 16252928 16765952 47710208 318767104 050905125225

627 29122560 29122560 29122560 29122560 050905125225

628 4571136 4571136 5335040 47710208 73400320 050905125225

630 2539520 2539520 2540544 47710208 59768832 050905125226

626 44474368 44474368 44474368 44474368 050905125226

629 16252928 16252928 16765952 47710208 318767104 050905125226

627 29122560 29122560 29122560 29122560 050905125226

628 4571136 4571136 5335040 47710208 73400320 050905125226

630 2539520 2539520 2540544 47710208 59768832 050905125227

626 44474368 44474368 44474368 44474368 050905125227

629 16252928 16252928 16765952 47710208 318767104 050905125227

627 29122560 29122560 29122560 29122560 050905125227

628 4571136 4571136 5335040 47710208 73400320 050905125227

630 2539520 2539520 2540544 47710208 59768832 050905125228

626 44474368 44474368 44474368 44474368 050905125228

629 16252928 16252928 16765952 47710208 318767104 050905125228

627 29122560 29122560 29122560 29122560 050905125228

628 4571136 4571136 5335040 47710208 73400320 050905125228

630 2539520 2539520 2540544 47710208 59768832 050905125229

626 44474368 44474368 44474368 44474368 050905125229

629 16252928 16252928 16765952 47710208 318767104 050905125229

627 29122560 29122560 29122560 29122560 050905125229

628 4571136 4571136 5335040 47710208 73400320 050905125229

630 2539520 2539520 2540544 47710208 59768832 050905125230

626 44474368 44474368 44474368 44474368 050905125230

629 16252928 16252928 16765952 47710208 318767104 050905125230

627 29122560 29122560 29122560 29122560 050905125230

628 4571136 4571136 5335040 47710208 73400320 050905125230

630 2539520 2539520 2540544 47710208 59768832 050905125231

626 44474368 44474368 44474368 44474368 050905125231

629 16252928 16252928 16765952 47710208 318767104 050905125231

627 29122560 29122560 29122560 29122560 050905125231

628 4571136 4571136 5335040 47710208 73400320 050905125231

630 2539520 2539520 2540544 47710208 59768832 050905125232

626 44474368 44474368 44474368 44474368 050905125232

629 16252928 16252928 16765952 47710208 318767104 050905125232

627 29122560 29122560 29122560 29122560 050905125232

628 4571136 4571136 5335040 47710208 73400320 050905125232

630 2539520 2539520 2540544 47710208 59768832 050905125233

626 44474368 44474368 44474368 44474368 050905125233

629 16252928 16252928 16765952 47710208 318767104 050905125233

627 29122560 29122560 29122560 29122560 050905125233

628 4571136 4571136 5335040 47710208 73400320 050905125233

626 44474368 44474368 44474368 44474368 050905125234

629 16252928 16252928 16765952 47710208 318767104 050905125234

627 29122560 29122560 29122560 29122560 050905125234

628 4571136 4571136 5335040 47710208 73400320 050905125234

626 44474368 44474368 44474368 44474368 050905125235

629 16252928 16252928 16765952 47710208 318767104 050905125235

627 29122560 29122560 29122560 29122560 050905125235

628 4571136 4571136 5335040 47710208 73400320 050905125235

626 44474368 44474368 44474368 44474368 050905125236

629 16252928 16252928 16765952 47710208 318767104 050905125236

627 29122560 29122560 29122560 29122560 050905125236

628 4571136 4571136 5335040 47710208 73400320 050905125236

626 44474368 44474368 44474368 44474368 050905125237

629 16252928 16252928 16765952 47710208 318767104 050905125237

627 29122560 29122560 29122560 29122560 050905125237

628 4571136 4571136 5335040 47710208 73400320 050905125237

626 44474368 44474368 44474368 44474368 050905125238

629 16252928 16252928 16765952 47710208 318767104 050905125238

627 29122560 29122560 29122560 29122560 050905125238

628 4571136 4571136 5335040 47710208 73400320 050905125238

626 44474368 44474368 44474368 44474368 050905125239

629 16252928 16252928 16765952 47710208 318767104 050905125239

627 29122560 29122560 29122560 29122560 050905125239

628 4571136 4571136 5335040 47710208 73400320 050905125239

626 44474368 44474368 44474368 44474368 050905125240

629 16252928 16252928 16765952 47710208 318767104 050905125240

627 29122560 29122560 29122560 29122560 050905125240

628 4571136 4571136 5335040 47710208 73400320 050905125240

626 44474368 44474368 44474368 44474368 050905125241

629 16252928 16252928 16765952 47710208 318767104 050905125241

627 29122560 29122560 29122560 29122560 050905125241

628 4571136 4571136 5335040 47710208 73400320 050905125241

626 44474368 44474368 44474368 44474368 050905125242

629 16252928 16252928 16765952 47710208 318767104 050905125242

627 29122560 29122560 29122560 29122560 050905125242

628 4571136 4571136 5335040 47710208 73400320 050905125242

626 44474368 44474368 44474368 44474368 050905125243

629 16252928 16252928 16765952 47710208 318767104 050905125243

627 29122560 29122560 29122560 29122560 050905125243

628 4571136 4571136 5335040 47710208 73400320 050905125243

626 44474368 44474368 44474368 44474368 050905125244

629 16252928 16252928 16765952 47710208 318767104 050905125244

627 29122560 29122560 29122560 29122560 050905125244

628 4571136 4571136 5335040 47710208 73400320 050905125244

626 44474368 44474368 44474368 44474368 050905125245

629 16252928 16252928 16765952 47710208 318767104 050905125245

627 29122560 29122560 29122560 29122560 050905125245

628 4571136 4571136 5335040 47710208 73400320 050905125245

626 44474368 44474368 44474368 44474368 050905125246

629 16252928 16252928 16765952 47710208 318767104 050905125246

627 29122560 29122560 29122560 29122560 050905125246

628 4571136 4571136 5335040 47710208 73400320 050905125246

626 44474368 44474368 44474368 44474368 050905125247

629 16252928 16252928 16765952 47710208 318767104 050905125247

627 29122560 29122560 29122560 29122560 050905125247

628 4571136 4571136 5335040 47710208 73400320 050905125247

626 44474368 44474368 44474368 44474368 050905125248

629 16252928 16252928 16765952 47710208 318767104 050905125248

627 29122560 29122560 29122560 29122560 050905125248

628 4571136 4571136 5335040 47710208 73400320 050905125248

626 44474368 44474368 44474368 44474368 050905125249

629 16252928 16252928 16765952 47710208 318767104 050905125249

627 29122560 29122560 29122560 29122560 050905125249

628 4571136 4571136 5335040 47710208 73400320 050905125249

626 44474368 44474368 44474368 44474368 050905125250

629 16252928 16252928 16765952 47710208 318767104 050905125250

627 29122560 29122560 29122560 29122560 050905125250

628 4571136 4571136 5335040 47710208 73400320 050905125250

626 44474368 44474368 44474368 44474368 050905125251

629 16252928 16252928 16765952 47710208 318767104 050905125251

627 29122560 29122560 29122560 29122560 050905125251

628 4571136 4571136 5335040 47710208 73400320 050905125251

626 44474368 44474368 44474368 44474368 050905125252

629 16252928 16252928 16765952 47710208 318767104 050905125252

627 29122560 29122560 29122560 29122560 050905125252

628 4571136 4571136 5335040 47710208 73400320 050905125252

626 44474368 44474368 44474368 44474368 050905125253

629 16252928 16252928 16765952 47710208 318767104 050905125253

627 29122560 29122560 29122560 29122560 050905125253

628 4571136 4571136 5335040 47710208 73400320 050905125253

626 44474368 44474368 44474368 44474368 050905125254

629 16252928 16252928 16765952 47710208 318767104 050905125254

627 29122560 29122560 29122560 29122560 050905125254

628 4571136 4571136 5335040 47710208 73400320 050905125254

626 44474368 44474368 44474368 44474368 050905125255

629 16252928 16252928 16765952 47710208 318767104 050905125255

627 29122560 29122560 29122560 29122560 050905125255

628 4571136 4571136 5335040 47710208 73400320 050905125255

626 44474368 44474368 44474368 44474368 050905125256

629 16252928 16252928 16765952 47710208 318767104 050905125256

627 29122560 29122560 29122560 29122560 050905125256

628 4571136 4571136 5335040 47710208 73400320 050905125256

626 44474368 44474368 44474368 44474368 050905125257

629 16252928 16252928 16765952 47710208 318767104 050905125257

627 29122560 29122560 29122560 29122560 050905125257

628 4571136 4571136 5335040 47710208 73400320 050905125257

626 44474368 44474368 44474368 44474368 050905125258

629 16252928 16252928 16765952 47710208 318767104 050905125258

627 29122560 29122560 29122560 29122560 050905125258

628 4571136 4571136 5335040 47710208 73400320 050905125258

626 44474368 44474368 44474368 44474368 050905125300

629 16252928 16252928 16765952 47710208 318767104 050905125300

627 29122560 29122560 29122560 29122560 050905125300

628 4571136 4571136 5335040 47710208 73400320 050905125300

626 44474368 44474368 44474368 44474368 050905125301

629 16252928 16252928 16765952 47710208 318767104 050905125301

627 29122560 29122560 29122560 29122560 050905125301

628 4571136 4571136 5335040 47710208 73400320 050905125301

626 44474368 44474368 44474368 44474368 050905125302

629 16252928 16252928 16765952 47710208 318767104 050905125302

627 29122560 29122560 29122560 29122560 050905125302

628 4571136 4571136 5335040 47710208 73400320 050905125302

626 44474368 44474368 44474368 44474368 050905125303

629 16252928 16252928 16765952 47710208 318767104 050905125303

627 29122560 29122560 29122560 29122560 050905125303

628 4571136 4571136 5335040 47710208 73400320 050905125303

626 44474368 44474368 44474368 44474368 050905125304

629 16252928 16252928 16765952 47710208 318767104 050905125304

627 29122560 29122560 29122560 29122560 050905125304

628 4571136 4571136 5335040 47710208 73400320 050905125304

626 44474368 44474368 44474368 44474368 050905125305

629 16252928 16252928 16765952 47710208 318767104 050905125305

627 29122560 29122560 29122560 29122560 050905125305

628 4571136 4571136 5335040 47710208 73400320 050905125305

626 44474368 44474368 44474368 44474368 050905125306

629 16252928 16252928 16765952 47710208 318767104 050905125306

627 29122560 29122560 29122560 29122560 050905125306

628 4571136 4571136 5335040 47710208 73400320 050905125306

626 44474368 44474368 44474368 44474368 050905125307

629 16252928 16252928 16765952 47710208 318767104 050905125307

627 29122560 29122560 29122560 29122560 050905125307

628 4571136 4571136 5335040 47710208 73400320 050905125307

626 44474368 44474368 44474368 44474368 050905125308

629 16252928 16252928 16765952 47710208 318767104 050905125308

627 29122560 29122560 29122560 29122560 050905125308

628 4571136 4571136 5335040 47710208 73400320 050905125308

626 44474368 44474368 44474368 44474368 050905125309

629 16252928 16252928 16765952 47710208 318767104 050905125309

627 29122560 29122560 29122560 29122560 050905125309

628 4571136 4571136 5335040 47710208 73400320 050905125309

626 44474368 44474368 44474368 44474368 050905125310

629 16252928 16252928 16765952 47710208 318767104 050905125310

627 29122560 29122560 29122560 29122560 050905125310

628 4571136 4571136 5335040 47710208 73400320 050905125310

626 44474368 44474368 44474368 44474368 050905125311

629 16252928 16252928 16765952 47710208 318767104 050905125311

627 29122560 29122560 29122560 29122560 050905125311

628 4571136 4571136 5335040 47710208 73400320 050905125311

626 44474368 44474368 44474368 44474368 050905125312

629 16252928 16252928 16765952 47710208 318767104 050905125312

627 29122560 29122560 29122560 29122560 050905125312

628 4571136 4571136 5335040 47710208 73400320 050905125312

626 44474368 44474368 44474368 44474368 050905125313

629 16252928 16252928 16765952 47710208 318767104 050905125313

627 29122560 29122560 29122560 29122560 050905125313

628 4571136 4571136 5335040 47710208 73400320 050905125313

626 44474368 44474368 44474368 44474368 050905125314

629 16252928 16252928 16765952 47710208 318767104 050905125314

627 29122560 29122560 29122560 29122560 050905125314

628 4571136 4571136 5335040 47710208 73400320 050905125314

626 44474368 44474368 44474368 44474368 050905125315

629 16252928 16252928 16765952 47710208 318767104 050905125315

627 29122560 29122560 29122560 29122560 050905125315

628 4571136 4571136 5335040 47710208 73400320 050905125315

626 44474368 44474368 44474368 44474368 050905125316

629 16252928 16252928 16765952 47710208 318767104 050905125316

627 29122560 29122560 29122560 29122560 050905125316

628 4571136 4571136 5335040 47710208 73400320 050905125316

626 44474368 44474368 44474368 44474368 050905125317

629 16252928 16252928 16765952 47710208 318767104 050905125317

627 29122560 29122560 29122560 29122560 050905125317

628 4571136 4571136 5335040 47710208 73400320 050905125317

626 44474368 44474368 44474368 44474368 050905125318

629 16252928 16252928 16765952 47710208 318767104 050905125318

627 29122560 29122560 29122560 29122560 050905125318

628 4571136 4571136 5335040 47710208 73400320 050905125318

626 44474368 44474368 44474368 44474368 050905125319

629 16252928 16252928 16765952 47710208 318767104 050905125319

627 29122560 29122560 29122560 29122560 050905125319

628 4571136 4571136 5335040 47710208 73400320 050905125319

626 44474368 44474368 44474368 44474368 050905125320

629 16252928 16252928 16765952 47710208 318767104 050905125320

627 29122560 29122560 29122560 29122560 050905125320

628 4571136 4571136 5335040 47710208 73400320 050905125320

626 44474368 44474368 44474368 44474368 050905125321

629 16252928 16252928 16765952 47710208 318767104 050905125321

627 29122560 29122560 29122560 29122560 050905125321

628 4571136 4571136 5335040 47710208 73400320 050905125321

626 44474368 44474368 44474368 44474368 050905125322

629 16252928 16252928 16765952 47710208 318767104 050905125322

627 29122560 29122560 29122560 29122560 050905125322

628 4571136 4571136 5335040 47710208 73400320 050905125322

626 44474368 44474368 44474368 44474368 050905125323

629 16252928 16252928 16765952 47710208 318767104 050905125323

627 29122560 29122560 29122560 29122560 050905125323

628 4571136 4571136 5335040 47710208 73400320 050905125323

626 44474368 44474368 44474368 44474368 050905125324

629 16252928 16252928 16765952 47710208 318767104 050905125324

627 29122560 29122560 29122560 29122560 050905125324

628 4571136 4571136 5335040 47710208 73400320 050905125324

626 44474368 44474368 44474368 44474368 050905125325

629 16252928 16252928 16765952 47710208 318767104 050905125325

627 29122560 29122560 29122560 29122560 050905125325

628 4571136 4571136 5335040 47710208 73400320 050905125325

626 44474368 44474368 44474368 44474368 050905125326

629 16252928 16252928 16765952 47710208 318767104 050905125326

627 29122560 29122560 29122560 29122560 050905125326

628 4571136 4571136 5335040 47710208 73400320 050905125326

626 44474368 44474368 44474368 44474368 050905125327

629 16252928 16252928 16765952 47710208 318767104 050905125327

627 29122560 29122560 29122560 29122560 050905125327

628 4571136 4571136 5335040 47710208 73400320 050905125327

626 44474368 44474368 44474368 44474368 050905125328

629 16252928 16252928 16765952 47710208 318767104 050905125328

627 29122560 29122560 29122560 29122560 050905125328

628 4571136 4571136 5335040 47710208 73400320 050905125328

626 44474368 44474368 44474368 44474368 050905125329

629 16252928 16252928 16765952 47710208 318767104 050905125329

627 29122560 29122560 29122560 29122560 050905125329

628 4571136 4571136 5335040 47710208 73400320 050905125329

626 44474368 44474368 44474368 44474368 050905125330

629 16252928 16252928 16765952 47710208 318767104 050905125330

627 29122560 29122560 29122560 29122560 050905125330

628 4571136 4571136 5335040 47710208 73400320 050905125330

626 44474368 44474368 44474368 44474368 050905125331

629 16252928 16252928 16765952 47710208 318767104 050905125331

627 29122560 29122560 29122560 29122560 050905125331

628 4571136 4571136 5335040 47710208 73400320 050905125331

626 44474368 44474368 44474368 44474368 050905125332

629 16252928 16252928 16765952 47710208 318767104 050905125332

627 29122560 29122560 29122560 29122560 050905125332

628 4571136 4571136 5335040 47710208 73400320 050905125332

626 44474368 44474368 44474368 44474368 050905125333

629 16252928 16252928 16765952 47710208 318767104 050905125333

627 29122560 29122560 29122560 29122560 050905125333

628 4571136 4571136 5335040 47710208 73400320 050905125333

626 44474368 44474368 44474368 44474368 050905125334

629 16252928 16252928 16765952 47710208 318767104 050905125334

627 29122560 29122560 29122560 29122560 050905125334

628 4571136 4571136 5335040 47710208 73400320 050905125334

626 44474368 44474368 44474368 44474368 050905125335

629 16252928 16252928 16765952 47710208 318767104 050905125335

627 29122560 29122560 29122560 29122560 050905125335

628 4571136 4571136 5335040 47710208 73400320 050905125335

626 44474368 44474368 44474368 44474368 050905125336

629 16252928 16252928 16765952 47710208 318767104 050905125336

627 29122560 29122560 29122560 29122560 050905125336

628 4571136 4571136 5335040 47710208 73400320 050905125336

626 44474368 44474368 44474368 44474368 050905125337

629 16252928 16252928 16765952 47710208 318767104 050905125337

627 29122560 29122560 29122560 29122560 050905125337

628 4571136 4571136 5335040 47710208 73400320 050905125337

626 44474368 44474368 44474368 44474368 050905125339

629 16252928 16252928 16765952 47710208 318767104 050905125339

627 29122560 29122560 29122560 29122560 050905125339

628 4571136 4571136 5335040 47710208 73400320 050905125339

626 44474368 44474368 44474368 44474368 050905125340

629 16252928 16252928 16765952 47710208 318767104 050905125340

627 29122560 29122560 29122560 29122560 050905125340

628 4571136 4571136 5335040 47710208 73400320 050905125340

626 44474368 44474368 44474368 44474368 050905125341

629 16252928 16252928 16765952 47710208 318767104 050905125341

627 29122560 29122560 29122560 29122560 050905125341

628 4571136 4571136 5335040 47710208 73400320 050905125341

626 44474368 44474368 44474368 44474368 050905125342

629 16252928 16252928 16765952 47710208 318767104 050905125342

627 29122560 29122560 29122560 29122560 050905125342

628 4571136 4571136 5335040 47710208 73400320 050905125342

626 44474368 44474368 44474368 44474368 050905125343

629 16252928 16252928 16765952 47710208 318767104 050905125343

627 29122560 29122560 29122560 29122560 050905125343

628 4571136 4571136 5335040 47710208 73400320 050905125343

626 44474368 44474368 44474368 44474368 050905125344

629 16252928 16252928 16765952 47710208 318767104 050905125344

627 29122560 29122560 29122560 29122560 050905125344

628 4571136 4571136 5335040 47710208 73400320 050905125344

626 44474368 44474368 44474368 44474368 050905125345

629 16252928 16252928 16765952 47710208 318767104 050905125345

627 29122560 29122560 29122560 29122560 050905125345

628 4571136 4571136 5335040 47710208 73400320 050905125345

626 44474368 44474368 44474368 44474368 050905125346

627 29122560 29122560 29122560 29122560 050905125346

628 4571136 4571136 5335040 47710208 73400320 050905125346

626 44474368 44474368 44474368 44474368 050905125347

627 29122560 29122560 29122560 29122560 050905125347

628 4571136 4571136 5335040 47710208 73400320 050905125347

626 44474368 44474368 44474368 44474368 050905125348

627 29122560 29122560 29122560 29122560 050905125348

628 4571136 4571136 5335040 47710208 73400320 050905125348

626 44474368 44474368 44474368 44474368 050905125349

627 29122560 29122560 29122560 29122560 050905125349

628 4571136 4571136 5335040 47710208 73400320 050905125349

626 44474368 44474368 44474368 44474368 050905125350

627 29122560 29122560 29122560 29122560 050905125350

628 4571136 4571136 5335040 47710208 73400320 050905125350

626 44474368 44474368 44474368 44474368 050905125351

627 29122560 29122560 29122560 29122560 050905125351

628 4571136 4571136 5335040 47710208 73400320 050905125351

626 44474368 44474368 44474368 44474368 050905125352

627 29122560 29122560 29122560 29122560 050905125352

628 4571136 4571136 5335040 47710208 73400320 050905125352

626 44474368 44474368 44474368 44474368 050905125353

627 29122560 29122560 29122560 29122560 050905125353

628 4571136 4571136 5335040 47710208 73400320 050905125353

626 44474368 44474368 44474368 44474368 050905125354

627 29122560 29122560 29122560 29122560 050905125354

628 4571136 4571136 5335040 47710208 73400320 050905125354

626 44474368 44474368 44474368 44474368 050905125355

627 29122560 29122560 29122560 29122560 050905125355

628 4571136 4571136 5335040 47710208 73400320 050905125355

626 44474368 44474368 44474368 44474368 050905125356

627 29122560 29122560 29122560 29122560 050905125356

628 4571136 4571136 5335040 47710208 73400320 050905125356

626 44474368 44474368 44474368 44474368 050905125357

627 29122560 29122560 29122560 29122560 050905125357

628 4571136 4571136 5335040 47710208 73400320 050905125357

626 44474368 44474368 44474368 44474368 050905125358

627 29122560 29122560 29122560 29122560 050905125358

628 4571136 4571136 5335040 47710208 73400320 050905125358

626 44474368 44474368 44474368 44474368 050905125359

627 29122560 29122560 29122560 29122560 050905125359

626 44474368 44474368 44474368 44474368 050905125400

627 29122560 29122560 29122560 29122560 050905125400

626 44474368 44474368 44474368 44474368 050905125401

627 29122560 29122560 29122560 29122560 050905125401

626 44474368 44474368 44474368 44474368 050905125402

627 29122560 29122560 29122560 29122560 050905125402

626 44474368 44474368 44474368 44474368 050905125403

626 44474368 44474368 44474368 44474368 050905125404

626 44474368 44474368 44474368 44474368 050905125405

626 44474368 44474368 44474368 44474368 050905125406

626 44474368 44474368 44474368 44474368 050905125407

626 44474368 44474368 44474368 44474368 050905125408

626 44474368 44474368 44474368 44474368 050905125409

1961 rows selected.

SQL> spool of

[pic]

| |Predicted |Actual |

|DOP 7 |47.57143 |42.4140625 |

................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download